2006-12-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2
3         * Control.cs: Added some missing 2.0 bits: 
4         BackgroundImageLayout, BackgroundImageLayoutChanged, 
5         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
6         add IBindableComponent and IDropTarget implementation.
7         
8         * MonthCalendar.cs: 
9         - Added all missing 2.0 features:
10         BackgroundImageLayout, RightToLeftLayout, 
11         OnHandleDestroyed, RightToLeftLayoutChanged, 
12         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
13         PaddingChanged.
14         - Rewrote all the BoldDate code, it was completely broken.
15         - Fixed all the tests (the tests can now be re-enabled, the
16         problems were not with the tests, but with the control, it was
17         mostly broken).
18         
19         * DateTimePicker.cs: Changed the location where the 
20         MonthCalendar is shown.
21         
22 2006-12-19  Chris Toshok  <toshok@ximian.com>
23
24         * DataGridView.cs: add IDropTarget implementation.
25
26         * ToolStripPanel.cs: add IDropTarget implementation.
27
28 2006-12-19  Jackson Harper  <jackson@ximian.com>
29
30         * TextControl.cs: soft now means something different than what it
31         used to mean, we want to move the caret regardless of whether or
32         not this break was soft (would we really have wanted the caret
33         to not move with the break in the old context?)
34         * TreeView.cs: Make sure we factor in the vert scrollbar when
35         calculating the horizontal scrollbar's maximum.
36
37 2006-12-19  Andreia Gaita  <avidigal@novell.org>
38
39         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
40         check for keywords in alternate casing, close bug #80049.
41
42 2006-12-19  Chris Toshok  <toshok@ximian.com>
43
44         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
45         methods (which all do nothing).
46
47         * IDropTarget.cs: add the 4 missing methods.
48
49 2006-12-19  Chris Toshok  <toshok@ximian.com>
50
51         * TableLayoutRowStyleCollection.cs: corcompare work.
52         
53         * TableLayoutSettings.cs: same.
54
55         * TableLayoutStyle.cs: same.
56
57         * TableLayoutColumnStyleCollection.cs: same.
58
59 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
60
61         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
62         TableLayoutPanel I've had in my local tree for way too long.
63
64 2006-12-19  Miguel de Icaza  <miguel@novell.com>
65
66         * TableLayoutSettings.cs: Finish the public API (still needs all
67         the logic to update on changes). 
68
69         * TableLayoutPanelCellPosition.cs: new file.
70         
71         * TableLayoutRowStyleCollection.cs,
72         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
73         TableLayoutSettings.cs: Track the final 2.0 table api.
74
75 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
76
77         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
78         and Image List 2.0 members for ColummnHeader.
79         * ListView.cs: Add key-related 2.0 methods for
80         ColumnHeaderCollection.
81
82 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
83
84         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
85         ArgumentNullException if items argument is null. Ignore null item in
86         arrays. Removed extra tabs.
87
88 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
89
90         * MonthCalendar.cs: Fixed InvalidCastException.
91
92 2006-12-19  Jackson Harper  <jackson@ximian.com>
93
94         * TextControl.cs: Don't increment the position here.
95         - When calculating char positions only add in the line break size
96         for hard line breaks.
97
98 2006-12-19  Andreia Gaita  <avidigal@novell.org>
99
100         * SendKeys.cs: Changed some things to match ms.net behaviour
101         when parsing shifted capital letters.
102         
103         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
104         Add window handle as parameter to SendInput. X11 needs the 
105         window handle, and the handle being passed      to it in the keys 
106         queue is the active control handle (which windows needs), not 
107         the window handle.
108         
109         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
110         to support SendKeys on X.       
111         
112         * X11Keyboard: Implement helper method to lookup a linux keycode
113         given the virtual keycode. Added table of keycode-2-virtualkey
114         values to support this.
115
116 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
117
118         * ListView.cs: Add support for SelectedIndexCollection
119         and SelectedItemCollection 2.0 methods. Implement support
120         for ImageKey too.
121         * ListViewItem.cs: Add support for ListViewSubItemCollection
122         2.0 methods. Also, fix an incorrect behavior of AddRange method
123         (it shouldn't call Clear).
124         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
125
126 2006-12-19  Jackson Harper  <jackson@ximian.com>
127
128         * RichTextBox.cs: 
129         * TextBoxBase.cs: New args for FormatText
130         * TextControl.cs: Rewrote the main drawing method, this version
131         feels a little easier to understand and debug to me.  Hopefully it
132         does to others also
133         - Fix FormatText to OR in the new formating values.  Added
134         FormatSpecified param, basically this works in the same way as
135         BoundsSpecified in Control.
136         - Set the caret properties when the caret is positioned.
137         - When wrapping text make sure that we calculate the width of the
138         last character
139         - when calculating alignments we might have wrapped down to the
140         next line, so don't search for an individual tag, search for the
141         end of the line
142         - We need to invalidate the selection area when we replace the
143         selection.
144         
145 2006-12-19  Daniel Nauck  <dna@mono-project.de>
146
147         * Application.cs: add Restart () 2.0 support
148
149 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
150
151         * MenuItem.cs: Invalidate menu item rectangle after change Enable
152         property. Fixes #80268.
153         
154 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
155
156         * MenuAPI.cs: Dont trigger select event when closes top menu
157         item. Fixes #80270.
158
159 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
160
161         * MenuAPI.cs: When you click on menuitem only trigger onselect
162         event for top menu itens. Fixes #80271.
163         
164 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
165
166         * MdiWindowManager.cs: Make IconicBounds depend on
167         the bottom of MdiClient, not the top (fixes #80267)
168         
169 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
170
171         * MdiClient.cs: Added missing 2.0 attribute
172
173 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
174
175         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
176         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
177
178 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
179
180         * MenuAPI.cs: Fix click when menuitem is not popup,
181         this regression was caused by last commit (#80272).
182
183 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
184
185         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
186         fire click event or close menu. Fixes #80272.
187
188 2006-12-17  Daniel Nauck  <dna@mono-project.de>
189
190         * ListViewHitTestInfo.cs: add
191
192 2006-12-17  Daniel Nauck  <dna@mono-project.de>
193
194         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
195         * FlatButtonAppearance.cs: add
196         * DockingAttribute.cs: add
197
198 2006-12-17  Chris Toshok  <toshok@ximian.com>
199
200         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
201         and rebind our columns when it does - this way, if you make
202         changes to the DataTable (or set the Table attribute on a DataView
203         after setting it as the DataGrid's DataSource, the changes are
204         made visible.)  Fixes bug #80107.
205
206 2006-12-17  Daniel Nauck  <dna@mono-project.de>
207
208         * ListViewGroup.cs: add internal Location property for layouting.
209         * Theme.cs: add abstract ListViewGroupHeight function.
210         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
211
212 2006-12-16  Andreia Gaita  <avidigal@novell.com>
213
214         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
215         Added reset of selected index to 0 when adding first tab page.
216         Fixes #80264
217         
218         * NumericUpDown.cs: Fix NET_2_0 check
219
220 2006-12-16  Daniel Nauck  <dna@mono-project.de>
221
222         * ListViewGroup.cs: fixed DefaultValueAttribute value
223
224 2006-12-16  Daniel Nauck  <dna@mono-project.de>
225
226         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
227
228 2006-12-15  Miguel de Icaza  <miguel@novell.com>
229
230         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
231         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
232         ScrollableControl.cs: Add a handful of methods that are
233         overwritten in 2.0 
234
235 2006-12-15  Chris Toshok  <toshok@ximian.com>
236
237         * XplatUIWin32.cs: initial implementation of the Reversible
238         drawing functions.  there are some problems.  DrawReversibleFrame
239         doesn't seem to work at all for Dashed FrameStyle, and in the
240         Thick case there are drawing errors at the corners (we probably
241         need to bind Rectangle instead of doing moveto/lineto's.)
242
243 2006-12-16  Andreia Gaita  <avidigal@novell.com>
244         
245         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
246         to send blocks of key messages. Send accumulates keys to send with Flush, 
247         while SendWait sends all keys immediately.
248                 
249         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
250         XplatUIX11.cs,  XplatUIX11-new.cs:
251         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
252         to Win32 SendInput.
253         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
254         
255         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
256         testing for ms.net on this class is very tricky, as the tests run too fast 
257         to allow the hook to release, essentially freezing the keyboard and the 
258         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
259         category :p
260
261 2006-12-16  Daniel Nauck  <dna@mono-project.de>
262
263         * Padding.cs: fixed serialization compability to MS ("_var" field names),
264                         added missing attributes.
265  
266 2006-12-15  Daniel Nauck  <dna@mono-project.de>
267
268         * ListViewGroup.cs: Added missing attributes.
269         * ListViewGroupCollection.cs: Added missing attributes.
270
271 2006-12-15  Daniel Nauck  <dna@mono-project.de>
272
273         * ListViewItem.cs: fixed ListViewSubItem text property.
274
275 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
276         
277         * Control.cs: Added missing 2.0 attributes
278         
279 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
280         
281         * MdiClient.cs: Added missing 2.0 attribute.
282         * MonthCalendar.cs: Added some missing 2.0 attributes 
283         and properties.
284         
285 2006-12-15  Daniel Nauck  <dna@mono-project.de>
286
287         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
288
289 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
290
291         * MainMenu.cs: Add the new 2.0 constructor to help out people
292         using the MainMenu in VS2005.
293
294 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
295         
296         * MdiChildContext.cs: Removed it, no longer used.
297         * MdiClient.cs: Added missing 2.0 attributes.
298         
299 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
300         
301         * InternalWindowManager.cs: Fix a NullRef with previous 
302         changes for toolwindows.
303         
304 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
305
306         * Control.cs: 
307         - Added AfterTopMostControl to allow for certain controls 
308         to always stay on top when normal controls are brought to 
309         front.
310         
311         * XplatUIWin32.cs: 
312         - (DrawInversibleRectangle): Get window rectangle from Win32 
313         in stead of from control, since Win32 doesn't calculate
314         screen coords correctly from control's Location if it 
315         have docked siblings.
316         
317         * MdiWindowManager.cs:
318         - Correct the control menu popup location when clicked on
319         the maximized form icon. (fixes #80223.1)
320         - Don't show moving rectangle if mouse hasn't moved from
321         the original clicked point.
322         - Removed FormGotFocus handler (not used).
323         - Calculate the control buttons location from the main
324         window's size and not client size (fixes #79770).
325         - Form is now closed when the form icon is double-clicked
326         (fixes #79775). 
327         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
328         
329         * InternalWindowManager.cs:
330         - Moved some MDI-only methods to MdiWindowManager.
331         - Removed unused properties and methods.
332         - Unified method naming for methods handling wm messages.
333         - Moved all message handling to seperate methods for
334         each message.
335         
336         * ThemeWin32Classic.cs:
337         - DrawManagedWindowDecorations now draws the title bar 
338         with a gradient brush.
339         - Add a CPDrawButtonInternal that allows us to specify
340         light, normal and dark colors for the buttons (control 
341         buttons for MDI children were drawn with the same light
342         color as the background, therefore loosing the 3D effect).
343         
344         * SizeGrip.cs:
345         - Add a CapturedControl property that is used to 
346         determine the control to resize (defaults to parent). 
347         Needed for MdiClient, since its SizeGrip's parent is
348         MdiClient, but the control to resize is the main form.
349         
350         * MdiClient.cs:
351         - Set SizeGrip's CapturedControl to the main form in order
352         to resize the main form and not the MdiClient.
353         - Override AfterTopMostControl to leave the scrollbars 
354         always on top.
355
356 2006-12-15  Daniel Nauck  <dna@mono-project.de>
357
358         * ListView.cs: fixed ListViewItemCollection AddRange and
359                         implemented ListViewItemCollection AddRange 2.0 support.
360
361 2006-12-15  Daniel Nauck  <dna@mono-project.de>
362
363         * ListViewGroup.cs: Add.
364         * ListViewGroupCollection.cs: Add
365         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
366         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
367                                 stub for ImageKey 2.0 support.
368
369 2006-12-14  Mike Kestner  <mkestner@novell.com>
370
371         * ListView.cs: add text padding to the autocalculation for columns
372         of width -2.  Fixes #80207.
373  
374 2006-12-14  Mike Kestner  <mkestner@novell.com>
375
376         * ListView.cs: add some index guarding for partial row navigation 
377         logic.  Fixes #80250.
378
379 2006-12-14  Mike Kestner  <mkestner@novell.com>
380
381         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
382         are added or inserted to the collection.  Fixes #81099.
383
384 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
385
386         * MenuAPI.cs: Closes menu when right click out side of popup
387         it fix problem in ContextMenu and MainMenu. Fixes #80252.
388
389 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
390
391         * ListViewItem.cs: Fix dumb error.
392
393         * ListView.cs: Add Find and ContainsKey methods in 
394         ListViewItemCollection, and also return true for IsReadOnly
395         and IsFixedSize (changes for 2.0). 
396
397 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
398
399         * Control.cs: Allow Region to be set to null.
400
401 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
402
403         * MdiWindowManager.cs: Remove unused (commented out) code.
404         * Form.cs: When the MdiChild is maximized, the form needs 
405         WM_NCMOUSELEAVE, so request it.
406         * InternalWindowManager.cs: 
407         - Added tooltips to control buttons.
408         - Removed duplicated control button handling code.
409         - Removed unused (commented out) code.
410         
411 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
412
413         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
414         was used because we must set cursor without trigger ChangeCursor event
415         and without change Cursor control property. Fixes #79963.
416
417 2006-12-12  Andreia Gaita  <avidigal@novell.com>
418         
419         * Control.cs: Check if Region setter value is null, and ignore
420
421 2006-12-12  Jackson Harper  <jackson@ximian.com>
422
423         * TextControl.cs: We were almost always drawing one more line then
424         needed, since the GetLineByPixel will return the last line found
425         at that pixel. In most cases though, we were invalidating up to
426         the junction between two lines.
427         - Improve debug code.
428
429 2006-12-12  Chris Toshok  <toshok@ximian.com>
430
431         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
432         and FillReversibleRectangle.
433
434         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
435         and FillReversibleRectangle.
436
437         * XplatUIWin32.cs: add stubs which do nothing for
438         DrawReversibleFrame, DrawReversibleLine, and
439         FillReversibleRectangle.
440
441         * XplatUIOSX.cs: add stubs which raise NIE for
442         DrawReversibleFrame, DrawReversibleLine, and
443         FillReversibleRectangle.
444
445         * XplatUIX11.cs: add working implementation for
446         DrawReversibleFrame, DrawReversibleLine, and
447         FillReversibleRectangle.
448         
449         * ControlPaint.cs: implement DrawReversibleFrame,
450         DrawReversibleLine, and FillReversibleRectangle, by calling into
451         the appropriate XplatUI method.
452
453 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
454
455         * Form.cs: Make MdiClient have the focus even if it's
456         not selectable, since it should receive WM_KEY* and WM_MOUSE 
457         messages. Fixes #79907.
458         
459 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
460
461         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
462         queried after the window is created.
463         
464         * XplatUIX11.cs: Added SendParentNotify to implement 
465         WM_PARENTNOTIFY logic. Fixes #79965.
466         
467         * Control.cs: Added MakeParam.
468         
469 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
470
471         * MdiClient.cs: Resume Layout before setting window
472         states (fixes #80201).
473
474 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
475
476         * MenuAPI.cs: Deselect a menu item after performing
477         the click (fixes #80197).
478
479 2006-12-11  Jackson Harper  <jackson@ximian.com>
480
481         * TextBoxBase.cs: We need to cap this value, since Maximum -
482         ViewPortHeight can be less than zero.
483         - Only do selection with the left mouse button.
484         * TextBox.cs: Don't tell the world that we have a context menu.
485         * Control.cs: New method so that we can control whether or not the
486         context menu is visible outside MWF.
487
488 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
489
490         * ToolBarButton.cs: Fix text positon. 
491
492 2006-12-11  Miguel de Icaza  <miguel@novell.com>
493
494         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
495
496         * Control.cs (DoubleBuffered): Add implementation.
497
498         * Application.cs (OpenForms): Add.
499
500 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
501
502         * Form.cs: Use opacity instead of Opactiy to determine if we need
503         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
504
505 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
506
507         * Control.cs: Fix NRE if Control.Site was set to null.
508
509 2006-12-11  Chris Toshok  <toshok@ximian.com>
510
511         * Control.cs: ControlCollection.Remove should return if the arg is
512         null, and ControlCollection.SetChildIndex should raise a ANE.
513
514 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
515
516         * Control.cs: Verify value set for Dock property. Code formatting
517         updates.
518
519 2006-12-11  Jackson Harper  <jackson@ximian.com>
520
521         * TextControl.cs: Draw the caret and the selection when a flag is
522         set on the owner.
523         * TextBoxBase.cs: We want to draw the caret and the selection for
524         TextBox but not for TextBoxBase.
525         - If the window is resized and scrolling is no longer needed (the
526         whole doc is visible) set the scroll position to zero.
527         - The default SelectWord (the one TextBox uses) should move the
528         caret to the end of the word.
529         - SelectAll moves the caret to the end of the selection.
530         * TextBox.cs: We don't selectall on focus, we just do it when the
531         control is created.
532         
533 2006-12-11  Mike Kestner  <mkestner@novell.com>
534
535         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
536
537 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
538
539         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
540         2.0 support.
541         * ListViewItem.cs: Add Name 2.0 property.
542
543 2006-12-11  Andreia Gaita  <avidigal@novell.com>
544
545         * TabControl.cs: Set visibility on selected or default tab 
546         when tabcontrol handle is created, so that it's contents
547         actually show up (duh). Fixes #80193
548         Don't redraw the control if there is no handle created, as
549         the selected index might be completely invalid. Added some tests
550         to check for this.
551
552 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
553
554         * ToolBar.cs: Uses maximun width and height of all buttons as 
555         button rectangle when ButtonSize specified, it looks strange but
556         is what happens in Win32. Fixes #80189.
557
558 2006-12-11  Jackson Harper  <jackson@ximian.com>
559
560         * TextControl.cs: Need to track undo levels ourself, since
561         compound actions will mess them up.
562
563 2006-12-10  Andreia Gaita  <avidigal@novell.com>
564
565         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
566         SelectedIndex value is changed (even if it's not valid).
567         Reset SelectedIndex to 0 when the handle is created and if
568         the current index is invalid.
569         Fixes SelectdeIndex unit tests and #80128
570
571 2006-12-08  Chris Toshok  <toshok@ximian.com>
572
573         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
574         calls EndEdit, it needs to be called before we set current_cell to
575         its new value.  Otherwise, we end up committing the value in the
576         textbox to the new cell as well.  Fixes bug #80160.
577
578 2006-12-08  Chris Toshok  <toshok@ximian.com>
579
580         * Form.cs (set_CancelButton): if the button's DialogResult is
581         None, set it to Cancel.  Fixes bug 80180.
582
583 2006-12-08  Jackson Harper  <jackson@ximian.com>
584
585         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
586         to watch ourselves when setting the canvas size and setting the
587         scrollbar values.
588
589 2006-12-08  Chris Toshok  <toshok@ximian.com>
590
591         * DataGrid.cs: comment out the two MakeTransparent calls for the
592         time being so people using trunk (and not 1.2.2) on windows can
593         actually use the datagrid.  This deals with bug #80151.
594
595 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
596
597         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
598         Graphics.DrawImage (image, int, int, int, int) overload instead
599         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
600         the dpi difference and was blurring images it drew.
601         [Fixes bug #79960]
602
603 2006-12-08  Chris Toshok  <toshok@ximian.com>
604
605         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
606         rowcnt is 0 (such as with an empty datasource), and make sure we
607         initialize not_usedarea.Y to cells.Y, so we don't draw over the
608         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
609
610 2006-12-08  Chris Toshok  <toshok@ximian.com>
611
612         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
613         grid.
614
615 2006-12-08  Chris Toshok  <toshok@ximian.com>
616
617         [ Fixes bug #80167 ]
618         
619         * ThemeWin32Classic.cs: don't draw the image if the button's flat
620         style is FlatStyle.System.
621
622         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
623         ButtonBase.flat_style private, and switch uses of it to the public
624         property.
625         
626 2006-12-08  Chris Toshok  <toshok@ximian.com>
627
628         [ Fixes bug #80121 ]
629         
630         * ThemeWin32Classic.cs: center the caption text in the datagrid
631         when we draw it.
632
633         * DataGrid.cs: lessen the amount we add to the caption height from
634         6 to 2.  6 was making it huge.
635
636 2006-12-08  Andreia Gaita  <avidigal@novell.com>
637
638         * UpDownBase: Handle MouseWheel call directly instead of capturing
639         the inner textbox's OnMouseWheel. Fixes #80166
640
641 2006-12-08  Jackson Harper  <jackson@ximian.com>
642
643         * TextControl.cs: We need to invalidate the textbox when we empty
644         it (how had this not been discovered before?)
645
646 2006-12-08  Jackson Harper  <jackson@ximian.com>
647
648         * TextBoxBase.cs: Reworked the mouse down code so I could get it
649         to behave like MS, we now ignore the eventargs.Click and just
650         track state ourself, which we were already doing anyways.
651         - Constrain the double click handler to the double click size.
652         
653 2006-12-08  Chris Toshok  <toshok@ximian.com>
654
655         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
656         direction if that scrollbar isn't shown.  fixes bug #80158.
657
658 2006-12-08  Andreia Gaita  <avidigal@novell.com>
659
660         * NumericUpDown.cs: Update value on getter. Fixes #79950
661
662 2006-12-08  Chris Toshok  <toshok@ximian.com>
663
664         * MenuItem.cs: add back in the event cloning code.  I didn't know
665         how to do it in the face of the EventHandlerList work i'd done
666         last week.  Fixes bug #80183.
667
668 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
669
670         * Control.cs: Add an invalidate to the BackgroundImage setter.
671         [Fixes 80184]
672
673 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
674
675         * ToolStrip*: Add some small properties reported by MoMA, fix event
676         firing and default properties based off of unit tests, and add some
677         attributes based off of the class status page.
678
679 2006-12-07  Jackson Harper  <jackson@ximian.com>
680
681         * TextBoxBase.cs: Take HideSelection into account when determining
682         whether or not to show the selection.
683         * RichTextBox.cs: After inserting the RTF into the document move
684         the cursor to the beginning of the document.
685
686 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
687
688         * Control.cs: Remove static ArrayList "controls" which maintained
689         a reference to every control created.
690         * Application.cs: Create a static FormCollection to maintain a reference
691         to every form created.  Use it in places that formerly enumerated through
692         the controls one looking for forms.
693         * Form.cs: Add and remove self from above FormCollection.
694
695 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
696
697         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
698           not libgdk (though it makes me wonder why I didn't have any
699           problems)
700
701 2006-12-07  Chris Toshok  <toshok@ximian.com>
702
703         [ you had to know this was coming after that last commit...]
704         
705         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
706         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
707         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
708         XCopyArea).
709
710 2006-12-07  Chris Toshok  <toshok@ximian.com>
711
712         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
713         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
714         all the behavior we need for double buffering.
715
716         * XplatUIDriver.cs: implement the 3 double buffer methods using a
717         client side Bitmap, just like the old Control-based double buffer
718         code did.  The methods are virtual, so each XplatUI driver
719         subclass can replace the implementation to use a faster, platform
720         specific approach.
721
722         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
723         double buffer code, and clean things up a bit in the process.
724
725 2006-12-06  Chris Toshok  <toshok@ximian.com>
726
727         * Control.cs: reindent WndProc.
728
729 2006-12-06  Chris Toshok  <toshok@ximian.com>
730
731         [ I wanna be like BenM when I grow up ]
732         
733         * Hwnd.cs: create a single static Graphics object on the static
734         Bitmap we create.  use this for our text measurements.
735
736         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
737         This was causing us to allocate a backbuffer for every control,
738         even when it wasn't flagged as double buffered.  Instead use the
739         single graphics instance.  This might have implications for
740         multithreaded applications.  If we run into problems we can switch
741         to creating 1 Graphics per control, on the static Hwnd bitmap.
742
743         this change nets us a 7M savings in private dirty mappings when
744         running FormsTest.exe.
745
746 2006-12-06  Chris Toshok  <toshok@ximian.com>
747
748         * ListView.cs: the BackgroundImage override is just to set
749         attributes.  chain up to base.BackgroundImage.
750
751         * RichTextBox.cs: same.
752
753         * ToolBar.cs: same, but we need to also redraw the toolbar when it
754         changes, so instead a handler for BackgroundImageChanged.
755         
756         * Control.cs: make background_image private.
757
758 2006-12-06  Chris Toshok  <toshok@ximian.com>
759
760         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
761         sure we even need this assignment, but roll with it for now.
762
763         * Control.cs: make the cursor field private.
764
765 2006-12-06  Chris Toshok  <toshok@ximian.com>
766
767         * Form.cs: we don't need to explicitly set ImeMode to
768         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
769         behavior in the face of ImeMode.Inherit.
770
771         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
772         change the ctor's assignment to use ImeMode instead of ime_mode.
773
774         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
775         ImeModeInherit.  Only check for the parent's imemode (and return
776         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
777         This fixes the button unit test, which sets both ImeMode and
778         DefaultImeMode to ImeMode.Disable.
779
780         also make the ime_mode field private.
781
782 2006-12-06  Chris Toshok  <toshok@ximian.com>
783
784         * Control.cs: make control_style private.
785
786         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
787         setting the styles to true, then setting them to false instead of
788         reverting to their previous values.
789
790         also, call SetStyle on the scrollbars instead of using
791         control_style directly.
792
793 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
794
795         * FormCollection.cs: Implement. [2.0]
796
797 2006-12-06  Chris Toshok  <toshok@ximian.com>
798
799         * Control.cs: make tab_stop private.
800
801         * Label.cs: set TabStop, not tab_stop.  reformat some event
802         add/remove methods to make them more compact.
803
804 2006-12-06  Chris Toshok  <toshok@ximian.com>
805
806         * RadioButton.cs: fix TabStop handling.
807
808 2006-12-06  Chris Toshok  <toshok@ximian.com>
809
810         * TextBox.cs: remove the explicit assignments to has_focus.
811         Control does that.
812
813         * ButtonBase.cs: remove the assignment to has_focus.  Control will
814         manage that.
815         
816 2006-12-06  Chris Toshok  <toshok@ximian.com>
817
818         * ButtonBase.cs: remove all uses of is_enabled from this code.
819         it's always true when any of the code containing the checks is
820         executed.
821
822 2006-12-06  Chris Toshok  <toshok@ximian.com>
823
824         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
825         with different semantics (some are present in both 1.1 and 2.0
826         profiles) so that we match MS's behavior in our unit tests.
827
828 2006-12-06  Jackson Harper  <jackson@ximian.com>
829
830         * TextControl.cs: Make this operation undoable.
831         * TextBoxBase.cs: Factor the border width into the preferred
832         height.
833         - implement Modified as per the spec.
834
835 2006-12-06  Chris Toshok  <toshok@ximian.com>
836
837         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
838
839 2006-12-06  Chris Toshok  <toshok@ximian.com>
840
841         * Control.cs: make right_to_left and context_menu fields private.
842
843 2006-12-06  Chris Toshok  <toshok@ximian.com>
844
845         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
846         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
847         Control.child_controls private.  switch all uses over to
848         Control.Controls.
849
850 2006-12-06  Chris Toshok  <toshok@ximian.com>
851
852         * System.Windows.Forms/GroupBox.cs,
853         System.Windows.Forms/AccessibleObject.cs,
854         System.Windows.Forms/ErrorProvider.cs,
855         System.Windows.Forms/Control.cs,
856         System.Windows.Forms/UpDownBase.cs,
857         System.Windows.Forms/ScrollBar.cs,
858         System.Windows.Forms/DateTimePicker.cs,
859         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
860         System.Windows.Forms/ToolTip.cs,
861         System.Windows.Forms/RadioButton.cs,
862         System.Windows.Forms/LinkLabel.cs,
863         System.Windows.Forms/Splitter.cs,
864         System.Windows.Forms/TextBoxBase.cs,
865         System.Windows.Forms/ToolStripTextBox.cs,
866         System.Windows.Forms/ContainerControl.cs,
867         System.Windows.Forms/ThemeWin32Classic.cs,
868         System.Windows.Forms/SizeGrip.cs,
869         System.Windows.Forms/ToolStripDropDown.cs,
870         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
871         private.  switch all uses over to Control.Parent.
872
873 2006-12-06  Chris Toshok  <toshok@ximian.com>
874
875         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
876         Control does this before calling emitting these events.
877
878         * TabControl.cs: same.
879
880         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
881         Control.client_rect.
882
883         * ButtonBase.cs: use the ClientSize property instead of the
884         client_size field.
885
886         * ScrollableControl.cs: same.
887
888         * Control.cs: another pass at making properties private.  also,
889         move the initialization of tab_stop to the ctor.
890
891 2006-12-05  Andreia Gaita <avidigal@novell.com>
892
893         * TabControl.cs: Let the selected index be set freely if the 
894         control handle is not yet created.
895
896 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
897
898         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
899         internal until I can rewrite DefaultLayout.
900         * ToolStrip.cs: Fix build error and some general cleaning.
901         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
902         Fix build errors caused by making some of Control's fields private.
903
904 2006-12-05  Jackson Harper  <jackson@ximian.com>
905
906         * TextControl.cs: Redo Insert a little so that it use IndexOf
907         instead of Split, this prevents it from messing up on things like
908         \n\n\n. Also more effecient since the split array doesn't need to
909         be created.
910         * TextBoxBase.cs: AppendText doesnt handle multiline and non
911         multiline text differently, this is the first of many fixes that
912         will make multiline/non-multiline the same thing as far as the
913         TextBoxBase is concerned.
914         - Don't split the text and insert lines, this can lose some line
915         endings (like is the last line a soft or hard break). Instead use
916         the new Insert.
917         - Fix an off by one when combining all the lines in the Text
918         getter.
919         - Remove separate multiline handling from the Text getter/setter.
920
921 2006-12-05  Chris Toshok  <toshok@ximian.com>
922
923         * ButtonBase.cs: a few changes:
924
925         - don't reinitialize internal Control fields in the ctor when they
926         have the same values as Control sets them.
927
928         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
929         this before calling those methods.
930
931         - we don't need to call Refresh for anything.  use Invalidate
932         instead.
933
934         - OnEnabledChanged doesn't need to redraw at all - Control.cs
935         calls Refresh in its OnEnabledChanged.
936         
937         - several of the events we were registered for in the ctor to
938         redraw ourselves already include calls to Invalidate in the
939         property setters that raise the events.  remove the extra
940         invalidation.
941
942         - reformat a switch statement that was 83274658 columns wide.
943         
944 2006-12-05  Mike Kestner  <mkestner@novell.com>
945
946         * ComboBox.cs: fix a unit test regression from a TextBox
947         SelectionLength return of -1 when there's no selection.  
948
949 2006-12-05  Chris Toshok  <toshok@ximian.com>
950
951         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
952         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
953         cleaning up some of the internal Control fields being used by
954         subclasses.
955
956 2006-12-05  Mike Kestner  <mkestner@novell.com>
957
958         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
959         listbox after AddImplicit calls since it defaults to hidden. Add a 
960         hack to preserve requested heights across DropDownStyle changes.
961
962 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
963
964         * PropertyGrid.cs: Hide FindFirstItem method from public API.
965
966 2006-12-05  Chris Toshok  <toshok@ximian.com>
967
968         * DataGridView.cs: fix compiler warnings.
969
970         * PrintControllerWithStatusDialog.cs: same.
971
972         * ToolBar.cs: same.
973
974         * FolderBrowserDialog.cs: same.
975
976         * Splitter.cs: same.
977
978         * DataGridViewComboBoxCell.cs: same.
979
980         * XplatUIWin32.cs: same.
981
982         * PictureBox.cs: same.
983
984         * Win32DnD.cs: same.
985
986         * PageSetupDialog.cs: same.
987
988         * FileDialog.cs: same.
989
990         * PrintDialog.cs: same.
991
992         * DataGridTextBoxColumn.cs: same.
993
994         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
995
996 2006-12-05  Chris Toshok  <toshok@ximian.com>
997
998         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
999         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
1000         System.ComponentModel.EventHandlerList work.
1001
1002 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
1003
1004         * DrawTreeNodeEventArgs.cs: Added.
1005
1006 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1007         
1008         * InternalWindowManager.cs: Remove an unused field.
1009         
1010 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1011
1012         * InternalWindowManager.cs:
1013         - Save the point where the title bar is clicked.
1014         
1015         * MdiWindowManager.cs:
1016         - Only allow moving of the window as long as the 
1017         clicked point on the title bar does not get out of
1018         MdiClient's rectangle. Fixes #79982.
1019         
1020         * MdiClient.cs:
1021         - Added Horizontal/VerticalScrollbarVisible.
1022         - Simplified the scrollbar sizing algorithm.
1023         - Cache the difference in scrolled value in
1024         H/VBarValueChanged and move the calculation out
1025         of the for loop.
1026
1027 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1028
1029         * Control.cs: Make the Console.WriteLine in WndProc 
1030         write more info.
1031
1032 2006-12-05  Chris Toshok  <toshok@ximian.com>
1033
1034         * ToolStripManager.cs, ToolStripButton.cs,
1035         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
1036         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
1037         ToolStripSplitButton.cs, ToolStripSeparator.cs,
1038         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
1039         ToolStripProgressBar.cs, ToolStripContainer.cs,
1040         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
1041         to using System.ComponentModel.EventHandlerList.
1042
1043 2006-12-04  Chris Toshok  <toshok@ximian.com>
1044
1045         * LinkLabel.cs: fix up compiler warnings.
1046
1047         * TableLayoutSettings.cs: same.
1048
1049         * TreeView.cs: same.
1050
1051         * ToolBar.cs: same.
1052
1053         * TabControl.cs: same.
1054
1055         * RichTextBox.cs: same.
1056
1057         * ListViewItem.cs: same.
1058
1059         * PropertyGrid.cs: same.
1060
1061         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
1062
1063         * ToolTip.cs same.
1064
1065         * TextRenderer.cs: fix up compiler warnings.
1066
1067         * Label.cs: same.
1068
1069         * Form.cs: corcompare fixes.
1070
1071         * PictureBox.cs: fix up compiler warnings.
1072
1073         * ImageListStreamer.cs: same.
1074
1075         * TrackBar.cs: corcompare fix.
1076
1077         * Control.cs: fix up compiler warnings.
1078
1079         * SplitterPanel.cs: same.
1080
1081         * NumericTextBox.cs: same.
1082
1083         * ImageList.cs: same.
1084
1085         * StatusStrip.cs: same.
1086
1087         * ProgressBar.cs: corcompare fix.
1088
1089         * ToolStripButton.cs: fix up compiler warnings.
1090
1091         * ToolStripStatusLabel.cs: same.
1092
1093         * ToolStripSplitButton.cs: same.
1094
1095         * ToolStripSeparator.cs: same.
1096
1097         * ToolStripProgressBar.cs: same.
1098
1099         * ToolStripDropDownMenu.cs: same
1100
1101         * ToolStripDropDown.cs: same.
1102
1103         * ToolStripDropDownButton.cs: same.
1104
1105         * ToolStrip.cs: same.
1106
1107         * ToolStripControlHost.cs: same.
1108
1109         * ToolStripContentPanel.cs: same.
1110
1111         * ToolStripDropDown.cs: same.
1112
1113         * ToolStripContainer.cs: same.
1114
1115         * ToolStripPanel.cs: same, and add "new" where we need it to work
1116         with the new ArrangedElementCollection.
1117
1118         * ToolStripItemCollection.cs: add "new" where we need it to work
1119         with the new ArrangedElementCollection.
1120
1121 2006-12-04  Andreia Gaita <avidigal@novell.com>
1122
1123         * TabControl.cs: Fix default tab selection to after TabControl
1124         gets focus and not before. Fixes #80128
1125
1126 2006-12-04  Chris Toshok  <toshok@ximian.com>
1127
1128         * DataGridTableStyle.cs: remove the gross calling of
1129         datagrid.Refresh from here.  It's a broken idea and it doesn't
1130         work anyway.
1131
1132         * DataGrid.cs: instead, just register/unregister from the
1133         DataGridTableStyle events in CurrentTableStyle.  we play it
1134         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
1135         even though some would most likely not require it.  Fixes bug
1136         #80115 (and one portion of #80117 as a side effect).
1137
1138 2006-12-04  Chris Toshok  <toshok@ximian.com>
1139
1140         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
1141         so the textbox (if any) goes away.  Fixes bug #80117.
1142
1143 2006-12-04  Chris Toshok  <toshok@ximian.com>
1144
1145         * DataGridColumnStyle.cs: set the column's readonly property
1146         initially based on the property descriptor's IsReadOnly.  Fixes
1147         bug #80044.
1148
1149 2006-12-04  Chris Toshok  <toshok@ximian.com>
1150
1151         * ComboBox.cs: wrap the dropdown style changing work in
1152         SuspendLayout/ResumeLayout.  Fixes bug #79968.
1153
1154 2006-12-04  Jackson Harper  <jackson@ximian.com>
1155
1156         * TextBoxBase.cs: Fix off by one, since these are one-based.
1157         * TextBox.cs: Select all the text when we get focus.  The TextBox
1158         does this but the RTB does not.
1159
1160 2006-12-04  Chris Toshok  <toshok@ximian.com>
1161
1162         * DataGridTextBoxColumn.cs: remove some spew.
1163
1164         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
1165         but some part of me is saying "it shouldn't be here.."  At any
1166         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
1167         setting the value.
1168
1169 2006-12-04  Chris Toshok  <toshok@ximian.com>
1170
1171         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
1172         to reassign the propertydescriptor.
1173
1174 2006-12-04  Jackson Harper  <jackson@ximian.com>
1175
1176         * TextBoxBase.cs:
1177         * TextControl.cs: Remove some unused variables.  Maybe this will
1178         patch things up between mike and I.
1179         - don't split lines less then one char wide, if the viewport is
1180         that small text won't be visible anyways.
1181         
1182 2006-12-04  Jackson Harper  <jackson@ximian.com>
1183
1184         * TextBoxBase.cs: Default selection length is -1, need to do some
1185         more testing on windows to see when this is used for the property.
1186         - Redid the Lines [] property to that we properly remove soft line
1187         breaks
1188         - added support for preserving carriage returns
1189         -  CanUndo is not a variable like 'is undo enabled' it just returns
1190         true if there is undo operations available.
1191         - AppendText doesn't need to grab the last tag itself anymore,
1192         this happens automatically when we move the cursor.
1193         * TextControl.cs: Add CompoundActions to the undo class. This
1194         allows combining the other operations into one big option.  ie a
1195         paste will combine { delete old, insert new, move cursor }
1196         - Add InsertString undo operation
1197         - New method for deleting multiline text
1198         - Add carriage returns to lines. So we can preserve carriage
1199         returns when text is 'roundtripped'
1200
1201 2006-12-04  Chris Toshok  <toshok@ximian.com>
1202
1203         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
1204         minimum 0.  Fixes the scrollbar exception in bug #80136.
1205
1206 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1207
1208         * MdiClient.cs: 
1209         * MdiWindowManager: Removed unused fields and methods.
1210         
1211 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1212         
1213         * StatusBar.cs: Update all panels when a AutoSize=Contents
1214         panel needs updating.
1215         
1216         * StatusBarPanel.cs: Remove twidth and only use initialize.
1217         Fixes #80031.
1218                 
1219 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1220
1221         * Form.cs: When a form's MdiParent is set add it directly
1222         on top of the z-order in stead of relying on MdiClient's
1223         ActivateChild to do it. Fixes #80135.
1224         
1225         * MdiClient.cs: 
1226         - Remove original_order, mdi_child_list is already doing
1227         the same thing.
1228         - Create mdi_child_list on construction in
1229         stead of first use (avoids a few null checks).
1230
1231         * MenuItem.cs: Use an already existing list of mdi children
1232         to get the correct order of children and remove the other
1233         redundant list.
1234
1235 2006-12-04  Chris Toshok  <toshok@ximian.com>
1236
1237         * PropertyGridView.cs: cached_splitter_location is only used in
1238         !DOUBLEBUFFER code.
1239
1240         * PropertyGrid.cs: implement the ComComponentNameChanged event
1241         using Events, hoping that would fix the warning.  Looks like a
1242         compiler bug instead (#80144).
1243
1244         * PropertyManager.cs: remove unused method.
1245
1246 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
1247
1248         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
1249         include parentesis to fix expression evaluation. Fixes #79634.
1250
1251 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1252         
1253         * MenuAPI.cs:
1254         - Changes to fix behavior in Menu control, some reported in #80097
1255         and other detected during behavior refactory like a select event
1256         problems.
1257         - Remove unneded "if's" conditions.
1258         - Created an internal to flag when popup is active in control, we need 
1259         it because in .NET you can have menu active but without popup active
1260         when you active menu using popup without visible items.
1261         - Mimic win32 behavior for Select and Popup events.  
1262         - Dont open popup menu when you dont have visible subitems.
1263         - Do nothing when click on disabled menu item.
1264         - Some small changes to follow the coding style guidelines.
1265         - Unselect menu only when another control gives focus. Fixes #80097.
1266         - Remove unused code.
1267         
1268         * MenuItem.cs: internal VisibleItems method to check if menu
1269         theres visible subitems, it will be usefull to fix some 
1270         behavior in Menu control.
1271         
1272 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1273         
1274         * Timer.cs: Tag property for 2.0 profile.
1275         
1276 2006-12-01  Chris Toshok  <toshok@ximian.com>
1277
1278         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
1279         
1280         * Win32DnD.cs: comment out some unused fields.
1281
1282         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
1283         some unused properties/methods.
1284
1285         * XplatUIX11.cs: fix MousePosition so we override the base class's
1286         property instead of conflicting with it.
1287
1288         * PictureBox.cs: comment out some unused fields
1289
1290         * OSXStructs.cs: make some struct fields public.
1291
1292         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
1293         MousePosition so we override the base class's property instead of
1294         conflicting with it.
1295
1296         * X11Dnd.cs: comment out some unused fields
1297
1298         * X11DesktopColors.cs: fix some struct field visibility to quiet
1299         the compiler.
1300
1301         * X11Dnd.cs: remove some debug code.
1302
1303         * ThemeClearlooks.cs: comment out unused field.
1304
1305         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
1306
1307         * ThemeGtk.cs: comment out some unused pinvokes.
1308
1309         * Timer.cs: remove some unused fields.
1310
1311         * ThemeClearlooks.cs: comment out unused field.
1312
1313         * UpDownBase.cs: comment out unused field.
1314
1315         * DataObject.cs: comment out unused field.
1316
1317         * DataGridBoolColumn.cs: reomve unused field.
1318
1319         * DataGrid.cs: remove unused field.
1320
1321         * Cursor.cs: remove old ToBitmap code.
1322
1323         * ControlPaint.cs: remove unused method.
1324
1325         * ScrollBar.cs: remove unused fields.
1326
1327         * ComboBox.cs: remove unused field, and chain up to
1328         AccessibleObject ctor.
1329
1330         * ListBox.cs: remove unused field.
1331
1332         * ButtonBase.cs: wrap a couple fields in NET_2_0.
1333
1334         * GridEntry.cs: remove unused fields.
1335
1336         * Binding.cs: remove unused fields.
1337
1338         * AxHost.cs: remove unused method.
1339
1340         * ContainerControl.cs: remove unused field.
1341
1342         * ScrollableControl.cs: remove unused fields.
1343
1344 2006-12-01  Chris Toshok  <toshok@ximian.com>
1345
1346         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
1347         the Where/WhereString stuff.  it's easy enough to CWL
1348         Environment.StackTrace.
1349
1350         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
1351         unused private fields.
1352
1353 2006-12-01  Jackson Harper  <jackson@ximian.com>
1354
1355         * TextControl.cs: Do not update the view while inserting multiline
1356         text. If we update the view we might wrap lines, before entering
1357         the new lines, which causes the new line insertion calculations to
1358         be totally fubared.
1359         - Remove an old TODO
1360         - Make debug output a little nicer
1361         
1362 2006-12-01  Chris Toshok  <toshok@ximian.com>
1363
1364         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
1365
1366 2006-12-01  Chris Toshok  <toshok@ximian.com>
1367
1368         [ fix the majority of the CS0108 warnings we've been suppressing ]
1369         
1370         * TreeView.cs: mark BackgroundImageChanged as 'new'.
1371
1372         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
1373         to "LayoutToolBar" to quiet mcs.
1374         
1375         * TabControl.cs: mark our ControlCollection class as 'new'.
1376
1377         * TextBoxBase.cs: mark some events as 'new'.
1378
1379         * Splitter.cs: TabStop is 'new'.
1380
1381         * ControlBindingsCollection.cs: mark a few methods as new since
1382         they change the visibility from protected to public.
1383
1384         * RadioButton.cs: DoubleClick -> base class, and remove unused
1385         HaveDoubleClick.
1386
1387         * MonthCalendar.cs: ImeMode property -> base class, and mark many
1388         events as new.
1389
1390         * NumericUpDown.cs: TextChanged -> base class.
1391
1392         * CheckedListBox.cs: mark our ObjectCollection class as new to
1393         quiet mcs.
1394
1395         * FolderBrowserDialog.cs: make HelpRequest event new and have it
1396         muck with the base class.
1397
1398         * StatusBar.cs: fix some mcs warnings about Update being the same
1399         name as a base class method.
1400
1401         * RichTextBox.cs: mark some events as new, and make them do things
1402         to the base class impl.
1403
1404         * UserControl.cs: mark TextChanged as new, and have it manipulate
1405         base.TextChanged.
1406
1407         * UpDownBase.cs: mark some things new.
1408
1409         * CheckBox.cs: mark DoubleClick "new", and add some text about
1410         what we need to look at.
1411
1412         * Panel.cs: make the events "new", and manipulate the base
1413         version.  these are just here for attributes.
1414
1415         * AccessibleObject.cs: make owner private.
1416
1417         * Control.cs: deal with AccessibleObject.owner being private.
1418         cache our own copy if we need it.
1419
1420         * Button.cs: add "new" to the DoubleClickEvent.
1421
1422         * ListBox.cs: no need to track our own has_focus here.  let
1423         Control.has_focus do it for us.  Also some other work to clear up
1424         warnings about not overriding base class methods of the same name.
1425         
1426         * ComboBox.cs: clear up some warnings about not override base
1427         class methods of the same name.
1428
1429 2006-12-01  Chris Toshok  <toshok@ximian.com>
1430
1431         * Form.cs: flag a few things as "new" to quiet some of the mcs
1432         warnings.
1433
1434         * AxHost.cs: same.
1435
1436         * PrintPreviewDialog.cs: same.
1437
1438         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
1439         now DGV isn't so horrible on the class status page.  also, move
1440         all events to using System.ComponentModel.EventHandlerList.  my
1441         wrists hurt.
1442
1443 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1444
1445         * MdiWindowManager.cs:
1446         - Set form to active mdi child if shown,
1447         and update the active mdi child to the next 
1448         remaining child in the z-order if the form is hidden.
1449
1450         * Form.cs: 
1451         - Track if the form has been visible and if its 
1452         visibility is beeing changed, so that the MdiClient
1453         can properly decide the ActiveMdiChild. The MdiClient 
1454         cannot track this since the form can change visibility 
1455         before MdiClient is created.
1456
1457         * MdiClient.cs:
1458         - Don't activate anything of the parent form is changing
1459         its visibility.
1460         - Rework ActiveMdiChild to only return visible mdi 
1461         children and take into account several other corner 
1462         cases.
1463
1464 2006-12-01  Chris Toshok  <toshok@ximian.com>
1465
1466         * IBindableComponent.cs: new 2.0 interface.
1467
1468 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
1469
1470         * DataGrid.cs: Font for caption area is bold by default.
1471
1472 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
1473
1474         * Menu.cs: Tag property for 2.0.
1475         
1476 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1477
1478         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
1479         
1480 2006-12-01  Chris Toshok  <toshok@ximian.com>
1481
1482         * TreeView.cs: doh, the Begin* events should be
1483         TreeViewCancelEventHandler.
1484
1485 2006-12-01  Chris Toshok  <toshok@ximian.com>
1486
1487         * Form.cs: Form.ControlCollection already stores off the
1488         form_owner field.  don't access the base class's internal "owner"
1489         field.
1490
1491         * Control.cs: make all the fields in Control.ControlCollection
1492         private.  there's no need for any internal fields here.
1493
1494 2006-12-01  Chris Toshok  <toshok@ximian.com>
1495
1496         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
1497         OnHandleCreated.  Fixes bug #80109.
1498
1499 2006-12-01  Chris Toshok  <toshok@ximian.com>
1500
1501         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
1502         SplitContainer.cs, Control.cs, StatusStrip.cs,
1503         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
1504         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
1505         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
1506         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
1507         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
1508         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
1509         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
1510         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
1511         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
1512         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
1513
1514         do most of the work to convert our code over to use
1515         System.ComponentModel.Component.Events for
1516         adding/removing/dispatching events.
1517
1518
1519 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1520
1521         * DataGridView.cs: Fix an ArgumentNullException reported 
1522         twice today in IRC.
1523
1524 2006-11-30  Mike Kestner  <mkestner@novell.com>
1525
1526         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
1527         grabbed listbox.  Fixes #80036 and #80101.
1528
1529 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1530
1531         * Message.cs: Changed ToString() to match MS.
1532         
1533 2006-11-30  Jackson Harper  <jackson@ximian.com>
1534
1535         * TextBoxBase.cs: You can still change the selected text on a read
1536         only textbox.
1537         * TextControl.cs: Lower magic number for wrap calculations. This
1538         lets text get closer to the right (far) edge.
1539
1540 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1541
1542         * Control.cs: Tweak 2.0 layout properties.
1543         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
1544         * TextRenderer.cs: Add a new overload.
1545         * ToolStrip*: Huge amount of changes and new features.
1546
1547 2006-11-30  Mike Kestner  <mkestner@novell.com>
1548
1549         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
1550         scroll range correct.  Fixes #79994.
1551
1552 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1553
1554         * MdiWindowManager.cs: Update main form's text when
1555         a form is closed. (fixes #80038)
1556         
1557 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
1558
1559         * ToolBar.cs:
1560         - Fix an regression in ButtonSize.
1561         - Get ImeMode default value change to "Disable".
1562         - Get ShowTooltips default value change to true, default value is 
1563         "false" but after make a test in .NET we get "true" result as default.
1564         
1565 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
1566
1567         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
1568
1569 2006-11-29  Chris Toshok  <toshok@ximian.com>
1570
1571         * XplatUIWin32.cs (GetWindowTransparency): check return value of
1572         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
1573         SetWindowTransparency hasn't been called.
1574
1575 2006-11-29  Chris Toshok  <toshok@ximian.com>
1576
1577         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
1578         if it's supported.
1579         (set_AllowTransparency): reorder things a little so that the
1580         WS_EX_LAYERED style is removed properly.
1581
1582 2006-11-29  Chris Toshok  <toshok@ximian.com>
1583
1584         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
1585         
1586         * Form.cs: only call the XplatUI transparency method (get/set) if
1587         SupportsTransparency says it's supported. Otherwise fallback to
1588         doing nothing (in the set case) or returning the instance field we
1589         cache (in the get case).
1590
1591         * XplatUIStructs.cs: add TransparencySupport flag enum.
1592         
1593         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
1594         change to SupportsTransparency.
1595
1596         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
1597         TransparencySupport.None from SupportsTransparency.
1598
1599         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
1600         TransparencySupport.Set from SupportsTransparency.
1601
1602         * XplatUIWin32.cs: implement GetWindowTransparency calling
1603         GetLayeredWindowAttributes, and implement SupportsTransparency by
1604         checking whether or not both
1605         GetWindowTransparency/SetWindowTransparency are available
1606         entrypoints.  We need to do this since SetWindowTransparency is
1607         available as of win2k, but GetWindowTransparency requires winxp.
1608         yay win32 api.
1609
1610         * XplatUI.cs: Add GetWindowTransparency, and change
1611         SupportsTransparency to allow for either/both Get/Set.
1612
1613 2006-11-29  Chris Toshok  <toshok@ximian.com>
1614
1615         * DataGrid.cs: keep from going into an infinite loop redrawing a
1616         datagrid that has no datasource.  Fixes bug #80033.
1617
1618 2006-11-29  Chris Toshok  <toshok@ximian.com>
1619
1620         * MenuItem.cs: fix the NRE when we assign text (and therefore call
1621         Invalidate) before the mainmenu has been assigned to a control.
1622
1623 2006-11-29  Chris Toshok  <toshok@ximian.com>
1624
1625         * DataGrid.cs: detect when we should be double the double click
1626         row/column autosize stuff, although that codepath has yet to be
1627         written.  part of the work for bug #79891.
1628
1629 2006-11-29  Chris Toshok  <toshok@ximian.com>
1630
1631         * Binding.cs (SetControl): fix unit test.
1632
1633 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1634
1635         * PageSetupDialog.cs: Validate the margins and set them in
1636         PageSettings. 
1637         * NumericTextBox.cs: New class to mimic the behavior of the
1638         textboxes used in the printing dialogs.
1639
1640 2006-11-29  Andreia Gaita  <avidigal@novell.com>
1641         
1642         * Form.cs: Revert previous change (remove call UpdateBounds
1643         from form constructor), because it messes with the handle creation
1644         order, and that one needs lots and lots of love.
1645         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
1646         for valid printer and throw InvalidPrinterException if document
1647         is set but printer not valid), adding a MonoTODO. Once 
1648         handle creation is done properly, we can put this back in.
1649
1650 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1651
1652         * MenuItem.cs: Create a invalidate method for menu item, to be
1653         calling from set text, it make text changes to imadiate update
1654         on screen. Fixes #80013. 
1655         
1656 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1657
1658         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
1659         fixes bug #80070 and some other problem on toolbar buttons
1660         layout.
1661
1662 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1663
1664         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
1665         with dotted brush.      Fixes #79564
1666         
1667 2006-11-28  Andreia Gaita  <avidigal@novell.com>
1668
1669         * Form.cs: Removed call to UpdateBounds on Form
1670         constructor, it was causing a call to CreateHandle
1671         before it was supposed to.
1672         * PrintControllerWithStatusDialog: Applied patch
1673         by Chris Toshok to hide controller when there are
1674         no printers available.
1675         PrintDialog.cs: initialize printer settings to 
1676         null - correct DefaultValues test #5
1677         * PrintPreviewControl.cs: Move PrintController
1678         initialization to GeneratePreview
1679         * PrintPreviewDialog.cs: 
1680         - Remove Preview generation     from Document_set(). It is 
1681         called on OnPaint
1682         - Throw InvalidPrinterException on CreateHandle if
1683         a Document is set but there are no printers or 
1684         printer is not valid.
1685         * ThemeWin32Classic: don't paint PrintPreviewControl
1686         if there is nothing to paint    
1687
1688 2006-11-28  Miguel de Icaza  <miguel@novell.com>
1689
1690         * Form.cs: Add another popular method.
1691
1692         * TabPage.cs: ditto.
1693
1694 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1695
1696         * MenuItem.cs: Fixed a warning.
1697         * InternalWindowManager: Fixed a warning.
1698
1699 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1700
1701         * MenuItem.cs:
1702         - When cloning a menu also clone MdiList and clone the 
1703           window menu items properly (as the forms and menuitems
1704           are kept in an internal hashtable, these need updating 
1705           as well)
1706         - Rewrote the window menu code, menu items are added in the
1707           order the forms were added to their parent, and they are
1708           updated every time the window menu is shown (before the
1709           list was only generated once, in the current order of the
1710           forms, and would never be updated). A checkmark is shown
1711           next to the item corresponding to the active mdi child.
1712
1713 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1714
1715         * XplatUIStructs.cs: 
1716         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
1717         
1718         * XplatUIWin32.cs: 
1719         - Added TME_NONCLIENT to TMEFlags.
1720         - Handles WM_NCMOUSEMOVE in GetMessage to 
1721           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
1722
1723         * MdiWindowManager:
1724         - Now merges mdi child menu to parent menu when maximized.
1725         - Recalculate NC areas of both mdi child and mdi parent. 
1726           Fixes #79757 (4).
1727           on window state and size changes.Fixes #79844 (3).
1728         - Handle WM_NCCALCSIZE to properly calculate borders.
1729
1730         * Form.cs:
1731         - Add/remove to the mdi containers list of mdi children 
1732           in the order they are added.
1733         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
1734           to the maximized mdi child.
1735         
1736         * InternalWindowManager.cs:
1737         - Only execute a click on the control buttons on the mouse up,
1738           not on the mouse down. Show the state of the button 
1739           (was only showing Normal state, never Pressed state). The
1740           pressed button now follows the mouse (if you click the Close 
1741           button and move the mouse over the Maximize button, the 
1742           Maximize button will be shown as pressed). Since Win32 does
1743           not generate WM_NCLBUTTONUP if you release the button outside
1744           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
1745           it as a mouse up.
1746         
1747         * ThemeWin32Classic.cs:
1748         - Draw a missing border around mdi child forms. Fixes #79844 (2).
1749
1750         * MdiClient.cs:
1751         - Added a list of forms which contains the order the forms are
1752           added to the mdi parent.
1753         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
1754         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
1755         - If the active form changes set the scrollbars to the top
1756           of the Z order, otherwise the form could hide them.
1757         - Scrollbars are now sized according to ClientSize, not 
1758           to Size, and they take into account the other scrollbar
1759           to determine maximum.
1760         
1761 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
1762         
1763         * XplatUI.cs:
1764         * XplatUIDriver.cs:
1765         * XplatUIX11.cs:
1766         * XplatUIWin32.cs:
1767         * XplatUIOSX.cs:
1768         - Added RequestAdditionalWM_NCMessages for windows to 
1769           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
1770           Currently only implemented in XplatUIWin32.
1771
1772 2006-11-27  Chris Toshok  <toshok@ximian.com>
1773
1774         * Hwnd.cs: only add the hwnd to the windows hash in
1775         set_WholeWindow and set_ClientWindow if whole_window/client_window
1776         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
1777
1778 2006-11-27  Mike Kestner  <mkestner@novell.com>
1779
1780         * ComboBox.cs: remove redundant OnDropDown call.  It is called
1781         from the ComboListBox.ShowWindow code. Fixes #79969.
1782
1783 2006-11-27  Chris Toshok  <toshok@ximian.com>
1784
1785         * Hwnd.cs: remove the setters for ExposePending and
1786         NCExposePending - noone uses them.
1787
1788 2006-11-27  Jackson Harper  <jackson@ximian.com>
1789
1790         * TextControl.cs: new param for ReplaceSelection which determines
1791         whether we select the new selection, or set the cursor to the end
1792         of the new selection.
1793         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
1794         pasting, select the new text.
1795         * RichTextBox.cs: Use new param for ReplaceSelection.
1796
1797 2006-11-27  Jackson Harper  <jackson@ximian.com>
1798
1799         * TextBoxBase.cs: Set the selection to the caret after the caret
1800         is moved, otherwise they get out of sync.
1801
1802 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1803
1804         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
1805         it fixes #80015
1806
1807 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1808
1809         * ThemeWin32Classic.cs: 
1810         - Fix toolbar drop down arrow position.
1811         - Fix drop down appearance when ToolBar.Appearance is normal,
1812         it fixes #80018.
1813         
1814 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
1815
1816         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
1817         * Control.cs: Same.
1818         * UpDownBase.cs: Same.
1819         * ButtonBase.cs: Same.
1820         * ScrollBar.cs: Same.
1821         * TrackBar.cs: Same.
1822         * PictureBox.cs: Same.
1823         * UserControl.cs: Same.
1824         * Label.cs: Same.
1825         * ListControl.cs: Same.
1826         * TextBoxBase.cs: Same.
1827         * ListView.cs: Same.
1828         * RichTextBox.cs: Same.
1829         * TreeView.cs: Same.
1830
1831 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
1832
1833         * PrintDialog.cs:
1834         - Text label for where 
1835         - Text label comment was not shown
1836
1837 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
1838
1839         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
1840
1841 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1842
1843         * InternalWindowManager.cs: 
1844         - Handle WM_PARENTNOTIFY to activate the form
1845         if any child control is clicked.
1846         - The form is only sizable if not minimized.
1847
1848         * MdiWindowManager.cs:
1849         - Save the IconicBounds if the form is moved.
1850         - Rework SetWindowState, now the window bounds 
1851         are stored only if the old window state is Normal.
1852         
1853         * MdiClient.cs:
1854         - In SetWindowStates store the old window state if 
1855         the window is maximized and restore window state if
1856         the window looses focus.
1857         - Don't handle any scrollbar value changes if 
1858         initializing the scroll bars. Fixes #79771.
1859         - Reworked ArrangeIconicWindows. Current algorithm
1860         tests bounds agains all other minimized windows, if
1861         any intersections create new bounds (going left to 
1862         right, bottom to top) and then test again. When 
1863         successful the bounds are saved and never computed
1864         again. Fixes #79774.
1865
1866 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1867
1868         * InternalWindowManager.cs: Added HandleTitleBarUp.
1869
1870 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1871
1872         * NumericUpDown.cs: In .NET 1.1, user entered text is still
1873         hexadecimal in ParseUserEdit.
1874
1875         
1876 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1877
1878         * MdiWindowManager.cs: 
1879         - Handle a click on the form's icon to show the 
1880         system menu (when maximized). Fixes #79775.
1881         - Change the existing click handler for the form's
1882         icon when not maximized to show on MouseUp.
1883         Fixes #79776.
1884
1885         * Form.cs: In OnResize only layout the mdi child's
1886         parent if it actually has a parent. Might not if
1887         the window is closing.
1888
1889
1890 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1891
1892         * MdiClient.cs: Ignore active MDI client for text of parent, if
1893         child has no text set.
1894
1895 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1896
1897         * ToolBar.cs: Fixed ToString to match MS.
1898
1899 2006-11-22  Andreia Gaita  <avidigal@novell.com>
1900
1901         * NumericUpDown: 
1902         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
1903         update inner values on set. Fixes #79966.
1904         - Override OnLostFocus to update value on NET 2. Fixes #79950.
1905         - Fix hexadecimal parsing.
1906         
1907         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
1908         parent. Fixes #79957
1909
1910 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1911
1912         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
1913         the actual size has to be queried, since if height /
1914         width is negative Win32 changes it to 0. 
1915         Fixes #79999 on Windows.
1916         
1917         * XplatUIX11.cs: Set height / width to 0 if negative
1918         in SetWindowPos. Fixes #79999 on Linux.
1919         
1920 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1921
1922         * ThemeWin32Classic.cs: Fix text redenring when button is
1923         pressed.
1924
1925 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1926
1927         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
1928         and later navigate by mouse. Fixes #79528.
1929
1930 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1931
1932         * ToolBar.cs: Set default value for TabStop to false in
1933         constructor, it fixes remaining behavior of bug #79863.
1934
1935 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1936
1937         * MdiWindowManager.cs:
1938         * InternalWindowManager.cs:
1939         - Moved a few methods specific to Mdi from 
1940         InternalWindowManager to MdiWindowManager.
1941         Fixes #79996.
1942         
1943 2006-11-21  Chris Toshok  <toshok@ximian.com>
1944
1945         * XplatUIOSX.cs: stub out InvalidateNC.
1946
1947         * XplatUIWin32.cs: implement InvalidateNC using the call I found
1948         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
1949
1950         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
1951
1952         * XplatUIDriver.cs: add InvalidateNC abstract method.
1953
1954         * XplatUI.cs: add InvalidateNC.
1955
1956 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1957
1958         * ToolBar.cs: Invalidate complete button area when pressed status 
1959         was changed.
1960         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
1961         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
1962         by 1 when button is pressed.
1963
1964 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1965
1966         * ToolButton.cs: Invalidate middle of DropDown button when
1967         ToolBar theres DropDownArrows.
1968         * ThemeWin32Classic.cs: Change position of DropDown arrow and
1969         fix DropDown drawing operations.
1970
1971 2006-11-20  Chris Toshok  <toshok@ximian.com>
1972
1973         * NativeWindow.cs: fix the formatting of functions ('{' on the
1974         following line), and enable the thread exception dialog.
1975
1976         * Application.cs: remove the duplicate exception catching from
1977         here.
1978
1979 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1980
1981         * Toolbar.cs: Triggers button click event when click on icon
1982         of dropdown ToolBarButton. Fixes #79912.
1983         
1984 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1985
1986         * Theme.cs:
1987         * ThemeWin32Classic.cs:
1988         - Added a property WindowBorderFont to enable themeing
1989           of mdi child windows' Text.
1990           
1991 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1992
1993         * InternalWindowManager.cs:
1994         * Form.cs:
1995         * MdiClient.cs:
1996         * MdiWindowManager.cs: 
1997         - If mdi child is maximized, set mdi parent's
1998           text to "Parent - [Child]". Fixes #79770.
1999         - If there is any maximized mdi child windows, only the active 
2000           window (and any new windows) is maximized, the rest are normal.
2001         - On a WindowState change only save mdi child's window bounds 
2002           if the old window state was normal. Fixes #79774.
2003         - The scroll bars are now calculated on hopefully all
2004           necessary events. Fixed #79771 / #79844->6 / #79906.
2005         - MdiClient.SizeScrollBars() now takes into account docked 
2006           controls in the parent when calculating available space.
2007         - InternalWindowManager now always repaints the entire title
2008           area. Fixes #79844->1/4/5.
2009         - Added RequestNCRecalc on mdi child windowstate changes.
2010           Fixes #79772.
2011
2012 2006-11-20  Mike Kestner  <mkestner@novell.com>
2013
2014         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
2015         in the MouseUp handler of the listbox and move the return handling
2016         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
2017
2018 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2019
2020         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
2021
2022 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2023
2024         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
2025           working in 1.2.x anymore. So, updated.
2026
2027 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
2028
2029         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
2030         NumberGroupSeparator of current culture instead of assuming en-US.
2031         Fixed bug #79967.
2032
2033 2006-11-17  Mike Kestner  <mkestner@novell.com>
2034
2035         * Control.cs: Add the concept of implicit bounds setting so that
2036         dock/undock round trips preserve explicitly set size/locations.
2037         Fixes #79313.
2038
2039 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2040
2041         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
2042           can't handle those filters. (Fixes bug #79961)
2043
2044 2006-11-17  Chris Toshok  <toshok@ximian.com>
2045
2046         [ fixes the exit/crashes associated with #79835.  it's clearly
2047         suboptimal though, we need to figure out a better way to solve
2048         this. ]
2049         
2050         * PrintPreviewControl.cs: deal with the new invalid printer
2051         exceptions.
2052
2053         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
2054         and return false (so CommonDialog.ShowDialog doesn't actually show
2055         the form.)
2056
2057         * PrintDialog.cs: enable/disable the Ok button depending on
2058         whether or not the printer is valid.
2059
2060         * CommonDialog.cs (ShowDialog): only actually show the form if
2061         RunDialog returns true.
2062
2063 2006-11-17  Jackson Harper  <jackson@ximian.com>
2064
2065         * TextControl.cs: When soft splitting a line, mark it as a soft
2066         split line. Also carry over the current line break to the next
2067         line.
2068
2069 2006-11-17  Chris Toshok  <toshok@ximian.com>
2070
2071         * XplatUIX11.cs: when scrolling a window with an invalid area, we
2072         only want to shift the part of the invalid area that overlaps the
2073         area we're scrolling.  we also don't want to clear the invalid
2074         area unless the invalid area was entirely contained within the
2075         scrolling area.
2076
2077 2006-11-16  Chris Toshok  <toshok@ximian.com>
2078
2079         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
2080         also make sure to free the memory returned by XGetWindowProperty
2081         in GetText().
2082
2083         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
2084
2085 2006-11-16  Chris Toshok  <toshok@ximian.com>
2086
2087         * XplatUI.cs: add a new super secret way to get at the totally
2088         unsupported X11 backend.
2089
2090 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
2091
2092         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
2093
2094 2006-11-16  Jackson Harper  <jackson@ximian.com>
2095
2096         * TreeView.cs: Allow more explicit setting of top node position
2097         for scrollbars. Slower algo, but more accurate.
2098         - CollapseAll should maintain the current top node.
2099         * TextBoxBase.cs: When positioning the caret, use the line, pos
2100         method, since the x, y method does not grab the correct tag, and
2101         the caret height never gets set correctly. (Maybe I should just do
2102         away with the caret having its own height, and always use the
2103         carets current tag for height).
2104
2105 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
2106
2107         [Fixes 79778, 79923]
2108
2109         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
2110         Parent to the FosterParent instead.
2111
2112 2006-11-16  Jackson Harper  <jackson@ximian.com>
2113
2114         * TreeView.cs: Need to recalc the topnode when we expand or
2115         collapse. The scrolling methods can't handle this on their own,
2116         since they use differences between the last scroll position, and
2117         those difference get completely messed up since we are expanding
2118         nodes.  This problem should probably be fixed in the scrolling
2119         methods, so they can figure out exactly where they are, but this
2120         will slow things down a little.
2121         * ThemeWin32Classic.cs: Special case for groupboxes with empty
2122         strings, makes nunit-gui look a lot nicer.
2123
2124 2006-11-16  Chris Toshok  <toshok@ximian.com>
2125
2126         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
2127         the broken multithreaded event handling we have in here.  File
2128         this entry under "Why we should move to the new X11 backend".
2129
2130         Any thread can make it into UpdateMessageQueue, which gets events
2131         from the X socket - some of which could belong to hwnds being
2132         managed by a different thread.  We can also have multiple threads
2133         in UpdateMessageQueue at the same time, with each one reading from
2134         the X socket.  This leads to many problems, with the following
2135         solutions:
2136
2137         We can't use hwnd.Queue.Enqueue anywhere in here and must use
2138         EnqueueLocked.
2139
2140         The MotionNotify compression we do can't work across threads
2141         (without locking the entire queue, perhaps) since we call
2142         hwnd.Queue.Peek, so we just punt and don't compress motion events
2143         unless the owning thread is the one which got the X event.
2144
2145         ConfigureNotify is another fun one, since it modifies the hwnd's
2146         bounds and then enqueues the event.  We add a lock to Hwnd which
2147         is held when setting configure_pending to true (and enqueuing the
2148         event).
2149
2150         There is a race wrt the wake socket.  we need to make sure that
2151         only 1 thread is waiting on that socket, or else a thread could
2152         sleep waiting for data that never comes.  It's difficult (but not
2153         impossible) to make happen, because it seems to require something
2154         like the following:
2155
2156             1. Thread 1 polls on wake_receive
2157         
2158             2. poll returns saying there's data to be read on
2159                wake_receive.
2160         
2161             3. Thread 2 polls on wake_receive and immediately returns
2162                saying there's data to be read.
2163
2164             4. Thread 2 reads the wakeup byte from wake_receive
2165
2166             5. Thread 1 attempts to read the wakeup byte from
2167                wake_receive.
2168
2169             6. Thread 2 exits (due to a form closing, perhaps).
2170
2171             7. Thread 1 blocks forever.
2172         
2173         Fun, eh?
2174
2175         Fixing the Expose handling isn't done yet, and the races inherent
2176         in that piece of code are responsible for the drawing mistakes you
2177         see when generating expose events in a MT app (like NPlot).  This
2178         one is the likely to be the hardest to bandaid, and it doesn't
2179         appear to cause anything but drawing problems.  The other issues
2180         caused apps to exit or hang.
2181
2182         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
2183         called from a different thread than the one that should be calling
2184         these functions.
2185
2186         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
2187
2188 2006-11-15  Chris Toshok  <toshok@ximian.com>
2189
2190         * Application.cs: null out the context's MainForm when we exit
2191         RunLoop.  Fixes a newly checked in unit test as well as the last
2192         ODE from bug #79933.
2193
2194 2006-11-15  Chris Toshok  <toshok@ximian.com>
2195
2196         * Form.cs (set_Owner): allow a null value so we can clear the
2197         form's owner.
2198         (Dispose): set all our owned_form's Owner properties to null, and
2199         clear the owned_forms collection.
2200         (WM_CLOSE): clean up this a little bit.. still not right though.
2201
2202         * ApplicationContext.cs: OnMainFormClosed should only call
2203         ExitThreadCore if the main form isn't recreating.  Fixes unit
2204         test.
2205
2206 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2207
2208         [Fixes 78346]
2209
2210         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
2211
2212 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2213
2214         [Fixes 79433]
2215
2216         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
2217         keep popup window types from stealing focus from the main form
2218         on Windows.
2219
2220         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
2221
2222         * MenuAPI.cs: Set above flag to true.
2223
2224 2006-11-15  Chris Toshok  <toshok@ximian.com>
2225
2226         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
2227         the button being released is not in wParam.
2228
2229 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2230
2231         * Form.cs: Add the released button to MouseEventArgs.Button
2232         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
2233         on Win32.
2234
2235 2006-11-15  Chris Toshok  <toshok@ximian.com>
2236
2237         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
2238         GetText().  untested because it's unused in our implementation.
2239         Control.Text always caches the text, even if
2240         ControlStyles.CacheText is not set.
2241
2242         fixes bug #79939.
2243
2244 2006-11-15  Chris Toshok  <toshok@ximian.com>
2245
2246         [ fixes #79933 ]
2247         
2248         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
2249         message.  no hiding, no disposing.
2250
2251         in the WM_CLOSE handler, hide the form if it's modal.
2252
2253 2006-11-15  Chris Toshok  <toshok@ximian.com>
2254
2255         * XplatUIX11.cs: use AddExpose instead of sending a message.
2256         fixes textbox border drawing.
2257
2258 2006-11-15  Chris Toshok  <toshok@ximian.com>
2259
2260         * PropertyGridView.cs: keep from crashing on mouse move/down when
2261         the property grid is empty.
2262
2263 2006-11-14  Jackson Harper  <jackson@ximian.com>
2264
2265         * TextControl.cs: Make PageUp and PageDown more like the MS
2266         versions.
2267         * TextBoxBase.cs: When we set the text property position the
2268         cursor at the beginning of the document.
2269
2270 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2271
2272         * Form.cs: if a mdi child's WindowState has changed
2273         before it's creation, it would display wrong control
2274         buttons.
2275         
2276 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
2277
2278         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
2279           (Fixes bug #79927)
2280
2281 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2282
2283         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
2284         the window gets to paint its borders even if the window is
2285         getting smaller.
2286         
2287         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
2288         otherwise the old control buttons would still be painted 
2289         if the window gets bigger.
2290         
2291         * PaintEventArgs.cs: add an internal method so that the clip 
2292         rectangle can be changed.
2293         
2294 2006-11-13  Chris Toshok  <toshok@ximian.com>
2295
2296         [ fixes bug #79745 ]
2297         
2298         * NotifyIcon.cs: lots of cleanup.
2299
2300         * X11Structs.cs: add an enum for XEMBED messages.
2301
2302         * XplatUIX11.cs: reindent one of the giant switch statements, it
2303         was taking up an additional tab stop, and this file is already way
2304         too wide for my laptop's screen.
2305
2306         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
2307         we get it, resize the hwnd to the WMNormalHints max_width/height.
2308
2309 2006-11-13  Jackson Harper  <jackson@ximian.com>
2310
2311         * TextBoxBase.cs: Compute the value changes for the mouse wheel
2312         teh simple way.
2313
2314 2006-11-13  Chris Toshok  <toshok@ximian.com>
2315
2316         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
2317         #79898.  force a reference to the Region to stick around so the
2318         unmanaged object isn't collected (rendering our handle in the MSG
2319         stale).
2320
2321 2006-11-13  Chris Toshok  <toshok@ximian.com>
2322
2323         * XplatUIX11.cs: fix #79917 for window managers which support
2324
2325         using XStoreName on the raw utf8, and we need to convert to
2326         COMPOUND_TEXT if it's non-latin1.
2327
2328 2006-11-13  Chris Toshok  <toshok@ximian.com>
2329
2330         * Form.cs (set_DialogResult): we need to set closing to false if
2331         we're setting our result to None.  fixes bug #79908.
2332
2333 2006-11-13  Jackson Harper  <jackson@ximian.com>
2334
2335         * TextControl.cs: When formatting text, compute the adjusted tag
2336         lengths correctly, using FindTag for the end tag instead of trying
2337         to figure it out outselves.
2338         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
2339         the item, ItemHeight doesn't work, because trees with large
2340         imagelists use those for their height
2341         * TreeView.cs: ActualItemHeight factors in the image height
2342         - compute left edge of checkboxes correctly
2343         - when expanding/collapsing move the bottom down one pixel, so we
2344         aren't moving part of the node
2345
2346 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2347
2348         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
2349         stack in PaintEventStart so that it won't get disposed by the gc
2350         before reaching PaintEventEnd.
2351
2352 2006-11-13  Jackson Harper  <jackson@ximian.com>
2353
2354         * TextBoxBase.cs: Don't select the word if we are on a line with
2355         no text.
2356         - We don't need to position the caret on mouse up, since the mouse
2357         move handler should be doing this
2358         - When double clicking a blank line, the caret is advanced to the
2359         next line.
2360
2361 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
2362
2363         * TreeNodeCollection.cs: Avoid duplicating indexer code.
2364
2365 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
2366
2367         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
2368         Fixes part of bug #79910.
2369
2370 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
2371
2372         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
2373           (bug #79903). Some minor string updates to match ms.
2374
2375 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2376
2377         * FileDialog.cs: Don't add an extension if the filename
2378           already ends with that extension.
2379
2380 2006-11-10  Jackson Harper  <jackson@ximian.com>
2381
2382         * TreeView.cs: Use the currently highlighted node for the
2383         BeforeSelect event.
2384         * TextBoxBase.cs: There is no need to expand selection on
2385         MouseMove.
2386         - CanUndo means 'is there any undo operations', not 'is undo
2387         allowed on this textcontrol. Fixed ClearUndo unit test.
2388
2389 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
2390
2391         * Button.cs: only perform click when button is Selectable (so as 
2392         not to activate default buttons when they're disabled)
2393         
2394         * Control.cs: Rewrite of the SelectNextControl and related 
2395         methods. HandleClick now selects next control if the current one
2396         is being disabled.
2397         
2398         * Form.cs: OnActivated selects next active control only if Load 
2399         has already occurred. If Load hasn't run, there's no point in 
2400         selecting here, Load might change the state of controls.
2401         
2402         * FocusTest.cs: Tests marked as working again for these fixes
2403
2404 2006-11-10  Chris Toshok  <toshok@ximian.com>
2405
2406         * XplatUIX11.cs: a couple of fixes.
2407
2408         - use XInternAtoms with almost all the atoms we need to register,
2409         instead of many, many calls to XInternAtom.  should help a bit on
2410         startup time, at the expense of making the code look a little
2411         worse.
2412
2413         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
2414         isn't reparented (which seems to be a clue that we're running fon
2415         compiz) and they have an Owner form.  This fixes the tool windows
2416         in paint.net when running under compiz.
2417
2418         - when setting the opacity of a window, support both the case
2419         where the window has been reparented and also when it hasn't been.
2420         Since compiz/beryl doesn't seem to reparent windows, and these are
2421         the only window managers which support translucency, I'm not sure
2422         why we need the hwnd.reparented case at all.. but leave it in.
2423         now we get translucent windows in paint.net under compiz/beryl.
2424
2425 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2426
2427         * FileDialog.cs: Always return the value for FilterIndex that
2428           was set. Internally convert it to values that make sense.
2429
2430 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2431         
2432         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
2433
2434 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2435
2436         * Toolbar.cs: Change default value of DropDownArrows to true, the 
2437         signature still using false to make it compatible with MS but the 
2438         initial value is true. Fixes #79855.
2439
2440 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2441
2442         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
2443           only available on Linux.
2444
2445 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
2446
2447         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
2448         reduce number of calls to redraw method during toolbar creation.
2449
2450 2006-11-09  Mike Kestner  <mkestner@novell.com>
2451
2452         * ListView.cs : raise SelectedIndexChanged when an item is selected
2453         programmatically via the Item.Selected property.  Gert's nice 
2454         ListViewSelectedIndexChanged test fixture now runs clean.
2455
2456 2006-11-09  Mike Kestner  <mkestner@novell.com>
2457
2458         * ListView.cs : raise SelectedIndexChanged when a selected item is
2459         removed from the item collection using Remove or RemoveAt.
2460
2461 2006-11-09  Mike Kestner  <mkestner@novell.com>
2462
2463         * ListView.cs : raise SelectedIndexChanged once per selected item
2464         for compat with MS.  Fixes #79849+.
2465
2466 2006-11-09  Chris Toshok  <toshok@ximian.com>
2467
2468         * TabControl.cs: initialize row_count to 0, and set it to 1 when
2469         we need to (if we have any tab pages).  Fixes unit test.
2470
2471 2006-11-09  Chris Toshok  <toshok@ximian.com>
2472
2473         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
2474         width is 0, not 3.  Fixes a unit test.
2475
2476 2006-11-09  Mike Kestner  <mkestner@novell.com>
2477
2478         * ListView.cs : use Implicit scrollbars so that focus isn't 
2479         stolen from the listview when they are clicked. Fixes #79850.
2480
2481 2006-11-09  Chris Toshok  <toshok@ximian.com>
2482
2483         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
2484         have a root item.  Fixes #79879.
2485
2486 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
2487
2488         * FileDialog.cs:
2489           - Fix ToString ()
2490           - An ArgumentException is now thrown if a wrong filter
2491             is applied (matches ms). The previous filter doesn't change
2492             anymore if an exception is thrown.
2493           - Changing the FileName property also affects FileNames
2494         * ColorDialog.cs: The length of the CustomColors array is always
2495           16. It doesn't matter if we use a smaller array or null to update
2496           or change the custom colors property.
2497         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
2498           for RootFolder if we get a undefined value.
2499
2500 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2501
2502         * StatusBarPanel.cs: 
2503         - Width is set to MinWidth if Width is smaller than
2504         MinWidth. Fixes #79842.
2505         - MinWidth now always overrides Width (MSDN says MinWidth
2506         is set to Width when AutoSize = None, but they do not 
2507         behave like that).
2508         - Style has now the the correct default value.
2509         
2510 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2511  
2512         * TrackBar.cs: 
2513         - The control is completely invalidated on 
2514         Got/LostFocus to draw the focus rectangle correctly.
2515         - When AutoSize then height is always 45 (width for 
2516         vertical controls).
2517         
2518         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
2519         on the mouse when moved and it doesn't move when grabbed
2520         until the mouse moves as well. Also fixed some wrong 
2521         calculations when clicking on the thumb (control thought
2522         click was outside of thumb and didn't grab it).
2523         Fixes some of the issues in #79718.
2524
2525 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
2526
2527         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
2528
2529 2006-11-08  Chris Toshok  <toshok@ximian.com>
2530
2531         * PropertyGridView.cs: only call ToggleValue if the item is not
2532         readonly.
2533
2534 2006-11-08  Jackson Harper  <jackson@ximian.com>
2535
2536         * TextBoxBase.cs: The RichTextBox and textbox have very different
2537         word selection methods.  Implement the textbox's simple word
2538         selection here, and let the RichTextBox override and provide it's
2539         own.
2540         - Don't do extra selection on mouseup
2541         * RichTextBox.cs: Use the documents word selection algorithm, I
2542         think ideally, this function will be pulled into the
2543         RichTextBox.cs code someday.
2544
2545 2006-11-08  Chris Toshok  <toshok@ximian.com>
2546
2547         * RootGridEntry.cs: new class to represent GridItemType.Root.
2548
2549         * CategoryGridEntry.cs: reformat, and add boilerplate.
2550         
2551         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
2552         returns the UI parent anyway, and we need special handling to
2553         implement the GetTarget method in the face of it.  Also, implement
2554         Select().
2555
2556         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
2557         a root grid item, and use that instead of PropertyGrid.grid_items.
2558         Also, make use of TypeConverters (and add limitted support for
2559         ICustomTypeDescriptors) when initially populating the grid.
2560         Arrays now show up more or less properly.
2561
2562 2006-11-08  Chris Toshok  <toshok@ximian.com>
2563
2564         * Application.cs: set the modal dialog to non modal after we close
2565         it.  Fixes bug #79866.
2566
2567 2006-11-08  Jackson Harper  <jackson@ximian.com>
2568
2569         * TextControl.cs: When combining lines carry over the line end
2570         style from the end line.
2571         - Invalidate the selected area when setting it, if it is visible.
2572         * TextBoxBase.cs: Only rich text box can do full line selects.
2573         - Make sure to set the cursor position when there is a click,
2574         otherwise two clicks in separate areas could cause a large chunk
2575         to be selected.
2576
2577 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2578
2579         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
2580         Fixes #79863.
2581
2582 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2583
2584         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
2585         time. Remove tooltips when ToolButton click events.  Fixes #79856.
2586
2587 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2588
2589         * MenuAPI.cs: Ignore right click for menu actions and fixes
2590         menu border when clicked.  Fixes #79846.
2591
2592 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2593
2594         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
2595         MouseState after create wParam for message, this fixes mouse button 
2596         equal none in mouse up events.
2597         
2598 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
2599
2600         * Control.cs : Focus() now calls Select to set the Container's
2601         Active Control and to give it focus. To avoid infinite recursion
2602         (because ActiveControl also calls Focus at one point), a check 
2603         is made in Focus with the help of a new internal variable
2604         is_focusing.
2605
2606 2006-11-07  Mike Kestner  <mkestner@novell.com>
2607
2608         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
2609         if there's a selection.  Fixes #79849.
2610
2611 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
2612
2613         * PropertyGrid.cs: Avoid fixed height of help description label.
2614         Fixes part of bug #79829.
2615
2616 2006-11-07  Chris Toshok  <toshok@ximian.com>
2617
2618         * XplatUIX11.cs: fix #79790 again, by using the
2619         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
2620
2621 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2622
2623         * ToolBar.cs: Fix left click checking.
2624
2625 2006-11-07  Chris Toshok  <toshok@ximian.com>
2626
2627         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
2628
2629 2006-11-07  Chris Toshok  <toshok@ximian.com>
2630
2631         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
2632         PropertyManager unit tests.
2633
2634         * PropertyManager.cs: make property_name internal.
2635
2636 2006-11-07  Chris Toshok  <toshok@ximian.com>
2637
2638         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
2639         pass a unit test.  Also, don't set image_index to anything in
2640         response to setting the ImageList property.
2641
2642 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2643
2644         * ToolBar.cs: Ignore click events when mouse button is not a
2645         left button, only accepts other button for dropdown menus.  
2646         Fixes #79854.
2647
2648 2006-11-07  Chris Toshok  <toshok@ximian.com>
2649
2650         * DataGrid.cs: make the back and parent row buttons a little less
2651         ugly.
2652
2653 2006-11-07  Jackson Harper  <jackson@ximian.com>
2654
2655         * TextBoxBase.cs: When converting to Text don't put line breaks in
2656         for soft line breaks.
2657         * TextControl.cs: There is an initial "fake" line in the document,
2658         this is now a soft break line, so that an extra line feed doesn't
2659         get added to the end of documents.
2660
2661 2006-11-07  Chris Toshok  <toshok@ximian.com>
2662
2663         [ fix bug #79778 ]
2664         
2665         * CurrencyManager.cs: if the list is readonly, don't bother
2666         checking if IBindingList.AllowNew is true.
2667
2668         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
2669         for non-DataRowView datasources..  or rather, make it not crash.
2670         (DataGridPaintRelationRow): make sure we limit the row painting to
2671         the area not covered by the row header, and make our cell width at
2672         least large enough to cover the relation area.  This allows grids
2673         that have relations but no rows to render correctly.
2674         (DataGridPaintRowContents): same type of changes here.
2675         (SetDataSource): move back to always calling
2676         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
2677         navigating back through relations.
2678         (HitTest): handle the case where we have no cells but have
2679         relations.  Right now we generate a hit in cell 0 of whatever the
2680         row is, not sure if this is strictly correct, but it works for our
2681         purposes.
2682         
2683         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
2684         bother doing anything.
2685
2686 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
2687
2688         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
2689         early version of StatusStrip.  Not responsible for eaten
2690         application or firstborn children.
2691
2692 2006-11-06  Chris Toshok  <toshok@ximian.com>
2693
2694         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
2695         call GetTabRect with a -1 index.  Fixes #79847.
2696
2697 2006-11-06  Jackson Harper  <jackson@ximian.com>
2698
2699         * TreeNodeCollection.cs: Update scrollbars after clearing.
2700
2701 2006-11-06  Chris Toshok  <toshok@ximian.com>
2702
2703         * NumericUpDown.cs: fix the ToString method for some unit test
2704         love.
2705
2706 2006-11-06  Chris Toshok  <toshok@ximian.com>
2707
2708         * PropertyGrid.cs:
2709         - set the initial SelectedGridItem if we can.
2710
2711         - Exclude non-mergable properties only if we're merging > 1
2712         object.  Merging 1 object isn't really merging, obviously.
2713
2714         - Handle PropertySort.NoSort just like Alphabetical, which is
2715         wrong of course, but at least gets things on the screen.
2716         
2717         * PropertyGridView.cs:
2718         - Add method "FindFirstItem" which finds the first property grid
2719         item, so we can select it by default.
2720
2721         - make use of GridEntry.CanResetValue.
2722
2723         - Don't call RedrawBelowItemOnExpansion here anymore, the
2724         individual GridEntry's will do that.
2725
2726         - Remove the ITypeDescriptorContextImpl internal class.
2727         
2728         * GridEntry.cs:
2729         - this class needs to implement ITypeDescriptorContext, as it's
2730         what MS's PropertyDescriptorGridEntry does, which means we can
2731         remove the ITypeDescriptorContextImpl internal class from
2732         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
2733
2734         - keep a reference to our PropertyGridView, and move the call to
2735         RedrawBelowItemOnExpansion here from PGV.  This means
2736         programmaticly setting Expanded actually does something visible.
2737
2738         - add a CanResetValue() function which takes into account our
2739         possibly multiple "selected_objects" in the merged case.  Shifting
2740         PropertyGridView to use this method fixes another unreported
2741         crasher found running the test for #79829.
2742
2743         - when Top or Bounds is updated, make sure the PropertyGridTextBox
2744         is updated to reflect this.
2745
2746         * CategoryGridEntry.cs: the ctor takes the PGV now.
2747         
2748 2006-11-06  Jackson Harper  <jackson@ximian.com>
2749
2750         * TextControl.cs: These are 1 based.
2751         * TextBoxBase.cs: When setting the selected text, don't change the
2752         selected text tags, this is done by ReplaceText, just position the
2753         cursor at the end of the new text.
2754
2755 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2756
2757         * ListView.cs: Allow label edit only when, when LabelEdit is
2758           set to true.
2759
2760 2006-11-06  Jackson Harper  <jackson@ximian.com>
2761
2762         * TextControl.cs: If a suitable wrapping position isn't found,
2763         just wrap right in the middle of a word.
2764
2765 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2766
2767         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
2768           bug #79820.
2769
2770 2006-11-06  Jackson Harper  <jackson@ximian.com>
2771
2772         * TreeView.cs: Can't use the VisibleCount property when setting
2773         scrollbar heights, because this doesn't take into account whether
2774         or not the horz scrollbar just came visible.
2775
2776 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
2777
2778         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
2779         activated.  Fixes #79369, #79832.
2780
2781 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
2782
2783         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
2784           had to remove support for links that point to a directory. FileInfo
2785           returns no usefull information (means, the directory they point to)
2786           for such links. Replaced some empty string ("") with String.Empty.
2787
2788 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2789
2790         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
2791         NullReferenceException when attempting to remove node that is not in
2792         collection. Throw NullReferenceException when null is passed to 
2793         Remove. Allow first element of the collection to be removed. Fixes
2794         bug #79831.  In GetEnumerator ().Current return null if positioned 
2795         before the first element of the collection. In GetEnumerator ().Reset,
2796         position before first element of the collection.
2797
2798 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2799
2800         * PropertyGrid.cs: To match MS, remove default title and description
2801         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
2802         buttons.
2803
2804 2006-11-04  Chris Toshok  <toshok@ximian.com>
2805
2806         * Theme.cs: add a Clamp method, just for kicks.
2807
2808         * ThemeWin32Classic.cs: clamp all color components to [0..255].
2809
2810 2006-11-04  Chris Toshok  <toshok@ximian.com>
2811
2812         * Form.cs: if the form isn't visible, Close() does nothing.
2813
2814 2006-11-03  Chris Toshok  <toshok@ximian.com>
2815
2816         * Form.cs (Close): if the form is modal, don't Dispose of it, only
2817         Hide it.
2818         (WndProc): don't Dispose after handling the WM_CLOSE message.
2819
2820         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
2821         them as such, instead of using casts from Control to Form.  Also,
2822         don't Dispose of the modal dialog when we fall out of the loop -
2823         Close() it instead.
2824
2825         fixes bug #79813.
2826
2827 2006-11-03  Chris Toshok  <toshok@ximian.com>
2828
2829         * Control.cs (Dispose): only go through the dispose thing if we're
2830         @disposing, and we haven't already been disposed.  Fixes bug
2831         #79814.
2832
2833         * Form.cs: no reason to call "base.Dispose()" here instead of
2834         "Dispose()".
2835
2836 2006-11-03  Mike Kestner  <mkestner@novell.com>
2837
2838         * ComboBox.cs : use ToString instead of casts in AddItem for
2839         sorting functionality.  Fixes #79812.
2840
2841 2006-11-03  Chris Toshok  <toshok@ximian.com>
2842
2843         * Application.cs: pave the way for actually using the thread
2844         exception dialog.  it's ifdefed out at the moment.
2845
2846 2006-11-03  Chris Toshok  <toshok@ximian.com>
2847
2848         * ThreadExceptionDialog.cs: until we get a better layout, actually
2849         hide the details textbox and label when we shouldn't see them.
2850
2851 2006-11-03  Jackson Harper  <jackson@ximian.com>
2852
2853         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
2854         multiline textboxes anymore.  This method also determines the
2855         width/height of a textboxes canvas area.
2856         - Sorta a revert of the last patch.  For multiline just position
2857         the controls, then bail.  This way the scrollbar width won't be
2858         altered.
2859
2860 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
2861
2862         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
2863         it dont need.  Fixes #79537.
2864
2865 2006-11-02  Jackson Harper  <jackson@ximian.com>
2866
2867         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
2868         send the status after firing the DndOver event.
2869
2870 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2871
2872         * TrackBar.cs: Now orientation only switches height / width if
2873         the control's handle is created (Win32 does it like this). Also 
2874         fixed a typo in ToString() for a test to pass, changed the 
2875         exception thrown in set_LargeChange and set_SmallChange to 
2876         match Win32 behaviour, and added TrackBar tests to the unit 
2877         tests.
2878
2879 2006-11-02  Chris Toshok  <toshok@ximian.com>
2880
2881         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
2882         not _NET_WM_STATE_NO_TASKBAR.
2883
2884 2006-11-02  Jackson Harper  <jackson@ximian.com>
2885
2886         * TextControl.cs: Increment count by one, since in the update view
2887         count - 1 is used.
2888
2889 2006-11-02  Jackson Harper  <jackson@ximian.com>
2890
2891         * TextBoxBase.cs: Use client rectangle not bounds for checking if
2892         the mouse is in the client rectangle (duh).
2893
2894 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2895         
2896         * TrackBar.cs: Fixed trackbar jumping around when clicking
2897         on it - the trackbar was not detecting correctly at which
2898         side of the thumb the click was done. (fixes #79718)
2899
2900 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2901
2902         * ListBox.cs: scroll visible area when change SelectedIndex to
2903         a non visible area.  Fixes #79481.
2904
2905 2006-11-01  Jackson Harper  <jackson@ximian.com>
2906
2907         * TextControl.cs: When replacing the selection move the selection
2908         start/end/anchor to the end of the new text.
2909
2910 2006-11-01  Jackson Harper  <jackson@ximian.com>
2911
2912         * XplatUIWin32.cs: When setting the parent change the controls
2913         visibility to it's visibility flag, not to it's old parents
2914         visibility (.Visible walks the parent chain).
2915
2916 2006-11-01  Chris Toshok  <toshok@ximian.com>
2917
2918         * XplatUIX11.cs: revert the #79790 fix, as the simple.
2919         XSetTransientForHint fix breaks paint .net's tool windows.  more
2920         work needed for that one.
2921
2922 2006-11-01  Chris Toshok  <toshok@ximian.com>
2923
2924         * ScrollBar.cs: throw ArgumentException instead of Exception in
2925         LargeChange/SmallChange setters.  fixes unit tests.
2926
2927 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2928
2929         * ContainerControl.cs: reverted rev.67183 (which was itself
2930         a reversion of rev.66853... eh).
2931         
2932         * Control.cs: Fixes Reflector hang by changing Focus() call
2933         to what it was before rev.66643 (calling Select() here sets 
2934         ActiveControl, which in some situations calls back Focus and 
2935         eventually does a stack overflow). Temp fix.    
2936         Changes to GetNextControl() to not look for children to select when
2937         parent cannot be selectable (so it looks for siblings instead)  
2938         
2939 2006-10-31  Mike Kestner  <mkestner@novell.com>
2940
2941         * CheckedListBox.cs : off by one error in returned index from
2942         ObjectCollection.Add.  Fixes #79758.
2943
2944 2006-10-31  Chris Toshok  <toshok@ximian.com>
2945
2946         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
2947         calls for the textbox/spinner, to keep from recursing to the point
2948         where we crash.  Fixes #79760.
2949
2950 2006-10-31  Chris Toshok  <toshok@ximian.com>
2951
2952         * ListControl.cs (set_SelectedValue): don't throw exceptions on
2953         null/"" value, just return.  matches ms's behavior and fixes some
2954         failing tests.
2955
2956 2006-10-31  Chris Toshok  <toshok@ximian.com>
2957
2958         * Control.cs (set_Capture): make a logic a little easier to
2959         follow.
2960
2961         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
2962         if it's being destroyed.  A necessary fix surely, but a bandaid
2963         also, to fix the stuck capture problem in bug #78413.
2964
2965 2006-10-31  Chris Toshok  <toshok@ximian.com>
2966
2967         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
2968         convention of clearing hwnd.ClientRect when we set the
2969         width/height (so it'll be recalculated by Hwnd).
2970
2971 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2972
2973         * ContainerControl.cs: reversed Contains check from
2974         ActiveControl due to hanging problems. This fix
2975         partly regresses #79667 (button does not have
2976         initial focus), so this might be a symptom for 
2977         a larger parenting problem (set_ActiveControl
2978         is being called but the child control does
2979         not have the parent set yet?)   
2980         
2981 2006-10-31  Mike Kestner  <mkestner@novell.com>
2982
2983         * MenuAPI.cs : fix keynav when menu is click activated.
2984
2985 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
2986
2987         * ToolStrip*: Version 0.2.
2988
2989         * MenuStrip.cs: Version 0.1.
2990
2991         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
2992
2993 2006-10-30  Chris Toshok  <toshok@ximian.com>
2994
2995         [ fixes the oversized notify icon issue in bug #79745 ]
2996         
2997         * NotifyIcon.cs: scale the icon down to the size we're given by
2998         the XplatUI layer (this would be faster if we did it once instead
2999         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
3000         since it's never invoked.
3001
3002         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
3003         pixels high by default, so let's hardcode our systray icon to that
3004         size.  The SYSTEM_TRAY protocol should really have a way for
3005         client apps to query for the correct icon size.. but oh well.  A
3006         couple of patches to deal with the screwy client_window ==
3007         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
3008         instance, and also make sure we don't XSelectInput twice).
3009
3010 2006-10-30  Chris Toshok  <toshok@ximian.com>
3011
3012         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
3013         recreating forms.  Control recreation is the bane of my existence.
3014         Fix it in a way that keeps everyone happy.
3015
3016 2006-10-30  Chris Toshok  <toshok@ximian.com>
3017
3018         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
3019         just non-CHILD ones.  otherwise sometimes scrollbars end up with
3020         client_windows not being resized to the proper size (ReportBuilder
3021         shows this extremely well).
3022
3023 2006-10-30  Chris Toshok  <toshok@ximian.com>
3024
3025         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
3026         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
3027         showing up in the gnome taskbar.  Fixes bug #79790.
3028
3029 2006-10-30  Chris Toshok  <toshok@ximian.com>
3030
3031         * ApplicationContext.cs: guard against a NRE.
3032
3033         * Application.cs: null out the old MainForm for the context, so we
3034         don't try to use it again once it's disposed.  Fixes bug #79783.
3035
3036 2006-10-30  Chris Toshok  <toshok@ximian.com>
3037
3038         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
3039         BindingContext, set the data source directly, otherwise do the
3040         lazy approach - the actual ListManager will be created when we get
3041         a BindingContext. Fixes bug #79700.
3042
3043 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3044
3045         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
3046           XplatUIX11.cs: Remove old 2 parameter SetVisible.
3047
3048         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
3049
3050 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3051
3052         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
3053         of SetVisible that allows a window to be shown, but not activated.
3054         This is needed on Windows for MenuStrip, and can probably be used
3055         with MainMenu and ComboBox to fix the focus stealing issues on
3056         Windows.
3057
3058         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
3059
3060 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
3061
3062         * PictureBox.cs: Fix the output of the ToString method.
3063
3064 2006-10-29  Chris Toshok  <toshok@ximian.com>
3065
3066         * Control.cs (get_TopLevelControl): fix bug #79781.
3067
3068 2006-10-29  Chris Toshok  <toshok@ximian.com>
3069
3070         * ListControl.cs (set_DataSource): throw Exception here, not
3071         ArgumentException, to match MS behavior.
3072
3073 2006-10-29  Chris Toshok  <toshok@ximian.com>
3074
3075         * Form.cs: remove the try-catch's around calls to GetWindowState.
3076         We can just check the return value.
3077
3078         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
3079         Instead return -1.
3080
3081         * XplatUI.cs: Add note about additional return value for
3082         GetWindowState.
3083
3084 2006-10-29  Chris Toshok  <toshok@ximian.com>
3085
3086         * Control.cs (CreateHandle): when we create our handle, we also
3087         create the handles of our child controls.  Fixes one of the
3088         Control unit tests (CH11).
3089
3090 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3091
3092         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
3093
3094 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3095
3096         * ThemeClearlooks.cs: A little speedup.
3097
3098 2006-10-27  Chris Toshok  <toshok@ximian.com>
3099
3100         * Control.cs: implement Control.FromChildHandle in a way that
3101         matches the docs (and fixes the failed test.)
3102
3103 2006-10-27  Chris Toshok  <toshok@ximian.com>
3104
3105         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
3106         comments).
3107
3108         * DataGrid.cs: implement ResetForeColor such that the tests
3109         succeed.
3110         
3111 2006-10-27  Chris Toshok  <toshok@ximian.com>
3112
3113         * ToolBarButton.cs: setting text/tooltiptext to null results in it
3114         being set to "".  Fixes bug #79759.
3115
3116 2006-10-27  Jackson Harper  <jackson@ximian.com>
3117
3118         * TextControl.cs: We need to clear the entire selection area when
3119         setting the start, otherwise multiline selections are still
3120         visible.
3121
3122 2006-10-26  Chris Toshok  <toshok@ximian.com>
3123
3124         * PropertyGridView.cs: 
3125
3126         - ifdef all the code specific to the double
3127         buffer case, and provide some alternatives in the non-doublebuffer
3128         code, which makes heavy use of XplatUI.ScrollWindow to move things
3129         around without having to invalidate (and cause flicker).  There
3130         are still some drawing problems in the non-doublebuffered case, so
3131         DOUBLEBUFFER is defined by default.
3132
3133         - Fix the way dropdowns are handled.  now we explicitly watch for
3134         the events which might cause the dropdown to close, and break out
3135         of the nested event loop there.  This gets rid of all Capture
3136         code, at the expense of the Msg special casing.  Seems to work,
3137         though, and fixes bug #79743.
3138
3139 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
3140         * Control.cs: SetIsRecreating now recreates implicitly added
3141         child controls as well. Finally fixes #79629. The flag passed to 
3142         SetIsRecreating has also been removed since it wasn't used.
3143         
3144 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3145
3146         * PageSetupDialog.cs: Clean some code, fix some bits, 
3147         add some checks, and add a printer sub-dialog.
3148
3149 2006-10-26  Chris Toshok  <toshok@ximian.com>
3150
3151         * PropertyGrid.cs: make set_SelectedObject call
3152         set_SelectedObjects, and move the duplicate logic to the
3153         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
3154
3155         * PropertyGridView.cs: hide the textbox when we get a
3156         SelectedObjectsChanged event.
3157
3158         Fixes bug #79748.
3159
3160 2006-10-26  Chris Toshok  <toshok@ximian.com>
3161
3162         * PropertyGridView.cs: deal with the type converter not supporting
3163         GetStandardValues() or GetStandardValues() returning null, which
3164         is does in the default case.  Fixes #79742.
3165
3166 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3167
3168         * CheckedListBox.cs: nunit no longer crashes when selecting 
3169         Project/Edit menu option
3170         
3171 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3172
3173         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
3174         is no menu selected. fixes #79739
3175
3176 2006-10-25  Chris Toshok  <toshok@ximian.com>
3177
3178         * PropertyGridView.cs: factor out the splitter invalidation code
3179         into the SplitterPercent setter, and for kicks implement the
3180         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
3181         amount in either direction.
3182
3183 2006-10-25  Chris Toshok  <toshok@ximian.com>
3184
3185         * PropertyGridView.cs: do some cleanup of the brush used to draw
3186         text - read only fields should be grayed out.  not sure how to do
3187         this with the textbox, though.  but the textbox's should also be
3188         readonly now at least.  Also, hide/show the textbox when resizing
3189         the control.
3190         
3191         * CursorConverter.cs: use System.Reflection when getting the
3192         properties of Cursors, as TypeDescriptor.GetProperties isn't
3193         returning static properties.
3194
3195 2006-10-25  Chris Toshok  <toshok@ximian.com>
3196
3197         * PropertyGridView.cs: factor out the up/down handling, and reuse
3198         it for page up/down.  also add End/Home support.
3199
3200 2006-10-25  Chris Toshok  <toshok@ximian.com>
3201
3202         * PropertyGridView.cs:
3203
3204         - ensure the selected grid item is visible in the scrolled area,
3205         fixes bug #79572.
3206
3207         - fix Keys.Down handling when you're on the last item in the
3208         propertygrid.
3209
3210 2006-10-25  Mike Kestner  <mkestner@novell.com>
3211
3212         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
3213         clicks too.  Fixes #79725.
3214
3215 2006-10-24  Chris Toshok  <toshok@ximian.com>
3216
3217         * PropertyGrid.cs: use property.Converter instead of
3218         TypeDescriptor.GetConverter(property.PropertyType), so we catch
3219         TypeConverters declared on the property as well as on the
3220         PropertyType.  Fixes bug #79678.
3221
3222 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
3223
3224         * MimeIcon.cs, Mime.cs:
3225           Fallback to the default platform handler if no shared mime info
3226           stuff exists (fixes #79693).
3227
3228 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3229         * ContainerControl.cs: Incorrect contains check in ActiveControl 
3230         from previous fix (duh).
3231
3232 2006-10-20  Chris Toshok  <toshok@ximian.com>
3233
3234         * PropertyGridView.cs: the dropdown should be MIN(number of items
3235         in list, 15).  Fixes #79551.
3236
3237 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3238         Fixes #79384, #79394, #79652, #79667
3239         * Application.cs: 
3240         
3241         - Modal windows are now destroyed in the proper order for windows
3242         
3243         * ContainerControl.cs:
3244         
3245         - ActiveControl setter has more conditions on when to return:
3246                 - if we're reselecting the active control, but it actually
3247                 didn't have focus (window hidden or some such), it runs
3248                 - if the active control being selected doesn't actually 
3249                 exist in the container, it returns
3250         
3251         * Form.cs
3252         
3253         - The ShowDialog now gets the current form as the owner when
3254         invoking without parameters, and correctly activates the owner 
3255         when returning
3256         
3257         * MessageBox.cs
3258         
3259         - MessageBox now catches the Escape key to exit
3260
3261 2006-10-20  Chris Toshok  <toshok@ximian.com>
3262
3263         * PropertyGridView.cs: fix a number of issues (bug #78565, and
3264         most of bug #79676):
3265
3266         - you can navigate around the property grid with the arrow keys.
3267
3268         - the dropdown is sized properly when the pg has a vertical
3269         scrollbar.
3270
3271         - fix the indentation for subentries, and properly select the
3272         entire label rect.
3273
3274         - fix the gray bar's drawing (only draw it to the last element,
3275         not for the height of the control.  Also make sure we draw that
3276         last horizontal grid line.
3277
3278         - use the same mechanism the datagrid uses wrt the editing textbox
3279         when scrolling/resizing/etc.  Namely, we hide it first, do the
3280         operation, then show it again (if it's still visible).
3281         
3282         - aggressively remove a lot of unnecessary refreshes (and also
3283         calls to Invalidate(). call more limited variants, and only redraw
3284         what we need.)
3285         
3286         * PropertyGrid.cs:
3287
3288         - when we're populating the merged collection, fill in the UI
3289         parent with either the passed in item, or the category item we
3290         create.
3291
3292         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
3293
3294         * GridItem.cs: drop some fully qualified names.
3295         
3296         * GridEntry.cs: add a "UIParent", which is basically the parent
3297         treenode.
3298
3299         * GridItemCollection.cs: add an IndexOf method.
3300
3301 2006-10-20  Mike Kestner  <mkestner@novell.com>
3302
3303         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
3304         a working win32 NC invalidation mechanism, we can't invalidate
3305         menus.  [Fixes #79705]
3306
3307 2006-10-20  Mike Kestner  <mkestner@novell.com>
3308
3309         * ListBox.cs : don't update the VScrollbar if the list is empty,
3310         just hide it.  [Fixes #79692]
3311
3312 2006-10-20  Jackson Harper  <jackson@ximian.com>
3313
3314         * RichTextBox.cs: Handle some special chars better, and don't skip
3315         the entire group when we encounter a special char that we don't
3316         handle correctly.
3317
3318 2006-10-18  Chris Toshok  <toshok@ximian.com>
3319
3320         * PropertyGridView.cs: address a number of issues from bug #79676,
3321         mostly of the cosmetic variety.
3322
3323         - The highlight rectangle for indented items not extends all the
3324         way to the left.
3325
3326         - Indented items aren't indented so much.
3327
3328         - the dropdown is properly sized width-wise if the pg has a
3329         vertical scrollbar.
3330
3331 2006-10-18  Chris Toshok  <toshok@ximian.com>
3332
3333         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
3334         systray stuff is rather convoluted to begin with.
3335
3336         systray icons are a single window for some reason (that I haven't
3337         figured out yet), and for them, client_window == whole_window.
3338         Given the way the tests are structured elsewhere to determine
3339         which paints are pending (client vs. nc), that situation will
3340         always yield PAINT, not NCPAINT.  So, if we have a pending
3341         nc_expose and no pending expose, remove the hwnd from the paint
3342         queue, and also set nc_expose_pending to false, to keep us from
3343         blocking further expose's adding the hwnd to the paint queue.
3344
3345         phew.  like i said, a rather convoluted change.  Fixes the
3346         notifyicon repaint issues in bug #79645.
3347
3348 2006-10-18  Chris Toshok  <toshok@ximian.com>
3349
3350         * Form.cs: when getting the backcolor of the form, don't get
3351         base.BackColor, as this allows parents to influence the background
3352         color.  This breaks mdi forms.  Instead, if the background_color
3353         is empty, return the default.
3354
3355 2006-10-18  Chris Toshok  <toshok@ximian.com>
3356
3357         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
3358         to being private instead of internal static.
3359
3360         * Control.cs: remove all the stupid ParentWaitingOnRecreation
3361         crap, it wasn't working for more deeply nested controls anyway,
3362         and we already have the is_recreating flag - use that instead.
3363         Before calling DestroyHandle in RecreateHandle, recurse through
3364         the control tree setting it to true.  this returns the recreate
3365         code to much of its original simplicity, while now guaranteeing we
3366         actually recreate everything we're supposed to.  This change gets
3367         fyireporting actually showing mdi children.
3368
3369 2006-10-17  Chris Toshok  <toshok@ximian.com>
3370
3371         * Form.cs: remove some debug spew, and collapse some duplicate
3372         code at the end of SetClientSizeCore.
3373
3374         * XplatUIX11.cs: 
3375         - add some more debug spew here too wrt Destroy handling.
3376         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
3377         in Control's handling of WM_DESTROY.
3378         - Remove the handling of zombie window DestroyNotifies from the
3379         event loop - we don't need it.  Now the only DestroyNotifies we
3380         actually handle are ones generated by X.
3381         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
3382         match gtk's (functioning) handling of this. This keep metacity
3383         from leaving droppings in the form of wm borders with no window
3384         contents all over the place.
3385
3386         * Control.cs:
3387         - add a bunch of debug spew wrt control recreation.
3388         - fix a bug where we weren't tracking Visible properly on
3389         recreated hwnds.
3390         - fixed the WM_PAINT double buffer handling to support re-entrant
3391         calls (yes, i know it's gross, but it's happening to us).
3392
3393 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3394         * ThemeWin32Classic.cs: changed drawing of selected days
3395         to make them look better.
3396
3397 2006-10-16  Chris Toshok  <toshok@ximian.com>
3398
3399         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
3400         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
3401
3402         * XplatUIX11.cs: move away from using hwnd.client_dc and
3403         hwnd.non_client_dc and on to a stack of dc's (and in window's
3404         case, PAINTSTRUCT's), so we can deal with nested Paint calls
3405         without puking or not disposing of Graphics objects.
3406
3407         * XplatUIOSX.cs: same.
3408
3409         * XplatUIWin32.cs: same.
3410
3411 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3412
3413         * FileDialog.cs: Don't call on_directory_changed inside
3414           OnSelectedIndexChanged (it changes the SelectedIndex too).
3415           Instead move it to OnSelectionChangeCommitted.
3416
3417 2006-10-13  Chris Toshok  <toshok@ximian.com>
3418
3419         * XplatUIX11.cs: more Destroy work.  the current code does the
3420         following things, in order:
3421
3422         1. Enumerates all handles of all controls at or below the one
3423         being destroyed, in pre-order.  As it is doing this, it marks the
3424         handles as zombie and clears all references to them.
3425         
3426         2. calls XDestroyWindow on the window passed in.
3427
3428         3. SendMessage's WM_DESTROY to all he handles in the accumulated
3429         list.
3430
3431 2006-10-13  Chris Toshok  <toshok@ximian.com>
3432
3433         * XplatUIX11.cs: set hwnd.zombie to true before calling
3434         SendMessage (WM_DESTROY).  this keeps us from marking the new
3435         window a zombie, and also keeps us from calling sendmessage at
3436         all.
3437
3438 2006-10-13  Jackson Harper  <jackson@ximian.com>
3439
3440         * TextControl.cs: Do not show the caret and selection at the same
3441         time.  Reduces ugliness by 35%.
3442
3443 2006-10-13  Chris Toshok  <toshok@ximian.com>
3444
3445         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
3446         zombie after we do the recursive call, so we actually do call
3447         SendMessage on the children controls.
3448         (GetMessage): if we find a pending paint event for a zombie hwnd,
3449         remove the hwnd from the paint queue, or else it will always be
3450         there (and we'll effectively loop infinitely)
3451
3452 2006-10-13  Mike Kestner  <mkestner@novell.com>
3453
3454         * MenuItem.cs : add Selected format under keynav too.
3455         Fixes #79528.
3456
3457 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
3458
3459         * PropertyGrid.cs: Fixed some NRE's and small difference between our
3460         implementation and that of MS.
3461
3462 2006-10-13  Chris Toshok  <toshok@ximian.com>
3463
3464         * Control.cs (OnInvalidated) only futz with the invalid_region if
3465         the control is double buffered.  this fixes the apparent hang in
3466         the ListView unit tests.  Someone needs to make the
3467         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
3468
3469 2006-10-13  Chris Toshok  <toshok@ximian.com>
3470
3471         * PropertyGridView.cs:
3472
3473         - do a little refactoring so that only one place calls
3474         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
3475         else call that.  Also make it Refresh, since there are redraw bugs
3476         otherwise (we should take a look at that...)
3477
3478         - do a little more refactoring work to share the body of code
3479         involved with the drop down.  it was duplicated in the code
3480         dealing with the listbox handling and in the code dealing with the
3481         UITypeEditors.
3482
3483         - add a Capture to the dropdown form's control once it's
3484         displayed, and add a MouseDown handler that checks to make sure
3485         the position is inside the control.  If it's not, close the
3486         dropdown.  This fixes #78190.
3487
3488         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
3489         if the value is different than the initial value.
3490         
3491 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
3492
3493         * Control.cs: see #78650
3494         - Fixed GetNextControl for several cases:
3495                 - Changed FindFlatForward to return 
3496                 correct sibling control when more than one
3497                 control has same TabIndex as the currently 
3498                 focused one.
3499                 - Changed FindFlatBackward to loop children
3500                 from last to first and apply same logic as in
3501                 FindFlatForward
3502                 - Changed FindControlForward to search for
3503                 children when control is not a container
3504                 but has children, or search for siblings if
3505                 control is a container...
3506                 - Changed FindControlBackward   to continue
3507                 searching for child controls when hitting 
3508                 Panel-like parents
3509                 
3510         - Fixed Focus method to update ActiveControl
3511         (FocusTest.FocusSetsActive failure)
3512         
3513         * TabControl.cs:
3514         - Focus rectangle now refreshes when gaining
3515         or losing focus
3516         - Removed grab for Tab key on IsInputKey that 
3517         was keeping tab navigation from working (#78650)
3518
3519 2006-10-13  Chris Toshok  <toshok@ximian.com>
3520
3521         * PropertyGridView.cs:
3522         - Rewrite SetPropertyValue to loop over SelectedGridItem's
3523         SelectedObjects.
3524
3525         - Deal with GridItem.Value == null a few places.
3526
3527         * PropertyGrid.cs: 
3528         - replace the PopulateGridItemCollection with a pair of methods
3529         which compute the intersection of all the properties in the
3530         SelectedObjects array.  Fixes #79615.
3531
3532         - Throw ArgumentException from set_SelectedObjects if there's a
3533         null in the array.
3534
3535         - Add GetTarget method which can be used to traverse up the
3536         GridItem.Parent chain.  It depends on the assumption that
3537         selected_objects for different GridEntries are always in the same
3538         order (a safe assumption).  Use this method and loop over all the
3539         selected objects in the entry when calling RemoveValueChanged and
3540         AddValueChanged.
3541         
3542         * GridEntry.cs: Make this handle multiple selected objects.
3543         .Value returns null if not all the selected objects share the same
3544         value.
3545
3546 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
3547         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
3548           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
3549           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
3550           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
3551           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
3552         add additional functionality.
3553
3554 2006-10-12  Mike Kestner  <mkestner@novell.com>
3555
3556         * ErrorProvider.cs : new ToolTipWindow ctor sig.
3557         * HelpProvider.cs : new ToolTipWindow ctor sig.
3558         * ToolTip.cs : remove ToolTip param from Window sig since it is
3559         not used.
3560         * ToolBar.cs : add tooltip support.  Fixes #79565.
3561
3562 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3563
3564         * ComboBox.cs: move the events in set_SelectedIndex to 
3565         after the call to HighlightIndex in order to avoid 
3566         possible recursion and subsequent problems with the call
3567         to HighlightIndex and include a range check in 
3568         set_HighlightIndex. Fixes #79588
3569         
3570 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3571
3572         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
3573         to ui thread's settings instead of sunday. 
3574         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
3575
3576 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3577
3578         * DateTimePicker.cs
3579         * MonthCalendar.cs
3580         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
3581         and implement missing functionality (selecting different parts 
3582         of the date and edit them individually with the keyboard).
3583         
3584 2006-10-11  Chris Toshok  <toshok@ximian.com>
3585
3586         * Control.cs (OnInvalidated): fix NRE relating to last change.
3587
3588 2006-10-11  Chris Toshok  <toshok@ximian.com>
3589
3590         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
3591         atoms in _NET_WM_STATE here if the window is maximized.  We need
3592         to do this because we're *replacing* the existing _NET_WM_STATE
3593         property, so those atoms will be lost otherwise, and any further
3594         call to GetWindowState will return Normal for a window which is
3595         actually maximized.  Fixes #79338.
3596
3597 2006-10-11  Jackson Harper  <jackson@ximian.com>
3598
3599         * TextControl.cs: Special case for setting selection end to
3600         selection start, we basically kill the anchor.
3601         - some todo comments.
3602
3603 2006-10-11  Chris Toshok  <toshok@ximian.com>
3604
3605         * Control.cs: switch to using an "invalid_region" to track which
3606         parts of the image buffer need updating.  This is more code than
3607         the simple fix from r66532.  That version just attempted to always
3608         fill the entire buffer on redraw, which turns out to be
3609         inefficient when invalidating small rectangles.  This version
3610         simply adds the invalid rectangle to the invalid region.  When we
3611         get any WM_PAINT message we see if it can be filled using the
3612         image buffer, and if it can't (if the paint event's clip rectangle
3613         is visible in the invalid region) we first fill the image buffer.
3614         So, the image buffer is still a cache, we just fill it lazily.
3615
3616         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
3617         need it any longer.
3618
3619 2006-10-11  Chris Toshok  <toshok@ximian.com>
3620
3621         * XplatUIX11.cs (SetWindowPos): we need to update both position as
3622         well as size after calling XMoveResizeWindow.  This keeps us from
3623         ignoring future SetWindowPos calls.  Fixes the disappearing
3624         DateTimePicker in the ToolBarDockExample from bug #72499.
3625
3626 2006-10-11  Chris Toshok  <toshok@ximian.com>
3627
3628         * TextBoxBase.cs: reorder things a bit when it comes to
3629         resizing-causing-recalculation.  we were recalculating the
3630         document when our position was changed, which shouldn't happen.
3631         We only care about size changes.  Clear up some more redundant
3632         recalculation calls while I'm at it.  This makes the toolbar dock
3633         example snappy when you're just dragging toolbars around (since it
3634         causes a relayout whenever you move one.)
3635
3636 2006-10-11  Chris Toshok  <toshok@ximian.com>
3637
3638         * ToolBarButton.cs (get_Rectangle): this only returns
3639         Rectangle.Empty if Visible == false, or Parent == null.
3640         Parent.Visible doesn't matter.
3641
3642 2006-10-10  Chris Toshok  <toshok@ximian.com>
3643
3644         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
3645         by .net 1.1, so switch to an internal method instead.
3646
3647 2006-10-10  Chris Toshok  <toshok@ximian.com>
3648
3649         * Control.cs (WM_PAINT): when a control is double buffered we draw
3650         initially to the ImageBuffer and then copy from there.  But when a
3651         parent control which has child controls is double buffered, the
3652         initial drawing doesn't encompass the entire ClientRectangle of
3653         the parent control, so we end up with uninitialized bits (this is
3654         easily seen by dragging the top toolbar in
3655         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
3656         manually set the ClipRectangle of the paint_event (only the one we
3657         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
3658         of the nastiness in bug #72499.
3659
3660         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
3661         which we use in Control.cs's WM_PAINT handling.
3662
3663 2006-10-10  Jackson Harper  <jackson@ximian.com>
3664
3665         * TextBoxBase.cs: Finish off the autoscrolling stuff.
3666
3667 2006-10-10  Chris Toshok  <toshok@ximian.com>
3668
3669         * Cursor.cs: Apply a slightly different patch to the one suggested
3670         in #79609.
3671
3672 2006-10-10  Jackson Harper  <jackson@ximian.com>
3673
3674         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
3675         not the parent form.
3676         * TextControl.cs: use difference in old line count vs new count to
3677         calculate how many lines were added, this takes into account soft
3678         line breaks properly.
3679
3680 2006-10-10  Chris Toshok  <toshok@ximian.com>
3681
3682         * LinkLabel.cs: don't call MeasureCharacterRanges against a
3683         rectangle located at 0,0 and the size of the text.  Use
3684         ClientRectangle instead.  This fixes rendering of non-left aligned
3685         link labels.
3686
3687 2006-10-10  Jackson Harper  <jackson@ximian.com>
3688
3689         * TextBoxBase.cs: When we set the selection start position the
3690         caret.
3691         * TextControl.cs: Need to update the caret when we decrement it to
3692         zero.
3693         - Make sure that the selection_visible flag gets reset to false if
3694         the selection isn't visible.  Before this you could get it set to
3695         visible by changing the selection start, then changing the end to
3696         equal the start.
3697
3698 2006-10-09  Jackson Harper  <jackson@ximian.com>
3699
3700         * TreeView.cs: Don't update scrollbars when we aren't visible.
3701         * TreeNodeCollection.cs: Only need to update scrollbars if being
3702         added to an expanded visible node or the root node.
3703
3704 2006-10-09  Chris Toshok  <toshok@ximian.com>
3705
3706         * XplatUIX11.cs (SendMessage): fix NRE.
3707
3708 2006-10-09  Jackson Harper  <jackson@ximian.com>
3709
3710         * TextBoxBase.cs: Implement horizontal autoscrolling.
3711         * TextControl.cs: Add a movement types that allows moving forward
3712         and backwards without wrapping.
3713
3714 2006-10-09  Mike Kestner  <mkestner@novell.com>
3715
3716         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
3717         with focus "expansion" of labels.  Fixes #79532 and then some.
3718         * ThemeWin32Classic.cs : add LineLimit to ListView label format
3719         when wrapping.
3720
3721 2006-10-09  Jackson Harper  <jackson@ximian.com>
3722
3723         * TextBoxBase.cs: Set the default max values to MaxValue since
3724         we use the scrollbar for autoscrolling and the default value is
3725         100.  If we don't do this the caret won't keep up with typing
3726         after about 18 characters.
3727         * TextControl.cs: Make sure the selection is offset by the
3728         viewport x.  This fixes selection when using auto scrolling.
3729
3730 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
3731         
3732         * Form.cs: The active control should be selected after the 
3733         OnLoad so that any child control initialization that affects
3734         the selection is done. Fixes #79406
3735
3736 2006-10-06  Chris Toshok  <toshok@ximian.com>
3737
3738         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
3739         to have no evil effects.
3740
3741         - Stop selecting StructureNotifyMask on non-toplevel windows.
3742
3743           The only way children should be resized is by using the SWF api,
3744           and we already send WM_WINDOWPOSCHANGED messages in those cases.
3745           Toplevel windows can be interacted with via the window manager,
3746           and so we keep the input mask there.
3747
3748           The other event StructureNotifyMask gives us (that we care
3749           about) is DestroyNotify.  The code is already structured such
3750           that it assumes we won't be getting a DestroyNotify event for
3751           the window we pass to XDestroyWindow (which is what
3752           StructureNotifyMask is supposed to guarantee.)  So, that code
3753           shouldn't be affected by this either.
3754
3755         - Stop selecting VisibilityChangeMask altogether.
3756
3757           We weren't doing anything with the resulting events anyway.
3758         
3759         This vastly reduces the number of X requests and events we see
3760         when resizing/laying out a large ui.
3761
3762 2006-10-06  Chris Toshok  <toshok@ximian.com>
3763
3764         * ScrollableControl.cs (DisplayRectangle): we need to take into
3765         account the DockPadding regardless of whether or not auto_scroll
3766         == true.  rework this slightly to this effect, and fix bug #79606,
3767         and part of #72499 (you can now see the drag handles and drag
3768         toolbars around).
3769
3770 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
3771
3772         * ListViewItem.cs: Collections of selected and checked items are now
3773         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
3774         we mark the collection "dirty".
3775         * ListView.cs: Marked collections readonly. Modified UpdateSelection
3776         to only clear SelectedItems when a new item is selected and MultiSelect
3777         is enabled. CheckedItems and SelectedItems now subscribe to Changed
3778         event of ListViewItemCollection, and mark its list dirty whenever
3779         that event is fire. This allows us to return selected/checked items 
3780         in the same order as they are in the Items collection. This matches
3781         the MS behavior.
3782
3783 2006-10-06  Chris Toshok  <toshok@ximian.com>
3784
3785         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
3786         right mouse clicks.  Fixes bug #79593.
3787
3788 2006-10-06  Chris Toshok  <toshok@ximian.com>
3789
3790         * Splitter.cs: doh, fix splitters that don't want to cancel the
3791         movement when you drag them.  Also, impose the limits on the
3792         values we send to the SplitterMovingEvent.  Fixes #79598.
3793
3794 2006-10-06  Jackson Harper  <jackson@ximian.com>
3795
3796         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
3797         since we use this for auto scrolling also.
3798
3799 2006-10-05  Chris Toshok  <toshok@ximian.com>
3800
3801         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
3802         beginning to think that most datagrid column types don't need this
3803         method.  Fixes bug #79392.
3804
3805 2006-10-05  Chris Toshok  <toshok@ximian.com>
3806
3807         * DataGrid.cs: move back to a more lazy scheme for creating the
3808         CurrencyManager, so we aren't updating it every time you set
3809         either DataSource or DataMember.  Also, don't call
3810         RecreateDataGridRows if the currency manager hasn't changed.
3811
3812 2006-10-05  Chris Toshok  <toshok@ximian.com>
3813
3814         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
3815         emitted, SelectedIndex should already be updated.  Fixes bug
3816         #78929.
3817
3818 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
3819
3820         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
3821           ToolStripTextBox.cs: Initial commit.
3822         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
3823
3824 2006-10-05  Jackson Harper  <jackson@ximian.com>
3825
3826         * TabControl.cs: We need to invalidate the tab control area when
3827         new ones are added (duh).
3828
3829 2006-10-03  Chris Toshok  <toshok@ximian.com>
3830
3831         * Form.cs (ProcessDialogKey): if the focused control is in this
3832         form and is a button, call its PerformClick method here.  Fixes
3833         #79534.
3834
3835 2006-10-04  Jackson Harper  <jackson@ximian.com>
3836
3837         * TabPage.cs: Ignore setting of Visible, and add an internal
3838         method for setting the controls visibility.  TabPage's Visible
3839         property is a little strange on MS, this seems to make us
3840         compatible, and fixes cases where people set all the tab pages to
3841         visible.
3842         * TabControl.cs: Use the new internal setting on tab pages
3843         visibility.
3844
3845 2006-10-03  Mike Kestner  <mkestner@novell.com>
3846
3847         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
3848
3849 2006-10-03  Mike Kestner  <mkestner@novell.com>
3850
3851         * ListView.cs : use is_visible instead of Visible to check if 
3852         scrollbars should be placed/sized.  Also some max_wrap_width
3853         love for LargeIcon view.  [Fixes #79533]
3854
3855 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3856
3857         * TextControl.cs :
3858           Make set_TextAlign() do actually update the align. Fixed #78403.
3859
3860 2006-10-03  Chris Toshok  <toshok@ximian.com>
3861
3862         * DataGrid.cs: fix a crash when switching datasources if the
3863         vertical scrollbar is at someplace other than Value = 0.  Also,
3864         reduce the number of recalculation passes we do in SetDataSource
3865         from 2 to 1.
3866
3867 2006-10-03  Jackson Harper  <jackson@ximian.com>
3868
3869         * TextBoxBase.cs: Move the if value the same bail check up, we
3870         don't want to empty the document if it is already empty, this
3871         seems to severly mess up the caret.  TODO: I should probably fix
3872         the empty statement to update teh caret somehow.
3873
3874 2006-10-03  Chris Toshok  <toshok@ximian.com>
3875
3876         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
3877         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
3878         reflection, an internal row type, properties on said type, etc.)
3879         will work with our datagrid.  Fixes #79531.
3880
3881 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3882
3883         * FileDialog.cs: Don't crash if a path is not accessible
3884           (System.UnauthorizedAccessException). Fixes #79569.
3885         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
3886           a ':' too. Return unknown icon for those paths/files.
3887
3888 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
3889
3890         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
3891         GetContainerControl returns null.
3892
3893 2006-10-02  Chris Toshok  <toshok@ximian.com>
3894
3895         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
3896         call to XGetWindowAttributes instead of "handle".  fixes an X
3897         error using notifyicon after the NotifyIconWindow to Form base
3898         class switch.
3899
3900 2006-10-02  Chris Toshok  <toshok@ximian.com>
3901
3902         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
3903         server grab and looping we need to do to get down to the most
3904         deeply nested child window.
3905         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
3906         QueryPointer again after the WarpPointer so we can generate a
3907         proper (fake) MotionNotify event to be enqueued in the destination
3908         window's queue.
3909         (GetCursorPos): call QueryPointer.
3910
3911         Fixes #79556.
3912
3913 2006-10-02  Jackson Harper  <jackson@ximian.com>
3914
3915         * NotifyIcon.cs: Derive the notify icon from a form, so things
3916         like FindForm work on it.
3917         - Swallow the WM_CONTEXTMENU message, since that is generated on
3918         mouse down, and context menu is a mouse up kinda guy.  I believe
3919         the correct fix here is probably to make the notify icon entirely
3920         NC area, but this seems to work fine for anyone not manipulating
3921         WndProc.
3922
3923 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
3924
3925         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
3926           ToolStripItemCollection.cs, ToolStripLabel.cs,
3927           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
3928           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
3929           Initial implementation.
3930         * TextRenderer.cs: Provide padding to MeasureText.
3931
3932 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
3933
3934         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
3935         of ButtonBaseAccessibleObject. Fix bug #79552.
3936
3937 2006-10-02  Jackson Harper  <jackson@ximian.com>
3938
3939         * MdiWindowManager.cs: When maximizing use the containers client
3940         rect, not it's bounds, so nc area is accounted correctly.
3941         - Use the parent form's size for the menu position, since the
3942         client isn't always the full form size.
3943
3944 2006-10-01  Chris Toshok  <toshok@ximian.com>
3945
3946         * ScrollableControl.cs: make sure neither right_edge or
3947         bottom_edge are < 0, since they're used as LargeChange for the
3948         horiz/vert scrollbars respectively.  Fixes #79539.
3949
3950 2006-10-01  Chris Toshok  <toshok@ximian.com>
3951
3952         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
3953         the xplatuix11 code can cause us to destroy/recreate our handle.
3954
3955         * XplatUIX11.cs
3956         (SystrayAdd):
3957         - this code can be invoked many times for the same Hwnd.  Make
3958           sure we only destroy the client window once (the first time this
3959           method is called).  This fixes bug #79544.
3960         - Remove the call to the improperly bound XSync.  why we had two
3961           bindings to this, I will never know, but this call resulted in
3962           events being discarded from the queue(!).
3963         - correct a misunderstanding of _XEMBED_INFO - the second atom is
3964           not our current state but the state we wish to be in.  So, 0 if
3965           we don't want to be mapped.  Change it to 1.
3966         (SystrayRemove): The XEMBED spec makes mention of the fact that
3967         gtk doesn't support the reparent of client windows away from the
3968         embedder.  Looking at gtksocket-x11.c seems to agree with this.
3969         The only avenue we have for removing systray icons is to destroy
3970         them.  We don't want the handle to go away for good, though, so
3971         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
3972         #79545.
3973         
3974 2006-10-01  Chris Toshok  <toshok@ximian.com>
3975
3976         * Form.cs (WndProc): inline the native_enabled variable usage into
3977         the cases in which it's used.  Fixes #79536.
3978
3979 2006-09-29  Mike Kestner  <mkestner@novell.com>
3980
3981         * ListView.cs : toggle the selection state for ctrl clicks in 
3982         multiselect mode. [Fixes #79417]
3983
3984 2006-09-29  Mike Kestner  <mkestner@novell.com>
3985
3986         * ListView.cs : kill CanMultiSelect and refactor the selection
3987         code to support multiselection in the absence of mod keys. Steal
3988         arrow/home/end keys by overriding InternalPreProcessMessage to
3989         restore regressed keynav behavior.
3990         [Fixes #79416]
3991
3992 2006-09-29  Jackson Harper  <jackson@ximian.com>
3993
3994         * MdiClient.cs: Repaint the titlebars when the active window is
3995         changed.
3996
3997 2006-09-29  Chris Toshok  <toshok@ximian.com>
3998
3999         * Application.cs: when entering a runloop with a modal, make sure
4000         the hwnd is enabled.  Fixes #79480.
4001
4002 2006-09-29  Chris Toshok  <toshok@ximian.com>
4003
4004         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
4005         when ListManager.CanAddRows == false, bump us back one.
4006
4007         * DataGridColumnStyle.cs (ParentReadOnly): remove the
4008         listmanager.CanAddRows check.  This makes ArrayLists uneditable
4009         using a datagrid, which is not right.
4010         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
4011         is an IEditable, but call property_descriptor.SetValue regardless.
4012         fixes #79435.
4013
4014 2006-09-29  Chris Toshok  <toshok@ximian.com>
4015
4016         * DataGridBoolColumn.cs: we need to test equality in the face of
4017         possible null values (as is the case with the default NullValue).
4018         This patch keeps us from crashing in that case.
4019
4020 2006-09-29  Jackson Harper  <jackson@ximian.com>
4021
4022         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
4023         here, since it will get called for every node collection in the
4024         tree. This is now done in the treeview once the sorting is
4025         finished.
4026         * TreeView.cs: Recalculate the visible order, and update the
4027         scrollbars after sorting, set the top nope to the root so that the
4028         recalc actually works.
4029
4030 2006-09-29  Chris Toshok  <toshok@ximian.com>
4031
4032         * LinkLabel.cs: more handling of the default link collection in
4033         the face of LinkArea manipulation.  The default link collection
4034         contains 1 element (start=0,length=-1).  If the user sets LinkArea
4035         to anything and the links collection is the default, clear it.
4036         Then only add the link if its nonempty.  Fixes #79518.
4037
4038 2006-09-29  Chris Toshok  <toshok@ximian.com>
4039
4040         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
4041         piece correctly when we hit a '\n'.  Fixes #79517.
4042
4043 2006-09-29  Chris Toshok  <toshok@ximian.com>
4044
4045         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
4046         change the binding of gdk_init_check to take two IntPtr's, and
4047         pass IntPtr.Zero for both of them.  Fixes #79520.
4048
4049 2006-09-29  Mike Kestner  <mkestner@novell.com>
4050
4051         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
4052         [Fixes #78779]
4053
4054 2006-09-28  Jackson Harper  <jackson@ximian.com>
4055
4056         * XplatUIX11.cs: When translating NC messages make sure we go from
4057         whole window to screen, not client window to screen.
4058         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
4059         method doesn't exist
4060         - Skip over controls that aren't forms when arranging.
4061
4062 2006-09-28  Jackson Harper  <jackson@ximian.com>
4063
4064         * XplatUIWin32.cs: Clip the rect to the parent window.
4065         * XplatUIStructs.cs: Add clipping modes struct.
4066         * InternalWindowManager.cs: New private method that factors title
4067         bar heights in when calculating the pos of an NC mouse message.
4068         - Use SendMessage to force a paint when the form's size is changed
4069         instead of painting the decorations immediately.
4070         - Don't let the NC button click messages get to DefWndProc,
4071         because they will attempt to handle windowing themself, and this
4072         messes up z-order (it will put them in front of the scrollbars).
4073         * XplatUIX11.cs: Make sure that we don't reset window managers if
4074         we already have one (ie the window is an MDI window).
4075
4076 2006-09-28  Chris Toshok  <toshok@ximian.com>
4077
4078         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
4079         menu code really needs going over.
4080
4081 2006-09-27  Chris Toshok  <toshok@ximian.com>
4082
4083         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
4084         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
4085         window is maximizable.  So, we need to make sure that even if we
4086         clear the border/wm frame of those functions, they're still
4087         available (basically, we remove the decoration without removing
4088         the function).  Half the fix for #79338.
4089
4090 2006-09-27  Chris Toshok  <toshok@ximian.com>
4091
4092         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
4093         Fixes bug #79515.
4094
4095 2006-09-27  Chris Toshok  <toshok@ximian.com>
4096
4097         * Splitter.cs: reorder things a bit so that we don't actually
4098         draw/move the splitter until after calling OnSplitterMoving.  This
4099         lets users cancel/disallow the movement by explicitly setting
4100         event.SplitX/SplitY.  Fixes #79372.
4101
4102 2006-09-27  Jackson Harper  <jackson@ximian.com>
4103
4104         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
4105         because it is most likely on a window being destroyed, and that
4106         will give us an X11 error.
4107
4108 2006-09-27  Chris Toshok  <toshok@ximian.com>
4109
4110         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
4111         the dropdown button now toggles between showing and hiding the
4112         dropdown.  Also, get rid of dropdown_form_showing and just use
4113         dropdown_form.Visible.  We still don't do a grab, but I'll leave
4114         that part to someone who has handled Capture-fu before.
4115
4116 2006-09-27  Chris Toshok  <toshok@ximian.com>
4117
4118         * DataGrid.cs: return false if alt isn't pressed when '0' is
4119         pressed.  this keeps the '0' key from being swallowed, and fixes
4120         bug #79350.
4121
4122 2006-09-27  Chris Toshok  <toshok@ximian.com>
4123
4124         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
4125         Calling Refresh (in response to a scrollbar event) screws up the
4126         scrollbar painting.  Fixes bug #78923.
4127
4128 2006-09-27  Chris Toshok  <toshok@ximian.com>
4129
4130         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
4131         then insert into hashtable" blocks threadsafe.
4132
4133 2006-09-27  Chris Toshok  <toshok@ximian.com>
4134
4135         * MessageBox.cs (CreateParams): the styles should be |'ed with our
4136         baseclass's, since otherwise the
4137         ControlBox/MinimizeBox/MaximizeBox assignments above have no
4138         effect.  This gets the close button back in messageboxes.
4139
4140 2006-09-27  Chris Toshok  <toshok@ximian.com>
4141
4142         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
4143         flag, not just != 0.  this makes flags that are actually multiple
4144         bits (like WS_CAPTION) work.  fixes bug #79508.
4145
4146 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
4147
4148         * PageSetupDialog.cs: add support for getting and settings the 
4149         paper size, source and orientation.
4150
4151 2006-09-26  Chris Toshok  <toshok@ximian.com>
4152
4153         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
4154         and caption == "", we need to remove the resize handles as well as
4155         the title bar.
4156
4157         * Control.cs (set_Text): turns out that setting Text on a form
4158         should change the WM styles on the window, since if ControlBox ==
4159         false, the only way to get a window border is to have a non-""
4160         Text property.  check winforms/forms/text.cs for an example.  so,
4161         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
4162         update both window styles and title.  This fixes a lot of dialogs
4163         (including the preferences dialog in MonoCalendar.)
4164
4165 2006-09-26  Chris Toshok  <toshok@ximian.com>
4166
4167         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
4168         control isn't a Form), call Win32ShowWindow to hide the window,
4169         but don't update the control Visible property.  When we reparent
4170         back to a parent control, call SetVisible in order for the
4171         window's visibility to be reinstated.
4172
4173         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
4174         the FosterParent.
4175
4176         * Control.cs (ControlCollection.Remove): remove that value.Hide()
4177         call for good, since it breaks MonoCalendar (and other things I'm
4178         sure.) Also, set all_controls to null *after* the owner calls,
4179         which end up regenerating it.
4180         (ChangeParent): allow new_parent to be == null, passing
4181         IntPtr.Zero down to XplatUI.
4182
4183         this fixes #79294 the right way.
4184
4185 2006-09-26  Mike Kestner  <mkestner@novell.com>
4186
4187         * GridEntry.cs : internal SetParent method.
4188         * PropertyGrid.cs : attach to property changed on the proper
4189         target if we have a hierarchical grid with subobjects. Setup
4190         GridItem.Parent for hierarchical items.
4191         * PropertyGridView.cs : Set value on the correct target for
4192         hierarchical grids. [Fixes #78903]
4193
4194 2006-09-26  Chris Toshok  <toshok@ximian.com>
4195
4196         * Control.cs (ChildNeedsRecreating): this should return true if
4197         either we're being recreated and the child is in our list, or our
4198         parent is waiting for our recreation.
4199
4200 2006-09-26  Chris Toshok  <toshok@ximian.com>
4201
4202         * Control.cs (ControlCollection.Remove): reinstate the
4203         value.Hide() call as suggested in bug #79294.
4204
4205 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
4206
4207         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
4208         coordinates (versus a relative move).
4209
4210 2006-09-26  Chris Toshok  <toshok@ximian.com>
4211
4212         * Control.cs: rework child recreation a little bit.  It turns out
4213         that we race between the DestroyNotify the WM_DESTROY message.  If
4214         the parent gets its DestroyNotify before the child gets the
4215         WM_DESTROY message, the child ends up not recreating (since the
4216         parent finishes its recreation on DestroyNotify, and the child
4217         checks ParentIsRecreating.)
4218
4219         So, instead we store off a list of all the child controls which
4220         need to be recreated when the parent control starts to recreate
4221         itself.  Then, when child controls get their WM_DESTROY message we
4222         check to see if they're in the parent's pending recreation list,
4223         and if so, we recreate.  This removes all dependency on ordering
4224         from the code and fixes the initial MonoCalendar upgrade dialog.
4225         
4226 2006-09-26  Jackson Harper  <jackson@ximian.com>
4227
4228         * TextControl.cs: Use the Line to get the length of the line,
4229         since soft line breaks can change the end line.
4230
4231 2006-09-26  Chris Toshok  <toshok@ximian.com>
4232
4233         * Control.cs (ControlCollection.AddImplicit): don't add the
4234         control again if it's already in one of our lists.  This keeps us
4235         from adding controls over and over again for comboboxes when their
4236         handle gets recreated (as the combobox adds implicit controls in
4237         OnHandleCreated).  Fixes the X11 errors in bug #79480.
4238
4239 2006-09-26  Jackson Harper  <jackson@ximian.com>
4240
4241         * TextControl.cs: When deleting characters make sure that any
4242         orphaned zero lengthed tags get deleted.
4243         - Fix ToString for zero lengthed tags.
4244
4245 2006-09-25  Jackson Harper  <jackson@ximian.com>
4246
4247         * TextControl.cs: When getting a tag at the location there can be
4248         multiple tags at the same spot, these are 0-lengthed tags that
4249         appear when extra formatting has been stuck in a location.  We
4250         need to pull out the last of these 0 lengthed tags.
4251
4252 2006-09-25  Jackson Harper  <jackson@ximian.com>
4253
4254         * TextControl.cs: Fix print out in debug method.
4255         * TextBoxBase.cs: When text is set bail if we are setting to the
4256         previous value.
4257         
4258 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
4259
4260         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
4261           It is now possible to change the selected index in a FontXXXListBox
4262           with the up and down arrow keys from the FontXXXTextBoxes.
4263           Also, send the FontXXXTextBox mouse wheel event to the corresponding
4264           FontXXXListBoxes to match ms.
4265
4266 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
4267
4268         * SystemInformation.cs: Return a clone of the theme's MenuFont because
4269         anyone can dispose it, anytime. All other properties returns enums, 
4270         structs or basic types so they don't need such tricks.
4271
4272 2006-09-22  Jackson Harper  <jackson@ximian.com>
4273
4274         * XplatUI.cs:
4275         * XplatUIWin32.cs:
4276         * Clipboard.cs:
4277         * DataFormats.cs:
4278         * XplatUIOSX.cs:
4279         * XplatUIDriver.cs: Update interface to add a primary selection
4280         flag, so the driver can use the primary selection buffer if
4281         needed.
4282         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
4283
4284         * RichTextBox.cs: We need to supply the data object to paste now
4285         (so we can choose to supply CLIPBOARD or PRIMARY).
4286         * TextBoxBase.cs: Supply data object to paste (see above).
4287         - Middle click uses the primary selection data object.
4288         
4289 2006-09-21  Chris Toshok  <toshok@ximian.com>
4290
4291         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
4292         of SetWMStyles.  It's still a rat's nest and is largely
4293         order-dependent which I dislike immensely.  This also fixes the X
4294         button disappearing from toplevel forms.
4295
4296 2006-09-21  Mike Kestner <mkestner@novell.com>
4297
4298         * ListBox.cs: move Jordi's click/dblclick raising code to the
4299         mouse up handler.
4300
4301 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
4302
4303         * ListBox.cs: Fixes 79450
4304
4305 2006-09-21  Mike Kestner <mkestner@novell.com>
4306
4307         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
4308         to deal with people updating the TreeNodeCollection after the tree
4309         is disposed.  "Fixes" 79330.
4310
4311 2006-09-20  Jackson Harper <jackson@ximian.com>
4312
4313         * TextControl.cs: Push the cursor record onto the undo stack
4314         before the delete action. This fixes 78651.
4315
4316 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
4317
4318         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
4319         CreateParams. Fixes 79329.
4320
4321 2006-09-19  Chris Toshok  <toshok@ximian.com>
4322
4323         * XplatUIX11.cs: a couple of blanket code massage passes to clean
4324         things up a bit.  First, get rid of the NetAtoms array (and the NA
4325         enum), and just embed the atoms as static fields.  Also, add a
4326         couple of functions (StyleSet and ExStyleSet) to clean up all the
4327         bitmask testing of styles.
4328
4329         * X11Structs.cs: remove the NA enum, not needed anymore.
4330         
4331 2006-09-19  Chris Toshok  <toshok@ximian.com>
4332
4333         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
4334         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
4335         added cleanup to get MessageBox titles appearing again, which were
4336         broken by my earlier fix for caption-less/ControlBox-less windows.
4337
4338 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
4339
4340         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
4341           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
4342           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
4343           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
4344           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
4345           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
4346           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
4347           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
4348           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
4349           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
4350           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
4351             Inital import.
4352         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
4353           ToolStripButton.cs: Stubs needed for above.
4354         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
4355
4356 2006-09-15  Chris Toshok  <toshok@ximian.com>
4357
4358         * XplatUIX11.cs:
4359         - make the MessageQueues hashtable Synchronized.
4360         
4361         - SendMessage: if the Hwnd is owned by a different thread, use the
4362         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
4363         thread.  Fixes bug #79201.
4364
4365 2006-09-15  Chris Toshok  <toshok@ximian.com>
4366
4367         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
4368         ControlBox == false, we disallow maximize/minimize/close.  If the
4369         form Caption is "" we also disallow move (and get rid of the Title
4370         decoration).  Unfortunately, regardless of how things are set,
4371         we're stuck with the Title and WM menu.
4372
4373 2006-09-15  Chris Toshok  <toshok@ximian.com>
4374
4375         * Application.cs: add locking around the static message_filters
4376         ArrayList, part of #79196.
4377
4378 2006-09-15  Chris Toshok  <toshok@ximian.com>
4379
4380         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
4381         Form.ControlBox == false, the window has no titlebar nor resize
4382         handles.  fixes bug #79368.
4383
4384 2006-09-15  Chris Toshok  <toshok@ximian.com>
4385
4386         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
4387         >= 0.  Fixes bug #79370.
4388
4389 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
4390         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
4391         * Control.cs:
4392             Add properties: LayoutEngine, Margin, DefaultMargin.
4393             Add method: GetPreferredSize.
4394             Move layout logic from PerformLayout to layout engines. 
4395
4396 2006-09-13  Chris Toshok  <toshok@ximian.com>
4397
4398         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
4399         fix for #79326 broke #78718, so this change addresses that.
4400
4401         - in SendWMDestroyMessages remove the call to
4402         CleanupCachedWindows, since we might be recreating the control and
4403         need to maintain the references to right Hwnd handles.  Also, set
4404         the zombie flag to true for each of the children in the hierarchy
4405         instead of calling hwnd.Dispose.  This will cause GetMessage to
4406         ignore all events for the window except for DestroyNotify.
4407
4408         - In GetMessage, ignore messages except for DestroyNotify for
4409         zombie hwnds.
4410         
4411         * Control.cs: revert the is_recreating fix from the last
4412         ChangeLog.  It's definitely "right", but it breaks switching from
4413         an MDI form to a non-MDI form.  Will need to revisit that.
4414
4415         * Hwnd.cs: add a zombie flag, which means "the
4416         client_window/whole_window handles are invalid, but we're waiting
4417         for the DestroyNotify event to come in for them".  Set the flag to
4418         false explicitly if setting WholeWindow/ClientWindow, and also
4419         when Disposing.
4420         
4421 2006-09-13  Chris Toshok  <toshok@ximian.com>
4422
4423         * XplatUIX11.cs: rework window destruction slightly.
4424
4425         - when destroying the windows associated with a control, we don't
4426         need 2 separate XDestroyWindow calls.  Just the one for the
4427         whole_window (or for client_window if whole_window is somehow
4428         IntPtr.Zero -- can this happen?) is enough.
4429
4430         - reworked SendWMDestroyMessages slightly, so we always dispose
4431         the child control hwnd's after sending the messages.
4432         
4433         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
4434         the two places it was used (one was even using hwnd.Handle and the
4435         other hwnd.client_window.  ugh), adding another call in
4436         SendWMDestroyMessages.  We need this new call because now the
4437         DestroyNotify events in the queue will be ignored for the child
4438         controls (as their hwnd's were disposed, and the window id's
4439         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
4440
4441         - this fixes bug #79326.
4442
4443 2006-09-13  Chris Toshok  <toshok@ximian.com>
4444
4445         * Control.cs: don't always set is_recreating to false at the end
4446         of RecreateHandle, since sometimes we're not done (and won't be
4447         until WndProc handles the WM_DESTROY message).  Also, set
4448         is_recreating to false in the WM_DESTROY handling code.  Part of
4449         the fix for bug #79326.
4450
4451 2006-09-13  Miguel de Icaza  <miguel@novell.com>
4452
4453         * X11DesktopColors.cs: Start the droppage of debugging messages.
4454
4455         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
4456
4457 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
4458
4459         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
4460
4461 2006-09-12  Chris Toshok  <toshok@ximian.com>
4462
4463         * DataGrid.cs (get_ListManager): if the list_manager is null, try
4464         to create it using SetDataSource.  Fixes bug #79151.
4465
4466 2006-09-11  Chris Toshok  <toshok@ximian.com>
4467
4468         * XEventQueue.cs: add a DispatchIdle property.
4469
4470         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
4471         either the queue is null, or the queue has DispatchIdle set to
4472         true.
4473         (DoEvents): set queue.DispatchIdle to false around the
4474         peek/translate/dispatch message loop in this method.  This keeps
4475         Application.Doevents from emitting idle events.  Part of the fix
4476         for #78823.
4477
4478 2006-09-11  Chris Toshok  <toshok@ximian.com>
4479
4480         * DataGrid.cs (set_DataSource): make this work for both the
4481         winforms/datagrid test and ReportBuilder.  It seems as though when
4482         we've created a ListManager (or maybe it's if we have a
4483         BindingContext?), when we set the DataSource it clears the
4484         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
4485         #79333.
4486
4487 2006-09-11  Chris Toshok  <toshok@ximian.com>
4488
4489         * XplatUIX11.cs: deal with queue being null, which happens in all
4490         the Clipboard functions.  Fixes one of the two problems mentioned
4491         in #78612.
4492
4493 2006-09-11  Chris Toshok  <toshok@ximian.com>
4494
4495         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
4496         button on various spots (including outside the menu) works closer
4497         to MS, and doesn't crash.  Fixes #79343.
4498
4499 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
4500
4501         * ListView.cs: Do not initialize item_sorter in init. To match MS,
4502         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
4503         and the internal comparer is set. When a new ListViewItemSorter is set,
4504         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
4505         was specified. No further processing is necessary if SortOrder is set
4506         to it's current value. If Sorting is modified to None, and View is
4507         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
4508         (either custom or our internal ItemComparer) to null, on 1.0 profile
4509         only set item_sorter to null if its our internal IComparer. If Sorting
4510         is modified to Ascending or Descending, then use our internal IComparer
4511         if none is set, and if the current IComparer is our internal one then:
4512         on 2.0 profile always replace it with one for new Sorting, and on 1.0
4513         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
4514         Enum.IsDefined to verify whether a valid View value is specified in
4515         its setter. Automatically sort listview items when listview is
4516         created. In Sort, do nothing if ListView is not yet created, or if
4517         no item_sorter is set (no Sorting was set, Sorting was explicitly set
4518         to None or ListViewItemSorter was set to null). Added Sort overload
4519         taking a bool to indicate whether the ListView should be redrawn when
4520         items are sorted (we use this in ListViewItemCollection to avoid double
4521         redraws). Modified our internal IComparer to take the sort order into
4522         account. In Add and AddRange methods of ListViewItemCollection, also
4523         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
4524         view), but use overload with noredraw option to avoid double redraw.
4525         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
4526         true when View is Tile, and do the same when attempting to set View to
4527         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
4528         for selected/checked indices, as it involves overhead when sorting is
4529         done while these collections are not used all that often. Instead
4530         we'll build the indices on demand. Modified IList implementation of
4531         CheckedIndexCollection to use public methods if object is int.
4532         Modified CheckedListViewItemCollection to hide checked items if
4533         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
4534         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
4535         IList implementation in SelectedIndexCollection to use public methods
4536         if object is int. Modified SelectedListViewItemCollection to hide
4537         selected items if listview is not yet created.
4538         * ListViewItem.cs: CheckedIndices list no longer needs to be
4539         maintained separately (see ListView changes). Also clone font, fixes
4540         test failure.
4541
4542 2006-09-11  Mike Kestner  <mkestner@novell.com>
4543
4544         * ComboBox.cs: if we are updating the contents of the currently
4545         selected index, refresh the control or the textbox selection.
4546         [Fixes #79066]
4547
4548 2006-09-11  Mike Kestner  <mkestner@novell.com>
4549
4550         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
4551         the 'specified' logic has been moved there.  This seems like a bug 
4552         in Control.cs, since our current SetBoundsCore completely ignores 
4553         the specified parameter.  Peter's commit seems to indicate that is 
4554         the way the MS control implementation works.  [Fixes #79325]
4555
4556 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
4557
4558         * XplatUI.cs: Set default_class_name to be composed
4559         of current domain id. This allows MWF to be loaded in multiple
4560         domains on Win32.
4561
4562 2006-09-09  Miguel de Icaza  <miguel@novell.com>
4563
4564         * X11Keyboard.cs: If we are unable to obtain the input method, do
4565         not call CreateXic to create the input context.   Should fix
4566         #78944/79276.
4567
4568 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
4569
4570         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
4571           Simplified gnome support by adding more pinvokes to get the
4572           icon for a file or mime type.
4573
4574 2006-09-08  Jackson Harper  <jackson@ximian.com>
4575
4576         * MenuAPI.cs: Deslect popup context menu items before closing the
4577         window, so that you don't see the previously selected item
4578         selected when you reopen the menu.
4579         * TextControl.cs: Update the cursor position even if we don't have
4580         focus.  This fixes typing in things like the ComboBox.  I'm not
4581         totally sure we should always set the visibility if we don't have
4582         focus, but couldn't find any corner cases where the cursor showed
4583         up when it shouldn't.
4584
4585 2006-09-08  Chris Toshok  <toshok@ximian.com>
4586
4587         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
4588         our arrays are length 256.  & 0xff before indexing.  Fixes the
4589         crash in bug #78077.
4590         
4591 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4592
4593         * ThemeWin32Classic.cs: 
4594         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
4595         is true. Handle that check box too.
4596
4597 2006-09-07  Chris Toshok  <toshok@ximian.com>
4598
4599         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
4600         79244.
4601
4602 2006-09-07  Chris Toshok  <toshok@ximian.com>
4603
4604         * Control.cs: in set_BackColor only do the work if
4605         background_color != value.
4606
4607         * XplatUIX11.cs: move the clearing of invalid areas (both client
4608         and nc) to the same block of code where we set (nc_)expose_pending
4609         to false.  That is, move it from PaintEventEnd to PaintEventStart,
4610         so things that cause invalidates from within OnPaint will trigger
4611         another call to OnPaint.  Fixes bug #79262.
4612
4613 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
4614
4615         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
4616         * FileDialog.cs: Fix typo
4617
4618 2006-09-07  Jackson Harper  <jackson@ximian.com>
4619
4620         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
4621         for tab pages if they have any.
4622
4623 2006-09-06  Mike Kestner  <mkestner@novell.com>
4624
4625         * Splitter.cs: use the "current" rect when finishing drag handle
4626         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
4627
4628 2006-09-06  Mike Kestner  <mkestner@novell.com>
4629
4630         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
4631         support offset splitters. [Fixes #79298]
4632
4633 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
4634
4635         * Mime.cs: Fixed a bug that could override the global mime type
4636           result.
4637
4638 2006-09-05  Jackson Harper  <jackson@ximian.com>
4639
4640         * TabControl.cs: Better calculation method for setting the slider
4641         pos. Prevents crashes on really wide tabs.
4642         - Draw Image on tab pages if an image list is used.
4643
4644 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4645
4646         * MonthCalendar.cs: When Font changes, the Size should be
4647         updated to fit the new font's space requirements.
4648
4649 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
4650
4651         * ListBox.cs: If the items are cleared with Items.Clear set
4652           top_index to 0.
4653
4654 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4655
4656         * MonthCalendar.cs: Handle arrow keys as input keys. Also
4657         fire DateChanged event instead of DateSelected event when
4658         the date was changed by keyboard interaction.
4659
4660 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4661
4662         * DateTimePicker.cs: Handle DateChanged for the associated
4663         month_calendar control, and set month_calendar.Font from 
4664         OnFontChanged method, as well as resize the height of the
4665         control when needed. Make PreferredHeight proportional.
4666
4667 2006-09-01  Chris Toshok  <toshok@ximian.com>
4668
4669         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
4670         properties.
4671
4672         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
4673
4674 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
4675
4676         * FileDialog.cs: Set ClientSize instead of window size, to allow space
4677           for decorations (Fixes #79219)
4678
4679 2006-09-01  Mike Kestner  <mkestner@novell.com>
4680
4681         * ComboBox.cs: first stab at sorting plus some selection handling
4682         fixes to bring us more in line with MS behavior.  Also switches back
4683         to index based selection.  Alternative patches for index-based 
4684         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
4685         and latency@gmx.de on bug 78848.  I assume they were similar to this
4686         code I've had simmering in my tree forever.
4687         [Fixes #78848]
4688
4689 2006-09-01  Chris Toshok  <toshok@ximian.com>
4690
4691         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
4692         when setting list position guard against ending up with a -1 index
4693         (the other part of the fix for #78812).  Should probably make sure
4694         we don't need the analogous fix in the ItemDeleted case.
4695
4696         * DataGrid.cs:
4697         - in SetDataSource, work around the fact that the way
4698         OnBindingContextChanged is invoked will cause us to re-enter this
4699         method.  I'll remove the hack once I investigate
4700         OnBindingContextChanged.
4701
4702         - fix the logic in set_DataSource and set_DataMember (basically
4703         what to do if the other of the two is null.)
4704         
4705         - in OnListManagerItemChanged, we need to take into account the
4706         edit row when deciding whether or not to call RecreateDataGridRows
4707         (part of the fix for #78812).
4708
4709 2006-09-01  Jackson Harper  <jackson@ximian.com>
4710
4711         * Splitter.cs: Don't do anything if there is no control to affect
4712         (prevents us from crashing in weird tet cases).
4713         * TreeView.cs: Bounding box for the mouse movement reverting
4714         focus/selection back to previously selected node.  This matches
4715         MS, and makes the tree a lot more useable.
4716         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
4717         use clipping so they are not drawn.  This fixes when the control
4718         is set to have a transparent background, or if it was over an
4719         image.
4720
4721 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
4722
4723         * MimeIcon.cs: Improved handling for reading default icons when
4724           using gnome (2.16 made it necessary). Check and read svg icons
4725           first, then 48x48 and then 32x32 icons.
4726
4727 2006-08-31  Chris Toshok  <toshok@ximian.com>
4728
4729         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
4730         visible.
4731
4732         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
4733         ProcessKeyPreview.  Fixes part of #77806.
4734
4735         * DataGrid.cs: big patch.
4736
4737         - revert the queueing up of DataSource/DataMember if inside
4738         BeginInit/EndInit calls.  That's not the way the datagrid achieves
4739         its delayed databinding.  Instead, call SetDataSource in
4740         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
4741         #78811.
4742
4743         - Also, it wasn't mentioned in #78811, but the test case exhibits
4744         behavior that was lacking in our datagrid implementation - Columns
4745         that have mapping names that don't exist in the datasource's
4746         properties aren't shown.  Yuck.  To fix this I added the bound
4747         field to the column style, and basically any calculation to figure
4748         out anything about columns uses a loop to find the bound columns.
4749         still need to investigate if I can cache an array of the bound
4750         columns or if the indices must be the same.
4751
4752         - When setting CurrentCell, we no longer abort if the cell being
4753         edited was in the add row.  This fixes the other part of #77806.
4754
4755         - The new code also fixes #78807.
4756         
4757         * ThemeWin32Classic.cs: perpetrate the same disgusting
4758         column.bound field hack, and only render bound fields.
4759
4760 2006-08-31  Chris Toshok  <toshok@ximian.com>
4761
4762         * DataGridColumnStyle.cs: add bound field.  this field is true if
4763         the datasource has a property corresponding to the mapping name.
4764
4765         * DataGridTableStyle.cs: set the bound field on the column styles
4766         depending on whether or not we have a column for that property.
4767
4768 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
4769
4770         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
4771           splitter control (fixes #79228)
4772
4773 2006-08-31  Chris Toshok  <toshok@ximian.com>
4774
4775         * DataGridColumnStyle.cs: we need to delay the assignment of
4776         property descriptor until the last possible moment due to the lazy
4777         databinding stuff in the datagrid.  Also, fix the exceptions
4778         thrown by CheckValidDataSource to match MS.
4779
4780 2006-08-31  Jackson Harper  <jackson@ximian.com>
4781
4782         * Form.cs: When activated select the active control, if there is
4783         no active control, we select the first control.
4784         * XplatUIX11.cs: If there is no focus control when we get a
4785         FocusIn event, find the toplevel form and activate it.  This
4786         occurs when you popup a window, it becomes the focus window, then
4787         you close that window, giving focus back to the main window.
4788
4789 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4790
4791         * MonthCalendar.cs: 
4792         * ThemeWin32Classic.cs: Cache Font in bold style, as well
4793         as StringFormat with Center alignments in MonthCalendar,
4794         instead of creating new ones when drawing the control. 
4795         Also, draw the month name in bold style.
4796
4797 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
4798
4799         * Control.cs:
4800           - PerformLayout(): It would seem MS performs the fill even if the 
4801             control is not visible (part of #79218 fix)
4802           - ResetBackColor(): Use the setter to reset the color, to allow
4803             overriders to catch the change.
4804         * Form.cs:
4805           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
4806           - CreateHandle(): dito (part of $79218 fix)
4807           - Don't set an icon if we have a dialog
4808         * ScrollableControl.cs:
4809           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
4810           - ScrollIntoView(): No need to scroll if control is already visible
4811             (resolves fixme and fixes #79218)
4812
4813 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4814
4815         * MonthCalendar.cs: Change proportions in SingleMonthSize
4816         to match the aspect of the original control.
4817
4818 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
4819
4820         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
4821           get updated when they get maximized.
4822
4823 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
4824
4825         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
4826
4827 2006-08-29  Chris Toshok  <toshok@ximian.com>
4828
4829         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
4830
4831 2006-08-29  Jackson Harper  <jackson@ximian.com>
4832
4833         * TreeView.cs: Need to track selected node and highlighted node,
4834         they aren't always the same thing, when the mouse is down on a
4835         node it is hilighted, but not selected yet.
4836         - Do the HideSelection stuff right
4837         - Need to focus on rbutton mouse down. And redraw selection when
4838         right click is mouse upped.
4839
4840 2006-08-29  Mike Kestner  <mkestner@novell.com>
4841
4842         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
4843         when SubItems.Count < Columns.Count.  [Fixes #79167]
4844
4845 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
4846
4847         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
4848
4849 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
4850
4851         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
4852           from X. Only send based on ConfigureNotify if we don't have the
4853           correct location in hwnd (if the window manager moved us)
4854
4855 2006-08-28  Mike Kestner  <mkestner@novell.com>
4856
4857         * ListView.cs: remove a TODO. 
4858         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
4859         [Fixes ListView part of #79166]
4860
4861 2006-08-28  Mike Kestner  <mkestner@novell.com>
4862
4863         * ListView.cs: move wheel handler to parent since it is focused
4864         instead of the item_control now.  [Fixes #79177]
4865
4866 2006-08-28  Mike Kestner  <mkestner@novell.com>
4867
4868         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
4869         when the control is focused. [Fixes #79171]
4870
4871 2006-08-28  Mike Kestner  <mkestner@novell.com>
4872
4873         * ListView.cs: size the item and header controls for empty and
4874         unscrollable views.
4875         * ThemeWin32Classic.cs: draw disabled backgrounds.
4876         [Fixes #79187]
4877
4878 2006-08-28  Chris Toshok  <toshok@ximian.com>
4879
4880         * Form.cs: remove unused "active_form" static field.
4881
4882         * Hwnd.cs: lock around accesses to static windows collection.
4883
4884         * Application.cs: lock threads in Exit ().
4885
4886 2006-08-28  Chris Toshok  <toshok@ximian.com>
4887
4888         * NativeWindow.cs: lock around accesses to window_collection.
4889         
4890 2006-08-28  Chris Toshok  <toshok@ximian.com>
4891
4892         * Control.cs: err, fix this the right way, by locking on controls
4893         when using it.  not by making it synchronized.
4894
4895 2006-08-28  Chris Toshok  <toshok@ximian.com>
4896
4897         * Control.cs: make the static "controls" field synchronized, as it
4898         gets updated from multiple threads.
4899
4900 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4901
4902         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
4903           Prevent other threads from exiting when calling thread sets quit state.
4904         * XEventQueue.cs: Added PostQuitState property
4905
4906 2006-08-27  Chris Toshok  <toshok@ximian.com>
4907
4908         * AsyncMethodData.cs: add a slot for the window handle.
4909
4910         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
4911         window (the destination control's window, not the foster window).
4912
4913         * Control.cs (BeginInvokeInternal): store the window's handle in
4914         the AsyncMethodData.
4915         
4916
4917 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4918
4919         * XplatUIX11.cs:
4920           - PostQuitMessage: Removed resetting S.D display handle, we might have
4921             another loop started after calling PostQuitMessage (Fixes #79119)
4922           - Created destructor to reset S.D handle
4923
4924 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
4925
4926         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
4927
4928 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4929
4930         * TextControl.cs (Insert): Update the caret position even if we don't
4931           have a handle yet, just don't call the driver in that case.
4932         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
4933           to the end of the new selection text (Fixes #79184)
4934
4935 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4936
4937         * Form.cs (Activate): Only activate if the handle is created)
4938         * Control.c:
4939           - Mark window as invisible when it's disposed
4940           - Check if window handle is created when setting window visible, 
4941             instead of relying just on the is_created variable
4942           - Check if object is disposed when creating the control (Fixes #79155)
4943
4944 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4945
4946         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
4947           when allowing layout again. Otherwise we re-generate the anchoring 
4948           distance to the border again and actually alter what the user wanted
4949           This is ugly, it'd be better if we used DisplayRectangle instead of
4950           ClientRectangle for Control.UpdateDistances, but that causes us to
4951           have other problems (initial anchoring positons would be wrong)
4952           (Fixes #78835)
4953
4954 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4955
4956         * Control.cs:
4957           - The size and location setters shouldn't go directly to 
4958             SetBoundsCore, but to SetBounds, which triggers layout on the
4959             parent, then calls SetBoundsCore. (Related to fix for #78835)
4960           - SetBounds: Moved actual location update code into this function
4961             from SetBoundsCore, to match MS. Added call to PerformLayout if
4962             we have a parent (to trigger resizing of anchored parents if the 
4963             child size has changed (see testcase for #78835) 
4964         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
4965           new control code
4966         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
4967
4968 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4969
4970         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
4971           System.Drawing when a toplevel window gets closed; there might
4972           be other toplevel windows belonging to the same app (Fixes #78052)
4973
4974 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
4975
4976         * FileDialog.cs: After reading FileDialog settings from mwf_config
4977           use Desktop prefix only if a real folder doesn't exist anymore.
4978         * FontDialog.cs: Added char sets.
4979           It is now possible to select the font, size or style with the
4980           textboxes.
4981
4982 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
4983
4984         * PrintPreviewDialog.cs: Use assembly name constants.
4985
4986 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4987
4988         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
4989           scrollbar from whacking it's buttons)
4990
4991 2006-08-24  Chris Toshok  <toshok@ximian.com>
4992
4993         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
4994         in this patch (aggregating setting Left/Top/Width/Height to
4995         setting Bounds on the scrollbars), but the crux of the fix is in
4996         Recalculate, where we scroll by the remaining scroll_position if
4997         we're hiding a scrollbar.  The 2*$5 reward in the comment is
4998         serious.
4999
5000 2006-08-24  Jackson Harper  <jackson@ximian.com>
5001
5002         * MdiClient.cs:
5003         * MdiWindowManager.cs: If the form is made a non-mdi window we
5004         need to remove the form closed event so that closing forms works
5005         correctly.
5006
5007 2006-08-24  Jackson Harper  <jackson@ximian.com>
5008
5009         * Control.cs: Make IsRecreating internal so that the driver can
5010         check it
5011         - Temporarily remove the Hide when controls are removed, its
5012         making a whole bunch of things not work because visibility isn't
5013         getting reset elsewhere correctly
5014         * Form.cs: Need to do a full handle recreation when the mdi parent
5015         is set.
5016         * XplatUIX11.cs: If we are recreating handles don't dispose the
5017         HWNDs.  What was happening is the handles were being recreated in
5018         SendWMDestroyMessages, but then flow continued on in that method
5019         and destroyed the new handles.
5020
5021 2006-08-23  Jackson Harper  <jackson@ximian.com>
5022
5023         * Form.cs: MdiClient is always at the back of the bus
5024         * Control.cs: When the order of items in the collection is changed
5025         we need to reset the all_controls array
5026         - do the same sorta setup thats done when adding a control when a
5027         control is set on the collection.
5028
5029 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5030
5031         * TextBoxBase.cs (get_Text): Return an empty array if our document
5032           is empty (fixes #79052)
5033
5034 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5035
5036         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
5037           on WM_SYSCHAR messages (fixes #79053)
5038
5039 2006-08-23  Chris Toshok  <toshok@ximian.com>
5040
5041         * DataGrid.cs: fix flickering when scrolling vertically.
5042
5043 2006-08-23  Chris Toshok  <toshok@ximian.com>
5044
5045         * DataGrid.cs (EndEdit): only invalidate the row header when we
5046         need to.
5047
5048 2006-08-23  Chris Toshok  <toshok@ximian.com>
5049
5050         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
5051         methods.  fixes the flicker when scrolling around.
5052
5053 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5054
5055         * FileDialog.cs: Making sure the control is created before we get a 
5056           chance to use it with BeginInvoke (Fixes #79096)
5057
5058 2006-08-23  Chris Toshok  <toshok@ximian.com>
5059
5060         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
5061         width to use when painting the rows.
5062
5063 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5064
5065         * TextBoxBase.cs:
5066           - Throw ArgumentException if a negative value is passed to SelectionLength
5067           - Update the selection end if start is moved. end needs to be always
5068             after start. (Fixes #79095)
5069           - Track selection length; MS keeps the selection length even if start
5070             is changed; reset on all other operations affection selection
5071
5072 2006-08-22  Jackson Harper  <jackson@ximian.com>
5073
5074         * TreeView.cs: Make sure both scrollbars get displayed and sized
5075         correctly when the other bar is visible.
5076         - Use the original clip rectangle for checking if the area between
5077         the two scrollbars is visible, not the viewport adjusted clipping
5078         rectangle.
5079
5080 2006-08-22  Jackson Harper  <jackson@ximian.com>
5081
5082         * Binding.cs: We don't use IsBinding because it requires the
5083         control to be created, which really shouldn't be necessary just to
5084         set a property on the control.
5085
5086 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5087
5088         * ComboBox.cs: Some CB.ObjectCollection methods must throw
5089         ArgumentNullReferenceException when the argument is null.
5090
5091 2006-08-21  Jackson Harper  <jackson@ximian.com>
5092
5093         * Timer.cs: Track the thread that the timer is started in (NOT
5094         CREATED), this way messages for it will only be triggered on its
5095         queue.
5096         * XEventQueue.cs: Track the timers here, this makes timers per
5097         thread, like MS.
5098         * XplatUIX11.cs: The timers are moved to the XEventQueue.
5099
5100 2006-08-19  Chris Toshok  <toshok@ximian.com>
5101
5102         * XplatUIX11.cs: after further communication with pdb, we get the
5103         best of both worlds.  SetZOrder working for un-Mapped windows, and
5104         no X errors for un-mapped windows.
5105
5106 2006-08-19  Chris Toshok  <toshok@ximian.com>
5107
5108         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
5109         as it was causing pdn toolbars to not have the correct stacking.
5110
5111 2006-08-18  Mike Kestner  <mkestner@novell.com> 
5112
5113         * ListView.cs : guard against negative ClientArea.Width in scrollbar
5114         calculation.  Not sure why control should ever be setting a negative
5115         width though.  Fixes #78931.
5116
5117 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5118
5119         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
5120         null items in ObjectCollection class.
5121         * ListBox.cs.: Likewise.
5122
5123 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
5124
5125         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
5126           as the base method in ThemeWin32Classic should work fine.
5127           Fixed bug #78607.
5128
5129 2006-08-18  Jackson Harper  <jackson@ximian.com>
5130
5131         * Binding.cs: When validating if the value entered doesn't convert
5132         properly reset to the old value.
5133         * RadioButton.cs: Don't fire click when we get focus.
5134
5135 2006-08-18  Jackson Harper  <jackson@ximian.com>
5136
5137         * FileDialog.cs: Paint the selection on the directory combobox the
5138         same way as on MS. 
5139
5140 2006-08-17  Jackson Harper  <jackson@ximian.com>
5141
5142         * ErrorProvider.cs: Don't allow the error control to be selected.
5143         * Control.cs: Don't send the SetFocus messages, the control
5144         activation will do this, and if we do it blindly here validation
5145         does not work.
5146
5147 2006-08-17  Jackson Harper  <jackson@ximian.com>
5148
5149         * Control.cs:
5150         * ContainerControl.cs: Make validation events fire in the correct
5151         order.  TODO: For some reason the first validation event is not
5152         getting fired.
5153
5154 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5155
5156         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
5157
5158 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5159
5160         * ComboBox.cs : implement scroll wheel support for popped-down
5161         state. Fixes #78945. 
5162
5163 2006-08-17  Jackson Harper  <jackson@ximian.com>
5164
5165         * TreeView.cs: Specify treeview actions (old patch that didn't get
5166         committed for some reason).
5167         - Don't let the mouse wheel scroll us too far.  Just want to make
5168         the bottom node visible, not scroll it all the ways to the top.
5169
5170 2006-08-17  Jackson Harper  <jackson@ximian.com>
5171
5172         * XplatUIX11.cs: Mouse wheel events go to the focused window.
5173
5174 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5175
5176         * ComboBox.cs : don't do mouseover selection in simple mode.
5177
5178 2006-08-16  Jackson Harper  <jackson@ximian.com>
5179
5180         * Form.cs: Fire the closing events for all the mdi child windows
5181         when a window is closed.  If the cancel args are set to true, the
5182         main window still gets the event fired, but it doesn't not close.
5183         * MdiWindowManager.cs: Do this closing cleanup in a Closed
5184         handler, instead of when the button is clicked, so cancelling the
5185         close works correctly.
5186         * ComboBox.cs: Send the mouse down to the scrollbar.
5187
5188 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5189
5190         * ListBox.cs: When passing 'null' to SelectedItem,
5191         set SelectedIndex to -1, to unselect items. This is the
5192         observed behaviour in .Net.
5193
5194 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
5195
5196         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
5197           MS flags saying there won't be any. (fixes #78800)
5198         * Control.cs (HandleClick): Made virtual
5199
5200 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5201
5202         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
5203           cultures. Fixed bug #78399.
5204
5205 2006-08-16  Jackson Harper  <jackson@ximian.com>
5206
5207         * Form.cs: Use the MdiClients MdiChildren property to access
5208         MdiChildren instead of creating the array from the child controls.
5209         * MdiClient.cs: Maintain a separate array of the mdi children, so
5210         that insertion order is maintained when the Z-order is changed.
5211
5212 2006-08-16  Mike Kestner  <mkestner@novell.com> 
5213
5214         * ListView.cs : add an ItemComparer and default to it for sorting.
5215         Fixes #79076, but sorting needs a complete overhaul to be compat with
5216         MS.
5217
5218 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5219
5220         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
5221
5222 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5223
5224         * Hwnd.cs (Mapped): Properly traverse the tree
5225
5226 2006-08-15  Chris Toshok  <toshok@ximian.com>
5227
5228         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
5229         pass manager.Current.GetType() to ParseData.  It has to be the
5230         property type.  So, hold off doing the ParseData until we're in
5231         SetPropertyValue where we know the type.  This fixes the crash in
5232         #78821 but the textbox is still empty.
5233
5234 2006-08-15  Chris Toshok  <toshok@ximian.com>
5235
5236         * DataGrid.cs:
5237         - when we're scrolling, only call Edit() again if the
5238         current cell is still unobscured. Fixes bug #78927.
5239         - when handling mousedown on a cell, ensure the cell is visible
5240         before calling Edit.
5241         - remove the properties from DataGridRow, and remove the
5242         DataGridParentRow class altogether.
5243         
5244
5245 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5246
5247         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
5248           fire OnTextChanged by ourselves. There's no point calling base,
5249           we don't set the base value anywhere else. Fixes #78773.
5250
5251 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5252
5253         * ListBox.cs: Call CollectionChanged when modifying
5254         an item from Items indexer, to update the actual items
5255         in the list box.
5256
5257 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5258
5259         * PrintDialog.cs: Small fixes for focus and a pair of checks,
5260         to match .Net behaviour.
5261
5262 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5263
5264         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
5265
5266 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5267
5268         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
5269
5270 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5271
5272         * MessageBox.cs: Prevent potential NRE exception.
5273         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
5274
5275 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5276
5277         * MessageBox.cs: Calculate the owner of a messagebox, also make
5278           it topmost. Fixes #78753
5279
5280 2006-08-14  Chris Toshok  <toshok@ximian.com>
5281
5282         * XplatUIX11.cs: A couple of fixes so that metacity will let us
5283         programmatically move windows.  first, set the PPosition hint as
5284         well as the USPosition hint.  Second include some code from pdb
5285         that sets the window type to NORMAL when we set the transient for
5286         hint.  This is because, in the absence of a window type, metacity
5287         thinks any window with TransientFor set is a dialog, and refuses
5288         to let us move it programmatically.  fascists.
5289
5290 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5291
5292         * XplatUIX11.cs: When setting normal hints, take into consideration
5293           an different hints previously set so we don't delete them (fixes #78866)
5294
5295 2006-08-12  Chris Toshok  <toshok@ximian.com>
5296
5297         * ToolBarButton.cs: make Layout return a boolean, if something to
5298         do with the button's layout changed.
5299
5300         * ToolBar.cs:
5301         - add another parameter to Redraw, @force, which all existing
5302           calls set to true.
5303         - make the Layout function return a boolean which is true if the
5304           layout has actually changed.  Redraw now uses this (and @force)
5305           to determine when to invalidate.  At present the only place
5306           where @force can be false is the call from OnResize, when
5307           background_image == null.  So, resizing a toolbar when the
5308           layout doesn't change results in no drawing.
5309
5310 2006-08-12  Chris Toshok  <toshok@ximian.com>
5311
5312         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
5313         the VScrollBar and HScrollbar reversed.  oops.
5314
5315         * DataGrid.cs: fix the logic that assigns sizes to the implicit
5316         scrollbars.  we were assigning them twice (once in
5317         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
5318         therefore causing two scrollbar resizes (and redraws?) to happen
5319         per grid resize.
5320
5321 2006-08-12  Chris Toshok  <toshok@ximian.com>
5322
5323         * ToolBarButton.cs: redraw the entire button if the theme tells us
5324         to.
5325
5326         * Theme.cs: add ToolBarInvalidateEntireButton.
5327
5328         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
5329         buttons, just the border.
5330
5331         * ThemeNice.cs: redraw the entire toolbar button since we need to
5332         draw the highlight image.
5333
5334         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
5335         we need to redraw the entire button (not just the border).
5336
5337 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5338
5339         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
5340           for vertical bars. Fixes the mismatches shown by #78513
5341
5342 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
5343
5344         * FileDialog.cs: If a saved/remembered path doesn't exist
5345           anymore, fall back to "Desktop".
5346
5347 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5348
5349         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
5350           parent. It's apparently legal to not have one
5351         * XplatUIX11.cs:
5352           - SetZOrder: Don't try to set Z-Order on an unmapped window
5353           - CreateWindow: 0,0 are legal coordinates for a window. don't move
5354             it unless the coordinates are negative
5355
5356 2006-08-10  Mike Kestner  <mkestner@novell.com>
5357
5358         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
5359         when setting to null per msdn docs.  Fixes #78854.
5360
5361 2006-08-10  Chris Toshok  <toshok@ximian.com>
5362
5363         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
5364         flickering by setting a clip rectangle on the Graphics when we
5365         need to redraw just a particular menuitem.  Also, rename "OnClick"
5366         to "OnMouseDown" to reflect what it actually is.
5367         
5368         * Form.cs: track the OnMouseDown change.
5369
5370 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
5371
5372         * CommonDialog.cs: Properly inherit the CreateParams from the form
5373           and only change what we need. Fixes #78865
5374
5375 2006-08-10  Chris Toshok  <toshok@ximian.com>
5376
5377         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
5378         flickering in flat mode (and most of the flickering in general) by
5379         only invalidating the button border (and not the entire rectangle)
5380         when the state changes.  A couple of cases still flicker:
5381         ToggleButtons, and the dropdown arrow case when the user mouse
5382         ups.
5383
5384 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
5385
5386         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
5387           for german keyboards. Numlock state shouldn't affect the behaviour
5388           of the Del key. Fixes bug #78291.
5389
5390 2006-08-10  Chris Toshok  <toshok@ximian.com>
5391
5392         * ListControl.cs: remove the items.Clear line from BindDataItems,
5393         as this is the first thing done by both subclasses in their
5394         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
5395         passed -1, refresh the list.  This gets databinding working when
5396         the datasource is set on the list before the datasource is
5397         populated (as in wf-apps/ReportBuilder.)
5398
5399         * ComboBox.cs: remove the argument to BindDataItems.  This call
5400         should really go away, and be initiated by the ListControl code.
5401
5402         * ListBox.cs: same.
5403
5404 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5405
5406         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
5407           if no data is in the document when the control is displayed
5408
5409 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
5410
5411         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
5412           yes (fixes #78806)
5413         * TextControl.cs: 
5414           - PositionCaret: Allow positioning of caret but don't call methods 
5415             requiring a handle if the window isn't created yet
5416           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
5417           - owner_HandleCreated: Don't position the caret, just update it's 
5418             location. User might have already set a different position
5419
5420 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5421
5422         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
5423           windows. Screws up the returned coordinates for child windows. 
5424           Fixes #78825. I'm hoping this doesn't break something, since the
5425           code was explicitly put in 8 months ago, but no bug was attached.
5426           Menus still seem to work properly.
5427
5428 2006-08-08  Chris Toshok  <toshok@ximian.com>
5429
5430         * DataGrid.cs: make BeginInit/EndInit actually do what they're
5431         supposed to do - delay data binding until the EndInit call.  Also,
5432         make the table style collection's CollectionChangeAction.Refresh
5433         work properly.
5434
5435         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
5436         (with action = Refresh) when a consituent table's MappingName is
5437         changed.
5438
5439 2006-08-08  Chris Toshok  <toshok@ximian.com>
5440
5441         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
5442         Invalidate, since changing the text can change the size of the all
5443         toolbar buttons.
5444
5445 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5446
5447         * Form.cs (AddOwnedForm): Still need to add the form to our listif
5448           we don't have it yet
5449
5450 2006-08-08  Chris Toshok  <toshok@ximian.com>
5451
5452         * PrintControllerWithStatusDialog.cs: don't .Close() the status
5453         dialog, as this causes X errors later on, since we actually
5454         destroy the window.  Instead, .Hide() it.
5455
5456 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5457
5458         * ComboBox.cs: Added focus reflection for popup window
5459         * XplatUIX11.cs: 
5460           - Removed transient setting for non-app windows for now, not sure it
5461             was needed
5462           - Fixed logic checking if we have captions when deciding 
5463             override_redirect, WS_CAPTION is two bits and a 0 check was not
5464             sufficient
5465           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
5466             complicated
5467         * Form.cs: 
5468           - AddOwnedForm: Don't just add the form to the list, call the property
5469             to ensure the driver is informed about the ownership as well
5470           - CreateHandle: Set the TopMost status in the driver if we have an owner
5471         * XplatUI.cs: Fixed debug statement
5472
5473 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
5474         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5475           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
5476           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
5477           TrackBarRenderer.cs: Make constructor private.
5478         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
5479         * ProfessionalColorTable.cs: Make properties virtual.
5480
5481 2006-08-06  Duncan Mak  <duncan@novell.com>
5482
5483         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
5484         is not changing.
5485
5486 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5487         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5488           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
5489           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
5490           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
5491           Initial import of new 2.0 classes.
5492
5493 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5494         * Application.cs: Add 2.0 VisualStyles properties.
5495
5496 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5497         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
5498           XplatUIX11.cs: Create property to allow access to existing private
5499           variable "themes_enabled"
5500
5501 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5502
5503         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
5504         file size, as otherwise our class libraries fail using windows. Fixes
5505         bug #78759.
5506
5507 2006-08-04  Jackson Harper  <jackson@ximian.com>
5508
5509         * Form.cs:
5510         * XplatUIX11.cs: Move the toolwindow window manager creation into
5511         the X11 driver, this way on win32 we can let windows create/handle
5512         the toolwindows.
5513
5514 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5515
5516         * PrintDialog.cs: Remove some redundant checks, add some others,
5517         clean some code, and move the focus to the text boxes when the
5518         values are incorrect.
5519
5520 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
5521
5522         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
5523
5524 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5525
5526         * NumericUpDown.cs: Setting the Minimum and Maximum is now
5527           handled correctly. Fixes bug #79001.
5528
5529 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5530
5531         * PrintDialog.cs: The "Copies" numeric up down must have
5532         set the Minimum property to 1; only if the value is bigger
5533         than 1, activate "Collate" check box. This is the behaviour of .Net.
5534         Also modify the Document elements only if it is not null.
5535
5536 2006-08-03  Jackson Harper  <jackson@ximian.com>
5537
5538         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
5539         length. (We have a larger array then actual node count).
5540                 
5541 2006-08-03  Jackson Harper  <jackson@ximian.com>
5542
5543         * ComboBox.cs: Don't show selection by default.
5544         - The SelectAll isn't needed here, since the focus code should do
5545         that
5546         - DDL style lists to manual selection drawing, so when they
5547         get/lose focus they have to invalidate.
5548
5549 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
5550
5551         * TextBoxBase.cs: Don't always show all selections by default.
5552
5553 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
5554         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
5555           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
5556           Fixed various typos.
5557
5558 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5559
5560         * Control.cs: Removing the controls in a ControlCollection with
5561           Clear now hides the controls as expected. Fixes bug #78804. 
5562
5563 2006-08-03  Jackson Harper  <jackson@ximian.com>
5564
5565         * Control.cs: Revert previous focus patch, it breaks reflector.
5566
5567 2006-08-03  Jackson Harper  <jackson@ximian.com>
5568
5569         * ComboBox.cs: Cleanup selection and focus with the combobox.
5570         This also eliminates some duplicated keyboard code, since now
5571         everything is handled by the main class.
5572         - Make list selection work on mouse up instead of down, to match
5573         MS.
5574
5575 2006-08-02  Jackson Harper  <jackson@ximian.com>
5576
5577         * Control.cs: Setting focus needs to go through the whole
5578         selection mechanism.
5579
5580 2006-08-02  Chris Toshok  <toshok@ximian.com>
5581
5582         * PrintPreviewDialog.cs: change MinimumSize to use
5583         base.MinimumSize so it works.
5584
5585 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
5586
5587         * TextControl.cs:
5588           - UpdateCaret: Added sanity check in case caret isn't defined yet
5589           - Line.Delete: Now updating selection and caret markers if we're
5590             transfering a node (Properly fixes #78323)
5591           - SetSelectionEnd: Added sanity check
5592         * TextBoxBase.cs: Removed broken attempt to fix #78323
5593
5594 2006-08-01  Chris Toshok  <toshok@ximian.com>
5595
5596         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
5597         Close() call is handled in Form, not here.
5598
5599 2006-08-01  Chris Toshok  <toshok@ximian.com>
5600
5601         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
5602         layout/rendering.
5603
5604         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
5605         for sizes < 100% zoom.  The code now aggressively attempts to keep
5606         from calling document.Print (), and tries not to use the scaling
5607         g.DrawImage whenever possible (it still does if you scale to >
5608         100%, since usually that involves huge images).
5609
5610         * PrintPreviewControl.cs: hook up the close button.
5611
5612 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
5613         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
5614           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
5615           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
5616           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
5617           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
5618           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
5619           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
5620           Removed [Serializable] for 2.0 Event Handlers.
5621
5622 2006-07-31  Jackson Harper  <jackson@ximian.com>
5623
5624         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
5625         * TextControl.cs: Uncomment out the body of this method.
5626
5627 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
5628
5629         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
5630           standard cursors.
5631
5632 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5633
5634         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
5635           that embed TextBox and need selections visible even if textbox is not
5636           focused to enforce that behaviour.
5637         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
5638           selection drawing
5639
5640 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5641
5642         * TextControl.cs:
5643           - Added new SetSelectionStart/SetSelectionEnd overloads
5644           - Fixed viewport width assignment to be accurate
5645           - Adjusted alignment line shift calculations to allow cursor on right
5646             aligned lines to be always visible at the right border (like MS)
5647         * TextBoxBase.cs:
5648           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
5649           - TextBoxBase_SizeChanged: recalculating canvas on size changes
5650           - CalculateScrollBars: Use ViewPort size instead of window size, to
5651             properly consider space occupied by the border and scrollbars 
5652             (Fixes #78661)
5653           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
5654             calculations; no longer leaves artifacts
5655           - CaretMoved: Adjusted window scrolling to match MS and fixed several
5656             calculation bugs (Still missing right/center align calculations)
5657
5658 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
5659
5660         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
5661           use of both scroll rect and clip rect, as they do the same.
5662
5663 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5664
5665         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
5666           in the event handler (fixes #78912)
5667
5668 2006-07-31  Chris Toshok  <toshok@ximian.com>
5669
5670         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
5671         grid.ListManager.Count, since grid.ListManager might be null.
5672         This of course begs the question "why are we drawing rows for a
5673         grid with no list manager (and therefor no rows)?"  Fixes the
5674         crash in bug #78929.
5675
5676 2006-07-31  Chris Toshok  <toshok@ximian.com>
5677
5678         * RelatedPropertyManager.cs: Don't always chain up to the parent
5679         ctor.  instead, call SetDataSource if the parent's position is !=
5680         -1.  Fixes the crash in #78822.
5681
5682 2006-07-31  Chris Toshok  <toshok@ximian.com>
5683
5684         * DataGrid.cs (get_ListManager): use field instead of property
5685         accessors for datasource and datamember.
5686         (RowsCount): make internal again.
5687         (OnMouseDown): end edits before resizing columns/rows.
5688         (OnMouseUp): restart edits after resizing columns/rows.
5689
5690 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
5691
5692         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
5693           This fixes the situation where the last set cursor is displayed
5694           whenever the mouse is over scrollbars.
5695
5696 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5697
5698         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
5699         Document properties, as well as initial values.
5700
5701 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
5702
5703         * XplatUIWin32.cs (SetBorderStyle): Setting both border
5704           and ClientEdge results in a 3-pixel border, which is
5705           wrong.
5706
5707 2006-07-28  Jackson Harper  <jackson@ximian.com>
5708
5709         * TreeNodeCollection.cs: Fix the clear method.
5710         - Fix the Shrink also
5711
5712 2006-07-27  Jackson Harper  <jackson@ximian.com>
5713
5714         * TreeView.cs: Make sure the visible order is computed when we
5715         attempt to size the scrollbars (for trees that mess with the
5716         scrolling when they shouldn't.
5717         - Make sure to give the scrollbars valid values.
5718
5719 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5720
5721         * XplatUIX11.cs: Move motion compression code to where it
5722           has less performance impact
5723
5724 2006-07-26  Jackson Harper  <jackson@ximian.com>
5725
5726         * UpDownBase.cs: When the control is selected make the child
5727         controls non selectable, so that a click on them won't do a
5728         focus/unfocus cycle.
5729         - Don't give focus to the text box when the spinner is selected.
5730         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
5731
5732 2006-07-26  Chris Toshok  <toshok@ximian.com>
5733
5734         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
5735         satisfied with this solution.  If the bitmaps are small, we should
5736         just cache them in the PrintPreviewDialog and draw them here.
5737         Also, the layout is broken for the 2-up and 3-up cases.
5738
5739         * Theme.cs: add PrintPReviewControlPaint.
5740
5741         * PrintPreviewDialog.cs: first pass implementation.
5742
5743         * PrintPreviewControl.cs: first pass implementation.  No
5744         scrollbars yet.
5745
5746         * PrintDialog.cs: only validate fields if that particular portion
5747         of the UI is enabled.  Also, set the document's controller to a
5748         PrintControllerWithStatusDialog wrapping the document's print
5749         controller.
5750
5751         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
5752         bring up a SaveFileDialog (i hope we don't want to match the
5753         behavior of the crappy windows file entry) and set the
5754         PrinterSettings.PrintFileName accordingly.
5755
5756 2006-07-26  Jackson Harper  <jackson@ximian.com>
5757
5758         * ContainerControl.cs: Add a field that disables auto selecting
5759         the next control in a container when the container is activated.
5760         * UpDownBase.cs: Don't select the text box when the up down is
5761         selected.
5762
5763 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5764
5765         * XEventQueue.cs: Added methods for peeking (used for compression
5766           of successive events)
5767         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
5768           mouse move events (fixes #78732)
5769
5770 2006-07-25  Jackson Harper  <jackson@ximian.com>
5771
5772         * UpDownBase.cs: Use an internal class for the textbox so that we
5773         can control focus.  the updown control should always have focus,
5774         if either the text area or the buttons are clicked.
5775         - Send the key messages to the textbox, since it never actually
5776         has focus
5777         - Activate and decativate the textbox caret.
5778
5779 2006-07-24  Jackson Harper  <jackson@ximian.com>
5780
5781         * Control.cs: Use the directed select when selecting a control,
5782         this way the container controls override will get called and the
5783         whole ActiveControl chain will get triggered.  TODO: probably need
5784         to make sure this gets done everywhere instead of the old
5785         Select(Control).
5786         * ContainerControl.cs: Implement the directed Select method to
5787         find and activate the correct child control.    
5788         
5789 2006-07-22  Mike Kestner  <mkestner@novell.com>
5790
5791         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
5792         menu handling code so that clicks without a grab work too.
5793         [Fixes #78914]
5794
5795 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
5796
5797         * FileDialog.cs: Enable the BackButton when dirstack has one element.
5798           Added some small optimizations.
5799
5800 2006-07-21  Matt Hargett  <matt@use.net>
5801
5802         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
5803
5804 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
5805
5806         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
5807           tests pass and match MS in some strange border cases.
5808
5809 2006-07-21  Chris Toshok  <toshok@ximian.com>
5810
5811         * ThemeWin32Classic.cs: handle drawing of the relation links and
5812         parent row buttons.
5813
5814         * Theme.cs: change args to DataGridPaintParentRow.
5815
5816         * DataGrid.cs: Don't use controls for the relation links and
5817         parent buttons, so we have to handle all their interactions in
5818         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
5819         when we're navigating through child tables, so we can reinstate
5820         selection, expanded state, current cell, etc.
5821
5822 2006-07-20  Chris Toshok  <toshok@ximian.com>
5823
5824         * ToolBar.cs: When we redraw a button, for whatever reason,
5825         there's no reason to redraw the entire toolbar.  Also, don't call
5826         Control.Refresh from within Redraw, as it's much heavier than
5827         Invalidate (which is really what we want).
5828
5829 2006-07-20  Chris Toshok  <toshok@ximian.com>
5830
5831         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
5832         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
5833         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
5834         traces from within a debug IBindingList datasource
5835         (in mono/winforms/datagrid) for *days*, I've finally gotten things
5836         to work in a similar fashion.
5837
5838 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5839
5840         * ListBox.cs: Don't call Sort () when setting 
5841         the Sorted property to false (avoid an unnecessary sort).
5842
5843 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5844
5845         * ListControl.cs: DataSource should throw an ArgumentException
5846         instead of a normal exception when the argument is not of the 
5847         correct type.
5848
5849 2006-07-20  Mike Kestner  <mkestner@novell.com>
5850
5851         * Control.cs: add InternalPreProcessMessage to allow us to steal
5852         key events before MWF gets its paws on them.  Adapted from a
5853         suggestion by eno.
5854         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
5855         up/down/left/right navigation. Override the new internal control
5856         method to steal the events since they never make it to WndProc.
5857         * ToolBarButton.cs: don't worry about pushed when setting hilight
5858         since the drawing code prefers pushed to hilight. Invalidate on 
5859         Hilight changes. Fixes #78547 and #78525.
5860
5861 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5862
5863         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
5864           the canvas size. Fixes #78868
5865
5866 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
5867
5868         * Splitter.cs: Track requested split position until first layout
5869           is performed. Fixes #78871
5870
5871 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5872
5873         * Application.cs: Removed code that forces 1.x for the version
5874           number if the version started with 0. Not sure why that code was
5875           there and I couldn't find any bugs that indicated we needed it.
5876           Fixes #78869
5877
5878 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
5879
5880         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
5881           ResetDefaults(), just write some output to the console until it's
5882           implemented. Fixes bug #78907 for now. Eliminated two warnings.
5883
5884 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
5885
5886         * PropertyGridView.cs: set StartPosition of drop down forms
5887         so they appear in correct initial spot.  Fixes #78190.
5888
5889 2006-07-19  Mike Kestner  <mkestner@novell.com>
5890
5891         * ThemeWin32Classic.cs: use parent background color when drawing
5892         flat toolbars.  Restructure the conditionals to make sure non-flat
5893         non-Divider toolbars are filled too.  Fixes #78837.
5894
5895 2006-07-19  Mike Kestner  <mkestner@novell.com>
5896
5897         * ListBox.cs: Sort on collection changes even if the handle
5898         isn't created yet.  Fixes #78813.
5899
5900 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5901
5902         * ListControl.cs: DisplayMember should never be null,
5903         and now we assign String.Empty when null is passed to it (this
5904         is the .Net way).
5905
5906 2006-07-17  Mike Kestner  <mkestner@novell.com>
5907
5908         * ListViewItem.cs: restructure Font and subitem Font handling 
5909         to hold a specific font and refer back to owner on null.
5910         Fixes #78761.
5911
5912 2006-07-17  Mike Kestner  <mkestner@novell.com>
5913
5914         * ToolBar.cs: bandaid for side-effect of previous patch which was
5915         discarding explicit heights for non-AutoSize toolbars.  Need to
5916         extend my format tester to deal with AutoSize=false. Fixes #78864.
5917
5918 2006-07-15  Jackson Harper  <jackson@ximian.com>
5919
5920         * LabelEditTextBox.cs:
5921         * TreeView.cs: Use a new LabelEdit class for node editing, this
5922         class automatically 'closes' itself when it gets the enter key or
5923         loses focus.
5924         - Use the client rectangle when setting the trees scrollbars, so
5925         border style is taken into account.
5926         
5927 2006-07-14  Jackson Harper  <jackson@ximian.com>
5928
5929         * TreeNode.cs:
5930         * TreeView.cs: Make the editing work similar to MSs, firing the
5931         events correctly and ending edits correctly.
5932
5933 2006-07-14  Mike Kestner  <mkestner@novell.com>
5934
5935         * ToolBarButton.cs:
5936         * ToolBar.cs: layout restructuring and redraw enhancements to support
5937         formatting changes gracefully, like setting TextAlign, ImageList, 
5938         ButtonSize, and Appearance.  Handles explicit button sizing quirks
5939         of the MS controls.  Things like flat toolbars ignoring button size
5940         but becoming constant sized at the largest button's size.  Normal
5941         toolbars with an image set cannot be shrunk smaller than the image,
5942         but text can be clipped/ignored.
5943         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
5944         is zero.  Seems like DrawString should be smart enough to not put
5945         anything on screen though. Also trim labels and ellipsize at the char
5946         boundary, not word.
5947         Fixes #78711 and #78483.
5948
5949 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5950
5951         * FolderBrowserDialog.cs: Disable "New Folder" button and
5952           "New Folder" contextmenu menuitem if a folder like "My Computer"
5953           is selected.
5954
5955 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5956
5957         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
5958         * FolderBrowserDialog.cs:
5959           - Use MWFConfig to store and read size and position settings
5960           - Added code to create a new folder (button or context menu).
5961             Use TreeView labeledit to change the name of the new folder.
5962
5963 2006-07-14  Jackson Harper  <jackson@ximian.com>
5964
5965         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
5966         when the tree is scrolled we end editing.
5967
5968 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5969
5970         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
5971           Down arrows
5972
5973 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
5974
5975         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
5976         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
5977         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
5978         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
5979         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
5980         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
5981         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
5982         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
5983         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
5984         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
5985         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
5986         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
5987         ListViewItemSelectionChangedEventHandler.cs,
5988         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
5989         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
5990         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
5991         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
5992         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
5993         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
5994         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
5995         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
5996         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
5997         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
5998         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
5999         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
6000         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
6001         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
6002         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
6003         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
6004         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
6005         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
6006         WebBrowserNavigatingEventHandler.cs, 
6007         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
6008
6009 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
6010
6011         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
6012         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
6013         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
6014         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
6015         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
6016         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
6017         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
6018         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
6019         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
6020         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
6021         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
6022         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
6023         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
6024         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
6025         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
6026         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
6027         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
6028         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
6029         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
6030         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
6031         ListViewItemStates.cs, MaskFormat.cs: Added
6032
6033 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
6034
6035         * PropertyGridView.cs: Fix keyboard navigation of drop down.
6036         Patch from eno for bug 78558.
6037         
6038 2006-07-13  Jackson Harper  <jackson@ximian.com>
6039
6040         * TreeView.cs: When an edit is finished make sure that the
6041         selected node is visible.
6042         - When setting the top/bottom use the scrollbars is_visible, so
6043         everything will be set correctly even if the tree isn't visible
6044         yet.
6045
6046 2006-07-13  Jackson Harper  <jackson@ximian.com>
6047
6048         * ComboBox.cs: Revert the item->index part of my previous patch.
6049         * TreeView.cs: Use LostFocus instead of Leave for detecting when
6050         the edit box has lost focus (duh).
6051         - Just make the edit box not visible when we get return, that will
6052         take the focus, which will call EndEdit
6053         * TreeNode.cs When we start editing, notify the treeview.
6054
6055 2006-07-12  Jackson Harper  <jackson@ximian.com>
6056
6057         * ComboBox.cs: Clear out old items before setting the item list.
6058         This prevents databound controls from having their items added
6059         twice.
6060         - Switch the combobox to use indices whereever possible instead of
6061         using Item's.  This allows usto navigate through lists that have
6062         more then one item with the same string value (ie a, b, b, a).
6063         - Scroll the listboxes scrollbar when a non visible item is
6064         highlighted
6065         - Allow keypress to cycle through all the possible values. For
6066         example if you have b1, b2, b3 and hold down the B key all the
6067         values will be cycled through.
6068         
6069 2006-07-12  Jackson Harper  <jackson@ximian.com>
6070
6071         * TextBoxBase.cs:
6072         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
6073         this using the internal methods.
6074         * Control.cs: Add OnGotFocusInternal.  A new method that allows
6075         controls to "override" OnGotFocus and change focus behavior if
6076         needed.
6077         - Same thing for LostFocus
6078         * ComboBox.cs: Pass off focus to the text control properly.
6079
6080 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
6081
6082         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
6083         * FolderBrowserDialog.cs: Almost a complete rewrite.
6084           - Better support for Environment.Specialfolders
6085           - Added support for MWFVFS
6086           - Made setting SelectedPath work
6087
6088 2006-07-12  Jackson Harper  <jackson@ximian.com>
6089
6090         * Control.cs: Optimze getting all the controls.
6091
6092 2006-07-11  Jackson Harper  <jackson@ximian.com>
6093
6094         * ContainerControl.cs: Override SETFOCUS in the container control,
6095         so that it is not selected on mouse click.
6096
6097 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
6098
6099         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
6100           Hopefully we will have a better way once all of focus is complete.
6101
6102 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
6103
6104         * ThemeWin32Classic.cs: Commented out some debug code and fixed
6105           a compile error with csc.
6106
6107 2006-07-11  Jackson Harper  <jackson@ximian.com>
6108
6109         * Control.cs: When hiding a control only select the next control
6110         if the current control was focused.
6111         - Don't handle enter/leave when setting/killing focus, this is
6112         done by the container control.
6113         - Remove is_selected, it's not needed anymore.
6114         - Add utility methods for selecting a child control, and for
6115         firing the Enter/Leave events.
6116         * ContainerControl.cs: When a control is activated fire the
6117         enter/leave events.
6118         - Don't wrap when processing the tab key, so that focus can be
6119         moved outside of the container.
6120         - Use the correct active control
6121
6122 2006-07-11  Jackson Harper  <jackson@ximian.com>
6123
6124         * ComboBox.cs: Remove some debug code that was blinding me.
6125         * UpDownBase.cs: These controls actually aren't implicit, they are
6126         visible to the user.
6127
6128 2006-07-10  Chris Toshok  <toshok@ximian.com>
6129
6130         * DataGrid.cs: move back to the is_adding boolean field.  god i
6131         hate this is_editing/is_adding/is_changing stuff.
6132
6133 2006-07-10  Chris Toshok  <toshok@ximian.com>
6134
6135         * DataGridTableStyle.cs: just check if the property type is bool.
6136         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
6137         Don't use CanRenderType.
6138
6139         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
6140         if our text == NullText.  Remove CanRenderType.
6141
6142         * DataGridBoolColumn.cs: nuke CanRenderType.
6143
6144         * DataGrid.cs: reenable some code to end the current edit inside
6145         of set_CurrentCell.  This fixes the other 1.1.16 regression.
6146         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
6147         Also, remove the visible_row_count arg from CalcRowHeaders, since
6148         we don't need to worry about the actual height of the area.
6149
6150 2006-07-10  Chris Toshok  <toshok@ximian.com>
6151
6152         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
6153         mode, just return.
6154
6155         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
6156         the real sense of the IsInEditOrNavigateMode property (true =
6157         navigate, false = edit).  Also, update OnKeyPress to reflect this.
6158
6159         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
6160         column style exists, we still need to set its property descriptor
6161         to match up with our list manager.
6162
6163 2006-07-10  Chris Toshok  <toshok@ximian.com>
6164
6165         * ThemeWin32Classic.cs: implement the new row/header painting
6166         approach.  The parent row painting will likely go away and
6167         replaced with label controls, but the rest seems to work ok (and
6168         efficiently).
6169
6170         * Theme.cs: change the way we draw datagrid rows.  we don't draw
6171         the row headers as a block now.  Instead we draw them in the
6172         normal draw-row loop.  Add some calls for drawing parent rows and
6173         relation rows.
6174
6175         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
6176         a default table style.  Set the defaults from ThemeEngine.Current,
6177         not SystemColors.  Fix lots of misc issues with property setters.
6178
6179         * DataGrid.cs: move loads of style information out of this class
6180         as it's being duplicated with DataGridTableStyle.  keep track of a
6181         special DataGridTableStyle for the properties we used to mirror
6182         here.  Switch all the style properties to access this table style
6183         instead of instance fields of this class.  Also add a internal
6184         class to represent parent rows (more needs to be stored here, like
6185         the selection state from the parent table, as well as the
6186         expansion state.)  Also, for datasources with relations, do the
6187         right thing for collapse/expand, and add support for the
6188         navigation/parent row buttons.
6189
6190         Lastly, fix the crash in the 1.1.16 build.
6191
6192         * GridTableStylesCollection.cs: make the explicit interface
6193         implementations call the class's methods as opposed to duplicating
6194         them.
6195
6196         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
6197         0 so the text doesn't jump around when we move the cursor.
6198
6199 2006-07-10  Jackson Harper  <jackson@ximian.com>
6200
6201         * TextBoxBase.cs:
6202         * ListBox.cs: Match MS's ToString (this makes debugging focus
6203         stuff infinitely easier).
6204
6205 2006-07-10  Jackson Harper  <jackson@ximian.com>
6206
6207         * Control.cs (SelectNextControl): When checking the control's
6208         parent use this instead of ctrl.parent so that null can be passed
6209         to SelectNextControl. (I have unit tests for this).
6210         - Remove unused var.
6211
6212 2006-07-10  Chris Toshok  <toshok@ximian.com>
6213
6214         * CurrencyManager.cs: correct one regression, the removal of the
6215         finalType field.  Also, add a MonoTODO on CanAddRows, implement
6216         Refresh() correctly, and fix some event emission in
6217         ListChangedHandler.
6218
6219 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6220
6221         * FileDialog.cs: Don't use brackets for new folders if they exist
6222           under *nix. Instead use -(number of existing folders +1).
6223
6224 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6225
6226         * FileDialog.cs:
6227           - Fixed really nasty bug #78771
6228           - Don't block the whole GUI when reading directories with a lot of
6229             entries. Use an other thread instead and call BeginInvoke to
6230             update the ListView in MWFFileView
6231
6232 2006-07-07  Chris Toshok  <toshok@ximian.com>
6233
6234         * Control.cs (Dispose): release any Capture when disposing.
6235
6236 2006-07-07  Chris Toshok  <toshok@ximian.com>
6237
6238         * LinkLabel.cs (Select): if we chain up to the parent, set
6239         focused_index to -1 so we'll search for the first available link
6240         the next time the user tabs into us.  Also, if the direction is
6241         backward and focused_index == -1, start the search from the last
6242         element.
6243
6244 2006-07-07  Chris Toshok  <toshok@ximian.com>
6245
6246         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
6247         is beyond the end of the text, don't do anything.
6248         (CreateLinkPieces): set our ControlStyles.Selectable based on
6249         whether or not we have any links.
6250         (Link.Invalidate): use a loop instead of foreach.
6251         (Link.set_Start): null out owner.sorted_links so it'll be
6252         recreated by CreateLinkPieces.
6253
6254 2006-07-06  Chris Toshok  <toshok@ximian.com>
6255
6256         * LinkLabel.cs: revert the SetStyle change.
6257
6258 2006-07-06  Chris Toshok  <toshok@ximian.com>
6259
6260         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
6261         (OnEnableChanged): s/Refresh/Invalidate
6262         (OnGotFocus): if we have a focused index already, refocus it (so
6263         if we mouse out/in to the window it'll focus the right link).
6264         (OnKeyDown): move the tab handling out of here.
6265         (OnLostFocus): don't set focused_index to -1, so we can refocus it
6266         when we lose focus.
6267         (OnMouseDown): don't Capture here - Control handles it.  Also,
6268         focus the active link.
6269         (OnMouseUp): don't deal with Capture.
6270         (OnPaintBackgroundInternal): remove.
6271         (OnTextAlignChanged): CreateLinkPieces before calling the
6272         superclass's method.
6273         (OnTextChanged): call CreateLinkPieces before calling superclass's
6274         method.
6275         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
6276         move around.
6277         (Select): implement this, moving the selection between different
6278         links, and call parent.SelectNextControl if we don't have another
6279         link to focus in the given direction.
6280         (CreateLinkPieces): call Invalidate instead of Refresh.
6281         
6282 2006-07-06  Chris Toshok  <toshok@ximian.com>
6283
6284         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
6285         new LinkLabel internals.
6286
6287         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
6288         over pieces looking for active/focused/etc links.  also, deal with
6289         runs of text (and links) with embedded \n's in them, and use
6290         MeasureCharacterRanges instead of MeasureString to figure out the
6291         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
6292         two-step.
6293
6294 2006-07-04  Jackson Harper  <jackson@ximian.com>
6295
6296         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
6297         XKB or key auto repeat, do it manually.  Without key auto repeat,
6298         when a key is held down we get key press, key release, key press,
6299         key release, ... with auto repeat we get key press, key press, key
6300         press ..., and then a release when the key is actually released.
6301
6302 2006-07-03  Jackson Harper  <jackson@ximian.com>
6303
6304         * TabControl.cs:
6305         * ThemeWin32Classic.cs: Tabs do not obey normal background color
6306         rules, they are always control color regardless of the background
6307         color.
6308
6309 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
6310
6311         * FileDialog.cs: Added internal class MWFConfig.
6312           Removed Registry support and replaced it with support for the new
6313           MWFConfig class. See MWFConfig comments for more information.
6314
6315 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
6316
6317         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
6318           rectangle. Added some patches from eno from bug #78490 and fixed
6319           the arrow position for small up and down CPDrawScrollButtons.
6320
6321 2006-06-30  Jackson Harper  <jackson@ximian.com>
6322
6323         * InternalWindowManager.cs: Remove some debug code.
6324         * Form.cs: When an MdiParent is set to null, the window is
6325         "detatched" and becomes a normal window.
6326         * MdiClient.cs: Don't bring the new child form to the front until
6327         it is activated (setting it as active does this), this makes the
6328         previously active forms titlebar get redrawn as inactive.
6329
6330 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
6331
6332         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
6333           with later controls
6334
6335 2006-06-29  Mike Kestner  <mkestner@novell.com>
6336
6337         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
6338         arrow in keynav state.  Fixes #78682.
6339
6340 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6341
6342         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
6343           order (fixes #78393)
6344
6345 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
6346
6347         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
6348           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
6349           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
6350           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
6351           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
6352           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
6353           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
6354           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
6355           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
6356           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
6357           enumerations (FlagsAttribute, SerializableAttribute, added/removed
6358           values)
6359
6360 2006-06-28  Mike Kestner  <mkestner@novell.com>
6361
6362         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
6363
6364 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6365
6366         * PropertyGrid.cs,
6367           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
6368           item lines from other area (It also makes BackColor consistent and
6369           compatible with .NET). Fixed bug #78564.
6370
6371 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
6372
6373         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
6374         Patch from Eno for #78555.
6375
6376 2006-06-27  Chris Toshok  <toshok@ximian.com>
6377
6378         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
6379
6380         * DataGridColumnStyle.cs: same.
6381
6382         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
6383         
6384         * DataGridDrawingLogic.cs: nuke.
6385
6386 2006-06-27  Chris Toshok  <toshok@ximian.com>
6387
6388         * DataGridTableStyle.cs: clean up the constructors, and build the
6389         list of child relations for this table.  I have no idea if this is
6390         where we should be doing it (it probably isn't), but since we're
6391         already iterating over the properties..
6392
6393         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
6394         struct and array for keeping track of row information, similar to
6395         what's shown in a hack on
6396         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
6397
6398         * Theme.cs: be consistent about the naming of DataGrid methods,
6399         prefering ColumnWidths and RowHeights over columnsWidths and
6400         RowsHeights.
6401
6402         * ThemeWin32Classic.cs: same, and also add support for variable
6403         sized rows (and the +/- expansion icons for related rows).
6404
6405 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6406
6407         * TextBoxBase.cs: Applied Eno's patch from #78660
6408
6409 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6410
6411         * Form.cs (ScaleCore): We don't want to scale our form if it's
6412           state is minimized or maximized, but we still need to scale our
6413           child windows. Also, added try/finally block to ensure layout
6414           gets reset (Fixes #78697)
6415
6416 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6417
6418         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
6419
6420 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6421
6422         * Form.cs: Fixed c+p error and added check to resize form if minimum
6423           size is bigger than current size (Fixes #78709)
6424
6425 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
6426
6427         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
6428
6429 2006-06-26  Mike Kestner  <mkestner@novell.com>
6430
6431         * ComboBox.cs: only do Keypress handling in the combo when there  
6432         are items in the collection. Fixes #78710.
6433
6434 2006-06-26  Chris Toshok  <toshok@ximian.com>
6435
6436         * Binding.cs: make this work bi-directionally.  also, clear up
6437         other mixups between Push/Pull Data (e.g. we're supposed to pull
6438         data when validating).
6439
6440         * BindingManagerBase.cs: trim some fully qualified collection
6441         types.
6442
6443         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
6444
6445 2006-06-23  Chris Toshok  <toshok@ximian.com>
6446
6447         * PropertyManager.cs: It appears (according to the unit tests)
6448         that PropertyManager doesn't use
6449         PropertyDescriptor.AddValueChanged to track propery value changes
6450         in its datasource, but uses the same scheme as Binding, where it
6451         looks for a <Property>Changed event and binds to it.
6452
6453         Also, according to the docs, IsSuspended always returns false for
6454         a property manager with a non-null datasource.
6455
6456 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
6457
6458         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
6459           need to update the actual DialogResult. (Fixes #78613)
6460
6461 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
6462
6463         * Form.cs (ShowDialog): Release any captures before running the
6464           new message pump (fixes #78680)
6465
6466 2006-06-22  Mike Kestner  <mkestner@novell.com>
6467
6468         * ListView.cs: Layout column widths properly in details mode even 
6469         if HeaderStyle.None is set.  Fixes #78691.
6470
6471 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
6472
6473         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
6474
6475 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
6476
6477         * Control.cs (ContainsFocus): Using new driver method to get focused
6478           window, instead of trying to use internal tracking var, which can
6479           recursion issues (Fixes #78685)
6480         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
6481           XplatUIWin32.cs: Added GetFocus method to return focused window
6482
6483 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6484
6485         * ColorDialog.cs: when the mouse button is pressed inside the color
6486         matrix, don't let the cursor move out of it until the button is
6487         released, which is the behavior on windows. Changed 'colours' by
6488         'colors' to use the same word consistently.
6489
6490 2006-06-21  Chris Toshok  <toshok@ximian.com>
6491
6492         * DataGrid.cs: add in some basic navigation stuff (navigating to a
6493         child relation and back, using a stack).  Also, remove
6494         GetDataSource and the code that calls it - it's not needed.  Also,
6495         track CurrencyManager.ListName's removal.
6496
6497 2006-06-21  Chris Toshok  <toshok@ximian.com>
6498
6499         * CurrencyManager.cs: push some of the original type checking from
6500         BindingContext.CreateBindingManager to here, and remove some of
6501         the finalType stuff.  Need more tests to make sure I've got the
6502         ListName part right, and we might need more in SetDataSource.
6503
6504         * PropertyManager.cs: add a ctor that takes just the datasource,
6505         and no property name.  Make SetDataSource work with a null
6506         property_name, and make Current return the data_source if the
6507         property descriptor is null.  this makes 'string foo = "hi";
6508         BindingContext[foo].Current' return "hi" as it should.
6509
6510         * RelatedCurrencyManager.cs: make this code more generic - there's
6511         no reason the parent manager has to be CurrencyManager, and
6512         there's no reason to pass the DataRelation.  It suffices to use a
6513         BindingManagerBase and PropetyDescriptor.
6514
6515         * RelatedPropertyManager.cs: make a similar change here.
6516         
6517         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
6518         flower I knew it could be.
6519
6520 2006-06-20  Chris Toshok  <toshok@ximian.com>
6521
6522         * PropertyManager.cs: the PropertyChangedHandler is invoked when
6523         data in the source has changed and we need to update the control,
6524         so s/PullData/PushData.
6525
6526         * CurrencyManager.cs: Refresh is meant to update the control from
6527         data in the datasource.  So, s/PullData/PushData.
6528
6529         * BindingContext.cs: add more ugliness (we weren't handling the
6530         case where data_source = DataTable and data_member = column_name).
6531
6532         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
6533         from the perspective of the datasource.  PullData pulls from the
6534         control, PushData pushes to the control.
6535
6536 2006-06-20  Chris Toshok  <toshok@ximian.com>
6537
6538         * BindingContext.cs: rewrite the CreateBindingManager code to
6539         handle navigation paths more or less properly.  This could
6540         definitely stand some more work, in particular to push the
6541         recursion up to the toplevel.  But that relies on fixes in other
6542         places (System.Data comes to mind).
6543
6544         Also, move to a flat hashtable (and encode the twolevel nature of
6545         the dictionary into the hash key).  This lets us implement the
6546         IEnumerable.GetEnumerator method.
6547
6548         * RelatedCurrencyManager.cs: new class.  Update our view based on
6549         our relation and our parent CurrencyManager's position.
6550
6551         * CurrencyManager.cs: split out some logic from the ctor into
6552         SetView, so it can be called from the new RelatedCurrencyManager
6553         subclass.
6554
6555         * RelatedPropertyManager.cs: new class.  Update our datasource
6556         based on the position of our parent CurrencyManager.
6557
6558         * PropertyManager.cs: split out some logic from the ctor into
6559         SetDataSource, so it can be called from the new RelatedDataSource
6560         subclass.  Also, make the Current getter return the value
6561         of the PropertyDescriptor, not the data_source.
6562
6563         * Binding.cs: no need to duplicate the string splitting code here.
6564
6565 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6566
6567         * Control.cs:
6568           - set_Enabled: OnEnabledChanged is not called if the inherited state 
6569             of the control is not altered, even though  we might be changing the
6570             internal state of the control (#78458)
6571           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
6572             OnEnabledChanged, to allow easy altering of any child window state
6573           - OnEnabledChanged: Added code to enable/disable driver window state
6574           - OnParentEnabledChanged: Instead of firing the event, call 
6575             OnEnabledChanged, which will fire the event and also a) set driver
6576             window state and pass the enabled state to any grandchildren (#78458)
6577
6578 2006-06-19  Jackson Harper  <jackson@ximian.com>
6579
6580         * InternalWindowManager.cs: We don't set the cursor explicitly
6581         thats done via the response to NCHITTESTs.
6582         - Don't need to adjust for titlebar heights anymore, the
6583         coordinates are coming in the correct coordinates now (see peters
6584         last patch).
6585
6586
6587 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6588
6589         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
6590           being translated relative to whole window, instead of client window.
6591           That caused broken offsets on mouseclick (and caused gas for our
6592           InternalWindowManager)
6593
6594 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6595
6596         * TextControl.cs:
6597           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
6598           - Undo(): Added replay of cursor move on DeleteChars action; added
6599             calling Undo() again if a recorded cursor move is invalid (to
6600             ensure that some action is performed on Undo)
6601         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
6602
6603 2006-06-16  Jackson Harper  <jackson@ximian.com>
6604
6605         * MdiClient.cs: Instead of just sizing maximized windows when
6606         there is a resize we also have to adjust the Y of minimized
6607         windows, so they stay pinned to the bottom of the mdi container.
6608         - Eliminate separate tracking of the active control, we can just
6609         get this from the controls collection.
6610         - Paint the decorations for the newly activated titlebar so we get
6611         a pretty blue bar.
6612         * InternalWindowManager.cs:
6613         * ThemeWin32Classic.cs: Minimized windows get all three buttons
6614         even if they are a tool window.
6615         
6616 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6617
6618         * TextControl.cs (Undo): Handle non-existent cursor locations in the
6619           undo buffer, these can happen when text was deleted and the cursor
6620           was recorded first. Since we will also have a recorded cursor
6621           after the delete this is not an issue. (Fixes #78651)
6622
6623 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
6624
6625         * AccessibleObject.cs: Remove dependence on Control.is_selected;
6626           instead properly track control states internally (allows us to
6627           remove is_selected from Control)
6628
6629 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6630
6631         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
6632         whose width is not a multiple of 8.
6633
6634 2006-06-13  Jackson Harper  <jackson@ximian.com>
6635
6636         * MdiClient.cs:  Only maximize the next child if the current one
6637         is maximized.
6638
6639 2006-06-13  Chris Toshok  <toshok@ximian.com>
6640
6641         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
6642         modified.  Also, guard against grid or grid_drawing being null in
6643         Invalidate.
6644
6645         * DataGrid.cs: Reformat tons of getters/setters.  In the
6646         DataMember setter, just call SetNewDataSource instead of
6647         duplicating some of its functionality.  In SetNewDataSource, don't
6648         check ListManager for null, since the property getter creates the
6649         object if needed.
6650
6651         * DataGridTableStyle.cs: don't set TableStyle or call
6652         SetDataGridInternal on the column here, it's done in
6653         GridColumnStylesCollection.Add.
6654
6655         * GridColumnStylesCollection.cs: fix all the explicit interface
6656         implementations to just call our methods.  Nuke AddInternal() and
6657         move the body of it to Add().  Also, add a call to
6658         column.SetDataGridInternal to Add().
6659
6660         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
6661         base()+duplicate code.  Also, use the Format property instead of
6662         format to generate an Invalidate ala MS.  Lastly, create the
6663         textbox here, unconditionally.
6664         (set_Format): call Invalidate.
6665         (get_TextBox): no need to call EnsureTextBox.
6666         (Commit): remove the message box.
6667         (Edit) remove the call to EnsureTextBox.
6668         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
6669         (EnterNullValue): no need to check textbox for null.
6670         (HideEditBox): no need to check textbox for null.
6671         (SetDataGridInColumn): add the textbox to the grid's controls.
6672         (EnsureTextBox): nuke.
6673         
6674 2006-06-13  Jackson Harper  <jackson@ximian.com>
6675
6676         * MdiWindowManager.cs: Hook up to the maximized menus paint event
6677         and redraw the buttons when needed. Unhook when the window is
6678         unmaximized.
6679         * MainMenu.cs: Add an internal Paint event, the mdi window manager
6680         needs this so that it can redraw its buttons when the menu is
6681         repainted.
6682         * InternalWindowManager.cs:
6683         * Form.cs: The method order has changed for DrawMaximizedButtons,
6684         so that it can be a PaintEventHandler.
6685         
6686 2006-06-13  Jackson Harper  <jackson@ximian.com>
6687
6688         * MdiClient.cs: When we close a maximized mdi window, the next mdi
6689         window is activated and maximized, even if it wasn't before.
6690         - When  a new window is activated repaint the decorations of the
6691         old one, so that it no longer has the Active "look" (the blue
6692         titlebar).
6693         * InternalWindowManager.cs: Open up CreateButtons to base classes
6694         so they can recreate the buttons on state changes.
6695         - If a window is maximized give it all three buttons
6696         * MdiWindowManager.cs: Create the titlebar buttons when the state
6697         is changed, this is needed because a toolwindow will not have all
6698         three buttons until it is maximized.
6699
6700 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
6701
6702         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
6703           Fixed bug #78609.
6704
6705 2006-06-12  Jackson Harper  <jackson@ximian.com>
6706
6707         * KeysConverter.cs: Make sure we handle the Ctrl special case
6708         if its the only key.
6709         
6710 2006-06-12  Jackson Harper  <jackson@ximian.com>
6711
6712         * Theme.cs: Add a method to get the size of a managed window
6713         toolbar button.
6714         * InternalWindowManager.cs: Remove the ButtonSize property, this
6715         should be retrieved from the theme.
6716         * MdiWindowManager.cs: Get the button size from the theme
6717         * ThemeWin32Classic.cs: Make the method to get the managed window
6718         titlebar button size public.
6719         - Handle the different button sizes of maximized toolwindows
6720         (should match any maximized window).
6721         - Get the titlebar height from the theme, not the WM (which gets
6722         it from the theme).
6723
6724 2006-06-12  Jackson Harper  <jackson@ximian.com>
6725
6726         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
6727         event down to the mdi window manager.
6728         - Expose some extra stuff to base classes
6729         - Make sure to end the Capture on an NC Mouse up, so that we can
6730         get double clicks properly, and the sizing doens't stick.
6731         - When doing PointToClient contain it in the workable desktop
6732         area, this prevents windows from changing size when the cursor is
6733         pulled outside of the working area while sizing.
6734         * MdiWindowManager.cs: When we get a double click maximize the
6735         window.
6736         - Reset the cursor after handling mode changes.
6737
6738 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
6739
6740         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
6741           current desktop, instead of just assuming a 0, 0 origin. This
6742           is needed for our internal window manager, to know the top
6743           margin of the desktop
6744
6745 2006-06-12  Chris Toshok  <toshok@ximian.com>
6746
6747         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
6748         we need this to get rid of the selected background in the bool
6749         column.
6750         (CancelEditing): move the ConcedeFocus call to above the Abort
6751         call.  Also, set is_changing to false and invalidate the row
6752         header if we were changing before.
6753         (ProcessKeyPreviewInternal): remove, since noone outside this
6754         class calls it anymore.  Roll the code into ProcessKeyPreview.
6755         (EndEdit): remove the internal version.
6756         (InvalidateCurrentRowHeader): make private.
6757
6758         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
6759         Keys.Escape handling (and with it the last call to
6760         DataGrid.EndEdit from outside the class.)
6761
6762
6763 2006-06-12  Chris Toshok  <toshok@ximian.com>
6764
6765         * DataGridTextBox.cs (.ctor): isedit defaults to false.
6766         (OnKeyPress): set isedit to true.
6767         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
6768         already handled by the grid.
6769
6770         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
6771         right.  ugh.
6772         (set_DataSource): SetDataSource always returns true, so stop
6773         putting it in an if statement.
6774         (EndEdit): get rid of some {}'s
6775         (ProcessGridKey): return true in case Keys.Escape.
6776         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
6777         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
6778         PositionChanged, stopped connecting to CurrentChanged.
6779         (GetDataSource): simplify this a bunch.
6780         (SetDataSource): change return type from bool to void.
6781         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
6782         to this, and make sure we don't set ListManager.Position inside
6783         set_CurrentCell.
6784         (OnListManagerItemChanged): if we're passed an actual index,
6785         redraw that row.
6786
6787         * CurrencyManager.cs (set_Position): don't call PullData here.
6788
6789 2006-06-09  Jackson Harper  <jackson@ximian.com>
6790
6791         * TreeNode.cs:  Recalculate the visible order before doing the
6792         Expand/Collapse Below calls, because those calls generate an
6793         expose.
6794         - Reduce calls to the TreeView property, which is mildly expensive
6795         by using a local var.
6796         * Form.cs: Layout the MDI child windows when creating the parent
6797         form.
6798         - Don't use the internal constructor anymore
6799         * MdiClient.cs: use the parent form width/height (if available)
6800         when laying out the child windows, we do this because the
6801         mdiclient isn't docked yet when the initial layout is done.
6802         - Don't need an internal constructor anymore.
6803
6804 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6805
6806         * FileDialog.cs: handle access errors when trying to create a folder
6807         or changing to a directory. No need to initialize out parameters.
6808
6809 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6810
6811         * FileDialog.cs: Append a number when creating a new folder if the
6812           folder already exists (use parenthesis instead of square brackets)
6813
6814 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6815
6816         * FileDialog.cs:
6817           - Disabled registry support for windows and added better registry
6818             error checking for other systems (need to investigate why it
6819             works perfectly on my system)
6820           - If a folder already exist show an error MessageBox instead of
6821             trying to create an indexed name.
6822           - Fixed a non intentional typo.
6823
6824 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6825
6826         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
6827
6828 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6829
6830         * FileDialog.cs: When creating a new folder don't crash if the
6831           folder already exists.
6832
6833 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6834
6835         * FileDialog.cs: Allmost a complete rewrite.
6836           - added a "virtual" file system that handles the differences
6837             between unix and windows file systems (especially the directory
6838             structure). Moved most of the directory and file handling code
6839             into the vfs.
6840             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
6841             UnixFileSystem and FSEntry.
6842           - Recently used folder/directory, size, location and used file names
6843             (file name ComboBox) are now stored in the registry and get read
6844             before the dialog shows up (fixes part 6 of bug #78446).
6845           - Creation of new folders/directories is now possible (context menu
6846             or ToolBar). Added TextEntryDialog for this that fills in the gap
6847             until ListView.LabelEdit works.
6848           - Fixed cursor handling (bug #78527) and focus handling for
6849             PopupButtonPanel
6850           - Various "Search in" ComboBox enhancements. The content of the
6851             dropdown listbox now almost matches ms.
6852           - Changed the behaviour when the user switches to SpecialFolder
6853             Recent to show the ListView in View.Details.
6854           - Beside using the ToolBar to change the View property of the
6855             file ListView it is now possible to use the context menu too.
6856
6857 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6858
6859         * ComboBox.cs: Don't create a new ObjectCollection when an item
6860           gets inserted. Just insert the item in the existing object_items
6861           ArrayList.
6862
6863 2006-06-08  Jackson Harper  <jackson@ximian.com>
6864
6865         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
6866         that the treeview and root node checks are done also, this fixes a
6867         regression i caused in the unit tests.
6868
6869 2006-06-07  Wade Berrier <wberrier@novell.com> 
6870
6871         * RichTextBox.cs: More ISO8859-1 -> unicode
6872
6873 2006-06-07  Mike Kestner  <mkestner@novell.com>
6874
6875         * ComboBox.cs : use items to hold highlight/selection so that
6876         collection insertions don't require synchronization.
6877
6878 2006-06-07  Jackson Harper  <jackson@ximian.com>
6879
6880         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
6881         routine.  We now always keep the sized edge at the cursor instead
6882         of computing movement and adjusting rects.  There is one buglet
6883         with this method though when the cursor is moved over area that
6884         the window can not expand too (such as the toolbars on the desktop).
6885
6886 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6887
6888         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
6889         here. Fixes crash on startup in AlbumSurfer.
6890
6891 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
6892
6893         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
6894           values
6895
6896 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6897
6898         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
6899         statement to avoid calling XNextEvent which will block if another thread
6900         took the event that we were expecting. Fixes bug #78605.
6901
6902 2006-06-07  Mike Kestner  <mkestner@novell.com>
6903
6904         * ListView.cs : isolated checkbox clicking from the selection logic.
6905         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
6906
6907 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6908
6909         * Form.cs: Check that the value passed to Form.DialogResult
6910         is a valid enum value.
6911
6912 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6913
6914         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
6915         Computer'. Clicking it in the network view goes to 'My Computer'.
6916         Added CIFS filesystem type. Display the mount point of filesystems.
6917         Avoid duplicate mount points (happens for me with CIFS);
6918
6919 2006-06-06  Jackson Harper  <jackson@ximian.com>
6920
6921         * InternalWindowManager.cs: Draw the maximized windows buttons
6922         when resizing.
6923
6924 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6925
6926         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
6927         all other dialogs. Fixes bug #78585.
6928
6929 2006-06-06  Mike Kestner  <mkestner@novell.com>
6930
6931         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
6932         Only invalidate checkbox on checkstate changes to avoid flicker.
6933         * ListBox.cs : avoid unselect/select when clicking selected item.
6934         avoid reselection flicker for already multiselected items.
6935         Fixes #78382.
6936
6937 2006-06-06  Jackson Harper  <jackson@ximian.com>
6938
6939         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
6940         the parent form so that the menu is removed if needed.
6941
6942 2006-06-06  Mike Kestner  <mkestner@novell.com>
6943
6944         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
6945         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
6946
6947 2006-06-06  Mike Kestner  <mkestner@novell.com>
6948
6949         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
6950
6951
6952 2006-06-06  Jackson Harper  <jackson@ximian.com>
6953
6954         * Control.cs: Use the property (instead of the field) to get the
6955         default cursor so it is instantiated correctly.
6956         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
6957         resizes so we need to manually repaint the window decorations here.
6958         - Set the titlebar button locations as soon as they are created,
6959         otherwise they are not set correctly on win32.
6960         
6961 2006-06-06  Chris Toshok  <toshok@ximian.com>
6962
6963         * CurrencyManager.cs (set_Position): call PullData before
6964         OnCurrentChanged.
6965         (AddNew): after calling IBindingList.AddNew, update our
6966         listposition, and call OnCurrentChanged/OnPositionChanged (without
6967         calling PullData).
6968         (OnCurrentChanged): remove the call to PullData from here.
6969         (OnItemChanged): remove the call to PushData from here.
6970         (OnPositionChanged): change the test from == null to != null to
6971         match the other methods.
6972         (ListChangedHandler): the grossest part of the patch.  Implement
6973         this such that it passes the unit tests in CurrencyManagerTest and
6974         the output more or less matches that of MS's implementation.
6975  
6976 2006-06-06  Mike Kestner  <mkestner@novell.com>
6977
6978         * ListView.cs : only update check state on single click.
6979         * ThemeWin32Classic.cs : fix focus drawing for details view without
6980         fullrowselect.  Fixes #78454.
6981         * XplatUIX11.cs : fix for double click emission.
6982
6983 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6984
6985         * PropertyGridView.cs : Applied Atsushi's patch to fix
6986         font dialog bug  (#78197).
6987
6988 2006-06-05  Jackson Harper  <jackson@ximian.com>
6989
6990         * TreeNode.cs: Compute the next node for expanding/collapsing
6991         correctly. We now factor in nodes without a NextNode
6992         correctly. (Fixes somes cases in nunit-gui).
6993         * InternalWindowManager.cs: Set the bounds when updating the
6994         virtual position of a tool window.
6995         
6996 2006-06-05  Chris Toshok  <toshok@ximian.com>
6997
6998         * DataGrid.cs: rename cached_currencymgr to list_manager.
6999         (set_CurrentCell): move SetCurrentCell code here, and clean it up
7000         some.
7001         (CurrentRow, CurrentColumn): single accessors so we can make the
7002         cursor movement code a lot easier to understand.
7003         (CurrentRowIndex): implement this in terms of CurrentRow.
7004         (BeginEdit): clean this up a bit.
7005         (CancelEditing): sort out the is_editing/is_changing/is_adding
7006         stuff a little.
7007         (EndEdit): minor changes.
7008         (OnKeyDown): add a comment about a (most likely) unnecessary
7009         check.
7010         (OnMouseDown): cancel editing when we click on a row header.  And
7011         use the CurrentRow setter, not CurrentCell.
7012         (ProcessDialogKey): directly call ProcessGridKey.
7013         (UpdateSelectionAfterCursorMove): factor out this common block of
7014         code (it's used everywhere that we move the cursor by updating row
7015         or column).
7016         (ProcessGridKey): pretty substantial overhaul.  Use the
7017         CurrentRow/CurrentColumn properties to make the code a lot more
7018         readable.  Only use the CurrentCell property when we have to
7019         modify both row and column at once.  Tab behavior is still broken,
7020         and Delete is untested.
7021         (Select): if we have no selected rows, set selection_start to
7022         @row.
7023         (EditCurrentCell): rename EditCell this.  It was only ever invoked
7024         with CurrentCell as the arg, so drop the arg and rename it.
7025
7026         * DataGridColumnStyle.cs: clean up the constructors a little, and
7027         drop CommonConstructor().
7028
7029         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
7030         actually get notified when the user hits it.
7031         (ProcessKeyMessage): *substantially* simplify this method.
7032         There's no reason (that I can see) for the textbox to be making
7033         calls into the datagrid at all.  Remove all of them but the ones
7034         for Enter handling.  those will take some more work.
7035
7036         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
7037         calling HideEditBox.
7038         (HideEditBox): if we have an active textbox, render it invisible
7039         without causing a re-layout of the datagrid.
7040
7041 2006-06-05  Mike Kestner  <mkestner@novell.com>
7042
7043         * ListView.cs : fix NRE crasher when focuseditem is cleared by
7044         collection changes by resetting it to Items[0].  Fixes #78587.
7045
7046 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7047
7048         * MessageBox.cs: if the height of the text is larger than the icon_size,
7049         use that. Fixes bug #78575.
7050
7051 2006-06-05  Jackson Harper  <jackson@ximian.com>
7052
7053         * TreeView.cs: Fix line drawing when scrolling.  To do this each
7054         node is basically responsible for drawing its entire horizontal
7055         area.  When drawing a node it draws its parent node lines if
7056         needed.
7057         - Adjust the clip area to the viewport rectangle
7058         - Fix Left/Right key handling to match MS. (It expand/collapses
7059         and moves to parents/first child but does not move selection to
7060         sibling nodes).
7061         - Fix SetTop to work with new bound calculation code
7062         - When scrollbars are no longer needed we need to reset scrolling
7063         vars and recalculate the visible order so the redraw is correct
7064         * TreeNode.cs: We can't expand/collapse nodes with no children.
7065
7066 2006-06-03  John Luke  <john.luke@gmail.com> 
7067
7068         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
7069         so the colors work without dev packages
7070         
7071 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
7072
7073         * Control.cs 
7074           - Select: Implemented to just use activate. Seems to match MS 
7075             behaviour closest. Documented to only do actual control walking 
7076             based on it's parameters if in a container control so I moved 
7077             the code there.
7078           - Removed selection check logic from our internal Select() method
7079         * ContainerControl.cs:
7080           - Select: Moved selection logic from Control here, since MS documents
7081             that containers obey the bool arguments. No longer calling base
7082
7083 2006-06-02  Jackson Harper  <jackson@ximian.com>
7084
7085         * TreeView.cs: If the selected node isn't changed when we get
7086         focus update the previously selected node so that we see the
7087         selection box.
7088
7089 2006-06-02  Mike Kestner  <mkestner@novell.com>
7090
7091         * ComboBox.cs: restructure grab and general mouse event handling.
7092         Make the composite control raise mouse events like it was a single
7093         control for leaves/enters/motion/up/down events.  fix dropdown list
7094         coordinate mangling and refactor it into the scrollbar subclass to
7095         reduce code duplication.  Fixes #78282 #78361 and #78457.
7096
7097 2006-06-02  Mike Kestner  <mkestner@novell.com>
7098
7099         * ScrollBar.cs: remove Capture setting/clearing, as it happens
7100         automatically in the Control.WndProc.
7101
7102 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7103
7104         * FileDialog.cs: fix crash when running SharpChess, which sets the
7105         FilterIndex to 2 with only one Filter.
7106
7107 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7108
7109         * ToolBar.cs: add SizeSpecified property.
7110         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
7111         try to figure out our real size, otherwise fallback to what the
7112         container says.
7113
7114 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7115
7116         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
7117         * Control.cs (WndProc): MS always calls the DefWndProc to pass
7118           up the event
7119
7120 2006-06-01  Mike Kestner  <mkestner@novell.com>
7121
7122         * ListView.cs: revamp the focus management in ListView.  It still
7123         causes churn of LostFocus/GotFocus emissions on clicks, but it's
7124         better than not handling focus at all.  Will revisit when pdb feels
7125         the general focus handling is solid.  Fixes #78526.
7126
7127 2006-06-01  Jackson Harper  <jackson@ximian.com>
7128
7129         * TreeView.cs: Set the default border style in the constructor.
7130         - Move painting to use OnPaintInternal instead of capturing
7131         WM_PAINT, this is the correct way of doing things
7132         - UpdateBelow shouldn't invalidate the scrollbar area
7133         - Cap the top on update below in case the node was above the top
7134         of the viewport rectangle.
7135         - ExpandBelow and Collapse below need to obey Begin/End Update.
7136         * TreeNode.cs: Make is_expanded internal so the treenode
7137         collection can change it without firing the whole event chain.
7138         * TreeNodeCollection.cs: When clearing all the child nodes make
7139         sure to recalc the visible order.
7140         - Improve algo for remove the top node
7141
7142 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7143
7144         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
7145           SendMessage directly calling window procedures, which in turn might
7146           call SetFocus()
7147
7148 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
7149
7150         * Control.cs: Don't handle WM_SETFOCUS if the same window already
7151           has focus (works around X11 sending a FocusIn after our SetFocus)
7152         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
7153
7154 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
7155
7156         * Mime.cs: Fix for the NET_2_0 build.
7157           NameValueCollection needs StringComparer now.
7158
7159 2006-05-31  Chris Toshok  <toshok@ximian.com>
7160
7161         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
7162         return (via an out parameter) the starting X of the column.
7163         (UpdateVisibleColumn): track change to FromPixelToColumn.
7164         (HitTest): add a ColumnResize case here.
7165         (DrawResizeLine): new function, probably poorly named.
7166
7167         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
7168         only need to keep one reference.
7169         (set_ListManager): same.
7170         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
7171         Also, add support for HitTestType.ColumnResize.
7172         (OnMouseMove): add column resize behavior here, and change the
7173         cursor to the correct one as we move around the datagrid.
7174         (OnMouseUp): terminate the column resize if we're resizing.
7175         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
7176         for the current cell.
7177         (ConnectListManagerEvents): use cached_currencymgr.
7178         (DisconnectListManagerEvents): fill this in, using
7179         cached_currencymgr.
7180         (SetCurrentCell): remove cached_currencymgr_events handling.
7181         (SetDataMember): only call DisconnectListManagerEvents if
7182         cached_currencymgr is != null.
7183         (SetDataSource): same.
7184         (OnListManagerCurrentChanged): cached_currencymgr_events ->
7185         cached_currencymgr.
7186
7187 2006-05-31  Jackson Harper  <jackson@ximian.com>
7188
7189         * BindingManagerBase.cs: Remove somedebug code that creeped into
7190         SVN.
7191         * TreeNode.cs: We get the indent level dynamically right now, so
7192         don't track it as a member.
7193         * TreeNodeCollection.cs: Make sure all nodes added to the list
7194         have parents, treeviews/topnodes setup properly.
7195         - Don't attempt to track indent level.
7196
7197 2006-05-30  Jackson Harper  <jackson@ximian.com>
7198
7199         * BindingContext.cs: Create the currency manager tables here.
7200         This allows us to more easily create null tables (when bad data
7201         members are used), and more easily create related currency
7202         managers.
7203         * CurrencyManager.cs: All the table creation stuff is done by the
7204         binding context now.
7205         - Current should throw an exception if listposition is -1.
7206         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
7207         been bound yet.
7208
7209 2006-05-30  Mike Kestner  <mkestner@novell.com>
7210
7211         * ListView.cs: allow reexpansion of zero-width column headers.
7212         Fixes #78528.
7213
7214 2006-05-28  Chris Toshok  <toshok@ximian.com>
7215
7216         * CurrencyManager.cs (get_Current): after the late binding
7217         listposition = -1 fix, we need to guard against it here and return
7218         null, otherwise we raise an exception (which is swallowed
7219         elsewhere, and breaks datagrid databinding.)
7220
7221 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7222
7223         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
7224           than WM_SYSKEY, don't throw if get something unexpected (#78507)
7225
7226 2006-05-26  Jackson Harper  <jackson@ximian.com>
7227
7228         * ControlPaint.cs:
7229         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
7230         values, it's faster and it's all we care about (we don't care if
7231         the names aren't equal).
7232         * KeyboardLayouts.cs: Eliminate some dead code.
7233         - Lazy init things
7234         * X11Keyboard.cs: Lazy init keyboard detection.
7235         - Cleanup access modifiers a little.
7236
7237 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7238
7239         * XplatUIX11.cs: Once again, attempting to get layout just right.
7240
7241 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
7242
7243         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
7244           the sizes of each link section, that will result in sizes that
7245           match DrawString's layout (Fixes #78391)
7246
7247 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
7248
7249         * FileDialog.cs: If AddExtension property is true autocomplete the
7250           extensions in SaveFileDialog correctly. Fixes bug #78453.
7251           Set MyNetwork and MyComputer to "C:\" for windows. This should
7252           fix part 8 of bug #78446 for now.
7253
7254 2006-05-26  Chris Toshok  <toshok@ximian.com>
7255
7256         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
7257         invalidate the current row header if we need to, but presumably
7258         we'll invalidate the row corrsponding to the bounds or
7259         editingControl.
7260         (GridHScrolled): switch back to this method, as it's part of the
7261         public api.  *sigh*.
7262         (GridVScrolled): same.
7263         (OnMouseWheel): hack up something that more or less works.  Call
7264         GridHScrolled/GridVScrolled directly, instead of duplicating much
7265         of their code here.
7266         (EnsureCellVisibility): reinstate a bunch of this code, since we
7267         can't just set the scrollbar Value and expect to do all the work
7268         in the ValueChanged handler.  Also, Call Update() after scrolling
7269         in one direction so the other XplatX11.ScrollWindow call has the
7270         proper stuff in the proper places.
7271         (EditCell): set is_editing to true before calling .Edit.
7272
7273         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
7274         don't bother comparing first.
7275         (OnKeyPress): call grid.ColumnStartedEditing before calling
7276         base.OnKeyPress.  this will set is_changing and invalidate the row
7277         header if necessary.
7278         (ProcessKeyMessage): for WM_CHAR messages, call
7279         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
7280         and WM_KEYDOWN.
7281         
7282         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
7283         it's done in the DataGrid.
7284         (NextState): call grid.ColumnStartedEditing, which takes care of
7285         invalidating the row header (and setting is_changing).
7286
7287         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
7288         here.  it's done in the DataGrid.
7289
7290 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7291
7292         * Control.cs: allow changing the cursor when the mouse position is
7293         out of bounds but Capture is set.
7294         * LinkLabel.cs: handle the case when the mouse button is pressed on the
7295         linklabel but released somewhere else.
7296
7297 2006-05-25  Jackson Harper  <jackson@ximian.com>
7298
7299         * TreeView.cs: When we get focus if there is no selected node make
7300         it the top node
7301         - Remove some uneeded setup code from Draw.
7302         * TreeNodeCollection.cs: If the tree doesn't have a top node when
7303         a new node is inserted make the new node the top.
7304         * XplatUIX11.cs:
7305         * Timer.cs: Use Utc time so that no local time zone stuff needs to
7306         be used (should be faster).
7307         
7308 2006-05-25  Chris Toshok  <toshok@ximian.com>
7309
7310         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
7311         problem with the last commit.
7312
7313 2006-05-25  Chris Toshok  <toshok@ximian.com>
7314
7315         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
7316         need the invalidate call here, while scrolling right-to-left via
7317         the left arrow key (i.e. moving the editing cell while scrolling).
7318
7319         * DataGrid.cs (.ctor): remove the initialization of
7320         ctrl_pressed/shift_pressed.  We no longer track them using key
7321         up/down handlers, but by using Control.ModifierKeys.  Also, switch
7322         to using ValueChanged handlers on the scrollbars instead of
7323         Scrolled event handlers.  This simplifies a bunch of the scrolling
7324         code.
7325         (GridHValueChanged): rename from GridHScrolled, and change it to
7326         work with the new event args.
7327         (GridVValueChanged): same.
7328         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
7329         (OnMouseWheel): actually scroll the datagrid.  Don't change the
7330         selected cell.
7331         (ProcessGridKey): correct all the keyboard navigation stuff I
7332         could find.  Ctrl up/down/left/right/home/end work now.
7333         (EnsureCellVisibility): correct method name spelling.  Also,
7334         simplify this a touch by not explicitly calling the
7335         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
7336         scrollbar value.
7337         (OnKeyUpDG): no need for this method now.
7338         
7339 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7340
7341         * LinkLabel.cs: display the OverrideCursor when hovering the label.
7342         Fixes bug #78392.
7343
7344 2006-05-25  Chris Toshok  <toshok@ximian.com>
7345
7346         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
7347         r61019.
7348
7349 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7350
7351         * Application.cs: Moved setting of is_modal and closing to before
7352           we create the control, to allow the event handlers called as a
7353           result of creation affect closing. Also removed Gonzalo's previous
7354           change to setting DialogResult, the behaviour has been moved to 
7355           Form.ShowDialog()
7356         * Form.cs: 
7357           - ShowDialog(): Removed explicit creation of the form, let RunLoop
7358             handle it instead
7359           - ShowDialog(): If no dialog result is set, we need to return Cancel
7360           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
7361             the close is cancelled
7362
7363 2006-05-25  Jackson Harper  <jackson@ximian.com>
7364
7365         * StatusBar.cs: We only need to update the sizes of the other
7366         panels when we have auto size contents.  Also we are only updating
7367         the contents of the panel, not the borders, so compensate for the
7368         border width (TODO: get this width from the theme somehow).
7369         * TreeView.cs: Scrollable is true by default
7370         - Use invalidate instead of refresh where needed
7371         - Factor the scrollable value into scrollbar updating
7372         - Update the scrollbars if the Scrollable property is altered
7373         - Update the selected node if its ImageIndex is changed
7374         - Handle null nodes in UpdateNode (mainly so we don't have to
7375         check if selected is null when updating it
7376         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
7377         are factored into the visible count
7378         - Use VisibleCount for clarity in the code
7379         - When the font is changed we need to recurse through all the
7380         nodes and invalidate their sizes
7381         
7382 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7383
7384         * Application.cs: set the DialogResult to fixed when the main form is
7385         hidden or destroyed while being modal.
7386
7387 2006-05-25  Miguel de Icaza  <miguel@novell.com>
7388
7389         * Theme.cs: Use Tangoified messagebox icons. 
7390
7391         (GetSizedResourceImage): Also cope with width = 0 and do not
7392         trigger a warning in that case (0 means "give me your icon from
7393         the resouce, no special size needed).
7394
7395 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7396
7397         * Application.cs: Leave runloop if the the main modal form is 
7398           hidden (fixes #78484)
7399
7400 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7401
7402         * BindingContext.cs : reject null datasource in Contains() and
7403           Item[].
7404         * CurrencyManager.cs : check data_member validity when data_source
7405           is dataset. When it is late binding, the initial position is -1.
7406
7407 2006-05-24  Jackson Harper  <jackson@ximian.com>
7408
7409         * TreeNodeCollection.cs: Dont't recalculate the visible order on
7410         inserted nodes that aren't visible.  This changes the
7411         max_visible_order which confuses scrollbar settings.
7412         - Use the enumerator to get the prev node instead of duplicating
7413         code.
7414         * TreeView.cs: Use new method for setting scrollbar values
7415         - Don't set the bounds every time the scrollbar is updated
7416         - When updating below the root node use an invalidate instead of a
7417         refresh to prevent the child controls (scrollbars) from being
7418         refreshed. (UpdateBelow still needs to be reworked anyways).
7419         - Reenable SetBottom now that visible orders are set correctly,
7420         added some debug code incase we ever get bad values there again.
7421         - Set the scrollbar max to 2 less then the max value, this
7422         compensates for the max value being one above the node count, and
7423         for scrollbars adding one extra "notch".
7424         - When drawing image nodes if there is an imagelist we draw the
7425         first image in the list if the supplied image index is out of the
7426         image list's bounds.
7427         
7428 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7429
7430         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
7431           we receive a size change from the WM (Fixes #78503)
7432
7433 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
7434
7435         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
7436           rectangle (Fixes #78501)
7437
7438 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7439
7440         * ButtonBase.cs: 
7441           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
7442             as a bitfield.
7443           - Fixed MouseMove to no longer switch pressed state unless the left
7444             mouse button is pressed. Atsushi provided the original patch (#78485)
7445           
7446 2006-05-24  Jackson Harper  <jackson@ximian.com>
7447
7448         * ScrollBar.cs: New internal methods that allow us to change a
7449         couple values on the scrollbar (the most common case is maximum
7450         and large change) without getting multiple invalidates.
7451
7452 2006-05-24  Chris Toshok  <toshok@ximian.com>
7453
7454         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
7455         (Edit): save off the original state in oldState, and set
7456         grid.is_editing to true.
7457         (OnKeyDown): abort editing if escape is pressed.  also, call
7458         NextState if space is pressed.
7459         (OnMouseDown): call NextState.
7460         (NextState): factor out shared code from OnKeyDown and OnMouseDown
7461         here.  Also, only invalidate the row header once (on the initial
7462         is_changing switch) to save on redraws.
7463
7464 2006-05-24  Chris Toshok  <toshok@ximian.com>
7465
7466         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
7467         if the value in the cell is different than it was before.  This
7468         keeps us from triggering a layout when we move around a datarid
7469         with a highlighted cell.
7470         (Edit): suspend layout when creating/positining the text box, and
7471         resume passing false so we don't ever actually re-layout.
7472         (ReleaseHostedControl): same.
7473         (EnsureTextBox): reformat slightly, and set WordWrap to false.
7474
7475         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
7476         control-key sequences should go to the datagrid - remove that
7477         lock.  Also, modify the conditions under which we move between
7478         cells when moving the cursor within a cell, and remove the "this"
7479         and "base" from field accesses.  We weren't even consistent, given
7480         they all were in the base class.
7481
7482 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
7483
7484         * Binding.cs : (.ctor)
7485           An obvious NRE fix for BindingTest.CtorNullTest().
7486
7487 2006-05-23  Chris Toshok  <toshok@ximian.com>
7488
7489         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
7490         them between lines.  This fixes some quirks editing cells in the
7491         datagrid.
7492
7493 2006-05-23  Jackson Harper  <jackson@ximian.com>
7494
7495         * TreeView.cs: Use begin/end update when doing expand/collapse all
7496         so that we don't get flicker on the scrollbar.
7497
7498 2006-05-23  Jackson Harper  <jackson@ximian.com>
7499
7500         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
7501         treenode calculations to be independant of the painting code. To
7502         do this nodes track a visible order which is calculated by the
7503         treeview.
7504         - Call new methods for expanding/collapsing nodes.  These methods
7505         use scrollwindow so we don't have to update everything below the
7506         node.
7507         * TreeView.cs: Refactored drawing and scrolling code.  We don't
7508         need to update nodes when drawing anymore or calculate scrollbar
7509         stuff.
7510         - Added new methods for expanding/collapsing nodes. These methods
7511         use ScrollWindow so as to not have to redraw all the nodes below.
7512         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
7513         we add/remove nodes or sort.
7514         - Handle removing the selected and the top node properly.
7515
7516 2006-05-23  Chris Toshok  <toshok@ximian.com>
7517
7518         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
7519         maybe this should actually happen in the datagrid code?
7520         (EndEdit): no need to invalidate anything, given that
7521         ReleaseHostedControl causes the datagrid to relayout, which
7522         invalidates everything anyway.
7523
7524         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
7525         in SetCurrentCell).
7526         (set_SelectionBackColor): call InvalidateSelection instead of
7527         Refresh.
7528         (set_SelectionForeColor): same.
7529         (BeginEdit): Flesh this out a bit.
7530         (CancelEditing): only do any of this if we're editing/adding.
7531         (EndEdit): same.
7532         (OnMouseDown): there's no need to cancel editing here, it's done
7533         in SetCurrentCell.
7534         (SetCurrentCell): only invalidate the current row header if it's a
7535         different row than the new one.
7536         (ShiftSelection): fix this to work like MS does.
7537         (ResetSelection): factor out the invalidation of selected_rows to
7538         InvalidateSelection.
7539         (SetDataSource): cancel any editing that's going on.
7540
7541         * DataGridColumnStyle.cs
7542         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
7543         call the non-interface version.
7544
7545         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
7546         header rectangle with the clip rectangle so we don't redraw the
7547         entire header for just a small area.  Gets rid of the last flicker
7548         when horizontally scrolling.
7549         (DataGridPaintRow): same.
7550
7551 2006-05-23  Mike Kestner  <mkestner@novell.com>
7552
7553         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
7554         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
7555         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
7556         Critical bug report.
7557
7558 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7559
7560         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
7561           and this fixes #78493
7562
7563 2006-05-23  Miguel de Icaza  <miguel@novell.com>
7564
7565         * Theme.cs (GetSizedResourceImage): Scale images if the proper
7566         size is not found.  
7567         
7568         * FileDialog.cs: Do not change the background for the side bar as
7569         it wont work nicely with the theme, and also reduces the artifacts
7570         in rendering the icons (which I want to fix too).
7571
7572         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
7573         resources, not resgen resources. 
7574
7575         (PlatformDefaultHandler): Pull images using the new API.
7576
7577 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7578
7579         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
7580           a reference to the hwnd and will not remove it unless there are
7581           no pending exposures (fixes #78341)
7582         * XplatUI.cs: Improved debug
7583
7584 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
7585
7586         * MenuAPI.cs : don't handle OnClick event when it was not the left
7587           button. Fixed bug #78487.
7588
7589 2006-05-23  Mike Kestner  <mkestner@novell.com>
7590
7591         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
7592         prefer submenus to the top menu for item lookup, to avoid popping down
7593         top-row items.
7594
7595 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
7596
7597         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
7598           Graphics.FillRectangle as the visual results are really bad (even
7599           on win). We now draw perfect arrows (and perfect shadows when the
7600           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
7601           Pen.DashPattern to draw the dots of each line.
7602
7603 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
7604
7605         * FileDialog.cs: Update the filename combobox when navigating through
7606           the ListView with the cursor keys. Fixes part 7 of bug #78446.
7607
7608 2006-05-22  Mike Kestner  <mkestner@novell.com>
7609
7610         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
7611         Fixes #78463.
7612
7613 2006-05-22  Mike Kestner  <mkestner@novell.com>
7614
7615         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
7616         requests. Fix a misspelled parameter and a copy paste exception error
7617         in Select.
7618
7619 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
7620
7621         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
7622           to get the same width/height (5/13) on X11 as the default font has on
7623           win32. This means that our DefaultFont emSize is smaller than the 
7624           the MS SWF equivalent (even thought the width/height stays the same)
7625
7626 2006-05-20  Jackson Harper  <jackson@ximian.com>
7627
7628         * MdiClient.cs:
7629         * MdiWindowManager.cs:
7630         * InternalWindowManager.cs: Make sure to use the border width from
7631         the theme.
7632
7633 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
7634
7635         * PrintDialog.cs: Implements printer details
7636
7637 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
7638
7639         * FileDialog.cs: Added focus handling for PopupButtonPanel.
7640           Fixes part 1 and 2 of bug #78446
7641
7642 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
7643
7644         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
7645           instead of sticking to the first ever calculated value
7646
7647 2006-05-19  Mike Kestner  <mkestner@novell.com>
7648
7649         * ComboBox.cs: fix mouse motion selection to use MousePosition and
7650         PointToClient, since Capture is set. Fixes #78344.
7651
7652 2006-05-19  Mike Kestner  <mkestner@novell.com>
7653
7654         * ListView.cs: match MS behavior in Details view where items are not
7655         drawn if Columns.Count == 0. 
7656         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
7657         Use a separate pen to draw the check, since changing the width affects
7658         the box as well.  Fixes #78454.
7659
7660 2006-05-18  Miguel de Icaza  <miguel@novell.com>
7661
7662         * ListView.cs: ArgumentOutOfRangeException, single versions of the
7663         exception should throw the name of the invalid argument.
7664
7665         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
7666         there are no files listed. 
7667
7668 2006-05-18  Jackson Harper  <jackson@ximian.com>
7669
7670         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
7671         up.
7672
7673 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7674
7675         * Control.cs: Brought back our old UpdateZOrder method as a private
7676           function and switched our calls from UpdateZOrder to the new one.
7677           This fixes the Paint.Net canvas disappearing bug.
7678
7679 2006-05-18  Jackson Harper  <jackson@ximian.com>
7680
7681         * Theme.cs:
7682         * ThemeWin32Classic.cs:
7683         * InternalWindowManager.cs: Move the drawing into the theme,
7684         expose everything the theme should need from the window manager.
7685
7686 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7687
7688         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
7689           from the call to NativeWindow to avoid walking up the parent chain
7690           further than needed (speeds up setting cursors and avoids setting
7691           the wrong cursor if a parent has another cursor defined)
7692         * Cursor.cs: When loading an icon as cursor, MS uses the center of
7693           the icon as hotspot, not what's contained as hotspot in the icon
7694           file. This fixes the perceived drawing offset seen with Paint.Net
7695         
7696 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7697
7698         * XplatUIX11.cs: 
7699           - Store the calculated rectangle in Hwnd object and use it when 
7700             setting the client size
7701           - Force Toolwindows to always be type Dock, to ensure they're on top
7702
7703 2006-05-18  Mike Kestner  <mkestner@novell.com>
7704
7705         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
7706         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
7707         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
7708         Substantial refactoring to remove confusing nested classes. Coding
7709         standard and Get+Set->property refactorings.  Shift to index based
7710         highlighting in ComboListBox instead of constantly using IndexOf and
7711         Items[]. Add invalidations on resize for DropDownList to fix ugliness
7712         in FileDialog growth.  Draw borders manually since Simple mode needs
7713         to look like two independent controls.  Make listbox border
7714         conditional to DropDownStyle.  Improved OwnerDraw support.
7715
7716 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
7717
7718         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
7719         Don't set the disposed graphics to null, so we can throw the "right"
7720         exception if the graphics is reused later (added a flag to avoid 
7721         double disposing). Some behaviours are different under 2.0 and are
7722         filled under bug #78448.
7723
7724 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7725
7726         * Control.cs: When double-buffering is enabled, we need to reset
7727           our graphics context between paint calls. Otherwise, any 
7728           transformations and other alterations on the context will 
7729           become cumulative (#77734)
7730
7731 2006-05-18  Mike Kestner  <mkestner@novell.com>
7732
7733         * ListView.cs: do focused item selection like MS on clicks. 
7734         Rework focus handling for ItemControl so LostFocus invalidates as
7735         well.
7736         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
7737         the ListView ItemControl has focus.
7738
7739 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
7740
7741         * XplatUIX11.cs: If client_window ends up being width or height zero
7742           due to border settings, move it off window inside whole_window (#78433)
7743
7744 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7745
7746         * Mime.cs: Shrink the mime file cache correctly.
7747
7748 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7749
7750         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
7751
7752 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7753
7754         * XplatUIX11.cs (AddExpose): More sanity checks
7755
7756 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7757
7758         * XplatUIX11.cs:
7759           - AddExpose: Don't add expose ranges outside the size of our
7760             window
7761           - Cast opacity values to Int32 to avoid crashes with certain
7762             values
7763           - Added disabled code paths that protect against illegal cross-
7764             thread painting (Developers.exe)
7765
7766 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7767
7768         * ProgressBar.cs: Invalidate the control when it's resized
7769           since block size is based on control size. (#78388)
7770
7771 2006-05-16  Miguel de Icaza  <miguel@novell.com>
7772
7773         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
7774         of setting the incoming argument to the "reset" value, we set the
7775         this.datamember to string.empty (before we were invalidating the
7776         incoming data).   
7777
7778         Fixes 78420
7779
7780 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7781
7782         * Form.cs: Only apply transparency settings after the form
7783           is created. (Fixes #77800)
7784
7785 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7786
7787         * ApplicationContext.cs: Grab the HandleDestroyed event so
7788           we know when to fire OnMainFormClosed 
7789
7790 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7791
7792         * Application.cs: Introduced sub-class to allow tracking of
7793           threads and centralized triggering of the event mess for
7794           ThreadExit, AppExit, etc..  (#76156)
7795
7796 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
7797
7798         * MimeIcon.cs:
7799           - Do not return a null icon index value for a mime subclass.
7800             Instead try the main mime type class too.
7801           - Seems that some newer distributions don't have a link to some
7802             gnome default icons anymore. So check the default gnome dir too.
7803           
7804
7805 2006-05-16  Jackson Harper  <jackson@ximian.com>
7806
7807         * MdiClient.cs: Don't paint the parent background image if we have
7808         our own background image.
7809
7810 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7811
7812         * Control.cs:
7813           - PerformLayout: Do not shrink space filled by DockStyle.Fill
7814             controls, all filled controls are supposed to overlap (#78080)
7815           - UpdateZOrder is supposed to update the control's z-order in the
7816             parent's z-order chain. Fixed to behave like that
7817           - BringToFront: Removed obsolete code
7818           - SendToBack: Simplyfied
7819           - SetChildIndex: Trigger layout calculations when Z-order changes
7820             since layout is done by z-order
7821
7822 2006-05-16  Chris Toshok  <toshok@ximian.com>
7823
7824         [ fixes bug #78410 ]
7825         * DataGrid.cs (set_AlternatingBackColor): use
7826         grid_drawing.InvalidateCells instead of Refresh().
7827         (set_BackColor): call grid_drawing.InvalidateCells.
7828         (set_BackgroundColor): use Invalidate instead of Refresh.
7829
7830         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
7831         invalidate the cell area.
7832
7833 2006-05-15  Chris Toshok  <toshok@ximian.com>
7834
7835         [ fixes bug #78011 ]
7836         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
7837         on to DataGridPaintRow.
7838         (DataGridPaintRow): take a clip argument, and only draw the cells
7839         which intersect it.  same with the not_usedarea.
7840
7841         * Theme.cs (DataGridPaintRow) add @clip parameter.
7842
7843         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
7844         XplatUI.ScrollWindow.
7845         (ScrollToRow): same.
7846
7847         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
7848         with last column which was causing a gray swath to appear with the
7849         XplatUI.ScrollWindow code.
7850
7851 2006-05-15  Chris Toshok  <toshok@ximian.com>
7852
7853         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
7854         use XplatUI.ScrollWindow.
7855         (VerticalScrollEvent): use XplatUI.ScrollWindow.
7856
7857 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
7858
7859         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
7860
7861 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7862
7863         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
7864           file since there are no equivalent X11 cursors
7865
7866 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7867
7868         * MonthCalendar.cs : DateTimePicker should reflect selected date
7869           on mouse*up*, not mouse*down*. Fixed originally reported part of
7870           bug #76474.
7871
7872 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7873
7874         * TabControl.cs : When argument index is equal or more than tab
7875           count, just ignore. Fixed bug #78395.
7876
7877 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7878
7879         * Control.cs: Dispose all child controls when control is diposed (#78394)
7880
7881 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7882
7883         * ColorDialog.cs: Finally it is possible to select the color with
7884           the text boxes
7885
7886 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7887
7888         * PrintDialog.cs: Fix typo
7889
7890 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7891
7892         * PrintDialog.cs: PrintDialog is not resizable
7893         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
7894           color. Made some ToolBar drawing methods protected virtual.
7895
7896 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
7897
7898         * PrintDialog.cs: Implementation of the PrintDialog
7899
7900 2006-05-12  Chris Toshok  <toshok@ximian.com>
7901
7902         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
7903         thumb, instead use MoveThumb.  This has the side effect of making
7904         most of the other thumb moving machinery use MoveThumb as well.
7905         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
7906         need to actually invalidate the rectangle where the new thumb will
7907         go.
7908         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
7909         We force an Update() after, so it's not as fast as it could be,
7910         but at least there's zero flicker and no droppings.
7911         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
7912         (UpdateThumbPos): add another argument (dirty), which says whether
7913         or not to calculate/add dirty regions which we later invalidate.
7914         For cases where we know we're going to use MoveThumb, we pass
7915         false for this.  Otherwise, pass true.
7916
7917 2006-05-12  Jackson Harper  <jackson@ximian.com>
7918
7919         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
7920         the status bar.
7921         
7922 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
7923
7924         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
7925           and GetClipRegion methods and UserClipWontExposeParent property.
7926         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
7927           overriding UserClipWontExposeParent property, setting to false, since
7928           Win32 handles the required expose messages to draw our clipped parent
7929           areas internally
7930         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
7931           PaintEventStart to set the user clip region if set.
7932         * Control.cs: 
7933           - Now internally tracking the Region for the control since we need to
7934             store it if the handle is not yet created and only set it when it
7935             becomes created. Before setting the region forced handle creation
7936           - Added code to draw the parents underneath a user-clipped region
7937         * Hwnd.cs: Added UserClip property
7938
7939 2006-05-12  Chris Toshok  <toshok@ximian.com>
7940
7941         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
7942         (set_Maximum): same.
7943         (set_Minimum): same.
7944         (set_SmallChange): same.
7945         (OnMouseUpSB): remove the call to refresh when releasing the
7946         thumb.  We shouldn't need it.
7947         
7948 2006-05-12  Miguel de Icaza  <miguel@novell.com>
7949
7950         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
7951         AutoSize set to None, we do not need to relayout everything, we
7952         just need to invalidate the current region.
7953
7954         (Draw): Do not draw the entire ClientArea, just redraw the
7955         clip area being passed.
7956
7957         * MdiClient.cs: Make MdiClient constructor with the Form argument
7958         internal. 
7959
7960 2006-05-12  Jackson Harper  <jackson@ximian.com>
7961
7962         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
7963         parents background image,  but strangely not their own.
7964         - (DrawStatusBarPanel): Take into account horizontal alignment
7965         when drawing the strings and icons.
7966
7967 2006-05-12  Mike Kestner  <mkestner@novell.com>
7968
7969         * ListBox.cs: avoid invalidations for focus when the collection is
7970         empty. 
7971
7972 2006-05-12  Chris Toshok  <toshok@ximian.com>
7973
7974         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
7975         invalidate the entire thumb area.  Call InvalidateDirty which
7976         limits the redraw to the thumb itself and surrounding pixels.
7977
7978         * XplatUIX11.cs (ScrollWindow): optimize copying.
7979         
7980 2006-05-12  Chris Toshok  <toshok@ximian.com>
7981
7982         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
7983         Figure out the positioning/layout in a single pass instead of
7984         multiple recursive invocations.  Speeds up the initial display of
7985         the data grid.  Also, make many things private that were
7986         originally public but unused outside this class.
7987
7988 2006-05-11  Jackson Harper  <jackson@ximian.com>
7989
7990         * MdiClient.cs: Improved layout code.
7991
7992 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
7993
7994         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
7995           not SelectedObject.
7996
7997 2006-05-11  Chris Toshok  <toshok@ximian.com>
7998
7999         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
8000         union of that will always be {0,0,width,height}.
8001
8002 2006-05-11  Jackson Harper  <jackson@ximian.com>
8003
8004         * Form.cs: Match MS's DefaultSize for forms (they must have
8005         changed the size in sp2).
8006
8007 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8008
8009         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
8010
8011 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8012
8013         * TextControl.cs : Fixed bug #78109. This incorrect position
8014           comparison caused crash on automatic line split.
8015         * TextBoxBase.cs : reduce duplicate code.
8016
8017 2006-05-10  Jackson Harper  <jackson@ximian.com>
8018
8019         * MdiClient.cs: Active form is only sent to the back when using
8020         the Next form functionality, when a form is clicked the current
8021         active shouldn't be sent to the back.
8022         - Layout the mdi windows when the container is first made visible.
8023         * Form.cs: Give the MdiClient a ref to the containing form when we
8024         create it.
8025         
8026 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8027
8028         * LinkLabel.cs : link_font could be uninitialized, so populate one
8029           before actual use. Fixed bug #78340.
8030
8031 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8032
8033         * XplatUIX11.cs : clipboard format native value is IntPtr.
8034           Fixed bug #78283.
8035
8036 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8037
8038         * Control.cs: 
8039           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
8040             which is passed up the parent chain by DefWndProc
8041           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
8042             to DefWndProc (#77956)
8043         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
8044
8045 2006-05-10  Jackson Harper  <jackson@ximian.com>
8046
8047         * MdiClient.cs: We need to remove the controls from the mdi
8048         collection, when we close the window.
8049         * MdiWindowManager.cs: Special handling of closing mdi windows.
8050         * InternalWindowManager.cs: Make the close method virtual so the
8051         mdi window manager can handle it specially.
8052
8053 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
8054
8055         * DataGrid.cs:
8056           - Recalculate grid when the data source has changed
8057           - Matches styles provided by user from all data sources types
8058         * DataGridTableStyle.cs: For columns that provided by the user set the
8059         with the preferred value is there was unassigned.
8060         * CurrencyManager.cs: throw OnItemChanged event
8061
8062 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
8063
8064         * PictureBox.cs: Don't animate until handle is created. Start animation
8065           when handle is created.
8066
8067 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8068
8069         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
8070           current codebase.
8071         * XEventQueue.cs: We don't need to provide the extra info
8072
8073 2006-05-10  Jackson Harper  <jackson@ximian.com>
8074
8075         * MdiClient.cs: If the mdi clients parent form has a background
8076         image set, we draw that background image for the mdi area's
8077         background.
8078
8079 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8080
8081         * TextBoxBase.cs: Set IBeam cursor (#78347)
8082
8083 2006-05-10  Mike Kestner  <mkestner@novell.com>
8084
8085         * ToolBar.cs: fix some text padding issues with ButtonSize
8086         calculation. Update the default size to match MS documentation.
8087         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
8088         button size. Fixes #78296.
8089
8090 2006-05-10  Mike Kestner  <mkestner@novell.com>
8091
8092         * ListBox.cs: use is_visible for scrollbar positioning in case the
8093         control isn't on screen yet.  Fix off by one with Right vs Width
8094         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
8095         
8096 2006-05-10  Jackson Harper  <jackson@ximian.com>
8097
8098         * X11Dnd.cs: Drop to a control with another control on top of it.
8099         * ToolBar.cs: Work on a copy of the buttons list, so that it can
8100         be modified in click handlers. TODO: Look for similar problems in
8101         other controls.
8102
8103 2006-05-09  Jackson Harper  <jackson@ximian.com>
8104
8105         * Form.cs: Window managers need the old window state when setting
8106         window state now.
8107         * InternalWindowManager.cs: Allow the base mdi window manager to
8108         handle more of the MDI only stuff (like maximize buttons).
8109         * MdiWindowManager.cs: Fix some snafus in changing the window
8110         state.  Add all the menu functionality, for both popup and
8111         maximized menus.
8112         * MdiClient.cs: When a new form is selected the currently
8113         activated form is sent to the back, this matches MS.
8114         - Implement a new method to activate the next mdi child window.
8115
8116 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
8117
8118         * Control.cs: 
8119           - Added new InternalCapture method to allow controls to prevent
8120             the capture behaviour on the click handlers
8121           - Switched to use InternalCapture
8122         * ComboBox.cs:
8123           - Using InternalCapture to prevent mouse captures from being released
8124             on mouse button release (Fixes #78100)
8125         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
8126           returns Form borders if a caption is present. (Fixes #78310)
8127
8128 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
8129
8130         * TreeNode.cs: Changed serialization .ctor to not require every field
8131           to be present. (#78265)
8132         * OwnerDrawPropertyBag.cs: Added serialization .ctor
8133
8134 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
8135
8136         * MimeIcon.cs: for is faster than foreach for strings.
8137
8138 2006-05-05  Mike Kestner  <mkestner@novell.com>
8139
8140         * CheckedListBox.cs: update check handling code to not use selected.
8141         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
8142         behavior for visual feedback, motion response, shift/ctrl handling,
8143         and properly deal with all 4 selection modes. Updates to bounds
8144         handling logic.  Add scroll wheel support. [Fixes #77842]
8145
8146 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8147
8148         * ListView.cs:
8149           - Moved adding of Implicit controls into .ctor. That way, subsequent
8150             creation of the controls will not cause them to think they are 
8151             toplevel windows (fixes #78200 header problem)
8152           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
8153           - Switched visibility setting of header control to use internal field
8154             to avoid triggering handle creation
8155           - Now checking if handle is created before causing a refresh when items
8156             are added (This makes us now match handle creation time with MS)
8157         * Splitter.cs: Removed loading of private splitter cursor, switched to
8158           Cursors version now that that is loading the right ones
8159         * Cursors.cs: Load proper splitter cursors from resources
8160         * Cursor.cs: Added second method of loading resource cursors for the 
8161           VS.Net users amongst us
8162
8163 2006-05-05  Mike Kestner  <mkestner@novell.com>
8164
8165         * ListView.cs: give header_control a minimum size based on the
8166         ListView size.
8167
8168 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8169
8170         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
8171           window seems to do that with metacity, so set that type. (#78120)
8172
8173 2006-05-05  Mike Kestner  <mkestner@novell.com>
8174
8175         * ListViewItem.cs: fix Details mode checkbox layout bug.
8176         * ThemeWin32Classic.cs: draw a ListView column header for unused space
8177         at the end of the header, if it exists. [Fixes for #78200]
8178
8179 2006-05-04  Jackson Harper  <jackson@ximian.com>
8180
8181         * MdiClient.cs: Add a helper property to get the container form.
8182         * MdiWindowManager.cs: We have to make sure to use the menu origin
8183         when drawing the icons and buttons, this fixes maximized window
8184         icons/buttons on win32.
8185         * InternalWindowManager.cs: Reset the restore captions when a
8186         window goes from Maximized to Minimized and vice versa. Move the
8187         DrawMaximizedButtons into the MdiWindowManager source, tool
8188         windows can't be maximized. NOTE: This could use a little
8189         refactoring if time ever permits.
8190         
8191 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8192
8193         * TextBox.cs: Add MWFCategoryAttributes
8194         * TextBoxBase.cs: Add MWFCategoryAttributes
8195         * Form.cs: Add MWFCategoryAttributes
8196
8197 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8198
8199         * Control.cs: Add MWFCategoryAttributes
8200         * ScrollableControl.cs: Add MWFCategoryAttributes
8201
8202 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
8203
8204         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
8205           Divider is true. Fix a little glitch in PropertyToolBar
8206           drawing code
8207
8208 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
8209
8210         * Control.cs:
8211           - Dispose: Call base.Dispose, this causes the disposed event
8212             to be fired (and probably other, more important stuff)
8213           - SetVisibleCore: Set is_visible to true after creating the
8214             window so that the window still gets created invisible (if
8215             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
8216             to generate a WM_ACTIVE message
8217         * Form.cs: Call Dispose when we want to destroy the window, instead of
8218           just destroying the handle (Dispose will do that for us)
8219         * XplatUIX11.cs:
8220           - RootWindow also needs a queue, so we can properly process the
8221             property change events from RootWindow (like Activate)
8222           - Generatic synthetic WM_ACTIVE message when the active window is
8223             being destroyed
8224
8225 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8226
8227         * LinkLabel.cs: Trigger a recalc of our label dimensions when
8228           bounds are changed
8229
8230 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
8231
8232         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
8233           for determining width and height (image might not be assigned if
8234           we're drawing an imagelist)
8235
8236 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8237
8238         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
8239         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
8240           height from system
8241         * Theme.cs: No longer returns hardcoded menu height, instead calls
8242           new driver method
8243         * Form.cs (OnLoad): Scaling happens before triggering Load events 
8244           on MS (# 78257)
8245
8246 2006-05-01  Mike Kestner  <mkestner@novell.com>
8247
8248         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
8249
8250 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
8251
8252         * TextBoxBase.cs: Removed Fixme
8253         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
8254
8255 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
8256
8257         * XplatUIX11.cs:
8258           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
8259             the rectangle relative to the parent, considering borders. We
8260             don't really want that.
8261           - ScrollWindow: Fixed warning to be more understandable
8262         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
8263           scrollbars and scroll only the visible area
8264         * RichTextBox.cs: Removed debug output
8265
8266 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8267
8268         * NumericUpDown.cs (Text): Just use base
8269         * UpDownBase.cs: Ensure txtView is created before using it
8270
8271 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8272
8273         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
8274           casting to IntPtr to avoid 64bit overflow errors
8275
8276 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8277
8278         * Control.cs:
8279           - AllowDrop: Don't force handle creation.
8280           - CreateHandle: Added call to tell driver if we're allowed to drop
8281
8282 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8283
8284         * FileDialog.cs: Remember the last directory not only for the
8285           current instance but also for new FileDialog instances.
8286
8287 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8288         
8289         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
8290           broke sending async messages
8291
8292 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8293
8294         * XplatUIX11.cs:
8295           - ScrollWindow: Fixed method. We finally generate expose events again
8296             for scrolled areas. This was causing 'garbage' when scrolling
8297             textbox and other controls that used ScrollWindow
8298           - Switched from using the regular queue for paint events to the MS 
8299             model of 'generating' paint events when the queue is empty.
8300             We use the new XQueueEvent.Paint subclass to store which windows
8301             need painting.
8302           - AddExpose now takes the x/y/width/height of the exposed area
8303             and inserts the window into the paint queue if not already there
8304           - InvalidateWholeWindow: Switched to use new AddExpose method
8305           - UpdateMessageQueue: Added which queue to monitor for paint events
8306           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
8307             the unlikely case nothing above handles it. We reset the expose
8308             pending states to get them off the queue.
8309           - GetMessage: Now pulls a paint event if no other events are in the
8310             queue
8311           - Invalidate: Switched to new AddExpose method
8312           - PeekMessage: Updated to understand pending paint events
8313           - UpdateWindow: Fixed logic bug. We were only updating if the window
8314             didn't need updating. Also switched to sending WM_PAINT directly,
8315             like MS does.
8316         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
8317           and random access Remove(). The random access is needed to handle
8318           UpdateWindow() where a WM_PAINT is sent directly without accessing
8319           the queue.
8320         * ScrollBar.cs: Added Update() calls to cause immediate updates to
8321           allow for better feedback when scrolling. Scrollbars are small and
8322           the immediate update should make it 'feel' more responsive without
8323           slowing things down. ScrollBar still needs it's invaliate logic
8324           updated to not always invalidate the whole bar on certain changes.
8325
8326 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8327
8328         * Control.cs:
8329         (BackColor): if the control does not support a transparent background,
8330         return the default backcolor when the parent backcolor is transparent.
8331
8332 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
8333
8334         * Application.cs: Updated to new StartLoop/GetMessage API
8335         * RichTextBox.cs: Provide some output on RTF parsing errors
8336         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
8337           new queue_id argument to GetMessage and PeekMessage to allow faster
8338           handling of per-thread queues in drivers.
8339         * Hwnd.cs: Added Queue tracking and property
8340         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
8341         * XEventQueue.cs: Added thread trackingA
8342         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
8343         * XplatUIX11.cs:
8344           - Implemented new per-thread queue
8345           - GetMessage: Fixed return/break behaviour on several cases. We were
8346             returning stale messages in some cases, instead of just processing
8347             the next message
8348
8349 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8350
8351         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
8352
8353 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
8354
8355         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
8356           fixed off-by-one comparisons between Width/Height and Right/Bottom.
8357
8358 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8359
8360         * PropertyGridView.cs: Fix drop down width.
8361
8362 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8363
8364         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
8365           a mess in DrawToolBar, so I removed one of them.
8366
8367 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8368
8369         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
8370           needed (clip). Otherwise we get artifacts.
8371
8372 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8373
8374         * FixedSizeTextBox.cs: Added constructor to allow specifying which
8375           dimension is fixed
8376         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
8377           and switched FixedSizeTextBox to only be fixed vertical (#78116)
8378         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
8379           if it matches the scale base font (avoids unneeded scaling)
8380
8381 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8382
8383         * X11DesktopColors.cs: One gtk_init_check should be enough
8384
8385 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
8386
8387         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
8388           match MS behaviour
8389
8390 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8391
8392         * TextBoxBase.cs: 
8393           - Generate OnTextChanged for Backspace even if we're only deleting
8394             the current selection
8395           - When setting the Text property, only select all text if the
8396             control does not have focus when it is being set. Otherwise
8397             just place the cursor at the beginning of the control
8398
8399 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8400
8401         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
8402           Added a little helper to draw PropertyGrid ToolBar with a different
8403           border and a different BackColor.
8404         * PropertyGrid.cs: Some background parts didn't get painted with the
8405           correct background color. Added a class that helps us to draw the
8406           correct border for PropertyGridView and a class that helps us to
8407           draw ToolBars with a different backcolor
8408         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
8409
8410 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
8411
8412         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
8413         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
8414
8415 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8416
8417         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
8418           into the palette entries. Also, since we're working on a copy
8419           we needed to copy the palette back onto the bitmap.
8420         * Cursor.cs: Same fix as XplatUIWin32.cs.
8421
8422 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
8423
8424         * ImageListStreamer.cs: Need to read the var (or we're off)
8425
8426 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8427
8428         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
8429           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
8430           TextBoxBase.cs: Unused var fixes
8431         * AxHost.cs: Small 2.0 fix
8432         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
8433           as it seems that is what at least Metacity expects. This will make
8434           icons show up on 64bit platforms. We still have some 64bit size
8435           issues, though, since the startup app window size still won't match.
8436
8437 2006-04-25  Mike Kestner  <mkestner@novell.com>
8438
8439         * *.cs: cleanup newly reported exception var unused warnings.
8440
8441 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8442
8443         * ThemeWin32Classic.cs: Button image alignment now matches exactly
8444           ms
8445
8446 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8447
8448         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
8449           image. The image position is always the same, no matter if the
8450           button is pressed or not.
8451
8452 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8453
8454         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
8455           selection and set the correct filename for SaveFileDialog.
8456           Patch by Emery Conrad.
8457
8458 2006-04-24  Mike Kestner  <mkestner@novell.com>
8459
8460         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
8461         check for item.X outside the ClientRect instead of item.Y. Fixes
8462         #78151.
8463
8464 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8465
8466         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
8467         trust that value blindly and do some sanity check. Fixes bug #77814.
8468
8469 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8470
8471         * ImageListStreamer.cs: save the mask as a 1bpp image.
8472
8473 2006-04-21  Mike Kestner  <mkestner@novell.com>
8474
8475         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
8476         pass Checked and Indeterminate to the Theme Engine. Improve
8477         encapsulation with ListBox.
8478         * ListBox.cs: Keep a StringFormat instead of calculating it every item
8479         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
8480         nested types.  Move all CheckState functionality to CheckedListBox.
8481         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
8482         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
8483         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
8484         single base list. Fix scrollbar sizing and placement to mirror MS.
8485         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
8486         used.
8487         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
8488         for CheckedListBox by using new DrawItemState info.  Center the
8489         checkboxes on the items. Use new StringFormat property.
8490
8491 2006-04-18  Jackson Harper  <jackson@ximian.com>
8492
8493         * Form.cs: MdiChildren don't do default locations the same way as
8494         regular forms.  This prevents a crash when trying to position the
8495         mdi windows.
8496
8497 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
8498
8499         * PropertyGridTextBox.cs: Formatting, copyright
8500         * PropertiesTab.cs: Formatting
8501         * PropertyGrid.cs: Formatting
8502         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
8503           click toggling of values
8504           
8505 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
8506
8507         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
8508         * Control.cs (.ctor): verify_thread_handle is static, don't reset
8509           every time a control is created
8510         * Application.cs: Removed obsolete EnableRTLMirroring method
8511
8512 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
8513
8514         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
8515         SelectedIndex to -1. Fixes bug #78121.
8516
8517 2006-04-17  Jackson Harper  <jackson@ximian.com>
8518
8519         * Binding.cs: Handle null values for Current and BindingContext.
8520         This occurs when binding is a little delayed.
8521         * CurrencyManager.cs: return null for Current when there are no
8522         items in the list.
8523         - Hookup to the listchanged event on the DataView and update
8524         bindings when the list is changed.  This fixes late binding of
8525         controls.
8526
8527 2006-04-17  Jackson Harper  <jackson@ximian.com>
8528
8529         * X11Dnd.cs:
8530         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
8531         Ringenbach.
8532
8533 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
8534
8535         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
8536           place
8537         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
8538           with the correct ButtonState
8539
8540 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
8541
8542         * XplatUIX11.cs: Improved distinguishing between window types to
8543           tell the WM a type closer to what the app wants (Fixes #78107)
8544
8545 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8546
8547         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
8548           GrabHandle
8549
8550 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8551
8552         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
8553           drawing code to reflect the size grip changes
8554
8555 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8556
8557         * ImageListStreamer.cs: fix handling of the mask that follows the main
8558         bitmap when deserializing and serialize it properly. The generated mask
8559         should better be a 1bpp image, but I'll do that later.
8560
8561 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8562
8563         * FileDialog.cs: Show something in the DirComboBox on *nix if the
8564           path doesn't fit into some of our Current.Places
8565
8566 2006-04-13  Jackson Harper  <jackson@ximian.com>
8567
8568         * ComboBox.cs: Use borders instead of drawing our own decorations,
8569         try to obey correct rules for heights.
8570         * Theme.cs:
8571         * ThemeNice.cs:
8572         * ThemeClearLooks.cs:
8573         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
8574         this is now handled by borders.
8575         - Remove unused DrawListBoxDecorationSize method.
8576         
8577 2006-04-13  Mike Kestner  <mkestner@novell.com>
8578
8579         * MenuAPI.cs: null guarding for the disbled click check fixes crash
8580         reported by Alex.
8581
8582 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8583
8584         * ThemeWin32Classic.cs: 
8585           - Fixed CPDrawStringDisabled
8586           - Corrected drawing of disabled menu items
8587           - Fixed drawing of disabled radio buttons (bug #78095)
8588           - Draw check in a disabled CheckBox with color ControlDark 
8589
8590 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8591
8592         * Form.cs: Use the provided width when calculating the menu size;
8593           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
8594           and ClientSize.Width won't be updated yet
8595         * Application.cs: Use Visible instead of Show() to make form visible,
8596           this way we create the handle later and menusize is considered
8597
8598 2006-04-12  Mike Kestner  <mkestner@novell.com>
8599
8600         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
8601         reporting.
8602
8603 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8604
8605         * TextBox.cs: Implemented context menu
8606
8607 2006-04-12  Mike Kestner  <mkestner@novell.com>
8608
8609         * ListView.cs: implement box selection. fixes #77838.
8610         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
8611
8612 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8613
8614         * XplatUIX11.cs: Added setting of window type when transient window
8615           is created (metacity would move it otherwise)
8616         * X11Structs.cs: Added WINDOW_TYPE atoms
8617         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
8618           background (the control is Opaque but still wants transparent
8619           backgrounds)
8620
8621 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8622
8623         * Control.cs: Added OnPaintBackgroundInternal to allow controls
8624           that set Opaque but don't mean it (like all ButtonBase-derived
8625           controls) to still draw their background
8626         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
8627           the background
8628
8629 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8630
8631         * Control.cs (PaintControlBackground): Set the graphics object
8632           on our PaintEvent to null to prevent it from being disposed
8633           when the PaintEvent gets disposed
8634
8635 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
8636
8637         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
8638         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
8639
8640 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8641
8642         * Control.cs: 
8643           - Added transparency check to BackColor property. Transparent
8644             backgrounds are only allowed if the control styles permit it
8645           - Added recursive painting of parent control background and
8646             foreground if a control with a transparent backcolor is drawn
8647             (Thanks to Tim Ringenback for providing his 'hack' as a base
8648              for this patch) Fixes #77985 and #78026.
8649           - Added Opaque style check before calling OnPaintBackground, no
8650             need to draw the background if the control is opaque
8651           - Removed ControlAccessibleObject owner variable (inherited from
8652             base, no need to define again)
8653           - Added some documentation links explaining the drawing events
8654             and styles
8655
8656 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8657
8658         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
8659           that the affected control is the located at the left border of our
8660           parent (Fixes #77936)
8661
8662 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8663
8664         * TextBoxBase.cs: When rendering disabled or readonly controls,
8665           draw the background with 'Control' instead of 'Window' color as
8666           long as the user hasn't specifically set a color
8667
8668 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8669
8670         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
8671           since that won't be updated if the user types text (only if it's
8672           programatically set)
8673
8674 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8675
8676         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
8677           layout changes do to app-triggered resizes will have the proper
8678           display rectangle for layout
8679
8680 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
8681
8682         * ThemeWin32Classic.cs:
8683           - Make use of the SystemBrushes and SystemPens wherever possible
8684           - Corrected some highlight colors
8685           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
8686             drawing
8687         * Theme.cs: Added Empty field to CPColor struct
8688
8689 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8690
8691         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
8692           is displayed when calculating the display rectangle. Thanks to Mike
8693           for teaching me the err of my ways.
8694
8695 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
8696
8697         * ScrollableControl.cs:
8698           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
8699             (instead of 0,0) and we now return the real width/height instead of
8700             just the clientrectangle, adjusted for padding. The rectangle is
8701             now cached and created by the new CalculateDisplayRectangle method.
8702           - Created new CalculateDisplayRectange method, which basically does
8703             what get_DisplayRectangle() did originally, but now using the 
8704             right edge instead of DisplayRectangle to determine the size of
8705             our scrollbars
8706           - get_Canvas(): Fixed it to properly calculate canvas for 
8707             right/bottom controls which seem to be placed to the right/bottom
8708             of any controls that have a fixed location
8709           - Removed TODO that's taken care of
8710           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
8711             and SetDisplayRectLocation according to new MSDN2 docs
8712           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
8713             event when that is called, this is added for compatibility
8714           - ScrollControlIntoView(): Implemented.
8715           - Switched scrollbars to be implicit, they shouldn't be selectable
8716         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
8717           call it when the active control is set/changed
8718         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
8719         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
8720           implicit_control variable (used for native Win32 message generation)
8721         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
8722           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
8723         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
8724         * XplatUIStructs.cs: Added ScrollBarCommands enum
8725
8726 2006-04-10  Jackson Harper  <jackson@ximian.com>
8727
8728         * ButtonBase.cs:
8729         * CheckedListBox.cs:
8730         * ComboBox.cs:
8731         * DataGrid.cs:
8732         * DataGridView.cs:
8733         * Form.cs:
8734         * GroupBox.cs:
8735         * ListBox.cs:
8736         * PrintPreviewControl.cs:
8737         * ProgressBar.cs:
8738         * PropertyGrid.cs:
8739         * Splitter.cs:
8740         * StatusBar.cs:
8741         * TrackBar.cs:
8742         * UpDownBase.cs: Fixup base event overrides.
8743         
8744 2006-04-06  Mike Kestner  <mkestner@novell.com>
8745
8746         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
8747         all user-initiated value changes to min <= value <= max-thumbsz+1.
8748         (set_Value): check for vert/horiz when calculating new thumb position.
8749         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
8750         like MS does.
8751         (OnMouseMoveSB): refactor the thumb dragging code and refine
8752         invalidation logic to reduce flicker.
8753         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
8754         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
8755         (UpdateThumbPosition): small code readability cleanup
8756
8757 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
8758
8759         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
8760           different
8761
8762 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8763
8764         * ThemeNice.cs: Use a better graphics effect when a button is pressed
8765
8766 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8767
8768         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
8769         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
8770           This dramatically reduces the number of Pen.Dispose calls. 
8771           Where possible call ResPool methods only once instead of calling it
8772           over and over again (for example for the same color).
8773
8774 2006-04-06  Mike Kestner  <mkestner@novell.com>
8775
8776         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
8777         Also remove an unused private field on the collection. Fixes #77972.
8778
8779 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8780
8781         * ThemeNice.cs: Added ToolBar drawing code
8782
8783 2006-04-06  Mike Kestner  <mkestner@novell.com>
8784
8785         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
8786         I'm assuming that means we need to look up the toplevel for the
8787         provided control. Fixes the crash trace in #77911 but exposes another
8788         crash in some strange reflection usage in NDocGui.
8789
8790 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8791
8792         * ThemeNice.cs: Gave it a little silver touch and added Images
8793           method
8794         * FontDialog.cs: FontDialog is not resizable
8795         * FileDialg.cs: Added SizeGripStyle.Show
8796
8797 2006-04-05  Jackson Harper  <jackson@ximian.com>
8798
8799         * KeyboardLayouts.cs: Remove warning.
8800
8801 2006-04-05  Jackson Harper  <jackson@ximian.com>
8802
8803         * Control.cs: Enable OnPaintInternal so we can use it for drawing
8804         all of our controls instead of Paint +=.
8805         * ListBox.cs:
8806         * ListView.cs:
8807         * MenuAPI.cs:
8808         * MessageBox.cs:
8809         * NotifyIcon.cs:
8810         * ProgressBar.cs:
8811         * ScrollBar.cs:
8812         * Splitter.cs:
8813         * StatusBar.cs:
8814         * TabControl.cs:
8815         * TextBoxBase.cs:
8816         * ToolBar.cs:
8817         * TrackBar.cs:
8818         * UpDownBase.cs:
8819         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
8820         use OnPaintInternal. Remove Width/Height and Visible checks in
8821         paint handler, this is done at a higher level now.
8822         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
8823         * PaintEventArgs.cs: Add a handled flag so controls that don't
8824         want anymore painting after OnPaintInternal can make sure OnPaint
8825         isn't called.
8826
8827 2006-04-05  Mike Kestner  <mkestner@novell.com>
8828
8829         * Form.cs: fix the menu WndProc hacks to respect the native enabled
8830         state of the form, so that we don't process events when Modal dialogs
8831         are up. Fixes #77922.
8832
8833 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
8834
8835         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
8836           checking is done.
8837
8838 2006-04-05  Mike Kestner  <mkestner@novell.com>
8839
8840         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
8841
8842 2006-04-05  Mike Kestner  <mkestner@novell.com>
8843
8844         * ListView.cs (HeaderMouseMove): null guarding for the over column
8845         when setting up the drag_to_index.  Fixes #78015.
8846
8847 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
8848
8849         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
8850           in the taskbar. Transient windows seem to accomplish that.
8851
8852 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
8853
8854         * Form.cs:
8855           - Re-enabled CreateParams.X/Y code for FormStartPosition
8856           - Added code for manual placement when creating the Control
8857           - Incomplete patch to treat MDI forms differently when
8858             setting the ClientSizeCore. (Still need to figure out handling
8859             x/y coords there)
8860         * XplatUIX11.cs:
8861           - When we're explicitly setting the X/Y position of a non-Child
8862             window, let the WM know. Metacity really wants this.
8863
8864 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8865
8866         * ThemeNice.cs: Added CPDrawButton
8867
8868 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8869
8870         * ThemeNice.cs: Changed the color for focused buttons and activated
8871           the arrows for small scroll buttons.
8872
8873 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8874
8875         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
8876           anymore. Changed some method modifiers to protected (virtual)
8877         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
8878           changes
8879         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
8880           Updated drawing of menus, buttons and progressbars; added
8881           CPDrawBorder3D 
8882
8883 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8884
8885         * ImageListStreamer.cs: implemented serialization/deserialization
8886         of the images.
8887
8888 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
8889
8890         * ThemeWin32Classic.cs:
8891           - Removed all the DrawFrameControl stuff; CPDrawButton,
8892             CPDrawCheckBox and CPDrawRadioButton are now handled directly
8893             inside the methods
8894           - Updated and corrected the drawing code of CPDrawButton,
8895             CPDrawCheckBox and CPDrawRadioButton to better match ms
8896           - Updated theme checkbox and radiobutton code to use the CP*
8897             methods
8898
8899 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8900
8901         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
8902           bug is fixed
8903
8904 2006-03-31  Jackson Harper  <jackson@ximian.com>
8905
8906         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
8907         sometimes.
8908         * UpDownBase.cs: Don't CreateGraphics manually, use a
8909         Refresh. Ideally we would invalidate the correct areas here.
8910
8911 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8912
8913         * XplatUIX11.cs: 
8914           - We now track the mapping state of windows. If a window (or 
8915             one of it's parents) is not mapped we no longer permit
8916             WM_PAINT messages to be generated since we'd otherwise get 
8917             lots of BadMatch X errors. Jackson did all the work figuring
8918             out the problem.
8919           - Destroying the caret if the window it's contained in is 
8920             destroyed. Can't use regular DestroyCaret method since it
8921             might fall into a drawing function (trying to remove the
8922             caret) and with that generate new BadMatch errors. Again,
8923             Jackson tracked this down.
8924           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
8925             make sure we send the messages to all windows. (The old code
8926             would send the WM_DESTROY to the window, and then all child
8927             windows would be 'gone' because the WM_DESTROY handle lookup
8928             would no longer find the destroyed window)
8929         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
8930         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
8931
8932 2006-03-31  Jackson Harper  <jackson@ximian.com>
8933
8934         * ScrollableControl.cs: Dont recalc if we are not visible.
8935
8936 2006-03-31  Mike Kestner  <mkestner@novell.com>
8937
8938         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
8939         the visibility branch.
8940
8941 2006-03-31  Jackson Harper  <jackson@ximian.com>
8942
8943         * ScrollBar.cs: Cap values when incrementing/decrementing.
8944
8945 2006-03-31  Mike Kestner  <mkestner@novell.com>
8946
8947         * MenuAPI.cs: setup menu.tracker for popup/context menus.
8948         * ToolTip.cs: guard against timer expirations with no active control.
8949         Not sure why it happened.
8950
8951 2006-03-31  Mike Kestner  <mkestner@novell.com>
8952
8953         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
8954         text.
8955         * ToolTip.cs: Position the tooltip based on where the cursor is at
8956         popup time, not at MouseEnter time.  Add a Down state so that we don't
8957         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
8958         positioning offset. Lookup DisplaySize at positioning time, since it
8959         can theoretically change during invocation.
8960         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
8961         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
8962
8963 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8964
8965         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
8966           Fixes behaviour when the Text property of the box is String.Empty
8967
8968 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
8969
8970         * XplatUIX11.cs: Only send mouseleave for our client windows, not
8971           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
8972           a window)
8973
8974 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8975
8976         * FileDialog.cs: Visual enhancement for the popup buttons in 
8977           PopupButtonPanel
8978
8979 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8980
8981         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
8982           code
8983
8984 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
8985
8986         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
8987           highlighted menu items to match ms
8988
8989 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
8990
8991         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
8992
8993 2006-03-30  Mike Kestner  <mkestner@novell.com>
8994
8995         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
8996         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
8997         go active to account for HotLight to Selected transition.
8998         * MenuItem.cs: add internal Selected prop. Fill out the Status
8999         property by calculating it from item info. Add HotLight,
9000         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
9001
9002 2006-03-30  Mike Kestner  <mkestner@novell.com>
9003
9004         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
9005
9006 2006-03-29  Jackson Harper  <jackson@ximian.com>
9007
9008         * Form.cs: Implement TODO.
9009
9010 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
9011
9012         * PrintPreviewDialog.cs: Implemented missing methods and events; still
9013           missing proper dialog setup in the constructor
9014
9015 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
9016
9017         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
9018         * Control.cs:
9019           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
9020           - Fixed ResetBindings and removed TODO
9021           - Added check for cross-thread calls to get_Handle()
9022           - Added Marshaller attribute for set_Font to satisfy class status
9023         * FontDialog.cs: Removed TODOs that seemed implemented
9024         * UpDownBase.cs: Removed unneeded TODO and Fixme
9025         * MessageBox.cs: Implemented support for Default button and removed TODO
9026         * FileDialog.cs: Removed obsolete TODO
9027         * DomainUpDown.cs: Removed obsolete TODO
9028         * ButtonBase.cs: Removed obsolete TODO
9029         * XplatUIWin32.cs: Removed obsolete TODO
9030         * Form.cs:
9031           - Removed obsolete TODO
9032           - Calling CheckAcceptButton when the acceptbutton is changed to allow
9033             internal status updates
9034           - Making sure the active control is selected when the control is created
9035         * CurrencyManager.cs: Removed obsolete TODO
9036
9037 2006-03-29  Mike Kestner  <mkestner@novell.com>
9038
9039         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
9040         of PrintPreviewDialog and RichTextBox.
9041
9042 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9043
9044         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
9045           DarkDark, Light and LightLight colors for a specific color
9046         * ThemeWin32Classic.cs:
9047           - Use Button drawing code to draw RadioButtons and CheckBoxes with
9048             Appearance = Button 
9049           - Make use of the new ResPool helper CPColor
9050           - Draw ProgressBar and StatusBar with correct 3D borders
9051
9052 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9053
9054         * ColorDialog.cs: Return selected color. Fixes bug #77940.
9055
9056 2006-03-28  Mike Kestner  <mkestner@novell.com>
9057
9058         * ListView.cs: fix Icon layout to plan for scrollbar widths when
9059         calculating col/row counts.
9060
9061 2006-03-28  Mike Kestner  <mkestner@novell.com>
9062
9063         * ColumnHeader.cs:
9064         * ListView.cs:
9065         * ListViewItem.cs:
9066         * Menu.cs: 
9067         switch to explicit interface method implementation for some methods
9068         corcompare identifies as inconsistent with MS.
9069
9070 2006-03-28  Mike Kestner  <mkestner@novell.com>
9071
9072         * MainMenu.cs: 
9073         * Menu.cs:
9074         add a few missing methods from the class status output.
9075
9076 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
9077
9078         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
9079           correct.
9080
9081 2006-03-28  Mike Kestner  <mkestner@novell.com>
9082
9083         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
9084
9085 2006-03-27  Mike Kestner  <mkestner@novell.com>
9086
9087         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
9088         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
9089
9090 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
9091
9092         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
9093
9094 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9095
9096         * ThemeWin32Classic.cs:
9097           - GroupBox: Inserted a little gap between the text and the lines
9098             on the right side
9099           - Made the code in CPDrawBorder3D more readable
9100           - Corrected the drawing location of the up and down arrows in 
9101             CPDrawScrollButton
9102
9103 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9104
9105         * ControlPaint.cs: Corrected line widths in DrawBorder for
9106           ButtonBorderStyle Inset and Outset
9107
9108 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9109
9110         * ThemeWin32Classic.cs:
9111           - Rewrote the totally broken CPDrawBorder3D method. That was
9112             one of the main problems for the terrific ThemeWin32Classic
9113             look
9114           - Updated and corrected Button drawing
9115           - Correct the dimensions of the SizeGrip to match ms ones
9116           - Removed a small drawing glitch in DrawComboBoxEditDecorations
9117         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
9118           Border3DStyle.Sunken to match ms.
9119
9120 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9121
9122         * ThemeWin32Classic.cs: First small part of the "de-uglify
9123           ThemeWin32Classic" effort, SizeGrip
9124
9125 2006-03-24  Jackson Harper  <jackson@ximian.com>
9126
9127         * XplatUIX11.cs: Give a max idle time of one second, this matches
9128         MS and forces an Idle event every second when there are no other
9129         events in the queue.
9130
9131 2006-03-24  Mike Kestner  <mkestner@novell.com>
9132
9133         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
9134         * ListView.Item.cs: fix layout issues with null image lists and images
9135         smaller than checkbox size.
9136         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
9137         mode like MS does.  It's weird, but consistent.  ;-)
9138         Fixes #77890.
9139
9140 2006-03-24  Mike Kestner  <mkestner@novell.com>
9141
9142         * ListView.cs: Scroll wheel support for the item control.  Fixes
9143         #77839.
9144
9145 2006-03-23  Jackson Harper  <jackson@ximian.com>
9146
9147         * ScrollableControl.cs: Special case negative sized areas, not
9148         zero.
9149         * MonthCalendar.cs: Save the rect of the clicked date so we can
9150         use it for invalidation.
9151         - Try to cut down on the number of invalidates
9152         - Invalidate the rect the mouse is over and was over when moving
9153         the mouse, so we get the focus box following the cursor.
9154
9155 2006-03-23  Mike Kestner  <mkestner@novell.com>
9156
9157         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
9158         focus rectangle drawing. Fixes #77835.
9159
9160 2006-03-23  Mike Kestner  <mkestner@novell.com>
9161
9162         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
9163         the if and else if and reverting back to the original == check on the
9164         None conditional.
9165
9166 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9167
9168         * FontDialog.cs: Update the example panel if the selected index of
9169           the fontListBox changes.
9170
9171 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9172
9173         * FileDialog.cs: Make FileDialog remember which directory it was in
9174           last in the same execution.
9175
9176 2006-03-22  Mike Kestner  <mkestner@novell.com>
9177
9178         * FileDialog.cs: make the DropDownMenu on the toolbar display
9179         RadioChecks since they are mutually exclusive and that's what MS does.
9180
9181 2006-03-22  Mike Kestner  <mkestner@novell.com>
9182
9183         * Theme.cs: add Color param to CPDrawMenuGlyph.
9184         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
9185         checks and radio marks and arrows are visible on highlighted items.
9186         * ControlPaint.cs: update to use new Theme signature.
9187
9188 2006-03-22  Mike Kestner  <mkestner@novell.com>
9189
9190         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
9191         is active. Fixes #77870.
9192
9193 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9194
9195         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
9196           to be focused/selected after startup
9197
9198 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9199
9200         * ColorDialog.cs: 
9201           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
9202             CustomColors and ShowHelp properties
9203           - Some internal rewrites to get better results when using the
9204             ColorMatrix
9205
9206 2006-03-22  Mike Kestner  <mkestner@novell.com>
9207
9208         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
9209         HoverSelection.  Fixes #77836.
9210
9211 2006-03-22  Mike Kestner  <mkestner@novell.com>
9212
9213         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
9214         ToggleButtons.  (De)Sensitize the Back button around a stack count of
9215         1, not 0.  Update ButtonSize based on a pixel count of the win32
9216         control.  Adjust the toolbar size/location for new button size.
9217
9218 2006-03-22  Jackson Harper  <jackson@ximian.com>
9219
9220         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
9221         true.
9222         * ScrollBar.cs: When doing increments and decrements we need to
9223         set the Value property so that ValueChanged gets raised. A
9224         possible optimization here would be to make an internal SetValue
9225         that doesn't invalidate immediately.
9226         * ToolTip.cs: Tooltips get added to their container (when
9227         supplied) so they get disposed when the container is disposed.
9228         - Don't create tooltips for String.Empty. This prevents all these
9229         little 2-3 pixel windows from showing up when running nunit-gui
9230         and driving me mad.
9231         * Form.cs: Don't set topmost when setting the owner if the handles
9232         haven't been created yet.  The topmost set will happen when the
9233         handles are created.
9234
9235 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
9236
9237         * XplatUIX11.cs:
9238           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
9239           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
9240             visible (to allow them to recalculate their sizes)
9241
9242 2006-03-21  Mike Kestner  <mkestner@novell.com>
9243
9244         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
9245         methods. Removed a ton of redundant code.  Still not really happy with
9246         the border rendering, but I think that's mainly because of the
9247         ControlDarkDark being black instead of a dark grey. Depending on how 
9248         close we want to be, we might want to revisit those color choices.
9249         Among the new features added during the refactor were DropDownArrow
9250         pressed rendering, Disabled image rendering.  Proper flat appearance
9251         boundary rendering.  Removed the Divider and Wrapping dividers since I
9252         can't figure out any combination of themes and conditions to make the
9253         MS control draw a horizontal line on a toolbar despite what the
9254         Divider property docs indicate.
9255         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
9256         conditions and incorrect layout.  Updated to coding standard.
9257         * ToolBarButton.cs: refactored layout and positioning code from
9258         ToolBar to here.  Invalidate wherever possible instead of forcing
9259         redraws of the whole toolbar. 
9260         (Known remaining issues: explicit ButtonSize smaller than provided
9261         images.)
9262
9263 2006-03-21  Mike Kestner  <mkestner@novell.com>
9264
9265         * ContextMenu.cs (Show): use the position parameter instead of just
9266         showing at the MousePosition.
9267
9268 2006-03-21  Jackson Harper  <jackson@ximian.com>
9269
9270         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
9271         control handle this.
9272         * TreeNodeCollection.cs: If we are clearing the root node we need
9273         to reset top_node so calcs can still happen.
9274         * ThemeWin32Classic.cs: This is a Flags so we need to check
9275         properly.
9276         
9277 2006-03-21  Jackson Harper  <jackson@ximian.com>
9278
9279         * DataGrid.cs: Create columns when the binding context has been
9280         changed.
9281         * X11Structs.cs: Keysyms are uints.
9282         - Add size to fix build.
9283
9284 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
9285
9286         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9287           XplatUIOSX.cs: 
9288           - Added ResetMouseHover method to allow controls to retrigger
9289             hovering if they need it more than once
9290           - Implemented MouseHoverTime and MouseHoverSize properties
9291         * Timer.cs: Start() must reset the interval
9292         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
9293           properties
9294
9295 2006-03-21  Jackson Harper  <jackson@ximian.com>
9296
9297         * X11Keyboard.cs: improved layout detection. Move the nonchar
9298         tables into this file.
9299         * KeyboardLayouts.cs: Move the tables into resource files.
9300
9301 2006-03-21  Mike Kestner  <mkestner@novell.com>
9302
9303         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
9304
9305 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
9306
9307         * Mime.cs: Various speed optimizations. Looking up mime types
9308           is now 2 times faster than before
9309
9310 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
9311
9312         * CreateParams.cs: Added internal menu field
9313         * Control.cs: 
9314           - Switched call order for UpdateBounds; now we always call
9315             the one that also takes ClientSize, and we're calculating the 
9316             client size via driver method in the others. The previous
9317             method of tracking client size by difference wasn't working
9318             for forms where even the starting client size wouldn't match
9319             the overall form size (due to borders) (Part of fix for #77729)
9320           - CreateParams(): Do not use parent.Handle unless the handle is
9321             already created. Causes havoc with Nexxia and throws off our
9322             creation of controls
9323         * XplatUIX11.cs:
9324           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
9325           - Switched handling of ConfigureNotify over to new PerformNCCalc 
9326             method (consolidates code)
9327           - Changed RequestNCRecalc to use new PerformNCCalc method
9328           - Added calls to RequestNCRecalc when menus and borders are changed
9329             to allow app to set NC size. (Part of fix for #77729) This matches
9330             when MS send a WM_NCRECALC on Win32 windows.
9331           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
9332             (Part of fix for #77729). This matches what MS does, they also
9333             send that message when the form is made visible.
9334           - XException.GetMessage: Improved usability of X errors by including
9335             a translation of the window into Hwnd and Control class
9336           - Improved debug info for window creation, reparenting and destruction
9337           - Created helper method WindowIsMapped() [Currently not used]
9338         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
9339         * Form.cs:
9340           - CreateParams: Now setting our menu on the new internal menu field
9341           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
9342             avoid calculating the same property twice
9343         * Hwnd.cs:
9344           - Improved usability of ToString() for debugging purposes
9345           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
9346             determine the height of the menu, instead of just the font. This
9347             required to also create a graphics context and to keep a bmp 
9348             around (for performance reasons)
9349
9350 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
9351
9352         * MenuAPI.cs: Added OnMouseUp method
9353         * Form.cs:
9354           - Now remembering the requested client size, avoids size errors
9355           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
9356             instead of base if the menu is active. This is required due to
9357             control now capturing and releasing on down/up and it would
9358             prematurely release our menu capture
9359
9360 2006-03-17  Jackson Harper  <jackson@ximian.com>
9361
9362         * KeyboardLayouts.cs: Add the czech layouts.
9363
9364 2006-03-16  Jackson Harper  <jackson@ximian.com>
9365
9366         * Control.cs: Use the viewport space when sizing not the controls
9367         client size, so things like ScrollableControl that effect the
9368         viewport size (when scrollbars are added) are computed correctly.
9369         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
9370         of ManagerEntrys.
9371         - Handle creating BindingManagers for null data sources.
9372         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
9373         source, otherwise when rows are added they are added to the 'fake'
9374         datasource and we will crash when trying to set the position in
9375         those rows.
9376         - Use Implicit scrollbars on the datagrid so they arent
9377         selectable.
9378         
9379 2006-03-16  Jackson Harper  <jackson@ximian.com>
9380
9381         * Binding.cs:
9382         * InternalWindowManager.cs:
9383         * MdiWindowManager.cs:
9384         * X11Keyboard.cs: I really want Mike to love me again (fix
9385         compiler warnings).
9386
9387 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
9388
9389         * DataGrid.cs:
9390           - OnMouseDown: Switch to editing mode when clicking on the cell
9391                          even if we're clicking on the cell that's currently 
9392                          selected
9393           - ProcessGridKey: Left/Right now wrap like MS.Net does
9394           - ProcessGridKey: Tab now knows to add a new row when tab is
9395                             pressed in the cell of the last column of the 
9396                             last row
9397           - ProcessGridKey: Enter now adds another row  if pressed in the last
9398                             row and selectes the new row, same column cell
9399           - ProcessGridKey: Home/End navigate columns, not rows, like 
9400                             originally implemented
9401           - Broke ProcessKeyPreview code out into an extra Internal method
9402             so it can be called from the edit code
9403         * DataGridTextBox.cs (ProcessKeyMessage):
9404           - Switched to accept Tab keypresses
9405           - Added F2 handling to allow jumping to the end of the edited cell
9406           - Added logic to allow moving caret left/right inside edited cell
9407             and making the edited cell jump when the caret hits cell borders
9408           - Tab and Enter are now passed to the datagrid after being handled
9409         * TextBoxBase.cs:
9410           - Removed capture code now that Control handles it
9411           - set_SelectionStart now ensures caret is visible
9412
9413 2006-03-16  Jackson Harper  <jackson@ximian.com>
9414
9415         * TrackBar.cs: Debackwards the increment/decrement for handling
9416         mouse clicks on the bar with vertical trackbars.
9417         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
9418         bottom to match MS.
9419
9420 2006-03-16  Mike Kestner  <mkestner@novell.com>
9421
9422         * ListView.cs: make shift/ctrl keyboard and mouse selection 
9423         consistent with the MS control. Fix a bug in
9424         SelectedListViewItemCollection.Clear that was pissing me off for the
9425         better part of a day because the collection was being altered
9426         underneath us as we walked the list.
9427
9428 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
9429
9430         * Control.cs: Not sure how we could miss this so long, but it seems
9431           that MS.Net has Capture set all the way from before calling 
9432           OnMouseDown through sending the mouse events until after
9433           OnMouseUp. This will fix DataGrid's selection being set to end
9434           at the location of the MouseUp.
9435
9436 2006-03-15  Jackson Harper  <jackson@ximian.com>
9437
9438         * BindingContext.cs: Check the binding after its added so that it
9439           can initialize the binding managers and hookup to events.
9440         * Binding.cs: Data members seem to sometimes include rows/cols in
9441           the format Row.Column we now take this into account.
9442           - Hookup to the position changed event so we can update the
9443           control when the position has changed in the data set.
9444         * CurrencyManager.cs: Take into account the row/col naming
9445           convention when creating dataset tables.
9446         * BindingContext.cs: Using a newer better way of storing
9447           datasource/datamember pairs.  Hopefully this better matches MS for
9448           looking up binding managers.
9449
9450
9451 2006-03-15  Jackson Harper  <jackson@ximian.com>
9452
9453         * BindingContext.cs: The currency manager needs the data member
9454         name, if the member is a data set we use the name to find the
9455         correct table.
9456         * CurrencyManager.cs: When creating the list prefer an IList over
9457         an IListSource.
9458         - Attempt to create a DataTable from a DataSet (TODO: might need
9459         some better error checking here, although MS doesn't seem to have much)
9460         - If we have a DataTable create a view and use it as our list.
9461
9462 2006-03-15  Mike Kestner  <mkestner@novell.com>
9463
9464         * ListView.cs: keep a matrix of the icon mode layout to facilitate
9465         keyboard navigation. Support Up/Down/Left/Right selection correctly
9466         for all 4 View modes.
9467         * ListViewItem.cs: add internal row/col fields for icon layouts.
9468
9469 2006-03-15  Jackson Harper  <jackson@ximian.com>
9470
9471         * TabControl.cs: Redraw the tabs when we resize so their newly
9472         calculated sizes are drawn on screen.
9473         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
9474         composite characters.
9475         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
9476         - filter events so that composite characters can be created
9477         patches by peter
9478         * X11Structs.cs: Add XIMProperties enum.
9479
9480 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9481
9482         * Control.cs (BringToFront, SendToBack): Don't use window or handle
9483           unless it's created
9484
9485 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9486
9487         * Control.cs (PerformLayout): We don't need to consider visiblity
9488           for anchoring, only for docking. This fixes 'whacky' alignment
9489           in listbox and other controls that use implicit scrollbars after
9490           the previous PerformLayout patch
9491         * ListBox.cs: Switched to use implicit scrollbars
9492           
9493 2006-03-14  Mike Kestner  <mkestner@novell.com>
9494
9495         * ToolBar.cs: 
9496         * VScrollBar.cs:
9497         - chain up the "new event" overrides to base and use
9498         OnEvent to raise them.  Part of fix for bug #76509.
9499
9500 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
9501
9502         * FileDialog.cs: Do not select an item in the parent directory
9503           on backspace
9504
9505 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9506
9507         * Control.cs (PerformLayout): It would seem that we considered
9508           invisible windows for our layout. Not quite the right thing
9509           to do. Now we don't any longer, thereby fixing bug #76889.
9510
9511 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9512
9513         * Control.cs (CanFocus): I goofed. A control can have focus 
9514           even though it's not selectable. Made it match MS docs.
9515
9516 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9517
9518         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
9519           center by default (fixes #76895)
9520         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
9521           all uses of Border3DSides.All with the explicit ORd together
9522           Left|Right|Top|Bottom because I assume that nobody was aware 
9523           that All also implies a center fill. Most places I checked had
9524           a fill right above.
9525         * ProgressBarStyle.cs: Added
9526
9527 2006-03-13  Mike Kestner  <mkestner@novell.com>
9528
9529         * ListView.cs: fix breakage in drag shadow header positioning 
9530         from Peter's csc compilation fix.
9531
9532 2006-03-13  Mike Kestner  <mkestner@novell.com>
9533
9534         * ListView.cs: fix NRE produced by backspacing twice in a focused
9535         FileDialog.
9536
9537 2006-03-13  Mike Kestner  <mkestner@novell.com>
9538
9539         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
9540
9541 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9542
9543         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
9544           be changed
9545         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
9546           the allowed size before making programmatic size changes
9547
9548 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
9549
9550         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
9551           set, metacity is broken and will still use the emty sizes in 
9552           the struct. (Fix for #77089)
9553
9554 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9555
9556         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
9557           WindowExStyles and marked both enums as Flags
9558         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
9559           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
9560           to match WindowStyles split
9561         * XplatUIX11.cs:
9562           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
9563           - Updated to match WindowStyles split
9564         * XplatUIWin32.cs:
9565           - Fixed FosterParent creation, was using ExStyle on the Style field
9566             (This should help with Popup focus issues)
9567           - Updated to match WindowStyles split
9568
9569 2006-03-13  Jackson Harper  <jackson@ximian.com>
9570
9571         * MdiWindowManager.cs: Use the system menu height. Fixes some
9572         strange sizing issues.
9573
9574 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9575
9576         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
9577         * TextBoxBase.cs:
9578           - Scroll to caret after inserting text (#77672)
9579           - Make scroll range one pixel higher, fixes off-by-one error (and
9580             makes underlines visible on the last line)
9581
9582 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
9583
9584         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
9585           the keyboard state from being stuck with keys in 'pressed' state when
9586           focus is switched away via keyboard
9587         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
9588           reset the keyboard if no X11 KeyUp events are expected to come
9589         * X11Structs.cs: Switched type of Visible to bool to match driver
9590
9591 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9592
9593         * TextControl.cs:
9594           - Switched caret to be just 1 pixel wide, matches MS and looks less
9595             clunky
9596           - Moved caret display 1 pixel down from the top of the control
9597             to improve view
9598           - InsertCharAtCharet: Update the selection start if moving the caret
9599             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
9600           - No longer always creating the caret when the caret methods are
9601             called. Only the actual ShowCaret/HideCaret will do that now
9602           - Only setting caret visible if the owner control has focus
9603           - UpdateView: Added invalidation-shortcut logic for center and right 
9604             aligned text. Previously we'd update all according to the left
9605             logic which caused drawing errors. Also fixed height of invalidated
9606             areas, now properly invalidating the whole area (was off-by-one)
9607           - owner_HandleCreated: Always generate the document when the
9608             handle is created; this ensures that 
9609         * TextBoxBase.cs:
9610           - Fixed situation where caret would disappear under the right
9611             window border, also improved scrolling behaviour on left-
9612             aligned textboxes
9613           - Fixed right-aligned textboxes to have a border to the
9614             right instead of the caret being under the right border
9615         * XplatUIX11.cs:
9616           - Switched from 'nested' to simple visible/not visible tracking 
9617             for caret (part of fix for #77671)
9618           - No longer passing through translated FocusIn/FocusOut messages
9619             since we were notifying too often and the wrong windows. Instead
9620             we just notify our focussed window of receiving or loosing focus
9621         * XplatUIWin32.cs: Switched from 'nested' show/hide 
9622           counting for caret to simple visible yes/no behaviour (part of 
9623           fix for #77671)
9624
9625 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9626
9627         * Mime.cs: Remove debug code...
9628
9629 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9630
9631         * MimeGenerated.cs: Removed
9632         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
9633           and subclasses) from /usr/(local/)share/mime and
9634           $HOME/.local/share/mime.
9635
9636 2006-03-10  Jackson Harper  <jackson@ximian.com>
9637
9638         * MdiWindowManager.cs: Recalc the NC area when a window is
9639         maximized/restored so that the menu area is drawn on forms that
9640         don't have a menu.
9641
9642 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9643
9644         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9645           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
9646           us to force a WM_NCCALCRESIZE message being sent. This is needed
9647           for MDI maximizing.
9648
9649 2006-03-10  Jackson Harper  <jackson@ximian.com>
9650
9651         * Form.cs: We need to use the ActiveMenu when calculating menu
9652         height.
9653         - Fix nullref when the window manager hasn't been created yet.
9654         * Control.cs: Fix nullref when we try to bring a control to the
9655         front that has no parent.
9656         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
9657         height.
9658         - Add a dummy item to the maximized menu so it always has the
9659         correct height. Otherwise when there are no menus we don't get our
9660         icon and buttons.
9661         
9662
9663 2006-03-10  Jackson Harper  <jackson@ximian.com>
9664
9665         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
9666         stuff.
9667         * Form.cs: Make the window_state internal so the window managers
9668         can track it.
9669         - When an MDI child is maximized let its window manager create the
9670         main menu (so it can add its icon).
9671         - Notify the window managers of state changes
9672         - Let the window manager paint its buttons and handle button
9673         clicks on the menu when it is maximized.
9674         * InternalWindowManager.cs: Move the prev_bounds into the mdi
9675         window manager, since tool windows don't use it, only mdi windows.
9676         - Tell the main form that we don't want it to handle NCPAINT
9677         itself to avoid extra painting.
9678         - Handle clicks on a maximized windows menu.
9679         - Handle window state changes
9680         - Handle minimize/maximize clicks correctly by setting the window state.
9681         * MdiWindowManager.cs: Add an icon menu that (the menu you get
9682         when clicking on the forms icon).
9683         - New method to create a forms maximized menu. This is its normal
9684         menu + an icon.
9685         - Handle window state changes.
9686         - Handle sizing of maximized windows.  Maximized windows are just
9687         drawn bigger then the parent visible area. All controls are still
9688         there, they are just outside the visible area (this matches windows).
9689         * MdiClient.cs: No scrollbars when a child window is maximized.
9690         - Let the children windows figure out how big they should be when
9691         sizing maximized windows.
9692         - Implement a version of ArrangeIconicWindows somewhat similar to
9693         Windows version.  There are some little differences, but I don't
9694         think any app will rely on the layout of minimized mdi windows.
9695
9696 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9697
9698         * Padding.cs: Several fixes to allow compiling with csc 2.0
9699
9700 2006-03-09  Jackson Harper  <jackson@ximian.com>
9701
9702         * Menu.cs:
9703         * MenuItem.cs: Cheap hack so we can add items to the list without
9704         the events being raised.  This allows adding mdi items during
9705         drawing. TODO: Should probably find a better time to add the items.
9706
9707 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9708
9709         * ThemeWin32Classic.cs:
9710           - CheckBox_DrawText: Added logic to not wrap if not enough space
9711             is available (Fix for bug #77727)
9712           - RadioButton_DrawText: Added logic not to wrap if not enough
9713             space is available (Fix for bug #77727). Also removed some
9714             duplicate code, DrawString always drawing the regular text
9715             before hitting the if statement.
9716
9717 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
9718
9719         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
9720
9721 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9722
9723         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
9724         * ContainerControl.cs: Partial implementation of some 2.0 scaling
9725           methods. Moved the new 2.0 properties into alphabetical order with
9726           other properties and added MonoTODO tags
9727
9728 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9729
9730         * AutoScaleMode.cs: Added. Fix build.
9731
9732 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9733
9734         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9735           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
9736           and was requiring premature handle creation for calls from above
9737         * Form.cs, Control.cs: Removed handle arguments from calls to
9738           CalculateClientRect()
9739
9740 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9741
9742         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
9743           drag_column.column_rect is MarshalByRef and can't be used that way
9744
9745 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9746
9747         * AxHost.cs: Added deserialization constructor for 
9748           AxHost+State (fixes 77743)
9749
9750 2006-03-09  Mike Kestner  <mkestner@novell.com>
9751
9752         * ListView.cs: 
9753         - Added column drag reordering for details view.
9754         - fixed behavior when mouse is dragged off column and
9755         AllowColumnReorder is false.
9756         * ColumnHeader.cs: clone the format too in Clone.
9757         * Theme.cs: add DrawListViewHeaderDragDetails method.
9758         * ThemeWin32Classic.cs:
9759         - impl new method for drawing drag column shadows and targets.
9760         - support column offset for details mode in DrawListViewItem.
9761
9762 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9763
9764         * TextControl.cs: Reset the char_count when the document is cleared
9765           (Fixes bug reported on mono-winforms mailing list)
9766
9767 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9768
9769         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
9770           of calling base we simply process the key ourselves, since both
9771           DefWindowProc and the handled method would set m.Result. 
9772           (Fixes #77732)
9773
9774 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9775
9776         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
9777           method also moves the window; instead implemented a copy of
9778           Control.ScaleCore (Part of fix for #77456)
9779         * TextBoxBase.cs: 
9780           - Created new CreateGraphicsInternal method to allow providing
9781             a graphics context when no handle is created without triggering
9782             handle creation. (Part of fix for #77456)
9783           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9784         * TextControl.cs: 
9785           - Switched Constructor to require TextBoxBase instead of Control (to
9786             allow uncast access to CreateGraphicsInternal)
9787           - Safeguarded use of owner.Handle property. No longer accessing it
9788             unless the handle is already created.
9789           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9790           - Now triggering a recalc when owning control becomes visible
9791         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
9792           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
9793           premature handle creation (Part of fix for #77456)
9794         * Control.cs:
9795           - We now only destroy our double-buffering buffers when the
9796             control is resized or disposed, but not when visibility
9797             changes. (The code even re-created them twice every time)
9798           - Now requiring a redraw of the buffer on visibility changes
9799             (fixes bug 77654 part 2)
9800           - Not passing OnParentVisibleChanged up unless the control
9801             is visible
9802           - CanFocus: Fixed to match MS documentation
9803           - Focus: Fixed to return actual focus state and to check if
9804             setting focus is legal before setting it
9805
9806 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
9807
9808         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
9809           when to draw focus rectangle by looking at parent focus and
9810           selected state instead. This fixes TabPages on Linux sometimes
9811           having none or multiple focus rectangles.
9812         * XplatUIX11.cs (SetFocus): 
9813           - Don't set the focus if the same window already has focus
9814           - Use SendMessage instead of PostMessage (like it's Win32
9815             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
9816             to match MS behaviour
9817         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
9818           are not selectable.
9819
9820 2006-03-07  Jackson Harper  <jackson@ximian.com>
9821
9822         * PictureBox.cs: Revert line I accidently committed last week.
9823
9824 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9825
9826         * Control.cs: 
9827           - Added new IsRecreating and ParentIsRecreating properties to
9828             allow testing if RecreateHandle has been called on ourselves
9829             or one of our parents
9830           - WndProc(WM_DESTROY): If our control handle is being recreated
9831             we immediately need to create the handle when receiving the
9832             destroy, that way our child windows find a valid parent handle
9833             when they themselves are being recreated upon WM_DESTROY receipt
9834             (fix for bug #77654 part 1)
9835         * XplatUIX11.cs:
9836           - DestroyWindow: WM_DESTROY must be sent to our own window before
9837             notifying any child windows. MS documents that child windows
9838             are still valid when WM_DESTROY is received. (Control now relies on
9839             this behaviour)
9840           - Added some fine-grain debug options
9841
9842 2006-03-06  Jackson Harper  <jackson@ximian.com>
9843
9844         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
9845         box and base calculations off this.
9846         * MdiChildContext.cs:
9847         * MdiWindowManager.cs: Don't need to ensure scrollbars here
9848         anymore.
9849         
9850 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
9851
9852         * Splitter.cs: In situations where the affected control is added
9853           to the parent's control list after the splitter, we would not
9854           populate affected. Now we try populating it on mousedown, if
9855           it's not already set, and force it to be re-set whenever our
9856           parent changes.
9857
9858 2006-03-03  Matt Hargett  <matt@use.net>
9859
9860         * Control.cs: implement Control.Padding
9861         * Padding.cs: -Padding.All returns -1 when constructing with the
9862         implicit default ctor
9863         -Padding.ToString() matches MS.NET
9864         * ContainerControl.cs: implement
9865         ContainerControl.AutoScaleDimensions
9866         * ListControl.cs: implement ListControl.FormattingEnabled
9867         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
9868         * ButtonBase.cs:
9869         * TabPage.cs: Implement UseVisualStyleBackColor.
9870         * PictureBox.cs: Implement PictureBox.InitialImage.
9871
9872 2006-03-03  Mike Kestner  <mkestner@novell.com>
9873
9874         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
9875         event declarations to proxy to base event.
9876         * ListViewItem.cs: update to use ItemControl.
9877         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
9878         * ThemeWin32Classic.cs: update to new ListView theme API and fix
9879         column header label rendering for 0 width columns.
9880
9881 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
9882
9883         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
9884           that causes the control to be created. Fixes #77476.
9885
9886 2006-03-02  Jackson Harper  <jackson@ximian.com>
9887
9888         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
9889         expose_pending.
9890
9891 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
9892
9893         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
9894           passed in for the EventArgs (fixes #77690)
9895
9896 2006-03-01  Jackson Harper  <jackson@ximian.com>
9897
9898         * ScrollBar.cs: Refresh afterbeing resized.
9899
9900 2006-02-28  Mike Kestner  <mkestner@novell.com>
9901
9902         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
9903         Clean up a tracker compile warning.
9904         * MenuItem.cs: add internal PerformPopup method.
9905         [Fixes #77457]
9906
9907 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9908
9909         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
9910           implicit expose) when the text is set to null
9911
9912 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
9913
9914         * RichTextBox.cs (FlushText): When newline is true, we always
9915           need to split the line, even if no text is on it and we may
9916           never eat newlines. (Fixes #77669)
9917
9918 2006-02-28  Mike Kestner  <mkestner@novell.com>
9919
9920         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
9921         and set Selected instead.
9922         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
9923         collections.
9924
9925 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9926
9927         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
9928
9929 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
9930
9931         * FontDialog.cs:
9932           - Got rid of the panel. All controls are now directly added to
9933             the dialog form
9934           - It is now possible to set a font with the Font property
9935           - MinSize and MaxSize property do now what they should
9936           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
9937           - Searching and selecting a font with the font textbox works now,
9938             the same applies to the style and size textbox
9939           - Draw the correct 3D border in the example panel
9940           - Fixed a little mem leak (unused fonts didn't get disposed)
9941           - Many other internal updates/rewrites...
9942           - Fix typo
9943
9944 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9945
9946         * TextControl.cs: 
9947           - InsertRTFFromStream: Added 'number of characters inserted' argument
9948           - set_SelectedRTF: Now using the number of characters to calculate
9949             the new location for the selection and cursor (x/y cannot be used
9950             due to potentially already wrapped text)
9951
9952 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
9953
9954         * TextControl.cs: Added property and implemented means to allow 
9955           disabling recalculation of a document (can be used to speed up
9956           multiple inserts and is needed to make RTF inserts predictable, see
9957           bug #77659)
9958         * RichTextBox.cs: Using the new NoRecalc property of Document to
9959           keep x/y insert locations predictable. Also makes it faster inserting
9960           large chunks of RTF
9961
9962 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9963
9964         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
9965           it's easier for a child control to handle the other messages without
9966           having to duplicate the special functionality
9967         * TextBoxBase.cs
9968           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
9969             code to handle processing the key ourselves, in order to get 
9970             access to the result of KeyEventArgs.Handled. We now only call 
9971             ProcessKey if they key hasn't been handled already. Fixes #77526.
9972           - set_Text: If null or empty string is given, just clear the 
9973             document. Fixes part of #77526
9974
9975 2006-02-27  Jackson Harper  <jackson@ximian.com>
9976
9977         * SizeGrip.cs: Paint the background color before painting the grip
9978         so things look right.
9979         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
9980
9981 2006-02-27  Mike Kestner  <mkestner@novell.com>
9982
9983         * ListView.cs:
9984           - Restructure layout and invalidation model to remove a ton of
9985           flicker from the control and speed up performance in general.
9986           - Add manual column resize, flickers like crazy, but I already have
9987           some ideas on how I'll fix that. (#76822)
9988           - Merge the three Icon-based views into a single layout method.
9989           - Move item selection interaction logic from the item since 
9990           interaction with the collections is more appropriate to the view.
9991           - Deselection on non-item clicks.
9992         * ListViewItem.cs:
9993           - Encapsulate most of the layout. Add some internal props to trigger
9994           layout.  Move to a model where Items invalidate themselves instead
9995           of just invalidating the whole control every time something changes.
9996           - Invalidate on Text/Caption changes.
9997           - switch to an offset based layout model to avoid having to absolute
9998           position every element on item moves.
9999           - correct checkbox layout to conform to MS layout.
10000         * ThemeWin32Classic.cs:
10001           - refactor some column header drawing code.
10002           - fix string justification for column headers (#76821)
10003           - make SmallIcon labels top justified for compat with MS impl.
10004         * ThemeClearlooks.cs:
10005           - adjust to new ListViewItem internal checkbox bounds api.
10006
10007 2006-02-27  Jackson Harper  <jackson@ximian.com>
10008
10009         * Control.cs:  Change where implicit controls fall in the zorder.
10010         They are now on top of all children.
10011         - Synced AddImplicit code with Add
10012         - Removed unused enumerator.
10013         * SizeGrip.cs: Remove the TODO as its been TODONE.
10014
10015 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
10016
10017         * TextControl.cs(Insert): Combine the last lines unless the insertion
10018           string ends with \n\n, otherwise we leave one line too many (Fixes
10019           something I noticed with the testapp for #77526; the bug itself was
10020           already fixed in the previous checkin)
10021
10022 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
10023
10024         * RichTextBox.cs:
10025           - SelectionColor and SelectionFont methods no longer set absolute
10026             styles. Instead, the keep font or color respectively (This 
10027             resolves a long-standing FIXME in the code)
10028           - When flushing RTF text, the insert code now considers text trailing
10029             behind the insertion point (Fixes the bug where when replacing
10030             the selected text via SelectedRTF the remainder of the line behind 
10031             the selection would stay on the first insertion line)
10032         * TextBoxBase.cs:
10033           - AppendText now updates the selection points after inserting text
10034           - AppendText now ensures that the last tag (sometimes 0-length) of
10035             the document is used for the style information (Fixes part of 
10036             bug #77220)
10037         * TextControl.cs:
10038           - Created new FontDefiniton class to allow describing partial style
10039             changes
10040           - StreamLine() now takes a lines argument, to allow it to decide
10041             whether an encountered zero-length tag is the last in the document
10042             (which must be kept to not loose the font/color contained in it,
10043             for later appends)
10044           - Created Combine() and Split() methods for Marker structs, to 
10045             support marker updates due to reformatted documents (soft line
10046             wraps)
10047           - Implemented Document.CaretTag setter
10048           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
10049             of the last line (Not the cause, but also exposed by bug #77220)
10050           - Added LineTag argument to InsertString method, to allow callers
10051             to force a certain tag to be used (required to force use of the
10052             trailing zero-length tag of a document)
10053           - Now updating markers in Combine(), to avoid stale tag markers
10054           - Added some method descriptions to aid maintenance
10055           - Implemented new FormatText concept, allowing additive/subtractive
10056             formatting by only specifying the components that are to be 
10057             changed. This was needed for resolving the RTB.SelectedColor/
10058             RTB.SelectedFont fixmes
10059           - Added Break() support method to allow breaking up linetags (used
10060             for partial formatting)
10061           - Added GenerateTextFormat() method. It is used for partial 
10062             formatting and allows to generate a full font/color from given
10063             attributes and an existing tag.
10064
10065 2006-02-26  Jackson Harper  <jackson@ximian.com>
10066
10067         * XplatUIX11.cs:  Use the correct caption height.
10068         - Translate hittest coordinates to screen coords to match MS.
10069         * XplatUIWin32.cs: When we create MDI windows we need to reset
10070         some of the style flags, so we get a nice blank window, and can
10071         draw all the decorations ourselves.
10072         - Set a clipping rectangle on the non client paint event, the
10073         window manager drawing code needs one.
10074         * Form.cs: The window manager needs to know when the window state
10075         has been updated.
10076         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
10077         don't need to factor in border and title sizes in these
10078         methods. TODO: Remove the args and fix the call points.
10079         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
10080         properly.
10081         - Let the driver set the cursors.
10082         - Improve active window handling
10083         - Correct sizes for title bars and buttons.
10084         - Match MS drawing better
10085         * MdiWindowManager.cs: We don't need to handle border style
10086         updates specially anymore.
10087         - Check for scrollbars when windows are done moving
10088         - Handle Active properly.
10089         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
10090         correctly. I am spewing the exception though, so we don't hide the
10091         bugs.
10092         
10093 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
10094
10095         * DataGridViewRowPostPaintEventArgs.cs,
10096           DataGridViewCellPaintingEventArgs.cs,
10097           DataGridViewRowCollection.cs,
10098           DataGridViewRowPrePaintEventArgs.cs,
10099           DataGridViewCell.cs: Clear a few warnings and implement a few
10100           exceptions that should be thrown.
10101
10102 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10103
10104         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
10105           'inheriting' our parent's (non-default) cursor. (Part of
10106            the fix for #77479)
10107
10108 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
10109
10110         * XplatUIX11.cs: Fixed cast to make csc happy
10111
10112 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10113
10114         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
10115           it's for the client area (part of fix for #77479 and needed
10116           for MDI window cursor handling)
10117         * XplatUIX11.cs
10118           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
10119             the appropriate default cursors and also passing the message
10120             up the parent chain 
10121           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
10122             for non-client areas
10123
10124 2006-02-15  Jackson Harper  <jackson@ximian.com>
10125
10126         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
10127         is a real MDI window
10128
10129 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
10130
10131         * X11DesktopColors.cs: Instead of checking the desktop session
10132           string for "KDE" check if it starts with "KDE"
10133
10134 2006-02-10  Jackson Harper  <jackson@ximian.com>
10135
10136         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
10137         systems).
10138
10139 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10140
10141         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
10142           errors
10143         * ColorDialog.cs:
10144           - Got rid of the panel. All controls are now directly added to
10145             the dialog form
10146           - Changed to mono coding style
10147
10148 2006-02-10  Jackson Harper  <jackson@ximian.com>
10149
10150         * InternalWindowManager.cs: We don't need the set visibility to
10151         false hack anymore now that peter has written beautiful shutdown
10152         code.
10153
10154 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
10155
10156         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
10157           where already explicitly destroyed
10158
10159 2006-02-10  Jackson Harper  <jackson@ximian.com>
10160
10161         * MdiClient.cs: Handle the case where windows are too high or to
10162         the left and we need scrollbars.
10163
10164 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10165
10166         * MimeIcon.cs: Added some icons
10167         * FileDialog.cs:
10168           - Fixed bug #77477
10169           - Got rid of the panel. All controls are now directly added to
10170             the dialog form
10171           - Changed to mono coding style
10172           - On Linux "My Computer" and "My Network" will now show some
10173             more usefull information. A new class, MasterMount, gathers
10174             this information from /proc/mount. Updated MWFFileView to make
10175             use of this information
10176           - Fixed a bug that caused FileDialog to crash when
10177             ".recently_used" file had a zero size
10178           - FilterIndex does now what it should
10179           - Some Refactoring
10180         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
10181             FileDialog changes
10182
10183 2006-02-09  Jackson Harper  <jackson@ximian.com>
10184
10185         * ComboBox.cs: Don't touch if null.
10186
10187 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
10188
10189         * Cursor.cs: 64bit safeness fix
10190         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
10191
10192 2006-02-09  Jackson Harper  <jackson@ximian.com>
10193
10194         * Form.cs: If a form is made into an MDI form update the styles so
10195         all the props can get set correctly.
10196         - Kill the mdi_container when we dont need it anymore.
10197         * InternalWindowManager.cs: Add missing NOT
10198
10199 2006-02-08  Jackson Harper  <jackson@ximian.com>
10200
10201         * InternalWindowManager.cs: Respek clipping when drawing MDi
10202         decorations.
10203
10204 2006-02-08  Jackson Harper  <jackson@ximian.com>
10205
10206         * Hwnd.cs: Add bits to track non client expose events.
10207         * XplatUIX11.cs: Track non client expose events on the hwnd. This
10208         gives us a proper invalid rect and will allow for some nice
10209         optimizations with NC client drawing
10210         - MDI windows are children windows, so move their style handling
10211         into the child window block.
10212         * InternalWindowManager.cs: Remove a state reset that was
10213         getting invoked at the wrong time. Fixes managed windows getting
10214         into a 'stuck' captured state.
10215
10216 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10217
10218         * TextControl.cs (Document.ctor): Now initializing 
10219           selection_anchor. Fixes #77493
10220
10221 2006-02-07  Jackson Harper  <jackson@ximian.com>
10222
10223         * TrackBar.cs: The increment/decrements were backwards.
10224
10225 2006-02-07  Mike Kestner  <mkestner@novell.com>
10226
10227         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
10228         to the instance itself.
10229
10230 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10231
10232         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
10233           on ulongs and pointers, the size differs between 32bit and 64bit
10234           systems. 
10235
10236 2006-02-07  Mike Kestner  <mkestner@novell.com>
10237
10238         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
10239         for 64 bit platforms to work around a metacity bug. 
10240
10241 2006-02-07  Jackson Harper  <jackson@ximian.com>
10242
10243         * TrackBar.cs: Process the input keys we need, and hookup to
10244         KeyDown instead of using WndProc, so we get key messages.
10245
10246 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
10247
10248         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
10249           machine we're on. 
10250         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
10251           we need to translate the XdndVersion atoms array before sending it
10252
10253 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
10254
10255         * XplatUIX11.cs: 
10256           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
10257             number of bits for the property, not the number of bytes. The
10258             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
10259             but would not crash since it specified 8 bits instead of 4 bits)
10260           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
10261             defined as XID -> long in the C headers)
10262           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
10263             references since those are now IntPtr to begin with
10264           - Switched all Atom.XXX 'int' casts to IntPtr casts
10265           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
10266           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
10267           - Added XChangeActivePointerGrab DllImport (for X11DnD)
10268         * X11Structs.cs:
10269           - Changed 'int' type for Atoms in XEvent structures to IntPtr
10270           - Changed atom in HoverStruct to be IntPtr
10271         * X11DnD.cs:
10272           - Removed local DllImports, switched code to use those from XplatUIX11
10273           - Removed/fixed casts related to the switch of Atom to be a IntPtr
10274
10275 2006-02-06  Mike Kestner  <mkestner@novell.com>
10276
10277         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
10278         method signatures in the import region.  There may still be some
10279         lingering struct marshaling issues, as I didn't drill down into those.
10280         Yet.
10281
10282 2006-02-06  Jackson Harper  <jackson@ximian.com>
10283
10284         * ComboBox.cs: Dont manually set the top_item, this is computed
10285         when the scrollbar position is set.
10286
10287 2006-02-06  Mike Kestner  <mkestner@novell.com>
10288
10289         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
10290         startup crashes on amd64.  There's other fixes needed.  All pinvoke
10291         usage of Atom needs to be mapped to IntPtr for example.  And there are
10292         likely other int/long issues to be addressed.
10293
10294 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
10295
10296         * FileDialog.cs: One more...
10297
10298 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10299
10300         * FileDialog.cs: Next try
10301
10302 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10303
10304         * FileDialog.cs: First part of fix for #77464
10305
10306 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10307
10308         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
10309           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
10310           AcceptButton border drawing.
10311
10312 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
10313
10314         * Form.cs: Moved positioning of form after auto scaling is applied,
10315           otherwise it would possibly use wrong form size.
10316
10317 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
10318
10319         * Control.cs (RecreateHandle): No need to re-create any child
10320           controls, the child windows will get destroyed automatically by
10321           the windowing system or driver, and re-created when the handle
10322           is being accessed the first time. Fixes #77456
10323         * Form.cs: No longer setting the form to closing if the handle is 
10324           being recreated. This seems like the right thing to do, don't
10325           have a bug or testcase for this, though.
10326
10327 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10328
10329         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
10330           controls to avoid unwanted side effects
10331
10332 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
10333
10334         * Control.cs: 
10335           - ScaleCore needs to scale the bounds, not the ClientSize of the 
10336             control. Fixes #77416.
10337           - DefaultSize is 0,0 for control
10338         * TextBoxBase.cs: 
10339           - DefaultSize is 100, 20
10340           - SetBoundsCore: Now enforcing the height, no matter if the provided
10341             height is more or less than the preferred one, as long as AutoSize
10342             is on
10343         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
10344
10345 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10346
10347         * Control.cs:
10348           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
10349             call unless both performLayout is true *and* we have a pending
10350             layout change
10351           - ResumeLayout: MS does not completely nest Suspend and Resume,
10352             they bottom out at 0, fixed our code to match that.
10353           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
10354             SetBoundsCore, we were updating even when we shouldn't. This fixes
10355             swf-anchors mis-anchoring when resizing the app fast and lots.
10356           - UpdateDistances: Now only setting the left and top distance if 
10357             we have a parent and are not suspended, this is based on
10358             a suggestion by Don Edvaldson in bug #77355.
10359           - OnVisibleChanged: Fixed logic when to create the control. We may
10360             not create the control if we have no parent or if it's not visible;
10361             switched to using Visible property instead of is_visible field 
10362             since the property also considers parent states. This fixes a bug
10363             when starting Paint.Net
10364
10365 2006-02-02  Jackson Harper  <jackson@ximian.com>
10366
10367         * Form.cs: If the forms handle hasn't been created yet don't call
10368         into xplatui to make it top most, just set the topmost flag on the
10369         form in CreateParams
10370         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
10371
10372 2006-02-01  Jackson Harper  <jackson@ximian.com>
10373
10374         * ScrollableControl.cs: Refactored the Recalculate method a
10375         little, this wasn't handling all the variants of bottom and right
10376         bars needed to be added and added/removed based on their
10377         counterparts being added/removed (which changes the drawable
10378         size). Also we special case client widths and heights of 0 and
10379         don't add the scrollbar for those.
10380
10381 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
10382
10383         * XplatUIX11.cs: 
10384           - Added method to get AbsoluteGeometry(); currently unused, but might
10385             be used in the future, if we try again to figure out toplevel
10386             coordinates with some more crappy window managers
10387           - Added FrameExtents() method to retrieve the WM set decoration size
10388           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
10389             to deal with at least KDE, FVWM and metacity (Fixes #77092)
10390         * Hwnd.cs: 
10391           - Added whacky_wm tracking var for metacity
10392           - Added logic to have default menu height if the actual menu height
10393             has not yet been calculated (part of fix for #77426)
10394         * Form.cs: Keep track whether client size has been set and re-set 
10395           it if a menu is added/removed afterwards (Fixes #77426)
10396
10397 2006-01-31  Jackson Harper  <jackson@ximian.com>
10398
10399         * Control.cs: When a new Site is set on the component attempt to
10400         pull the AmbientProperties from it.
10401
10402 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
10403
10404         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
10405           in the background of the owning form. Fixes #77332
10406
10407 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10408
10409         * MimeIcon.cs: Fix for #77409
10410
10411 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10412
10413         * XplatUIX11GTK.cs: Initial import
10414
10415 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
10416
10417         * FixedSizeTextBox: fixes class signature
10418
10419 2006-01-30  Jackson Harper  <jackson@ximian.com>
10420
10421         * FixedSizeTextBox.cs: New internal class that represents a
10422         textBox that will not be scaled.
10423         * TreeView.cs:
10424         * ComboBox.cs:
10425         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
10426         standard TextBox.
10427                 
10428 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
10429
10430         * XplatUIX11.cs: Retrieve default screen number instead of
10431           assuming 0. Attempted fix for #77318
10432
10433 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
10434
10435         * XplatUIWin32.cs: 
10436           - GetWindowPos: When a window is parented by FosterParent, use 
10437             the desktop instead of FosterParent as the base to get coordinates
10438           - CreateWindow: Don't make FosterParent the parent window for Popups
10439             if we don't want a taskbar entry, Popups automatically don't get one
10440         * Hwnd.cs: Need to call remove to actually remove the key from the
10441           hash table
10442
10443 2006-01-30  Mike Kestner  <mkestner@novell.com>
10444
10445         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
10446
10447 2006-01-30  Jackson Harper  <jackson@ximian.com>
10448
10449         * TreeView.cs:
10450         * TreeNode.cs: Raise events no matter how the treenode is
10451         checked. Patch by Don Edvalson.
10452
10453 2006-01-30  Jackson Harper  <jackson@ximian.com>
10454
10455         * TreeNode.cs: Signature fix.
10456
10457 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
10458
10459         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
10460
10461 2006-01-20  Mike Kestner  <mkestner@novell.com>
10462
10463         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
10464         event forwarding when menus are active.
10465         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
10466         Most of the patch is pdb's with a little rework.
10467
10468 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10469
10470         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
10471           Removed GetMenuDC and ReleaseMenuDC methods; replaced
10472           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
10473         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
10474         * InternalWindowManager.cs: Added use of PaintEventStart/End to
10475           handling of WM_NCPAINT message, now passing the PaintEventArgs to
10476           the PaintWindowDecorations method
10477         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
10478         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
10479         * MenuAPI.cs: Made tracker window invisible
10480         * XplatUIWin32.cs:
10481           - Removed GetMenuDC and ReleaseMenuDC methods
10482           - Implemented the client=false path for PaintEventStart and
10483             PaintEventEnd
10484
10485 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10486
10487         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
10488         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
10489           styles
10490         * Form.cs: 
10491           - MaximizeBox, MinimizeBox: Recreate the handle when setting
10492             the style
10493           - CreateParams: Reworked the styles to match MS look'n'feel,
10494             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
10495             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
10496
10497 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10498
10499         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
10500           window is not mapped, since otherwise every form that's being 
10501           created is considered minimized, which is wrong.
10502         * Form.cs: Catching the exception and returning our internal value
10503           instead
10504
10505 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10506
10507         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
10508           SetWindowMinMax() to have means to tell the driver about the minimum,
10509           maximum and maximized state window sizes. (Part of the fix for #76485)
10510         * Form.cs:
10511           - Implemented tracking of minimum and maximum window size, now calling
10512             new SetWindowMinMax() driver method to tell the driver (Part of the
10513             fix for #76485)
10514           - Finished handling of WM_GETMINMAXINFO method, now setting all values
10515             (Completes fix for #76485)
10516           - Calling new SetWindowMinMax driver method when the handle for a 
10517             form is created, to make sure the driver knows about it even if
10518             the values have been set before the window was created
10519           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
10520             to avoid messing up our anchoring calculations (partial fix
10521             for #77355)
10522         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
10523         * XplatUIX11.cs:
10524           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
10525           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
10526             (and presumably other freedesktop.org compliant WMs). Left the
10527             assumption unmapped=minimized, needed for SetVisible to work.
10528           - Now setting the window state when creating windows
10529           - Fixed SetVisible to consider/set the window state when mapping
10530             a Form. We cannot set the state before it's mapped, and we cannot
10531             use Form.WindowState once it's mapped (since it would ask the
10532             driver and get 'normal'. Therefore, we grab the state before
10533             mapping, map, and then set state.
10534           - Implmemented SetWindowMinMax method; Metacity does not seem to
10535             honor the ZoomHints, though.
10536         * XplatUIWin32.cs:
10537           - Removed MINMAXINFO (moved to XplatUIStructs)
10538           - Added SetWindowMinMax stub (on Win32 the only way to set that
10539             information is in response to the WM_GETMINMAXINFO message, which
10540             is handled in Form.cs)
10541           - Added logic to SetVisible to set the proper window state when a 
10542             form is made visible (fixes #75720)
10543
10544 2006-01-26  Jackson Harper  <jackson@ximian.com>
10545
10546         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
10547         same way we handle them with Invoke.
10548
10549 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
10550
10551         * Form.cs:
10552           - Added tracking of window state so CreateParams can return
10553             the appropriate style
10554           - Moved setting of WS_CAPTION style in CreateParams to allow
10555             styles without caption
10556         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
10557           control if the TextBox property is accessed. Fixes #77345
10558         * Control.cs:
10559           - get_Created: now uses is_disposed and is_created to determine
10560             return value (suggested by Jackson)
10561           - CreateHandle: No longer exits if the handle is being recreated
10562           - RecreateHandle: If the handle is not yet created call the 
10563             appropriate method to create either control or handle. If the
10564             control is already created CreateHandle will simply exit instead
10565             of just creating the handle
10566         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
10567           now SendMessage WM_DESTROY directly to the control when DestroyWindow
10568           is called.
10569         * XplatUIX11.cs: 
10570           - When DestroyWindow is called, instead of waiting for the 
10571             DestroyNotification from X11, we directly post it to the WndProc
10572             and immediately dispose the hwnd object.
10573             Same applies to DestroyChildWindows, and this obsoletes the
10574             expose_pending tracking. Contrary to Win32 behaviour we destroy our
10575             child windows before our own, to avoid X11 errors.
10576           - Removed the direct sending of WM_PAINT on UpdateWindow
10577         * XplatUIWin32.cs:
10578           - Reworked DoEvents and GetMessage to allow access to internal queue
10579             even when trying non-blocking access to the queue.  Fixes #77335. 
10580             Based on a patch suggestion by Don Edvalson. The new private
10581             GetMessage can now also be used as a backend for a PeekMessage
10582             frontend version.
10583         * XplatUI.cs: Improved debug output for CreateWindow
10584
10585 2006-01-25  Jackson Harper  <jackson@ximian.com>
10586
10587         * Help.cs: Allow param to be null. Patch by Don Edvalson.
10588
10589 2006-01-24  Jackson Harper  <jackson@ximian.com>
10590
10591         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
10592         when we have a MaxDropItems lower then the selected index.
10593
10594 2006-01-24  Jackson Harper  <jackson@ximian.com>
10595
10596         * Control.cs: Don't allow selection of non visible controls, allow
10597         selection of controls without parents.
10598
10599 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10600
10601         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
10602         * DataGridDrawingLogic.cs: Add editing row only when is necessary
10603
10604 2006-01-23  Jackson Harper  <jackson@ximian.com>
10605
10606         * UpDownBase.cs: Make the textbox handle all the selection and
10607         tabbing. This fixes tabing to updown controls.
10608
10609 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10610
10611         * TextBoxBase.cs: fixes exception thown the object was null
10612
10613 2006-01-23  Jackson Harper  <jackson@ximian.com>
10614
10615         * ButtonBase.cs: Just use the base CreateParams. They set
10616         visibility and enabled correctly.
10617         * ComboBox.cs:
10618         * TrackBar.cs:
10619         * MonthCalendar.cs: Lets let the base set as much of the
10620         createparams as possible so we don't have duplicate code all over
10621         the place.
10622
10623 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
10624
10625         * ThemeGtk.cs: Added TrackBar and some experimental code to
10626           get double buffering back
10627
10628 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
10629
10630         * DataGrid.cs: Allows row number set internally higher than the last
10631         when creating a new row. Restores the editing functionality.
10632
10633 2006-01-20  Mike Kestner  <mkestner@novell.com>
10634
10635         * MimeIcon.cs: delay Image creation until the icons are accessed
10636         instead of creating 190 scaled images on GnomeHandler startup.
10637
10638 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
10639
10640         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
10641           first call base before processing the event. Fixes #77279
10642
10643 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
10644
10645         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
10646           that the stride for the GDI bitmap would match the stride of
10647           a DIB or a Cursor.
10648
10649 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
10650
10651         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
10652
10653 2006-01-19  Jackson Harper  <jackson@ximian.com>
10654
10655         * ComboBox.cs: Hookup the text controls keydown event so we get
10656         those when the text control has the focus.
10657
10658 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10659
10660         * Label.cs: Now using the base events instead of defining new ones;
10661           this allows us to just call the base properties without having to
10662           duplicate all base property logic 
10663
10664 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10665
10666         * Label.cs: A label by default is not a tabstop (Fixes one of our
10667           failing nunit tests)
10668
10669 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10670
10671         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
10672         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
10673
10674 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10675
10676         * Cursor.cs: Reimplemented creating cursor bitmaps without using
10677           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
10678           This fixes #77218
10679         * XplatUIWin32.cs: 
10680           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
10681             constructor creates images that can't be saved. Part of the fix
10682             for #76103
10683           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
10684           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
10685             bug fix for handling window state in forms properly)
10686
10687 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10688
10689         * ThemeGtk.cs: Simplify ScrollBar drawing
10690
10691 2006-01-18  Jackson Harper  <jackson@ximian.com>
10692
10693         * Splitter.cs: Set the default dock style for the splitter control
10694         in the constructor.
10695
10696 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10697
10698         * ThemeGtk.cs: Corrected StateType and ShadowType for
10699           gtk_paint_box
10700
10701 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10702
10703         * Control.cs: Make use of Theme.DoubleBufferingSupported
10704         * ThemeGtk.cs:
10705           - Added drawing for flat style buttons
10706           - Added ScrollBar drawing
10707
10708 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10709
10710         * ThemeClearlooks.cs: Removed some unneeded code.
10711         * ThemeGtk.cs: First part of ThemeGtk enhancements.
10712
10713 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10714
10715         * LinkLabel.cs: We need to update the hover drawing when
10716           leaving the control as well.
10717
10718 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
10719
10720         * DataGrid.cs: Clicking on non empty areas in the columns
10721            area was giving an exception
10722
10723 2006-01-17  Jackson Harper  <jackson@ximian.com>
10724
10725         * ThemeWin32Classic.cs:
10726         * ListView.cs: Do not draw/clip the headers when the header style
10727         is None.
10728
10729 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10730
10731         * DataGrid.cs: Fixes 77260
10732         
10733 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10734
10735         * DataGrid.cs: Clicking on a column on a empty grid was giving
10736           an exception
10737
10738 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10739
10740         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
10741           or any keypress will crash the grid.
10742
10743 2006-01-17  Mike Kestner  <mkestner@novell.com>
10744
10745         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
10746         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
10747         invisible/previously-visible items.
10748         [Fixes #76909]
10749
10750 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
10751
10752         * ThemeClearlooks.cs:
10753         - Added CL_Draw_Button method; now other theme controls that are 
10754           not derived from button or do not have a button can draw buttons
10755           too
10756         - Updated ComboBox drawing
10757         - Beautified RadioButton drawing
10758         - Corrected drawing of bottom and left tabs
10759         - Beautified DateTimePicker and MonthCalendar
10760         - Added CPDrawButton and CPDrawRadioButton
10761
10762 2006-01-16  Jackson Harper  <jackson@ximian.com>
10763
10764         * ComboBox.cs: Set the initial value of the scrollbar to the
10765         current index. Reduce the numbers of refreshs and IndexOfs called.
10766
10767 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
10768
10769         * FileDialog.cs: When the file listview is focused hitting the
10770           backspace key moves the fileview to the parent directory
10771
10772 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10773
10774         * Form.cs: 
10775           - Added RecreateHandle call when changing taskbar visibility to 
10776             trigger reparenting in Win32 driver (Fixes #75719)
10777           - If a window has minimize or maximize buttons, it cannot have
10778             a help button
10779         * XplatUIWin32.cs:
10780           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
10781             the toplevel form with FosterParent (A toolwindow not on the
10782             taskbar) (Fixes #75719)
10783           - Made FosterParent a toolwindow
10784
10785 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10786
10787         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
10788
10789 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10790
10791         * ToolTip.cs: If SetToolTip is called from a control and the mouse
10792           is currently over that control, make sure that tooltip_window.Text
10793           gets updated
10794
10795 2006-01-13  Mike Kestner  <mkestner@novell.com>
10796
10797         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
10798
10799 2006-01-13  Jackson Harper  <jackson@ximian.com>
10800
10801         * TreeView.cs: On MS GetNodeAt never actually factors in the X
10802         value passed.  Also redraw the selected node when we recieve
10803         focus, so tabbing between trees works correctly.
10804
10805 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10806
10807         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
10808           ~/.gconf/%gconf-tree.xml, so use
10809           .gconf/desktop/gnome/interface/%gconf.xml
10810
10811 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10812
10813         * TextControl.cs: Draw text in gray if control is disabled
10814
10815 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10816
10817         * TreeView.cs: Draw the focus rectangle outside the highlight, to
10818           make sure it's always visible. Fixes #76680.
10819
10820 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10821
10822         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
10823
10824 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
10825
10826         * PageSetupDialog.cs: Added.
10827         * PrintDialog.cs: Attributes.
10828         * PrintPreviewControl.cs: Updates.
10829         * PrintPreviewDialog.cs: Updates.
10830         
10831 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10832
10833         * Control.cs: Undid my selection check fix, since it's not needed
10834         * TextBoxBase.cs:
10835           - Now considering the presence of hscroll/vscroll when sizing
10836             vscroll/hscroll respectively. Fixed bug #77077
10837           - Added Left/Up/Down/Right to IsInputKey list to prevent
10838             ContainerControl from stealing them. This fixes what I broke
10839             with my last checkin.
10840
10841 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
10842
10843         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
10844           I finally understand how the property can be set without a setter :-)
10845
10846 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10847
10848         * Application.cs:
10849           - Switched RunLoop to use static Message.Create to create a 
10850             Message object
10851           - Added PreProcessMessage call in runloop for keyboard events; this
10852             is part of the fix for #77219, I overlooked this originally in the
10853             MSDN doc for PreProcessMessage
10854         * Control.cs:
10855           - Removed call to PreProcessMessage from handling of keyboard 
10856             messages; it's supposed to be done in the message pump
10857           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
10858             per MSDN documentation.
10859           - IsInputChar: All chars are input chars by default; removed the 
10860             parent calling chain, MS does not document that
10861           - PreProcessMessage: If IsInputChar is true, we want to return false
10862             to allow dispatching of the message
10863           - When selecting the next control, now also check that we're not
10864             selecting ourselves again and therefore return a false positive.
10865         * TextBoxBase.cs:
10866           - Tried to match return values for IsInputKey and ProcessDialogKey
10867             to what MS returns; moved processing of our special keys outside
10868             ProcessDialogKey since MS does not seem to return true on those.
10869           - Moved code that previously was in ProcessDialogKey into new private
10870             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
10871           - Reworked handling of WM_CHAR to not have to duplicate code from
10872             Control.cs anymore, instead we simply call down to base.
10873            
10874 2006-01-12  Jackson Harper  <jackson@ximian.com>
10875
10876         * ComboBox.cs: We always need to refresh the text area when
10877         EndUpdate is called. Fixes the combobox in the file dialog.
10878         * Control.cs: Don't create the creator_thread until the controls
10879         handle is created.  Also in InvokeRequired we check if the
10880         creator_thread is null. This gives the effect of InvokeRequired
10881         returning true if the controls handle is not created yet, and
10882         matches MS.
10883
10884 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10885
10886         * XplatUI.cs:
10887           - Added StartLoop() driver method. This is used to allow drivers to
10888             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
10889             loop for a particular thread
10890           - Added EndLoop() driver method. This is called once the message
10891             pump for the thread is shut down
10892           - Added SupportsTransparency method to allow the driver to indicate
10893             opacity support for windows
10894         * Form.cs:
10895           - Removed TODO attribute, completed AllowTransparency property
10896           - Added documented logic to Opacity
10897         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
10898           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
10899           versions of CompatibleTextRendering
10900         * X11Structs.cs: Added opacity atom to our atom enumeration
10901         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
10902           of a form might be set before it's reparented by the WM, and we need
10903           the opacity value without calling up to Form)
10904         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
10905           SupportsTransparency() driver methods
10906         * Application.cs: Now calling StartLoop and EndLoop driver methods
10907         * XplatUIX11.cs:
10908           - Added opacity atom registration
10909           - Added StartLoop()/EndLoop() methods. They're empty right now but
10910             will need to get implemented when we switch to a per-thread queue
10911           - Implemented SupportsTransparency() method
10912           - Implemented SetWindowTransparency() method
10913           - Added support for setting the opacity value when a window is
10914             reparented (since the opacity needs to be set on the WM frame)
10915         * XplatUIOSX.cs, XplatUIWin32.cs:
10916           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
10917
10918 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10919
10920         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
10921
10922 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10923
10924         * FileDialog.cs: Added ToolTip for MWFFileView
10925         * MimeIcon.cs: Rewrote GnomeHandler.
10926           - Get currently used gnome icon theme from
10927             ($HOME)/.gconf/%gconf-tree.xml
10928           - Make use of inherited icon themes
10929           - Support SVG icon themes like Tango via librsvg
10930
10931 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10932
10933         Revert's Jackson's revert which broke 2.0 builds.   Fix both
10934         builds. 
10935         
10936         * Application.cs: Move the use_compatible_text_rendering outside
10937         the NET_2_0 define.  If we ever need to use the
10938         use_compatible_text_rendering on the individual controls they will
10939         access the variable from the common shared code paths.
10940
10941 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10942
10943         * XplatUI.cs:
10944           - Added more granular debug options
10945           - Added method to print both window text and id
10946           - Switched debug output to use new Window() debug method
10947           - Added IsEnabled() driver method
10948           - Added EnableWindow() driver method
10949         * Form.cs:
10950           - Removed end_modal; no longer needed, new loop handles termination
10951             via 'closing' variable
10952           - If form is modal, setting DialogResult will now initiate loop
10953             termination via 'closing' variable
10954           - Added support for is_enabled/WS_DISABLED to CreateParams
10955           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
10956             does all the work
10957           - Removed code that's now in RunLoop from ShowDialog()
10958           - Added various documented sanity checks to ShowDialog()
10959           - Added handling of WM_DESTROY message; we set 'closing' on getting
10960             the message to indicate the message pump to terminate
10961           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
10962             send by the Application.ExitThread method. (We send the message
10963             to destroy the window after all other events have been
10964             processed through the queue, instead of destroying the handle 
10965             directly)
10966           - Moved code from Close() method to WM_CLOSE handler; added logic
10967             to only send close-related events if the form is not displayed
10968             modal
10969         * Splitter.cs (..ctor): Fixed typo in resource name
10970         * Control.cs:
10971           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
10972             brush now
10973           - set_Cursor: Now only setting calling into XplatUI if the handle for
10974             the control is already created; this avoids implict handle creation
10975             or crashes if it's not created
10976           - set_Enabled: Now setting the enabled state via the new driver method
10977             instead of just tracking it
10978           - CreateParams: Added logic to set WS_DISABLED based on enabled state
10979           - CreateControl: Reordered event firing and method calls to more
10980             closely fire events in the order MS does. Now setting the
10981             enabled state in the driver when creating the control.
10982           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
10983             match MS order
10984         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
10985           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
10986         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
10987         * Hwnd.cs:
10988           - Added tracking of window enabled state (get_Enabled/set_Enabled)
10989           - Added EnabledHwnd property to easily allow a driver to find the
10990             handle of the first enabled window in the parent chain (this is
10991             used by drivers to pass up input events of disabled windows)
10992         * XplatUIDriver.cs: Added IsEnabled() method
10993         * Application.cs:
10994           - Removed crude and obsolete exiting tracking variable
10995           - Removed internal ModalRun(); replaced by RunLoop()
10996           - Implemented private CloseForms() method to allow closing all 
10997             windows owned by a particular (or all) threads
10998           - Exit() now properly closes all windows without forcing the message
10999             pump to quit
11000           - Removed obsolete InternalExit() method
11001           - Changed Run() methods to use new RunLoop() message pump
11002           - Implemented new RunLoop() method for both modal and non-modal forms
11003         * CommonDialog.cs:
11004           - get_CreateParams: Added setting of WS_DISABLED
11005           - Simplified ShowDialog(); now all the work is done in RunLoop(),
11006             invoked via Form.ShowDialog()
11007         * NativeWindow.cs: We don't remove the window from the collection when
11008           the handle is destroyed; there might still be messages for it in the
11009           queue (mainly the resulting WM_DESTROY); instead it will be removed
11010           when Control calls InvalidateHandle in the WM_DESTROY handler
11011         * XplatUIX11.cs:
11012           - CreateWindow: Added logic to handle the WS_DISABLED window style
11013           - EnableWindow: Implemented based on Hwnd.Enabled
11014           - GetMessage: Reset PostQuitState so the method can be called again
11015           - Implemented support for disabled windows (passing messages to the
11016             first enabled parent) in handling all input messages
11017           - Added optimizations for handling Expose events
11018           - Implemeted new driver method IsEnabled()
11019           - Now always resetting paint pending tracking vars when we start paint
11020           - Re-implemented UpdateWindow via just sending a WM_PAINT message
11021         * XplatUIOSX.cs: Added IsEnabled method stub
11022         * XplatUIWin32.cs: Implemented new IsEnabled() method
11023
11024 2006-01-11  Jackson Harper  <jackson@ximian.com>
11025
11026         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11027         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
11028         variables a little.
11029         * ColorDialog.cs: Clear out the old form before adding the new
11030         panel.  
11031
11032 2006-01-11  Jackson Harper  <jackson@ximian.com>
11033
11034         * X11Dnd.cs: Make sure to add all the text formats when adding
11035         strings to the data object.
11036         * TreeNodeCollection.cs: When adding to a sorted tree we need to
11037         do some redrawing too.  Also change the UpdateNode to an
11038         UpdateBelow so the newly added node gets painted.
11039         
11040 2006-01-11  Miguel de Icaza  <miguel@novell.com>
11041
11042         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11043         LinkLabel.cs, PropertyGrid.cs: Implement the
11044         UseCompatibleTextRendering property for 2.x
11045
11046         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
11047
11048 2006-01-11  Jackson Harper  <jackson@ximian.com>
11049
11050         * TreeView.cs: Use the property for setting the selected node so
11051         the correct events get raised.
11052         * TreeNode.cs: Update the tree when the fore/back colours of a
11053         node are set.
11054
11055 2006-01-10  Jackson Harper  <jackson@ximian.com>
11056
11057         * TreeView.cs: Allow setting SelectedNode to null.
11058
11059 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11060
11061         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
11062
11063 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11064
11065         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
11066
11067 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11068
11069         * PrintDialog.cs: Added attributes and set default property values.
11070
11071 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11072
11073         * PrintControllerWithStatusDialog.cs: 
11074         Added PrintControllerWithStatusDialog.
11075
11076 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11077
11078         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11079         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
11080
11081 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11082
11083         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
11084
11085 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11086
11087         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
11088         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
11089
11090 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11091
11092         * MimeIcon.cs: Added internal class SVGUtil.
11093
11094 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11095
11096         * FileDialog.cs: Don't crash if there are two files with the
11097           same name but different locations.
11098
11099 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
11100
11101         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
11102         dates across multiple month grids. Used to not highlight entire 
11103         month, but does now.
11104         
11105 2006-01-06  Jackson Harper  <jackson@ximian.com>
11106
11107         * MonthCalendar.cs: Removed DoEvents call to prevent a running
11108         message loop. Change timer intervals to numbers that seem more
11109         natural.
11110
11111 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
11112
11113         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
11114           object for location info since screen object is now implemented.
11115
11116 2006-01-05  Jackson Harper  <jackson@ximian.com>
11117
11118         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
11119         * AsyncMethodResult.cs: We no longer use a WeakReference for the
11120         AsyncMethodResult, this is because we ALWAYS want the
11121         ManualResetEvent to get set.
11122         * Control.cs: When disposing use an async invoke to call shutdown
11123         code, so that thigns don't block on the finalizer thread.  Also
11124         check if we even have a message loop before trying to send
11125         messages, if we don't then don't bother sending messages.
11126         - No more weak references for async methods
11127         * XplatUIDriver.cs: No more weak references for async methods.
11128
11129 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11130
11131         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
11132           returns two FontFamily with the same name
11133
11134 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11135
11136         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
11137           drawing disabled text. Instead using the ColorGrayText color
11138
11139 2006-01-04  Jackson Harper  <jackson@ximian.com>
11140
11141         * TreeNode.cs: redraw the node when its image index is changed.
11142
11143 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11144
11145         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
11146           time I checked there are no others like it.
11147
11148 2006-01-04  Jackson Harper  <jackson@ximian.com>
11149
11150         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
11151         this gives the behavoir I was looking for.
11152         * Control.cs: Special case Invoking EventHandlers, this matches MS
11153         and fixes part of bug #76326.
11154
11155 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11156
11157         * ThemeClearlooks.cs, FileDialog.cs:
11158           - Reflect the latest Theme class changes
11159           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
11160             with DateTime
11161             
11162 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11163
11164         * Theme.cs: Cache UI resource images and resize them if needed
11165
11166 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11167
11168         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
11169           is called. This fixes the crash in Nexxia when setting the font
11170           attributes in the chat. [However, RTF needs a look-over to make sure
11171           that all SelectionXXX methods handle the special case that selection
11172           is empty and therefore the change must be applied to all text starting
11173           at the cursor/selection start]
11174
11175 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
11176
11177         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11178           XplatUIOSX.cs: Added SendMessage and PostMessage methods
11179         * X11Keyboard.cs: Switched to new way of calling PostMessage
11180
11181 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11182
11183         * Theme.cs: Added theme interface for images to allow the theme to
11184           control what images are used for things like FileDialog, MessageBox
11185           icons, etc.
11186         * MessageBox.cs: Now uses the new Theme icon/image interfaces
11187
11188 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
11189
11190         * FileDialog.cs:
11191           - Removed some dead code
11192           - Opening a recently used file does work now
11193           - Small UI enhancements
11194           - Refactoring
11195
11196 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11197
11198         * FileDialog.cs: Forgot too add __MonoCS__
11199
11200 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11201
11202         * FileDialog.cs: We are able to read recently used files now let's
11203           go on and write them.
11204
11205 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
11206
11207         * FileDialog.cs: Breathe some life into "last open"/"recently used"
11208           button
11209         * MimeIcon.cs: Do a check for the top level media type also
11210
11211 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11212
11213         * ThemeClearlooks.cs:
11214           - Added CPDrawStringDisabled
11215           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
11216             some chars if the text doesn't fit into text_rect
11217           - DrawListViewItem: If View = View.LargeIcon center the image;
11218             rewrote the drawing of ListViewItem.Text if View = 
11219             View.LargeIcon
11220
11221 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11222
11223         * MimeIcon.cs: Use default KDE icon theme if there is no
11224           "48x48" directory for the current icon theme, fixes #77114
11225         * Mime.cs: Disable not working and actually not used code. 
11226         * ThemeWin32Classic.cs:
11227           - Replace "new SolidBrush" in GetControlBackBrush and
11228             GetControlForeBrush with ResPool.GetSolidBrush
11229           - Changed DrawListViewItem from private to protected virtual
11230         * FileDialog.cs:
11231           - Added form.MaximizeBox = true
11232           - Don't throw an exception if there is a broken symbolic link
11233
11234 2005-12-23  Jackson Harper  <jackson@ximian.com>
11235
11236         * TabControl.cs: Give the panels focus, keyboard navigation is
11237         fixed so this works correctly now.
11238         - We need these key events also.
11239         * ToolBar.cs: Remove some of the poor mans double buffering.
11240         
11241 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
11242
11243         * ComboBox.cs: The internal TextBox now returns the focus.
11244
11245 2005-12-23  Jackson Harper  <jackson@ximian.com>
11246
11247         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
11248
11249 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11250
11251         * Control.cs: Removed debug code
11252         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
11253           implicit children
11254
11255 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
11256
11257         * Control.cs: When creating the control, update the Z-order after
11258           all it's children are created, too. (Fixes nexxia not showing
11259           picturebox bug)
11260
11261 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11262
11263         * Control.cs: Do not update the anchoring distances if layout is
11264           suspended, instead do it once layout is resumed
11265
11266 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
11267
11268         * Control.cs: 
11269           - After many hours of debugging, for both Jackson and
11270             myself, it turns out that it helps to set the parent of a control
11271             if you want to actually see it onscreen. In the spirit of that
11272             discovery, we're now setting the parent of the control and
11273             it's children when the control's handle is created. This fix
11274             will make Lutz Roeder's Reflector run happily. 
11275           - now just creating the handle instead of the whole control when
11276             getting a graphics context for the control.
11277
11278 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11279
11280         * ScrollableControl.cs: When calculating the canvas, don't consider
11281           the scrollbar widths. Instead, predict if horizontal scrollbar
11282           will affect canvas when deciding on vertical display and vice versa.
11283
11284 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11285
11286         * RichTextBox.cs: Set default RTF font for documents that don't
11287           have a font table (Fixes #77076)
11288
11289 2005-12-22  Jackson Harper  <jackson@ximian.com>
11290
11291         * TextBoxBase.cs: It's difficult to do, but you can have an empty
11292         clipboard. This prevents a NullRef in that case.
11293         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
11294         clipboard. PRIMARY is for the currently selected text only. (We
11295         should implement PRIMARY at some point.
11296
11297 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11298
11299         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
11300           a Unicode function with a structure that was defined in Ansi way.
11301           This fixes #76942.
11302
11303 2005-12-21  Jackson Harper  <jackson@ximian.com>
11304
11305         * StatusBar.cs: Statusbar handles its fore/back colours on it's
11306         on. Because thats how it rolls. (and this avoids it using ambient
11307         colours).
11308         * ThemeWin32Classic.cs: Use the proper back color for filling.
11309         * Menu.cs: Use the system menu bar color for drawing menu
11310         bars. Using the window back color will bring ambient colours into
11311         the picture.
11312
11313 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
11314
11315         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
11316           Bitmaps were created and not disposed.
11317
11318 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11319
11320         * Control.cs (CreateControl): Don't do anything if the control is
11321           already created, otherwise we'd fire the OnCreated event more than
11322           once
11323
11324 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11325
11326         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
11327           will always match. Instead return -1. Fixes #76464.
11328
11329 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11330
11331         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
11332           neither the beginning nor the end of the line (Fixes bug #76479)
11333
11334 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11335
11336         * Control.cs:
11337           - ControlNativeWindow.ControlFromHandle(): Now handling situation
11338             where handle is invalid
11339           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
11340             instead of slower linear search
11341         * NativeWindow.cs: Don't remove the window from the hashtable until
11342           after the driver has destroyed it (since the driver might use
11343           Control.FromHandle to lookup the control object
11344         * Hwnd.cs: Added DestroyPending property to track if a window is 
11345           already destroyed as far as the driver is concerned and only hasn't
11346           yet notified the control
11347         * XplatUIX11.cs:
11348           - Activate(): Check if the window is still valid before using the 
11349             handle
11350           - Implemented DestroyChildWindow() method to mark child windows as
11351             destroyed when a window is destroyed. This prevents situations 
11352             where we might call an X method based on queued events for a
11353             window that already has been destroyed but we haven't yet pulled
11354             the destroy method from the queue.
11355           - Added a call to the new DestroyChildWindow() method to the drivers
11356             DestroyWindow code. Also now marking the destroyed window itself
11357             as pending
11358
11359 2005-12-20  Jackson Harper  <jackson@ximian.com>
11360
11361         * StatusBar.cs:
11362         * StatusBarPanel.cs: Don't calculate panel sizes on draw
11363         anymore. Just do them when needed, also track the rects of panels
11364         so that we can optimize refreshing more in the future.
11365
11366 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
11367
11368         * ColorDialog.cs: Fixed focus drawing in small color controls
11369
11370 2005-12-19  Jackson Harper  <jackson@ximian.com>
11371
11372         * InternalWindowManager.cs:
11373         * MdiWindowManager.cs: Cleanup some coordinate system changes so
11374         moving windows works properly.
11375
11376 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
11377
11378         * Control.cs: 
11379           - Removed call to InitLayout() from SetBoundsCore(); doc says
11380             it's only called when a control is added to a container
11381           - Split InitLayout logic, moved to separate UpdateDistances() method
11382             since we need to perform those calculations more often than just
11383             when adding the control to a container. (Needed to fix #77022)
11384           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
11385           - Reduced the OnBindingContextChanged events count, don't send them
11386             unless the control is created, we still aren't totally matching
11387             MS, but I can't quite figure out some of their rules
11388
11389 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11390
11391         * ThemeClearlooks.cs: Corrected distance between ProgressBar
11392           stripes
11393
11394 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11395
11396         * ThemeClearlooks.cs:
11397           - Updated ProgressBar drawing
11398           - Corrected drawing of ScrollBars and scroll buttons
11399           - Some temporary fixes for minor pixel artefacts
11400
11401 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
11402
11403         * Control.cs:
11404           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
11405             cause events to be sent in the same order as MS does.
11406           - Added ChangeParent() method to trigger various OnXXXChanged events
11407             that need to be fired when a parent changes (This is a reworking
11408             of the patch from r54254, with the X11 errors fixed)
11409           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
11410             since on MS we get OnLayoutChanged events when calling Clear()
11411           - Changed Enabled property to consider parent state as well, if a
11412             parent is not enabled, the control will not be either
11413           - Changed Parent property to simply call Controls.Add() since that
11414             now does all the work required, this way we avoid code duplication
11415           - Threw in a few OnBindingsContextChanged calls to try and match
11416             when MS sends them. We seem to send a few too many, though.
11417           - Added call to CreateControl when adding the control to a parent.
11418             We were never calling CreateControl. Still needs some work, in
11419             some places we treat HandleCreated and ControlCreated as equal, 
11420             which is wrong
11421           - Removed obsolete commented out code from UpdateZOrder()
11422
11423 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11424
11425         * ThemeClearlooks.cs: Updated TrackBar drawing.
11426
11427 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11428
11429         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
11430
11431 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11432
11433         * FileDialog.cs: Add the Help button and the open readonly
11434           checkbox only if needed
11435
11436 2005-12-16  Jackson Harper  <jackson@ximian.com>
11437
11438         * Control.cs: Make sure we have an active menu before trying to
11439         process commands on it. Prevents menu-less forms from crashing
11440         when Alt is pressed.
11441         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
11442         Dieter Bremes.
11443         * RichTextBox.cs: Expand statement to help out gmcs and fix the
11444         2.0 build.
11445
11446 2005-12-16  Jackson Harper  <jackson@ximian.com>
11447
11448         * InternalWindowManager.cs: Don't translate tool windows screen
11449         coordinates. This fixes windows 'bouncing' around when being moved.
11450
11451 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11452
11453         * TextBoxBase.cs:
11454           - MaxLength now treats 2^31-1 equal to unlimited length (this is
11455             not quite MS compatible, MS uses that number only for single line
11456             and 2^32-1 for multi-line, but I figure it won't hurt keeping
11457             the limit at 2GB)
11458           - Now enforcing the MaxLength limit when entering characters
11459           - Added argument to internal Paste() method to track if it's called
11460             from programatically or via keyboard, since keyboard driven pastes
11461             need to enforce max-length
11462           - Added logic to Paste to only paste as many chars as MaxLength 
11463             allows
11464         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
11465         * TextControl.cs:
11466           - Added Length property to return number of characters in document
11467           - Added private CharCount property which only tracks actual chars
11468             in the document (no linefeeds) and fires event when CharCount
11469             changes
11470           - Added tracking of character count to all methods that alter it
11471           - Added LengthChanged event to allow applications to subscribe
11472             to any changes to the document
11473
11474 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11475
11476         * TextBox.cs: 
11477           - Removed local password_char field (moved to TextBoxBase)
11478           - Now setting the document's password var when password is
11479             set
11480         * TextBoxBase.cs:
11481           - Added password_char field (needed here so MultiLine can
11482             access it)
11483           - Added logic to MultiLine property setter to set the document's
11484             variable when password display is allowed
11485           - Removed debug code and made some debug code conditional
11486         * TextControl.cs:
11487           - Added RecalculatePasswordLine() method to handle special password
11488             char only lines
11489           - Added PasswordChar property, also added related tracking vars
11490           - Draw() method now uses local text var for grabbing text to draw,
11491             this var is set to line.text unless we're doing password display,
11492             then it is set to the pre-generated all-password-chars line
11493           - Added calling RecalculatePasswordLine() method for password lines
11494
11495 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11496
11497         * Hwnd.cs: 
11498           - Added Reparented property to allow tracking of Window Manager
11499             reparenting actions (which affect X/Y calculations of toplevel 
11500             windows)
11501           - Made ToString() print window handles in hex
11502         * XplatUIX11.cs:
11503           - AddConfigureNotify(): Now uses reparented state off Hwnd to
11504             determine if X/Y needs offsetting
11505           - AddConfigureNotify(): Fixed offset calculations
11506           - Now adds ReparentNotify messages into the queue
11507           - Now processes ReparentNotify messages and causes a 
11508             WM_WINDOWPOSCHANGED message to be sent upstream if a window
11509             is reparented (as most likely it's X/Y coordinates are changed
11510             due to that)
11511
11512 2005-12-14  Jackson Harper  <jackson@ximian.com>
11513
11514         * XplatUIX11.cs: Tool windows still need to respek focus.
11515
11516 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11517
11518         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
11519           have a working release
11520
11521 2005-12-13  Jackson Harper  <jackson@ximian.com>
11522
11523         * Form.cs: Update styles after setting the border style regardless
11524         of whether or not the window is using a window manager.
11525
11526 2005-12-13  Jackson Harper  <jackson@ximian.com>
11527
11528         * Form.cs: We now hook into an internal window manager instead of just an
11529         MDI subsystem, this is so we can have properly behaving tool windows.
11530         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
11531         * InternalWindowManager.cs: New internal class that acts as a
11532         window manager for tool windows and as a base for mdi windows.
11533         * MdiWindowManager.cs: New class that acts as a window manager for
11534         mdi windows.
11535
11536 2005-12-12  Jackson Harper  <jackson@ximian.com>
11537
11538         * Control.cs: Updates so we match behavoir for for implicit
11539         controls. Fixes explosions in MDI.
11540
11541 2005-12-12  Jackson Harper  <jackson@ximian.com>
11542
11543         * Control.cs: Implement Invalidate (Region).
11544
11545 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
11546
11547         * Control.cs: 
11548           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
11549             the same events as MS does. MS fires events for each property 
11550             except, for unknown reasons, Cursor, when the control is reparented. 
11551             I can't seem to totally match add/remove since MS also fires some 
11552             VisibleChanged events, which makes no sense. Consolidated the
11553             parenting code into a separate method so it can be called from
11554             both Add and Remove. set_Parent no longer needs any special logic
11555             as it calls the parent's add method which implicitly fires
11556             all events
11557           - Removed some obsolete code and debug output
11558           - Enabled state is inherited from parents, if this is enabled
11559
11560 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
11561
11562         * Form.cs: Removed commented out code
11563
11564 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
11565
11566         * Control.cs:
11567           - Added internal version of Invoke, with additional argument 
11568             indicating if we're calling it from a Dispose() handler. That
11569             way we can avoid BeginInvoke throwing an exception if we're
11570             calling for an already destroyed window.
11571           - Added a dispose argument to BeginInvokeInternal, and made the
11572             check if a valid window handle chain exists conditional on
11573             it not being a dispose call
11574           - Removed code in DestroyHandle to destroy our children. Since we
11575             now handle the WM_DESTROY message we will catch all our children
11576             being destroyed.
11577           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
11578         * Form.cs:
11579           - Added a field to track the application context of the form.
11580           - No need to set closing variable as response to WM_CLOSE, instead
11581             we destroy the window. We also call PostQuitMessage if the form
11582             has an application context (which makes it the main app form,
11583             which, when closed terminates the app)
11584         * XplatUI.cs:
11585           - Dropped Exit() method, it's naming was confusing
11586           - Added PostQuitMessage() which causes GetMessage to return false
11587             once the message queue is empty
11588         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
11589           PostQuitMessage()
11590         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
11591           no longer a valid XplatUI method, but left it in since it's used
11592           internally. Added empty PostQuitMessage() method.
11593         * MenuAPI.cs: Replaced call to Exit() with call to
11594           PostQuitMessage, even though this is probably no longer needed.
11595         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
11596         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
11597         * Application.cs:
11598           - Replaced call to XplatUI.Exit() with PostQuitMessage()
11599           - Removed old debug code that would call XplatUI for exception
11600             display, enabled standard exception handling (Still not enabled
11601             though, until NativeWindow's ExternalExceptionHandler define
11602             is removed
11603         * NativeWindow.cs:
11604           - Added internal method to allow control to update NativeWindow
11605             after a window has been destroyed
11606           - Added handling of already destroyed windows when calling i
11607             DestroyWindow
11608           - Added removal of handle from list on ReleaseHandle
11609         * XplatUIX11.cs:
11610           - Dropped GetMessageResult var and related code
11611           - Added PostQuitState to field to track if PostQuitMessage has been
11612             called
11613           - Dropped Exit() method
11614           - Added PostQuitMessage() method
11615           - GetMessage now will return false if PostQuitState is set and no
11616             more messages are in the queue.
11617           - Expose handler will no longer generate WM_PAINT messages if we are
11618             in PostQuitState since it's very likely any windows have already
11619             been destroyed, and since Hwnd won't get updated until we have
11620             processed the DestroyNotify we'd be causing X errors.
11621         
11622 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11623
11624         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
11625           Thanks to Mike for pointing out the err of my ways.
11626
11627 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11628
11629         * Control.cs(PreProcessMessage): Moved menu handling back, but
11630           after all other key handling, to match MS (who handles Menu in
11631           DefWndProc)
11632         * Menu.cs (WndProc): Removed my brainfart
11633
11634 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11635
11636         * Control.cs(PreProcessMessage): Removed special menu handling 
11637         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
11638
11639 2005-12-07  Mike Kestner  <mkestner@novell.com>
11640
11641         * Control.cs : special case SYSKEYUP so that we can adjust keynav
11642         state according in tracker.
11643         * Menu.cs : promote tracker field to base class and provide a tracker
11644         lookup capability.  Add/Remove shortcuts dynamically if the top menu
11645         has a tracker. Unparent items that are removed from the collection.
11646         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
11647         * Theme*.cs: add always_show_hotkeys field to support configurability
11648         of mnemonic display.  win32 doesn't show mnemonics until Alt is
11649         pressed.
11650
11651 2005-12-07  Jackson Harper  <jackson@ximian.com>
11652
11653         * MdiChildContext.cs: Use Control.ResetCursor.
11654         * Control.cs: ResetCursor needs to set the property so that the
11655         correct XplatUI call gets made.
11656
11657 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11658
11659         * Control.cs: More fixes to make our key events match MS. We
11660           were not setting the modifier state on KeyData, and we were
11661           not generating any events when Alt was pressed with a key
11662           since handling of WM_SYSxxx was missing for the OnKey methods.
11663
11664 2005-12-07  Jackson Harper  <jackson@ximian.com>
11665
11666         * MdiChildContext.cs: reenable the sizing code.
11667         - When the mouse leaves a window reset its cursor.
11668
11669 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11670
11671         * ThemeClearlooks.cs: Reflect latest Hwnd changes
11672
11673 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11674
11675         * Hwnd.cs: Now using the theme 3d bordersize to calculate
11676           widths of Fixed3D borders
11677
11678 2005-12-07  Jackson Harper  <jackson@ximian.com>
11679
11680         * MdiClient.cs: Fix warnings. Earn Mike's love.
11681
11682 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11683
11684         * ThemeClearlooks.cs:
11685           - Adjusted mouse over button color
11686           - Added first parts of CheckBox drawing
11687           - Added correct color for selected text background
11688           - Fixed ComboBox drawing
11689           - Added CPDrawBorder3D and CPDrawBorder
11690
11691 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11692
11693         * XplatUIX11.cs: Added call to XBell for AudibleAlert
11694
11695 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
11696
11697         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11698           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
11699           alert users via sound. We could add an enum arg with different
11700           types of alerts in the future
11701
11702 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11703
11704         * Control.cs: Fix behaviour problems pointed out by Mike
11705
11706 2005-12-05  Mike Kestner  <mkestner@novell.com>
11707
11708         * StatusBarPanel.cs: add Invalidate method and hook it into all the
11709         prop setters.  Calls parent.Refresh for now, but could be maybe be
11710         optimized with an internal method on StatusBar at some point.
11711         [Fixes #76513]
11712
11713 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
11714
11715         * RichTextBox.cs: Implemented get_SelectionColor
11716
11717 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
11718
11719         * ThemeClearlooks.cs:
11720           - Removed dead code
11721           - Draw black button border only if button is Form.AcceptButton
11722           - Draw correct button color for pressed RadioButton if the mouse 
11723             has entered the button
11724           - Updated ProgressBar drawing!
11725           - Updated CPDrawSizeGrip drawing
11726           - Updated StatusBarPanel drawing
11727
11728 2005-12-05  Mike Kestner  <mkestner@novell.com>
11729
11730         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
11731         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
11732
11733 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
11734
11735         * ThemeClearlooks.cs: Initial check-in, activate with
11736           export MONO_THEME=clearlooks
11737         * ThemeEngine.cs: Added ThemeClearlooks
11738
11739 2005-12-03  Mike Kestner  <mkestner@novell.com>
11740
11741         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
11742         [Fixes #76897]
11743
11744 2005-12-02  Jackson Harper  <jackson@ximian.com>
11745
11746         * Form.cs: If the child form has no menu the default main menu is
11747         used as the active menu.
11748
11749 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
11750
11751         * ListBox.cs: Check if any items exist before trying to resolve 
11752           coordinates into items
11753
11754 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11755
11756         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
11757           as the second color for the background hatch
11758
11759 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11760
11761         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
11762         * RichTextBox.cs: FormatText position arguments are 1-based, now making
11763           sure that what we pass to FormatText is always 1-based. Fixes #76885
11764
11765 2005-11-29  Miguel de Icaza  <miguel@novell.com>
11766
11767         * NumericUpDown.cs (EndInit): When we are done initializing,
11768         reflect any updates on the UI.
11769
11770 2005-12-02  Jackson Harper  <jackson@ximian.com>
11771
11772         * ImplicitHScrollBar.cs:
11773         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
11774         their container controls.
11775         * TreeView.cs: Use the new implicit scrollbars.
11776
11777 2005-12-02  Jackson Harper  <jackson@ximian.com>
11778
11779         * TreeView.cs: Make top_node internal so the TreeNodeCollections
11780         can play with it.
11781         * TreeNodeCollection.cs: If we remove the topnode we need to
11782         update topnode to the next node in line.
11783         - When clearing nodes go through the same process as removing
11784         them, so they get depareneted and checked if they are top node.
11785
11786 2005-12-01  Jackson Harper  <jackson@ximian.com>
11787
11788         * TreeView.cs: When imagelists are used the image area is
11789         selectable as well as the text.
11790         - If there are no selected nodes select the first one.
11791         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
11792         so don't do it more then we need to.
11793
11794 2005-12-01  Jackson Harper  <jackson@ximian.com>
11795
11796         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
11797         that arrows can be scaled.
11798
11799 2005-12-01  Jackson Harper  <jackson@ximian.com>
11800
11801         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
11802         fail. Patch by Dieter Bremes
11803
11804 2005-11-30  Jackson Harper  <jackson@ximian.com>
11805
11806         * Form.cs: Property is 2.0 only
11807         * PrintDialog.cs: Signature fix.
11808
11809 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11810
11811         * TextControl.cs: 
11812           - No longer artificially moves text 2 pixels down (now that we have
11813             borders this is no longer needed)
11814           - Added calcs for left, hanging and right indent
11815
11816 2005-11-23  Mike Kestner  <mkestner@novell.com>
11817
11818         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
11819
11820 2005-11-30  Jackson Harper  <jackson@ximian.com>
11821
11822         * MdiChildContext.cs: Set the cloned menus forms, as these don't
11823         get cloned as part of CloneMenu ().
11824         * Menu.cs: Make sure the parent of the items get set correctly
11825         when they are added.  And the owners are notified of the changes.
11826         * Form.cs: Create an ActiveMenu property, so that when MDI is used
11827         we can change the menu being displayed/handled by the form without
11828         changing the menu assosciated with the form.
11829         - Don't let Mdi children draw/handle menus.
11830         
11831 2005-11-30  Jackson Harper  <jackson@ximian.com>
11832
11833         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
11834         a MenuChanged event. Just to make the API a little more
11835         consistent.
11836         * MainMenu.cs:
11837         * MenuItem.cs: Use the new OnMenuChanged
11838         * MdiChildContext.cs: Handle menu merging.
11839         * Form.cs: Implement MergedMenu.
11840         
11841 2005-11-30  Jackson Harper  <jackson@ximian.com>
11842
11843         * Menu.cs: We were misusing Add. Add goes behind the specified
11844         index according to the docs, and does not replace the specified
11845         index. So I added an Insert method.
11846
11847 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11848
11849         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
11850           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
11851           is for Jackson
11852         * RichTextBox.cs: Added calls to base for DnD events
11853
11854 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
11855
11856         * TextControl.cs:
11857           - Fixed drag-selection related crash; style fixes
11858           - Implemented undo class
11859             o Implemented method to capture document state for specified
11860               range in document tree
11861             o Implemented method to restore captured document state
11862             o Implemented cursor tracking
11863             o Implemented basic undo stack
11864           - Added undo cursor tracking to methods altering cursor location
11865           - Added undo tracking to selection deletion (still missing
11866             other text-altering hookups)
11867         * RichTextBox.cs:
11868           - Added SelectionLength property
11869           - Implemented CanPaste()
11870           - Implemented Paste()
11871           - Added missing protected methods
11872           - Fixed RTF->Document conversion; now uses font index 0 and color 
11873             index 0 as the default font for the parsed text
11874           - Fixed RTF<->Document font size translation
11875           - Fixed RTF generation, now properly handles cross-tag boundaries
11876             for single line selection
11877           - No longer always appends blank line to generated RTF
11878           - Removed TODOs
11879           - Added missing attributes
11880           - Hooked up undo-related methods
11881         * TextBoxBase.cs:
11882           - Implemented Copy()
11883           - Implemented Paste()
11884           - Implemented Cut()
11885           - Fixed caret mis-behaviour on backspace across line-boundaries
11886
11887 2005-11-29  Jackson Harper  <jackson@ximian.com>
11888
11889         * MdiClient.cs: Add a method for activating mdi children. Very
11890         basic right now. I imagine someday it might need more girth.
11891         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
11892         children windows names are added to the menu item.
11893         * ThemeWin32Classic.cs: Draw the arrow if the item is an
11894         mdilist. This happens regardless of whether or not there are any
11895         mdi windows to see in the list, and according to my tests happens
11896         before the items are even added. Also happens if there isn't even
11897         an mdi client to get windows from.
11898
11899 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
11900
11901         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
11902         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
11903
11904 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
11905
11906         * DataGridTableStyle.cs:
11907           - Create always the styles for the missing columns even if they are
11908             provided by the user (not default table style)
11909         * DataGrid.cs:
11910           - Fixes bug 76770
11911           - Fixes SetDataBinding (always re-attach source)
11912           - Fixes SetNewDataSource (only clear styles if they are not for 
11913             this source)
11914          -  Expands OnTableStylesCollectionChanged to handle style refresh 
11915             and remove properly
11916
11917 2005-11-29  Jackson Harper  <jackson@ximian.com>
11918
11919         * FileDialog.cs: Implement missing bits, remove some dead
11920         code.
11921         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
11922         creation of the panel so that the options set on the dialog are
11923         seen when the panel is created.
11924         * TreeView.cs: raise a click when items are clicked.
11925         
11926 2005-11-29  Jackson Harper  <jackson@ximian.com>
11927
11928         * MdiClient.cs: Pass some signature methods through to base.
11929
11930 2005-11-28  Jackson Harper  <jackson@ximian.com>
11931
11932         * ListView.cs: Raise the click event when items are clicked.
11933
11934 2005-11-28  Jackson Harper  <jackson@ximian.com>
11935
11936         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
11937         a nullref.
11938
11939 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
11940
11941         * ThemeNice.cs: - Removed 1 pixel bitmaps
11942           - Use SmoothingMode.AntiAlias where it makes sense
11943             (ScrollButton arrow for example)
11944           - Enhanced Button focus drawing
11945           - Fixed ComboBox drawing (no artefacts anymore, focus
11946             rectangle is back again, reduced size of ComboButton, etc.)
11947           - Fixed RadioButton focus drawing for Appearence.Button
11948           - Slight ScrollButton redesign
11949           - Some LinearGradientBrush size fixes
11950           - GroupBoxes have now rounded edges
11951           - Fixed StatusBar drawing
11952
11953 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
11954
11955         * ThemeNice.cs: - Remove dead code
11956           - use correct background colors for menus, etc.
11957           - Fake pixel drawing with 1 pixel bitmaps
11958
11959 2005-11-24  Jackson Harper  <jackson@ximian.com>
11960
11961         * MdiClient.cs: Size the scrollbars when resizing the window.
11962         - Resize the maximized windows when the client is resized
11963         * Form.cs: Make the child context available
11964         
11965 2005-11-23  Jackson Harper  <jackson@ximian.com>
11966
11967         * MdiChildContext.cs: Don't size windows if they are maximized.
11968
11969 2005-11-23  Mike Kestner  <mkestner@novell.com>
11970
11971         * ContextMenu.cs: use MenuTracker.
11972         * Control.cs: remove menu handle usage.
11973         * Form.cs: remove menu handle usage.
11974         * Hwnd.cs: remove menu handle usage.
11975         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
11976         motion and clicks to the new Tracker handlers.
11977         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
11978         and handle usage.
11979         * MenuAPI.cs: refactored to combine popup and menubar event handling.
11980         Killed the MENU and MENUITEM data types and associated collections
11981         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
11982         MenuTracker class that exposes the leftovers from the old MenuAPI
11983         static methods. Restructured Capture handling so that only one grab is
11984         done for the entire menu hierarchy instead of handing off grabs to
11985         submenus. Tracker now has an invisible control to Capture when active.
11986         * MenuItem.cs: add sizing accessors, kill Create
11987         and handle usage.
11988         * Theme.cs: remove menu handle and MENU(ITEM) usage.
11989         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
11990         MENU(ITEM). remove menu handle usage, use Menu directly.
11991         * XplatUIDriver.cs: remove menu handle usage.
11992         * XplatUIOSX.cs: remove menu handle usage.
11993         * XplatUIWin32.cs: remove menu handle usage.
11994         * XplatUIX11.cs: remove menu handle usage.
11995
11996 2005-11-22  Jackson Harper  <jackson@ximian.com>
11997
11998         * Hwnd.cs: Don't compute the menu size for
11999         DefaultClientRectangle.
12000         - Reenable menu sizes being computed for GetClienRectangle.
12001         * Form.cs: Remove comment of trechery
12002         
12003 2005-11-22  Jackson Harper  <jackson@ximian.com>
12004
12005         * Hwnd.cs: The adjustments for the menu bar are made when it is
12006         attached to the form.
12007
12008 2005-11-19  Jackson Harper  <jackson@ximian.com>
12009
12010         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
12011         (just like on windows).
12012
12013 2005-11-19  Jackson Harper  <jackson@ximian.com>
12014
12015         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
12016         use real buttons anymore because they are in non client area. The
12017         one TODO here is that I need to somehow invalidate a section of
12018         the non client area.
12019
12020 2005-11-18  Jackson Harper  <jackson@ximian.com>
12021
12022         * Control.cs: Put the enum check back in now that MDI doesnt have
12023         to use this to set border styles.
12024         * Form.cs: Only set mdi child windows borders if the handle has
12025         been created.
12026         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
12027         this directly on to the driver.
12028         - Get the move start position before adjusting for the titlebar
12029         height, this fixes the windows "skipping" when they are first
12030         moved.
12031
12032 2005-11-18  Jackson Harper  <jackson@ximian.com>
12033
12034         * XplatUIX11.cs: Just compute the mdi borders separately as they
12035         don't totally match up with normal form borders.
12036
12037 2005-11-18  Jackson Harper  <jackson@ximian.com>
12038
12039         * Control.cs: Set WS_ styles for borders, so that the driver does
12040         not have to retrieve the control instance to figure out what kind
12041         of borders it should have.
12042         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
12043         driver can know its an mdi child easily.
12044         * XplatUIX11.cs: Get the border styles and whether the window is
12045         MDI from the Styles and ExStyles params instead of having to get a
12046         control. This prevents a chicken and egg problem.       
12047
12048 2005-11-18  Jackson Harper  <jackson@ximian.com>
12049
12050         * MdiClient.cs: Fix typo so scrollbars show up correctly.
12051
12052 2005-11-18  Jackson Harper  <jackson@ximian.com>
12053
12054         * MdiClient.cs: Calculate when to add and remove scrollbars
12055         correctly.
12056         * MdiChildContext.cs: Adjust the y position to take the titlebar
12057         into account.
12058         - No height for FormBorderStyle.None
12059
12060 2005-11-18  Jackson Harper  <jackson@ximian.com>
12061
12062         * Control.cs: Allow non enum values to be used for
12063         InternalBorderStyle.  MDI does this to set a special border style.
12064         - New utility methods for converting points to/from client coords
12065         - Add the newly created control to the Controls collection before
12066         updating its style. This way UpdateStyle can walk the control
12067         heirarchy to find the control if needed.
12068         so I don't need to create a new Point object all the time.
12069         * Form.cs: Let MDI windows handle their border styles.
12070         - Set styles on MDI windows so the correct title style is derived.
12071         * MdiChildContext.cs: Move all the painting and window handling
12072         into the non client area.
12073         - Use correct sizing and put correct buttons on frames based on
12074         the FormBorderStyle.
12075         - Notify the mdi client about scrolling
12076         - Need to handle the buttons ourselves now, because they are all
12077         in non client areas and we can't add controls there.
12078         * MdiClient.cs: Halfway to scrolling, this implementation is
12079         somewhat broken though, we need to check to make sure other
12080         windows aren't causing scrolling before removing the bars. Also
12081         the bars need to be drawn on top, maybe I can switch implicit
12082         controls to be on top.
12083         * Hwnd.cs: caption_height and tool_caption_height are now
12084         properties of an hwnd, this way they can be set by the driver
12085         based on the type of window they are.  In X11 the window manager
12086         handles the decorations so caption_height is zero unless its an
12087         MDI window.
12088         - Add 3 pixel borders for MDI windows (0xFFFF).
12089         - Get rid of some code duplication, have DefaultClientRectanle
12090         just call GetClientRectangle.
12091         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
12092         Hwnd now.
12093         - Set border styles differently for mdi windows.
12094         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
12095         Hwnd now.
12096         
12097 2005-11-15  Mike Kestner  <mkestner@novell.com>
12098
12099         * Menu.cs: when adding an item to the collection, if item is already 
12100         parented, remove it from the parent.
12101
12102 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
12103
12104         * X11DesktopColors.cs: Added KDE support
12105
12106 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
12107
12108         * XplatUIWin32.cs: 
12109           - Clipboard methods now can translate Rtf format
12110           - No longer removes clipboard contents whenever a new format is added
12111             to allow placing multiple formats on the clipboard
12112         * Clipboard.cs: Clipboard now supports getting a IDataObject and
12113           will place all formats contained in it onto the clipboard. Also
12114           now cleans the clipboard before placing a new object onto it
12115         * RichTextBox.cs:
12116           - Implemented set_Rtf
12117           - Implemented set_SelectedRtf
12118           - Created InsertRTFFromStream() method to allow single code base
12119             for all properties and methods that insert RTF into document
12120           - Removed debug output
12121         * TextControl.cs:
12122           - Fixed Delete(int) to fix up line numbers
12123           - Fixed ReplaceSelection to combine start and end line
12124           - Fixed serious DeleteChars bug that would leave the document tree
12125             broken
12126           - Improved DumpTree with several logic checks to detect broken
12127             document trees
12128           - Removed debug lines
12129           - Fixed Caret.WordForward/WordBack moving code, now always also 
12130             updates caret.tag (fixes crash when word-selecting across tag
12131             boundaries via keyboard)
12132           - Added Insert() method for inserting multiline text into documents
12133           - Fixed DeleteChars() calculation errors that would cause a broken
12134             tag chain with multiple tag lines
12135           - DeleteChars() no longer crashes on multi-tag lines if not all tags
12136           - Split() no longer moves caret if split is at caret location
12137           - ReplaceSelection() now updates the cursor and re-displays it
12138           - ReplaceSelection() now uses new Insert() method to avoid code
12139             duplication
12140           - FormatText() can now handle formatting partial lines
12141         * TextBoxBase.cs:
12142           - Append now uses new TextControl.Insert() method (this avoids 
12143             duplicate code)
12144           - Implemented Ctrl-X (Cut) (
12145           - Implemented Ctrl-C (Copy)
12146           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
12147             regeneration when pasting text; roundtripping Copy&Paste within
12148             edit control still fails due to some calculation bugs in GenerateRTF)
12149           - The Delete key will now remove the current selection if it is visible
12150         * TextBox.cs: Removed debug lines
12151         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
12152           driver to be initialized and can't therefore be done via a static ctor)
12153
12154 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
12155
12156         * TextControl.cs: Added backend code for finding char arrays and strings
12157         * TextBoxBase.cs:
12158           - Added mouse wheel scroll support
12159           - Added support for VScroll and HScroll events
12160         * RichTextBox.cs:
12161           - Implemented all seven Find() variants
12162           - Implemented GetCharFromPosition()
12163           - Implemented GetCharIndexFromPosition()
12164           - Implemented GetLineFromIndex()
12165           - Implemented GetPositionFromCharIndex();
12166           - Implemented SaveFile for PlainText and UnicodeText
12167           - Fixed set_Font, now setting a new font applies that font to
12168             the whole document
12169           - Implemented generic Document to RTF converter
12170           - Implemented SaveFile for RichText format (still missing unicode
12171             conversion for non-ansi chars)
12172           - Implemented get_Rtf
12173           - Implemented get_SelectedRtf
12174
12175 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
12176
12177         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
12178           to allow any captures to be released before triggering OnClick. This
12179           way a click handler may capture the mouse without interference.
12180         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
12181           This way we send them even though X may not allow a grab (if the window
12182           isn't visible, for example)
12183
12184 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
12185
12186         * DataGridViewRowEventArgs.cs: DataGridView implementation
12187         * DataGridViewElement.cs: DataGridView implementation
12188         * DataGridViewComboBoxCell.cs: DataGridView implementation
12189         * DataGridViewDataErrorContexts.cs: DataGridView implementation
12190         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
12191         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
12192         * ImageLayout.cs: DataGridView implementation
12193         * DataGridViewComboBoxColumn.cs: DataGridView implementation
12194         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
12195         * DataGridViewSelectionMode.cs: DataGridView implementation
12196         * IDataGridViewEditingControl.cs: DataGridView implementation
12197         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
12198         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
12199         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
12200         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
12201         * DataGridViewColumnSortMode.cs: DataGridView implementation
12202         * DataGridView.cs: DataGridView implementation
12203         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
12204         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
12205         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
12206         * Padding.cs: DataGridView implementation
12207         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
12208         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
12209         * DataGridViewRowEventHandler.cs: DataGridView implementation
12210         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
12211         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
12212         * DataGridViewButtonCell.cs: DataGridView implementation
12213         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
12214         * DataGridViewEditMode.cs: DataGridView implementation
12215         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
12216         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
12217         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
12218         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
12219         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
12220         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
12221         * DataGridViewCellEventHandler.cs: DataGridView implementation
12222         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
12223         * DataGridViewCellStyleConverter.cs: DataGridView implementation
12224         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
12225         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
12226         * DataGridViewColumnEventArgs.cs: DataGridView implementation
12227         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
12228         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
12229         * QuestionEventArgs.cs: DataGridView implementation
12230         * IDataGridViewEditingCell.cs: DataGridView implementation
12231         * DataGridViewTriState.cs: DataGridView implementation
12232         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
12233         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
12234         * DataGridViewColumnCollection.cs: DataGridView implementation
12235         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
12236         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
12237         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
12238         * DataGridViewColumn.cs: DataGridView implementation
12239         * DataGridViewCellBorderStyle.cs: DataGridView implementation
12240         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
12241         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
12242         * DataGridViewRow.cs: DataGridView implementation
12243         * DataGridViewImageCellLayout.cs: DataGridView implementation
12244         * DataGridViewImageCell.cs: DataGridView implementation
12245         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
12246         * DataGridViewCheckBoxCell.cs: DataGridView implementation
12247         * DataGridViewHeaderCell.cs: DataGridView implementation
12248         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
12249         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
12250         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
12251         * DataGridViewTextBoxColumn.cs: DataGridView implementation
12252         * QuestionEventHandler.cs: DataGridView implementation
12253         * DataGridViewCellStyleScopes.cs: DataGridView implementation
12254         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
12255         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
12256         * DataGridViewCell.cs: DataGridView implementation
12257         * DataGridViewCellEventArgs.cs: DataGridView implementation
12258         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
12259         * DataGridViewCellStyle.cs: DataGridView implementation
12260         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
12261         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
12262         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
12263         * TextFormatFlags.cs: DataGridView implementation
12264         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
12265         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
12266         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
12267         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
12268         * DataGridViewButtonColumn.cs: DataGridView implementation
12269         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
12270         * HandledMouseEventArgs.cs: DataGridView implementation
12271         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
12272         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
12273         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
12274         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
12275         * DataGridViewRowCollection.cs: DataGridView implementation
12276         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
12277         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
12278         * DataGridViewHitTestType.cs: DataGridView implementation
12279         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
12280         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
12281         * DataGridViewColumnEventHandler.cs: DataGridView implementation
12282         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
12283         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
12284         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
12285         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
12286         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
12287         * DataGridViewContentAlignment.cs: DataGridView implementation
12288         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
12289         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
12290         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
12291         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
12292         * DataGridViewPaintParts.cs: DataGridView implementation
12293         * DataGridViewCellCollection.cs: DataGridView implementation
12294         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
12295         * DataGridViewImageColumn.cs: DataGridView implementation
12296         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
12297         * DataGridViewElementStates.cs: DataGridView implementation
12298         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
12299         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
12300         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
12301         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
12302         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
12303         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
12304         * DataGridViewRowHeaderCell.cs: DataGridView implementation
12305         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
12306         * DataGridViewTextBoxCell.cs: DataGridView implementation
12307         * DataGridViewBand.cs: DataGridView implementation
12308         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
12309         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
12310         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
12311         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
12312         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
12313         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
12314         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
12315         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
12316         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
12317         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
12318         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
12319
12320 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
12321
12322         * ThemeWin32Classic.cs: 
12323           - Draw the outside focus rectangle around buttons
12324           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
12325             doesn't use end caps for every dash of a line anymore. This
12326             workaround ignores the forecolor.
12327
12328 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
12329
12330         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
12331           endian safe.
12332
12333 2005-11-07  Jackson Harper  <jackson@ximian.com>
12334
12335         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
12336
12337 2005-11-07  Jackson Harper  <jackson@ximian.com>
12338
12339         * ScrollableControl.cs: Calculate the maximum and change vars
12340         (more) correctly so that scrollbars appear as a sensible size.
12341
12342 2005-11-04  Jackson Harper  <jackson@ximian.com>
12343
12344         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
12345         collection.
12346         * TreeView.cs: When the tree is sorted null out the top_node so
12347         that it is recalculated.
12348         - Use dotted lines instead of dashed lines to match MS better.
12349
12350 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
12351
12352         * ListView.cs: 
12353           - Implements key search for items. Useful when browsing files with FileDialog
12354           - When changing view mode or when clear the items reset scrollbar positions
12355
12356 2005-11-04  Jackson Harper  <jackson@ximian.com>
12357
12358         * CurrencyManager.cs: Implement the MetaDataChanged event, the
12359         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
12360         as to what the method may do as there is no real way of creating a
12361         derived CurrencyManager and calling the method. 
12362
12363 2005-11-03  Jackson Harper  <jackson@ximian.com>
12364
12365         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
12366         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
12367         method which seems to just be used internally to refresh the tabs.
12368
12369 2005-11-03  Jackson Harper  <jackson@ximian.com>
12370
12371         * TabControl.cs: Implement the remove method. Fix some broken
12372         comments.
12373
12374 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12375
12376         * DateTimePicker.cs:
12377           - Added missing DateTimePickerAccessibleObject class
12378           - Added missing events
12379           - Added OnFontChanged method
12380         * Form.cs: Added missing attributes
12381         * TreeView.cs: Added missing attributes
12382
12383 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
12384
12385         * GridItemCollection.cs: Fix signatures
12386
12387 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12388
12389         * XplatUI.cs: Updated build rev/date
12390         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
12391           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
12392         * Application.cs: Trigger context-specific ExitThread events
12393
12394 2005-11-03  Jackson Harper  <jackson@ximian.com>
12395
12396         * Menu.cs:
12397         * MainMenu.cs:
12398         * GridTableStylesCollection.cs:
12399         * Timer.cs:
12400         * TabPage.cs:
12401         * HelpProvider.cs:
12402         * StatusBar.cs:
12403         * MonthCalendar.cs: Signature fixes
12404
12405 2005-11-03  Jackson Harper  <jackson@ximian.com>
12406
12407         * TreeNodeCollection.cs: Remove should not be virtual.
12408         * TreeView.cs: Implement the last of the missing methods.
12409
12410 2005-11-03  Jackson Harper  <jackson@ximian.com>
12411
12412         * TreeNodeConverter.cs: Implement to get off my class-status back.
12413
12414 2005-11-03  Jackson Harper  <jackson@ximian.com>
12415
12416         * TreeView.cs: Hookup the bits for drag and drop.
12417         * TreeNode.cs: Don't cache the tree_view or index anymore, now
12418         that nodes can be moved from tree to tree easily this just causes
12419         all sorts of problems.
12420         * TreeNodeCollection: Don't need to give treenodes an index and
12421         treeview anymore when they are added, these are computed on the
12422         fly. Also make sure to remove a node before its added.
12423
12424 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12425
12426         * TextControl.cs:
12427           - Added CaretSelection enum
12428           - Added comparison methods to Marker struct, makes selection code
12429             more readable
12430           - Added SelectionStart and SelectionEnd as 'moveable' location for
12431             the CaretDirection enum and handler
12432           - Added selection_prev variable to track optimized invalidation for
12433             word and line selection
12434           - Added SelectionVisible property (returns true if there is a valid 
12435             selection)
12436           - Switched CaretHasFocus to only display the caret if there is no
12437             visible selection
12438           - Avoiding StringBuilder.ToString to retrieve a single char, instead
12439             using the direct character index; should be much faster
12440           - Added various conditional debug statements
12441           - Fixed invalidation calculation for selection ranges
12442           - Added ExpandSelection() method to support word and line selection
12443           - Switched SetSelectionToCaret to use new Marker compare overloads
12444           - Added central IsWordSeparator() method to determine word 
12445             separators/whitespace and FindWordSeparator() to streamline common
12446             usage of IsWordSeparator()
12447         * TextBoxBase.cs:
12448           - Removed unneeded grabbed variable, it was just mirroring
12449             Control.Capture
12450           - No longer firing OnTextChanged event when Text setter is called,
12451             since the base will fire the event for us
12452           - Added handling of Ctrl-Up/Down selection
12453           - Added handling of Shift-Cursorkey selection
12454           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
12455             words
12456           - Added handling of Shift and Ctrl-Shift-Home/End selection
12457           - Removed some debug output
12458           - Added handling for single/double/tripple-click to place caret/
12459             select word/select line respectively (Fixes bug #76031)
12460           - Added support for drag expansion of word/line selection
12461         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
12462           current selection
12463
12464 2005-11-02  Jackson Harper  <jackson@ximian.com>
12465
12466         * X11Dnd.cs: If the drag is going to and from a MWF window just
12467         copy the data instead of sending it out through the X Selection
12468         mechanism.
12469
12470 2005-11-02  Jackson Harper  <jackson@ximian.com>
12471
12472         * X11Dnd.cs:
12473         * XplatUIX11.cs: When in a drag we don't want motion notify
12474         messages to get passed on to the other controls. This prevents
12475         mouse move messages from showing up in the drag source.
12476
12477 2005-11-02  Jackson Harper  <jackson@ximian.com>
12478
12479         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
12480         the correct button is release to end a drag.
12481         * XplatUIX11.cs: Make the button state internal so the drag system
12482         can access it.  Dragging needs to know about all button releases,
12483         not just left button.
12484
12485 2005-11-02  Miguel de Icaza  <miguel@novell.com>
12486
12487         * Form.cs (Icon): If the icon is null, reset the icon to the
12488         default value. 
12489
12490         * Cursor.cs: When writing the AND-mask bitmap do not include the
12491         number of colors, but hardcode those to two (black and white),
12492         fixes the loading of color cursors (Paint Dot Net).
12493
12494         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
12495         turn off autoscaling.
12496
12497         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
12498
12499 2005-11-02  Jackson Harper  <jackson@ximian.com>
12500
12501         * X11Dnd.cs: Make sure to send a status message if the pointer
12502         enters a control that can not accept a drop, otherwise the cursor
12503         isn't updated correctly. Also tried to compress the lines of code
12504         a bit.
12505
12506 2005-11-02  Jackson Harper  <jackson@ximian.com>
12507
12508         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
12509         set actions correctly.  This isn't perfect as XDND and win32 have
12510         some differences on how you allow actions. I'll clear this up by
12511         adding a path for drag from MWF to MWF windows.
12512         * XplatUIX11.cs: Hook into the dnd system.
12513
12514 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
12515
12516         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
12517         previously shown but they are no longer need it. Very obvious when 
12518         browsing files with FileDialog.
12519
12520 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
12521
12522         * Control.cs: We always need to call OnPaintBackground. We pretty much
12523           ignore AllPaintingInWmPaint and always do the painting there, whether 
12524           it's set or not, since we always ignore the WM_ERASEBKGND message 
12525           (which we don't generate on X11). This fixes #76616.
12526         * Panel.cs: Removed unneeded background painting. This happens properly
12527           in Control.cs already
12528
12529 2005-10-31  Mike Kestner  <mkestner@novell.com>
12530
12531         * Menu.cs: Add items to collection before setting their index.
12532         * MenuItem.cs : add range checking with ArgumentException like MS.
12533         [Fixes #76510]
12534
12535 2005-10-31  Jackson Harper  <jackson@ximian.com>
12536
12537         * ListBox.cs: Invalidate if the area is visible at all not just
12538         contained in the visible rect. Fixes unselection of semi visible
12539         items.
12540
12541 2005-10-31  Jackson Harper  <jackson@ximian.com>
12542
12543         * Control.cs: Consistently name the dnd methods. Make them
12544         internal so we can override them to match some MS behavoir
12545         internally.
12546         * Win32DnD.cs: Use the new consistent names.
12547
12548 2005-10-31  Jackson Harper  <jackson@ximian.com>
12549
12550         * TreeView.cs: Don't draw the selected node when we lose focus.
12551
12552 2005-10-31  Jackson Harper  <jackson@ximian.com>
12553
12554         * X11Dnd.cs: We still need to reset the state even though a full
12555         reset isn't being done, otherwise status's still get sent all over
12556         the place.
12557
12558 2005-10-31  Jackson Harper  <jackson@ximian.com>
12559
12560         * Control.cs: Make the dnd_aware flag internal so the dnd
12561         subsystem can check it. Catch exceptions thrown in dnd handlers to
12562         match MS behavoir.
12563         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
12564         * X11Dnd.cs: Handle null data in the converters. Set the XDND
12565         version when sending a XdndEnter. Use the control/hwnd dnd_aware
12566         flags to reduce the number of dnd enters/status's sent.
12567
12568 2005-10-31  Jackson Harper  <jackson@ximian.com>
12569
12570         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
12571
12572 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
12573
12574         * PictureBox.cs: Fixes 76512
12575
12576 2005-10-28  Jackson Harper  <jackson@ximian.com>
12577
12578         * X11Dnd.cs: Early implementation to support winforms being a drag
12579         source for data on X11. Also restructured the converters so they
12580         can go both ways now.
12581         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
12582         
12583 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
12584
12585         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
12586           clipboard requests
12587
12588 2005-10-27  Jackson Harper  <jackson@ximian.com>
12589
12590         * TreeNode.cs: Implement serialization so my DnD examples will work.
12591
12592 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
12593
12594         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
12595           TreeView.cs: Don't dispose objects that are not owned.
12596           
12597 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
12598
12599         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
12600           should retrieve the current cursor and report that, but XplatUI
12601           doesn't (yet) have an interface for that (and I'm not sure I even
12602           can, on X11)
12603         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
12604           until any message loop processing is done (and the WM_SETCURSOR
12605           replaces the cursor to the proper one)
12606         * XplatUIX11.cs: 
12607           - Fixed override behaviour, we can't set the cursor globally on X11, 
12608             just for our windows.
12609           - Invalidating the System.Drawing X11 display handle when we are
12610             shutting down
12611         * Control.cs: Fix to make csc happy
12612
12613 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
12614
12615         * TextBoxBase.cs: 
12616           - get_Text: Add last line (without trailing newline) to returned
12617             value (Fixes 76212)
12618           - get_TextLength: Count last line in returned length
12619           - ToString: Call Text property instead of duplicating code
12620
12621 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
12622
12623         * ImageList.cs: Dispose ImageAttributes objects.
12624
12625 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12626
12627         * ImageList.cs: Use attribute constructors with less arguments where
12628           possible.
12629
12630 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12631
12632         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
12633           Use typeof instead of strings when assembly is referenced. Added
12634           some more comments.
12635
12636 2005-10-21  Jackson Harper  <jackson@ximian.com>
12637
12638         * ListView.cs: Raise a double click event. Also tried to somewhat
12639         fix when the selectedindexchanged event is raised. Its still
12640         broken though.
12641
12642 2005-10-21  Jackson Harper  <jackson@ximian.com>
12643
12644         * TreeView.cs: New method to invalidate the plus minus area of a
12645         node without invalidating the whole node (maybe this can be used
12646         in some more places).
12647         * TreeNodeCollection.cs: When adding to an empty node we need to
12648         invalidate its plus minus area so the little block shows up.
12649         
12650 2005-10-21  Jackson Harper  <jackson@ximian.com>
12651
12652         * TreeView.cs: Make sure that when we invalidate a node the bounds
12653         are big enough to cover the selected box and the focus
12654         rectangle. Use a different colour for the lines connecting nodes
12655         so they show up with all themes.
12656
12657 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12658
12659         * NativeWindow.cs: Don't call anything that could call into the driver,
12660           we might be on a different thread.
12661
12662 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
12663
12664         * Control.cs(Dispose): Since Dispose might run on a different thread,
12665           make sure that we call methods that could call into the driver via
12666           invoke, to avoid thread issues
12667
12668 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12669
12670         * XplatUI.cs: Removed finalizer
12671         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
12672           not allowing to be called on the finalizer thread.
12673
12674 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
12675
12676         * ImageList.cs:
12677           - Reverted r51889 and r51891.
12678           - Added ImageListItem class that stores unmodified image items and image
12679             properties required to create list images until handle is created.
12680           - Added AddItem and moved image creation logic to AddItemInternal.
12681           - Added CreateHandle method that creates images based on unmodified items.
12682           - Added DestroyHandle that changes state to store unmodified items.
12683           - Add and AddStrip methods no more create handle.
12684           - ReduceColorDepth has no return value.
12685           - Dispose destroys handle.
12686           - Modified other methods to reflect the above changes.
12687           - Implemented key support.
12688           - Added profile 2.0 members and attributes.
12689           - Added private Reset and ShouldSerialize methods that provide the same
12690             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
12691             them as they are private.
12692           - Added some more comments about implementation details.
12693
12694 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12695
12696         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
12697
12698 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12699
12700         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
12701
12702 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12703
12704         * DataGridDrawingLogic.cs: Fixes column hit calcultation
12705         * DataGridColumnStyle.cs: Remove debug message
12706
12707 2005-10-20  Jackson Harper  <jackson@ximian.com>
12708
12709         * TreeView.cs: We can always get input keys regardless of whether
12710         or not editing is enabled. They are used for navigation.
12711
12712 2005-10-20  Jackson Harper  <jackson@ximian.com>
12713
12714         * TreeNode.cs: Use the viewport rect for determining if a node
12715         needs to be moved for visibility. Don't use Begin/End edit. This
12716         calls a full refresh when its done.
12717         * TreeView.cs: New SetBottom works correctly.  Make the viewport
12718         rect property internal so the treenodes can see it. When clicking
12719         on a node we need to ensure that its visible because it might just
12720         be partly visible when clicked.
12721
12722 2005-10-20  Jackson Harper  <jackson@ximian.com>
12723
12724         * TreeNodeCollection.cs: Remove debug code.
12725
12726 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12727
12728         * Datagrid.cs: Implements column sorting in Datagrid
12729         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
12730
12731 2005-10-20  Jackson Harper  <jackson@ximian.com>
12732
12733         * TreeNodeCollection.cs: Remove items properly. Update the correct
12734         area after removing them.
12735
12736 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12737
12738         * Datagrid.cs: Should not call base.OnPaintBackground
12739
12740 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12741
12742         * XplatUIX11.cs (GetMessage):
12743           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
12744             window instead of client window
12745           - Now properly calculates NC_xBUTTONUP message coordinates
12746           - ScreenToMenu now properly calculates it's coordinates of whole 
12747             window, since menus are in the whole window, not in the client
12748             window
12749           - Added WholeToScreen coordinate translation method
12750
12751 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
12752
12753         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
12754           want to return a message, loop back to the beginning of the function
12755           and grab the next real message to process instead.
12756
12757 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12758
12759         * Splitter.cs: Properly set limits if no filler control is used
12760
12761 2005-10-19  Jackson Harper  <jackson@ximian.com>
12762
12763         * ColorDialog.cs: Don't show the help button if it is not enabled
12764         instead of disabling it (this is what MS does). Don't create the
12765         panel until the dialog is run, otherwise the vars (such as
12766         ShowHelp) are not set yet.
12767
12768 2005-10-19  Jackson Harper  <jackson@ximian.com>
12769
12770         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
12771         are reduced when adding nodes.
12772         * TreeNode.cs:
12773         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
12774         tree.
12775         
12776 2005-10-19  Jackson Harper  <jackson@ximian.com>
12777
12778         * FolderBrowserDialog.cs: End editing our treeview so the window
12779         actually gets refreshed.
12780
12781 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12782
12783         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
12784           Obsoleted handling of WM_ERASEBKGND, now always draws our background
12785           inside of WM_PAINT
12786
12787 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12788
12789         * MenuAPI.cs: Returns after Hidding window
12790         * XplatUIX11.cs: Added TODO found while debugging menu issues
12791
12792 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12793
12794         * XplatUIX11.cs: Do not re-map the whole window when it's size
12795           becomes non-zero unless it's supposed to be actually visible
12796
12797 2005-10-18  Jackson Harper  <jackson@ximian.com>
12798
12799         * TreeView.cs: We don't need to keep a count anymore.
12800         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
12801         use the Grow method.
12802
12803 2005-10-18  Jackson Harper  <jackson@ximian.com>
12804
12805         * TreeNodeCollection.cs: Insert is not supported on arrays, so
12806         implement it manually here.
12807
12808 2005-10-18  Jackson Harper  <jackson@ximian.com>
12809
12810         * ImageList.cs: Dont kill the list when the colour depth is
12811         changed, just change the colour depth of all the images.
12812         - Same goes for setting the image size. Just resize them all
12813         instead of killing the list softly.
12814
12815 2005-10-18  Jackson Harper  <jackson@ximian.com>
12816
12817         * Control.cs: Don't invalidate empty rectangles.
12818
12819 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12820
12821         * ListViewItem.cs:
12822           - Adds checked item to the Checked/Item lists (where empty before)
12823           - Do not add items to the Selected lists if they are already present
12824         * ListView.cs:
12825           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
12826           - When deleting items make sure that we delete them for the Selected
12827           and Checked list also.
12828
12829 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12830
12831         * Label.cs: Dispose objects no longer used
12832         * ThemeWin32Classic.cs: Dispose objects no longer used
12833
12834 2005-10-18  Jackson Harper  <jackson@ximian.com>
12835
12836         * TabControl.cs: Don't refresh the whole control when the tabs are
12837         scrolled, we just need to refresh the tab area.
12838
12839 2005-10-17  Jackson Harper  <jackson@ximian.com>
12840
12841         * XplatUIX11.cs: Compress code a little bit. Only calculate the
12842         after handle when we need it.
12843
12844 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12845
12846         * Control.cs: When the parent size changes, recalculate anchor 
12847           positions. Partial fix for #76462
12848
12849 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12850
12851         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
12852           drawn. Fixes #76462
12853
12854 2005-10-17  Jackson Harper  <jackson@ximian.com>
12855
12856         * MonthCalendar.cs: Don't create the numeric up down until our
12857         handle is created. Otherwise our handle is created in the
12858         constructor and we don't know if we are a WS_CHILD or WS_POPUP
12859         yet.
12860
12861 2005-10-17  Jackson Harper  <jackson@ximian.com>
12862
12863         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
12864         correctly.
12865
12866 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12867         * TreeNode.cs : small logical fix (was using local var instead of field)
12868         
12869 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12870
12871         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
12872
12873 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12874
12875         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
12876
12877 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
12878
12879         * Control.cs: 
12880           - Re-implemented anchoring code. My first version was really broken.
12881             This fixes bug #76033. Unlike the previous implementation we will
12882             no longer have round errors since all numbers are calculated from
12883             scratch every time. Removed various anchor-related obsolete vars.
12884           - InitLayout no longer causes layout event firing and layout to be 
12885             performed
12886
12887 2005-10-16  Jackson Harper  <jackson@ximian.com>
12888
12889         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
12890         which was broken).
12891
12892 2005-10-16  Jackson Harper  <jackson@ximian.com>
12893
12894         * TabControl.cs: Remove debug code.
12895
12896 2005-10-16  Jackson Harper  <jackson@ximian.com>
12897
12898         * XEventQueue.cs: Increase the default queue size (very simple
12899         apps needed to grow the queue).
12900         * Hwnd.cs: No finalizer so we don't need to suppress
12901         finalization. Compute the invalid area manually so a new rectangle
12902         does not newto be created.
12903         * ScrollableControl.cs: Don't set any params (otherwise visibility
12904         isn't set correctly).
12905         * MdiChildContext.cs: New constructor takes the mdi parent so it
12906         doesn't have to be computed and avoids a crash on windows. Draw
12907         the window icon properly, and allow the text to be seen.
12908         * Form.cs: Use new MdiChildContext constructor. Make sure the
12909         child context isn't null in wndproc.
12910         * TabControl.cs: Don't set focus, this is muddling keyboard
12911         behavoir. Expand the tab rows when a window size increase will
12912         allow extra tabs to be seen. Don't allow tabs smaller than the
12913         width of a window to be scrolled out of view.
12914         * TreeNode.cs:
12915         * TreeView.cs: Use measure string to calculate a nodes width, the
12916         width is cached and only updated when the text or the font is
12917         changed. Don't check for expand/collapse clicks on the first level
12918         nodes if root lines are disabled.
12919         
12920 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
12921
12922         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
12923
12924 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12925
12926         * DataGridBoolColumn.cs: fixes warning
12927
12928 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12929
12930         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
12931         to match more to match more precisely the MS Net behavior
12932
12933 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12934
12935         * Hwnd.cs: Added field to track if window is mapped
12936         * XplatUIX11.cs: 
12937           - Unmap windows if they become 0-size, re-map when 
12938             they are >0 again; fixes #76035
12939           - Re-set our error handler after initializing X11Desktop
12940             to override any error handlers Gtk or whatever was called
12941             may have set.
12942
12943 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12944
12945         * CheckedListBox.cs: Removed unused vars
12946         * ListView.cs: Fixed signatures
12947         * RichTextBox.cs: Removed unused vars
12948         * TextBoxBase.cs: Removed unused vars
12949         * XplatUIWin32.cs: Removed unused vars
12950         * XplatUIX11.cs: Removed unused vars
12951         * XplatUI.cs: Updated version and date to latest published
12952
12953 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12954
12955         * Cursor.cs: Added private .ctor to work around a bug in
12956           resourceset (Thanks to Geoff Norton for the help on this)
12957         * SplitterEventArgs.cs: Made fields accessible so we don't
12958           waste boatloads of objects and can reuse the same one
12959           in Splitter
12960         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
12961           any captions and borders when generating screen coordinates
12962         * Splitter.cs: Reimplemented control, now fully complete, uses
12963           rubberband drawing, supports and obeys all properties, has
12964           proper cursors
12965
12966 2005-10-13  Miguel de Icaza  <miguel@novell.com>
12967
12968         * Form.cs (Form): Setup default values for autoscale and
12969         autoscale_base_size;  Make these instance variables, not static
12970         variables. 
12971
12972         (OnLoad): on the first load, adjust the size of the form.
12973
12974 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12975
12976         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
12977           width argument to DrawReversibleRectangle()
12978         * XplatUIWin32.cs, XplatUIX11.cs: 
12979           - Implemented width for DrawReversibleRectangle()
12980           - Added logic to DrawReversibleRectangle that recognizes a zero
12981             width or height and only draws a line in that situation
12982         
12983 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
12984
12985         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
12986         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
12987         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
12988           method (it uses our FosterParent window to get a graphics context)
12989
12990 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
12991
12992         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
12993           and SetWindowBackground methods
12994         * Control.cs:
12995           - Setting proper ControlStyles
12996           - We no longer call XplatUI.SetWindowBackground and XplatUI.
12997             EraseWindowBackground, instead we draw the window background
12998             ourselves in PaintControlBackground. This behaviour is
12999             required to match MS, where, when OnPaintBackground is not
13000             called, the background is not drawn.
13001           - Removed unneeded Refresh() in set_Text
13002         * Hwnd.cs: Dropped the ErasePending support. No longer needed
13003         * XplatUIX11.cs:
13004           - Created DeriveStyles method to translate from CreateParams to
13005             FormBorderStyle and TitleStyle, also handles BorderStyle (which
13006             matches FormBorderStyle enum values)
13007           - Consolidated SetHwndStyles and CalculateWindowRect border/title
13008             style calculations into single DeriveStyles method
13009           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
13010             from redrawing the whole window on any resize or expose.
13011           - Fixed CreateWindow usage of SetWindowValuemask. Before not
13012             all styles were applied to our whole/client window appropriately
13013           - Removed EraseWindowBackground() and SetWindowBackground() methods
13014           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
13015             no longer clear/redraw the background through X
13016           - Removed handling of erase_pending bit, we have no use for it (or
13017             so it seems)
13018         * XplatUIOSX.cs:
13019           - Removed generation and handling of WM_ERASEBKGND message
13020           - Removed EraseWindowBackground() and SetWindowBackground() methods
13021           - Removed handling of hwnd.ErasePending flag
13022         * XplatUIWin32.cs:
13023           - Removed EraseWindowBackground() and SetWindowBackground() methods
13024           - We no longer call EraseWindowBackground on PaintEventStart, we 
13025             ignore the fErase flag, erasing is handled in Control in the
13026             background handler
13027         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
13028           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
13029           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
13030           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
13031           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
13032           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
13033           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
13034
13035 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
13036
13037         * PropertyGrids.cs: Get sub properties
13038         * PropertyGridView.cs: Fix drawing code
13039
13040 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13041
13042         * ListBox.cs: Fixes 76383
13043
13044 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13045
13046         * DataGridTextBoxColumn.cs: Sets location and size before attachment
13047         * ThemeWin32Classic.cs: Fixes border drawing and calculations
13048         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
13049
13050
13051 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13052
13053         * ComboBox.cs: Fixes border drawing
13054
13055 2005-10-10  Miguel de Icaza  <miguel@novell.com>
13056
13057         * MimeIcon.cs: Ignore errors if the file can not be read.
13058
13059 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13060
13061         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
13062          - Fixed border calculations
13063          - Fixed horizontal scrolling in single column listboxes
13064          - Fixed drawing issues
13065
13066 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
13067
13068         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
13069           FormBorderStyle enum
13070         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
13071           code to determine FormBorderStyles from CreateParams
13072         * Form.cs:
13073           - Fixed bug where we'd set the wrong window styles if we were
13074             not creating an MDI window
13075           - Added call to XplatUI.SetBorderStyle when form borders are set
13076         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
13077         * Hwnd.cs:
13078           - Removed obsolete edge style
13079           - Switched from BorderStyle to FormBorderStyle
13080         
13081 2005-10-10  Jackson Harper  <jackson@ximian.com>
13082
13083         * Form.cs: Use the property to get the window handle instead of
13084         accessing it directly. Prevents a null reference exception.
13085
13086 2005-10-10  Jackson Harper  <jackson@ximian.com>
13087
13088         * TreeView.cs: Don't adjust the rect given to DrawString now that
13089         our libgdiplus draws correctly.
13090
13091 2005-10-08  Jackson Harper  <jackson@ximian.com>
13092
13093         * TreeView.cs: Don't try to find the clicked on node if there are
13094         no nodes in the tree.
13095
13096 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13097
13098         * RichTextBox.cs:
13099
13100           restore
13101
13102 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13103
13104         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
13105           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
13106           ErrorProvider.cs:
13107           Use ResPool for brushes and dispose System.Drawing objects that
13108           are not used anymore.
13109
13110 2005-10-07  Jackson Harper  <jackson@ximian.com>
13111
13112         * MdiChildContext.cs: Use the new borders instead of drawing them
13113         ourselves.
13114
13115 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13116
13117         * Calling UpdateBounds after changing the window's BorderStyle 
13118         since the style can change the ClientSize
13119
13120 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13121
13122         * Control.cs: Made PaintControlBackground virtual
13123         * Panel.cs: Overriding PaintControlBackground instead of using paint
13124           event; paint event method was interfering with 'real' users of the
13125           event.
13126
13127 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13128
13129         * ThemeWin32Classic.cs: remove border drawing since it is handled
13130         by the base control class now and was causing double border drawing.
13131
13132 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13133
13134         * Panel.cs: Redraw our background on paint. Not a pretty solution,
13135           but it does seem to match MS behaviour. This fixes bug #75324
13136
13137 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13138
13139         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
13140           somewhat hackish looking
13141
13142 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13143
13144         * TextBoxBase.cs:
13145           - We now accept Enter even if AcceptEnter is false, if the containing
13146             form does not have an AcceptButton configured (fixes bug #76355)
13147           - Calculations are now fixed to no longer use Width/Height, but
13148             ClientSize.Width/Height, since we now support borders (this was
13149             a result of fixing borders and therefore bug #76166)
13150           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
13151             true (fixes bug #76354)
13152         
13153 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13154
13155         * Control.cs: 
13156           - Defaulting BorderStyle and setting it in XplatUI when our window 
13157             is created
13158           - Added enum check to InternalBorderStyle setter
13159         * XplatUIX11.cs: 
13160           - Added drawing of window borders
13161           - Now properly calculates WM decorations offset for toplevel 
13162             windows (fixes bug #74763)
13163         * XplatUIWin32.cs: 
13164           - Implemented BorderStyles for windows (we're letting win32 draw 
13165             the border for us)
13166           - Fixed the signature for SetWindowLong
13167         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
13168           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
13169           setting borders
13170         * UpDownBase.cs: Remove drawing of borders, this is handled by
13171           the driver, outside the client area
13172         * ListView.cs: Removed bogus border calculations. The control should
13173           be oblivious to borders, since those are not part of the client
13174           area. 
13175         * X11DesktopColors.cs: Commented out (currently) unneeded variables
13176         * ThemeWin32Classic.cs: Removed border calculations from ListView 
13177           drawing code
13178
13179 2005-10-06  Jackson Harper  <jackson@ximian.com>
13180
13181         * MdiChildContext.cs: Clear out the old virtual position remove
13182         all the unneeded calls to CreateGraphics.
13183
13184 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13185
13186         * TextControl.cs: Use proper color for highlighted text; fixes #76350
13187
13188 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13189
13190         * Form.cs: 
13191           - Added loading and setting of our new default icon
13192           - Only set icon if window is already created
13193
13194 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13195
13196         * Label.cs:
13197           - Do not explicitly set the foreground and background colors, to
13198             allow inheriting from parents (fixes #76302)
13199           - Use Control's InternalBorderStyle property to deal with borders
13200
13201 2005-10-06  Jackson Harper  <jackson@ximian.com>
13202
13203         * MdiChildContext.cs: Use the new xplatui function to draw a
13204         reversible rect.
13205
13206 2005-10-06  Jackson Harper  <jackson@ximian.com>
13207
13208         * Form.cs: Add the parent before creating the child context cause
13209         we need the parent when setting up the child.
13210
13211 2005-10-06  Jackson Harper  <jackson@ximian.com>
13212
13213         * FolderBrowserDialog.cs: redo the tree population code so a
13214         second thread isn't used. Should be a lot faster and more stable
13215         now.
13216
13217 2005-10-05  Jackson Harper  <jackson@ximian.com>
13218
13219         * TreeView.cs: There are no expand/collapse boxes if the node has
13220         no children.
13221
13222 2005-10-05  Jackson Harper  <jackson@ximian.com>
13223
13224         * X11DesktopColors.cs: Get menu colours for the gtk theme.
13225
13226 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
13227
13228         * FileDialog.cs: Fix InitialDirectory
13229
13230 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13231
13232         * ComboBox.cs:
13233                 - Fixes changing between styles
13234                 - Fixes simple mode
13235                 - Fixes last item crashing when navigating with keyboard
13236
13237 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13238
13239         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
13240
13241 2005-10-05  Jackson Harper  <jackson@ximian.com>
13242
13243         * TreeView.cs: If updating the root node do a full refresh.
13244         * TreeNode.cs: The root node should be expanded by default. Also
13245         added a utility prop to tell if we are the root node.
13246         * TreeNodeCollection.cs: Only refresh if the node we are being
13247         added to is expanded. Also added a comment on a potential
13248         optimization.
13249         
13250 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
13251
13252         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
13253           in dispose method. Fixes #76330
13254
13255 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
13256
13257         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
13258
13259                 - Implements vertical and horizontal scrolling using XplatUI
13260                 - Fixes keyboard navagation
13261                 - Fixes EnsureVisible
13262                 - Drawing fixes
13263                 - Handles and draws focus properly
13264
13265
13266 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
13267
13268         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
13269           Create handle. NET_2_0: Destroy handle when value is null.
13270
13271 2005-10-03  Jackson Harper  <jackson@ximian.com>
13272
13273         * ScrollBar.cs: My last scrollbar patch was broken. This is a
13274         revert and a new patch to prevent the thumb from refreshing so
13275         much.
13276
13277 2005-10-02  Jackson Harper  <jackson@ximian.com>
13278
13279         * ScrollBar.cs: Don't update position if it hasn't actually
13280         changed. This occurs when you hold down the increment/decrement
13281         buttons and the thumb gets to the max/min.
13282
13283 2005-10-01  Jackson Harper  <jackson@ximian.com>
13284
13285         * Form.cs:
13286         * MdiChildContext.cs:
13287         * MdiClient.cs: Implement ActiveMdiChild in Form.
13288
13289 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
13290
13291         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
13292
13293 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
13294
13295         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
13296           be found
13297
13298 2005-09-30  Jackson Harper  <jackson@ximian.com>
13299
13300         * ListBox.cs: Don't do a full refresh unless some data has
13301         actually changed.
13302
13303 2005-09-30  Jackson Harper  <jackson@ximian.com>
13304
13305         * TreeView.cs: Make sure that the checkboxes size is factored in
13306         even when not visible.
13307
13308 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13309
13310         * FileDialog.cs: Fix Jordi's build break
13311
13312 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13313
13314         * FileDialog.cs: 
13315                 - Use standard the Windows colours for the combobox as espected
13316                 - Dispose objects that use resouces when no longer need them
13317
13318 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13319
13320         * X11DesktopColors.cs: Initial incomplete implementation
13321         * XplatUIX11.cs: Added call to initialize X11DesktopColors
13322
13323 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
13324
13325         * Theme.cs: 
13326           - Switched Theme color names to match the names defined in 
13327             System.Drawing.KnownColors. Life's hard enough, no need to make 
13328             it harder.
13329           - Added setters to all theme color properties so themes can set
13330             their color schemes. The setters also propagate the color changes
13331             to System.Drawing.KnownColors via reflection
13332         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
13333           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
13334           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
13335           use the new, more logical theme color names
13336         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
13337           post-NT colors
13338         * ThemeWin32Classic.cs:
13339           - Removed code to set the old classic Windows colors. Instead it
13340             now relies on the colors returned by System.Drawing.KnownColors
13341             which will be either modern static colors (Unix) or colors
13342             read from the user's configuration (Win32)
13343           - Updated to use the new, more logical theme color names
13344           - Switched DataGrid drawing code to use only Theme colors instead of
13345             a mix of System.Drawing.KnownColors and Theme colors
13346           - DrawFrameControl(): Removed code that fills the button area, the
13347             fill would overwrite any previous fill done by a control. This
13348             fixes bug #75338 
13349           - Added DrawReversibleRectangle() stub
13350         * ScrollableControl.cs: Set visible state to false when scrollbars
13351           are removed (pdn fix)
13352         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
13353           DrawReversibleRectangle() method to allow drawing primitive 
13354           'rubber bands'
13355         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
13356
13357 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13358
13359         * ImageList.cs: Add(Icon): Create handle.
13360
13361 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13362
13363         * ListView.cs:
13364         * ThemeWin32Classic.cs:
13365                 - Fixes detail mode
13366                 - Sets clippings
13367                 - Issues with drawing
13368
13369 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13370
13371         * ImageList.cs: Moved RecreateHandle back to ImageList as event
13372           source has to be the ImageList.
13373
13374 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13375
13376         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
13377
13378 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13379
13380         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
13381
13382 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13383
13384         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
13385
13386 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
13387         * GridItem.cs: Fixed TODOs
13388         * GridItemCollection.cs: Added ICollection interface
13389
13390 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13391
13392         * ImageList.cs: Resize icons when needed.
13393
13394 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
13395
13396         * ListViewItem.cs
13397                 - Fixes GetBounds and returns on screen rects
13398         * ListView.cs:
13399                 - Fixes vertical and horzintal scrolling of items
13400         * ThemeWin32Classic.cs:
13401                 - Fixes drawing
13402                 
13403 2005-09-29  Raja R Harinath  <harinath@gmail.com>
13404
13405         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
13406
13407 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
13408
13409         * ImageList.cs: Added comments about handle creation. Moved Handle,
13410           HandleCreated and OnRecreateHandle implementations to ImageCollection.
13411           Handle is created in Add methods.
13412
13413 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13414          
13415         * DataGridDrawingLogic.cs: 
13416                 - Takes rows into account on Colum calculations
13417                 - Returns the column when clickig
13418         * DataGrid.cs:
13419                 - Fixes default HitTestInfo values
13420                 - Fixes HitTestInfo.ToString
13421                 - Fixes ResetBackColor          
13422         
13423 2005-09-28  Jackson Harper  <jackson@ximian.com>
13424
13425         * MdiChildContext.cs: Obey rules for fixed sized windows (no
13426         sizing or cursor changes). Also added some temp code to draw the
13427         titlebars text (Makes dev a little easier).
13428
13429 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13430
13431         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
13432
13433 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13434          
13435         * ListBox.cs: Fixes bug 76253
13436
13437 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13438
13439         * ImageList.cs: Added comments about the current implementation. Added
13440           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
13441           Format32bppArgb to preserve transparency and can use Graphics.FromImage
13442           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
13443           with Bitmap.LockBits for better performance. Revised the whole file to
13444           match MS.NET behaviour and provide better performance. Non-public
13445           interface members are calling public members even when they throw
13446           NotSupportedException for better maintainability. Moved ColorDepth,
13447           ImageSize, ImageStream and TransparentColor implementations to
13448           ImageCollection for better performance as these properties are not used
13449           by ImageList.
13450         * ImageListStreamer.cs: Added a new internal constructor that takes an
13451           ImageList.ImageCollection and serializes Images based on
13452           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
13453           match ImageList property name.
13454
13455 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
13456
13457         * ListBox.cs: Fixes IndexFromPoint for last item
13458
13459 2005-09-27  Jackson Harper  <jackson@ximian.com>
13460
13461         * Form.cs: Set the position of new mdi children correctly.
13462
13463 2005-09-27  Jackson Harper  <jackson@ximian.com>
13464
13465         * MdiClient.cs: New mdi children need to be added to the back of
13466         the controls collection so the zorder is set correctly. Also add a
13467         count of all the child windows that have been created.
13468
13469 2005-09-27  Jackson Harper  <jackson@ximian.com>
13470
13471         * Form.cs (CreateParams): Setup MDI forms correctly.
13472
13473 2005-09-27  Jackson Harper  <jackson@ximian.com>
13474
13475         * MdiChildContext.cs:
13476         * MonthCalendar.cs:
13477         * UpDownBase.cs:
13478         * ListBox.cs:
13479         * ListView.cs:
13480         * TextBoxBase.cs:
13481         * TreeView.cs:
13482         * ScrollableControl.cs:
13483         * ComboBox.cs: Add implicit controls using the new implict control
13484         functionality in ControlCollection. Also try to block multiple
13485         control add in a suspend/resume layout to save some cycles.
13486         
13487 2005-09-27  Jackson Harper  <jackson@ximian.com>
13488
13489         * Control.cs: Add functionality to the controls collection to add
13490         'implicit controls' these are controls that are created by the
13491         containing control but should not be exposed to the user. Such as
13492         scrollbars in the treeview.
13493         * Form.cs: The list var of the ControlsCollection is no longer
13494         available because of the potential of implicit controls getting
13495         ignored by someone accessing the list directly.
13496
13497 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
13498
13499         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
13500           loose it's parent. (Fixed bug introduced in r49103 when we added
13501           setting the child parent to null on Remove)
13502
13503 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
13504
13505         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
13506         * Splitter.cs: Added missing attributes for BorderStyle property.
13507         * TextBoxBase.cs: Marked Calculate* methods internal.
13508         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
13509         MS.NET.
13510
13511 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
13512          
13513         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
13514
13515 2005-09-25  Jackson Harper  <jackson@ximian.com>
13516
13517         * TreeView.cs: Update the node bounds correctly regardless of
13518         whether the node is visible.
13519
13520 2005-09-25  Jackson Harper  <jackson@ximian.com>
13521
13522         * ImageList.cs: Don't dispose the image after it is added to the
13523         image list. Only reformat images that need to be resized.
13524
13525 2005-09-25  Jackson Harper  <jackson@ximian.com>
13526
13527         * ImageList.cs: Don't set the format when changing the image.
13528
13529 2005-09-25  Jackson Harper  <jackson@ximian.com>
13530
13531         * TreeView.cs: We can't just assume the node has a font. Use the
13532         treeviews font if no node font is available.
13533
13534 2005-09-25  Jackson Harper  <jackson@ximian.com>
13535
13536         * TreeView.cs: Allow the scrollbars to be reset with negative
13537         values.
13538         - Don't add scrollbars to negative sized windows.
13539
13540 2005-09-23  Jackson Harper  <jackson@ximian.com>
13541
13542         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
13543         old Mono.Posix. Also remove some stray code that shouldn't have
13544         been committed.
13545
13546 2005-09-23  Jackson Harper  <jackson@ximian.com>
13547
13548         * TreeView.cs: Attempt at proper sizing of the horizontal
13549         scrollbar. Also don't resize the scrollbars unless they are
13550         visible.
13551
13552 2005-09-23  Jackson Harper  <jackson@ximian.com>
13553
13554         * TreeView.cs: We don't need to expand the invalid area when the
13555         selection changes, as this is all drawn in the node's bounding
13556         box. The area needs to be expanded (previous typo was contracting
13557         it) when the focus rect moves.
13558
13559 2005-09-23  Jackson Harper  <jackson@ximian.com>
13560
13561         * TreeView.cs: Display the selection box under the correct
13562         circumstances. We were rendering white text with no selection box
13563         before.
13564
13565 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
13566
13567         * TextControl.cs(Split): Now updates selection start/end if it points 
13568           into a line that's being split. Fixes a FIXME and bug #75258
13569
13570 2005-09-23  Jackson Harper  <jackson@ximian.com>
13571
13572         * Binding.cs:
13573         * ListControl.cs: Don't use the path when retrieving binding
13574         managers from the binding context. My bat sense tells me that the
13575         path is only used on insertion.
13576
13577 2005-09-22  Jackson Harper  <jackson@ximian.com>
13578
13579         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
13580
13581 2005-09-22  Jackson Harper  <jackson@ximian.com>
13582
13583         * Splitter.cs: There are special cursors used for splitting.
13584         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
13585
13586 2005-09-22  Jackson Harper  <jackson@ximian.com>
13587
13588         * Splitter.cs: Change the cursor appropriately when the splitter
13589         is moused over, so the user actually knows there is a splitter
13590         there.
13591
13592 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13593
13594        * Label.cs : Fix ToString method to give same output as MS.NET
13595
13596 2005-09-22  Jackson Harper  <jackson@ximian.com>
13597
13598         * TreeView.cs: Create the scrollbars when the handle is created
13599         and add them right away, just make them invisble. Also account for
13600         the window being shrunk vertically to the point that the vert
13601         scrollbar needs to be added.
13602         - Remove some 0.5 adjustments to get around anti aliasing issues.
13603         
13604 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
13605          
13606         * MainMenu.cs: Fixes default value
13607         * MenuItem.cs: Fixes default value
13608
13609 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
13610
13611         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
13612
13613 2005-09-21  Jackson Harper  <jackson@ximian.com>
13614
13615         * Control.cs: Don't try to set the border style on the window if
13616         it hasn't been created. When the window is created the border
13617         style will be used.
13618
13619 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13620
13621         * Control.cs (Update): Don't call XplatUI if we don't have a
13622           window handle yet
13623
13624 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13625
13626         * ContainerControl.cs: Instead of throwing an exception, print
13627           a one-time warning about Validate not being implemented
13628         * XplatUIWin32.cs: Removed debug output
13629
13630 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13631
13632         * Control.cs: Only set XplatUI background if we expect the windowing
13633           system to handle the background. This stops controls that draw their
13634           own background from flickering
13635
13636         * XplatUIX11.cs: Support custom visuals and colormaps for window 
13637           creation. This allows, amongst other things, using MWF X11 windows 
13638           with OpenGL.
13639
13640 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13641
13642         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
13643           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
13644           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
13645           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
13646           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
13647           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
13648           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
13649           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
13650           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
13651           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
13652           GridColumnStylesCollection.cs, 
13653           IDataGridColumnStyleEditingNotificationService.cs,
13654           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
13655           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
13656           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
13657           TreeNodeCollection.cs, AmbientProperties.cs, 
13658           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13659           DataObject.cs, ErrorProvider.cs, Splitter.cs,
13660           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
13661           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
13662           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
13663           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
13664           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
13665           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
13666           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
13667           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
13668           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
13669           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
13670           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
13671           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
13672           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
13673           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
13674           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
13675           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
13676           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
13677           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
13678           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
13679           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
13680           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
13681           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
13682           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
13683           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
13684           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
13685           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
13686           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
13687           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
13688           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
13689           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
13690           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
13691           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
13692           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
13693           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
13694           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
13695
13696 2005-09-21  Jackson Harper  <jackson@ximian.com>
13697
13698         * TreeNode.cs: Call Before/After Expand not Collapse when
13699         expanding.
13700
13701 2005-09-20  Jackson Harper  <jackson@ximian.com>
13702         
13703         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
13704
13705 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13706          
13707         * ListViewItem.cs:
13708                 - Fixes bug 76120
13709                 - Fixes proper storing of subitems
13710                 - Fixes not updated items
13711
13712 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
13713
13714         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
13715           things if our window handle isn't created yet. Also disabled 
13716           debug for TextBoxBase
13717
13718 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
13719
13720         * MenuAPI.cs: Remove filtering of events to allow menu usage
13721
13722 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13723
13724         * Cursor.cs: Allow null to be passed to Cursor.Current.
13725
13726 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
13727
13728         * ThemeWin32Classic.cs:
13729           - Change some private methods/fields to protected virtual so that 
13730             they can be accessed and overriden in derived classes
13731           - First refactoring of some methods. Derived themes now don't 
13732             need to duplicate the complete code from ThemeWin32Classic
13733         * ThemeNice.cs:
13734           - Added nice StatusBar
13735           - Derive from ThemeWin32Classic and not Theme
13736           - Removed duplicate ThemeWin32Classic code
13737
13738 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13739
13740         * Control.cs (ControlCollection.Add): If the value null is passed
13741         the control is ignored. 
13742
13743         Optimize this loop.
13744
13745 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
13746
13747         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
13748           PostQuitMessage state.
13749         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
13750
13751 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
13752
13753         * Application.cs: Our constructor will never get called, move 
13754           initialization to fields; fixes bug #75933
13755
13756 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13757
13758         * FileDialog.cs :
13759                 - Allow files to be selected properly using file name
13760                 combo box.
13761                 - Add ability to change diretory (absolute / relative)
13762                 using file name combo box.
13763
13764 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13765          
13766         * ListBox.cs: 
13767                 - Fixes Multicolumn listboxes item wrong calculations
13768                 - Allows to click when only one item is in the listbox
13769                 - Fixes crash when no items using keyboard navigation
13770
13771 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
13772
13773         * ComboBox.cs: Reverted almost everything from the latest patch which
13774           broke ComboBox
13775
13776 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
13777         
13778         * ToolTip.cs:
13779                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
13780         * ComboBox.cs:
13781                 - When DropDownStyle is Simple, it does not show scrollbar 
13782                 to the last item of the list.
13783                 - When DropDownStyle is Simple, it crashed when the list was 
13784                 scrolled down with the down cursor key.
13785                 - Fixed a bug that when DropDownStyle is DropDownList, the 
13786                 selected item was not shown.
13787                 - The position of the selected item was not preserved when 
13788                 the next dropdown happened.
13789         * ThemeWin32Classic.cs:
13790                 - Items were wrapped at the right end.
13791         * CheckedListBox.cs:
13792                 - Fixed Add method
13793         * ListBox.cs:
13794                 - Items should be fully shown.
13795                 - When resizing and vertical scrollbar disappeared, the item 
13796                 of index 0 should be on the top of the list.
13797                 - GetItemRectangle should consider the size of ver. scrollbar
13798         * StatusBar.cs:
13799                 - SizingGrip area should not be allocated when it is not 
13800                 displayed.
13801                 - Now it reflects MinWidth of the containing panel and 
13802                 fixed a crash that happens when its width becomes so small.
13803
13804 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13805
13806         * CheckedListBox.cs: Fixes bug 76028
13807         * ListBox.cs: Fixes bug 76028
13808
13809 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13810
13811         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
13812         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
13813
13814 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
13815
13816         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
13817
13818 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13819
13820         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
13821
13822 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13823
13824         * IRootGridEntry.cs: Added
13825         * PropertyGridCommands.cs: Added
13826         * PropertiesTab.cs: Added missing methods and property
13827         * PropertyGridView.cs: Made class internal
13828         * PropertyGridTextBox.cs: Made class internal
13829
13830 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13831
13832         * MimeIcon.cs: Try to check some other environment variables
13833           if "DESKTOP_SESSION" returns "default"
13834
13835 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13836
13837         * ThemeNice.cs: Corrected background colors (e.g. menus)
13838         * ColorDialog.cs: Use correct background colors for controls
13839
13840 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13841
13842         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
13843
13844 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
13845
13846         * RichTextBox.cs: Added initial implementation
13847         * lang.cs: Removed. Was accidentally checked in long time ago
13848         * TODO: Removed. Contents were obsolete
13849
13850 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13851                                                                                 
13852         * PropertiesTab.cs : Added
13853
13854 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13855                                                                                 
13856         * PropertyGrid.cs : Update
13857         * PropertyGridView.cs : Update
13858         * System.Windows.Forms.resx : Added images and strings
13859
13860 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
13861
13862         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
13863  
13864 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
13865
13866         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
13867           a busy loop right after the Ungrab the X11 display is otherwise 
13868           blocked
13869
13870 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
13871
13872         * ThemeWin32Classic.cs: Optimise the use of clipping
13873
13874 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
13875
13876         * DataGrid.cs: fixes recursion bug
13877
13878 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
13879
13880         * ThemeNice.cs: 
13881           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
13882           - Cleanup
13883
13884 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
13885
13886         * ThemeNice.cs: Draw nice ProgressBars
13887
13888 2005-09-01  Miguel de Icaza  <miguel@novell.com>
13889
13890         * VScrollBar.cs: Another buglet found by Aaron's tool. 
13891
13892         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
13893         bug finder.
13894
13895 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
13896
13897         * ThemeNice.cs:
13898           - Added nicer menu drawing
13899           - Updated DrawTab
13900           - some refactoring
13901
13902 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13903
13904         * CreateParams.cs (ToString): Made output match MS
13905         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
13906             handle is already created (to avoid forcing window creation)
13907         * XplatUIX11.cs: Set window text to caption after creating window,
13908           in case Text was set before window was created
13909         * Form.cs: Use this.Text instead of a static string as caption
13910
13911 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13912
13913         * NotifyIcon.cs: Don't set the window to visible; this screws
13914           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
13915           OnPaint without a bitmap)
13916         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
13917           happen very often anyway; we could add the check to the WM_PAINT 
13918           event generation code
13919
13920 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13921
13922         * NotifyIcon.cs: Fill the icon area with a background color, to 
13923           avoid 'residue' when transparent icons are drawn
13924         * XplatUIX11.cs:
13925           - Handle whole_window == client_window when destroying windows
13926           - SystrayAdd(): Set client_window to whole_window value to
13927             get mouse and other events passed to NotifyIcon
13928
13929 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13930
13931         * Form.cs: Set proper default for Opacity property
13932         * NotifyIcon.cs:
13933           - ShowSystray(): Don't bother creating telling the OS
13934             about the systray item if no icon is provided
13935           - Now handles WM_NCPAINT message to deal with whole/client window
13936             split
13937           - Create window as visible to not get caught by Expose optimization
13938         * Hwnd.cs: Removed debug message
13939         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
13940           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
13941             PaintEventStart/End to use new client argument
13942         * TextBoxBase.cs:
13943           - Commented out debug messages
13944           - Switched PaintEventStart/End to use new client argument
13945         * XplatUI.cs: Added client window bool to PaintEventStart()/
13946           PaintEventEnd() calls, to support drawing in non-client areas
13947         * XplatUIDriver.cs: 
13948           - Added client window bool to PaintEventStart()/PaintEventEnd() 
13949             calls, to support drawing in non-client areas
13950           - Added conditional compile to allow using MWF BeginInvoke 
13951             on MS runtime
13952         * XplatUIX11.cs:
13953           - Added some conditional debug output
13954           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
13955             whole/client window split
13956           - Implemented handling of client argument to PaintEventStart()/End()
13957         * Control.cs:
13958           - Throw exception if BeginInvoke() is called and the window handle
13959             or one of the window's parent handles is not created
13960           - Added conditional compile to allow using MWF BeginInvoke on
13961             MS runtime
13962           - get_Parent(): Only sets parent if handle is created. This avoids
13963             forcing window handle creation when parent is set.
13964           - Now fires Layout and Parent changed events in proper order
13965           - Switched to use Handle instead of window.Handle for Z-Order setting,
13966             the get_Parent() patch above causes us to possibly get null for 'window'
13967           - Implemented handling of client argument to PaintEventStart()/End()
13968           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
13969             default handling)
13970           - Now sends a Refresh() to all child windows when Refresh() is called
13971
13972 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13973
13974         * Form.cs: Added (non-functional) Opacity property
13975         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
13976
13977 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
13978         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
13979           use export MONO_THEME=nice to activate it.
13980           Currently supported controls:
13981           - Button
13982           - ComboBox
13983           - ScrollBar
13984           - TabControl (TabAlignment.Top only, other will follow)
13985         * ThemeEngine.cs: Add theme nice
13986         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
13987           if enabled
13988
13989 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
13990
13991         * Splitter.cs: Resize docked control and its neighbor.
13992
13993 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13994         -- Making Windows with Menus layout correctly --
13995         * Form.cs : The first leg of the fix
13996                 Menu setter - adjust Client Size as needed to make space for the menu
13997                 SetClientSizeCore - doesn't call base version to be able to pass the 
13998                         menu handle to XplatUI.CalculateWindowRect
13999         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
14000         * XplatUIX11.cs: The critical second leg of the fix
14001                 GetWindowPos needs to use a recalculated client_rect
14002                 so that resizing the window doesn't break layout of child controls. 
14003                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
14004                 Lots of \t\n killed
14005
14006 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14007
14008         * Label.cs: Now properly recalculates width and height on Font and Text
14009           changes if AutoSize is set
14010
14011 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14012         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
14013
14014 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
14015
14016         * ImageList.cs: Makes ToString method compatible with MS
14017
14018 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
14019
14020         * MenuAPI.cs: fixes bug 75716
14021
14022 2005-08-11 Umadevi S <sumadevi@novell.com>
14023         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
14024
14025 2005-08-11 Umadevi S <sumadevi@novell.com>
14026         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
14027
14028 2005-08-10  Umadevi S <sumadevi@novell.com>
14029         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
14030
14031 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
14032
14033         * Menu.cs: fixes bug 75700
14034         * MenuAPI.cs: fixes navigation issues
14035
14036 2005-08-09  Umadevi S <sumadevi@novell.com>
14037         * CheckedListBox.cs - simple fix for GetItemChecked.
14038
14039 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
14040
14041         * ComboBox.cs: Serveral fixes
14042         * ListBox.cs: Serveral fixes
14043
14044 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14045
14046         * ComboBox.cs: Fixes FindString methods and GetItemHeight
14047         * ListBox.cs: Fixes FindString methods
14048
14049 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14050
14051         * DataGrid.cs: fixes bugs exposed by new tests
14052
14053 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
14054
14055         * Mime.cs: Compile Mono assembly references only if compiling
14056           with Mono (Allows to build with VS.Net again)
14057
14058 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
14059
14060         * Control.cs (PaintControlBackground): Draw background image
14061         corrrectly.
14062         (CheckForIllegalCrossThreadCalls): Stubbed.
14063         
14064         * Form.cs (OnCreateControl): Center when should be centered.
14065         
14066         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
14067
14068 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
14069
14070         * Binding.cs: Binding to properties should be case unsensitive
14071
14072 2005-07-18 vlindos@nucleusys.com
14073
14074         * DataGrid.cs: fixes setmember order
14075
14076 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
14077
14078         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
14079         * FileDialog.cs: FileDialog is now resizable and uses the new
14080           MimeIconEngine
14081
14082 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
14083
14084         * DataGridTextBoxColumn.cs: default value
14085         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
14086         * GridTableStylesCollection.cs: fixes checking MappingName
14087         * DataGridDrawingLogic.cs: fixes drawing logic issues
14088         * DataSourceHelper.cs: rewritten to make compatible with more data sources
14089         * DataGrid.cs: fixes    
14090
14091 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
14092
14093         * MimeGenerated.cs: Use case sensitive comparer for
14094           NameValueCollections
14095
14096 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
14097
14098         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
14099         * ThemeWin32Classic.cs: bug fixes, code refactoring
14100         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
14101         * DataGrid.cs: bug fixes, code refactoring
14102         * DataGridTextBox.cs: bug fixes, code refactoring
14103         * DataGridColumnStyle.cs:  bug fixes, code refactoring
14104         * Theme.cs:  bug fixes, code refactoring
14105
14106 2005-07-01  Peter Bartok  <pbartok@novell.com> 
14107
14108         * TextControl.cs: Quick fix for the reported crash on ColorDialog
14109           and other text box usage
14110
14111 2005-07-01  Jackson Harper  <jackson@ximian.com>
14112
14113         * TabControl.cs: Make sure the bottom of the tab covers the pages
14114         border.
14115
14116 2005-06-30  Peter Bartok  <pbartok@novell.com> 
14117
14118         * Form.cs (ShowDialog): Assign owner of the dialog
14119         * TextBoxBase.cs: Always refresh caret size when deleting, caret
14120           might have been moved to a tag with different height
14121
14122 2005-06-30  Jackson Harper  <jackson@ximian.com>
14123
14124         * Form.cs: Don't create an infinite loop when setting focus
14125         * MenuItem.cs: Don't dirty the parents if we don't have any
14126
14127 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
14128
14129         * LibSupport.cs: Rename
14130
14131 2005-06-29  Peter Bartok  <pbartok@novell.com>
14132
14133         * TextBoxBase.cs: Re-align caret after deleting a character
14134         * TextControl.cs:
14135           - DeleteChars(): Ensure that tag covers the provided position
14136           - StreamLine(): Drop reference for dropped tag
14137
14138 2005-06-29  Peter Bartok  <pbartok@novell.com> 
14139
14140         * TextControl.cs: 
14141           - Selections now work properly, anchoring at the initial location
14142             and properly extending in either direction (SetSelectionToCaret(),
14143             SetSelectionStart() and SetSelectionEnd())
14144           - No longer redraws the whole control on selection change, now
14145             calculates delta between previous and new selection and only
14146             invalidates/redraws that area
14147           - Fixed FindPos() math off-by-one errors
14148           - Changed DeleteChars() to verify the provided tag covers the
14149             provided position, selections may have a tag that doesn't cover
14150             the position if the selection is at a tag border
14151           - Fixed off-by-one errors in DeleteChars()
14152           - Added missing streamlining check in DeleteChars() to remove
14153             zero-length tags
14154           - Implemented Invalidate() method, now properly calculates exposures
14155             between two given lines/positions
14156           - Implemented SetSelection()
14157           - Obsoleted and removed FixupSelection()
14158           - Improved RecalculateDocument() logic, removing code duplication
14159
14160 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14161
14162         * LibSupport.cs: changes to match different input/output arguments.
14163
14164 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14165
14166         * LibSupport.cs: added libsupport.so init routine.
14167
14168 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
14169         
14170         * ControlBindingsCollection.cs
14171                 - Throws an exception on null datasource when adding
14172                 - Checks for duplicated bindings when adding
14173
14174 2005-06-28  Jackson Harper  <jackson@ximian.com>
14175
14176         * TreeView.cs (OnKeyDown): Support left and right properly
14177         (navigates as well as expanding and collapsing.
14178         - Add support for Multiply, this expands all the selected nodes
14179         children.
14180         - Fix some tabbing.
14181
14182 2005-06-28  Jackson Harper  <jackson@ximian.com>
14183
14184         * TreeView.cs: Implement keyboard navigation, currently supports,
14185         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
14186         support for toggling checkboxes with the space bar.
14187
14188 2005-06-28  Jackson Harper  <jackson@ximian.com>
14189
14190         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
14191         tree.
14192
14193 2005-06-28  Jackson Harper  <jackson@ximian.com>
14194
14195         * TreeView.cs: Add missing event.
14196
14197 2005-06-27  Peter Bartok  <pbartok@novell.com> 
14198
14199         * TextControl.cs:
14200           - Made line ending size configurable (now allows for counting 
14201             lineendings as \n or \r\n)
14202           - Added margin to viewport to keep caret visible on right side
14203           - Fixed translation routines for line/pos to documentpos to consider
14204             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
14205           - Fixed some line-endings to be unix style
14206           - Fixed Document.FormatText to perform it's calculations 1-based
14207           - Added descriptions for a few methods that might otherwise get 
14208             used wrong
14209           - Added NOTE section with some basic conventions to remember at 
14210             the top of the file
14211           - Major fixup for RichTextBox selection drawing:
14212             * Fixed crashes when multiple tags on a single line were selected
14213             * fixed selection box drawing not overlaying text
14214             * fixed bogus offset calculation for tags not starting at index 1
14215             * Switched behaviour from using multiple Substrings of a 
14216               StringBuilder.ToString() to using multiple 
14217               StringBuilder.ToString(start, length) statements, hoping this is
14218               faster (kept original version commented out in the code, in case
14219               original version was faster)
14220         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
14221           alignment != Left
14222         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
14223           call it as well
14224
14225 2005-06-27  Jackson Harper  <jackson@ximian.com>
14226
14227         * TabControl.cs: Move to the left and right with the arrow
14228         keys. These keys don't cycle beyond first and last like
14229         tab. Refresh all the tabs when scrolling them to the left or
14230         right.
14231
14232 2005-06-27  Jackson Harper  <jackson@ximian.com>
14233
14234         * TabControl.cs:
14235           - ToString: Added method
14236           - CreateParams: Remove TODO and comment
14237           - OnKeyDown: Cycle through bounds properly.
14238           - SelectedIndex: Scroll to the right or left if we need to
14239           display the newly selected tab.
14240
14241 2005-06-23  Jackson Harper  <jackson@ximian.com>
14242
14243         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
14244         set.
14245
14246 2005-06-23  Jackson Harper  <jackson@ximian.com>
14247
14248         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
14249         CTRL-SHIFT-TAB, and HOME, END are there any others?
14250
14251 2005-06-23  Jackson Harper  <jackson@ximian.com>
14252
14253         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
14254
14255 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14256         
14257         * DataGridTextBoxColumn.cs: fixes and enhancements
14258         * ThemeWin32Classic.cs: fixes and enhancements
14259         * DataGridBoolColumn.cs:  fixes and enhancements
14260         * DataGridDrawingLogic.cs:  fixes and enhancements
14261         * CurrencyManager.cs: fixes and enhancements
14262         * DataGrid.cs: fixes and enhancements
14263         * DataGridColumnStyle.cs:  fixes and enhancements
14264
14265 2005-06-22  Jackson Harper  <jackson@ximian.com>
14266
14267         * TabControl.cs: Add some missing methods that just call into the
14268         base. Make the TabPageCollection's IList interface behave in the
14269         same manner as the MS implementation.
14270
14271 2005-06-22  Peter Bartok  <pbartok@novell.com> 
14272
14273         * TextControl.cs: Added sanity check
14274         * TextBoxBase.cs: 
14275           - Fixed wrapping behaviour, don't set wrap on single line controls
14276             (this fixes the breakage of colordialog introduced in an earlier
14277              checkin)
14278           - Added rudimentary support for autoscrolling right-aligned controls
14279             (still needs fixing, also, center alignment scroll is missing)
14280
14281 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14282         
14283         * ScrollBar.cs: Fixes thumbpos on Maximum values
14284
14285 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
14286         
14287         * PropertyGridView.cs: Pass context information to UITypeEditors 
14288
14289 2005-06-21  Peter Bartok  <pbartok@novell.com> 
14290
14291         * TextBoxBase.cs:
14292           - Now calling PositionCaret with absolute space coordinates
14293           - Enabled vertical scrolling
14294           - Better tracking of scrollbar changes, tied into WidthChange
14295             event
14296           - Improved cursor tracking
14297           - Removed debug output
14298         * TextControl.cs:
14299           - PositionCaret coordinates are now works in absolute space, not 
14300             the canvas
14301           - Improved tracking of document size
14302           - Added events for width and height changes
14303
14304 2005-06-21  Peter Bartok  <pbartok@novell.com>
14305
14306         * Form.cs: Set focus to active control when form is activated
14307         * TextControl.cs: 
14308           - Added word-wrap functionality to RecalculateLine() 
14309           - Added some short function descriptions for VS.Net to aid in
14310             writing dependent controls
14311           - Added Caret property, returning the current coords of the caret
14312           - Added ViewPortWidth and ViewPortHeight properties
14313           - Added Wrap property
14314           - Added CaretMoved event
14315           - Removed some old debug code
14316           - Split() can now create soft splits
14317           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
14318           - Added method to format existing text
14319           - Fixed size/alignment calculations to use viewport
14320           - RecalculateDocument now can handle changing line-numbers while
14321             calculating lines
14322
14323         * TextBox.cs:
14324           - Added some wrap logic, we don't wrap if alignment is not left
14325           - Added casts for scrollbar var, base class switched types to
14326             also support RichTextBoxA
14327           - Implemented handling of scrollbar visibility flags
14328
14329         * TextBoxBase.cs:
14330           - Switched scrollbars type to RichTextBoxScrollBars to support
14331             RichTextBox
14332           - Added tracking of canvas width/height
14333           - Switched scrollbars to be not selectable (to keep focus on text)
14334           - Added central CalculateDocument() method to handle all redraw
14335             requirements
14336           - Added ReadOnly support
14337           - Added WordWrap support
14338           - Fixed handling of Enter key (we now treat it as a DialogKey)
14339           - Fixed caret positioning when h or v scroll is not zero
14340           - Fixed placing/generation of vertical scrollbar
14341           - Added CalculateScrollBars() method to allow updating scrollbar
14342             limits and visibility
14343           - Fixed handling of horizontal scroll
14344           - Added handling of vertical scroll
14345           - Implemented auto-'jump' when caret moves to close to a left or
14346             right border and there is text to be scrolled into view (currently
14347             there's the potential for a stack overflow, until a bug in
14348             scrollbar is fixed)
14349
14350 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
14351         
14352         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
14353
14354 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
14355
14356         * Mime.cs:
14357         - added inodes.
14358         - return application/x-zerosize for files with size zero
14359           (if no extension pattern matches).
14360         - check matches collection for strings too.
14361         - return only the first mime type if the name value
14362           collection has more than one mime type.
14363
14364 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
14365         
14366         * PropertyGrid.cs: Cleaned up some TODOs
14367         * PropertyGridView.cs: Added support for UITypeEditors
14368
14369 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14370         
14371         * DataGrid.cs: clears cached value
14372
14373 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14374
14375         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
14376         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
14377         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
14378         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
14379         
14380 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
14381
14382         * ThemeWin32Classic.cs: fixes colour
14383
14384 2005-06-15  Peter Bartok  <pbartok@novell.com>
14385
14386         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
14387         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
14388         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
14389         * Control.cs: Added some MWFCategory and MWFDescription attributes
14390         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
14391
14392 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
14393
14394         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
14395         usage
14396
14397 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
14398
14399         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
14400         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
14401         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
14402         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
14403         * DataGrid.cs: default datagrid settings for Default Styles, fixes
14404         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
14405
14406 2005-06-13  Jackson Harper  <jackson@ximian.com>
14407
14408         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
14409         isn't printed when the user enables dropping. (X11 does accept
14410         drops).
14411         
14412 2005-06-13  Jackson Harper  <jackson@ximian.com>
14413
14414         * TreeView.cs: Remove some TODOS.
14415
14416 2005-06-13  Jackson Harper  <jackson@ximian.com>
14417
14418         * Form.cs: Hook into the mdi framework.
14419         * MdiClient.cs: Use the base control collections add method so
14420         parents get setup correctly. Set the default back colour and dock
14421         style.
14422         * MdiChildContext.cs: New class, this bad actor handles an
14423         instance of an MDI window. Right now there is only basic
14424         support. You can drag, close, and resize windows. Minimize and
14425         Maximize are partially implemented.
14426
14427 2005-06-13  Jackson Harper  <jackson@ximian.com>
14428
14429         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
14430         freaky when both vals are negative. NOTE: There are probably other
14431         places in XplatUIX11 that this needs to be done.
14432
14433 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
14434
14435         * DataGrid.cs: implement missing methods, move KeyboardNavigation
14436         * DataGridColumnStyle.cs: fixes signature
14437
14438 2005-06-12  Jackson Harper  <jackson@ximian.com>
14439
14440         * XplatUIX11.cs: Use sizing cursors similar to the ones on
14441         windows.
14442
14443 2005-06-11  Jackson Harper  <jackson@ximian.com>
14444
14445         * StatusBarPanel.cs: Signature cleanups. Implement
14446         BeginInit/EndInit.
14447
14448 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
14449
14450         * DataGridTextBoxColumn.cs: Honors aligment
14451         * GridColumnStylesCollection.cs: Contains is case unsensitive
14452         * GridTableStylesCollection.cs: several fixes
14453         * DataGridTableStyle.cs: default column creation
14454         * DataGridDrawingLogic.cs: fixes
14455         * CurrencyManager.cs: ListName property
14456         * DataGrid.cs: multiple styles support
14457         * DataGridColumnStyle.cs: fixes
14458         
14459
14460 2005-06-10  Peter Bartok  <pbartok@novell.com>
14461
14462         * Control.cs(Select): Moved SetFocus call to avoid potential
14463           loops if controls change the active control when getting focus
14464         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
14465           the up/down buttons
14466
14467 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
14468
14469         * ImageListConverter.cs: Implemented
14470
14471 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14472
14473         * MonthCalendar.cs: Wired in NumericUpDown control for year
14474
14475 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14476
14477         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
14478           DoubleClick events, since they are not meant to be fired.
14479
14480 2005-06-09  Peter Bartok  <pbartok@novell.com>
14481
14482         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
14483           Jonathan's standalone controls into MWF, implemented missing
14484           events, attributes and methods; added xxxAccessible classes
14485         * AccessibleObject.cs: Made fields internal so other classes
14486           can change them if needed
14487
14488 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
14489
14490         * UpDownBase.cs: Complete implementation
14491         * NumericUpDown.cs: Complete implementation
14492         * DomainUpDown.cs: Complete implementation
14493
14494 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
14495
14496         * DataGridTextBoxColumn.cs: drawing fixes
14497         * DataGridCell.cs: fixes ToString method to match MSNet
14498         * DataGridTableStyle.cs: fixes
14499         * DataGridBoolColumn.cs: fixes, drawing
14500         * DataGridDrawingLogic.cs: fixes, new methods
14501         * DataGridTextBox.cs: Keyboard and fixes
14502         * DataGrid.cs:
14503                 - Keyboard navigation
14504                 - Scrolling fixes
14505                 - Row selection (single, multiple, deletion, etc)
14506                 - Lots of fixes
14507         
14508 2005-06-07  Jackson Harper  <jackson@ximian.com>
14509
14510         * ThemeWin32Classic.cs: Clear the background area when drawing
14511         buttons.
14512
14513 2005-06-06  Peter Bartok  <pbartok@novell.com>
14514
14515         * ImageListStreamer.cs: Fixed signature for GetData
14516         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
14517         * ComboBox.cs:
14518           - Added missing ChildAccessibleObject class
14519           - Added missing OnXXXFocus overrides, switched to using those
14520             instead of the event handler
14521         * Control.cs:
14522           - Added Parent property for ControlAccessibleObject
14523           - Fixed signatures
14524           - Fixed attributes
14525           - Added ResetBindings()
14526         * ListBindingConverter.cs: Implemented some methods
14527         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
14528         * ImageList.cs: Implemented basic handle scheme, removed TODOs
14529         * ContainerControl.cs: Fixed signature, now subscribing to the
14530           ControlRemoved event instead of overriding the handler, LAMESPEC
14531         * CurrencyManager.cs: Added missing attribute
14532         * MonthCalendar.cs: Added missing properties
14533
14534 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14535
14536         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
14537         
14538 2005-06-06  Gaurav Vaish and Ankit Jain
14539
14540         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
14541         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
14542         
14543 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14544
14545         * Control.cs: fixes CreateParams Width / Height.
14546
14547 2005-06-05  Peter Bartok  <pbartok@novell.com>
14548
14549         * Win32DnD.cs: Removed compilation warnings
14550
14551 2005-06-05  Peter Bartok  <pbartok@novell.com>
14552
14553         * Control.cs (CreateParams): Since we don't know if one of the
14554           properties we use is overridden, lets make sure if we fail accessing
14555           we continue with a backup plan
14556
14557 2005-06-05  Peter Bartok  <pbartok@novell.com>
14558
14559         * Win32DnD.cs:
14560           - Removed debug output
14561           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
14562             struct
14563           - Plugged resource leak
14564         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
14565           MS size
14566
14567 2005-06-05  Peter Bartok  <pbartok@novell.com>
14568
14569         * XplatUIWin32.cs: Removed DnD code
14570         * Win32DnD.cs: Implemented drop source and drop target functionality
14571
14572 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14573
14574         * UpDownBase.cs: remove duplicate addition of event, enable some code
14575         that was commented out.
14576         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
14577         Validate input when a key is pressed. It works fine now for every
14578         combination of Hexadecimal. Only missing some drawing love when sharing
14579         space with other controls.
14580
14581 2005-06-04  Peter Bartok  <pbartok@novell.com>
14582
14583         * Control.cs:
14584           - We need to pass a window for DragDrop, so enable callback events
14585           - Added DnD callback events when being a DragSource
14586         * XplatUI.cs (StartDrag): Added window handle argument
14587         * XplatUIDriver.cs (StartDrag): Added window handle argument
14588         * QueryContinueDragEventArgs: Made fields internally accessible so
14589           drivers can set them
14590         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
14591           can set them
14592
14593 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
14594
14595         * DataGridTextBoxColumn.cs: column text editing
14596         * DataGridTableStyle.cs: Respect columns styles created by the user
14597         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
14598         * DataGridBoolColumn.cs: bool column editing
14599         * DataGrid.cs: fixes to scrolling, properties, etc
14600         * DataGridTextBox.cs: handle keyboard
14601         * DataGridColumnStyle.cs: fixes
14602
14603 2005-06-02  Jackson Harper  <jackson@ximian.com>
14604
14605         * ImageListStreamer.cs: Somewhat broken implementation of
14606         GetObjectData. The RLE needs some work to match MS properly.
14607
14608 2005-06-02  Jackson Harper  <jackson@ximian.com>
14609
14610         * X11Dnd.cs: Attempting to keep at least one file in MWF
14611         monostyled.
14612
14613 2005-06-02  Peter Bartok  <pbartok@novell.com>
14614
14615         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
14616           that way
14617
14618 2005-06-02  Peter Bartok  <pbartok@novell.com>
14619
14620         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
14621         * XplatUI.cs: Added DoDragDrop() method
14622         * XplatUIDriver.cs: Added DoDragDrop() method
14623
14624 2005-06-02  Jackson Harper  <jackson@ximian.com>
14625
14626         * Splitter.cs: Implement BorderStyle.
14627
14628 2005-06-02  Jackson Harper  <jackson@ximian.com>
14629
14630         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
14631         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
14632         X11 using XDND.
14633
14634 2005-06-02  Peter Bartok  <pbartok@novell.com>
14635
14636         * DataObject.cs:
14637           - Added Data setter
14638           - Fixed broken insertion code for SetData, now also
14639             overwrites any existing entry of the same format name
14640         * Hwnd.cs: Added list of pointers that automatically gets
14641           freed when the window is disposed
14642         * XplatUI.cs: Call driver initialization method when loading
14643           a driver
14644         * Control.cs:
14645           - OnDragLeave takes EventArgs, not DragEventArgs
14646           - Added setting of WS_EX_ACCEPTFILES style when dropping is
14647             supported
14648           - Forces style update when drop state changes
14649         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
14650           not perfect since we cannot (yet) call the IDataObject.GetData()
14651           method, we keep getting 0x80004005 error, dunno why)
14652
14653 2005-06-02  Peter Bartok  <pbartok@novell.com>
14654
14655         * DragEventArgs.cs: Make fields internal so we can cache the
14656           object and re-set the fields from XplatUI
14657
14658 2005-06-02  Jackson Harper  <jackson@ximian.com>
14659
14660         * Control.cs: Add some internal methods so the DnD subsystem can
14661         raise DnD events. Also call into the driver when AllowDrop is set.
14662         * XplatUI.cs:
14663         * XplatUIDriver.cs: New method for setting whether or not a window
14664         is allowed to accept drag and drop messages.
14665                 
14666 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
14667         
14668         * ScrollBar.cs: Make sure that values sent in Scroll events
14669         are always between Maximum and Minimum.
14670
14671 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
14672
14673         * Menu.cs: Call MenuChanged when menuitem visibility has been
14674         changed.
14675         * MenuItem.cs: Rebuild menu when item is (not) visible.
14676         * MainMenu.cs: MainMenu has special MenuChanged.
14677         * Theme.cs: Caption and FrameBorderSize are not fixed.
14678         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
14679         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
14680         * XplatUIX11.cs,
14681         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
14682         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
14683
14684 2005-05-30  Jackson Harper  <jackson@ximian.com>
14685
14686         * DataFormat.cs: We can't statically initialize this stuff because
14687         it calls into the xplatui and could create a loop. So we lazy init
14688         it.
14689
14690 2005-05-28  Jackson Harper  <jackson@ximian.com>
14691
14692         * Control.cs: Proper implementation of Product(Name/Version).
14693
14694 2005-05-27  Jackson Harper  <jackson@ximian.com>
14695
14696         * DataObject.cs: Dont crash if no data is found.
14697
14698 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
14699         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
14700                 as per status page, guessing it should be set to true
14701
14702 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
14703
14704         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
14705         * DataGridTableStyle.cs: set proper formatting text, def header text
14706         * ThemeWin32Classic.cs: new themable paramaters
14707         * DataGridBoolColumn.cs: paint check box, get data, fixes
14708         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
14709         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
14710         * DataGridColumnStyle.cs: fixes
14711         * Theme.cs: new themable paramaters
14712                 
14713 2005-05-26  Peter Bartok  <pbartok@novell.com>
14714
14715         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
14716
14717 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14718         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
14719
14720 2005-05-24  Peter Bartok  <pbartok@novell.com>
14721
14722         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
14723           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
14724           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
14725           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
14726           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
14727           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
14728           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
14729           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
14730           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
14731           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
14732           missing attributes, etc
14733         * DataGridPreferredColumnWidthTypeConverter.cs: Added
14734
14735 2005-05-24  Peter Bartok  <pbartok@novell.com>
14736
14737         * Help.cs: Added, implemented trivial functions, throws up MessageBox
14738           when user tries to get help
14739         * DataObject.cs, DataFormats.cs, LinkArea.cs,
14740           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
14741           to suppress warnings
14742         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
14743           avoid unreachable code warning
14744
14745 2005-05-20  Peter Bartok  <pbartok@novell.com>
14746
14747         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
14748
14749 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14750
14751         * DataGridTextBoxColumn.cs: Basic painting methods
14752         * DataGridTableStyle.cs: Set table style in the column
14753         * ThemeWin32Classic.cs: Use Theme for colors
14754         * DataGridDrawingLogic.cs: Implement more drawing
14755         * DataGrid.cs: drawing, theming, enhacements, fixes
14756         * DataGridColumnStyle.cs: fixes, drawing
14757         * Theme.cs: theming for Datagrid
14758
14759 2005-05-20  Peter Bartok  <pbartok@novell.com>
14760
14761         * Cursor.cs: Implemented GetObjectData() method
14762
14763 2005-05-20  Peter Bartok  <pbartok@novell.com>
14764
14765         * Cursors.cs: Added setting of cursor name
14766         * Cursor.cs:
14767           - Implemented constructors
14768           - Implemented Draw and DrawStretched
14769           - Implemented Current property
14770           - Implemented == and != operators
14771           - Implemented Dispose()
14772           - Implemented ToString
14773           - Added missing attributes
14774         * XplatUIX11.cs:
14775           - Added missing reset for OverrideCursor when DoEvents is called
14776           - Fixed creation of cursor, logic was wrong
14777         * XplatUIWin32.cs:
14778           - Added missing reset for OverrideCursor when DoEvents is called
14779           - Fixed creation of cursor, bit arrays were swapped
14780         * Clipboard.cs: Removed obsolete MonoTODO attribute
14781
14782 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14783
14784         * ComboBox.cs: fixes OnSelectedItemChanged
14785         * ControlBindingsCollection.cs: fixes item range check
14786
14787 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14788
14789         * UpDownBase.cs:
14790                 - Calc preferred height properly
14791                 - Implement missing properties
14792                 
14793         * NumericUpDown.cs: Implement missing events
14794
14795 2005-05-19  Jackson Harper  <jackson@ximian.com>
14796
14797         * TabControl.cs: New method that resizes the tab pages before
14798         redrawing them. This as needed as the control is double buffered
14799         and sizing will not be recalculated unless ResizeTabPages is
14800         called.
14801         * TabPage.cs: Set base.Text instead of Text in the constructor so
14802         that UpdateOwner does not get called. Use the new Redraw method of
14803         TabControl instead of Refresh so the sizing is recalculated.
14804         * ThemeWin32Classic.cs: Draw the text for button tabs.
14805
14806 2005-05-19  Jackson Harper  <jackson@ximian.com>
14807
14808         * Control.cs: Paint control background images. Fix typo where
14809         PaintControlBackground was not getting called correctly.
14810
14811 2005-05-19  Peter Bartok  <pbartok@novell.com>
14812
14813         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
14814           I can investigate, apparently I broke FileDialog
14815
14816 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
14817
14818         * AxHost.cs: Some simple properties.
14819         * Control.cs: window must be accessible after ctor.
14820         * Form.cs: Added TransparencyKey property.
14821         * TextBoxBase.cs: Implemented Clear. Text property can be null.
14822         * XplatUIWin32.cs: SetBorderStyle implemented.
14823
14824 2005-05-18  Peter Bartok  <pbartok@novell.com>
14825
14826         * DataObject.cs: Entries are not global but particular to the
14827           DataObject, now it behaves that way
14828         * XplatUIWin32.cs: Implemented Clipboard methods
14829         * Clipboard.cs: Implemented
14830         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
14831         * XplatUIOSX.cs: Updated to final clipboard prototypes
14832         * XplatUIX11.cs: Implemented Clipboard methods
14833         * XplatUIDriver.cs: Updated to final clipboard prototypes
14834         * XplatUIStructs.cs:
14835           - Added BITMAPINFOHEADER struct
14836           - Added ClipboardFormats enum
14837         * X11Structs.cs:
14838           - Added ClipboardStruct
14839           - Added Atom enum items for clipboard types
14840           - Fixed atom types for Selection event structures
14841         * DataFormats.cs:
14842           - Added internal properties and methods for drivers to enumerate
14843             all known formats
14844           - Switched initialization method to allow drivers to assign their
14845             own IDs even for the MS predefined clipboard IDs
14846         * XplatUI.cs: Updated to final clipboard interface
14847
14848 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14849         * PropertyGridView.cs: Fixed compiler warnings.
14850
14851 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14852         * PropertyGrid.cs: Added some event calls
14853         * PropertyGridView.cs: Change drawing code to use double buffering
14854         * PropertyGridTextBox.cs: Changed Text property name
14855         * GridItem.cs: Added Bounds property.
14856         * GridEntry.cs: Added Bounds property.
14857
14858 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
14859
14860         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
14861         since GetType() may not return the correct type if the object is
14862         a remoting proxy.
14863
14864 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
14865
14866         * TreeNodeCollection.cs: fixes get/set item ranges
14867         
14868 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14869
14870         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
14871                 
14872 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14873
14874         * ComboBox.cs: Fix item range comparation
14875         * ListView.cs: Fix item range comparation
14876
14877 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14878
14879         * FontDialog.cs:
14880           - Clear example panel when OnPaint is called
14881           - Better solution for displaying the example panel text
14882           - Select default indexes in the ListBoxes
14883
14884 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14885
14886         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
14887
14888 2005-05-11  Peter Bartok  <pbartok@novell.com>
14889
14890         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
14891         * SelectionRangeConverter.cs: Implemented
14892         * PropertyGrid.cs: Fixed attribute value
14893         * Control.cs:
14894           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
14895           - Added Sebastien Pouliot's CAS Stack Propagation fixes
14896         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
14897           that's common to all drivers. First methods to go there are
14898           Sebastien Pouliot's CAS Stack Propagation helper methods
14899         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
14900           Sebastien Pouliot for CAS Stack Propagation
14901
14902 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14903
14904         * OSXStructs.cs:
14905           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
14906
14907 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
14908
14909         * DataGridTextBoxColumn.cs: fixed some members
14910         * GridColumnStylesCollection.cs: indexed column is case insensitive
14911         * DataGridTableStyle.cs: fixes
14912         * ThemeWin32Classic.cs: add new theme parameter
14913         * Theme.cs: add new theme parameter
14914         * DataGridDrawingLogic.cs: Datagrid's drawing logic
14915         * DataGrid.cs: fixes, new internal properties, etc.
14916         * DataGridColumnStyle.cs: allows to set grid value
14917         *
14918
14919 2005-05-10  Peter Bartok  <pbartok@novell.com>
14920
14921         * AccessibleObject.cs:
14922           - Removed MonoTODO attribute on help, method is correct
14923           - Fixed Bounds property
14924         * AxHost.cs: Moved MonoTODO
14925         * ButtonBase.cs: Now setting AccessibleObject properties
14926         * RadioButton.cs: Setting proper AccessibleObject role
14927         * CheckBox.cs: Setting proper AccessibleObject role
14928         * ControlBindingsCollection.cs: Added properties, methods and attributes
14929         * DataFormats.cs: Fixed awkward internal API, and changed to enable
14930           userdefined DataFormats.Format items as well
14931         * ListControl.cs: Removed data_member from the public eye
14932         * OpenFileDialog.cs:
14933           - Made class sealed
14934           - Added missing attributes
14935         * SaveFileDialog.cs: Added missing attributes
14936         * ImageListStreamer.cs: Fixed code that caused warnings
14937         * LinkLabel.cs: Removed unreachable code
14938         * TreeView.cs: Fixed code that caused warnings
14939         * PropertyGridView.cs: Fixed code that caused warnings
14940         * GridColumnStylesCollection.cs: Added missing attributes
14941         * GridTableStylesCollection: Added missing attribute
14942         * PropertyManager: Added .ctor
14943         * SecurityIDType: Added
14944         * DataObject.cs: Implemented class
14945         * LinkArea.cs: Added missing attribute
14946
14947 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
14948
14949         * RadioButton.cs: call base method to allow to fire OnClick event
14950         * UpDownBase.cs: OnMouseUp call base method
14951         * CheckedListBox.cs: call base method before returning
14952         * TrackBar.cs: call base method before returning
14953         
14954
14955 2005-05-10  Peter Bartok  <pbartok@novell.com>
14956
14957         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
14958           for messages
14959
14960 2005-05-10  Peter Bartok  <pbartok@novell.com>
14961
14962         * DataFormats.cs: Implemented
14963         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
14964           XplatUIX11.cs: Added Clipboard APIs
14965         * XplatUIWin32.cs: Implemented Clipboard APIs
14966         * FolderBrowserDialog.cs: Added missing event, attributes
14967
14968 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
14969
14970         * CheckBox.cs: call base method to allow to fire OnClick event
14971
14972 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
14973
14974         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
14975
14976 2005-05-06  Peter Bartok  <pbartok@novell.com>
14977
14978         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
14979         * Screen.cs: Implemented
14980         * HelpNavigator.cs: Added
14981         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
14982           property
14983         * HelpProvider.cs: Implemented all we can do until we have a CHM
14984           help library (which means that "What's This" does work now)
14985
14986 2005-05-06  Jackson Harper  <jackson@ximian.com>
14987
14988         * XplatUIX11.cs: Fix waking up the main loop.
14989                 
14990 2005-05-05  Peter Bartok  <pbartok@novell.com>
14991
14992         * XplatUI.cs: Updated revision
14993         * Form.cs: Removed enless loop
14994         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
14995         * Label.cs (OnPaint): Added call to base.OnPaint()
14996         * ToolTip.cs: Made ToolTipWindow reusable for other controls
14997         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
14998         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
14999         * AxHost.cs: Added
15000         * ButtonBase.cs: Moved base.OnPaint() call to end of method
15001         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
15002           to ToolTip.ToolTipWindow for drawing and size methods; this allows
15003           reuse of ToolTipWindow by other controls
15004         * SizeGrip.cs: Moved base.OnPaint() call to end of method
15005         * XplatUIX11.cs: Now clipping drawing area (experimental)
15006         * PictureBox.cs: Moved base.OnPaint() call to end of method
15007         * Theme.cs: Fixed ToolTip abstracts to match new format
15008         * ErrorProvider.cs: Implemented
15009
15010 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
15011
15012         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
15013         * LinkLabel.cs:
15014                 - Adds cursors
15015                 - Handles focus
15016                 - Implements LinkBehavior
15017                 - Fixes many issues
15018
15019 2005-05-03  Jackson Harper  <jackson@ximian.com>
15020
15021         * ListView.cs: Calculate the scrollbar positioning on resize and
15022         paint, so they get put in the correct place.
15023
15024 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15025
15026         * ColorDialogs.cs: The small color panels are now handled by
15027           SmallColorControl. This fixes drawing of the focus rectangle
15028           and adds a 3D border.
15029
15030 2005-05-03  Peter Bartok  <pbartok@novell.com>
15031
15032         * Control.cs: Modified version of Jonathan Chamber's fix for
15033           double-buffering
15034
15035 2005-05-03  Jackson Harper  <jackson@ximian.com>
15036
15037         * ListView.cs: Remove redraw variable. Control now handles whether
15038         or not a redraw needs to be done, and will only raise the paint
15039         event if redrawing is needed.
15040
15041 2005-05-03  Jackson Harper  <jackson@ximian.com>
15042
15043         * Splitter.cs: No decorations for the splitter form. Cache the
15044         hatch brush.
15045
15046 2005-05-03  Jackson Harper  <jackson@ximian.com>
15047
15048         * TreeView.cs: Use dashed lines to connect nodes. Use the
15049         ControlPaint method for drawing the focus rect instead of doing
15050         that in treeview.
15051
15052 2005-05-02  Peter Bartok  <pbartok@novell.com>
15053
15054         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
15055
15056 2005-04-29  Jackson Harper  <jackson@ximian.com>
15057
15058         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
15059         entire image buffer. Just clear the clipping rectangle.
15060
15061 2005-04-29  Jackson Harper  <jackson@ximian.com>
15062
15063         * ThemeWin32Classic.cs: Don't draw list view items that are
15064         outside the clipping rectangle.
15065
15066 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
15067
15068         * ListBox.cs: added horizontal item scroll
15069
15070 2005-04-29  Jackson Harper  <jackson@ximian.com>
15071
15072         * ThemeWin32Classic.cs: Remove some old debug code that was
15073         causing flicker with the new double buffering code.
15074
15075 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
15076
15077         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
15078         behave like combobox and comboboxlist (still not sure if this is
15079         correct though).
15080
15081 2005-04-28  Jackson Harper  <jackson@ximian.com>
15082
15083         * ThemeWin32Classic.cs: Don't fill the middle of progress
15084         bars. This fills areas outside of the clip bounds that don't need
15085         to be filled.
15086
15087 2005-04-28  Jackson Harper  <jackson@ximian.com>
15088
15089         * Control.cs: Don't expose functionality to touch the image buffers.
15090         * ProgressBar.cs:
15091         * ListView.cs: We do not need to (and no longer can) manipulate
15092         the image buffers directly. All of this is handled by Control.
15093
15094 2005-04-28  Peter Bartok  <pbartok@novell.com>
15095
15096         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15097           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
15098           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
15099
15100 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15101
15102         * Combobox:
15103                 - Adjust control's height for non-simple comboboxes (bug fix)
15104                 - Remove dead code
15105         * MenuAPI.cs: remove unused var
15106         * ScrollBar.cs: remove unsed var
15107                  
15108         * ListBox.cs: unselect items when clearing
15109
15110 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15111
15112         * ListControl.cs: honors OnPositionChanged and default Selected Item
15113         * ListBox.cs: unselect items when clearing
15114
15115 2005-04-27  Jackson Harper  <jackson@ximian.com>
15116
15117         * X11Keyboard.cs: Initialize a default keyboard and give a warning
15118         if a "correct" keyboard is not found. This will make us not crash,
15119         but might give some users bad keyboard layouts...seems to be the
15120         same thing rewind does.
15121
15122 2005-04-27  Jackson Harper  <jackson@ximian.com>
15123
15124         * BindingManagerBase.cs: Attach the current/position changed
15125         handlers to their respective events.
15126
15127 2005-04-27  Jackson Harper  <jackson@ximian.com>
15128
15129         * Control.cs: Make sure that the first WM_PAINT does a full draw,
15130         not just a blit.
15131         * ThemeWin32Classic.cs: Don't fill the background for picture
15132         boxes. This could overright user drawing.
15133         * ComboBox.cs: Just fill the clipping rect not the entire client
15134         rect when drawing the background. This prevents pieces of the
15135         image buffer from getting overwritten and is theoretically faster.
15136
15137 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
15138
15139         * ComboBox.cs: Databinding support fixes, fire missing events
15140         * ListControl.cs: implement missing methods and properties, fixes
15141         * ThemeWin32Classic.cs: Databiding support on Drawing
15142         * CheckedListBox.cs: Databinding support fixes, fire missing events
15143         * ListBox.cs: Databinding support fixes, fire missing events
15144         
15145 2005-04-25  Peter Bartok  <pbartok@novell.com>
15146
15147         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
15148
15149 2005-04-25  Jackson Harper  <jackson@ximian.com>
15150
15151         * TreeView.cs: Use the horizontal scrollbars height not width when
15152         determining how much of the client area is available.
15153
15154 2005-04-25  Jackson Harper  <jackson@ximian.com>
15155
15156         * Control.cs: Double buffering is handled differently now. As per
15157         the spec, the extra buffer is created in the WM_PAINT message and
15158         passed down to the control's drawing code.
15159         * GroupBox.cs:
15160         * Label.cs:
15161         * CheckBox.cs:
15162         * ProgressBar.cs:
15163         * RadioButton.cs:
15164         * ColorDialog.cs:
15165         * ComboBox.cs:
15166         * PropertyGridView.cs:
15167         * UpDownBase.cs:
15168         * MessageBox.cs:
15169         * MenuAPI.cs:
15170         * ListView.cs:
15171         * ButtonBase.cs:
15172         * SizeGrip.cs:
15173         * ScrollBar.cs:
15174         * ListBox.cs:
15175         * TrackBar.cs:
15176         * ToolBar.cs:
15177         * PictureBox.cs:
15178         * DateTimePicker.cs:
15179         * StatusBar.cs:
15180         * TreeView.cs: Update to new double buffering system.
15181         * MonthCalendar.cs: Uncomment block, as Capture is now
15182         working. Update to new double buffering
15183         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
15184         * PaintEventArgs.cs: New internal method allows us to set the
15185         graphics object. This is used for double buffering.
15186         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
15187         rectangle. The internal paint_area var has been removed from
15188         StatusBar. The clipping rect should be used instead.
15189         * Theme.cs: Give the PictureBox drawing method a clipping rect.
15190         * TabPage.cs: The RefreshTabs method was removed, so just call the
15191         tab controls Refresh method now.
15192         * TabControl.cs: Update to new double buffering. Make sure the
15193         handle is created before sizing the tab pages, otherwise we will
15194         get stuck in a loop.
15195
15196 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
15197
15198         * LinkLabel.cs: Fix typo, bug #74719; patch
15199           from Borja Sanchez Zamorano
15200
15201 2005-04-22  Jackson Harper  <jackson@ximian.com>
15202
15203         * TreeNode.cs: Implement Handle stuff.
15204         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
15205
15206 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
15207
15208         * DataGridTextBoxColumn.cs: call base constructors, fixes
15209         * GridColumnStylesCollection.cs: missing events, methods, and functionality
15210         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
15211         * DataGridTableStyle.cs: implements create default column styles
15212         * DataGridBoolColumn.cs: which types can handle
15213         * DataGrid.cs: missing methods, fixes, new functionality
15214         * DataGridColumnStyle.cs: fixes
15215
15216 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
15217         * FolderBrowserDialog.cs:
15218         - Use a thread to fill the TreeView
15219         - Adjusted some sizes
15220
15221 2005-04-19  Peter Bartok  <pbartok@novell.com>
15222
15223         * LinkLabel.cs: (Re-)create the pieces when setting the Text
15224           property. Fixes #74360.
15225
15226 2005-04-19  Jackson Harper  <jackson@ximian.com>
15227
15228         * XEventQueue.cs: Lock when getting the lockqueue size.
15229         * PictureBox.cs: Call base OnPaint
15230         
15231 2005-04-19  Peter Bartok  <pbartok@novell.com>
15232
15233         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
15234           messages were no longer being processed (this broke BeginInvoke)
15235
15236           
15237 2005-04-18  Jackson Harper  <jackson@ximian.com>
15238
15239         * TreeView.cs: buglet that caused node images to get drawn
15240         regardless of whether or not they were in the clipping rectangle.
15241
15242 2005-04-18  Jackson Harper  <jackson@ximian.com>
15243
15244         * CurrencyManager.cs: There are four rules for GetItemProperties:
15245         - If the type is an array use the element type of the array
15246         - If the type is a typed list, use the type
15247         - If the list contains an Item property that is not an object, use
15248         that property
15249         - use the first element of the list if there are any elements in
15250         the list.
15251         
15252 2005-04-17  Jackson Harper  <jackson@ximian.oom>
15253
15254         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
15255         click. This handles offsets for scrolling properly and reduces
15256         memory. Also fixed GetNode to not offset now that TopNode works
15257         properly.
15258         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
15259         
15260 2005-04-17  Jackson Harper  <jackson@ximian.com>
15261
15262         * CursorConverter.cs: Initial implementation.
15263
15264 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15265
15266         * ListControl.cs: work towards complex data binding support on ListControl
15267         * CurrencyManager.cs: work towards complex data binding support on ListControl
15268         * ListBox.cs: work towards complex data binding support on ListControl
15269
15270
15271 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15272
15273         * GridTableStylesCollection.cs: fixes name and constructor
15274         * DataGridTableStyle.cs: fixes
15275         * DataGridBoolColumn.cs: fixes names and constructors
15276         * DataGrid.cs: define methods and properties. Some init implementations
15277         * DataGridCell.cs: define methods and properties. Some init implementations
15278         * GridTablesFactory.cs: Define methods and properties
15279
15280 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
15281
15282         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
15283         graphics port changes.  We still want the coordinates in global screen
15284         coordinates.
15285
15286 2005-04-14  Jackson Harper  <jackson@ximian.com>
15287
15288         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
15289         check plus minus or checkbox clicks unless those features are enabled.
15290
15291 2005-04-14  Jackson Harper  <jackson@ximian.com>
15292
15293         * TreeView.cs: Add methods for setting the top and bottom visible
15294         nodes. TreeNode::EnsureVisible uses these methods.
15295         * TreeNode.cs: Implement EnsureVisible
15296
15297 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
15298
15299         * Form.cs: Pospone menu assignation if the window has not been created yet
15300         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
15301         size and position
15302
15303 2005-04-12  Jackson Harper  <jackson@ximian.com>
15304
15305         * TreeView.cs: Set the TopNode properly when scrolling
15306         occurs. This has the added benifit of reducing the amount of
15307         walking that needs to be done when drawing. Also removed an old
15308         misleading TODO.
15309         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
15310         
15311 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
15312
15313         * Timer.cs: fixes interval setting when the timer is already enabled
15314         
15315 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
15316
15317         * FolderBrowserDialog.cs: First approach
15318
15319 2005-04-09  Peter Bartok  <pbartok@novell.com>
15320
15321         * FolderBrowserDialog: Added
15322
15323 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
15324
15325         * LinkLabel.cs: move drawing code into the theme
15326         * ThemeWin32Classic.cs: drawing code and painting background bugfix
15327         * Theme.cs: define DrawLinkLabel method
15328
15329 2005-04-05  Jackson Harper  <jackson@ximian.com>
15330
15331         * BindingContext.cs: Use weak references so these bad actors don't
15332         stay alive longer then they need to.
15333
15334 2005-04-05  Jackson Harper  <jackson@ximian.com>
15335
15336         * ListControl.cs: Basic implementation of complex databinding.
15337         * ComboBox.cs:
15338         * ListBox.cs: Add calls to ListControl databinding methods.
15339
15340 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
15341
15342         * FileDialog.cs:
15343           - Don't change PopupButtonState to Normal when the
15344             PopupButton gets pressed several times.
15345           - Renamed ButtonPanel to PopupButtonPanel
15346
15347 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
15348
15349         * ColorDialog.cs: Use cached objects instead of creating them
15350         * LinkLabel.cs: Use cached objects instead of creating them
15351         * Splitter.cs: Use cached objects instead of creating them
15352         * FontDialog.cs: Use cached objects instead of creating them
15353         * PropertyGridView.cs: Use cached objects instead of creating them
15354         * MessageBox.cs: Use cached objects instead of creating them
15355         * FileDialog.cs: Use cached objects instead of creating them
15356         * ThemeWin32Classic.cs: Use cached objects instead of creating them
15357         * TreeView.cs: Use cached objects instead of creating them
15358         
15359 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
15360
15361         * Control.cs: use Equals to compare the font since no == op
15362         * ScrollBar.cs: use Equals to compare the font since no == op
15363
15364 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
15365
15366         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
15367
15368 2005-04-01  Jackson Harper  <jackson@ximian.com>
15369
15370         * Binding.cs: Implement IsBinding.
15371         * BindingManagerBase.cs:
15372         * PropertyManager.cs:
15373         * CurrencyManager.cs: Add IsSuspended property.
15374
15375 2005-04-01  Jackson Harper  <jackson@ximian.com>
15376
15377         * Binding.cs: Had some IsAssignableFrom calls backwards.
15378
15379 2005-04-01  Jackson Harper  <jackson@ximian.com>
15380
15381         * Binding.cs: Handle null data members when pulling data.
15382         * PropertyManager.cs: Handle the data member being a property that
15383         does not exist.
15384
15385 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15386
15387         * DataGridTextBoxColumn.cs: fixes signature
15388         * DataGrid.cs: calls right constructor
15389
15390 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15391
15392         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
15393         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
15394         * GridTableStylesCollection.cs: implements GridTableStylesCollection
15395         * DataGridTableStyle.cs: implements DataGridTableStyle
15396         * DataGridBoolColumn.cs: implements DataGridBoolColumn
15397         * DataGridTextBox.cs: implements DataGridTextBox
15398         * DataGridColumnStyle.cs: implements DataGridColumnStyle
15399
15400 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
15401
15402         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
15403
15404 2005-03-29  Peter Bartok  <pbartok@novell.com>
15405
15406         * Application.cs:
15407           - Properly implemented CompanyName property
15408           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
15409             returns a path that includes CompanyName, ProductName and
15410             Version (fixes bug #70330)
15411
15412 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
15413
15414         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
15415           fixes bug #72588.
15416
15417 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15418
15419         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
15420         
15421           - Added ReadOnly CheckBox
15422           - Further refactoring: moved some code from Open-/SaveFileDialog
15423             to FileDialog
15424
15425 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15426
15427         * OpenFileDialog.cs: Fixed CheckFileExists
15428         * FileDialog.cs:
15429           Moved FileView and DirComboBox outside FileDialog class.
15430           They can now be used outside FileDialog
15431
15432 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15433
15434         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
15435         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
15436
15437 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15438
15439         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15440           - Added missing CreatePrompt property in SaveDialog
15441           - Overall SaveDialog handling should be better now
15442           - Added non standard ShowHiddenFiles property
15443           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
15444           - Added InitialDirectory and RestoreDirectory support
15445
15446 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
15447
15448         * FileDialog.cs: Made dirComboBox usable
15449
15450 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
15451
15452         * FileDialog.cs: Added Filter support (case sensitiv)
15453
15454 2005-03-24  Jackson Harper  <jackson@ximian.com>
15455
15456         * TabControl.cs: Need a couple more pixels for the lines.
15457
15458 2005-03-23  Jackson Harper  <jackson@ximian.com>
15459
15460         * TabControl.cs: Give the tab page focus when it is selected.
15461
15462 2005-03-23  Jackson Harper  <jackson@ximian.com>
15463
15464         * TabControl.cs: Account for the drawing of tabs borders when
15465         invalidating. If the slider was clicked dont do click detection on
15466         the tabs.
15467
15468 2005-03-23  Jackson Harper  <jackson@ximian.com>
15469
15470         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
15471
15472 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
15473
15474         * CategoryGridEntry.cs: Added
15475         * GridItem.cs: Added helper properties
15476         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
15477         * GridEntry.cs: Updated code for collection
15478         * PropertyGrid.cs: Cleaned up some formatting
15479         * PropertyGridView.cs: Added drop down functionality for enums.
15480         * GridItemCollection.cs: Added enumerator logic
15481         * PropertyGridEntry.cs: Added
15482
15483 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15484
15485         * FileDialog.cs:
15486           - Removed unnecessary commented code
15487           - Fixed handling for entering the filename manually in the combobox
15488
15489 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15490
15491         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
15492
15493 2005-03-18  Peter Bartok  <pbartok@novell.com>
15494
15495         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
15496           them being touching the border
15497
15498 2005-03-18  Peter Bartok  <pbartok@novell.com>
15499
15500         * TextControl.cs: Quick hack to center text better
15501
15502 2005-03-18  Peter Bartok  <pbartok@novell.com>
15503
15504         * ControlPaint.cs:
15505           - Don't throw NotImplemented exceptions, just print a notice once
15506             instead (requested by Miguel). This makes running existing SWF
15507             apps a bit easier
15508         * Control.cs:
15509           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
15510           - Added context menu trigger on right click
15511         * Panel.cs: Trigger invalidate on resize
15512         * StatusBar.cs:
15513           - Removed old double-buffer drawing
15514           - Added ResizeRedraw style to force proper update of statusbar
15515         * ListView.cs:
15516           - Removed debug output
15517         * ThemeWin32Classic.cs:
15518           - Fixed drawing of status bar, now draws Text property if there
15519             are no defined panels
15520
15521 2005-03-18  Jackson Harper  <jackson@ximian.com>
15522
15523         * ImageList.cs: When the image stream is set pull all the images
15524         from it.
15525         * ImageListStreamer.cs: Implement reading image list streams.
15526
15527 2005-03-18  Peter Bartok  <pbartok@novell.com>
15528
15529         * ThemeWin32Classic.cs (DrawPictureBox):
15530           - Fixed calculations for centered drawing
15531           - Fixed drawing for normal mode, not scaling the image on normal
15532
15533 2005-03-18  Peter Bartok  <pbartok@novell.com>
15534
15535         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
15536           textbox
15537         * FileDialog.cs:
15538           - Made Open/Save button the accept button for FileDialog
15539           - Tied the cancel button to the IButtonControl cancel button
15540           - Save/Open now properly builds the pathname
15541           - Now handles user-entered text
15542           - Preventing crash on right-click if no item is selected
15543           - Fixed Text property, now uses contents of textbox
15544           - Fixed SelectedText property, now just returns the text part that
15545             is selected in the text box
15546
15547 2005-03-18  Jackson Harper  <jackson@ximian.com>
15548
15549         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
15550         rect, make sure to de-adjust the interior rect after drawing the
15551         tab text.
15552
15553 2005-03-18  Peter Bartok  <pbartok@novell.com>
15554
15555         * MenuAPI.cs: Remove menu *before* executing selected action to
15556           prevent the menu from 'hanging around'
15557           
15558 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
15559
15560         * XplatUIOSX.cs: Implemented WorkingArea property
15561
15562 2005-03-17  Peter Bartok  <pbartok@novell.com>
15563
15564         * XplatUIX11.cs: Fixed menu coord calculations
15565         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
15566           for calculating offsets
15567
15568 2005-03-17  Peter Bartok  <pbartok@novell.com>
15569
15570         * Hwnd.cs: Do not consider menu presence for default client
15571           rectangle location/size
15572         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
15573           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
15574           translation functions
15575         * FileDialog.cs: Fixed (what I presume is a) typo
15576
15577 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
15578
15579         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
15580           X access (avoids X-Async errors)
15581
15582 2005-03-16  Jackson Harper  <jackson@ximian.com>
15583
15584         * TabControl.cs: Raise the SelectedIndexChanged event.
15585
15586 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
15587
15588         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15589           - Removed vertical ToolBar and replaced it with a custom panel
15590             (desktop and home button already work)
15591           - Added Help button (some controls get resized or relocated then)
15592           - Draw correct text depending on Open or Save.
15593           - Fixed some typos...
15594
15595 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
15596
15597         * ScrollBar.cs:
15598           - Only change Maximum and Minimum when need it (bug fix)
15599
15600 2005-03-15  Peter Bartok  <pbartok@novell.com>
15601
15602         * Form.cs: Use Handle for icon, to trigger creation if
15603           the window does not yet exist
15604         * Control.cs:
15605           - CanSelect: Slight performance improvement
15606           - Focus(): Preventing possible recursion
15607           - Invalidate(): Removed ControlStyle based clear flag setting
15608           - WM_PAINT: fixed logic for calling OnPaintBackground
15609           - WM_ERASEBKGND: Fixed logic, added call to new driver method
15610             EraseWindowBackground if the control doesn't paint background
15611         * XplatUIWin32.cs:
15612           - Moved EraseWindowBackground() method to internal methods
15613           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
15614             is sent via SendMessage on BeginPaint call on Win32
15615         * XplatUIX11.cs:
15616           - Added EraseWindowBackground() method
15617           - No longer sends WM_ERASEBKGND on .Expose, but on call to
15618             PaintEventStart, which more closely matches Win32 behaviour
15619           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
15620           - Fixed SetFocus() to properly deal with client and whole windows
15621         * Hwnd.cs: Added ErasePending property
15622         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
15623         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
15624
15625 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
15626
15627         * XplatUIOSX.cs:
15628           - Fix hard loop when timers exist.
15629           - Fix bugs with middle and right click for 3 button mice.
15630
15631 2005-03-11  Peter Bartok  <pbartok@novell.com>
15632
15633         * XplatUIX11.cs:
15634           - get_WorkingArea: Need to call X directly, GetWindowPos only
15635             returns cached data now
15636           - Added sanity check to GetWindowPos hwnd usage
15637
15638 2005-03-11  Jackson Harper  <jackson@ximian.com>
15639
15640         * BindingManagerBase.cs: This method isn't used anymore as
15641         PullData now updates the data in the control.
15642
15643 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
15644
15645         * Form.cs: fixes menu drawing on X11
15646         * MenuAPI.cs:  fixes menu drawing on X11
15647
15648 2005-03-11  Peter Bartok  <pbartok@novell.com>
15649
15650         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
15651           from Jonathan Gilbert; should fix bug #73606
15652         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
15653           in Screen coordinates. Thanks, Jordi.
15654         * Form.cs: Added missing attribute
15655
15656 2005-03-11  Peter Bartok  <pbartok@novell.com>
15657
15658         * Form.cs:
15659           - Rudimentary Mdi support
15660           - Removed outdated FormParent code
15661           - Implemented lots of missing properties and methods, still missing
15662             transparency support
15663           - Added missing attributes
15664           - Implemented support for MaximumBounds
15665           - Added firing of various events
15666         * XplatUI.cs: Added SetIcon() method
15667         * XplatUIDriver.cs: Added SetIcon() abstract
15668         * XplatUIOSX.cs: Stubbed out SetIcon() method
15669         * XplatUIX11.cs:
15670           - Implemented SetIcon() support
15671           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
15672           - Switched to unix line endings
15673         * XplatUIWin32.cs:
15674           - Made POINT internal so for can access it as part of MINMAX
15675           - Implemented SetIcon() support
15676           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
15677             native Mdi support again, might have to go managed)
15678         * Control.cs: Now fires the StyleChanged event
15679         * MdiClient.cs: Added; still mostly empty
15680
15681 2005-03-10  Peter Bartok  <pbartok@novell.com>
15682
15683         * SaveFileDialog.cs: Added emtpy file
15684
15685 2005-03-08  Peter Bartok  <pbartok@novell.com>
15686
15687         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
15688           in turn triggers OnCreateContro) when creating a handle for the
15689           first time.
15690         * TextControl.cs: Fixed endless loop in certain cases when
15691           replacing the current selection
15692
15693 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
15694
15695         * ScrollBar.cs:
15696           - Honors NewValue changes in Scroll events allowing apps to change it
15697           - Adds First and Last Scroll events
15698           - Fixes Thumb events
15699
15700 2005-03-07  Peter Bartok  <pbartok@novell.com>
15701
15702         * Hwnd.cs: Added DefaultClientRectangle property
15703         * XplatUI.cs: Now using the X11 driver Where() method, which provides
15704           more detailed debug information
15705         * XplatUIX11.cs:
15706           - Fixed size-change feedback loop, where we would pull an old size
15707             off the queue and mistakenly change our window's size to an
15708             earlier value
15709           - Now compressing ConfigureNotify events, to reduce looping and
15710             redraw issues
15711         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
15712           is called
15713
15714 2005-03-07  Jackson Harper  <jackson@ximian.com>
15715
15716         * Binding.cs: Push data pushes from data -> property. Check if the
15717         property is readonly when attempting to set it.
15718
15719 2005-03-07  Jackson Harper  <jackson@ximian.com>
15720
15721         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
15722         instead of IsSubclassOf. Pulling data now sets the value on the
15723         control.
15724         * PropertyManager.cs:
15725         * CurrencyManager.cs: Just need to pull data when updating now,
15726         because PullData will set the value on the control.
15727
15728 2005-03-04  Jackson Harper  <jackson@ximian.com>
15729
15730         * Binding.cs: Implement data type parsing and converting on pulled
15731         data. TODO: Are there more ways the data can be converted?
15732
15733 2005-03-04  Jackson Harper  <jackson@ximian.com>
15734
15735         * Binding.cs: Support <Property>IsNull checks. Also bind to the
15736         controls Validating method so we can repull the data when the
15737         control loses focus.
15738
15739 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
15740
15741         * ColumnHeader.cs:
15742           - Fixes null string format
15743           
15744         * ListView.cs:
15745           - Adds enum type checks
15746           - Fixes redrawing and recalc need after changing some properties
15747           - Fixes on focus_item set after the event
15748           - Fixes adding columns after the control has been created
15749           
15750         * ThemeWin32Classic.cs:
15751           - Fixes CheckBox focus rectangle
15752           - Fixes ColumnHeader drawing
15753
15754
15755 2005-03-03  Jackson Harper  <jackson@ximian.com>
15756
15757         * Binding.cs: Bind to <Property>Changed events so we can detect
15758         when properties are changed and update the data.
15759
15760 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
15761
15762         * ImageList.cs:
15763           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
15764           - Fixes ImageList constructor with ImageList container
15765           - Fixes image scaling (wrong parameters at DrawImage)
15766
15767 2005-02-02  Jackson Harper  <jackson@ximian.com>
15768
15769         * Binding.cs: Make property searches case-insensitive. Eliminate
15770         some duplicated code.
15771
15772 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
15773
15774         * ComboBox.cs:
15775                 - Handle focus event
15776                 - Fix scrollbar events
15777                 - Discard highlighted item if remove it
15778                 - Fixes SelectedItem with strings
15779
15780 2005-03-01  Peter Bartok  <pbartok@novell.com>
15781
15782         * Control.cs:
15783           - Fixed Visible property, now follows (once again) parent chain
15784             to return false if any control in the chain is visible=false
15785           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
15786           - Fixed several places where is_visible instead of Visible was used
15787           - Implemented FIXME related to focus selection when setting focused
15788             control to be invisible
15789
15790         * XplatUIWin32.cs: Now using proper method to find out if window is
15791           visible. Thanks to Jordi for pointing it out
15792
15793 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
15794
15795         * ComboBox.cs: show/hide scrollbar instead of creating it
15796
15797 2005-02-27  Jackson Harper  <jackson@ximian.com>
15798
15799         * CurrencyManager.cs: Add PositionChanged stuff.
15800
15801 2005-02-27  Peter Bartok  <pbartok@novell.com>
15802
15803         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
15804         * XplatUIOSX.cs: Added GetMenuOrigin() stub
15805         * XplatUIWin32.cs: Implemented GetMenuOrigin()
15806         * XplatUIX11.cs:
15807           - Implemented GetMenuDC()
15808           - Implemented GetMenuOrigin()
15809           - Implemented ReleaseMenuDC()
15810           - Implemented generation of WM_NCPAINT message
15811           - Implemented generation and handling of WM_NCCALCSIZE message
15812         * Form.cs: Added debug helper message for Jordi's menu work
15813         * Hwnd.cs:
15814           - Modified ClientRect property; added setter, fixed getter to handle
15815             setting of ClientRect
15816           - Added MenuOrigin property
15817
15818 2005-02-26  Peter Bartok  <pbartok@novell.com>
15819
15820         * XplatUIX11.cs:
15821           - Destroys the caret if a window that's being destroyed contains it
15822           - Ignores expose events coming from the X11 queue for windows that
15823             already are destroyed
15824           - Now uses the proper variable for handling DestroyNotify, before we
15825             marked the wrong window as destroyed
15826           - Improved/added some debug output
15827
15828 2005-02-26  Peter Bartok  <pbartok@novell.com>
15829
15830         * X11Keyboard.cs: Fixes to work on 64bit systems
15831
15832 2005-02-26  Peter Bartok  <pbartok@novell.com>
15833
15834         * Control.cs:
15835           - Now calling OnHandleDestroyed from DestroyHandle()
15836             instead of Dispose()
15837           - Removed bogus call to controls.Remove() from DestroyHandle()
15838
15839 2005-02-26  Peter Bartok  <pbartok@novell.com>
15840
15841         * Control.cs: Properly destroy child windows when our handle is
15842           destroyed
15843
15844 2005-02-25  Peter Bartok  <pbartok@novell.com>
15845
15846         * XplatUI.cs:
15847           - Added 'DriverDebug' define to allow tracing XplatUI API calls
15848           - Alphabetized Static Methods and Subclasses
15849
15850         * XplatUIX11.cs:
15851           - Added XException class to allow custom handling of X11 exceptions
15852           - Created custom X11 error handler, tied into XException class
15853           - Added support for MONO_XEXCEPTIONS env var to allow the user
15854             to either throw an exception on X errors or continue running
15855             after displaying the error
15856           - Added handling of DestroyNotify message
15857           - Added handler for CreateNotify message (still disabled)
15858           - Improved (tried to at least) Where method to provide file and lineno
15859         * X11Structs.cs:
15860           - Added XErrorHandler delegate
15861           - Added XRequest enumeration (to suppor translation of errors)
15862
15863 2005-02-25  Jackson Harper  <jackson@ximian.com>
15864
15865         * PropertyManager.cs: Implement editing features
15866         * CurrencyManager.cs:
15867         * Binding.cs: First attempt at UpdateIsBinding
15868         * BindingManagerBase.cs: Call UpdateIsBinding before
15869         pushing/pulling data.
15870
15871 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
15872
15873         * MenuAPI.cs: Respect disabled items
15874         * ThemeWin32Classic.cs
15875                 - Caches ImageAttributes creation for DrawImageDisabled
15876                 - Fixes vertical menu line drawing
15877                 - Draws disabled arrows in disable menu items
15878
15879 2005-02-24  Peter Bartok  <pbartok@novell.com>
15880
15881         * Hwnd.cs:
15882           - Added UserData property to allow associating arbitrary objects
15883             with the handle
15884           - Fixed leak; now removing Hwnd references from static windows array
15885         * XplatUIWin32.cs:
15886           - Fixed Graphics leak in PaintEventEnd
15887           - Removed usage of HandleData, switched over to Hwnd class
15888         * HandleData.cs: Removed, obsoleted by Hwnd.cs
15889
15890 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15891
15892         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
15893         * ScrollBar.cs: Fixes bug
15894         * TrackBar.cs: removes death code, clipping, mimize refreshes,
15895          keyboard navigation enhancements
15896
15897 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15898
15899         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
15900         * GroupBox.cs: Add control styles
15901         * Label.cs: Add control styles
15902         * UpDownBase.cs: Add control styles
15903         * ListBox.cs: Add control styles
15904         * XplatUIWin32.cs: Fixes wrong parameter order
15905
15906
15907 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
15908
15909         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
15910
15911 2005-02-23  Jackson Harper  <jackson@ximian.com>
15912
15913         * PropertyManager.cs: Implement property binding. This doesn't
15914         seem to work yet though as (I think) there are some bugs in
15915         System.ComponentModel.PropertyDescriptor.
15916         * BindingContext.cs: Use new PropertyManager constructor.
15917
15918 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
15919
15920         * ProgressBar.cs: use clip region in ProgressBar
15921         * ThemeWin32Classic.cs: use clip region in ProgressBar
15922
15923 2004-02-22  Jackson Harper  <jackson@ximian.com>
15924
15925         * BindingsCollection.cs: Remove some debug code.
15926
15927 2005-02-22  Jackson Harper  <jackson@ximian.com>
15928
15929         * BindingContext.cs:
15930         * ControlBindingsCollection.cs:
15931         * CurrencyManager.cs:
15932         * Binding.cs:
15933         * BindingManagerBase.cs: Initial implementation
15934         * BindingsCollection.cs: Add an internal contains method that the
15935         BindingManagerBase uses to ensure bindings aren't added twice to
15936         the collection.
15937         * PropertyManager.cs: Stubbed out.
15938         * Control.cs:
15939         * ContainerControl.cs: Hook up databinding
15940         
15941 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
15942
15943         * XplatUIOSX.cs:
15944           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
15945           Fixed Invalidate/Update chain.
15946           Fixed tons of other minor bugs (this is almost a complete rewrite).
15947
15948 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
15949
15950         * ComboBox.cs: do subcontrol creation when the control is created
15951
15952 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15953
15954         * Label.cs: fixes image drawing (image and imagelist)
15955         * ThemeWin32Classic.cs: cache brushes
15956         
15957 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15958
15959         * Form.cs: Move menu drawing code to Theme class
15960         * ComboBox.cs: Move ComboBox drawing code to Theme class
15961         * MenuItem.cs: Move menu drawing code to Theme class
15962         * MenuAPI.cs: Move menu drawing code to Theme class
15963         * ThemeWin32Classic.cs: New methods
15964         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
15965         * ListBox.cs: Move Listbox drawing code to Theme class
15966         * Theme.cs: New methods
15967
15968 2005-02-20  Peter Bartok  <pbartok@novell.com>
15969
15970         * Control.cs:
15971           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
15972             only process mnemonics on those)
15973           - Fixed event sequence for key handling; first calling
15974             ProcessKeyEventArgs now
15975         * TextBoxBase.cs:
15976           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
15977             for processing non-character keys
15978           - Fixed WM_CHAR to generate proper event sequence before processing
15979         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
15980           generation
15981
15982 2005-02-19  Peter Bartok  <pbartok@novell.com>
15983
15984         * UserControl.cs: Added TextChanged event; added attributes
15985         * SizeGrip.cs: Implemented resizing and optional display of grip
15986         * Form.cs: Fixed attribute
15987         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15988           Changed meaning of ScrollWindow bool argument; instead of the
15989           clear attribute (which will be true usually anyway), it gives the
15990           option of moving child controls as well.
15991         * XplatUIX11.cs:
15992           - Changed to match new ScrollWindow argument
15993           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
15994             now handles the implicit parent window a WM puts around us
15995         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
15996           to work)
15997         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
15998         * TreeView.cs: Adjusted to new ScrollWindow arguments
15999
16000 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16001
16002         * Form.cs: Menu integration with non-client area
16003         * MenuItem.cs: Menu integration with non-client area
16004         * MenuAPI.cs: Menu integration with non-client area
16005
16006 2005-02-18  Peter Bartok  <pbartok@novell.com>
16007
16008         * MethodInvoker.cs: Added
16009         * MdiLayout.cs: Added
16010         * SendKeys.cs: Started implementation
16011         * ErrorIconAlignment.cs: Added
16012
16013 2005-02-18  Peter Bartok  <pbartok@novell.com>
16014
16015         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
16016         * Form.cs: Added handling for Menu-related Non-client messages
16017
16018 2005-02-17  Peter Bartok  <pbartok@novell.com>
16019
16020         * UpDownBase.cs: Fixed typo, compilation errors
16021         * DomainUpDown.cs: Fixed attribute value
16022
16023 2005-02-16  Miguel de Icaza  <miguel@novell.com>
16024
16025         * UpDownBase.cs: Attach entry events.
16026         Propagate events.
16027         Add ForeColor property, Focused, InterceptArrowKeys (interception
16028         does not work yet).
16029
16030 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
16031
16032         * Form.cs:
16033                 - Redraw non client are on Setmenu
16034                 - Calc proper menu starting point
16035
16036 2005-02-17  Peter Bartok  <pbartok@novell.com>
16037
16038         * Application.cs: Fixed message_filter check
16039
16040 2005-02-17  Peter Bartok  <pbartok@novell.com>
16041
16042         * Application.cs: Now calls registered message filters
16043         * DockStyle.cs: Fixed attribute
16044         * Form.cs: Fixed attribute
16045         * Menu.cs: Fixed attribute
16046         * ToolTip.cs: Fixed attribute
16047         * TreeNode.cs: Added missing attributes and arranged in regions
16048         * PropertyGrid.cs: Fixed signatures
16049         * TreeNodeCollection.cs: Added attributes
16050         * Splitter.cs: Added missing attributes; arranged into regions
16051         * TabPage.cs: Added missing attributes; arranged into regions
16052         * TextBoxBase.cs: Added missing attributes
16053         * TextBox.cs: Added missing attributes
16054         * ArrangeDirection.cs: Added missing attributes
16055         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
16056         * ToolBarButton.cs: Fixed attributes
16057         * AnchorStyles.cs: Fixed attribute
16058         * TrackBar.cs: Fixed attributes
16059         * TabControl.cs: Added missing attributes and arranged into regions
16060         * ToolBar.cs: Fixed attribute
16061         * StatusBar.cs: Fixed signature, organized into regions and added
16062           attributes
16063         * StatusBarPanel.cs: Fixed attributes
16064         * ContentsResizedEventArgs.cs: Implemented
16065         * ContentsResizedEventHandler.cs: Implemented
16066         * DateBoldEventArgs.cs: Implemented
16067         * DateBoldEventHandler.cs: Implemented
16068         * UpDownEventArgs.cs: Implemented
16069         * UpDownEventHandler.cs: Implemented
16070         
16071 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
16072
16073         * Form.cs: first Menu NC refactoring
16074         * MenuAPI.cs: first Menu NC refactoring
16075         
16076 2005-02-16  Peter Bartok  <pbartok@novell.com>
16077
16078         * ImeMode.cs: Added missing attributes
16079         * Menu.cs: Fixed attribute
16080         * GroupBox.cs: Fixed attribute
16081         * Label.cs: Fixed attribute
16082         * ColorDialog.cs (RunDialog): Removed TODO attribute
16083         * ComboBox.cs: Fixed attributes
16084         * ListControl.cs: Added missing attributes
16085         * PropertyGrid.cs: Fixed attributes
16086         * Control.cs: Fixed attributes
16087         * ListViewItem.cs: Added TypeConverter attribute
16088         * NotifyIcon.cs: Fixed attributes
16089         * ListView.cs: Fixed attributes
16090         * ButtonBase.cs: Fixed attribute
16091         * ImageList.cs: Added missing attributes
16092         * ContainerControl.cs: Fixed signature
16093         * CheckedListBox.cs: Fixed attribute; added missing attributes
16094         * Panel.cs: Fixed attributes
16095         * PropertyTabChangedEventArgs.cs: Added missing attribute
16096         * PropertyValueChangedEventArgs.cs: Added missing attribute
16097         * Binding.cs: Fixed attribute
16098         * ListViewItemConverter: Implemented ListViewSubItemConverter class
16099         * ListBox.cs: Fixed attribute; added missing attributes;
16100         * ScrollableControl.cs: Added missing attributes
16101         * PictureBox.cs: Added missing attributes; implemented missing property
16102         * DateTimePicker.cs: Added missing attributes
16103         * Theme.cs (ToolWindowCaptionHeight): Fixed type
16104         * MonthCalendar.cs: Fixed attributes
16105         * StatusBarPanel.cs: Added missing attributes
16106         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
16107
16108 2005-02-16  Peter Bartok  <pbartok@novell.com>
16109
16110         * TextBoxBase.cs: The previous method to enforce height yet remember
16111           the requested high was less than ideal, this is an attempt to do
16112           it better.
16113         * Control.cs: Added comment about possible problem
16114         * Copyright: Updated format
16115         * GridItemType.cs: Fixed swapped values
16116
16117 2005-02-15  Jackson Harper  <jackson@ximian.com>
16118
16119         * BaseCollection.cs: Use property so we never access an
16120         uninitialized list. Also initialize the list in the property.
16121
16122 2005-02-15  Peter Bartok  <pbartok@novell.com>
16123
16124         * GroupBox.cs (ProcessMnemonic): Implemented
16125         * Label.cs (ProcessMnemonic): Implemented
16126         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
16127           hotkeys
16128
16129 2005-02-15  Peter Bartok  <pbartok@novell.com>
16130
16131         * RadioButton.cs (ProcessMnemonic): Implemented
16132         * CheckBox.cs (ProcessMnemonic): Implemented
16133         * Control.cs:
16134           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
16135             handling
16136           - Added internal method to allow calling ProcessMnemonic from other
16137             controls
16138         * ContainerControl.cs:
16139           - Started support for handling validation chain handling
16140           - Implemented ProcessMnemonic support
16141           - Added Select() call to Active, to make sure the active control
16142             receives focus
16143         * Form.cs: Setting toplevel flag for Forms (this was lost in the
16144           FormParent rewrite)
16145         * ThemeWin32Classic.cs:
16146           - DrawCheckBox(): Fixed stringformat to show hotkeys
16147           - DrawRadioButton(): Fixed stringformat to show hotkeys
16148         * CommonDialog.cs: Removed WndProc override, not needed
16149
16150 2005-02-14  Peter Bartok  <pbartok@novell.com>
16151
16152         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
16153           missed those in the rewrite
16154
16155 2005-02-14  Miguel de Icaza  <miguel@novell.com>
16156
16157         * NumericUpDown.cs (Increment, ToString): Add.
16158         (DecimalPlaces): implement.
16159         
16160         Add attributes.
16161         
16162         * UpDownBase.cs: Add the designer attributes.
16163
16164 2005-02-13  Peter Bartok  <pbartok@novell.com>
16165
16166         * Panel.cs: Removed border_style, now in Control
16167         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
16168           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
16169
16170 2005-02-13  Peter Bartok  <pbartok@novell.com>
16171
16172         * MouseButtons.cs: Added missing attributes
16173         * XplatUIStructs.cs: Added enumeration for title styles
16174         * LeftRightAlignment.cs: Added missing attributes
16175         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
16176           it compatible with Graphics.FromHwnd()
16177         * SelectedGridItemChangedEventArgs.cs: Fixed property type
16178         * Keys.cs: Added missing attributes
16179         * SelectionRange.cs: Added missing attributes
16180         * SelectionRangeConverter.cs: Added
16181         * XplatUI.cs:
16182           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
16183             ReleaseMenuDC methods
16184           - Renamed ReleaseWindow to UngrabWindow
16185           - Added proper startup notice to allow version identification
16186         * Form.cs:
16187           - Added missing attributes
16188           - Removed FormParent concept
16189         * Label.cs: Removed border_style field, now in Control
16190         * RadioButton.cs: Now properly selects RadioButton when focus is
16191           received
16192         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
16193         * Control.cs:
16194           - Added missing attributes
16195           - Added borderstyle handling
16196           - Removed FormParent concept support
16197           - Fixed calls to XplatUI to match changed APIs
16198           - Fixed bug that would case us to use disposed Graphics objects
16199           - Removed unneeded internal methods
16200           - PerformLayout(): Fixed to handle DockStyle.Fill properly
16201           - SelectNextControl(): Fixed to properly check common parents
16202         * TextBoxBase.cs: Removed border_style field (now in Control)
16203         * MessageBox.cs:
16204           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
16205             fixed calculations for form size
16206           - Added support for localized strings and icons
16207           - Improved form size calculations, added border
16208         * ListView.cs: Removed border_style field (now in Control)
16209         * X11Structs.cs: Moved several structs from X11 driver here
16210         * X11Keyboard.cs: Changed debug message
16211         * Application.cs: Removed FormParent concept support
16212         * CommonDialog.cs:
16213           - Resetting end_modal flag
16214           - Removed FormParent concept support
16215         * NativeWindow.cs: Removed FormParent concept support
16216         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
16217           Client area and Non-Client whole window to allow support for WM_NC
16218           messages
16219         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
16220           prevent using it until it supports Hwnd as per Geoff Norton's request
16221         * ToolBar.cs: Fixed drawing, was not doing proper drawing
16222         * PictureBox.cs: Removed border_style field, now in Control
16223         * XplatUIWin32.cs: Added new driver methods
16224
16225 2005-02-12  Peter Bartok  <pbartok@novell.com>
16226
16227         * OpacityConverter.cs: Implemented
16228         * Hwnd.cs: Internal class to support drivers that need to emulate
16229           client area/non-client area window behaviour
16230
16231 2005-02-11  Peter Bartok  <pbartok@novell.com>
16232
16233         * KeysConverter.cs: Implemented
16234
16235 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
16236
16237         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
16238         * LinkLabel: Added missing attributes
16239         * MainMenu.cs: fixes ToString
16240         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
16241         * ListBox.cs: fixes event position
16242         * TrackBar.cs: adds missing attributes and events
16243         
16244 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
16245
16246         * MenuItem.cs: Use SystemInformation and bug fixes
16247         * MenuAPI.cs: Use SystemInformation and bug fixes
16248
16249 2005-02-09  Jackson Harper  <jackson@ximian.com>
16250
16251         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
16252         their keystate otherwise things like VK_MENU get stuck "on".
16253
16254 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
16255
16256         * ListBox.cs: Fixes AddRange bug
16257         
16258 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
16259
16260         * ProgressBar.cs
16261                 - Add missing attributes
16262                 - Add missing method
16263                 
16264         * CheckedListBox.cs: Added missing attributes
16265                 - Add missing attributes
16266                 - Remove extra method
16267         
16268         * ComboBox.cs: Added missing attributes
16269         * VScrollBar.cs: Added missing attributes
16270         * ScrollBar.cs:  Added missing attributes
16271         * ListBox.cs: Fixes signature, add missing consts
16272         * LinkArea.cs:   Added missing attributes
16273         
16274
16275 2005-02-08  Peter Bartok  <pbartok@novell.com>
16276
16277         * Menu.cs: Added missing attributes
16278         * MainMenu.cs: Added missing attributes
16279         * GroupBox.cs: Added missing attributes
16280         * Label.cs: Added missing attributes
16281         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
16282         * ColorDialog.cs:
16283           - Added Instance and Options properties
16284           - Added missing attributes
16285         * Cursor.cs: Made Serializable
16286         * NotifyIcon: Added missing attributes
16287         * MenuItem.cs: Added missing attributes
16288         * TextBoxBase.cs: Implemented AppendText() and Select() methods
16289         * Panel.cs: Added Missing attributes
16290         * MonthCalendar.cs: Fixed CreateParams
16291
16292 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16293         
16294         * LinkLabel.cs:
16295                 - Fixes signature
16296                 - Fixes issues with links
16297                 - Adds the class attributes
16298
16299 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16300         
16301         * ComboBox.cs:
16302                 - Fixes button when no items available in dropdown
16303                 - Fixes repainting problems
16304                 - Adds the class attributes
16305                 
16306 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16307
16308         * XplatUIOSX.cs: Detect the menu bar and title bar height from
16309         the current theme.  Cache these on startup.
16310
16311 2005-02-07  Jackson Harper  <jackson@ximian.com>
16312
16313         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
16314         the scrollbar buttons when they are depressed.
16315
16316 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16317
16318         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
16319         Get the display size from the main displayid.  We currently dont
16320         support multiple display configurations.
16321
16322 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16323
16324         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
16325
16326 2005-02-07  Miguel de Icaza  <miguel@novell.com>
16327
16328         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
16329
16330 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16331
16332         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
16333
16334 2005-02-04  Jackson Harper  <jackson@ximian.com>
16335
16336         * ThemeWin32Classic.cs: Respect the clipping rect when
16337         drawing. Only fill the intersection of clips and rects so there
16338         isn't a lot of large fills.
16339         * ScrollBar.cs: Pass the correct clipping rect to the theme
16340         engine. Remove some debug code.
16341
16342 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
16343         
16344         * DateTimePicker.cs:
16345                 - Fixed crash on DateTime.Parse, use Constructor instead
16346
16347 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16348         
16349         * MenuItem.cs:
16350         * MenuAPI.cs:
16351                 - Owner draw support (MeasureItem and DrawItem)
16352
16353 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16354         
16355         *  Menu.cs:
16356                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
16357                 - Fixes MenuItems.Add range
16358         * MenuItem.cs:
16359                 - MergeMenu and Clone and CloneMenu functions
16360
16361 2005-02-03  Jackson Harper  <jackson@ximian.com>
16362
16363         * ScrollBar.cs: Make abstract
16364         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
16365         is abstract.
16366
16367 2005-02-03  Jackson Harper  <jackson@ximian.com>
16368
16369         * ScrollBar.cs: First part of my scrollbar fixups. This removes
16370         all the unneeded refreshes and uses invalidates with properly
16371         computed rects.
16372
16373 2005-02-03  Peter Bartok  <pbartok@novell.com>
16374
16375         * ComponentModel.cs: Added
16376         * IDataGridEditingService.cs: Added
16377         * Timer.cs: Added missing attributes
16378         * ToolTip.cs: Added missing attributes
16379
16380 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16381
16382         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
16383
16384 2005-02-03  Peter Bartok  <pbartok@novell.com>
16385
16386         * ListBox.cs: Added missing attributes
16387
16388 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
16389         
16390         * ListBox.cs:
16391                 - Fixes font height after font change
16392                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
16393                 
16394 2005-02-02  Peter Bartok  <pbartok@novell.com>
16395
16396         * HandleData.cs: Introduced static methods to allow class
16397           to be more self-contained and track it's own HandleData objects
16398         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
16399           HandleData to use new static methods
16400
16401 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
16402
16403         * Combobox.cs:
16404                 - Fixes default size and PreferredHeight
16405                 - Missing events
16406                 - ObjectCollection.Insert implementation
16407                 
16408         * ListControl.cs
16409                 - Fixes signature
16410         * ListBox.cs:
16411                 - Several fixes
16412                 - ObjectCollection.Insert implementation
16413                 - No selection after clean
16414                 - Small fixes
16415
16416 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16417
16418         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
16419
16420 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
16421
16422         * Combobox.cs:
16423                 - Caches ItemHeight calculation for OwnerDrawVariable
16424                 - Handles dropdown properly
16425                 - Fixes several minor bugs
16426
16427 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16428
16429         * ListBox.cs:
16430                 - Fixes 71946 and 71950
16431                 - Fixes changing Multicolumn on the fly
16432                 - Fixes keyboard navigation on Multicolumn listboxes
16433
16434 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16435         
16436         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
16437         crash reporter log.
16438
16439 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16440
16441         * XplatUIOSX.cs: Allow applications to actually exit.
16442
16443 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16444
16445         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
16446         their parent at creation time rather than lazily later.  Fixes a major
16447         regression we were experiencing.
16448
16449 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16450
16451         * ThemeWin32Classic.cs: more date time picker painting fixes
16452         * DateTimePicker.cs: more monthcalendar drop down fixes
16453         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
16454
16455 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16456
16457         * ScrollBar.cs:
16458                 - When moving the thumb going outside the control should stop the moving
16459                 - Adds the firing of missing events
16460                 - Fixes no button show if Size is not specified
16461                 - End / Home keys for keyboard navigation
16462
16463 2005-01-30  Peter Bartok  <pbartok@novell.com>
16464
16465         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
16466           sanity check to prevent theoretical loop
16467         * XplatUIWin32.cs (SetVisible): Removed debug output
16468         * XplatUIX11.cs (SystrayChange): Added sanity check
16469         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
16470         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
16471           behaviour, valid until the X11 client window rewrite is done
16472         * TextBox.cs (ctor): Setting proper default foreground and background
16473           colors
16474
16475 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
16476
16477         * Theme: Added DrawDateTimePicker to interface
16478         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
16479         * DateTimePicker.cs: Created (still needs keys and painting code)
16480         * DateTimePickerFormat.cs: added
16481         * MonthCalendar.cs: fixed CreateParams for popup window mode
16482           
16483 2005-01-29  Peter Bartok  <pbartok@novell.com>
16484
16485         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
16486           this should also the calculations for ligher/darker
16487         * Theme.cs: Fixed defaults for ScrollBar widths/heights
16488
16489 2005-01-29  Peter Bartok  <pbartok@novell.com>
16490
16491         * ArrangeDirection.cs: Added
16492         * ArrangeStartingPositon.cs: Added
16493         * SystemInformation.cs: Implemented
16494         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16495           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
16496           used by SystemInformation class
16497         * X11Strucs.cs: Added XSizeHints structure
16498         * MenuAPI.cs:
16499           - Fixed CreateParams to make sure the menu window is always visible
16500           - TrackPopupMenu: Added check to make sure we don't draw the
16501             menu offscreen
16502
16503 2005-01-29  Peter Bartok  <pbartok@novell.com>
16504
16505         * HandleData.cs: Added method for altering invalid area
16506         * TextBoxBase.cs: Implemented TextLength
16507
16508 2005-01-28  Peter Bartok  <pbartok@novell.com>
16509
16510         * XplatUIX11.cs: Improvement over last patch, not sending
16511           the WM_PAINT directly anymore, instead we scroll any pending
16512           exposed areas and let the system pick out the WM_PAINT later
16513
16514 2005-01-28  Peter Bartok  <pbartok@novell.com>
16515
16516         * SWF.csproj: Deleted, no longer used. Instead,
16517           Managed.Windows.Forms/SWF.csproj should be used
16518         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
16519           directly, to avoid a potential race condition with the next
16520           scroll
16521
16522 2005-01-28  Peter Bartok  <pbartok@novell.com>
16523
16524         * XplatUI.cs: Made class internal
16525
16526 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
16527
16528         * CheckedListBox.cs:
16529                 - Draw focus
16530                 - Fixed Drawing
16531                 - Missing methods and events
16532
16533 2005-01-27  Peter Bartok  <pbartok@novell.com>
16534
16535         * Application.cs (Run): Don't use form if we don't have one
16536
16537 2005-01-27  Peter Bartok  <pbartok@novell.com>
16538
16539         * TextBoxBase.cs (get_Lines): Fixed index off by one error
16540
16541 2005-01-27  Peter Bartok  <pbartok@novell.com>
16542
16543         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
16544         * GridItem.cs: Added; Patch by Jonathan S. Chambers
16545         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
16546         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
16547         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
16548         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
16549         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16550         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16551         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16552         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16553         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16554         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16555
16556 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16557
16558         * Combobox.cs:
16559                 - Draw focus on Simple Combobox
16560                 - Fixes drawing issues
16561                 - fixes 71834
16562
16563 2005-01-27  Peter Bartok  <pbartok@novell.com>
16564
16565         * Form.cs:
16566           - Place window in default location, instead of hardcoded 0/0
16567           - Send initial LocationChanged event
16568         * Control.cs:
16569           - UpdateBounds after creation to find out where the WM placed us
16570           - Make sure that if the ParentForm changes location the Form
16571             is notified
16572         * XplatUIX11.cs: XGetGeometry will not return the coords relative
16573             to the root, but to whatever the WM placed around us.
16574             Translate to root coordinates before returning toplevel
16575             coordinates
16576         * XplatUIWin32.cs: Removed debug output
16577         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
16578           flag to GetWindowPos, to allow translation of coordinates on X11
16579
16580 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16581
16582         * ListBox.cs: connect LostFocus Event
16583
16584 2005-01-27  Peter Bartok  <pbartok@novell.com>
16585
16586         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16587           XplatUIX11.cs: Extended the Systray API
16588         * Form.cs: Removed debug output
16589         * Application.cs: Fixed focus assignment, always need to call
16590           XplatUI.Activate() since Form.Activate() has rules that may
16591           prevent activation
16592         * NotifyIcon.cs: Should be complete now
16593         * ToolTip.cs: Worked around possible timer bug
16594
16595 2005-01-27  Jackson Harper  <jackson@ximian.com>
16596
16597         * TabControl.cs:
16598         - Only invalidate the effected tabs when the
16599         selected index changes. This reduces drawing and gets rid of some
16600         flicker.
16601         - Only refresh if the tabs need to be shifted, otherwise only
16602         invalidate the slider button.
16603         - On windows the tabs are not filled to right if the slider is
16604         visible.
16605         
16606 2005-01-27  Jackson Harper  <jackson@ximian.com>
16607
16608         * TabControl.cs: Only refresh on mouseup if we are showing the
16609         slider. Also only invalidate the button whose state has changed.
16610
16611 2005-01-26  Peter Bartok  <pbartok@novell.com>
16612
16613         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
16614         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
16615           and SystrayRemove() methods
16616         * XplatUIOSX.cs: Stubbed Systray methods
16617         * XplatUIX11.cs:
16618           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
16619             methods
16620           - Fixed broken XChangeProperty calls (marshalling messed up things)
16621         * X11Structs.cs: Added enums and structs required for Size hinting
16622         * NotifyIcon.cs: Added & implemented
16623
16624 2005-01-26  Jackson Harper  <jackson@ximian.com>
16625
16626         * TabControl.cs: Space vertically layed out tabs properly.
16627
16628 2005-01-26  Peter Bartok  <pbartok@novell.com>
16629
16630         * Form.cs (CreateClientParams): Always set the location to 0,0
16631           since we're a child window.
16632
16633         * Control.cs (SetVisibleCore): Always explicitly setting the location
16634           of a toplevel window, apparently X11 doesn't like to move windows
16635           while they're not mapped.
16636
16637 2005-01-26  Jackson Harper  <jackson@ximian.com>
16638
16639         * TabControl.cs: Implement FillToRight size mode with vertically
16640         rendered tabs.
16641
16642 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16643
16644         * ControlPaint.cs, ThemeWin32Classic.cs
16645                 - Fixes DrawFocusRectangle
16646
16647 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16648
16649         * MenuAPI.cs:
16650                 - MenuBar tracking only starts when item is first clicked
16651                 - Fixes menu hidding for multiple subitems
16652                 - Unselect item in MenuBar when item Executed
16653                 - Fixes bug 71495
16654
16655 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
16656
16657         * ListControl.cs:
16658                 - IsInputKey for ListBox
16659         * ListBox.cs:
16660                 - Focus item
16661                 - Shift and Control item selection
16662                 - Implement SelectionMode.MultiExtended
16663                 - Fixes RightToLeft
16664         * ComboBox.cs:
16665                 - IsInputKey implemented
16666                 - Do not generate OnTextChangedEdit on internal txt changes
16667                 
16668 2005-01-23  Peter Bartok  <pbartok@novell.com>
16669
16670         * AccessibleObject.cs: Partially implemented Select()
16671         * MonthCalendar.cs: Added missing attributes and events
16672         * Form.cs: Fixed CreateParams behaviour, now controls derived from
16673           form can properly override CreateParams.
16674         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16675           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
16676           Control performs Invalidate & Update
16677         * NativeWindow (CreateHandle): Added special handling for Form
16678           and Form.FormParent classes to allow overriding of From.CreateParams
16679         * Control.cs:
16680           - ControlNativeWindow: Renamed 'control' variable to more intuitive
16681             name 'owner'
16682           - ControlNativeWindow: Added Owner property
16683           - Removed usage of Refresh() on property changes, changed into
16684             Invalidate(), we need to wait until the queue is processed for
16685             updates, direct calls might cause problems if not all vars for
16686             Paint are initialized
16687           - Added call to UpdateStyles() when creating the window, to set any
16688             styles that CreateWindow might have ignored.
16689           - Added support for Form CreateParent overrides to UpdateStyles()
16690         * MessageBox.cs: Removed no longer needed FormParent override stuff,
16691           CreateParams are now properly overridable
16692         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
16693           CreateParams are now properly overridable
16694
16695 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
16696
16697         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
16698         OnTextBoxChanged.
16699
16700         Capture LostFocus and OnTextBoxChanged.  The later introduces a
16701         recursive invocation that I have not figured out yet.
16702
16703         Reset the timer when not using (it was accumulating).
16704
16705
16706         (OnTextBoxChanged): Set UserEdit to true here to track whether the
16707         user has made changes that require validation.
16708
16709         Reset changing to avoid loops.
16710
16711 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
16712
16713         * NumericUpDown.cs: Display value at startup.
16714
16715         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
16716         ValidateEditText.
16717
16718         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
16719         filled in.  Added some basic parsing of text.
16720
16721         Still missing the OnXXX method overrides, and figuring out the
16722         events that must be emitted.
16723
16724         * UpDownBase.cs: Handle UserEdit on the Text property.
16725         
16726 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
16727
16728         * ComboBox.cs:
16729           - Fixes IntegralHeight
16730           - ToString method
16731
16732 2005-01-21  Jackson Harper  <jackson@ximian.com>
16733
16734         * TabControl.cs: Set the SelectedIndex property when SelectedTab
16735         is set so that the page visibility is updated and the tabs are
16736         sized correctly.
16737
16738 2005-01-21  Jackson Harper  <jackson@ximian.com>
16739
16740         * TabControl.cs: Use cliping rectangle for blitting. Give the
16741         theme the clipping rect so we can do clipping while
16742         drawing. Remove some debug code.
16743
16744 2005-01-21  Jackson Harper  <jackson@ximian.com>
16745
16746         * TabPage.cs: Add a new method so tab pages can force the tab
16747         control to recalculate the tab page sizes.
16748         * TabControl.cs: UpdateOwner needs to make the tab control recalc
16749         sizes.
16750
16751 2005-01-20  Jackson Harper  <jackson@ximian.com>
16752
16753         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
16754
16755 2005-01-20  Jackson Harper  <jackson@ximian.com>
16756
16757         * TreeView.cs: Set the bounds for nodes properly. They were
16758         getting screwed up when checkboxes were not enabled, but images
16759         were.
16760
16761 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
16762
16763         * ListBox.cs:
16764                 - Owner draw support
16765                 - Fixes
16766                 
16767 2005-01-20  Jackson Harper  <jackson@ximian.com>
16768
16769         * XplatUIStructs.cs: More misc keys
16770         * X11Keyboard.cs: Ignore some control keys.
16771
16772 2005-01-20  Jackson Harper  <jackson@ximian.com>
16773
16774         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
16775         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
16776
16777 2005-01-19  Peter Bartok  <pbartok@novell.com>
16778
16779         * Control.cs: Un-selecting the control when it is loosing focus
16780
16781 2005-01-19  Jackson Harper  <jackson@ximian.com>
16782
16783         * TreeView.cs: Hook up to the text controls leave event so we can
16784         end editing when the users clicks outside the text box.
16785         
16786 2005-01-19  Jackson Harper  <jackson@ximian.com>
16787
16788         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
16789         get set in the conversion array.
16790
16791 2005-01-19  Peter Bartok  <pbartok@novell.com>
16792
16793         * Application.cs (ModalRun): Added a call to CreateControl to ensure
16794           focus is properly set
16795         * Button.cs:
16796           - Added missing attributes
16797           - removed styles, those are already set in the base class
16798         * ButtonBase.cs:
16799           - Added missing attributes
16800           - Added clip window styles
16801         * CheckBox.cs: Added missing attributes
16802         * CommonDialog.cs:
16803           - FormParentWindow.CreateParams: Added required clip styles
16804         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
16805           also filters modifier keys
16806         * MessageBox.cs:
16807           - Added assignment of Accept and Cancel button to enable Enter
16808             and Esc keys in MessageBox dialogs
16809           - FormParentWindow.CreateParams: Added required clip styles
16810         * RadioButton.cs: Added missing attributes
16811         * TextControl.cs: No longer draws selection if control does not
16812           have focus
16813         * TextBoxBase.cs:
16814           - Now draws simple rectangle around test area to make it obvious
16815             there's a control. This is a hack until we properly support borders
16816           - A few simple fixes to support selections better, now erases selected
16817             text when typing, and resets selection when using movement keys
16818
16819 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16820
16821         * UpDownBase.cs: Added some new properties.
16822
16823         * DomainUpDown.cs: Implement a lot to get my test working.
16824
16825 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16826
16827         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
16828
16829 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16830
16831         * OSXStructs (WindowAttributes): Fixed csc complaints
16832
16833 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16834
16835         * XplayUIOSX.cs:
16836           OSXStructs.cs: Initial refactor to move enums and consts into
16837           OSXStructs and use them in the driver for greater readability.
16838
16839 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16840
16841         * XplatUIOSX.cs: Initial support for Standard Cursors.
16842         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
16843
16844 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
16845
16846         * ComboBox.cs: ability to change style when the ctrl is already
16847         created, missing methods and events, bug fixes, signature fixes
16848
16849 2005-01-19  Peter Bartok  <pbartok@novell.com>
16850
16851         * Cursors.cs (ctor): Added ctor to fix signature
16852
16853 2005-01-18  Peter Bartok  <pbartok@novell.com>
16854
16855         * Button.cs: Implemented DoubleClick event
16856         * ButtonBase.cs:
16857           - Fixed keyboard handling to behave like MS, where the press of
16858             Spacebar is equivalent to a mousedown, and the key release is
16859             equivalent to mouseup. Now a spacebar push will give the same
16860             visual feedback like a mouse click.
16861           - Added missing attributes
16862           - Added ImeModeChanged event
16863           - Added support for generating DoubleClick event for derived classes
16864         * CheckBox.cs:
16865           - Implemented DoubleClick event
16866           - Added missing attributes
16867         * CommonDialog.cs: Added missing attribute
16868         * ContextMenu.cs: Added missing attributes
16869         * RadioButton.cs:
16870           - AutoChecked buttons do not allow to be unselected when clicked
16871             (otherwise we might end up with no selected buttons in a group)
16872           - Added missing attributes
16873           - Implemented DoubleClickEvent
16874         * ThreadExceptionDialog.cs: Enabled TextBox code
16875
16876 2005-01-18  Peter Bartok  <pbartok@novell.com>
16877
16878         * Form.cs: Removed debug output
16879         * Button.cs: Added support for DoubleClick method
16880
16881 2005-01-18  Peter Bartok  <pbartok@novell.com>
16882
16883         * Form.cs:
16884           - Added method to parent window that allows triggering size
16885             calculations when a menu is added/removed
16886           - set_Menu: Cleaned up mess from early days of Form and Control,
16887             now properly triggers a recalc when a menu is added/removed
16888           - Added case to select form itself as focused form if no child
16889             controls exist
16890           - Added PerformLayout call when showing dialog, to ensure properly
16891             placed controls
16892         * Control.cs:
16893           - Select(): Made internal so Form can access it
16894           - Focus(): Only call Xplat layer if required (avoids loop), and sets
16895             status
16896         * Application.cs (Run): Removed hack and calls PerformLayout instead
16897           to trigger calculation when Form becomes visible
16898
16899 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
16900
16901         * ComboBox.cs: fixes for ownerdraw
16902
16903 2005-01-18  Peter Bartok  <pbartok@novell.com>
16904
16905         * TextControl.cs:
16906           - Sentinel is no longer static, each Document gets it's own, this
16907             avoids locking or alternatively overwrite problems when more
16908             than one text control is used simultaneously.
16909           - Switched to use Hilight and HilightText brushes for text selection
16910
16911         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
16912
16913 2005-01-18  Peter Bartok  <pbartok@novell.com>
16914
16915         * Control.cs:
16916           - Hooked up the following events:
16917                 o ControlAdded
16918                 o ControlRemoved
16919                 o HandleDestroyed
16920                 o ImeModeChanged
16921                 o ParentChanged
16922                 o TabStopChanged
16923                 o Invalidated
16924                 o SystemColorsChanged
16925                 o ParentFontChanged
16926                 o Move
16927           - Removed debug output
16928           - Added a call to the current theme's ResetDefaults when a color change
16929             is detected
16930         * Form.cs: Now setting the proper ImeMode
16931         * Theme.cs: Defined a method to force recreation of cached resources
16932           and rereading of system defaults (ResetDefaults())
16933         * ThemeWin32Classic.cs: Added ResetDefaults() stub
16934
16935 2005-01-17  Peter Bartok  <pbartok@novell.com>
16936
16937         * Control.cs: Added missing attributes
16938
16939 2005-01-17  Jackson Harper  <jackson@ximian.com>
16940
16941         * TreeNode.cs: Implement editing. Add missing properties selected
16942         and visible.
16943         * TreeView.cs: Implement node editing. Also some fixes to use
16944         Invalidate (invalid area) instead of Refresh when selecting.
16945
16946 2005-01-17  Peter Bartok  <pbartok@novell.com>
16947
16948         * Control.cs:
16949           - Implemented InvokeGotFocus() method
16950           - Implemented InvokeLostFocus() method
16951           - Implemented InvokePaint() method
16952           - Implemented InvokePaintBackground() method
16953           - Implemented InvokeClick() method
16954           - Implemented FindForm() method
16955           - Implemented RectangleToClient() method
16956           - Implemented ClientToRectangle() method
16957           - Implemented ResetBackColor() method
16958           - Implemented ResetCursor() method
16959           - Implemented ResetFont() method
16960           - Implemented ResteForeColor() method
16961           - Implemented ResetImeMode() method
16962           - Implemented ResetLeftToRight() method
16963           - Implemented ResetText() method
16964           - Implemented Scale() methods
16965           - Implemented ScaleCore() method
16966           - Implemented Update() method
16967           - Removed unused variables
16968           - Stubbed AccessibilityNotifyClients and
16969             ControlAccessibleObject.NotifyClients() methods (dunno what to do
16970             with those yet)
16971           - Now setting proper default for RightToLeft property
16972           - Fixed bug in SetClientSizeCore that would cause windows to get
16973             really big
16974           - Now sending Click/DoubleClick events
16975           - Now selecting controls when left mouse button is clicked on
16976             selectable control
16977         * AccessibleEvents.cs: Added
16978         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
16979         * XplatUIOSX.cs: Stubbed UpdateWindow() method
16980         * XplatUIWin32.cs: Implemented UpdateWindow() method
16981         * XplatUIX11.cs: Implemented UpdateWindow() method
16982         * Form.cs: Removed stray semicolon causing CS0162 warning
16983         * ThemeWin32Classic.cs: Fixed unused variable warnings
16984         * ScrollableControl.cs: Now calls base method for ScaleCore
16985         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
16986           style to avoid interference with internal click handler (which is
16987           different than standard Control click handling)
16988         * RadioButton.cs:
16989           - Now unchecks all sibling radio buttons when control is
16990             selected (Fixes #68756)
16991           - Removed internal tabstop variable, using the one inherited from
16992             Control
16993
16994 2005-01-17  Jackson Harper  <jackson@ximian.com>
16995
16996         * NavigateEventArgs.cs: Fix base type.
16997         * LinkLabel.cs: Sig fix
16998         
16999 2005-01-17  Jackson Harper  <jackson@ximian.com>
17000
17001         * TreeView.cs: Only invalidate the effected nodes bounds when
17002         selecting nodes.
17003
17004 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17005
17006         * XplatUIWin32.cs: fixes Win32 marshaling
17007         * XplatUIX11.cs: fixes method signature
17008
17009 2005-01-17  Peter Bartok  <pbartok@novell.com>
17010
17011         * XplatUIX11.cs: Clean up resources when we no longer need them
17012
17013 2005-01-17  Peter Bartok  <pbartok@novell.com>
17014
17015         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
17016           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
17017           and DestroyCursor() methods.
17018         * Cursor.cs: Partially implemented, now supports standard cursors;
17019           still contains some debug code
17020         * Cursors.cs: Implemented class
17021         * Control.cs:
17022           - WndProc(): Added handling of WM_SETCURSOR message, setting the
17023             appropriate cursor
17024           - Implemented Cursor property
17025           - Replaced break; with return; more straightforwar and possibly
17026             faster
17027           - Now properly setting the result for WM_HELP
17028         * X11Structs.cs: Added CursorFontShape enum
17029         * XplatUIStructs.cs:
17030           - Added StdCursor enum (to support DefineStdCursor() method)
17031           - Added HitTest enum (to support sending WM_SETCURSOR message)
17032         * XplatUIX11.cs:
17033           - Now sends the WM_SETCURSOR message
17034           - Implemented new cursor methods
17035         * XplatUIOSX.cs: Stubbed new cursor methods
17036         * XplatUIWin32.cs:
17037           - Implemented new cursor methods
17038           - Added GetSystemMetrics function and associated enumeration
17039
17040 2005-01-15  Peter Bartok  <pbartok@novell.com>
17041
17042         * Control.cs:
17043           - WndProc(): Now handles EnableNotifyMessage
17044           - SelectNextControl(): Fixed bug where if no child or sibling
17045             controls exist we looped endlessly
17046
17047 2005-01-14  Jackson Harper  <jackson@ximian.com>
17048
17049         * TreeView.cs: Recalculate the tab pages when a new one is added
17050         so that the proper bounding rects are created.
17051
17052 2005-01-14  Jackson Harper  <jackson@ximian.com>
17053
17054         * TreeView.cs: Draw a gray box instead of a grip in the lower
17055         right hand corner when there are both horizontal and vertical
17056         scroll bars.
17057
17058 2005-01-14  Jackson Harper  <jackson@ximian.com>
17059
17060         * Control.cs: When erasing backgrounds use FromHwnd instead of
17061         FromHdc when there is a NULL wparam. This occurs on the X driver.
17062         * XplatUIX11.cs: Set the wparam to NULL.
17063
17064 2005-01-13  Jackson Harper  <jackson@ximian.com>
17065
17066         * PictureBox.cs: Implement missing methods (except ToString, need
17067         to test that on windows) and events. When visibility is changed we
17068         need to redraw the image because the buffers are killed. When size
17069         is changed refresh if the sizemode needs it.
17070
17071 2005-01-13  Peter Bartok  <pbartok@novell.com>
17072
17073         * Control.cs (SelectNextControl): Was using wrong method to select
17074           a control
17075
17076 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17077
17078         * ComboBox.cs: fixes dropstyle
17079
17080 2005-01-13  Peter Bartok  <pbartok@novell.com>
17081
17082         * Form.cs:
17083           - Implemented Select() override
17084           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
17085           - Now sets keyboard focus on startup
17086         * Control.cs (SelectNextControl): Now properly handles directed=true
17087         * TextBoxBase.cs:
17088           - WndProc: Now passes tab key on to base if AcceptTabChar=false
17089           - Added (really bad) focus rectangle (mostly for testing)
17090         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
17091           to enforce redraw on focus changes
17092         * ContainerControl.cs:
17093           - Fixed detection of Shift-Tab key presses
17094           - Fixed traversal with arrow keys
17095         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
17096           gonna keep this or if it's complete yet
17097         
17098 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17099
17100         * ComboBox.cs: missing properties, fixes
17101
17102 2005-01-13  Peter Bartok  <pbartok@novell.com>
17103
17104         * Panel.cs (ctor): Setting Selectable window style to off
17105         * Splitter.cs (ctor): Setting Selectable window style to off
17106         * GroupBox.cs (ctor): Setting Selectable window style to off
17107         * Label.cs (ctor): Setting Selectable window style to off
17108
17109 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
17110
17111         * UpDownBase.cs (InitTimer): If the timer has been already
17112         created, enable it.
17113
17114         Use a TextBox instead of a Label.
17115
17116 2005-01-12  Jackson Harper  <jackson@ximian.com>
17117
17118         * TreeView.cs: Refresh the tree after sorting the nodes. Always
17119         draw the connecting node lines (when ShowLines is true).
17120         * TreeNode.cs: The nodes index can now be updated. This is used
17121         when a node collection is sorted.
17122         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
17123         insert or an existing unsorted node collection can be sorted.
17124         
17125 2005-01-12  Peter Bartok  <pbartok@novell.com>
17126
17127         * ContainerControl.cs: Implemented ProcessDialogKeys()
17128
17129 2005-01-12  Peter Bartok  <pbartok@novell.com>
17130
17131         * Control.cs:
17132           - Implemented SelectNextControl() method
17133           - Several focus related bug fixes
17134           - Fixed Docking calculations to match MS documentation and
17135             behaviour
17136
17137 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
17138
17139         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
17140         bug fixes
17141
17142 2005-01-12  Peter Bartok  <pbartok@novell.com>
17143
17144         * Control.cs:
17145           - Fixed broken Contains() method
17146           - Implemented GetNextControl() method. Finally. This is the pre-
17147             requisite for focus handling.
17148
17149 2005-01-12  Peter Bartok  <pbartok@novell.com>
17150
17151         * OSXStrucs.cs: Added
17152
17153 2005-01-12  Peter Bartok  <pbartok@novell.com>
17154
17155         * XplatUIWin32.cs:
17156           - Removed PeekMessageFlags
17157           - Implemented SetWindowStyle() method
17158         * XplatUIStructs.cs: Added PeekMessageFlags
17159         * X11Structs: Added missing border_width field to XWindowChanges struct
17160         * XplatUIX11.cs:
17161           - PeekMessage: Now throws exception if flags which are not yet
17162             supported are passed
17163           - Implemented SetWindowStyle() method
17164           - Fixed SetZOrder to handle AfterHwnd properly
17165         * XplatUI.cs: Added SetWindowStyle() method
17166         * XplatUIDriver.cs: Added SetWindowStyle() abstract
17167         * Control.cs:
17168           - Implemented UpdateStyles() method
17169           - Implemented UpdateZOrder() method
17170         * XplatUIOSX.cs: Added SetWindowStyle() stub
17171
17172 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
17173
17174         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
17175         button mouse).
17176
17177
17178 2005-01-11  Jackson Harper  <jackson@ximian.com>
17179
17180         * TreeView.cs: Still need to draw lines to siblings even if out of
17181         the current node is out of the clip.
17182
17183 2005-01-11  Jackson Harper  <jackson@ximian.com>
17184
17185         * TreeView.cs: When setting the hbar/vbar/grip position use
17186         SetBounds so that perform layout is only called once. Also suspend
17187         and resume layout so layout is only done once for all controls.
17188         - Removed some debug fluff
17189         * SizeGrip.cs: Call base implmentation in overriding methods.
17190         - When visibility is changed the drawing buffers are killed so we
17191         need to redraw.
17192
17193 2005-01-11  Jackson Harper  <jackson@ximian.com>
17194
17195         * TreeView.cs: Calculate the open node count while drawing. This
17196         saves us an entire tree traversal for every paint operation. Use
17197         a member var for the open node count so less vars are passed around.
17198
17199 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
17200
17201         * MonthCalendar.cs:
17202         - fixed selection to use mousemove, not mouse polling on timer
17203         * ThemeWin32Classic.cs
17204         - removed redundant unused variable "no_more_content"
17205         
17206 2005-01-11  Peter Bartok  <pbartok@novell.com>
17207
17208         * XplatUIX11.cs (DoEvents): Needs to return when no more events
17209           are pending, so it now calls PeekMessage instead of GetMessage;
17210           implemented a incomplete version of PeekMessage
17211         
17212 2005-01-11  Peter Bartok  <pbartok@novell.com>
17213
17214         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
17215           I18n issues
17216         * TextBoxBase.cs: Added sending of TextChanged event
17217
17218 2005-01-10  Jackson Harper  <jackson@ximian.com>
17219
17220         * TreeView.cs: Try not to draw outside the clipping rectangle on
17221         each node element.
17222
17223 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
17224
17225         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
17226
17227 2005-01-10  Jackson Harper  <jackson@ximian.com>
17228
17229         * TreeView.cs:
17230         - Implement fast scrolling. Now only the newly
17231         exposed nodes are drawn and the old image is moved using the
17232         XplatUI::ScrollWindow method.
17233         - Factor in height of nodes when calculating whether or not the
17234         node is in the clipping rect.
17235
17236 2005-01-10  Jackson Harper  <jackson@ximian.com>
17237
17238         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
17239
17240 2005-01-10  Peter Bartok  <pbartok@novell.com>
17241
17242         * Application.cs: Added temporary hack to resolve all our resize
17243           required issues on startup. This will get fixed properly at
17244           some point in the future
17245
17246 2005-01-10  Jackson Harper  <jackson@ximian.com>
17247
17248         * SizeGrip.cs: New internal class that is used as a sizing
17249         grip control...hence the name.
17250
17251 2005-01-10  Peter Bartok  <pbartok@novell.com>
17252
17253         * Control.cs: Implemented proper TabIndex handling, now assigning
17254           a tabindex when a control is added to a container
17255         * GroupBox.cs (ctor): Now sets the Container style bit, required
17256           for Control.GetNextControl()
17257
17258 2005-01-09  Jackson Harper  <jackson@ximian.com>
17259
17260         * TextBoxBase.cs: Clear window when scrolling (fixes build).
17261
17262 2005-01-09  Peter Bartok <pbartok@novell.com>
17263
17264         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17265           XplatUIX11.cs: Added ability to control ScrollWindow expose and
17266           an overload for ScrollWindow to allow only scrolling a rectangle
17267
17268 2005-01-09  Peter Bartok <pbartok@novell.com>
17269
17270         * Form.cs:
17271           - Implemented SetDesktopBounds method
17272           - Implemented SetDesktopLocation method
17273
17274 2005-01-08  Jackson Harper  <jackson@ximian.com>
17275
17276         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
17277         the node count has changed, this removes to VScroll::Refresh calls
17278         when drawing.
17279
17280 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
17281
17282         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
17283
17284 2005-01-07  Jackson Harper  <jackson@ximian.com>
17285
17286         * TreeNode.cs: Just update the single node when it is
17287         checked. Don't refresh after toggling, the Expand/Collapse already
17288         handles this.
17289         * TreeView.cs: Respect clipping a little more when drawing. Try
17290         not to redraw things that don't need to be redrawn. Just hide the
17291         scrollbars when they are no longer needed instead of removing
17292         them, so they don't have to be created again and again.
17293         
17294 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
17295
17296         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
17297         coordinates to window space to place the caret properly, FIXED.
17298         Implement GetWindowState & SetWindowState
17299
17300 2005-01-06  Peter Bartok <pbartok@novell.com>
17301
17302         * Form.cs:
17303           - Implemented ClientSize property
17304           - Implemented DesktopBounds property
17305           - Implemented DesktopLocation property
17306           - Implemented IsRestrictedWindow property
17307           - Implemented Size property
17308           - Implemented TopLevel property
17309           - Implemented FormWindowState property
17310         * Control.cs:
17311           - Implemented GetTopLevel() method
17312           - Implemented SetTopLevel() method
17313         * X11Structs.cs (Atom):
17314           - Added AnyPropertyType definition
17315           - Added MapState definiton and updated XWindowAttribute struct
17316         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
17317         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
17318         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
17319         * XplatUIWin32.cs:
17320           - Implemented GetWindowState() and SetWindowState() methods
17321           - Fixed Win32GetWindowLong return type
17322         * XplatUIX11.cs:
17323           - Introduced central function for sending NET_WM messages
17324           - Implemented GetWindowState() and SetWindowState() methods
17325         * TextBoxBase.cs (set_Lines):
17326           - Now uses Foreground color for text added via Text property (Duh!)
17327           - Added code to remember programmatically requested size (fixes
17328             behaviour when Multiline is set after Size)
17329           - Added AutoSize logic
17330
17331 2005-01-06  Jackson Harper  <jackson@ximian.com>
17332
17333         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
17334
17335 2005-01-06  Jackson Harper  <jackson@ximian.com>
17336
17337         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
17338         set to less then 0.
17339
17340 2005-01-06  Jackson Harper  <jackson@ximian.com>
17341
17342         * ScrollableControl.cs: Lazy init the scrollbars.
17343         
17344 2005-01-06  Jackson Harper  <jackson@ximian.com>
17345
17346         * Theme.cs: Speed up getting pens and solid brushes, by using
17347         their ARGB as a hash instead of tostring and not calling Contains.
17348
17349 2005-01-06  Peter Bartok <pbartok@novell.com>
17350
17351         * Form.cs:
17352           - Implemented OnActivated and OnDeactivate event trigger
17353           - Implemented Activate() method
17354           - Fixed ShowDialog() to activate the form that was active before
17355             the dialog was shown
17356         * XplatUIX11.cs:
17357           - Added global active_window var that tracks the currently active
17358             X11 window
17359           - Now always grabs Property changes from the root window to always
17360             catch changes on the active window property
17361           - Added code to PropertyNotify handler to send Active/Inactive
17362             messages when state changes. This puts X11 and Win32 en par on
17363             WM_ACTIVATE notifications (except for double notifications when
17364             the user clicks away from our modal window to another one of our
17365             windows)
17366
17367 2005-01-05  Jackson Harper  <jackson@ximian.com>
17368
17369         * ImageList.cs: Implment ctor
17370
17371 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17372
17373         * XplatUIOSX.cs: Implement Activate/SetTopmost
17374
17375 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17376
17377         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
17378
17379 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17380
17381         * XplatUIOSX.cs: Implement GetActive/SetFocus.
17382
17383 2005-01-05  Peter Bartok <pbartok@novell.com>
17384
17385         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
17386           XplatUIOSX.cs: Added GetActive method to return the currently
17387           active window for the application (or null, if none is active)
17388         * Form.cs:
17389           - Implemented ActiveForm
17390           - Commented out owner assignment for modal dialogs (causes problems
17391             on Win32, since the owner will be disabled)
17392           - Reworked some Active/Focus handling (still incomplete)
17393         * CommonDialog.cs: Commented out owner assignment for modal dialogs
17394           (causes problems on Win32, since the owner will be disabled)
17395         * IWin32Window: Added ComVisible attribute
17396
17397 2005-01-05  Peter Bartok <pbartok@novell.com>
17398
17399         * ToolTip.cs (WndProc): Enable setting focus now that we have the
17400           required XplatUI functions.
17401
17402 2005-01-05  Peter Bartok <pbartok@novell.com>
17403
17404         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
17405           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
17406           to implement focus and activation handling; still incomplete and
17407           with debug output
17408
17409 2005-01-04  Peter Bartok <pbartok@novell.com>
17410
17411         * TextBoxBase.cs: Changed access level for Document property to
17412           match switch to internal for TextControl
17413
17414 2005-01-04  Peter Bartok <pbartok@novell.com>
17415
17416         * AccessibleObject: Added ComVisible attribute
17417
17418 2005-01-04  Jackson Harper  <jackson@ximian.com>
17419
17420         * X11Keyboard.cs: Remove unneeded var.
17421
17422 2005-01-04  Jackson Harper  <jackson@ximian.com>
17423
17424         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
17425         but PAINT.
17426         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
17427         ClientMessage. This makes apps exit cleanly (more often).
17428         
17429 2005-01-04  Jackson Harper  <jackson@ximian.com>
17430
17431         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
17432         handling focus, return correct colors and fonts,
17433         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
17434         handle selection, horizontal scrolling, and mouse interaction.
17435
17436 2005-01-04  Peter Bartok <pbartok@novell.com>
17437
17438         * ICommandExecutor.cs: Added
17439         * IDataGridColumnStyleEditingNotificationService.cs: Added
17440         * IFeatureSupport.cs: Added
17441         * IFileReaderService.cs: Added
17442         * IDataObject.cs: Added ComVisible attribute
17443         * AmbientProperties.cs: Added
17444         * BaseCollection.cs: Added missing attributes
17445         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
17446         * BaseCollection.cs: Added missing attributes
17447         * Binding.cs: Added TypeConverter attribute
17448         * BindingContext.cs: Added DefaultEvent attribute
17449         * BindingsCollection.cs: Added DefaultEvent attribute
17450         * Button.cs: Added DefaultValue attribute
17451         * DragEventArgs.cs: Added ComVisible attribute
17452         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
17453         * KeyEventArgs.cs: Added ComVisible attribute
17454         * KeyPressEventArgs.cs: Added ComVisible attribute
17455         * MouseEventArgs.cs: Added ComVisible attribute
17456         * NavigateEventArgs.cs: Added
17457         * NavigateEventHandler.cs: Added
17458         * FeatureSupport.cs: Added
17459         * OSFeature.cs: Added
17460         * Theme.cs: Added abstract Version property to support OSFeature
17461         * ThemeWin32Classic.cs: Added Version property to
17462           support OSFeature.Themes
17463         * ProgressBar.cs: Removed OnPaintBackground override, not required since
17464           the proper styles to avoid background drawing are set, also doesn't
17465           match MS signature
17466         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
17467         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
17468         * ScrollEventArgs.cs: Added ComVisible attribute
17469         * SplitterEventArgs.cs: Added ComVisible attribute
17470         * AccessibleSelection.cs: Added Flags attribute
17471         * Appearance.cs: Added ComVisible attribute
17472         * Border3DSide.cs: Added ComVisible attribute
17473         * Border3DStyle.cs: Added ComVisible attribute
17474         * BorderStyle.cs: Added ComVisible attribute
17475         * DragAction.cs: Added ComVisible attribute
17476         * ErrorBlinkStyle.cs: Added
17477         * ScrollEventType.cs: Added ComVisible attribute
17478         * AnchorStyles.cs: Added Editor attribute
17479         * DockStyle.cs: Added Editor attribute
17480         * HorizontalAlignment.cs: Added ComVisible attribute
17481         * HelpEventArgs.cs: Added ComVisible attribute
17482         * PaintEventArgs.cs: Added IDisposable
17483
17484 2005-01-04  Peter Bartok <pbartok@novell.com>
17485
17486         * TextControl.cs: Switched Line, LineTag and Document classes to
17487           internal
17488
17489 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17490
17491         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
17492         Simple mode, fixes, IntegralHeight, etc.
17493
17494 2005-01-04  Peter Bartok <pbartok@novell.com>
17495
17496         * TextBoxBase.cs: Using proper font variable now
17497
17498 2005-01-04  Peter Bartok <pbartok@novell.com>
17499
17500         * Form.cs (ShowDialog): Set parent to owner, if provided
17501         * GroupBox.cs: Removed unused vars
17502         * TextControl.cs:
17503           - Added GetHashCode() for Document and LineTag classes
17504           - Removed unused variables
17505           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
17506             to allow translation between continuous char position and line/pos
17507         * CheckBox.cs: Removed vars that are provided by base class
17508         * RadioButton.cs: Removed vars that are provided by base class, added
17509           new keyword where required
17510         * LinkLabel.cs: Added new keyword where required
17511         * Control.cs (WndProc): Removed unused variable
17512         * TextBoxBase.cs:
17513           - Finished SelectionLength property
17514           - Implemented SelectionStart property
17515           - Implemented Text property
17516           - Removed unused vars
17517         * MessageBox.cs: Added new keyword where required
17518         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
17519           WndProc signature
17520         * MenuAPI.cs: Added new keyword where required
17521         * ButtonBase.cs: Removed vars that are provided by base class, added
17522           new keyword where required
17523         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
17524           argument to double, to allow compiling with csc 2.0 (Atsushi ran
17525           into this)
17526         * Application.cs (Run): Now triggers the ThreadExit event
17527         * CommonDialog.cs: Added new keyword where required; now properly sets
17528           parent (owner) for dialog
17529         * XplatUIX11.cs: Commented out unused vars
17530         * StatusBar.cs: Fixed signature for Text property
17531         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
17532
17533 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17534
17535         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
17536         TrackBar.cs, MonthCalendar.cs: remove unused vars
17537
17538 2005-01-03  Jackson Harper  <jackson@ximian.com>
17539
17540         * ThemeWin32Classic.cs:
17541         * X11Keyboard.cs: Remove unused vars.
17542
17543 2005-01-03  Peter Bartok  <pbartok@novell.com>
17544
17545         * TextBox.cs:
17546           - set_Text: Tied into TextControl
17547           - set_TextAlignment: Tied into TextControl
17548         * TextControl.cs:
17549           - Added alignment properties and implemented alignment handling
17550             and drawing (still has a bug, not generating proper expose events)
17551           - Added new Line() constructor to allow passing the line alignment
17552           - Fixed selection setting, properly handling end<start now
17553           - Added aligment considerations to RecalculateDocument()
17554         * TextBoxBase.cs:
17555           - Now properly enforces control height for single line controls
17556           - Added support for CharacterCasing
17557           - Added IsInputKey override
17558           - Fixed Keys.Enter logic
17559           - Added SetBoundsCore override
17560           - Fixed mouse selection handling
17561
17562 2005-01-03  Jackson Harper  <jackson@ximian.com>
17563
17564         * TreeView.cs:
17565           - Collapse and uncheck all nodes when CheckBoxes is disabled.
17566           - Checkboxes are always aligned to the bottom of the node,
17567           regardless of item height.
17568           - Use the node bounds to draw the text so we can center it when
17569           the item height is greater then the font height.
17570           - Node::Bounds are only the text part of the node.
17571         * TreeNode.cs: New method to combine collapsing and unchecking all
17572           nodes recursively.
17573
17574 2005-01-02  Jackson Harper  <jackson@ximian.com>
17575
17576         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
17577         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
17578         tree when a check is changed. TODO: Only refresh the checked node.
17579
17580 2004-12-30  Jackson Harper  <jackson@ximian.com>
17581
17582         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
17583         * TreeNode.cs: When collapsing make sure to never collapse the
17584         root node.
17585
17586 2004-12-29  Jackson Harper  <jackson@ximian.com>
17587
17588         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
17589         
17590 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
17591
17592         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
17593
17594 2004-12-28  Peter Bartok  <pbartok@novell.com>
17595
17596         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
17597           not yet assigned
17598
17599 2004-12-28  Peter Bartok  <pbartok@novell.com>
17600
17601         * Control.cs (WndProc): Added WM_HELP handler, now generates
17602           HelpRequested event
17603         * Form.cs: Added HelpButton property and required support code
17604         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
17605
17606 2004-12-28  Peter Bartok  <pbartok@novell.com>
17607
17608         * CommonDialog.cs:
17609           - Made DialogForm.owner variable internal
17610           - Added check to ensure owner form is set before setting
17611             owner properties in CreateParams
17612
17613 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
17614
17615         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
17616           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
17617           GetCursorPos.  Fix major visibility issues.  Rework the windowing
17618           system to support borderless/titleless windows (implements menus).
17619           Fix GetWindowPos.  Implement initial background color support for
17620           views.
17621
17622 2004-12-28  Peter Bartok  <pbartok@novell.com>
17623
17624         * Form.cs (get_CreateParams): Make sure we have an owner before using
17625           the owner variable. Implement proper default if no owner exists
17626
17627 2004-12-28  Peter Bartok  <pbartok@novell.com>
17628
17629         * In preparation for making Managed.Windows.Forms the default build target
17630           for System.Windows.Forms, the following stubbed files were added.
17631           Dialogs are currently being implemented by contributors and are only
17632           short-term place holders.
17633         * ColorDialog.cs: Initial check-in (minmal stub)
17634         * DataGrid.cs: Initial check-in (minimal stub)
17635         * DataGridLineStyle.cs: Initial check-in (minimal stub)
17636         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
17637         * DataGridTableStyle.cs: Initial check-in (minimal stub)
17638         * FontDialog.cs: Initial check-in (minimal stub)
17639         * FileDialog.cs: Initial check-in (minimal stub)
17640         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
17641         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
17642         * OpenFileDialog: Initial check-in (minimal stub)
17643         * IComponentEditorPageSite.cs: Initial check-in
17644         * Splitter.cs: Initial check-in (for Jackson)
17645         * SplitterEventArgs.cs: Initial check-in (for Jackson)
17646         * SplitterEventHandler.cs: Initial check-in (for Jackson)
17647         * TextBox.cs: Initial check-in; still needs some wiring to
17648           TextControl backend
17649         * Form.cs: Implemented ControlBox property
17650         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
17651         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
17652         * TextControl.cs: Added selection functionality; added todo header
17653         * TextBoxBase.cs:
17654           - Implemented Lines property
17655           - Implemented TextHeight property
17656           - Implemented SelectedText property
17657           - Implemented SelectionLength property
17658           - Implemented SelectAll method
17659           - Implemented ToString method
17660           - Removed and cleaned up some debug code
17661           - Implemented (still buggy) mouse text selection
17662
17663 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
17664
17665         * ComboBox.cs: Complete DropDownList implementation, fixes.
17666
17667 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
17668
17669         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
17670         * ComboBoxStyle.cs: ComboBoxStyle enum
17671         * ComboBox.cs: Initial work on ComboBox control
17672
17673 2004-12-21  Peter Bartok  <pbartok@novell.com>
17674
17675         * Control.cs (ctor, CreateParams): Moved setting of is_visible
17676           forward so that anything that creates a window gets the default,
17677           also no longer uses Visible property in CreateParams to avoid
17678           walking up the parent chain and possibly get the wrong visible
17679           status. Fixed IsVisible to no longer walk up to the parent.
17680
17681 2004-12-21  Peter Bartok  <pbartok@novell.com>
17682
17683         * Form.cs (ShowDialog): Unset modality for the proper window
17684  
17685 2004-12-20  Peter Bartok  <pbartok@novell.com>
17686
17687         * CommonDialog.cs: Initial check-in
17688
17689 2004-12-20  Peter Bartok  <pbartok@novell.com>
17690
17691         * Control.cs (Visible): Now uses the parent window instead of the
17692           client area window for the property
17693
17694         * Form.cs
17695           - ShowDialog(): Now uses the proper window for modality
17696           - The default visibility state for the form parent is now false. This
17697             will prevent the user from seeing all the changes to the form and
17698             its controls before the application hits Application.Run()
17699           - Removed some stale commented out code
17700
17701         * NativeWindow.cs:
17702           - Added FindWindow() method to have a method to check for existence
17703             of a window handle
17704           - Added ability to override default exception handling (for example
17705             when debugging with VS.Net; to do this the ExternalExceptionHandler
17706             define must be set
17707           - Removed some useless debug output
17708
17709         * XplatUIX11.cs:
17710           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
17711             not working as expected
17712           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
17713             property to allow switching back to the modal window if focus is
17714             given to another one of our windows (Application Modal)
17715           - Now only sets override_redirect if we create a window
17716             without WS_CAPTION
17717           - Moved EventMask selection before mapping of newly created window
17718             so we can catch the map event as well
17719           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
17720           - Added various Atom related DllImports
17721           - Implemented Exit() method
17722           - .ctor() : No longer shows window if WS_VISIBLE is not defined
17723             in the CreateParams
17724
17725         * MessageBox.cs: Now properly deals with the FormParent window by
17726           providing an override the FormParent CreateParams property to
17727           set as POPUP instead of OVERLAPPED window.
17728
17729 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17730
17731         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
17732         Minor code cleanup.
17733
17734 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17735         
17736         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
17737
17738 2004-12-18  Peter Bartok  <pbartok@novell.com>
17739
17740         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
17741           implementing SetModal() method
17742
17743 2004-12-18  Peter Bartok  <pbartok@novell.com>
17744
17745         * X11Structs.cs (XGCValues): Fixed type of function element
17746         * XplatUI.cs: Added ScrollWindow() method
17747         * XplatUIDriver.cs: Added ScrollWindow() abstract
17748         * XplatUIWin32.cs: Implemented ScrollWindow() method
17749         * XplatUIX11.cs: Implemented ScrollWindow() method
17750         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
17751
17752 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17753
17754         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
17755         Some more keyboard support (INCOMPLETE)
17756
17757 2004-12-17  Peter Bartok  <pbartok@novell.com>
17758
17759         * TextControl.cs:
17760         - Added color attribute to line tags.
17761         - Added color argument to all functions dealing with tags
17762         - Added color argument support to various functions
17763         - Fixed miss-calculation of baseline/shift in certain circumstances
17764
17765         * TextBoxBase.cs: Added new color option to test code
17766
17767 2004-12-17  Jackson Harper  <jackson@ximian.com>
17768
17769         * TreeNode.cs:
17770         * MonthCalendar.cs: Signature fixes
17771
17772 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17773
17774         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
17775         keyboard event moved it.  Create a new graphics context for each paint resolves this
17776
17777 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17778
17779         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
17780         Make caret exist and go blink blink.  Initial keyboard support.
17781         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
17782         works.
17783
17784 2004-12-17  Jackson Harper  <jackson@ximian.com>
17785
17786         * XplatUIStructs.cs: Updated set of virtual keycodes.
17787         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
17788
17789 2004-12-17  Jackson Harper  <jackson@ximian.com>
17790
17791         * XplatUIX11.cs: Prune old keyboard code.
17792
17793 2004-12-17  Jackson Harper  <jackson@ximian.com>
17794
17795         * XplatUIX11.cs: When generating mouse wparams get the modifier
17796         keys from the ModifierKeys property.
17797
17798 2004-12-17  Jackson Harper  <jackson@ximian.com>
17799
17800         * X11Keyboard.cs: Send up/down input when generating
17801         messages. Remove some unused vars.
17802
17803 2004-12-17  Jackson Harper  <jackson@ximian.com>
17804
17805         * TabControl.cs:
17806         * TreeView.cs: get rid of warnings.
17807
17808 2004-12-17  Jackson Harper  <jackson@ximian.com>
17809
17810         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
17811
17812 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
17813
17814         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
17815           CheckedListBox.cs: Implementation
17816
17817 2004-12-17  Peter Bartok  <pbartok@novell.com>
17818
17819         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
17820
17821 2004-12-16  Peter Bartok  <pbartok@novell.com>
17822
17823         * TextControl.cs:
17824           - InsertCharAtCaret(): Fixed start pos fixup
17825           - CaretLine_get: No longer derives the line from the tag, the tag
17826             could be stale if lines in the document have been added or deleted
17827           - RebalanceAfterDelete(): Fixed bug in balancing code
17828           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
17829           - Line.Streamline(): Now can also elminate leading empty tags
17830           - DumpTree(): Added a few more tests and prevented exception on
17831             uninitialized data
17832           - Added Debug section for Combining lines
17833           - Delete(): Now copies all remaining properties of a line
17834           
17835         * TextBoxBase.cs:
17836           - Left mousebutton now sets the caret (and middle button still acts
17837             as formatting tester, which must go away soon)
17838           - Added Debug section for Deleting/Combining lines
17839           - Fixed calculations for UpdateView after Combining lines
17840
17841 2004-12-16  Peter Bartok  <pbartok@novell.com>
17842
17843         * TextControl.cs: Now properly aligns text on a baseline, using the
17844           new XplatUI.GetFontMetrics() method. Simplified several calculations
17845         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
17846           defined
17847
17848 2004-12-16  Peter Bartok  <pbartok@novell.com>
17849
17850         * XplatUI.cs: Added GetFontMetrics() method
17851         * XplatUIDriver.cs: Added GetFontMetrics() abstract
17852         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
17853           into libgdiplus, our private GetFontMetrics function
17854         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
17855         * XplatUIWin32.cs: Implemented GetFontMetrics() method
17856
17857 2004-12-16  Jackson Harper  <jackson@ximain.com>
17858
17859         * XplatUIStruct.cs: Add enum for dead keys
17860         * X11Keyboard.cs: Map and unmap dead keys.
17861
17862 2004-12-16  Jackson Harper  <jackson@ximian.com>
17863
17864         * X11Keyboard.cs: Detect and use the num lock mask.
17865
17866 2004-12-16  Peter Bartok  <pbartok@novell.com>
17867
17868         * Control.cs (CreateGraphics): Added check to make sure the
17869           handle of the window exists before calling Graphics.FromHwnd()
17870
17871 2004-12-16  Peter Bartok  <pbartok@novell.com>
17872
17873         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
17874           contains a lot of code that's not supposed to be there for the
17875           real thing, but required for developing/testing the textbox
17876           backend.
17877
17878 2004-12-16  Peter Bartok  <pbartok@novell.com>
17879
17880         * TextControl.cs:
17881         - Fixed Streamline method
17882         - Added FindTag method to Line
17883         - Added DumpTree method for debugging
17884         - Added DecrementLines() method for deleting lines
17885         - Fixed UpdateView to update the cursor to end-of-line on single-line
17886           updates
17887         - Added PositionCaret() method
17888         - Fixed MoveCaret(LineDown) to move into the last line, too
17889         - Added InsertChar overload
17890         - Fixed InsertChar tag offset calculations
17891         - Added DeleteChar() method
17892         - Added Combine() method for folding lines
17893         - Fixed Delete() method, no longer allocates wasted Line object and
17894           now copies all properties when swapping nodes
17895         - Delete() method now updates document line counter
17896
17897 2004-12-15  Jackson Harper  <jackson@ximian.com>
17898
17899         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
17900         * X11Keyboard.cs: Expose the currently selected modifier keys
17901         through a property.
17902
17903 2004-12-15  Peter Bartok  <pbartok@novell.com>
17904
17905         * TextControl.cs: Initial check-in. Still incomplete
17906
17907 2004-12-15  Jackson Harper  <jackson@ximian.com>
17908
17909         * TreeNode.cs:
17910         * TreeView.cs: Fix build on csc (second time today ;-))
17911
17912 2004-12-15  Jackson Harper  <jackson@ximian.com>
17913
17914         * TreeView.cs: Store the treenodes plus/minus box bounds when it
17915         is calculated and use this for click testing.
17916         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
17917
17918 2004-12-15  Jackson Harper  <jackson@ximian.com>
17919
17920         * TreeView.cs: Pass the nodes image index to the image list when
17921         drawing that image.
17922
17923 2004-12-15  Jackson Harper  <jackson@ximian.com>
17924
17925         * X11Keyboard.cs: Set messages hwnd.
17926         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
17927         post_message calls.
17928
17929 2004-12-15  Jackson Harper  <jackson@ximian.com>
17930
17931         * X11Keyboard.cs: Fix to compile with csc.
17932         
17933 2004-12-15  Jackson Harper  <jackson@ximian.com>
17934
17935         * X11Structs.cs: Add key mask values
17936         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
17937         * X11Keyboard.cs: New file - Extrapolates and interpolates key
17938         down/up foo into WM_CHAR foo
17939         * KeyboardLayouts.cs: Common keyboard layouts
17940         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
17941         post messages into the main queue.
17942
17943 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
17944
17945         * Button.cs: implement ProcessMnemonic
17946         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
17947           brushes everytime
17948         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
17949         * ButtonBase.cs: Show HotkeyPrefix (not the &)
17950
17951 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
17952         
17953         * MonthCalendar.cs: Implemented click-hold for next/previous month
17954           and date selection
17955           
17956 2004-12-11  Peter Bartok  <pbartok@novell.com>
17957
17958         * X11Structs.cs:
17959           - Added XKeyboardState (moved from XplatUIX11.cs)
17960           - Added XCreateGC related enums and structures
17961           - Added GXFunction for XSetFunction
17962
17963         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
17964
17965         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
17966           CaretVisible() calls
17967
17968         * ToolTip.cs: Added code to prevent stealing focus from app windows
17969
17970         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
17971           DestroyCaret, SetCaretPos and CaretVisible)
17972
17973         * XplatUIX11.cs:
17974           - Added implementation for caret functions
17975           - Moved hover variables into a struct, to make it a bit easier
17976             on the eyes and to debug
17977           - Removed XKeyboardState (moved to XplatUIX11.cs)
17978           - Moved Keyboard properties into the properties region
17979
17980         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
17981           call to get a graphics context for our control
17982
17983         * XplatUIOSX.cs: Added empty overrides for the new caret functions
17984
17985         * TreeView.cs: Fixed bug. No matter what color was set it would always
17986           return SystemColors.Window
17987
17988         * XplatUIWin32.cs: Implemented caret overrides
17989
17990 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
17991
17992         * ListBox.cs: fire events, implement missing methods and properties,
17993         sorting.
17994
17995 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
17996
17997         * MonthCalendar.cs: invalidation bug fixing
17998         * ThemeWin32Classic.cs: paint fixing
17999
18000 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
18001
18002         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
18003         prepare the CGContextRef there now.
18004
18005 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
18006
18007         * MonthCalendar.cs:
18008           - optimisationL only invalidate areas that have changed
18009         * ThemeWin32Classic.cs:
18010           - only paint parts that intersect with clip_area
18011
18012 2004-12-09  Peter Bartok  <pbartok@novell.com>
18013
18014         * Application.cs: Undid changes from r37004 which cause problems
18015         on X11
18016
18017 2004-12-09  Ravindra  <rkumar@novell.com>
18018
18019         * ToolBar.cs: Added support for displaying ContextMenu
18020         attached to a button on ToolBar.
18021         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
18022         property.
18023
18024 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18025
18026         * Label.cs: autosize works in text change and removes unnecessary
18027         invalidate
18028
18029 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18030
18031         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18032         remove warnings
18033
18034 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
18035
18036         * XplatUIOSX.cs: Added mouse move/click/grab support
18037         Remove some debugging WriteLines not needed anymore.
18038         Add window resizing/positioning.
18039         Fix visibility on reparenting.
18040
18041 2004-12-08  Peter Bartok  <pbartok@novell.com>
18042
18043         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
18044
18045 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
18046
18047         * XplatUIOSX.cs: Initial checkin
18048         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
18049
18050 2004-12-03  Ravindra <rkumar@novell.com>
18051
18052         * ListView.cs: Added some keybindings and fixed scrolling.
18053         ScrollBars listen to ValueChanged event instead of Scroll
18054         Event. This would let us take care of all changes being
18055         done in the scrollbars' values programmatically or manually.
18056         * ListView.cs (CanMultiselect): Added a check for shift key.
18057         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
18058         * ListViewItem.cs (Clone): Fixed. We need to make a copy
18059         of ListViewSubItemCollection as well.
18060
18061 2004-12-06  Peter Bartok <pbartok@novell.com>
18062
18063         * Control.cs (Parent): Added check and exception to prevent
18064         circular parenting
18065
18066 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
18067
18068         * ListBox.cs: implemented clipping, selection single and multiple,
18069         bug fixing
18070
18071 2004-12-03  Ravindra <rkumar@novell.com>
18072
18073         * ListView.cs (ListView_KeyDown):
18074         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
18075         when CTRL key is pressed.
18076         * ListViewItem.cs (Selected): Fixed setting the property.
18077
18078 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18079
18080         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
18081
18082         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
18083         MinimizeBox, ShowInTaskbar, TopMost properties.
18084
18085         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
18086         will be implemented).
18087
18088 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18089
18090         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
18091
18092         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
18093         tests.
18094         
18095         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
18096         
18097         * TreeView.cs: BackColor is Colors.Window.
18098
18099 2004-12-01  Jackson Harper  <jackson@ximian.com>
18100
18101         * TreeView.cs: When resizing the tree if the user is making it
18102         smaller we don't get expose events, so we need to handle adding
18103         the horizontal scrollbar in the size changed handler as well as
18104         the expose handler.
18105
18106 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
18107
18108         * DrawItemState.cs: fixes wrong enum values
18109
18110 2004-12-01  Jackson Harper  <jackson@ximian.com>
18111
18112         * TreeView.cs: Resize the hbar as well as the vbar on resize.
18113
18114 2004-12-01  Jackson Harper  <jackson@ximian.com>
18115
18116         * NodeLabelEditEventArgs.cs:
18117         * NodeLabelEditEventHandler.cs:
18118         * OpenTreeNodeEnumerator.cs:
18119         * TreeNode.cs:
18120         * TreeNodeCollection.cs:
18121         * TreeView.cs:
18122         * TreeViewAction.cs:
18123         * TreeViewCancelEventArgs.cs:
18124         * TreeViewCancelEventHandler.cs:
18125         * TreeViewEventArgs.cs:
18126         * TreeViewEventHandler.cs: Initial implementation.
18127
18128 2004-12-01  Ravindra <rkumar@novell.com>
18129
18130         * ListView.cs (CalculateListView): Fixed scrolling related
18131         calculations. Also, removed some debug statements from other
18132         places.
18133         * ListViewItem.cs: Changed access to 'selected' instance variable
18134         from private to internal.
18135         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
18136
18137 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
18138
18139         * ThemeWin32Classic.cs: remove cache of brush and pens for
18140         specific controls and use the global system, fixes scrollbutton
18141         bugs (for small sizes, disabled, etc)
18142         
18143         * ScrollBar.cs: does not show the thumb for very small controls
18144         (as MS) and allow smaller buttons that the regular size
18145
18146 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
18147
18148         * UpDownBase.cs: Add abstract methods for the interface.
18149         Add new virtual methods (need to be hooked up to TextEntry when it
18150         exists).
18151         Add override methods for most features.
18152         Computes the size, forces the height of the text entry.
18153
18154         * NumericUpDown.cs: Put here the current testing code.
18155
18156         * Set eol-style property on all files that do not have mixed line
18157         endings, to minimize the future problems.  There are still a few
18158         files with mixed endings, and someone should choose whether they
18159         want to move it or not.
18160
18161 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
18162
18163         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
18164         System.Colors
18165         
18166 2004-11-30  Ravindra <rkumar@novell.com>
18167
18168         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
18169         drawing and replaced use of SystemColors by theme colors.
18170         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
18171         * ListView.cs (ListViewItemCollection.Add): Throw exception when
18172         same ListViewItem is being added more than once.
18173
18174 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
18175
18176         * MonthCalendar.cs:
18177           - ControlStyles love to make the control not flicker
18178           
18179 2004-11-30  Peter Bartok  <pbartok@novell.com>
18180
18181         * CharacterCasing.cs: Added
18182
18183 2004-11-29  Peter Bartok  <pbartok@novell.com>
18184
18185         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18186           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
18187           I am removing these files as they conflict with already completed
18188           work. While it is fantastic to get contributions to MWF, I
18189           respectfully ask that everyone please coordinate their contributions
18190           through mono-winforms-list or #mono-winforms at this time. We're
18191           explicitly avoiding stubbing and don't want controls that don't have
18192           their basic functionality implemented in svn. Please also see
18193           http://www.mono-project.com/contributing/winforms.html
18194
18195
18196 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
18197
18198         * Application.cs (ModalRun): Don't hang after exit.
18199
18200         * Theme.cs: New TreeViewDefaultSize property.
18201
18202         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
18203         with less hardcoded SystemColors constant.
18204         Implemented TreeViewDefaultSize.
18205
18206         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18207         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
18208
18209
18210 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
18211
18212         * MonthCalendar.cs:
18213           - Fix NextMonthDate and PrevMonthDate click moving calendar
18214
18215 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18216
18217         * MonthCalendar.cs:
18218           - Fix usage of ScrollChange Property when scrolling months
18219
18220 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
18221
18222         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
18223          - Fixes menu destroying
18224          - Support adding and removing items on already created menus
18225
18226 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18227
18228         * MonthCalendar.cs:
18229           - Re-worked all bolded dates handling to match win32
18230         * ThemeWin32Classic.cs:
18231           - Fixed rendering with bolded dates
18232
18233 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
18234
18235         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
18236         - Horizontal scroolbar
18237         - Multicolumn
18238         - Fixes
18239
18240
18241 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
18242
18243         * MonthCalendar.cs:
18244           - Fix Usage of MaxSelectionCount from SelectionRange
18245           - Fixed Shift + Cursor Selection
18246           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
18247           - Fixed normal cursor selection to be compat with win32
18248           - Fixed Shift + Mouse Click selection
18249
18250 2004-11-24  Peter Bartok <pbartok@novell.com>
18251
18252         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
18253         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
18254         * XplatUIX11.cs:
18255           - CreatedKeyBoardMsg now updates keystate with Alt key
18256           - Added workaround for timer crash to CheckTimers, Jackson will
18257             develop a proper fix and check in later
18258           - Implemented DispatchMessage
18259           - Removed calling the native window proc from GetMessage (call
18260             now moved to DispatchMessage)
18261
18262         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
18263           the keydata (Fixes bug #69831)
18264
18265         * XplatUIWin32.cs:
18266           - (DispatchMessage): Switched to return IntPtr
18267           - Added DllImport for SetFocus
18268
18269 2004-11-24  Ravindra <rkumar@novell.com>
18270
18271         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
18272         background drawing.
18273         * ListViewItem.cs: Fixed various properties, calculations
18274         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
18275         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
18276         and some internal properties. Fixed MouseDown handler and Paint
18277         method.
18278
18279 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18280
18281         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
18282
18283 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18284
18285         * ContainerControl.cs: correct accidental check in of local changes
18286
18287 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18288
18289         * ThemeWin32Classic.cs:
18290                 - Fixed Drawing Last month in grid (sometimes not showing)
18291         * MonthCalendar.cs:
18292                 - Fixed title width calculation bug (makeing title small)
18293
18294 2004-11-23  Peter Bartok <pbartok@novell.com>
18295
18296         * XplatUIX11.cs:
18297           - Added generation of WM_MOUSEHOVER event
18298           - Added missing assignment of async_method atom
18299           - Fixed WM_ERASEBKGND; now only redraws the exposed area
18300
18301 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18302
18303         * ThemeWin32Classic.cs:
18304                 - Fixed Drawing of today circle when showtodaycircle not set
18305                 - fixed drawing of first and last month in the grid (gay dates)
18306         * MonthCalendar.cs:
18307                 - Fixed Drawing of today circle
18308                 - Fixed drawing of grady dates
18309                 - Fixed HitTest for today link when ShowToday set to false
18310                 - Fixed DefaultSize to obey ShowToday
18311
18312 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18313
18314         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
18315         * System.Windows.Forms/Theme.cs
18316         * MonthCalendar.cs: added for MonthCalendar
18317         * SelectionRange.cs: added for MonthCalendar
18318         * Day.cs: added for MonthCalendar: added for MonthCalendar
18319         * DateRangeEventArgs.cs: added for MonthCalendar
18320         * DateRangeEventHandler.cs: added for MonthCalendar
18321
18322 2004-11-22  Ravindra <rkumar@novell.com>
18323
18324         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
18325         property.
18326
18327 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
18328
18329         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
18330         event handler.
18331         
18332         * NumericUpDown.cs: Added new implementation.
18333         * UpDownBase.cs: Added new implementation.
18334
18335         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
18336         implementations.
18337         
18338         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
18339         implementations.
18340
18341         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
18342         methods.
18343
18344 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
18345
18346         * Timer.cs  (Dispose): Should call the base dispose when
18347         overriding.
18348
18349 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18350
18351         * ScrollBar.cs: updates thumb position when max, min or increment
18352         is changed
18353
18354 2004-11-21  Ravindra <rkumar@novell.com>
18355
18356         * ListView.cs: Implemented item selection, activation and
18357         column header style. Fixed properties to do a redraw, if
18358         required. Added support for MouseHover, DoubleClick, KeyDown
18359         and KeyUp event handling and some minor fixes.
18360         * ListViewItem.cs: Fixed constructor.
18361         * ThemeWin32Classic.cs: Improved drawing for ListView.
18362
18363 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18364
18365         * ThemeWin32Classic.cs: initial listbox drawing code
18366         * DrawMode.cs: new enumerator
18367         * ListControl.cs: stubbed class
18368         * ListBox.cs: initial implementation
18369         * Theme.cs: new methods definitions
18370         * SelectionMode.cs: new enumerator
18371
18372 2004-11-17  Peter Bartok  <pbartok@novell.com>
18373
18374         * XplatUIWin32.cs: Added double-click events to the class style
18375         * Control.cs (WndProc):
18376           - Added handling of click-count to MouseDown/ MouseUp events.
18377           - Added handling of middle and right mouse buttons
18378           - Removed old debug code
18379
18380 2004-11-17  Jackson Harper  <jackson@ximian.com>
18381
18382         * XplatUIX11.cs: Use the new Mono.Unix namespace.
18383
18384 2004-11-17  Ravindra <rkumar@novell.com>
18385
18386         * ListView.cs: Added event handling for MouseMove/Up/Down.
18387         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
18388         * ThemeWin32Classic.cs: We need to clear the graphics context and
18389         draw column header in a proper state.
18390
18391
18392 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
18393
18394         *  Menu.cs: fixes signature
18395
18396 2004-11-16  Peter Bartok  <pbartok@novell.com>
18397
18398         * XplatUIX11.cs (GetMessage): Implemented generation of
18399           double click mouse messages
18400
18401 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
18402
18403         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
18404         not by menu
18405
18406 2004-11-11  Peter Bartok  <pbartok@novell.com>
18407
18408         * HandleData.cs: Added Visible property
18409         * XplatUIX11.cs (IsVisible): Now uses Visible property from
18410           HandleData
18411         * XplatUIX11.cs: Removed old debug leftovers
18412         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
18413         * Control.cs (WndProc): Removed old debug leftovers,
18414           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
18415           needed WM_SIZE handling
18416
18417 2004-11-11  Jackson Harper  <jackson@ximian.com>
18418
18419         * OwnerDrawPropertyBag.cs:
18420         * TreeViewImageIndexConverter.cs: Initial implementation
18421
18422 2004-11-10  Jackson Harper  <jackson@ximian.com>
18423
18424         * ThemeWin32Classic.cs:
18425         * TabControl.cs: instead of moving tabs by the slider pos just
18426         start drawing at the tab that is offset by the slider. This way
18427         scrolling always moves by exactly one tab.
18428
18429 2004-11-10  Jackson Harper  <jackson@ximian.com>
18430
18431         * TabControl.cs: You can only scroll left when the slider has
18432         already ben moved right.
18433         
18434 2004-11-10  Jackson Harper  <jackson@ximian.com>
18435
18436         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
18437         the clip area.
18438         
18439 2004-11-10  Jackson Harper  <jackson@ximian.com>
18440
18441         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
18442         clip area.
18443         
18444 2004-11-09  Jackson Harper  <jackson@ximian.com>
18445
18446         * TabControl.cs (CalcXPos): New helper method so we can determine
18447         the proper place to start drawing vertical tabs.
18448         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
18449         
18450 2004-11-09  Jackson Harper  <jackson@ximian.com>
18451
18452         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
18453         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
18454         and Bottom, left and right are illegal values for this and
18455         multiline is enabled when the alignment is set to left or right.
18456         (DrawTab): Each alignment block should draw the text itself now
18457         because Left requires special love. Also add rendering for Left
18458         aligned tabs.
18459         
18460 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
18461
18462         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
18463         does not destroy the windows, removes debugging messages
18464
18465 2004-11-09  jba  <jba-mono@optusnet.com.au>
18466
18467         * ThemeWin32Classic.cs
18468         (DrawButtonBase): Fix verticle text rect clipping in windows
18469         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18470         rendering and incorrect text rect clipping
18471         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18472         rendering and incorrect text rect clipping
18473         
18474 2004-11-08  Jackson Harper  <jackson@ximian.com>
18475
18476         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
18477         bottom when they are bottom aligned so the bottoms of the tabs get
18478         displayed.
18479         * TabControl.cs (DropRow): Move rows up instead of down when the
18480         tab control is bottom aligned.
18481
18482 2004-11-08 13:59  pbartok
18483
18484         * XplatUIX11.cs:
18485           - Added handling for various window styles
18486           - Added handling for popup windows
18487           - Added SetTopmost handling
18488
18489 2004-11-08 13:55  pbartok
18490
18491         * XplatUIWin32.cs:
18492           - Added argument to SetTopmost method
18493           - Fixed broken ClientToScreen function
18494
18495 2004-11-08 13:53  pbartok
18496
18497         * XplatUIStructs.cs:
18498           - Added missing WS_EX styles
18499
18500 2004-11-08 13:53  pbartok
18501
18502         * XplatUI.cs, XplatUIDriver.cs:
18503           - Added argument to SetTopmost
18504
18505 2004-11-08 13:52  pbartok
18506
18507         * X11Structs.cs:
18508           - Added XSetWindowAttributes structure
18509           - Improved XWindowAttributes structure
18510           - Added SetWindowValuemask enum
18511           - Added window creation arguments enum
18512           - Added gravity enum
18513           - Added Motif hints structure
18514           - Added various Motif flags and enums
18515           - Added PropertyMode enum for property functions
18516
18517 2004-11-08 13:50  pbartok
18518
18519         * Form.cs:
18520           - Fixed arguments for updated SetTopmost method
18521
18522 2004-11-08 13:49  pbartok
18523
18524         * ToolTip.cs:
18525           - Fixed arguments for updated SetTopmost function
18526           - Fixed usage of PointToClient
18527
18528 2004-11-08 13:44  pbartok
18529
18530         * MenuAPI.cs:
18531           - Added Clipping of children and siblings
18532
18533 2004-11-08 13:41  pbartok
18534
18535         * MainMenu.cs:
18536           - Removed SetMenuBarWindow call. We do this in Form.cs
18537
18538 2004-11-08 13:40  jackson
18539
18540         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
18541           scrolling jimmi in the correct location with bottom aligned tabs
18542
18543 2004-11-08 13:36  pbartok
18544
18545         * ContainerControl.cs:
18546           - Implemented BindingContext
18547           - Implemented ParentForm
18548
18549 2004-11-08 12:46  jackson
18550
18551         * TabControl.cs: Put bottom rendered tabs in the right location
18552
18553 2004-11-08 07:15  jordi
18554
18555         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
18556           removes dead code
18557
18558 2004-11-05 17:30  jackson
18559
18560         * TabControl.cs: When selected tabs are expanded make sure they
18561           don't go beyond the edges of the tab control
18562
18563 2004-11-05 14:57  jackson
18564
18565         * TabControl.cs: Reset show_slider so if the control is resized to
18566           a size where it is no longer needed it's not displayed anymore
18567
18568 2004-11-05 13:16  jackson
18569
18570         * TabControl.cs: Make tab pages non visible when added to the
18571           control
18572
18573 2004-11-05 12:42  jackson
18574
18575         * TabControl.cs: Implement SizeMode.FillToRight
18576
18577 2004-11-05 12:16  jackson
18578
18579         * Control.cs: Do not call CreateHandle if the handle is already
18580           created
18581
18582 2004-11-05 11:46  jackson
18583
18584         * TabControl.cs: Remove superflous call to CalcTabRows
18585
18586 2004-11-05 09:07  jackson
18587
18588         * XplatUIX11.cs: Update for Mono.Posix changes
18589
18590 2004-11-05 07:00  ravindra
18591
18592         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
18593           scrolling.
18594
18595 2004-11-04 22:47  jba
18596
18597         * ThemeWin32Classic.cs:
18598           - Fix Button rendering for FlatStyle = Flat or Popup
18599           - Fix RadioButton and CheckBox rendering when Appearance = Button
18600             (normal and flatstyle).
18601           - Correct outer rectangle color when drawing focus rectangle
18602           - Adjust button bounds to be 1 px smaller when focused
18603           - Make button not draw sunken 3d border when pushed (windows compat)
18604           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
18605           - Offset the text in RadioButton and Checkbox when being rendered as
18606           a button.
18607           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
18608           radiobuttons
18609           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
18610           - Fixed disabled text rendering for normally rendered radiobuttons
18611
18612 2004-11-04 10:26  jackson
18613
18614         * TabControl.cs: Recalculate tab rows when resizing
18615
18616 2004-11-04 07:47  jordi
18617
18618         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
18619           collection completion, drawing issues, missing features
18620
18621 2004-11-04 05:03  ravindra
18622
18623         * ScrollBar.cs:
18624                 - We need to recalculate the Thumb area when
18625                 LargeChange/maximum/minimum values are changed.
18626           - We set the 'pos' in UpdatePos() method to minimum, if it's less
18627                 than minimum. This is required to handle the case if large_change is
18628                 more than max, and use LargeChange property instead of large_change
18629                 variable.
18630           - We return max+1 when large_change is more than max, like MS does.
18631
18632 2004-11-04 04:29  ravindra
18633
18634         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
18635                 - Changed default value signatures (prefixed all with ListView).
18636                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
18637                 ListView.
18638           - Fixed calculations for ListViewItem and implemented Clone()
18639           method.
18640
18641 2004-11-04 04:26  ravindra
18642
18643         * Theme.cs, ThemeWin32Classic.cs:
18644                 - Changed default ListView values signatures (prefixed all with
18645                 ListView).
18646           - Fixed default size values for VScrollBar and HScrollBar.
18647                 - Fixed DrawListViewItem method.
18648
18649 2004-11-04 04:05  ravindra
18650
18651         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
18652
18653 2004-11-04 04:04  ravindra
18654
18655         * ImageList.cs: Implemented the missing overload for Draw method.
18656
18657 2004-11-03 19:29  jackson
18658
18659         * TabControl.cs: Handle dropping rows on selection properly
18660
18661 2004-11-03 11:59  jackson
18662
18663         * TabControl.cs: remove debug code
18664
18665 2004-11-03 11:52  jackson
18666
18667         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
18668           the scrolly widgerywoo
18669
18670 2004-11-02 13:52  jackson
18671
18672         * TabControl.cs: Resize the tab pages and tabs when the tab control
18673           is resized
18674
18675 2004-11-02 13:40  jackson
18676
18677         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
18678           selected tab to the bottom
18679
18680 2004-11-02 13:39  jackson
18681
18682         * TabPage.cs: Store the tab pages row
18683
18684 2004-11-02 12:33  jordi
18685
18686         * MenuItem.cs: fixes handle creation
18687
18688 2004-11-02 11:42  jackson
18689
18690         * TabControl.cs: signature fix
18691
18692 2004-11-02 08:56  jackson
18693
18694         * TabControl.cs: Calculate whether the tab is on an edge properly.
18695           Remove top secret debugging code
18696
18697 2004-11-01 19:57  jackson
18698
18699         * TabControl.cs: Add click handling, and proper sizing
18700
18701 2004-11-01 19:47  jackson
18702
18703         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
18704           tab controls
18705
18706 2004-11-01 19:39  jackson
18707
18708         * TabPage.cs: add internal property to store the bounds of a tab
18709           page
18710
18711 2004-10-30 04:23  ravindra
18712
18713         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
18714           values.
18715
18716 2004-10-30 04:21  ravindra
18717
18718         * ListView.cs, ListViewItem.cs: Added support for scrolling and
18719           fixed calculations.
18720
18721 2004-10-30 03:06  pbartok
18722
18723         * XplatUIX11.cs:
18724           - Removed extension of DllImported libs
18725
18726 2004-10-29 09:55  jordi
18727
18728         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
18729           navigation, itemcollection completion, menu fixes
18730
18731 2004-10-27 22:58  pbartok
18732
18733         * XplatUIX11.cs:
18734           - Now throws a nice error message when no X display could be opened
18735
18736 2004-10-26 13:51  jordi
18737
18738         * ListView.cs: removes warning
18739
18740 2004-10-26 03:55  ravindra
18741
18742         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
18743           ThemeWin32Classic.cs: Some formatting for my last checkins.
18744
18745 2004-10-26 03:36  ravindra
18746
18747         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
18748           control and default values.
18749
18750 2004-10-26 03:35  ravindra
18751
18752         * Theme.cs: Added some default values for ListView control.
18753
18754 2004-10-26 03:33  ravindra
18755
18756         * ToolBar.cs: ToolBar should use the user specified button size, if
18757           there is any. Added a size_specified flag for the same.
18758
18759 2004-10-26 03:33  ravindra
18760
18761         * ColumnHeader.cs: Added some internal members and calculations for
18762           ColumnHeader.
18763
18764 2004-10-26 03:32  ravindra
18765
18766         * ListViewItem.cs: Calculations for ListViewItem.
18767
18768 2004-10-26 03:31  ravindra
18769
18770         * ListView.cs: Added some internal members and calculations for
18771           ListView.
18772
18773 2004-10-22 13:31  jordi
18774
18775         * MenuAPI.cs: speedup menus drawing
18776
18777 2004-10-22 13:16  jackson
18778
18779         * XplatUIX11.cs: Make sure to update exposed regions when adding an
18780           expose event
18781
18782 2004-10-22 11:49  jackson
18783
18784         * Control.cs: oops
18785
18786 2004-10-22 11:41  jackson
18787
18788         * Control.cs: Check to see if the window should have its background
18789           repainted by X when drawing.
18790
18791 2004-10-22 11:31  jackson
18792
18793         * XplatUIX11.cs: When invalidating areas only use XClearArea if
18794           clear is true, this way we do not get flicker from X repainting the
18795           background
18796
18797 2004-10-22 11:28  jackson
18798
18799         * XEventQueue.cs: Queue properly
18800
18801 2004-10-21 09:38  jackson
18802
18803         * XEventQueue.cs: Fix access modifier
18804
18805 2004-10-21 09:36  jackson
18806
18807         * XEventQueue.cs: Don't loose messages
18808
18809 2004-10-21 09:22  jackson
18810
18811         * XEventQueue.cs: Don't loose messages
18812
18813 2004-10-20 04:15  jordi
18814
18815         * BootMode.cs: enum need it by SystemInfo
18816
18817 2004-10-19 21:58  pbartok
18818
18819         * XplatUIWin32.cs:
18820           - Small sanity check
18821
18822 2004-10-19 21:56  pbartok
18823
18824         * Form.cs:
18825           - Added private FormParentWindow class which acts as the container
18826             for our form and as the non-client area where menus are drawn
18827           - Added/Moved required tie-ins to Jordi's menus
18828           - Fixed/Implemented the FormStartPosition functionality
18829
18830 2004-10-19 21:52  pbartok
18831
18832         * Control.cs:
18833           - Removed unneeded locals
18834           - Added code to all size and location properties to understand and
18835             deal with the parent container of Form
18836
18837 2004-10-19 21:33  pbartok
18838
18839         * Application.cs:
18840           - Fixed to deal with new Form subclasses for menus
18841
18842 2004-10-19 17:48  jackson
18843
18844         * XEventQueue.cs: commit correct version of file
18845
18846 2004-10-19 16:50  jackson
18847
18848         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
18849
18850 2004-10-19 16:15  jordi
18851
18852         * MenuAPI.cs: MenuBarCalcSize returns the height
18853
18854 2004-10-19 08:31  pbartok
18855
18856         * Control.cs:
18857           - Added missing call to PreProcessMessage before calling OnXXXKey
18858           methods
18859
18860 2004-10-19 00:04  ravindra
18861
18862         * ToolTip.cs: Fixed constructor.
18863
18864 2004-10-18 09:31  jordi
18865
18866         * MenuAPI.cs: menuitems in menubars do not have shortcuts
18867
18868 2004-10-18 09:26  jordi
18869
18870         * MenuItem.cs: fixes MenuItem class signature
18871
18872 2004-10-18 08:56  jordi
18873
18874         * MenuAPI.cs: prevents windows from showing in the taskbar
18875
18876 2004-10-18 00:28  ravindra
18877
18878         * ToolTip.cs: Suppressed a warning message.
18879
18880 2004-10-18 00:27  ravindra
18881
18882         * Control.cs: Default value of visible property must be true.
18883
18884 2004-10-17 23:19  pbartok
18885
18886         * ToolTip.cs:
18887           - Complete implementation
18888
18889 2004-10-17 23:19  pbartok
18890
18891         * XplatUIX11.cs:
18892           - Added EnableWindow method
18893           - Added SetModal stub
18894           - Added generation of WM_ACTIVATE message (still needs testing)
18895           - Added SetTopMost stub
18896           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
18897
18898 2004-10-17 23:17  pbartok
18899
18900         * XplatUIWin32.cs:
18901           - Removed VirtualKeys to XplatUIStructs
18902           - Implemented SetTopMost method
18903           - Implemented EnableWindow method
18904           - Bugfix in ScreenToClient()
18905           - Bugfixes in ClientToScreen()
18906
18907 2004-10-17 22:51  pbartok
18908
18909         * XplatUIStructs.cs:
18910           - Added WS_EX styles to WindowStyles enumeration
18911
18912 2004-10-17 22:50  pbartok
18913
18914         * XplatUI.cs, XplatUIDriver.cs:
18915           - Added method for enabling/disabling windows
18916           - Added method for setting window modality
18917           - Added method for setting topmost window
18918
18919 2004-10-17 22:49  pbartok
18920
18921         * ThemeWin32Classic.cs:
18922           - Added ToolTip drawing code
18923
18924 2004-10-17 22:49  pbartok
18925
18926         * Theme.cs:
18927           - Added ToolTip abstracts
18928
18929 2004-10-17 22:47  pbartok
18930
18931         * Form.cs:
18932           - Fixed Form.ControlCollection to handle owner relations
18933           - Added Owner/OwnedForms handling
18934           - Implemented Z-Ordering for owned forms
18935           - Removed unneeded private overload of ShowDialog
18936           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
18937             so I hope)
18938           - Fixed Close(), had wrong default
18939           - Added firing of OnLoad event
18940           - Added some commented out debug code for Ownership handling
18941
18942 2004-10-17 22:16  pbartok
18943
18944         * Control.cs:
18945           - Fixed/implemented flat list of controls
18946
18947 2004-10-17 22:14  pbartok
18948
18949         * Application.cs:
18950           - Added code to simulate modal dialogs on Win32
18951
18952 2004-10-17 16:11  jordi
18953
18954         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
18955           mouse event
18956
18957 2004-10-17 13:39  jordi
18958
18959         * MenuAPI.cs: menu drawing fixes
18960
18961 2004-10-15 09:10  ravindra
18962
18963         * StructFormat.cs: General Enum.
18964
18965 2004-10-15 09:09  ravindra
18966
18967         * SizeGripStyle.cs: Enum for Form.
18968
18969 2004-10-15 09:08  ravindra
18970
18971         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
18972           in Theme for ListView.
18973
18974 2004-10-15 09:06  ravindra
18975
18976         * ColumnHeader.cs: Flushing some formatting changes.
18977
18978 2004-10-15 09:05  ravindra
18979
18980         * ListViewItem.cs: Implemented GetBounds method and fixed coding
18981           style.
18982
18983 2004-10-15 09:03  ravindra
18984
18985         * ListView.cs: Implemented Paint method and fixed coding style.
18986
18987 2004-10-15 07:34  jordi
18988
18989         * MenuAPI.cs: fix for X11
18990
18991 2004-10-15 07:32  ravindra
18992
18993         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
18994                 - Renamed Paint() method to Draw() for clarity. Also, moved
18995                 DrawImage() to OnPaint().
18996
18997 2004-10-15 07:25  ravindra
18998
18999         * CheckBox.cs, RadioButton.cs:
19000                 - Removed Redraw (), we get it from ButtonBase.
19001                 - Implemented Paint (), to do class specific painting.
19002
19003 2004-10-15 07:16  ravindra
19004
19005         * ButtonBase.cs:
19006                 - Redraw () is not virtual now.
19007                 - Added an internal virtual method Paint (), so that
19008                 derived classes can do their painting on their own.
19009                 - Modified OnPaint () to call Paint ().
19010
19011 2004-10-15 06:43  jordi
19012
19013         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
19014           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
19015
19016 2004-10-15 00:30  ravindra
19017
19018         * MessageBox.cs:
19019                 - MessageBox on windows does not have min/max buttons.
19020                 This change in CreateParams fixes this on Windows. We
19021                 still need to implement this windowstyle behavior in
19022                 our X11 driver.
19023
19024 2004-10-14 05:14  ravindra
19025
19026         * ToolBar.cs:
19027                 - Changed Redraw () to do a Refresh () always.
19028                 - Fixed the MouseMove event handling when mouse is pressed,
19029                 ie drag event handling.
19030                 - Replaced the usage of ToolBarButton.Pressed property to
19031                 ToolBarButton.pressed internal variable.
19032
19033 2004-10-14 05:10  ravindra
19034
19035         * ToolBarButton.cs:
19036                 - Added an internal member 'inside' to handle mouse move
19037                 with mouse pressed ie mouse drag event.
19038                 - Changed 'Pressed' property to return true only when
19039                 'inside' and 'pressed' are both true.
19040                 - Some coding style love.
19041
19042 2004-10-14 00:17  ravindra
19043
19044         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
19045           public method.
19046
19047 2004-10-14 00:15  ravindra
19048
19049         * ButtonBase.cs: Redraw () related improvements.
19050
19051 2004-10-14 00:14  ravindra
19052
19053         * MessageBox.cs: Moved InitFormSize () out of Paint method and
19054           removed unnecessary calls to Button.Show () method.
19055
19056 2004-10-13 17:50  pbartok
19057
19058         * XplatUIX11.cs:
19059           - Formatting fix
19060           - Removed destroying of window until we solve the problem of X
19061             destroying the window before us on shutdown
19062
19063 2004-10-13 16:32  pbartok
19064
19065         * ButtonBase.cs:
19066           - Now Redraws on MouseUp for FlatStyle Flat and Popup
19067
19068 2004-10-13 14:18  pbartok
19069
19070         * XplatUIX11.cs:
19071           - Added code to destroy the X window
19072
19073 2004-10-13 14:18  pbartok
19074
19075         * XplatUIWin32.cs:
19076           - Added code to destroy a window
19077
19078 2004-10-13 14:12  pbartok
19079
19080         * ButtonBase.cs:
19081           - Added the Redraw on Resize that got dropped in the last rev
19082
19083 2004-10-13 09:06  pbartok
19084
19085         * ThemeWin32Classic.cs:
19086           - Path from John BouAntoun:
19087             * Fix check rendering (centre correctly for normal style, offset
19088               correctly for FlatStyle).
19089             * Fix border color usage (use backcolor) for FlatStyle.Popup
19090             * Use checkbox.Capture instead of checkbox.is_pressed when
19091               rendering flatstyle states.
19092
19093 2004-10-12 21:48  pbartok
19094
19095         * ThemeWin32Classic.cs:
19096           - Removed all occurences of SystemColors and replaced them with the
19097             matching theme color
19098
19099 2004-10-12 21:41  pbartok
19100
19101         * ThemeWin32Classic.cs:
19102           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
19103             him using the function for flatstyle drawing
19104           - Changed functions to use the new version of CPDrawBorder3D
19105
19106 2004-10-12 21:15  pbartok
19107
19108         * ControlPaint.cs:
19109           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
19110             match MS documentation. They need to return defined colors if the
19111             passed color matches the configured control color. Thanks to John
19112             BouAntoun for pointing this out.
19113
19114 2004-10-12 20:57  pbartok
19115
19116         * Control.cs:
19117           - Fix from John BouAntoun: Raise ForeColorChanged event when text
19118             color is changed
19119
19120 2004-10-12 20:46  pbartok
19121
19122         * CheckBox.cs:
19123           - Fix from John BouAntoun: Now properly sets the Appearance property
19124
19125 2004-10-12 20:45  pbartok
19126
19127         * ThemeWin32Classic.cs:
19128           - Fixes from John BouAntoun: now handles forecolors and backcolors
19129             for flatstyle rendered controls much better; It also fixes normal
19130             checkbox rendering when pushed or disabled.
19131
19132 2004-10-08 02:50  jordi
19133
19134         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
19135           work
19136
19137 2004-10-07 08:56  jordi
19138
19139         * ThemeWin32Classic.cs: Removes deletion of cached brushes
19140
19141 2004-10-06 03:59  jordi
19142
19143         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
19144           XplatUIWin32.cs: removes warnings from compilation
19145
19146 2004-10-05 12:23  jackson
19147
19148         * RadioButton.cs: Fix ctor
19149
19150 2004-10-05 11:10  pbartok
19151
19152         * MessageBox.cs:
19153           - Partial implementation by Benjamin Dasnois
19154
19155 2004-10-05 10:15  jackson
19156
19157         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
19158           by John BouAntoun
19159
19160 2004-10-05 03:07  ravindra
19161
19162         * ToolBar.cs:
19163                 - Removed a private method, Draw ().
19164                 - Fixed the ButtonDropDown event handling.
19165                 - Fixed MouseMove event handling.
19166
19167 2004-10-05 03:04  ravindra
19168
19169         * ThemeWin32Classic.cs:
19170                 - Added DrawListView method and ListViewDefaultSize property.
19171                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
19172                 - Changed DOS style CRLF to Unix format (dos2unix).
19173
19174 2004-10-05 03:03  ravindra
19175
19176         * Theme.cs:
19177                 - Added DrawListView method and ListViewDefaultSize property.
19178
19179 2004-10-05 02:42  ravindra
19180
19181         * ToolBarButton.cs: Added an internal member dd_pressed to handle
19182           clicks on DropDown arrow.
19183
19184 2004-10-04 22:56  jackson
19185
19186         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
19187           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
19188           Control handle the buffers, derived classes should not have to
19189           CreateBuffers themselves.
19190
19191 2004-10-04 21:20  jackson
19192
19193         * StatusBar.cs: The control handles resizing the buffers now.
19194
19195 2004-10-04 21:18  jackson
19196
19197         * Control.cs: When resizing the buffers should be invalidated. This
19198           should be handled in Control not in derived classes.
19199
19200 2004-10-04 14:45  jackson
19201
19202         * TabPage.cs: oops
19203
19204 2004-10-04 02:14  pbartok
19205
19206         * LeftRightAlignment.cs:
19207           - Initial check-in
19208
19209 2004-10-04 01:09  jordi
19210
19211         * ThemeWin32Classic.cs: fixes right button position causing right
19212           button not showing on horizontal scrollbars
19213
19214 2004-10-02 13:12  pbartok
19215
19216         * XplatUIX11.cs:
19217           - Simplified the Invalidate method by using an X call instead of
19218             generating the expose ourselves
19219           - Added an expose when the window background is changed
19220           - Implemented ClientToScreen method
19221
19222 2004-10-02 13:08  pbartok
19223
19224         * XplatUIWin32.cs:
19225           - Added Win32EnableWindow method (test for implementing modal
19226           dialogs)
19227           - Added ClientToScreen method and imports
19228
19229 2004-10-02 13:07  pbartok
19230
19231         * XplatUI.cs, XplatUIDriver.cs:
19232           - Added ClientToScreen coordinate translation method
19233
19234 2004-10-02 13:06  pbartok
19235
19236         * KeyPressEventArgs.cs:
19237           - Fixed access level for constructor
19238
19239 2004-10-02 13:06  pbartok
19240
19241         * NativeWindow.cs:
19242           - Changed access level for the window_collection hash table
19243
19244 2004-10-02 13:05  pbartok
19245
19246         * Form.cs:
19247           - Added KeyPreview property
19248           - Added Menu property (still incomplete, pending Jordi's menu work)
19249           - Implemented ProcessCmdKey
19250           - Implemented ProcessDialogKey
19251           - Implemented ProcessKeyPreview
19252
19253 2004-10-02 13:02  pbartok
19254
19255         * Control.cs:
19256           - Added private method to get the Control object from the window
19257           handle
19258           - Implemented ContextMenu property
19259           - Implemented PointToScreen
19260           - Implemented PreProcessMessage
19261           - Implemented IsInputChar
19262           - Implemented IsInputKey
19263           - Implemented ProcessCmdKey
19264           - Completed ProcessKeyEventArgs
19265           - Fixed message loop to call the proper chain of functions on key
19266           events
19267           - Implemented ProcessDialogChar
19268           - Implemented ProcessDialogKey
19269           - Implemented ProcessKeyMessage
19270           - Implemented ProcessKeyPreview
19271           - Added RaiseDragEvent stub (MS internal method)
19272           - Added RaiseKeyEvent stub (MS internal method)
19273           - Added RaiseMouseEvent stub (MS Internal method)
19274           - Added RaisePaintEvent stub (MS Internal method)
19275           - Added ResetMouseEventArgs stub (MS Internal method)
19276           - Implemented RtlTranslateAlignment
19277           - Implemented RtlTranslateContent
19278           - Implemented RtlTranslateHorizontal
19279           - Implemented RtlTranslateLeftRight
19280           - Added generation of KeyPress event
19281
19282 2004-10-02 05:57  ravindra
19283
19284         * ListViewItem.cs: Added attributes.
19285
19286 2004-10-02 05:32  ravindra
19287
19288         * ListView.cs: Added attributes.
19289
19290 2004-10-01 11:53  jackson
19291
19292         * Form.cs: Implement the Close method so work on MessageBox can
19293           continue.
19294
19295 2004-09-30 14:06  pbartok
19296
19297         * XplatUIX11.cs:
19298           - Bug fixes
19299
19300 2004-09-30 11:34  jackson
19301
19302         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
19303
19304 2004-09-30 07:26  ravindra
19305
19306         * ListViewItemConverter.cs: Converter for ListViewItem.
19307
19308 2004-09-30 07:26  ravindra
19309
19310         * SortOrder.cs: Enum for ListView control.
19311
19312 2004-09-30 07:25  ravindra
19313
19314         * ColumnHeader.cs: Supporting class for ListView control.
19315
19316 2004-09-30 07:24  ravindra
19317
19318         * ListView.cs, ListViewItem.cs: Initial implementation.
19319
19320 2004-09-30 07:20  ravindra
19321
19322         * ItemActivation.cs: Enum for ListView Control.
19323
19324 2004-09-29 20:29  pbartok
19325
19326         * XplatUIX11.cs:
19327           - Added lookup of pixel value for background color; tries to get a
19328             color 'close' to the requested color, it avoids having to create a
19329             colormap.  Depending on the display this could mean the used color
19330             is slightly off the desired color. Might have to change it to a more
19331             resource intensive colormap approach, but it will work as a
19332           workaround to avoid red screens.
19333
19334 2004-09-29 14:27  jackson
19335
19336         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
19337
19338 2004-09-28 12:44  pbartok
19339
19340         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
19341           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
19342           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
19343           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
19344           TrackBar.cs, VScrollBar.cs:
19345           - Streamlined Theme interfaces:
19346             * Each DrawXXX method for a control now is passed the object for
19347               the control to be drawn in order to allow accessing any state the
19348               theme might require
19349
19350             * ControlPaint methods for the theme now have a CP prefix to avoid
19351               name clashes with the Draw methods for controls
19352
19353             * Every control now retrieves it's DefaultSize from the current
19354             theme
19355
19356 2004-09-28 12:17  jackson
19357
19358         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
19359           drawing
19360
19361 2004-09-24 14:57  jackson
19362
19363         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
19364           Gives us a nice little performance boost.
19365
19366 2004-09-24 12:02  jackson
19367
19368         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
19369           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
19370           Control and supporting classes. Initial checkin
19371
19372 2004-09-23 13:08  jackson
19373
19374         * Form.cs: Temp build fixage
19375
19376 2004-09-23 01:39  ravindra
19377
19378         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
19379           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
19380           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
19381           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
19382           EventHandlers needed by ListView Control.
19383
19384 2004-09-22 14:12  pbartok
19385
19386         * ScrollableControl.cs:
19387           - Implemented DockPadding property
19388           - Implemented AutoScroll property
19389           - Implemented AutoScrollMargin property
19390           - Implemented AutoScrollMinSize property
19391           - Implemented AutoScrollPosition property
19392           - Implemented DisplayRectangle property (still incomplete)
19393           - Implemented CreateParams property
19394           - Implemented HScroll property
19395           - Implemented VScroll property
19396           - Implemented OnVisibleChanged property
19397
19398 2004-09-22 14:09  pbartok
19399
19400         * Form.cs:
19401           - Added Form.ControllCollection class
19402           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
19403             RemoveOwnedForm (still incomplete, missing on-top and common
19404             minimize/maximize behaviour)
19405           - Added StartPosition property (still incomplete, does not use when
19406             creating the form)
19407           - Added ShowDialog() methods (still incomplete, missing forcing the
19408             dialog modal)
19409
19410 2004-09-22 14:05  pbartok
19411
19412         * Application.cs:
19413           - Added message loop for modal dialogs
19414
19415 2004-09-22 14:02  pbartok
19416
19417         * GroupBox.cs:
19418           - Fixed wrong types for events
19419
19420 2004-09-22 14:00  pbartok
19421
19422         * Shortcut.cs, FormWindowState.cs:
19423           - Fixed wrong values
19424
19425 2004-09-22 12:01  jackson
19426
19427         * Control.cs: Text is never null
19428
19429 2004-09-20 22:14  pbartok
19430
19431         * XplatUIWin32.cs:
19432           - Fixed accessibility level for Idle handler
19433
19434 2004-09-20 18:54  jackson
19435
19436         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19437           XplatUIX11.cs: New message loop that uses poll so we don't get a
19438           busy loop
19439
19440 2004-09-17 10:43  pbartok
19441
19442         * ScrollBar.cs:
19443           - Fixed behaviour of arrow buttons. Now properly behaves like
19444             Buttons (and like Microsoft's scrollbar arrow buttons)
19445
19446 2004-09-17 10:14  pbartok
19447
19448         * ScrollBar.cs:
19449           - Added missing release of keyboard/mouse capture
19450
19451 2004-09-17 06:18  jordi
19452
19453         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
19454           Theme.cs: Very early menu support
19455
19456 2004-09-16 17:45  pbartok
19457
19458         * XplatUIWin32.cs:
19459           - Fixed sending a window to the front
19460           - Added overload for SetWindowPos to avoid casting
19461
19462 2004-09-16 17:44  pbartok
19463
19464         * Control.cs:
19465           - Added SendToBack and BringToFront methods
19466
19467 2004-09-16 07:00  ravindra
19468
19469         * Copyright: Added Novell URL.
19470
19471 2004-09-16 07:00  ravindra
19472
19473         * ToolBar.cs: Invalidate should be done before redrawing.
19474
19475 2004-09-15 21:19  ravindra
19476
19477         * ColumnHeaderStyle.cs: Enum for ListView Control.
19478
19479 2004-09-15 21:18  ravindra
19480
19481         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
19482           ListView Control.
19483
19484 2004-09-13 18:26  jackson
19485
19486         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
19487           properly
19488
19489 2004-09-13 18:13  jackson
19490
19491         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
19492           a second thread and post messages into the main threads message
19493           queue. This makes timing much more consistent. Both win2K and XP
19494           have a minimum timer value of 15 milliseconds, so we now do this
19495           too.
19496
19497 2004-09-13 15:18  pbartok
19498
19499         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19500           XplatUIX11.cs:
19501           - Added Z-Ordering methods
19502
19503 2004-09-13 10:56  pbartok
19504
19505         * Form.cs:
19506           - Fixed #region names
19507           - Moved properties and methods into their proper #regions
19508
19509 2004-09-13 10:51  pbartok
19510
19511         * Form.cs:
19512           - Added Accept and CancelButton properties
19513           - Added ProcessDialogKey() method
19514
19515 2004-09-13 08:18  pbartok
19516
19517         * IWindowTarget.cs:
19518           - Initial check-in
19519
19520 2004-09-10 21:50  pbartok
19521
19522         * Control.cs:
19523           - Added DoDragDrop() [incomplete]
19524           - Properly implemented 'Visible' handling
19525           - Added SetVisibleCore()
19526           - Implemented FindChildAtPoint()
19527           - Implemented GetContainerControl()
19528           - Implemented Hide()
19529
19530 2004-09-10 19:28  pbartok
19531
19532         * Control.cs:
19533           - Moved methods into their appropriate #regions
19534           - Reordered methods within regions alphabetically
19535
19536 2004-09-10 18:57  pbartok
19537
19538         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19539           - Added method to retrieve text from window
19540
19541 2004-09-10 18:56  pbartok
19542
19543         * Control.cs:
19544           - Moved some internal functions into the internal region
19545           - Implemented FontHeight
19546           - Implemented RenderRightToLeft
19547           - Implemented ResizeRedraw
19548           - Implemented ShowFocusCues
19549           - Implemented ShowKeyboardCues
19550           - Implemented FromChildHandle
19551           - Implemented FromHandle
19552           - Implemented IsMnemonic
19553           - Implemented ReflectMessage
19554           - All public and protected Static Methods are now complete
19555
19556 2004-09-10 16:54  pbartok
19557
19558         * Control.cs:
19559           - Implemented remaining missing public instance properties
19560           - Alphabetized some out of order properties
19561
19562 2004-09-10 05:51  ravindra
19563
19564         * PictureBox.cs: Added a check for null image.
19565
19566 2004-09-10 00:59  jordi
19567
19568         * GroupBox.cs: remove cvs tag
19569
19570 2004-09-09 05:25  ravindra
19571
19572         * ToolBar.cs: Make redraw accessible from ToolBarButton.
19573
19574 2004-09-09 05:23  ravindra
19575
19576         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
19577           parent redraw.
19578
19579 2004-09-09 02:28  pbartok
19580
19581         * ThemeWin32Classic.cs:
19582           - Improve disabled string look
19583
19584 2004-09-09 01:15  jordi
19585
19586         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
19587           args and handler
19588
19589 2004-09-08 23:56  ravindra
19590
19591         * ItemBoundsPortion.cs: It's enum, not a class!
19592
19593 2004-09-08 23:47  ravindra
19594
19595         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
19596           Enums for Form.
19597
19598 2004-09-08 21:13  ravindra
19599
19600         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
19601           ListView control.
19602
19603 2004-09-08 21:03  ravindra
19604
19605         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
19606           avoid crash.
19607
19608 2004-09-08 21:01  ravindra
19609
19610         * ScrollableControl.cs: Removed unreachable code.
19611
19612 2004-09-08 06:45  jordi
19613
19614         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
19615
19616 2004-09-08 01:00  jackson
19617
19618         * XplatUIX11.cs: Only run the timers when updating the message
19619           queue. This effectively gives X messages a higher priority then
19620           timer messages. Timers still need love though
19621
19622 2004-09-07 14:01  jackson
19623
19624         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
19625           this for us and the handle is no longer valid.
19626
19627 2004-09-07 13:59  jackson
19628
19629         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
19630           loop that manages to not crash. TODO: Add poll and cleanup timers
19631
19632 2004-09-07 11:12  jordi
19633
19634         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
19635
19636 2004-09-07 03:40  jordi
19637
19638         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
19639           fixes, methods, multiple links
19640
19641 2004-09-06 06:55  jordi
19642
19643         * Control.cs: Caches ClientRectangle rectangle value
19644
19645 2004-09-05 02:03  jordi
19646
19647         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
19648           certain situations
19649
19650 2004-09-04 11:10  jordi
19651
19652         * Label.cs: Refresh when font changed
19653
19654 2004-09-02 16:24  pbartok
19655
19656         * Control.cs:
19657           - Added sanity check to creation of double buffer bitmap
19658
19659 2004-09-02 16:24  pbartok
19660
19661         * ButtonBase.cs:
19662           - Fixed selection of text color
19663           - Fixed handling of resize event; now properly recreates double
19664             buffering bitmap
19665           - Added missing assignment of TextAlignment
19666           - Added proper default for TextAlignment
19667
19668 2004-09-02 14:26  pbartok
19669
19670         * RadioButton.cs:
19671           - Added missing RadioButton.RadioButtonAccessibleObject class
19672
19673 2004-09-02 14:26  pbartok
19674
19675         * Control.cs:
19676           - Added missing Control.ControlAccessibleObject class
19677           - Started to implement Select()ion mechanisms, still very incomplete
19678
19679 2004-09-02 14:25  pbartok
19680
19681         * AccessibleObject.cs:
19682           - Added missing methods
19683
19684 2004-09-02 14:23  pbartok
19685
19686         * AccessibleNavigation.cs, AccessibleSelection.cs:
19687           - Initial check-in
19688
19689 2004-09-02 10:32  jordi
19690
19691         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
19692           pool for pens, brushes, and hatchbruses
19693
19694 2004-09-01 15:30  jackson
19695
19696         * StatusBar.cs: Fix typo
19697
19698 2004-09-01 14:44  pbartok
19699
19700         * RadioButton.cs:
19701           - Fixed state
19702
19703 2004-09-01 14:39  pbartok
19704
19705         * Button.cs, RadioButton.cs:
19706           - Functional initial check-in
19707
19708 2004-09-01 14:01  pbartok
19709
19710         * CheckBox.cs:
19711           - Added missing default
19712           - Added missing region mark
19713
19714 2004-09-01 09:10  jordi
19715
19716         * Label.cs: fixes method signatures, new methods, events, fixes
19717           autosize
19718
19719 2004-09-01 07:19  jordi
19720
19721         * Control.cs: Init string variables with an empty object
19722
19723 2004-09-01 04:20  jordi
19724
19725         * Control.cs: fires OnFontChanged event
19726
19727 2004-08-31 20:07  pbartok
19728
19729         * ButtonBase.cs:
19730           - Enabled display of strings
19731
19732 2004-08-31 20:05  pbartok
19733
19734         * Form.cs:
19735           - Added (partial) implementation of DialogResult; rest needs to be
19736             implemented when the modal loop code is done
19737
19738 2004-08-31 19:55  pbartok
19739
19740         * CheckBox.cs:
19741           - Fixed to match the removal of the needs_redraw concept
19742
19743 2004-08-31 19:55  pbartok
19744
19745         * ButtonBase.cs:
19746           - Removed the rather odd split between 'needs redraw' and redrawing
19747           - Now handles the events that require regeneration (ambient
19748             properties and size)
19749
19750 2004-08-31 19:41  pbartok
19751
19752         * Control.cs:
19753           - Added firing of BackColorChanged event
19754           - Added TopLevelControl property
19755           - Fixed handling of WM_ERASEBKGRND message
19756
19757 2004-08-31 12:49  pbartok
19758
19759         * ButtonBase.cs:
19760           - Removed debug
19761           - Minor fixes
19762
19763 2004-08-31 12:48  pbartok
19764
19765         * CheckBox.cs:
19766           - Finished (famous last words)
19767
19768 2004-08-31 04:35  jordi
19769
19770         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
19771           scrolling bugs, adds new methods
19772
19773 2004-08-30 14:42  pbartok
19774
19775         * CheckBox.cs:
19776           - Implemented CheckBox drawing code
19777
19778 2004-08-30 14:42  pbartok
19779
19780         * ButtonBase.cs:
19781           - Made Redraw() and CheckRedraw() virtual
19782           - Improved mouse up/down/move logic to properly track buttons
19783
19784 2004-08-30 09:44  pbartok
19785
19786         * CheckBox.cs:
19787           - Updated to fix broken build. Not complete yet.
19788
19789 2004-08-30 09:28  pbartok
19790
19791         * CheckState.cs:
19792           - Initial checkin
19793
19794 2004-08-30 09:17  pbartok
19795
19796         * Appearance.cs:
19797           - Initial check-in
19798
19799 2004-08-27 16:12  ravindra
19800
19801         * ToolBarButton.cs: Added TypeConverter attribute.
19802
19803 2004-08-27 16:07  ravindra
19804
19805         * ImageIndexConverter.cs: Implemented.
19806
19807 2004-08-27 14:17  pbartok
19808
19809         * Control.cs:
19810           - Removed unneeded stack vars
19811           - First attempt to fix sizing issues when layout is suspended
19812
19813 2004-08-25 15:35  jordi
19814
19815         * ScrollBar.cs: more fixes to scrollbar
19816
19817 2004-08-25 14:04  ravindra
19818
19819         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
19820           Added the missing divider code and grip for ToolBar Control.
19821
19822 2004-08-25 13:20  pbartok
19823
19824         * Control.cs:
19825           - Control now properly passes the ambient background color to child
19826             controls
19827
19828 2004-08-25 13:20  jordi
19829
19830         * ScrollBar.cs: small bug fix regarding bar position
19831
19832 2004-08-25 12:33  pbartok
19833
19834         * Timer.cs:
19835           - Now only calls SetTimer or KillTimer if the enabled state has
19836           changed
19837
19838 2004-08-25 12:33  pbartok
19839
19840         * XplatUIWin32.cs:
19841           - Fixed timer handling, now seems to work
19842           - Improved error message for window creation
19843
19844 2004-08-25 12:32  pbartok
19845
19846         * Control.cs:
19847           - Fixed generation of MouseUp message
19848
19849 2004-08-25 12:29  jordi
19850
19851         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
19852           and fixes for progressbar
19853
19854 2004-08-24 18:43  ravindra
19855
19856         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
19857           in ToolBar control.
19858
19859 2004-08-24 17:15  pbartok
19860
19861         * Panel.cs:
19862           - Added #region
19863           - Added missing events
19864           - Alphabetized
19865
19866 2004-08-24 17:14  pbartok
19867
19868         * StatusBar.cs, PictureBox.cs:
19869           - Now uses Control's CreateParams
19870
19871 2004-08-24 16:36  pbartok
19872
19873         * XplatUIX11.cs:
19874           - Fixed background color handling
19875           - Fixed sending of enter/leave events on a grab
19876
19877 2004-08-24 16:35  pbartok
19878
19879         * X11Structs.cs:
19880           - Refined definitions for CrossingEvent
19881
19882 2004-08-24 12:37  jordi
19883
19884         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
19885           formmating, methods signature, and adds missing events
19886
19887 2004-08-24 12:24  jordi
19888
19889         * Control.cs: fire OnEnabledChanged event
19890
19891 2004-08-24 11:17  pbartok
19892
19893         * XplatUIWin32.cs:
19894           - Implemented SetTimer() and KillTimer()
19895
19896 2004-08-24 11:16  pbartok
19897
19898         * XplatUIX11.cs:
19899           - Now uses Remove instead of Add to kill the timer
19900
19901 2004-08-24 10:16  jackson
19902
19903         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
19904           picture boxes in the theme now. Draw picture box borders and obey
19905           sizing modes
19906
19907 2004-08-24 05:49  jackson
19908
19909         * Timer.cs: Remove top secret debugging code
19910
19911 2004-08-24 05:34  jackson
19912
19913         * PictureBox.cs: Temp hack to make picture boxes draw their full
19914           image
19915
19916 2004-08-24 05:29  jackson
19917
19918         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19919           XplatUIX11.cs: Move timers to the driver level. On X they are
19920           queued by the driver and checked on idle.
19921
19922 2004-08-24 01:07  jackson
19923
19924         * XplatUIX11.cs: Use a queue for async messages instead of passing
19925           them as ClientMessages since that was totally broken. Also simply
19926           check for events and return an idle message if none are found. This
19927           gives us an idle handler, and prevents deadlocking when no messages
19928           are in the queue.
19929
19930 2004-08-23 18:19  ravindra
19931
19932         * XplatUIWin32.cs: Removed the unwanted destructor.
19933
19934 2004-08-23 17:27  pbartok
19935
19936         * ButtonBase.cs:
19937           - Finishing touches. Works now, just needs some optimizations.
19938
19939 2004-08-23 16:53  jordi
19940
19941         * ScrollBar.cs: small fix
19942
19943 2004-08-23 16:45  pbartok
19944
19945         * Application.cs:
19946           - Removed debug output
19947           - Simplifications
19948
19949 2004-08-23 16:43  jordi
19950
19951         * ScrollBar.cs: [no log message]
19952
19953 2004-08-23 16:10  pbartok
19954
19955         * Form.cs:
19956           - Fixed handling of WM_CLOSE message
19957           - Removed debug output
19958
19959 2004-08-23 16:09  pbartok
19960
19961         * Application.cs:
19962           - Added handling of Idle event
19963           - Added handling of form closing
19964           - Fixed reporting of MessageLoop property
19965           - Removed some unneeded code, should provide a bit of a speedup
19966
19967 2004-08-23 15:22  pbartok
19968
19969         * Control.cs:
19970           - Added InitLayout() method
19971           - Added code to properly perform layout when Anchor or Dock property
19972             is changed
19973           - Changed 'interpretation' of ResumeLayout. MS seems to have a
19974             LAMESPEC, tried to do it in a way that makes sense
19975
19976 2004-08-23 14:10  jordi
19977
19978         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
19979           properties and methods
19980
19981 2004-08-23 13:55  pbartok
19982
19983         * Control.cs:
19984           - Properly fixed Jordi's last fix
19985           - Now uses Cursor's Position property instead of calling XplatUI
19986           directly
19987
19988 2004-08-23 13:44  jordi
19989
19990         * PaintEventHandler.cs: Adding missing attribute
19991
19992 2004-08-23 13:39  pbartok
19993
19994         * Cursor.cs:
19995           - Implemented Position property
19996
19997 2004-08-23 13:39  pbartok
19998
19999         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20000           - Added method to move mouse cursor
20001
20002 2004-08-23 13:39  pbartok
20003
20004         * XplatUIX11.cs:
20005           - Fixed setting of background color
20006           - Added method to move mouse cursor
20007
20008 2004-08-23 13:16  jordi
20009
20010         * Control.cs: avoids null exception
20011
20012 2004-08-22 17:46  jackson
20013
20014         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
20015           PictureBox
20016
20017 2004-08-22 17:40  jackson
20018
20019         * XplatUIX11.cs: Add some missing locks
20020
20021 2004-08-22 15:10  pbartok
20022
20023         * Control.cs, Form.cs:
20024           - Removed OverlappedWindow style from Control, instead it's default
20025             now is child
20026           - Made form windows OverlappedWindow by default
20027
20028 2004-08-22 13:34  jackson
20029
20030         * ScrollBar.cs: Update the position through the Value property so
20031           the OnValueChanged event is raised.
20032
20033 2004-08-22 12:04  pbartok
20034
20035         * SWF.csproj:
20036           - Added Cursor.cs and UserControl.cs
20037
20038 2004-08-22 12:03  pbartok
20039
20040         * Cursor.cs:
20041           - Started implementation, not usable yet
20042
20043 2004-08-22 12:00  pbartok
20044
20045         * UserControl.cs:
20046           - Implemented UserControl (complete)
20047
20048 2004-08-21 19:20  ravindra
20049
20050         * ToolBar.cs: Correcting the formatting mess of VS.NET.
20051
20052 2004-08-21 18:49  ravindra
20053
20054         * ToolBar.cs: Probably this completes the missing attributes in
20055           toolbar control.
20056
20057 2004-08-21 18:03  ravindra
20058
20059         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
20060           Fixed toolbar control signatures.
20061
20062 2004-08-21 16:32  pbartok
20063
20064         * LinkLabel.cs:
20065           - Signature Fixes
20066
20067 2004-08-21 16:30  pbartok
20068
20069         * Label.cs:
20070           - Signature fixes
20071
20072 2004-08-21 16:19  pbartok
20073
20074         * Control.cs, Label.cs:
20075           - Signature fixes
20076
20077 2004-08-21 15:57  pbartok
20078
20079         * ButtonBase.cs:
20080           - Added loads of debug output for development
20081           - Fixed typo in method name
20082
20083 2004-08-21 15:52  pbartok
20084
20085         * ToolBarButtonClickEventArgs.cs:
20086           - Added missing base class
20087
20088 2004-08-21 14:53  pbartok
20089
20090         * Control.cs:
20091           - Updated to match new GrabWindow signature
20092
20093 2004-08-21 14:51  pbartok
20094
20095         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20096           - Added method to get default display size
20097
20098 2004-08-21 14:23  pbartok
20099
20100         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20101           - Added method to query current grab state
20102           - Added argument to allow confining a grab to a window
20103
20104 2004-08-21 14:22  pbartok
20105
20106         * Keys.cs:
20107           - Added [Flags] attribute so that modifiers can be used in bitwise
20108           ops
20109
20110 2004-08-21 14:21  pbartok
20111
20112         * TrackBar.cs, ScrollBar.cs:
20113           - Replaced direct XplatUI calls with their Control counterpart
20114
20115 2004-08-21 13:32  pbartok
20116
20117         * Control.cs:
20118           - Implemented Created property
20119
20120 2004-08-21 13:28  pbartok
20121
20122         * Control.cs:
20123           - Implemented ContainsFocus
20124
20125 2004-08-21 13:26  pbartok
20126
20127         * Control.cs:
20128           - Implemented CausesValidation
20129
20130 2004-08-21 13:21  pbartok
20131
20132         * Control.cs:
20133           - Implemented CanFocus
20134           - Implemented CanSelect
20135           - Implemented Capture
20136
20137 2004-08-21 12:35  pbartok
20138
20139         * XplatUIWin32.cs:
20140           - Fixed bug with Async message handling
20141           - Implemented getting the ModifierKeys
20142
20143 2004-08-21 12:32  jackson
20144
20145         * AsyncMethodResult.cs: Make sure we have the mutex before we
20146           release it. Fixes BeginInvoke on windows
20147
20148 2004-08-21 11:31  pbartok
20149
20150         * XplatUIWin32.cs, XplatUIX11.cs:
20151           - Drivers now return proper mouse state
20152
20153 2004-08-21 10:54  jackson
20154
20155         * Control.cs: Implement EndInvoke
20156
20157 2004-08-21 10:48  jackson
20158
20159         * Timer.cs: Remove unneeded finalizer
20160
20161 2004-08-20 19:52  ravindra
20162
20163         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
20164           in mouse event handling in the ToolBar control.
20165
20166 2004-08-20 19:50  ravindra
20167
20168         * ImageList.cs: Changed draw method to use the arguments passed in
20169           to draw the image.
20170
20171 2004-08-20 18:58  pbartok
20172
20173         * XplatUIStructs.cs:
20174           - Added private message for async communication
20175
20176 2004-08-20 17:38  ravindra
20177
20178         * Control.cs: Made RightToLeft property virtual and removed a
20179           Console.WriteLine.
20180
20181 2004-08-20 14:39  jordi
20182
20183         * ThemeGtk.cs: use style_attach
20184
20185 2004-08-20 14:39  pbartok
20186
20187         * XplatUIWin32.cs:
20188           - Added jackson's Async code from X11 to Win32
20189
20190 2004-08-20 14:09  pbartok
20191
20192         * SWF.csproj:
20193           - Added all new files
20194
20195 2004-08-20 14:09  pbartok
20196
20197         * Control.cs:
20198           - Added call to set window background color
20199
20200 2004-08-20 14:03  pbartok
20201
20202         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20203           - Added method for setting the window background
20204
20205 2004-08-20 14:02  pbartok
20206
20207         * XplatUIWin32.cs:
20208           - Added method for setting the background color
20209           - Added handling for erasing the window background
20210
20211 2004-08-20 13:45  jordi
20212
20213         * TrackBar.cs: fixes timer, new properties and methods
20214
20215 2004-08-20 13:34  jackson
20216
20217         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
20218           correct thread
20219
20220 2004-08-20 13:22  jackson
20221
20222         * Timer.cs: Timer Tick events are now handed through Controls Async
20223           mechanism so the callbacks are executed in the same thread as X
20224
20225 2004-08-20 13:19  jackson
20226
20227         * XplatUIDriver.cs: Expose functionality to send async messages
20228           through the driver
20229
20230 2004-08-20 13:18  jackson
20231
20232         * Control.cs: Implement Begininvoke
20233
20234 2004-08-20 13:14  jackson
20235
20236         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
20237           messages through the driver
20238
20239 2004-08-20 13:12  jackson
20240
20241         * XplatUIX11.cs: Lock before all X operations. Also added Async
20242           method functionality through XSendEvent
20243
20244 2004-08-20 13:11  jackson
20245
20246         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
20247           This will screw up on 64 bit systems)
20248
20249 2004-08-20 13:10  jackson
20250
20251         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
20252           Async messages through X/Win32
20253
20254 2004-08-19 19:39  pbartok
20255
20256         * XplatUIX11.cs:
20257           - Updated code to match new HandleData.DeviceContext type
20258
20259 2004-08-19 19:38  pbartok
20260
20261         * HandleData.cs:
20262           - Made DeviceContext a generic object to allow usage from various
20263           drivers
20264           - Added support for queueing Windows messages
20265
20266 2004-08-19 19:37  pbartok
20267
20268         * XplatUIWin32.cs:
20269           - Added generation of MouseEnter, MouseLeave and MouseHover events
20270           - Added cleanup on EndPaint
20271
20272 2004-08-19 19:17  pbartok
20273
20274         * Control.cs:
20275           - Added handling of WM_MOUSEHOVER
20276           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
20277           code
20278
20279 2004-08-19 18:55  jordi
20280
20281         * ThemeGtk.cs: fixes button order
20282
20283 2004-08-19 18:12  jordi
20284
20285         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
20286
20287 2004-08-19 17:09  pbartok
20288
20289         * Control.cs:
20290           - Added Right property
20291           - Added RightToLeft property
20292
20293 2004-08-19 16:27  jordi
20294
20295         * ThemeGtk.cs: experimental GTK theme support
20296
20297 2004-08-19 16:26  jordi
20298
20299         * ITheme.cs, Theme.cs: move themes from an interface to a class
20300
20301 2004-08-19 16:25  jordi
20302
20303         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
20304           theme enhancaments
20305
20306 2004-08-19 16:04  pbartok
20307
20308         * XplatUIX11.cs:
20309           - Added colormap basics
20310           - Added a way to re-initialize with a different display handle
20311           - Fixed setting of the window background color
20312           - Added various X11 imports related to colors and colormaps
20313
20314 2004-08-19 15:51  pbartok
20315
20316         * X11Structs.cs:
20317           - Removed packing hints (Paolo suggested this a while back)
20318           - fixed colormap type
20319           - Added default Atom types
20320           - Added Screen and color structs and enums
20321
20322 2004-08-19 15:39  pbartok
20323
20324         * ImageList.cs:
20325           - Added missing Draw() method
20326           - Added missing RecreateHandle event
20327
20328 2004-08-19 15:30  pbartok
20329
20330         * Form.cs:
20331           - Added handling of WM_CLOSE
20332
20333 2004-08-18 13:16  jordi
20334
20335         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
20336           a table
20337
20338 2004-08-18 09:56  jordi
20339
20340         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
20341
20342 2004-08-17 15:31  ravindra
20343
20344         * SWF.csproj: Updated project.
20345
20346 2004-08-17 15:25  pbartok
20347
20348         * Control.cs:
20349           - Drawing improvement; don't call UpdateBounds if we are not visible
20350             (or have been minimized)
20351
20352 2004-08-17 15:24  pbartok
20353
20354         * XplatUIWin32.cs:
20355           - Finished IsVisible
20356           - Added Win32GetWindowPlacement
20357
20358 2004-08-17 15:08  jackson
20359
20360         * Panel.cs: Initial checkin of the Panel
20361
20362 2004-08-17 14:25  pbartok
20363
20364         * Control.cs:
20365           - Fixed broken handling of default window sizes
20366
20367 2004-08-17 13:29  jackson
20368
20369         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
20370           has a large startup time.
20371
20372 2004-08-17 10:25  jackson
20373
20374         * HandleData.cs: union areas properly
20375
20376 2004-08-17 10:12  jackson
20377
20378         * HandleData.cs: union areas properly
20379
20380 2004-08-16 20:00  ravindra
20381
20382         * ToolBar.cs, ToolBarButton.cs: Added attributes.
20383
20384 2004-08-16 18:48  ravindra
20385
20386         * ToolBar.cs: Added attributes.
20387
20388 2004-08-16 17:17  ravindra
20389
20390         * SWF.csproj: Updated project.
20391
20392 2004-08-16 17:16  jackson
20393
20394         * XplatUIX11.cs: Check for more expose events before sending a
20395           WM_PAINT so they can all be grouped together. This makes dragging a
20396           window across another window redraw in a sane way.
20397
20398 2004-08-16 15:47  pbartok
20399
20400         * Control.cs:
20401           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
20402             support OnMouseEnter/Leave()
20403           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
20404             exposure handling
20405
20406 2004-08-16 15:46  pbartok
20407
20408         * XplatUIStructs.cs, XplatUIX11.cs:
20409           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
20410           OnMouseEnter/Leave()
20411
20412 2004-08-16 15:34  jackson
20413
20414         * XplatUIX11.cs: Group multiple expose events in HandleData, make
20415           sure messages get the message field set to WM_NULL if they are not
20416           handled.
20417
20418 2004-08-16 15:24  jackson
20419
20420         * HandleData.cs: HandleData is used for storing message information
20421           for window handles
20422
20423 2004-08-15 17:23  ravindra
20424
20425         * ColorDepth.cs: Added attribute.
20426
20427 2004-08-15 17:23  ravindra
20428
20429         * SWF.csproj: Updated project for ToolBar Control.
20430
20431 2004-08-15 17:20  ravindra
20432
20433         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
20434           control and also dos2unix format.
20435
20436 2004-08-15 17:13  ravindra
20437
20438         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
20439           ToolBarButtonClickEventArgs.cs,
20440           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
20441           ToolBarTextAlign.cs: First Implementation of ToolBar control.
20442
20443 2004-08-15 15:31  pbartok
20444
20445         * ButtonBase.cs:
20446           - First (mostly) working version
20447
20448 2004-08-13 16:15  pbartok
20449
20450         * Control.cs:
20451           - Fixed Anchor default
20452
20453 2004-08-13 15:43  pbartok
20454
20455         * Control.cs:
20456           - Changed GetCursorPos signature
20457
20458 2004-08-13 15:42  pbartok
20459
20460         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20461           - Changed signature for GetCursorPos
20462
20463 2004-08-13 15:25  pbartok
20464
20465         * XplatUIX11.cs:
20466           - Cleanup
20467           - Fixed resizing/exposure handling
20468
20469 2004-08-13 15:22  jordi
20470
20471         * ThemeWin32Classic.cs: removes redundant code and fixes issues
20472           with tickposition
20473
20474 2004-08-13 14:55  jordi
20475
20476         * TrackBar.cs: change from wndproc to events
20477
20478 2004-08-13 13:00  jordi
20479
20480         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20481           XplatUIX11.cs: implements PointToClient (ScreenToClient)
20482
20483 2004-08-13 12:53  pbartok
20484
20485         * XplatUIWin32.cs:
20486           - Changed GetWindowPos to also provide client area size
20487           - Fixed broken prototypes for several win32 functions
20488
20489 2004-08-13 12:53  pbartok
20490
20491         * XplatUI.cs, XplatUIDriver.cs:
20492           - Changed GetWindowPos to also provide client area size
20493
20494 2004-08-13 12:52  pbartok
20495
20496         * XplatUIX11.cs:
20497           - Added generation of WM_POSCHANGED
20498           - Changed GetWindowPos to also provide client area size
20499
20500 2004-08-13 12:52  pbartok
20501
20502         * Control.cs:
20503           - Added Dispose() and destructor
20504           - Fixed resizing and bounds calculation
20505           - Fixed Layout
20506           - Added memory savings for invisible windows
20507
20508 2004-08-13 12:46  jordi
20509
20510         * TrackBar.cs: adds timer and grap window
20511
20512 2004-08-13 10:25  jackson
20513
20514         * Timer.cs: SWF Timer
20515
20516 2004-08-12 16:59  pbartok
20517
20518         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20519           - Implemented method to get current mouse position
20520
20521 2004-08-12 14:29  jordi
20522
20523         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
20524           enhancement, fix mouse problems, highli thumb, etc
20525
20526 2004-08-12 13:31  pbartok
20527
20528         * Control.cs:
20529           - Fixed Anchoring bugs
20530
20531 2004-08-12 13:01  jackson
20532
20533         * StatusBar.cs: Don't forget things
20534
20535 2004-08-12 12:54  jackson
20536
20537         * ThemeWin32Classic.cs: Handle owner draw status bars
20538
20539 2004-08-12 12:54  jackson
20540
20541         * StatusBar.cs: Implement missing properties, events, and methods.
20542           Handle mouse clicking
20543
20544 2004-08-12 10:19  jackson
20545
20546         * StatusBarPanelClickEventArgs.cs,
20547           StatusBarPanelClickEventHandler.cs: Classes for handling status
20548           bar panel click events
20549
20550 2004-08-12 10:10  jackson
20551
20552         * Control.cs: Add missing properties
20553
20554 2004-08-12 09:46  pbartok
20555
20556         * BindingsManagerBase.cs:
20557           - Name changed to BindingManagerBase.cs
20558
20559 2004-08-12 09:25  jordi
20560
20561         * ScrollableControl.cs: calls ctrlbase instead of exeception
20562
20563 2004-08-11 16:28  pbartok
20564
20565         * InputLanguageChangingEventArgs.cs:
20566           - Never check in before compiling. Fixes the last check-in
20567
20568 2004-08-11 16:26  pbartok
20569
20570         * InputLanguageChangingEventArgs.cs:
20571           - More signature fixes
20572
20573 2004-08-11 16:20  pbartok
20574
20575         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
20576           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
20577           ImageListStreamer.cs, InputLanguage.cs,
20578           InputLanguageChangedEventArgs.cs,
20579           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
20580           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
20581           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
20582           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20583           - Signature fixes
20584
20585 2004-08-11 16:16  pbartok
20586
20587         * Application.cs:
20588           - Fixed Signature
20589           - Added .Net 1.1 method
20590
20591 2004-08-11 15:25  pbartok
20592
20593         * SWF.csproj:
20594           - Fixed BindingManagerBase.cs filename
20595
20596 2004-08-11 15:22  pbartok
20597
20598         * BindingManagerBase.cs:
20599           - Was checked in with wrong filename
20600
20601 2004-08-11 14:50  pbartok
20602
20603         * SWF.csproj:
20604           - Updated
20605
20606 2004-08-11 13:41  jordi
20607
20608         * XplatUIWin32.cs: Fixes ClientRect
20609
20610 2004-08-11 13:19  pbartok
20611
20612         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20613           XplatUIX11.cs:
20614           - We had SetWindowPos and MoveWindow to set window positions and
20615             size, removed MoveWindow. We have GetWindowPos, so it made sense to
20616             keep SetWindowPos as matching counterpart
20617           - Added some X11 sanity checking
20618
20619 2004-08-11 12:59  pbartok
20620
20621         * Control.cs:
20622           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
20623             (It seems that SetBounds is just a front for SetBoundsCore and
20624              SetBoundsCore updates the underlying window system and
20625              UpdateBounds is responsible for updating the variables associated
20626              with the Control and sending the events)
20627           - Major cleanup of Size handling; we now have two sizes, client_size
20628             and bounds. Bounds defines the window with decorations, client_size
20629             without them.
20630
20631 2004-08-11 12:55  pbartok
20632
20633         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20634           - Added method to calculate difference between decorated window and
20635             raw client area
20636
20637 2004-08-11 12:54  pbartok
20638
20639         * Label.cs:
20640           - Forcing redraw on resize
20641
20642 2004-08-11 11:43  pbartok
20643
20644         * ImageList.cs:
20645           - Removed disposing of the actual images when the list is disposed
20646
20647 2004-08-11 09:13  pbartok
20648
20649         * Control.cs:
20650           - Now properly reparents windows
20651
20652 2004-08-11 08:37  pbartok
20653
20654         * Control.cs:
20655           - Duh!
20656
20657 2004-08-11 07:47  pbartok
20658
20659         * Control.cs:
20660           - Rewrote the collection stuff. Might not be as fast now, not
20661             keeping the number of children around and accessible directly, but
20662             it's more straightforward
20663
20664 2004-08-11 07:44  pbartok
20665
20666         * AccessibleObject.cs:
20667           - Fixed to match ControlCollection rewrite
20668
20669 2004-08-11 07:43  pbartok
20670
20671         * ImageList.cs:
20672           - Added missing creation of the collection list
20673
20674 2004-08-10 20:08  jackson
20675
20676         * StatusBar.cs: Get the paint message from WndProc
20677
20678 2004-08-10 19:31  jackson
20679
20680         * ThemeWin32Classic.cs: Create Brushes as little as possible
20681
20682 2004-08-10 19:20  jackson
20683
20684         * UICues.cs: Add Flags attribute
20685
20686 2004-08-10 19:19  jackson
20687
20688         * StatusBarPanel.cs: Signature cleanup
20689
20690 2004-08-10 19:10  jackson
20691
20692         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
20693           Initial implementation of status bar item drawing
20694
20695 2004-08-10 17:27  jordi
20696
20697         * TrackBar.cs: add missing methods, properties, and restructure to
20698           hide extra ones
20699
20700 2004-08-10 16:24  jackson
20701
20702         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
20703           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
20704           attribute
20705
20706 2004-08-10 13:21  jordi
20707
20708         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
20709           enhancements and standarize on win colors defaults
20710
20711 2004-08-10 12:52  jackson
20712
20713         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
20714           ThemeWin32Classic.cs: Implement DrawItem functionality
20715
20716 2004-08-10 12:47  jordi
20717
20718         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
20719
20720 2004-08-10 12:32  jordi
20721
20722         * Control.cs: throw ontextchange event
20723
20724 2004-08-10 11:43  pbartok
20725
20726         * Control.cs:
20727           - Added more to the still unfinished Dock/Anchor layout code
20728
20729 2004-08-10 11:39  pbartok
20730
20731         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20732           - Added GetWindowPos method
20733
20734 2004-08-10 11:36  pbartok
20735
20736         * XplatUIWin32.cs:
20737           - Implemented several methods
20738
20739 2004-08-10 09:47  jackson
20740
20741         * TrackBar.cs: Allow control to handle buffering
20742
20743 2004-08-10 09:41  jackson
20744
20745         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
20746
20747 2004-08-10 09:24  jackson
20748
20749         * Label.cs, LinkLabel.cs: Let Control handle buffering.
20750
20751 2004-08-10 09:09  jackson
20752
20753         * StatusBar.cs: Let Control handle all the buffering.
20754
20755 2004-08-10 09:08  jackson
20756
20757         * Control.cs: Control will now handle the buffering code, so each
20758           control does not have to implement this.
20759
20760 2004-08-10 08:34  jackson
20761
20762         * XplatUIDriver.cs: Use default colors from the theme
20763
20764 2004-08-09 17:12  pbartok
20765
20766         * ImageList.cs:
20767           - Fixed several bugs Ravindra pointed out
20768
20769 2004-08-09 16:11  pbartok
20770
20771         * Control.cs:
20772           - Added incomplete dock layout code
20773           - Added support for mouse wheel
20774
20775 2004-08-09 16:09  pbartok
20776
20777         * XplatUIX11.cs:
20778           - Added handling for middle and right mousebutton
20779           - Added handling for mouse wheel
20780           - Added handling for key state and mouse state and position
20781           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
20782           messages
20783
20784 2004-08-09 15:40  jackson
20785
20786         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
20787           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
20788           checkin
20789
20790 2004-08-09 15:37  jackson
20791
20792         * StatusBar.cs: Initial implementation of StatusBar
20793
20794 2004-08-09 15:36  jackson
20795
20796         * ITheme.cs: Add support for drawing status bar and getting status
20797           bar item sizes
20798
20799 2004-08-09 15:35  pbartok
20800
20801         * MouseButtons.cs:
20802           - Fixed values
20803
20804 2004-08-09 15:34  jackson
20805
20806         * ThemeWin32Classic.cs: Add support for drawing status bar and get
20807           status bar item sizes
20808
20809 2004-08-09 15:21  jackson
20810
20811         * ThemeWin32Classic.cs: Use known colors for default control
20812           colours
20813
20814 2004-08-09 15:12  jackson
20815
20816         * ThemeWin32Classic.cs: Make the default font static, it is static
20817           in control so this doesn't change functionality and creating fonts
20818           is sloooooow.
20819
20820 2004-08-09 14:56  pbartok
20821
20822         * X11Structs.cs:
20823           - Added GrabMode enum
20824
20825 2004-08-09 14:55  pbartok
20826
20827         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20828           - Removed Run method, was only required for initial development
20829
20830 2004-08-09 14:51  pbartok
20831
20832         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20833           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
20834           capture
20835
20836 2004-08-09 13:48  pbartok
20837
20838         * XplatUIX11.cs:
20839           - Fixed default sizing for child windows
20840
20841 2004-08-09 12:56  pbartok
20842
20843         * XplatUIX11.cs:
20844           - Added generation of WM_DESTROY message
20845           - Added handling of window manager induced shutdown
20846
20847 2004-08-09 11:31  jackson
20848
20849         * ThemeWin32Classic.cs: New names for control properties
20850
20851 2004-08-09 11:25  jackson
20852
20853         * Control.cs: Use new color names
20854
20855 2004-08-09 11:02  jackson
20856
20857         * XplatUI.cs: Get default window properties from the theme
20858
20859 2004-08-09 11:01  jackson
20860
20861         * ITheme.cs: The theme engine now controls default window
20862           properties
20863
20864 2004-08-09 11:00  jackson
20865
20866         * ThemeWin32Classic.cs: Add default window color properties
20867
20868 2004-08-09 10:17  jackson
20869
20870         * ThemeWin32Classic.cs: Use correct default back color
20871
20872 2004-08-09 10:05  jackson
20873
20874         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
20875           the theme now.
20876
20877 2004-08-09 09:56  jackson
20878
20879         * XplatUI.cs: Remove defaults, these are handled by the theme now.
20880
20881 2004-08-09 09:54  jackson
20882
20883         * Control.cs: Get default properties from the theme.
20884
20885 2004-08-09 09:53  jackson
20886
20887         * ITheme.cs: Themes now handle default control properties
20888
20889 2004-08-09 09:53  jackson
20890
20891         * ThemeWin32Classic.cs: Themes now handle default control
20892           properties so coloring will be consistent
20893
20894 2004-08-08 16:54  jordi
20895
20896         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
20897
20898 2004-08-08 15:08  jordi
20899
20900         * XplatUIX11.cs: fixes keyboard crash
20901
20902 2004-08-08 13:47  jordi
20903
20904         * Label.cs: add cvs header info
20905
20906 2004-08-08 12:09  jackson
20907
20908         * ThemeWin32Classic.cs: Add pen_buttonface
20909
20910 2004-08-08 11:52  jordi
20911
20912         * Label.cs, LinkLabel.cs: [no log message]
20913
20914 2004-08-08 11:34  jordi
20915
20916         * ThemeWin32Classic.cs: Use Windows Standard Colours
20917
20918 2004-08-07 17:32  jordi
20919
20920         * TrackBar.cs: throw exceptions of invalid enums values
20921
20922 2004-08-07 17:31  jordi
20923
20924         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
20925           draw method name
20926
20927 2004-08-07 16:56  jackson
20928
20929         * HorizontalAlignment.cs: Initial checkin
20930
20931 2004-08-07 13:16  jordi
20932
20933         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
20934           methods
20935
20936 2004-08-07 13:05  jordi
20937
20938         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
20939           GetSysColor defines
20940
20941 2004-08-06 18:01  pbartok
20942
20943         * ThemeWin32Classic.cs:
20944           - Fixed some rounding issues with float/int
20945
20946 2004-08-06 18:00  jackson
20947
20948         * DockStyle.cs, AnchorStyles.cs:
20949
20950                   Add flags and serializable attributes.
20951
20952 2004-08-06 17:46  pbartok
20953
20954         * XplatUIX11.cs:
20955           - Implemented GetParent
20956
20957 2004-08-06 17:18  pbartok
20958
20959         * TrackBar.cs:
20960           - Fixed some rounding issues with float/int
20961
20962 2004-08-06 17:17  pbartok
20963
20964         * X11Structs.cs, XplatUIX11.cs:
20965           - Fixed Refresh and Invalidate
20966
20967 2004-08-06 15:30  pbartok
20968
20969         * Control.cs, X11Structs.cs, XplatUIX11.cs:
20970           - Fixed recursive loop when resizing
20971           - Improved/fixed redrawing on expose messages
20972
20973 2004-08-06 09:53  jordi
20974
20975         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
20976           keyboard navigation
20977
20978 2004-08-06 08:02  pbartok
20979
20980         * X11Structs.cs, XplatUIX11.cs:
20981           - Fixed reparenting
20982           - Fixed window border creation
20983
20984 2004-08-05 15:38  pbartok
20985
20986         * XplatUIX11.cs:
20987           - Attempted fix for reparenting problems
20988
20989 2004-08-04 15:14  pbartok
20990
20991         * Control.cs:
20992           - Fixed Invalidation bug (calculated wrong client area)
20993           - Added ClientSize setter
20994
20995 2004-08-04 15:13  pbartok
20996
20997         * Form.cs:
20998           - Added AutoScale properties
20999
21000 2004-08-04 15:13  pbartok
21001
21002         * SWF.csproj:
21003           - Added latest files
21004
21005 2004-08-04 14:11  pbartok
21006
21007         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21008           XplatUIX11.cs:
21009           - Added Invalidate handling
21010
21011 2004-08-03 17:09  jordi
21012
21013         * XplatUIDriver.cs: fixes spelling mistake
21014
21015 2004-07-27 09:53  jordi
21016
21017         * TrackBar.cs: fixes trackbar events, def classname, methods
21018           signature
21019
21020 2004-07-27 09:29  jordi
21021
21022         * ScrollBar.cs: fixes scrollbar events
21023
21024 2004-07-27 04:38  jordi
21025
21026         * Control.cs: changes to be able to run winforms samples
21027
21028 2004-07-26 11:42  jordi
21029
21030         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
21031           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
21032
21033 2004-07-26 05:41  jordi
21034
21035         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
21036           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
21037           implementation
21038
21039 2004-07-22 09:22  jordi
21040
21041         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
21042           check link overlapping, implement events, and fixes
21043
21044 2004-07-21 10:28  jordi
21045
21046         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
21047
21048 2004-07-21 10:19  jordi
21049
21050         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
21051           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
21052           LinkLabelLinkClickedEventArgs.cs,
21053           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
21054           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
21055           implementation
21056
21057 2004-07-19 13:09  jordi
21058
21059         * Control.cs, Label.cs: label control re-written: added missing
21060           functionlity, events, and properties
21061
21062 2004-07-19 10:49  jordi
21063
21064         * Control.cs: fixes SetBounds logic
21065
21066 2004-07-19 01:29  jordi
21067
21068         * Control.cs: Call RefreshWindow only if the window has created
21069
21070 2004-07-15 14:05  pbartok
21071
21072         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
21073           - Implemented ImageList and ImageList.ImageCollection classes
21074           - Added ColorDepth enumeration
21075           - Updated SWF VS.Net project
21076
21077 2004-07-15 11:06  jordi
21078
21079         * XplatUIStructs.cs: added MsgButons enum
21080
21081 2004-07-15 11:03  jordi
21082
21083         * Control.cs: added basic mouse handeling events
21084
21085 2004-07-15 03:38  jordi
21086
21087         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
21088           Vertical TrackBar control implementation
21089
21090 2004-07-13 09:33  jordi
21091
21092         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
21093
21094 2004-07-13 09:31  jordi
21095
21096         * Control.cs, Form.cs: commit: new properties and fixes form size
21097           problems
21098
21099 2004-07-09 14:13  miguel
21100
21101         * ProgressBar.cs: Spelling
21102
21103 2004-07-09 11:25  pbartok
21104
21105         * ProgressBar.cs:
21106           - Removed usage of Rectangle for drawing. Miguel pointed out it's
21107           faster
21108
21109 2004-07-09 11:17  miguel
21110
21111         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
21112
21113                 * ProgressBar.cs: Fixed spelling for `block'
21114
21115                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
21116                 style guidelines.
21117
21118                 Avoid using the += on rect.X, that exposed a bug in the compiler.
21119
21120 2004-07-08 23:21  pbartok
21121
21122         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
21123           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
21124           BaseCollection.cs, Binding.cs, BindingContext.cs,
21125           BindingMemberInfo.cs, BindingsCollection.cs,
21126           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
21127           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
21128           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
21129           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
21130           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
21131           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
21132           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
21133           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
21134           FrameStyle.cs, GiveFeedbackEventArgs.cs,
21135           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
21136           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
21137           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
21138           InputLanguageChangedEventArgs.cs,
21139           InputLanguageChangedEventHandler.cs,
21140           InputLanguageChangingEventArgs.cs,
21141           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
21142           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
21143           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
21144           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
21145           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
21146           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
21147           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
21148           QueryAccessibilityHelpEventArgs.cs,
21149           QueryAccessibilityHelpEventHandler.cs,
21150           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
21151           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
21152           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
21153           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
21154           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
21155           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
21156           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
21157           XplatUIX11.cs, lang.cs:
21158           - Initial check-in
21159