* ContainerControl.cs: set activeControl for parent forms up the
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-12-22  Andreia Gaita  <avidigal@novell.com>
2
3         * ContainerControl.cs: set activeControl for parent forms up the 
4         tree when the new activecontrol is a container.
5         When validating the active control, if it is a container, also
6         raise up the validation for it's active control. Fixes #80280
7         
8         * Control.cs: Add internal property flag and check to prevent
9         Focus events from getting raised when Select() is called for
10         a ContainerControl. There are still too many focus events being
11         raised at the moment though.
12         Cleaned up the code a bit.
13
14 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15
16         * Control.cs: Added all missing 2.0 events.and
17         fixed a couple of corcompare issues.
18         * TrackBar.cs: Implemented missing 2.0 bits.
19         * MonthCalendar.cs, 
20         * DateTimePicker.cs, 
21         * MdiClient.cs: Fixed some corcompare issues.
22
23 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
24
25         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
26         SplitterPanel.cs: corecompare work.
27
28 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
29
30         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
31         Clean up warnings for BackgroundImageChanged and PaddingChanged
32         events now that they are implemented in Control.cs.
33
34 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
35
36         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
37         
38         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
39         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
40         of TableLayoutPanel and supporting cast.
41
42 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
43
44         * XplatUIWin32.cs: 
45         - GrabWindow now confines the mouse pointer to the confine window.
46         - Added Win32ClipCursor and Win32GetClipCursor.
47
48         * Control.cs: 
49         - Added CaptureWithConfine to be able to capture and confine 
50         mouse pointer.
51         
52         * InternalWindowManager.cs: 
53         - Call CaptureWithConfine instead of Capture if we're an
54         MdiChild (fixes #79982).
55
56 2006-12-21  Chris Toshok  <toshok@ximian.com>
57
58         * DataGrid.cs: guard against the initial state of selection, where
59         selection_start == -1.  make sure we only select from index >= 0.
60         Fixes bug #80291.
61
62 2006-12-21  Chris Toshok  <toshok@ximian.com>
63
64         * Control.cs: we don't need to be so draconian with
65         UpdateDistances, and we thusly don't need to call it before
66         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
67
68 2006-12-21  Daniel Nauck  <dna@mono-project.de>
69
70         * ComboBox.cs,
71         TextBox.cs: Implemented AutoComplete properties.
72
73 2006-12-20  Chris Toshok  <toshok@ximian.com>
74
75         * DataGridView*.cs: some corecompare work.
76
77 2006-12-20  Jackson Harper  <jackson@ximian.com>
78
79         * XplatUIX11.cs: We need to hide the caret when deleting it,
80         otherwise you get carets left lying around everywhere.
81         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
82         prevents getting some weird half drawn caret tracers when
83         scrolling.
84         * TextControl.cs: Attempt to reduce the number of times we need to
85         recreate the caret.
86
87 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
88
89         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
90
91 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
92
93         * DateTimePicker.cs:
94         - Implemented missing 2.0 bits.
95         - Changed some default values to match MS.
96         
97 2006-12-20  Jackson Harper  <jackson@ximian.com>
98
99         * TextBoxBase.cs: When changing the font across the document we
100         can't recalculate after changing each line, since that will cahnge
101         the line count.
102         - PreferredHeight is a little different than i thought.
103         - When backspacing, move the caret before we do the actual char
104         delete, because when that delete crosses a wrap boundary the
105         positional information will change.
106
107 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
108
109         * Control.cs: Added some missing 2.0 bits: 
110         BackgroundImageLayout, BackgroundImageLayoutChanged, 
111         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
112         add IBindableComponent and IDropTarget implementation.
113         
114         * MonthCalendar.cs: 
115         - Added all missing 2.0 features:
116         BackgroundImageLayout, RightToLeftLayout, 
117         OnHandleDestroyed, RightToLeftLayoutChanged, 
118         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
119         PaddingChanged.
120         - Rewrote all the BoldDate code, it was completely broken.
121         - Fixed all the tests (the tests can now be re-enabled, the
122         problems were not with the tests, but with the control, it was
123         mostly broken).
124         
125         * DateTimePicker.cs: Changed the location where the 
126         MonthCalendar is shown.
127         
128 2006-12-19  Chris Toshok  <toshok@ximian.com>
129
130         * DataGridView.cs: add IDropTarget implementation.
131
132         * ToolStripPanel.cs: add IDropTarget implementation.
133
134 2006-12-19  Jackson Harper  <jackson@ximian.com>
135
136         * TextControl.cs: soft now means something different than what it
137         used to mean, we want to move the caret regardless of whether or
138         not this break was soft (would we really have wanted the caret
139         to not move with the break in the old context?)
140         * TreeView.cs: Make sure we factor in the vert scrollbar when
141         calculating the horizontal scrollbar's maximum.
142
143 2006-12-19  Andreia Gaita  <avidigal@novell.org>
144
145         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
146         check for keywords in alternate casing, close bug #80049.
147
148 2006-12-19  Chris Toshok  <toshok@ximian.com>
149
150         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
151         methods (which all do nothing).
152
153         * IDropTarget.cs: add the 4 missing methods.
154
155 2006-12-19  Chris Toshok  <toshok@ximian.com>
156
157         * TableLayoutRowStyleCollection.cs: corcompare work.
158         
159         * TableLayoutSettings.cs: same.
160
161         * TableLayoutStyle.cs: same.
162
163         * TableLayoutColumnStyleCollection.cs: same.
164
165 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
166
167         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
168         TableLayoutPanel I've had in my local tree for way too long.
169
170 2006-12-19  Miguel de Icaza  <miguel@novell.com>
171
172         * TableLayoutSettings.cs: Finish the public API (still needs all
173         the logic to update on changes). 
174
175         * TableLayoutPanelCellPosition.cs: new file.
176         
177         * TableLayoutRowStyleCollection.cs,
178         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
179         TableLayoutSettings.cs: Track the final 2.0 table api.
180
181 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
182
183         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
184         and Image List 2.0 members for ColummnHeader.
185         * ListView.cs: Add key-related 2.0 methods for
186         ColumnHeaderCollection.
187
188 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
189
190         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
191         ArgumentNullException if items argument is null. Ignore null item in
192         arrays. Removed extra tabs.
193
194 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
195
196         * MonthCalendar.cs: Fixed InvalidCastException.
197
198 2006-12-19  Jackson Harper  <jackson@ximian.com>
199
200         * TextControl.cs: Don't increment the position here.
201         - When calculating char positions only add in the line break size
202         for hard line breaks.
203
204 2006-12-19  Andreia Gaita  <avidigal@novell.org>
205
206         * SendKeys.cs: Changed some things to match ms.net behaviour
207         when parsing shifted capital letters.
208         
209         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
210         Add window handle as parameter to SendInput. X11 needs the 
211         window handle, and the handle being passed      to it in the keys 
212         queue is the active control handle (which windows needs), not 
213         the window handle.
214         
215         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
216         to support SendKeys on X.       
217         
218         * X11Keyboard: Implement helper method to lookup a linux keycode
219         given the virtual keycode. Added table of keycode-2-virtualkey
220         values to support this.
221
222 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
223
224         * ListView.cs: Add support for SelectedIndexCollection
225         and SelectedItemCollection 2.0 methods. Implement support
226         for ImageKey too.
227         * ListViewItem.cs: Add support for ListViewSubItemCollection
228         2.0 methods. Also, fix an incorrect behavior of AddRange method
229         (it shouldn't call Clear).
230         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
231
232 2006-12-19  Jackson Harper  <jackson@ximian.com>
233
234         * RichTextBox.cs: 
235         * TextBoxBase.cs: New args for FormatText
236         * TextControl.cs: Rewrote the main drawing method, this version
237         feels a little easier to understand and debug to me.  Hopefully it
238         does to others also
239         - Fix FormatText to OR in the new formating values.  Added
240         FormatSpecified param, basically this works in the same way as
241         BoundsSpecified in Control.
242         - Set the caret properties when the caret is positioned.
243         - When wrapping text make sure that we calculate the width of the
244         last character
245         - when calculating alignments we might have wrapped down to the
246         next line, so don't search for an individual tag, search for the
247         end of the line
248         - We need to invalidate the selection area when we replace the
249         selection.
250         
251 2006-12-19  Daniel Nauck  <dna@mono-project.de>
252
253         * Application.cs: add Restart () 2.0 support
254
255 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
256
257         * MenuItem.cs: Invalidate menu item rectangle after change Enable
258         property. Fixes #80268.
259         
260 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
261
262         * MenuAPI.cs: Dont trigger select event when closes top menu
263         item. Fixes #80270.
264
265 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
266
267         * MenuAPI.cs: When you click on menuitem only trigger onselect
268         event for top menu itens. Fixes #80271.
269         
270 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
271
272         * MdiWindowManager.cs: Make IconicBounds depend on
273         the bottom of MdiClient, not the top (fixes #80267)
274         
275 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
276
277         * MdiClient.cs: Added missing 2.0 attribute
278
279 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
280
281         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
282         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
283
284 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
285
286         * MenuAPI.cs: Fix click when menuitem is not popup,
287         this regression was caused by last commit (#80272).
288
289 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
290
291         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
292         fire click event or close menu. Fixes #80272.
293
294 2006-12-17  Daniel Nauck  <dna@mono-project.de>
295
296         * ListViewHitTestInfo.cs: add
297
298 2006-12-17  Daniel Nauck  <dna@mono-project.de>
299
300         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
301         * FlatButtonAppearance.cs: add
302         * DockingAttribute.cs: add
303
304 2006-12-17  Chris Toshok  <toshok@ximian.com>
305
306         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
307         and rebind our columns when it does - this way, if you make
308         changes to the DataTable (or set the Table attribute on a DataView
309         after setting it as the DataGrid's DataSource, the changes are
310         made visible.)  Fixes bug #80107.
311
312 2006-12-17  Daniel Nauck  <dna@mono-project.de>
313
314         * ListViewGroup.cs: add internal Location property for layouting.
315         * Theme.cs: add abstract ListViewGroupHeight function.
316         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
317
318 2006-12-16  Andreia Gaita  <avidigal@novell.com>
319
320         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
321         Added reset of selected index to 0 when adding first tab page.
322         Fixes #80264
323         
324         * NumericUpDown.cs: Fix NET_2_0 check
325
326 2006-12-16  Daniel Nauck  <dna@mono-project.de>
327
328         * ListViewGroup.cs: fixed DefaultValueAttribute value
329
330 2006-12-16  Daniel Nauck  <dna@mono-project.de>
331
332         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
333
334 2006-12-15  Miguel de Icaza  <miguel@novell.com>
335
336         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
337         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
338         ScrollableControl.cs: Add a handful of methods that are
339         overwritten in 2.0 
340
341 2006-12-15  Chris Toshok  <toshok@ximian.com>
342
343         * XplatUIWin32.cs: initial implementation of the Reversible
344         drawing functions.  there are some problems.  DrawReversibleFrame
345         doesn't seem to work at all for Dashed FrameStyle, and in the
346         Thick case there are drawing errors at the corners (we probably
347         need to bind Rectangle instead of doing moveto/lineto's.)
348
349 2006-12-16  Andreia Gaita  <avidigal@novell.com>
350         
351         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
352         to send blocks of key messages. Send accumulates keys to send with Flush, 
353         while SendWait sends all keys immediately.
354                 
355         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
356         XplatUIX11.cs,  XplatUIX11-new.cs:
357         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
358         to Win32 SendInput.
359         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
360         
361         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
362         testing for ms.net on this class is very tricky, as the tests run too fast 
363         to allow the hook to release, essentially freezing the keyboard and the 
364         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
365         category :p
366
367 2006-12-16  Daniel Nauck  <dna@mono-project.de>
368
369         * Padding.cs: fixed serialization compability to MS ("_var" field names),
370                         added missing attributes.
371  
372 2006-12-15  Daniel Nauck  <dna@mono-project.de>
373
374         * ListViewGroup.cs: Added missing attributes.
375         * ListViewGroupCollection.cs: Added missing attributes.
376
377 2006-12-15  Daniel Nauck  <dna@mono-project.de>
378
379         * ListViewItem.cs: fixed ListViewSubItem text property.
380
381 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
382         
383         * Control.cs: Added missing 2.0 attributes
384         
385 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
386         
387         * MdiClient.cs: Added missing 2.0 attribute.
388         * MonthCalendar.cs: Added some missing 2.0 attributes 
389         and properties.
390         
391 2006-12-15  Daniel Nauck  <dna@mono-project.de>
392
393         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
394
395 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
396
397         * MainMenu.cs: Add the new 2.0 constructor to help out people
398         using the MainMenu in VS2005.
399
400 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
401         
402         * MdiChildContext.cs: Removed it, no longer used.
403         * MdiClient.cs: Added missing 2.0 attributes.
404         
405 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
406         
407         * InternalWindowManager.cs: Fix a NullRef with previous 
408         changes for toolwindows.
409         
410 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
411
412         * Control.cs: 
413         - Added AfterTopMostControl to allow for certain controls 
414         to always stay on top when normal controls are brought to 
415         front.
416         
417         * XplatUIWin32.cs: 
418         - (DrawInversibleRectangle): Get window rectangle from Win32 
419         in stead of from control, since Win32 doesn't calculate
420         screen coords correctly from control's Location if it 
421         have docked siblings.
422         
423         * MdiWindowManager.cs:
424         - Correct the control menu popup location when clicked on
425         the maximized form icon. (fixes #80223.1)
426         - Don't show moving rectangle if mouse hasn't moved from
427         the original clicked point.
428         - Removed FormGotFocus handler (not used).
429         - Calculate the control buttons location from the main
430         window's size and not client size (fixes #79770).
431         - Form is now closed when the form icon is double-clicked
432         (fixes #79775). 
433         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
434         
435         * InternalWindowManager.cs:
436         - Moved some MDI-only methods to MdiWindowManager.
437         - Removed unused properties and methods.
438         - Unified method naming for methods handling wm messages.
439         - Moved all message handling to seperate methods for
440         each message.
441         
442         * ThemeWin32Classic.cs:
443         - DrawManagedWindowDecorations now draws the title bar 
444         with a gradient brush.
445         - Add a CPDrawButtonInternal that allows us to specify
446         light, normal and dark colors for the buttons (control 
447         buttons for MDI children were drawn with the same light
448         color as the background, therefore loosing the 3D effect).
449         
450         * SizeGrip.cs:
451         - Add a CapturedControl property that is used to 
452         determine the control to resize (defaults to parent). 
453         Needed for MdiClient, since its SizeGrip's parent is
454         MdiClient, but the control to resize is the main form.
455         
456         * MdiClient.cs:
457         - Set SizeGrip's CapturedControl to the main form in order
458         to resize the main form and not the MdiClient.
459         - Override AfterTopMostControl to leave the scrollbars 
460         always on top.
461
462 2006-12-15  Daniel Nauck  <dna@mono-project.de>
463
464         * ListView.cs: fixed ListViewItemCollection AddRange and
465                         implemented ListViewItemCollection AddRange 2.0 support.
466
467 2006-12-15  Daniel Nauck  <dna@mono-project.de>
468
469         * ListViewGroup.cs: Add.
470         * ListViewGroupCollection.cs: Add
471         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
472         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
473                                 stub for ImageKey 2.0 support.
474
475 2006-12-14  Mike Kestner  <mkestner@novell.com>
476
477         * ListView.cs: add text padding to the autocalculation for columns
478         of width -2.  Fixes #80207.
479  
480 2006-12-14  Mike Kestner  <mkestner@novell.com>
481
482         * ListView.cs: add some index guarding for partial row navigation 
483         logic.  Fixes #80250.
484
485 2006-12-14  Mike Kestner  <mkestner@novell.com>
486
487         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
488         are added or inserted to the collection.  Fixes #81099.
489
490 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
491
492         * MenuAPI.cs: Closes menu when right click out side of popup
493         it fix problem in ContextMenu and MainMenu. Fixes #80252.
494
495 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
496
497         * ListViewItem.cs: Fix dumb error.
498
499         * ListView.cs: Add Find and ContainsKey methods in 
500         ListViewItemCollection, and also return true for IsReadOnly
501         and IsFixedSize (changes for 2.0). 
502
503 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
504
505         * Control.cs: Allow Region to be set to null.
506
507 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
508
509         * MdiWindowManager.cs: Remove unused (commented out) code.
510         * Form.cs: When the MdiChild is maximized, the form needs 
511         WM_NCMOUSELEAVE, so request it.
512         * InternalWindowManager.cs: 
513         - Added tooltips to control buttons.
514         - Removed duplicated control button handling code.
515         - Removed unused (commented out) code.
516         
517 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
518
519         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
520         was used because we must set cursor without trigger ChangeCursor event
521         and without change Cursor control property. Fixes #79963.
522
523 2006-12-12  Andreia Gaita  <avidigal@novell.com>
524         
525         * Control.cs: Check if Region setter value is null, and ignore
526
527 2006-12-12  Jackson Harper  <jackson@ximian.com>
528
529         * TextControl.cs: We were almost always drawing one more line then
530         needed, since the GetLineByPixel will return the last line found
531         at that pixel. In most cases though, we were invalidating up to
532         the junction between two lines.
533         - Improve debug code.
534
535 2006-12-12  Chris Toshok  <toshok@ximian.com>
536
537         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
538         and FillReversibleRectangle.
539
540         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
541         and FillReversibleRectangle.
542
543         * XplatUIWin32.cs: add stubs which do nothing for
544         DrawReversibleFrame, DrawReversibleLine, and
545         FillReversibleRectangle.
546
547         * XplatUIOSX.cs: add stubs which raise NIE for
548         DrawReversibleFrame, DrawReversibleLine, and
549         FillReversibleRectangle.
550
551         * XplatUIX11.cs: add working implementation for
552         DrawReversibleFrame, DrawReversibleLine, and
553         FillReversibleRectangle.
554         
555         * ControlPaint.cs: implement DrawReversibleFrame,
556         DrawReversibleLine, and FillReversibleRectangle, by calling into
557         the appropriate XplatUI method.
558
559 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
560
561         * Form.cs: Make MdiClient have the focus even if it's
562         not selectable, since it should receive WM_KEY* and WM_MOUSE 
563         messages. Fixes #79907.
564         
565 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
566
567         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
568         queried after the window is created.
569         
570         * XplatUIX11.cs: Added SendParentNotify to implement 
571         WM_PARENTNOTIFY logic. Fixes #79965.
572         
573         * Control.cs: Added MakeParam.
574         
575 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
576
577         * MdiClient.cs: Resume Layout before setting window
578         states (fixes #80201).
579
580 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
581
582         * MenuAPI.cs: Deselect a menu item after performing
583         the click (fixes #80197).
584
585 2006-12-11  Jackson Harper  <jackson@ximian.com>
586
587         * TextBoxBase.cs: We need to cap this value, since Maximum -
588         ViewPortHeight can be less than zero.
589         - Only do selection with the left mouse button.
590         * TextBox.cs: Don't tell the world that we have a context menu.
591         * Control.cs: New method so that we can control whether or not the
592         context menu is visible outside MWF.
593
594 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
595
596         * ToolBarButton.cs: Fix text positon. 
597
598 2006-12-11  Miguel de Icaza  <miguel@novell.com>
599
600         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
601
602         * Control.cs (DoubleBuffered): Add implementation.
603
604         * Application.cs (OpenForms): Add.
605
606 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
607
608         * Form.cs: Use opacity instead of Opactiy to determine if we need
609         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
610
611 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
612
613         * Control.cs: Fix NRE if Control.Site was set to null.
614
615 2006-12-11  Chris Toshok  <toshok@ximian.com>
616
617         * Control.cs: ControlCollection.Remove should return if the arg is
618         null, and ControlCollection.SetChildIndex should raise a ANE.
619
620 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
621
622         * Control.cs: Verify value set for Dock property. Code formatting
623         updates.
624
625 2006-12-11  Jackson Harper  <jackson@ximian.com>
626
627         * TextControl.cs: Draw the caret and the selection when a flag is
628         set on the owner.
629         * TextBoxBase.cs: We want to draw the caret and the selection for
630         TextBox but not for TextBoxBase.
631         - If the window is resized and scrolling is no longer needed (the
632         whole doc is visible) set the scroll position to zero.
633         - The default SelectWord (the one TextBox uses) should move the
634         caret to the end of the word.
635         - SelectAll moves the caret to the end of the selection.
636         * TextBox.cs: We don't selectall on focus, we just do it when the
637         control is created.
638         
639 2006-12-11  Mike Kestner  <mkestner@novell.com>
640
641         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
642
643 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
644
645         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
646         2.0 support.
647         * ListViewItem.cs: Add Name 2.0 property.
648
649 2006-12-11  Andreia Gaita  <avidigal@novell.com>
650
651         * TabControl.cs: Set visibility on selected or default tab 
652         when tabcontrol handle is created, so that it's contents
653         actually show up (duh). Fixes #80193
654         Don't redraw the control if there is no handle created, as
655         the selected index might be completely invalid. Added some tests
656         to check for this.
657
658 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
659
660         * ToolBar.cs: Uses maximun width and height of all buttons as 
661         button rectangle when ButtonSize specified, it looks strange but
662         is what happens in Win32. Fixes #80189.
663
664 2006-12-11  Jackson Harper  <jackson@ximian.com>
665
666         * TextControl.cs: Need to track undo levels ourself, since
667         compound actions will mess them up.
668
669 2006-12-10  Andreia Gaita  <avidigal@novell.com>
670
671         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
672         SelectedIndex value is changed (even if it's not valid).
673         Reset SelectedIndex to 0 when the handle is created and if
674         the current index is invalid.
675         Fixes SelectdeIndex unit tests and #80128
676
677 2006-12-08  Chris Toshok  <toshok@ximian.com>
678
679         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
680         calls EndEdit, it needs to be called before we set current_cell to
681         its new value.  Otherwise, we end up committing the value in the
682         textbox to the new cell as well.  Fixes bug #80160.
683
684 2006-12-08  Chris Toshok  <toshok@ximian.com>
685
686         * Form.cs (set_CancelButton): if the button's DialogResult is
687         None, set it to Cancel.  Fixes bug 80180.
688
689 2006-12-08  Jackson Harper  <jackson@ximian.com>
690
691         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
692         to watch ourselves when setting the canvas size and setting the
693         scrollbar values.
694
695 2006-12-08  Chris Toshok  <toshok@ximian.com>
696
697         * DataGrid.cs: comment out the two MakeTransparent calls for the
698         time being so people using trunk (and not 1.2.2) on windows can
699         actually use the datagrid.  This deals with bug #80151.
700
701 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
702
703         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
704         Graphics.DrawImage (image, int, int, int, int) overload instead
705         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
706         the dpi difference and was blurring images it drew.
707         [Fixes bug #79960]
708
709 2006-12-08  Chris Toshok  <toshok@ximian.com>
710
711         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
712         rowcnt is 0 (such as with an empty datasource), and make sure we
713         initialize not_usedarea.Y to cells.Y, so we don't draw over the
714         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
715
716 2006-12-08  Chris Toshok  <toshok@ximian.com>
717
718         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
719         grid.
720
721 2006-12-08  Chris Toshok  <toshok@ximian.com>
722
723         [ Fixes bug #80167 ]
724         
725         * ThemeWin32Classic.cs: don't draw the image if the button's flat
726         style is FlatStyle.System.
727
728         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
729         ButtonBase.flat_style private, and switch uses of it to the public
730         property.
731         
732 2006-12-08  Chris Toshok  <toshok@ximian.com>
733
734         [ Fixes bug #80121 ]
735         
736         * ThemeWin32Classic.cs: center the caption text in the datagrid
737         when we draw it.
738
739         * DataGrid.cs: lessen the amount we add to the caption height from
740         6 to 2.  6 was making it huge.
741
742 2006-12-08  Andreia Gaita  <avidigal@novell.com>
743
744         * UpDownBase: Handle MouseWheel call directly instead of capturing
745         the inner textbox's OnMouseWheel. Fixes #80166
746
747 2006-12-08  Jackson Harper  <jackson@ximian.com>
748
749         * TextControl.cs: We need to invalidate the textbox when we empty
750         it (how had this not been discovered before?)
751
752 2006-12-08  Jackson Harper  <jackson@ximian.com>
753
754         * TextBoxBase.cs: Reworked the mouse down code so I could get it
755         to behave like MS, we now ignore the eventargs.Click and just
756         track state ourself, which we were already doing anyways.
757         - Constrain the double click handler to the double click size.
758         
759 2006-12-08  Chris Toshok  <toshok@ximian.com>
760
761         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
762         direction if that scrollbar isn't shown.  fixes bug #80158.
763
764 2006-12-08  Andreia Gaita  <avidigal@novell.com>
765
766         * NumericUpDown.cs: Update value on getter. Fixes #79950
767
768 2006-12-08  Chris Toshok  <toshok@ximian.com>
769
770         * MenuItem.cs: add back in the event cloning code.  I didn't know
771         how to do it in the face of the EventHandlerList work i'd done
772         last week.  Fixes bug #80183.
773
774 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
775
776         * Control.cs: Add an invalidate to the BackgroundImage setter.
777         [Fixes 80184]
778
779 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
780
781         * ToolStrip*: Add some small properties reported by MoMA, fix event
782         firing and default properties based off of unit tests, and add some
783         attributes based off of the class status page.
784
785 2006-12-07  Jackson Harper  <jackson@ximian.com>
786
787         * TextBoxBase.cs: Take HideSelection into account when determining
788         whether or not to show the selection.
789         * RichTextBox.cs: After inserting the RTF into the document move
790         the cursor to the beginning of the document.
791
792 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
793
794         * Control.cs: Remove static ArrayList "controls" which maintained
795         a reference to every control created.
796         * Application.cs: Create a static FormCollection to maintain a reference
797         to every form created.  Use it in places that formerly enumerated through
798         the controls one looking for forms.
799         * Form.cs: Add and remove self from above FormCollection.
800
801 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
802
803         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
804           not libgdk (though it makes me wonder why I didn't have any
805           problems)
806
807 2006-12-07  Chris Toshok  <toshok@ximian.com>
808
809         [ you had to know this was coming after that last commit...]
810         
811         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
812         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
813         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
814         XCopyArea).
815
816 2006-12-07  Chris Toshok  <toshok@ximian.com>
817
818         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
819         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
820         all the behavior we need for double buffering.
821
822         * XplatUIDriver.cs: implement the 3 double buffer methods using a
823         client side Bitmap, just like the old Control-based double buffer
824         code did.  The methods are virtual, so each XplatUI driver
825         subclass can replace the implementation to use a faster, platform
826         specific approach.
827
828         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
829         double buffer code, and clean things up a bit in the process.
830
831 2006-12-06  Chris Toshok  <toshok@ximian.com>
832
833         * Control.cs: reindent WndProc.
834
835 2006-12-06  Chris Toshok  <toshok@ximian.com>
836
837         [ I wanna be like BenM when I grow up ]
838         
839         * Hwnd.cs: create a single static Graphics object on the static
840         Bitmap we create.  use this for our text measurements.
841
842         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
843         This was causing us to allocate a backbuffer for every control,
844         even when it wasn't flagged as double buffered.  Instead use the
845         single graphics instance.  This might have implications for
846         multithreaded applications.  If we run into problems we can switch
847         to creating 1 Graphics per control, on the static Hwnd bitmap.
848
849         this change nets us a 7M savings in private dirty mappings when
850         running FormsTest.exe.
851
852 2006-12-06  Chris Toshok  <toshok@ximian.com>
853
854         * ListView.cs: the BackgroundImage override is just to set
855         attributes.  chain up to base.BackgroundImage.
856
857         * RichTextBox.cs: same.
858
859         * ToolBar.cs: same, but we need to also redraw the toolbar when it
860         changes, so instead a handler for BackgroundImageChanged.
861         
862         * Control.cs: make background_image private.
863
864 2006-12-06  Chris Toshok  <toshok@ximian.com>
865
866         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
867         sure we even need this assignment, but roll with it for now.
868
869         * Control.cs: make the cursor field private.
870
871 2006-12-06  Chris Toshok  <toshok@ximian.com>
872
873         * Form.cs: we don't need to explicitly set ImeMode to
874         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
875         behavior in the face of ImeMode.Inherit.
876
877         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
878         change the ctor's assignment to use ImeMode instead of ime_mode.
879
880         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
881         ImeModeInherit.  Only check for the parent's imemode (and return
882         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
883         This fixes the button unit test, which sets both ImeMode and
884         DefaultImeMode to ImeMode.Disable.
885
886         also make the ime_mode field private.
887
888 2006-12-06  Chris Toshok  <toshok@ximian.com>
889
890         * Control.cs: make control_style private.
891
892         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
893         setting the styles to true, then setting them to false instead of
894         reverting to their previous values.
895
896         also, call SetStyle on the scrollbars instead of using
897         control_style directly.
898
899 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
900
901         * FormCollection.cs: Implement. [2.0]
902
903 2006-12-06  Chris Toshok  <toshok@ximian.com>
904
905         * Control.cs: make tab_stop private.
906
907         * Label.cs: set TabStop, not tab_stop.  reformat some event
908         add/remove methods to make them more compact.
909
910 2006-12-06  Chris Toshok  <toshok@ximian.com>
911
912         * RadioButton.cs: fix TabStop handling.
913
914 2006-12-06  Chris Toshok  <toshok@ximian.com>
915
916         * TextBox.cs: remove the explicit assignments to has_focus.
917         Control does that.
918
919         * ButtonBase.cs: remove the assignment to has_focus.  Control will
920         manage that.
921         
922 2006-12-06  Chris Toshok  <toshok@ximian.com>
923
924         * ButtonBase.cs: remove all uses of is_enabled from this code.
925         it's always true when any of the code containing the checks is
926         executed.
927
928 2006-12-06  Chris Toshok  <toshok@ximian.com>
929
930         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
931         with different semantics (some are present in both 1.1 and 2.0
932         profiles) so that we match MS's behavior in our unit tests.
933
934 2006-12-06  Jackson Harper  <jackson@ximian.com>
935
936         * TextControl.cs: Make this operation undoable.
937         * TextBoxBase.cs: Factor the border width into the preferred
938         height.
939         - implement Modified as per the spec.
940
941 2006-12-06  Chris Toshok  <toshok@ximian.com>
942
943         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
944
945 2006-12-06  Chris Toshok  <toshok@ximian.com>
946
947         * Control.cs: make right_to_left and context_menu fields private.
948
949 2006-12-06  Chris Toshok  <toshok@ximian.com>
950
951         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
952         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
953         Control.child_controls private.  switch all uses over to
954         Control.Controls.
955
956 2006-12-06  Chris Toshok  <toshok@ximian.com>
957
958         * System.Windows.Forms/GroupBox.cs,
959         System.Windows.Forms/AccessibleObject.cs,
960         System.Windows.Forms/ErrorProvider.cs,
961         System.Windows.Forms/Control.cs,
962         System.Windows.Forms/UpDownBase.cs,
963         System.Windows.Forms/ScrollBar.cs,
964         System.Windows.Forms/DateTimePicker.cs,
965         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
966         System.Windows.Forms/ToolTip.cs,
967         System.Windows.Forms/RadioButton.cs,
968         System.Windows.Forms/LinkLabel.cs,
969         System.Windows.Forms/Splitter.cs,
970         System.Windows.Forms/TextBoxBase.cs,
971         System.Windows.Forms/ToolStripTextBox.cs,
972         System.Windows.Forms/ContainerControl.cs,
973         System.Windows.Forms/ThemeWin32Classic.cs,
974         System.Windows.Forms/SizeGrip.cs,
975         System.Windows.Forms/ToolStripDropDown.cs,
976         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
977         private.  switch all uses over to Control.Parent.
978
979 2006-12-06  Chris Toshok  <toshok@ximian.com>
980
981         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
982         Control does this before calling emitting these events.
983
984         * TabControl.cs: same.
985
986         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
987         Control.client_rect.
988
989         * ButtonBase.cs: use the ClientSize property instead of the
990         client_size field.
991
992         * ScrollableControl.cs: same.
993
994         * Control.cs: another pass at making properties private.  also,
995         move the initialization of tab_stop to the ctor.
996
997 2006-12-05  Andreia Gaita <avidigal@novell.com>
998
999         * TabControl.cs: Let the selected index be set freely if the 
1000         control handle is not yet created.
1001
1002 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1003
1004         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
1005         internal until I can rewrite DefaultLayout.
1006         * ToolStrip.cs: Fix build error and some general cleaning.
1007         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
1008         Fix build errors caused by making some of Control's fields private.
1009
1010 2006-12-05  Jackson Harper  <jackson@ximian.com>
1011
1012         * TextControl.cs: Redo Insert a little so that it use IndexOf
1013         instead of Split, this prevents it from messing up on things like
1014         \n\n\n. Also more effecient since the split array doesn't need to
1015         be created.
1016         * TextBoxBase.cs: AppendText doesnt handle multiline and non
1017         multiline text differently, this is the first of many fixes that
1018         will make multiline/non-multiline the same thing as far as the
1019         TextBoxBase is concerned.
1020         - Don't split the text and insert lines, this can lose some line
1021         endings (like is the last line a soft or hard break). Instead use
1022         the new Insert.
1023         - Fix an off by one when combining all the lines in the Text
1024         getter.
1025         - Remove separate multiline handling from the Text getter/setter.
1026
1027 2006-12-05  Chris Toshok  <toshok@ximian.com>
1028
1029         * ButtonBase.cs: a few changes:
1030
1031         - don't reinitialize internal Control fields in the ctor when they
1032         have the same values as Control sets them.
1033
1034         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
1035         this before calling those methods.
1036
1037         - we don't need to call Refresh for anything.  use Invalidate
1038         instead.
1039
1040         - OnEnabledChanged doesn't need to redraw at all - Control.cs
1041         calls Refresh in its OnEnabledChanged.
1042         
1043         - several of the events we were registered for in the ctor to
1044         redraw ourselves already include calls to Invalidate in the
1045         property setters that raise the events.  remove the extra
1046         invalidation.
1047
1048         - reformat a switch statement that was 83274658 columns wide.
1049         
1050 2006-12-05  Mike Kestner  <mkestner@novell.com>
1051
1052         * ComboBox.cs: fix a unit test regression from a TextBox
1053         SelectionLength return of -1 when there's no selection.  
1054
1055 2006-12-05  Chris Toshok  <toshok@ximian.com>
1056
1057         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
1058         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
1059         cleaning up some of the internal Control fields being used by
1060         subclasses.
1061
1062 2006-12-05  Mike Kestner  <mkestner@novell.com>
1063
1064         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
1065         listbox after AddImplicit calls since it defaults to hidden. Add a 
1066         hack to preserve requested heights across DropDownStyle changes.
1067
1068 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1069
1070         * PropertyGrid.cs: Hide FindFirstItem method from public API.
1071
1072 2006-12-05  Chris Toshok  <toshok@ximian.com>
1073
1074         * DataGridView.cs: fix compiler warnings.
1075
1076         * PrintControllerWithStatusDialog.cs: same.
1077
1078         * ToolBar.cs: same.
1079
1080         * FolderBrowserDialog.cs: same.
1081
1082         * Splitter.cs: same.
1083
1084         * DataGridViewComboBoxCell.cs: same.
1085
1086         * XplatUIWin32.cs: same.
1087
1088         * PictureBox.cs: same.
1089
1090         * Win32DnD.cs: same.
1091
1092         * PageSetupDialog.cs: same.
1093
1094         * FileDialog.cs: same.
1095
1096         * PrintDialog.cs: same.
1097
1098         * DataGridTextBoxColumn.cs: same.
1099
1100         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
1101
1102 2006-12-05  Chris Toshok  <toshok@ximian.com>
1103
1104         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
1105         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
1106         System.ComponentModel.EventHandlerList work.
1107
1108 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
1109
1110         * DrawTreeNodeEventArgs.cs: Added.
1111
1112 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1113         
1114         * InternalWindowManager.cs: Remove an unused field.
1115         
1116 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1117
1118         * InternalWindowManager.cs:
1119         - Save the point where the title bar is clicked.
1120         
1121         * MdiWindowManager.cs:
1122         - Only allow moving of the window as long as the 
1123         clicked point on the title bar does not get out of
1124         MdiClient's rectangle. Fixes #79982.
1125         
1126         * MdiClient.cs:
1127         - Added Horizontal/VerticalScrollbarVisible.
1128         - Simplified the scrollbar sizing algorithm.
1129         - Cache the difference in scrolled value in
1130         H/VBarValueChanged and move the calculation out
1131         of the for loop.
1132
1133 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1134
1135         * Control.cs: Make the Console.WriteLine in WndProc 
1136         write more info.
1137
1138 2006-12-05  Chris Toshok  <toshok@ximian.com>
1139
1140         * ToolStripManager.cs, ToolStripButton.cs,
1141         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
1142         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
1143         ToolStripSplitButton.cs, ToolStripSeparator.cs,
1144         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
1145         ToolStripProgressBar.cs, ToolStripContainer.cs,
1146         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
1147         to using System.ComponentModel.EventHandlerList.
1148
1149 2006-12-04  Chris Toshok  <toshok@ximian.com>
1150
1151         * LinkLabel.cs: fix up compiler warnings.
1152
1153         * TableLayoutSettings.cs: same.
1154
1155         * TreeView.cs: same.
1156
1157         * ToolBar.cs: same.
1158
1159         * TabControl.cs: same.
1160
1161         * RichTextBox.cs: same.
1162
1163         * ListViewItem.cs: same.
1164
1165         * PropertyGrid.cs: same.
1166
1167         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
1168
1169         * ToolTip.cs same.
1170
1171         * TextRenderer.cs: fix up compiler warnings.
1172
1173         * Label.cs: same.
1174
1175         * Form.cs: corcompare fixes.
1176
1177         * PictureBox.cs: fix up compiler warnings.
1178
1179         * ImageListStreamer.cs: same.
1180
1181         * TrackBar.cs: corcompare fix.
1182
1183         * Control.cs: fix up compiler warnings.
1184
1185         * SplitterPanel.cs: same.
1186
1187         * NumericTextBox.cs: same.
1188
1189         * ImageList.cs: same.
1190
1191         * StatusStrip.cs: same.
1192
1193         * ProgressBar.cs: corcompare fix.
1194
1195         * ToolStripButton.cs: fix up compiler warnings.
1196
1197         * ToolStripStatusLabel.cs: same.
1198
1199         * ToolStripSplitButton.cs: same.
1200
1201         * ToolStripSeparator.cs: same.
1202
1203         * ToolStripProgressBar.cs: same.
1204
1205         * ToolStripDropDownMenu.cs: same
1206
1207         * ToolStripDropDown.cs: same.
1208
1209         * ToolStripDropDownButton.cs: same.
1210
1211         * ToolStrip.cs: same.
1212
1213         * ToolStripControlHost.cs: same.
1214
1215         * ToolStripContentPanel.cs: same.
1216
1217         * ToolStripDropDown.cs: same.
1218
1219         * ToolStripContainer.cs: same.
1220
1221         * ToolStripPanel.cs: same, and add "new" where we need it to work
1222         with the new ArrangedElementCollection.
1223
1224         * ToolStripItemCollection.cs: add "new" where we need it to work
1225         with the new ArrangedElementCollection.
1226
1227 2006-12-04  Andreia Gaita <avidigal@novell.com>
1228
1229         * TabControl.cs: Fix default tab selection to after TabControl
1230         gets focus and not before. Fixes #80128
1231
1232 2006-12-04  Chris Toshok  <toshok@ximian.com>
1233
1234         * DataGridTableStyle.cs: remove the gross calling of
1235         datagrid.Refresh from here.  It's a broken idea and it doesn't
1236         work anyway.
1237
1238         * DataGrid.cs: instead, just register/unregister from the
1239         DataGridTableStyle events in CurrentTableStyle.  we play it
1240         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
1241         even though some would most likely not require it.  Fixes bug
1242         #80115 (and one portion of #80117 as a side effect).
1243
1244 2006-12-04  Chris Toshok  <toshok@ximian.com>
1245
1246         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
1247         so the textbox (if any) goes away.  Fixes bug #80117.
1248
1249 2006-12-04  Chris Toshok  <toshok@ximian.com>
1250
1251         * DataGridColumnStyle.cs: set the column's readonly property
1252         initially based on the property descriptor's IsReadOnly.  Fixes
1253         bug #80044.
1254
1255 2006-12-04  Chris Toshok  <toshok@ximian.com>
1256
1257         * ComboBox.cs: wrap the dropdown style changing work in
1258         SuspendLayout/ResumeLayout.  Fixes bug #79968.
1259
1260 2006-12-04  Jackson Harper  <jackson@ximian.com>
1261
1262         * TextBoxBase.cs: Fix off by one, since these are one-based.
1263         * TextBox.cs: Select all the text when we get focus.  The TextBox
1264         does this but the RTB does not.
1265
1266 2006-12-04  Chris Toshok  <toshok@ximian.com>
1267
1268         * DataGridTextBoxColumn.cs: remove some spew.
1269
1270         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
1271         but some part of me is saying "it shouldn't be here.."  At any
1272         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
1273         setting the value.
1274
1275 2006-12-04  Chris Toshok  <toshok@ximian.com>
1276
1277         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
1278         to reassign the propertydescriptor.
1279
1280 2006-12-04  Jackson Harper  <jackson@ximian.com>
1281
1282         * TextBoxBase.cs:
1283         * TextControl.cs: Remove some unused variables.  Maybe this will
1284         patch things up between mike and I.
1285         - don't split lines less then one char wide, if the viewport is
1286         that small text won't be visible anyways.
1287         
1288 2006-12-04  Jackson Harper  <jackson@ximian.com>
1289
1290         * TextBoxBase.cs: Default selection length is -1, need to do some
1291         more testing on windows to see when this is used for the property.
1292         - Redid the Lines [] property to that we properly remove soft line
1293         breaks
1294         - added support for preserving carriage returns
1295         -  CanUndo is not a variable like 'is undo enabled' it just returns
1296         true if there is undo operations available.
1297         - AppendText doesn't need to grab the last tag itself anymore,
1298         this happens automatically when we move the cursor.
1299         * TextControl.cs: Add CompoundActions to the undo class. This
1300         allows combining the other operations into one big option.  ie a
1301         paste will combine { delete old, insert new, move cursor }
1302         - Add InsertString undo operation
1303         - New method for deleting multiline text
1304         - Add carriage returns to lines. So we can preserve carriage
1305         returns when text is 'roundtripped'
1306
1307 2006-12-04  Chris Toshok  <toshok@ximian.com>
1308
1309         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
1310         minimum 0.  Fixes the scrollbar exception in bug #80136.
1311
1312 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1313
1314         * MdiClient.cs: 
1315         * MdiWindowManager: Removed unused fields and methods.
1316         
1317 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1318         
1319         * StatusBar.cs: Update all panels when a AutoSize=Contents
1320         panel needs updating.
1321         
1322         * StatusBarPanel.cs: Remove twidth and only use initialize.
1323         Fixes #80031.
1324                 
1325 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1326
1327         * Form.cs: When a form's MdiParent is set add it directly
1328         on top of the z-order in stead of relying on MdiClient's
1329         ActivateChild to do it. Fixes #80135.
1330         
1331         * MdiClient.cs: 
1332         - Remove original_order, mdi_child_list is already doing
1333         the same thing.
1334         - Create mdi_child_list on construction in
1335         stead of first use (avoids a few null checks).
1336
1337         * MenuItem.cs: Use an already existing list of mdi children
1338         to get the correct order of children and remove the other
1339         redundant list.
1340
1341 2006-12-04  Chris Toshok  <toshok@ximian.com>
1342
1343         * PropertyGridView.cs: cached_splitter_location is only used in
1344         !DOUBLEBUFFER code.
1345
1346         * PropertyGrid.cs: implement the ComComponentNameChanged event
1347         using Events, hoping that would fix the warning.  Looks like a
1348         compiler bug instead (#80144).
1349
1350         * PropertyManager.cs: remove unused method.
1351
1352 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
1353
1354         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
1355         include parentesis to fix expression evaluation. Fixes #79634.
1356
1357 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1358         
1359         * MenuAPI.cs:
1360         - Changes to fix behavior in Menu control, some reported in #80097
1361         and other detected during behavior refactory like a select event
1362         problems.
1363         - Remove unneded "if's" conditions.
1364         - Created an internal to flag when popup is active in control, we need 
1365         it because in .NET you can have menu active but without popup active
1366         when you active menu using popup without visible items.
1367         - Mimic win32 behavior for Select and Popup events.  
1368         - Dont open popup menu when you dont have visible subitems.
1369         - Do nothing when click on disabled menu item.
1370         - Some small changes to follow the coding style guidelines.
1371         - Unselect menu only when another control gives focus. Fixes #80097.
1372         - Remove unused code.
1373         
1374         * MenuItem.cs: internal VisibleItems method to check if menu
1375         theres visible subitems, it will be usefull to fix some 
1376         behavior in Menu control.
1377         
1378 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1379         
1380         * Timer.cs: Tag property for 2.0 profile.
1381         
1382 2006-12-01  Chris Toshok  <toshok@ximian.com>
1383
1384         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
1385         
1386         * Win32DnD.cs: comment out some unused fields.
1387
1388         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
1389         some unused properties/methods.
1390
1391         * XplatUIX11.cs: fix MousePosition so we override the base class's
1392         property instead of conflicting with it.
1393
1394         * PictureBox.cs: comment out some unused fields
1395
1396         * OSXStructs.cs: make some struct fields public.
1397
1398         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
1399         MousePosition so we override the base class's property instead of
1400         conflicting with it.
1401
1402         * X11Dnd.cs: comment out some unused fields
1403
1404         * X11DesktopColors.cs: fix some struct field visibility to quiet
1405         the compiler.
1406
1407         * X11Dnd.cs: remove some debug code.
1408
1409         * ThemeClearlooks.cs: comment out unused field.
1410
1411         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
1412
1413         * ThemeGtk.cs: comment out some unused pinvokes.
1414
1415         * Timer.cs: remove some unused fields.
1416
1417         * ThemeClearlooks.cs: comment out unused field.
1418
1419         * UpDownBase.cs: comment out unused field.
1420
1421         * DataObject.cs: comment out unused field.
1422
1423         * DataGridBoolColumn.cs: reomve unused field.
1424
1425         * DataGrid.cs: remove unused field.
1426
1427         * Cursor.cs: remove old ToBitmap code.
1428
1429         * ControlPaint.cs: remove unused method.
1430
1431         * ScrollBar.cs: remove unused fields.
1432
1433         * ComboBox.cs: remove unused field, and chain up to
1434         AccessibleObject ctor.
1435
1436         * ListBox.cs: remove unused field.
1437
1438         * ButtonBase.cs: wrap a couple fields in NET_2_0.
1439
1440         * GridEntry.cs: remove unused fields.
1441
1442         * Binding.cs: remove unused fields.
1443
1444         * AxHost.cs: remove unused method.
1445
1446         * ContainerControl.cs: remove unused field.
1447
1448         * ScrollableControl.cs: remove unused fields.
1449
1450 2006-12-01  Chris Toshok  <toshok@ximian.com>
1451
1452         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
1453         the Where/WhereString stuff.  it's easy enough to CWL
1454         Environment.StackTrace.
1455
1456         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
1457         unused private fields.
1458
1459 2006-12-01  Jackson Harper  <jackson@ximian.com>
1460
1461         * TextControl.cs: Do not update the view while inserting multiline
1462         text. If we update the view we might wrap lines, before entering
1463         the new lines, which causes the new line insertion calculations to
1464         be totally fubared.
1465         - Remove an old TODO
1466         - Make debug output a little nicer
1467         
1468 2006-12-01  Chris Toshok  <toshok@ximian.com>
1469
1470         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
1471
1472 2006-12-01  Chris Toshok  <toshok@ximian.com>
1473
1474         [ fix the majority of the CS0108 warnings we've been suppressing ]
1475         
1476         * TreeView.cs: mark BackgroundImageChanged as 'new'.
1477
1478         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
1479         to "LayoutToolBar" to quiet mcs.
1480         
1481         * TabControl.cs: mark our ControlCollection class as 'new'.
1482
1483         * TextBoxBase.cs: mark some events as 'new'.
1484
1485         * Splitter.cs: TabStop is 'new'.
1486
1487         * ControlBindingsCollection.cs: mark a few methods as new since
1488         they change the visibility from protected to public.
1489
1490         * RadioButton.cs: DoubleClick -> base class, and remove unused
1491         HaveDoubleClick.
1492
1493         * MonthCalendar.cs: ImeMode property -> base class, and mark many
1494         events as new.
1495
1496         * NumericUpDown.cs: TextChanged -> base class.
1497
1498         * CheckedListBox.cs: mark our ObjectCollection class as new to
1499         quiet mcs.
1500
1501         * FolderBrowserDialog.cs: make HelpRequest event new and have it
1502         muck with the base class.
1503
1504         * StatusBar.cs: fix some mcs warnings about Update being the same
1505         name as a base class method.
1506
1507         * RichTextBox.cs: mark some events as new, and make them do things
1508         to the base class impl.
1509
1510         * UserControl.cs: mark TextChanged as new, and have it manipulate
1511         base.TextChanged.
1512
1513         * UpDownBase.cs: mark some things new.
1514
1515         * CheckBox.cs: mark DoubleClick "new", and add some text about
1516         what we need to look at.
1517
1518         * Panel.cs: make the events "new", and manipulate the base
1519         version.  these are just here for attributes.
1520
1521         * AccessibleObject.cs: make owner private.
1522
1523         * Control.cs: deal with AccessibleObject.owner being private.
1524         cache our own copy if we need it.
1525
1526         * Button.cs: add "new" to the DoubleClickEvent.
1527
1528         * ListBox.cs: no need to track our own has_focus here.  let
1529         Control.has_focus do it for us.  Also some other work to clear up
1530         warnings about not overriding base class methods of the same name.
1531         
1532         * ComboBox.cs: clear up some warnings about not override base
1533         class methods of the same name.
1534
1535 2006-12-01  Chris Toshok  <toshok@ximian.com>
1536
1537         * Form.cs: flag a few things as "new" to quiet some of the mcs
1538         warnings.
1539
1540         * AxHost.cs: same.
1541
1542         * PrintPreviewDialog.cs: same.
1543
1544         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
1545         now DGV isn't so horrible on the class status page.  also, move
1546         all events to using System.ComponentModel.EventHandlerList.  my
1547         wrists hurt.
1548
1549 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1550
1551         * MdiWindowManager.cs:
1552         - Set form to active mdi child if shown,
1553         and update the active mdi child to the next 
1554         remaining child in the z-order if the form is hidden.
1555
1556         * Form.cs: 
1557         - Track if the form has been visible and if its 
1558         visibility is beeing changed, so that the MdiClient
1559         can properly decide the ActiveMdiChild. The MdiClient 
1560         cannot track this since the form can change visibility 
1561         before MdiClient is created.
1562
1563         * MdiClient.cs:
1564         - Don't activate anything of the parent form is changing
1565         its visibility.
1566         - Rework ActiveMdiChild to only return visible mdi 
1567         children and take into account several other corner 
1568         cases.
1569
1570 2006-12-01  Chris Toshok  <toshok@ximian.com>
1571
1572         * IBindableComponent.cs: new 2.0 interface.
1573
1574 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
1575
1576         * DataGrid.cs: Font for caption area is bold by default.
1577
1578 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
1579
1580         * Menu.cs: Tag property for 2.0.
1581         
1582 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1583
1584         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
1585         
1586 2006-12-01  Chris Toshok  <toshok@ximian.com>
1587
1588         * TreeView.cs: doh, the Begin* events should be
1589         TreeViewCancelEventHandler.
1590
1591 2006-12-01  Chris Toshok  <toshok@ximian.com>
1592
1593         * Form.cs: Form.ControlCollection already stores off the
1594         form_owner field.  don't access the base class's internal "owner"
1595         field.
1596
1597         * Control.cs: make all the fields in Control.ControlCollection
1598         private.  there's no need for any internal fields here.
1599
1600 2006-12-01  Chris Toshok  <toshok@ximian.com>
1601
1602         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
1603         OnHandleCreated.  Fixes bug #80109.
1604
1605 2006-12-01  Chris Toshok  <toshok@ximian.com>
1606
1607         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
1608         SplitContainer.cs, Control.cs, StatusStrip.cs,
1609         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
1610         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
1611         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
1612         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
1613         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
1614         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
1615         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
1616         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
1617         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
1618         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
1619
1620         do most of the work to convert our code over to use
1621         System.ComponentModel.Component.Events for
1622         adding/removing/dispatching events.
1623
1624
1625 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1626
1627         * DataGridView.cs: Fix an ArgumentNullException reported 
1628         twice today in IRC.
1629
1630 2006-11-30  Mike Kestner  <mkestner@novell.com>
1631
1632         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
1633         grabbed listbox.  Fixes #80036 and #80101.
1634
1635 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1636
1637         * Message.cs: Changed ToString() to match MS.
1638         
1639 2006-11-30  Jackson Harper  <jackson@ximian.com>
1640
1641         * TextBoxBase.cs: You can still change the selected text on a read
1642         only textbox.
1643         * TextControl.cs: Lower magic number for wrap calculations. This
1644         lets text get closer to the right (far) edge.
1645
1646 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1647
1648         * Control.cs: Tweak 2.0 layout properties.
1649         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
1650         * TextRenderer.cs: Add a new overload.
1651         * ToolStrip*: Huge amount of changes and new features.
1652
1653 2006-11-30  Mike Kestner  <mkestner@novell.com>
1654
1655         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
1656         scroll range correct.  Fixes #79994.
1657
1658 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1659
1660         * MdiWindowManager.cs: Update main form's text when
1661         a form is closed. (fixes #80038)
1662         
1663 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
1664
1665         * ToolBar.cs:
1666         - Fix an regression in ButtonSize.
1667         - Get ImeMode default value change to "Disable".
1668         - Get ShowTooltips default value change to true, default value is 
1669         "false" but after make a test in .NET we get "true" result as default.
1670         
1671 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
1672
1673         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
1674
1675 2006-11-29  Chris Toshok  <toshok@ximian.com>
1676
1677         * XplatUIWin32.cs (GetWindowTransparency): check return value of
1678         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
1679         SetWindowTransparency hasn't been called.
1680
1681 2006-11-29  Chris Toshok  <toshok@ximian.com>
1682
1683         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
1684         if it's supported.
1685         (set_AllowTransparency): reorder things a little so that the
1686         WS_EX_LAYERED style is removed properly.
1687
1688 2006-11-29  Chris Toshok  <toshok@ximian.com>
1689
1690         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
1691         
1692         * Form.cs: only call the XplatUI transparency method (get/set) if
1693         SupportsTransparency says it's supported. Otherwise fallback to
1694         doing nothing (in the set case) or returning the instance field we
1695         cache (in the get case).
1696
1697         * XplatUIStructs.cs: add TransparencySupport flag enum.
1698         
1699         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
1700         change to SupportsTransparency.
1701
1702         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
1703         TransparencySupport.None from SupportsTransparency.
1704
1705         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
1706         TransparencySupport.Set from SupportsTransparency.
1707
1708         * XplatUIWin32.cs: implement GetWindowTransparency calling
1709         GetLayeredWindowAttributes, and implement SupportsTransparency by
1710         checking whether or not both
1711         GetWindowTransparency/SetWindowTransparency are available
1712         entrypoints.  We need to do this since SetWindowTransparency is
1713         available as of win2k, but GetWindowTransparency requires winxp.
1714         yay win32 api.
1715
1716         * XplatUI.cs: Add GetWindowTransparency, and change
1717         SupportsTransparency to allow for either/both Get/Set.
1718
1719 2006-11-29  Chris Toshok  <toshok@ximian.com>
1720
1721         * DataGrid.cs: keep from going into an infinite loop redrawing a
1722         datagrid that has no datasource.  Fixes bug #80033.
1723
1724 2006-11-29  Chris Toshok  <toshok@ximian.com>
1725
1726         * MenuItem.cs: fix the NRE when we assign text (and therefore call
1727         Invalidate) before the mainmenu has been assigned to a control.
1728
1729 2006-11-29  Chris Toshok  <toshok@ximian.com>
1730
1731         * DataGrid.cs: detect when we should be double the double click
1732         row/column autosize stuff, although that codepath has yet to be
1733         written.  part of the work for bug #79891.
1734
1735 2006-11-29  Chris Toshok  <toshok@ximian.com>
1736
1737         * Binding.cs (SetControl): fix unit test.
1738
1739 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1740
1741         * PageSetupDialog.cs: Validate the margins and set them in
1742         PageSettings. 
1743         * NumericTextBox.cs: New class to mimic the behavior of the
1744         textboxes used in the printing dialogs.
1745
1746 2006-11-29  Andreia Gaita  <avidigal@novell.com>
1747         
1748         * Form.cs: Revert previous change (remove call UpdateBounds
1749         from form constructor), because it messes with the handle creation
1750         order, and that one needs lots and lots of love.
1751         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
1752         for valid printer and throw InvalidPrinterException if document
1753         is set but printer not valid), adding a MonoTODO. Once 
1754         handle creation is done properly, we can put this back in.
1755
1756 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1757
1758         * MenuItem.cs: Create a invalidate method for menu item, to be
1759         calling from set text, it make text changes to imadiate update
1760         on screen. Fixes #80013. 
1761         
1762 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1763
1764         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
1765         fixes bug #80070 and some other problem on toolbar buttons
1766         layout.
1767
1768 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1769
1770         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
1771         with dotted brush.      Fixes #79564
1772         
1773 2006-11-28  Andreia Gaita  <avidigal@novell.com>
1774
1775         * Form.cs: Removed call to UpdateBounds on Form
1776         constructor, it was causing a call to CreateHandle
1777         before it was supposed to.
1778         * PrintControllerWithStatusDialog: Applied patch
1779         by Chris Toshok to hide controller when there are
1780         no printers available.
1781         PrintDialog.cs: initialize printer settings to 
1782         null - correct DefaultValues test #5
1783         * PrintPreviewControl.cs: Move PrintController
1784         initialization to GeneratePreview
1785         * PrintPreviewDialog.cs: 
1786         - Remove Preview generation     from Document_set(). It is 
1787         called on OnPaint
1788         - Throw InvalidPrinterException on CreateHandle if
1789         a Document is set but there are no printers or 
1790         printer is not valid.
1791         * ThemeWin32Classic: don't paint PrintPreviewControl
1792         if there is nothing to paint    
1793
1794 2006-11-28  Miguel de Icaza  <miguel@novell.com>
1795
1796         * Form.cs: Add another popular method.
1797
1798         * TabPage.cs: ditto.
1799
1800 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1801
1802         * MenuItem.cs: Fixed a warning.
1803         * InternalWindowManager: Fixed a warning.
1804
1805 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1806
1807         * MenuItem.cs:
1808         - When cloning a menu also clone MdiList and clone the 
1809           window menu items properly (as the forms and menuitems
1810           are kept in an internal hashtable, these need updating 
1811           as well)
1812         - Rewrote the window menu code, menu items are added in the
1813           order the forms were added to their parent, and they are
1814           updated every time the window menu is shown (before the
1815           list was only generated once, in the current order of the
1816           forms, and would never be updated). A checkmark is shown
1817           next to the item corresponding to the active mdi child.
1818
1819 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1820
1821         * XplatUIStructs.cs: 
1822         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
1823         
1824         * XplatUIWin32.cs: 
1825         - Added TME_NONCLIENT to TMEFlags.
1826         - Handles WM_NCMOUSEMOVE in GetMessage to 
1827           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
1828
1829         * MdiWindowManager:
1830         - Now merges mdi child menu to parent menu when maximized.
1831         - Recalculate NC areas of both mdi child and mdi parent. 
1832           Fixes #79757 (4).
1833           on window state and size changes.Fixes #79844 (3).
1834         - Handle WM_NCCALCSIZE to properly calculate borders.
1835
1836         * Form.cs:
1837         - Add/remove to the mdi containers list of mdi children 
1838           in the order they are added.
1839         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
1840           to the maximized mdi child.
1841         
1842         * InternalWindowManager.cs:
1843         - Only execute a click on the control buttons on the mouse up,
1844           not on the mouse down. Show the state of the button 
1845           (was only showing Normal state, never Pressed state). The
1846           pressed button now follows the mouse (if you click the Close 
1847           button and move the mouse over the Maximize button, the 
1848           Maximize button will be shown as pressed). Since Win32 does
1849           not generate WM_NCLBUTTONUP if you release the button outside
1850           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
1851           it as a mouse up.
1852         
1853         * ThemeWin32Classic.cs:
1854         - Draw a missing border around mdi child forms. Fixes #79844 (2).
1855
1856         * MdiClient.cs:
1857         - Added a list of forms which contains the order the forms are
1858           added to the mdi parent.
1859         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
1860         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
1861         - If the active form changes set the scrollbars to the top
1862           of the Z order, otherwise the form could hide them.
1863         - Scrollbars are now sized according to ClientSize, not 
1864           to Size, and they take into account the other scrollbar
1865           to determine maximum.
1866         
1867 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
1868         
1869         * XplatUI.cs:
1870         * XplatUIDriver.cs:
1871         * XplatUIX11.cs:
1872         * XplatUIWin32.cs:
1873         * XplatUIOSX.cs:
1874         - Added RequestAdditionalWM_NCMessages for windows to 
1875           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
1876           Currently only implemented in XplatUIWin32.
1877
1878 2006-11-27  Chris Toshok  <toshok@ximian.com>
1879
1880         * Hwnd.cs: only add the hwnd to the windows hash in
1881         set_WholeWindow and set_ClientWindow if whole_window/client_window
1882         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
1883
1884 2006-11-27  Mike Kestner  <mkestner@novell.com>
1885
1886         * ComboBox.cs: remove redundant OnDropDown call.  It is called
1887         from the ComboListBox.ShowWindow code. Fixes #79969.
1888
1889 2006-11-27  Chris Toshok  <toshok@ximian.com>
1890
1891         * Hwnd.cs: remove the setters for ExposePending and
1892         NCExposePending - noone uses them.
1893
1894 2006-11-27  Jackson Harper  <jackson@ximian.com>
1895
1896         * TextControl.cs: new param for ReplaceSelection which determines
1897         whether we select the new selection, or set the cursor to the end
1898         of the new selection.
1899         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
1900         pasting, select the new text.
1901         * RichTextBox.cs: Use new param for ReplaceSelection.
1902
1903 2006-11-27  Jackson Harper  <jackson@ximian.com>
1904
1905         * TextBoxBase.cs: Set the selection to the caret after the caret
1906         is moved, otherwise they get out of sync.
1907
1908 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1909
1910         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
1911         it fixes #80015
1912
1913 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1914
1915         * ThemeWin32Classic.cs: 
1916         - Fix toolbar drop down arrow position.
1917         - Fix drop down appearance when ToolBar.Appearance is normal,
1918         it fixes #80018.
1919         
1920 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
1921
1922         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
1923         * Control.cs: Same.
1924         * UpDownBase.cs: Same.
1925         * ButtonBase.cs: Same.
1926         * ScrollBar.cs: Same.
1927         * TrackBar.cs: Same.
1928         * PictureBox.cs: Same.
1929         * UserControl.cs: Same.
1930         * Label.cs: Same.
1931         * ListControl.cs: Same.
1932         * TextBoxBase.cs: Same.
1933         * ListView.cs: Same.
1934         * RichTextBox.cs: Same.
1935         * TreeView.cs: Same.
1936
1937 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
1938
1939         * PrintDialog.cs:
1940         - Text label for where 
1941         - Text label comment was not shown
1942
1943 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
1944
1945         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
1946
1947 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1948
1949         * InternalWindowManager.cs: 
1950         - Handle WM_PARENTNOTIFY to activate the form
1951         if any child control is clicked.
1952         - The form is only sizable if not minimized.
1953
1954         * MdiWindowManager.cs:
1955         - Save the IconicBounds if the form is moved.
1956         - Rework SetWindowState, now the window bounds 
1957         are stored only if the old window state is Normal.
1958         
1959         * MdiClient.cs:
1960         - In SetWindowStates store the old window state if 
1961         the window is maximized and restore window state if
1962         the window looses focus.
1963         - Don't handle any scrollbar value changes if 
1964         initializing the scroll bars. Fixes #79771.
1965         - Reworked ArrangeIconicWindows. Current algorithm
1966         tests bounds agains all other minimized windows, if
1967         any intersections create new bounds (going left to 
1968         right, bottom to top) and then test again. When 
1969         successful the bounds are saved and never computed
1970         again. Fixes #79774.
1971
1972 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1973
1974         * InternalWindowManager.cs: Added HandleTitleBarUp.
1975
1976 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1977
1978         * NumericUpDown.cs: In .NET 1.1, user entered text is still
1979         hexadecimal in ParseUserEdit.
1980
1981         
1982 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1983
1984         * MdiWindowManager.cs: 
1985         - Handle a click on the form's icon to show the 
1986         system menu (when maximized). Fixes #79775.
1987         - Change the existing click handler for the form's
1988         icon when not maximized to show on MouseUp.
1989         Fixes #79776.
1990
1991         * Form.cs: In OnResize only layout the mdi child's
1992         parent if it actually has a parent. Might not if
1993         the window is closing.
1994
1995
1996 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1997
1998         * MdiClient.cs: Ignore active MDI client for text of parent, if
1999         child has no text set.
2000
2001 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2002
2003         * ToolBar.cs: Fixed ToString to match MS.
2004
2005 2006-11-22  Andreia Gaita  <avidigal@novell.com>
2006
2007         * NumericUpDown: 
2008         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
2009         update inner values on set. Fixes #79966.
2010         - Override OnLostFocus to update value on NET 2. Fixes #79950.
2011         - Fix hexadecimal parsing.
2012         
2013         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
2014         parent. Fixes #79957
2015
2016 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2017
2018         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
2019         the actual size has to be queried, since if height /
2020         width is negative Win32 changes it to 0. 
2021         Fixes #79999 on Windows.
2022         
2023         * XplatUIX11.cs: Set height / width to 0 if negative
2024         in SetWindowPos. Fixes #79999 on Linux.
2025         
2026 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2027
2028         * ThemeWin32Classic.cs: Fix text redenring when button is
2029         pressed.
2030
2031 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2032
2033         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
2034         and later navigate by mouse. Fixes #79528.
2035
2036 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2037
2038         * ToolBar.cs: Set default value for TabStop to false in
2039         constructor, it fixes remaining behavior of bug #79863.
2040
2041 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2042
2043         * MdiWindowManager.cs:
2044         * InternalWindowManager.cs:
2045         - Moved a few methods specific to Mdi from 
2046         InternalWindowManager to MdiWindowManager.
2047         Fixes #79996.
2048         
2049 2006-11-21  Chris Toshok  <toshok@ximian.com>
2050
2051         * XplatUIOSX.cs: stub out InvalidateNC.
2052
2053         * XplatUIWin32.cs: implement InvalidateNC using the call I found
2054         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
2055
2056         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
2057
2058         * XplatUIDriver.cs: add InvalidateNC abstract method.
2059
2060         * XplatUI.cs: add InvalidateNC.
2061
2062 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2063
2064         * ToolBar.cs: Invalidate complete button area when pressed status 
2065         was changed.
2066         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
2067         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
2068         by 1 when button is pressed.
2069
2070 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2071
2072         * ToolButton.cs: Invalidate middle of DropDown button when
2073         ToolBar theres DropDownArrows.
2074         * ThemeWin32Classic.cs: Change position of DropDown arrow and
2075         fix DropDown drawing operations.
2076
2077 2006-11-20  Chris Toshok  <toshok@ximian.com>
2078
2079         * NativeWindow.cs: fix the formatting of functions ('{' on the
2080         following line), and enable the thread exception dialog.
2081
2082         * Application.cs: remove the duplicate exception catching from
2083         here.
2084
2085 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2086
2087         * Toolbar.cs: Triggers button click event when click on icon
2088         of dropdown ToolBarButton. Fixes #79912.
2089         
2090 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2091
2092         * Theme.cs:
2093         * ThemeWin32Classic.cs:
2094         - Added a property WindowBorderFont to enable themeing
2095           of mdi child windows' Text.
2096           
2097 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2098
2099         * InternalWindowManager.cs:
2100         * Form.cs:
2101         * MdiClient.cs:
2102         * MdiWindowManager.cs: 
2103         - If mdi child is maximized, set mdi parent's
2104           text to "Parent - [Child]". Fixes #79770.
2105         - If there is any maximized mdi child windows, only the active 
2106           window (and any new windows) is maximized, the rest are normal.
2107         - On a WindowState change only save mdi child's window bounds 
2108           if the old window state was normal. Fixes #79774.
2109         - The scroll bars are now calculated on hopefully all
2110           necessary events. Fixed #79771 / #79844->6 / #79906.
2111         - MdiClient.SizeScrollBars() now takes into account docked 
2112           controls in the parent when calculating available space.
2113         - InternalWindowManager now always repaints the entire title
2114           area. Fixes #79844->1/4/5.
2115         - Added RequestNCRecalc on mdi child windowstate changes.
2116           Fixes #79772.
2117
2118 2006-11-20  Mike Kestner  <mkestner@novell.com>
2119
2120         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
2121         in the MouseUp handler of the listbox and move the return handling
2122         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
2123
2124 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2125
2126         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
2127
2128 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2129
2130         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
2131           working in 1.2.x anymore. So, updated.
2132
2133 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
2134
2135         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
2136         NumberGroupSeparator of current culture instead of assuming en-US.
2137         Fixed bug #79967.
2138
2139 2006-11-17  Mike Kestner  <mkestner@novell.com>
2140
2141         * Control.cs: Add the concept of implicit bounds setting so that
2142         dock/undock round trips preserve explicitly set size/locations.
2143         Fixes #79313.
2144
2145 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2146
2147         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
2148           can't handle those filters. (Fixes bug #79961)
2149
2150 2006-11-17  Chris Toshok  <toshok@ximian.com>
2151
2152         [ fixes the exit/crashes associated with #79835.  it's clearly
2153         suboptimal though, we need to figure out a better way to solve
2154         this. ]
2155         
2156         * PrintPreviewControl.cs: deal with the new invalid printer
2157         exceptions.
2158
2159         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
2160         and return false (so CommonDialog.ShowDialog doesn't actually show
2161         the form.)
2162
2163         * PrintDialog.cs: enable/disable the Ok button depending on
2164         whether or not the printer is valid.
2165
2166         * CommonDialog.cs (ShowDialog): only actually show the form if
2167         RunDialog returns true.
2168
2169 2006-11-17  Jackson Harper  <jackson@ximian.com>
2170
2171         * TextControl.cs: When soft splitting a line, mark it as a soft
2172         split line. Also carry over the current line break to the next
2173         line.
2174
2175 2006-11-17  Chris Toshok  <toshok@ximian.com>
2176
2177         * XplatUIX11.cs: when scrolling a window with an invalid area, we
2178         only want to shift the part of the invalid area that overlaps the
2179         area we're scrolling.  we also don't want to clear the invalid
2180         area unless the invalid area was entirely contained within the
2181         scrolling area.
2182
2183 2006-11-16  Chris Toshok  <toshok@ximian.com>
2184
2185         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
2186         also make sure to free the memory returned by XGetWindowProperty
2187         in GetText().
2188
2189         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
2190
2191 2006-11-16  Chris Toshok  <toshok@ximian.com>
2192
2193         * XplatUI.cs: add a new super secret way to get at the totally
2194         unsupported X11 backend.
2195
2196 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
2197
2198         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
2199
2200 2006-11-16  Jackson Harper  <jackson@ximian.com>
2201
2202         * TreeView.cs: Allow more explicit setting of top node position
2203         for scrollbars. Slower algo, but more accurate.
2204         - CollapseAll should maintain the current top node.
2205         * TextBoxBase.cs: When positioning the caret, use the line, pos
2206         method, since the x, y method does not grab the correct tag, and
2207         the caret height never gets set correctly. (Maybe I should just do
2208         away with the caret having its own height, and always use the
2209         carets current tag for height).
2210
2211 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
2212
2213         [Fixes 79778, 79923]
2214
2215         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
2216         Parent to the FosterParent instead.
2217
2218 2006-11-16  Jackson Harper  <jackson@ximian.com>
2219
2220         * TreeView.cs: Need to recalc the topnode when we expand or
2221         collapse. The scrolling methods can't handle this on their own,
2222         since they use differences between the last scroll position, and
2223         those difference get completely messed up since we are expanding
2224         nodes.  This problem should probably be fixed in the scrolling
2225         methods, so they can figure out exactly where they are, but this
2226         will slow things down a little.
2227         * ThemeWin32Classic.cs: Special case for groupboxes with empty
2228         strings, makes nunit-gui look a lot nicer.
2229
2230 2006-11-16  Chris Toshok  <toshok@ximian.com>
2231
2232         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
2233         the broken multithreaded event handling we have in here.  File
2234         this entry under "Why we should move to the new X11 backend".
2235
2236         Any thread can make it into UpdateMessageQueue, which gets events
2237         from the X socket - some of which could belong to hwnds being
2238         managed by a different thread.  We can also have multiple threads
2239         in UpdateMessageQueue at the same time, with each one reading from
2240         the X socket.  This leads to many problems, with the following
2241         solutions:
2242
2243         We can't use hwnd.Queue.Enqueue anywhere in here and must use
2244         EnqueueLocked.
2245
2246         The MotionNotify compression we do can't work across threads
2247         (without locking the entire queue, perhaps) since we call
2248         hwnd.Queue.Peek, so we just punt and don't compress motion events
2249         unless the owning thread is the one which got the X event.
2250
2251         ConfigureNotify is another fun one, since it modifies the hwnd's
2252         bounds and then enqueues the event.  We add a lock to Hwnd which
2253         is held when setting configure_pending to true (and enqueuing the
2254         event).
2255
2256         There is a race wrt the wake socket.  we need to make sure that
2257         only 1 thread is waiting on that socket, or else a thread could
2258         sleep waiting for data that never comes.  It's difficult (but not
2259         impossible) to make happen, because it seems to require something
2260         like the following:
2261
2262             1. Thread 1 polls on wake_receive
2263         
2264             2. poll returns saying there's data to be read on
2265                wake_receive.
2266         
2267             3. Thread 2 polls on wake_receive and immediately returns
2268                saying there's data to be read.
2269
2270             4. Thread 2 reads the wakeup byte from wake_receive
2271
2272             5. Thread 1 attempts to read the wakeup byte from
2273                wake_receive.
2274
2275             6. Thread 2 exits (due to a form closing, perhaps).
2276
2277             7. Thread 1 blocks forever.
2278         
2279         Fun, eh?
2280
2281         Fixing the Expose handling isn't done yet, and the races inherent
2282         in that piece of code are responsible for the drawing mistakes you
2283         see when generating expose events in a MT app (like NPlot).  This
2284         one is the likely to be the hardest to bandaid, and it doesn't
2285         appear to cause anything but drawing problems.  The other issues
2286         caused apps to exit or hang.
2287
2288         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
2289         called from a different thread than the one that should be calling
2290         these functions.
2291
2292         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
2293
2294 2006-11-15  Chris Toshok  <toshok@ximian.com>
2295
2296         * Application.cs: null out the context's MainForm when we exit
2297         RunLoop.  Fixes a newly checked in unit test as well as the last
2298         ODE from bug #79933.
2299
2300 2006-11-15  Chris Toshok  <toshok@ximian.com>
2301
2302         * Form.cs (set_Owner): allow a null value so we can clear the
2303         form's owner.
2304         (Dispose): set all our owned_form's Owner properties to null, and
2305         clear the owned_forms collection.
2306         (WM_CLOSE): clean up this a little bit.. still not right though.
2307
2308         * ApplicationContext.cs: OnMainFormClosed should only call
2309         ExitThreadCore if the main form isn't recreating.  Fixes unit
2310         test.
2311
2312 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2313
2314         [Fixes 78346]
2315
2316         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
2317
2318 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2319
2320         [Fixes 79433]
2321
2322         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
2323         keep popup window types from stealing focus from the main form
2324         on Windows.
2325
2326         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
2327
2328         * MenuAPI.cs: Set above flag to true.
2329
2330 2006-11-15  Chris Toshok  <toshok@ximian.com>
2331
2332         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
2333         the button being released is not in wParam.
2334
2335 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2336
2337         * Form.cs: Add the released button to MouseEventArgs.Button
2338         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
2339         on Win32.
2340
2341 2006-11-15  Chris Toshok  <toshok@ximian.com>
2342
2343         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
2344         GetText().  untested because it's unused in our implementation.
2345         Control.Text always caches the text, even if
2346         ControlStyles.CacheText is not set.
2347
2348         fixes bug #79939.
2349
2350 2006-11-15  Chris Toshok  <toshok@ximian.com>
2351
2352         [ fixes #79933 ]
2353         
2354         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
2355         message.  no hiding, no disposing.
2356
2357         in the WM_CLOSE handler, hide the form if it's modal.
2358
2359 2006-11-15  Chris Toshok  <toshok@ximian.com>
2360
2361         * XplatUIX11.cs: use AddExpose instead of sending a message.
2362         fixes textbox border drawing.
2363
2364 2006-11-15  Chris Toshok  <toshok@ximian.com>
2365
2366         * PropertyGridView.cs: keep from crashing on mouse move/down when
2367         the property grid is empty.
2368
2369 2006-11-14  Jackson Harper  <jackson@ximian.com>
2370
2371         * TextControl.cs: Make PageUp and PageDown more like the MS
2372         versions.
2373         * TextBoxBase.cs: When we set the text property position the
2374         cursor at the beginning of the document.
2375
2376 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2377
2378         * Form.cs: if a mdi child's WindowState has changed
2379         before it's creation, it would display wrong control
2380         buttons.
2381         
2382 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
2383
2384         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
2385           (Fixes bug #79927)
2386
2387 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2388
2389         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
2390         the window gets to paint its borders even if the window is
2391         getting smaller.
2392         
2393         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
2394         otherwise the old control buttons would still be painted 
2395         if the window gets bigger.
2396         
2397         * PaintEventArgs.cs: add an internal method so that the clip 
2398         rectangle can be changed.
2399         
2400 2006-11-13  Chris Toshok  <toshok@ximian.com>
2401
2402         [ fixes bug #79745 ]
2403         
2404         * NotifyIcon.cs: lots of cleanup.
2405
2406         * X11Structs.cs: add an enum for XEMBED messages.
2407
2408         * XplatUIX11.cs: reindent one of the giant switch statements, it
2409         was taking up an additional tab stop, and this file is already way
2410         too wide for my laptop's screen.
2411
2412         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
2413         we get it, resize the hwnd to the WMNormalHints max_width/height.
2414
2415 2006-11-13  Jackson Harper  <jackson@ximian.com>
2416
2417         * TextBoxBase.cs: Compute the value changes for the mouse wheel
2418         teh simple way.
2419
2420 2006-11-13  Chris Toshok  <toshok@ximian.com>
2421
2422         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
2423         #79898.  force a reference to the Region to stick around so the
2424         unmanaged object isn't collected (rendering our handle in the MSG
2425         stale).
2426
2427 2006-11-13  Chris Toshok  <toshok@ximian.com>
2428
2429         * XplatUIX11.cs: fix #79917 for window managers which support
2430
2431         using XStoreName on the raw utf8, and we need to convert to
2432         COMPOUND_TEXT if it's non-latin1.
2433
2434 2006-11-13  Chris Toshok  <toshok@ximian.com>
2435
2436         * Form.cs (set_DialogResult): we need to set closing to false if
2437         we're setting our result to None.  fixes bug #79908.
2438
2439 2006-11-13  Jackson Harper  <jackson@ximian.com>
2440
2441         * TextControl.cs: When formatting text, compute the adjusted tag
2442         lengths correctly, using FindTag for the end tag instead of trying
2443         to figure it out outselves.
2444         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
2445         the item, ItemHeight doesn't work, because trees with large
2446         imagelists use those for their height
2447         * TreeView.cs: ActualItemHeight factors in the image height
2448         - compute left edge of checkboxes correctly
2449         - when expanding/collapsing move the bottom down one pixel, so we
2450         aren't moving part of the node
2451
2452 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2453
2454         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
2455         stack in PaintEventStart so that it won't get disposed by the gc
2456         before reaching PaintEventEnd.
2457
2458 2006-11-13  Jackson Harper  <jackson@ximian.com>
2459
2460         * TextBoxBase.cs: Don't select the word if we are on a line with
2461         no text.
2462         - We don't need to position the caret on mouse up, since the mouse
2463         move handler should be doing this
2464         - When double clicking a blank line, the caret is advanced to the
2465         next line.
2466
2467 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
2468
2469         * TreeNodeCollection.cs: Avoid duplicating indexer code.
2470
2471 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
2472
2473         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
2474         Fixes part of bug #79910.
2475
2476 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
2477
2478         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
2479           (bug #79903). Some minor string updates to match ms.
2480
2481 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2482
2483         * FileDialog.cs: Don't add an extension if the filename
2484           already ends with that extension.
2485
2486 2006-11-10  Jackson Harper  <jackson@ximian.com>
2487
2488         * TreeView.cs: Use the currently highlighted node for the
2489         BeforeSelect event.
2490         * TextBoxBase.cs: There is no need to expand selection on
2491         MouseMove.
2492         - CanUndo means 'is there any undo operations', not 'is undo
2493         allowed on this textcontrol. Fixed ClearUndo unit test.
2494
2495 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
2496
2497         * Button.cs: only perform click when button is Selectable (so as 
2498         not to activate default buttons when they're disabled)
2499         
2500         * Control.cs: Rewrite of the SelectNextControl and related 
2501         methods. HandleClick now selects next control if the current one
2502         is being disabled.
2503         
2504         * Form.cs: OnActivated selects next active control only if Load 
2505         has already occurred. If Load hasn't run, there's no point in 
2506         selecting here, Load might change the state of controls.
2507         
2508         * FocusTest.cs: Tests marked as working again for these fixes
2509
2510 2006-11-10  Chris Toshok  <toshok@ximian.com>
2511
2512         * XplatUIX11.cs: a couple of fixes.
2513
2514         - use XInternAtoms with almost all the atoms we need to register,
2515         instead of many, many calls to XInternAtom.  should help a bit on
2516         startup time, at the expense of making the code look a little
2517         worse.
2518
2519         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
2520         isn't reparented (which seems to be a clue that we're running fon
2521         compiz) and they have an Owner form.  This fixes the tool windows
2522         in paint.net when running under compiz.
2523
2524         - when setting the opacity of a window, support both the case
2525         where the window has been reparented and also when it hasn't been.
2526         Since compiz/beryl doesn't seem to reparent windows, and these are
2527         the only window managers which support translucency, I'm not sure
2528         why we need the hwnd.reparented case at all.. but leave it in.
2529         now we get translucent windows in paint.net under compiz/beryl.
2530
2531 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2532
2533         * FileDialog.cs: Always return the value for FilterIndex that
2534           was set. Internally convert it to values that make sense.
2535
2536 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2537         
2538         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
2539
2540 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2541
2542         * Toolbar.cs: Change default value of DropDownArrows to true, the 
2543         signature still using false to make it compatible with MS but the 
2544         initial value is true. Fixes #79855.
2545
2546 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2547
2548         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
2549           only available on Linux.
2550
2551 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
2552
2553         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
2554         reduce number of calls to redraw method during toolbar creation.
2555
2556 2006-11-09  Mike Kestner  <mkestner@novell.com>
2557
2558         * ListView.cs : raise SelectedIndexChanged when an item is selected
2559         programmatically via the Item.Selected property.  Gert's nice 
2560         ListViewSelectedIndexChanged test fixture now runs clean.
2561
2562 2006-11-09  Mike Kestner  <mkestner@novell.com>
2563
2564         * ListView.cs : raise SelectedIndexChanged when a selected item is
2565         removed from the item collection using Remove or RemoveAt.
2566
2567 2006-11-09  Mike Kestner  <mkestner@novell.com>
2568
2569         * ListView.cs : raise SelectedIndexChanged once per selected item
2570         for compat with MS.  Fixes #79849+.
2571
2572 2006-11-09  Chris Toshok  <toshok@ximian.com>
2573
2574         * TabControl.cs: initialize row_count to 0, and set it to 1 when
2575         we need to (if we have any tab pages).  Fixes unit test.
2576
2577 2006-11-09  Chris Toshok  <toshok@ximian.com>
2578
2579         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
2580         width is 0, not 3.  Fixes a unit test.
2581
2582 2006-11-09  Mike Kestner  <mkestner@novell.com>
2583
2584         * ListView.cs : use Implicit scrollbars so that focus isn't 
2585         stolen from the listview when they are clicked. Fixes #79850.
2586
2587 2006-11-09  Chris Toshok  <toshok@ximian.com>
2588
2589         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
2590         have a root item.  Fixes #79879.
2591
2592 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
2593
2594         * FileDialog.cs:
2595           - Fix ToString ()
2596           - An ArgumentException is now thrown if a wrong filter
2597             is applied (matches ms). The previous filter doesn't change
2598             anymore if an exception is thrown.
2599           - Changing the FileName property also affects FileNames
2600         * ColorDialog.cs: The length of the CustomColors array is always
2601           16. It doesn't matter if we use a smaller array or null to update
2602           or change the custom colors property.
2603         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
2604           for RootFolder if we get a undefined value.
2605
2606 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2607
2608         * StatusBarPanel.cs: 
2609         - Width is set to MinWidth if Width is smaller than
2610         MinWidth. Fixes #79842.
2611         - MinWidth now always overrides Width (MSDN says MinWidth
2612         is set to Width when AutoSize = None, but they do not 
2613         behave like that).
2614         - Style has now the the correct default value.
2615         
2616 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2617  
2618         * TrackBar.cs: 
2619         - The control is completely invalidated on 
2620         Got/LostFocus to draw the focus rectangle correctly.
2621         - When AutoSize then height is always 45 (width for 
2622         vertical controls).
2623         
2624         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
2625         on the mouse when moved and it doesn't move when grabbed
2626         until the mouse moves as well. Also fixed some wrong 
2627         calculations when clicking on the thumb (control thought
2628         click was outside of thumb and didn't grab it).
2629         Fixes some of the issues in #79718.
2630
2631 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
2632
2633         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
2634
2635 2006-11-08  Chris Toshok  <toshok@ximian.com>
2636
2637         * PropertyGridView.cs: only call ToggleValue if the item is not
2638         readonly.
2639
2640 2006-11-08  Jackson Harper  <jackson@ximian.com>
2641
2642         * TextBoxBase.cs: The RichTextBox and textbox have very different
2643         word selection methods.  Implement the textbox's simple word
2644         selection here, and let the RichTextBox override and provide it's
2645         own.
2646         - Don't do extra selection on mouseup
2647         * RichTextBox.cs: Use the documents word selection algorithm, I
2648         think ideally, this function will be pulled into the
2649         RichTextBox.cs code someday.
2650
2651 2006-11-08  Chris Toshok  <toshok@ximian.com>
2652
2653         * RootGridEntry.cs: new class to represent GridItemType.Root.
2654
2655         * CategoryGridEntry.cs: reformat, and add boilerplate.
2656         
2657         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
2658         returns the UI parent anyway, and we need special handling to
2659         implement the GetTarget method in the face of it.  Also, implement
2660         Select().
2661
2662         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
2663         a root grid item, and use that instead of PropertyGrid.grid_items.
2664         Also, make use of TypeConverters (and add limitted support for
2665         ICustomTypeDescriptors) when initially populating the grid.
2666         Arrays now show up more or less properly.
2667
2668 2006-11-08  Chris Toshok  <toshok@ximian.com>
2669
2670         * Application.cs: set the modal dialog to non modal after we close
2671         it.  Fixes bug #79866.
2672
2673 2006-11-08  Jackson Harper  <jackson@ximian.com>
2674
2675         * TextControl.cs: When combining lines carry over the line end
2676         style from the end line.
2677         - Invalidate the selected area when setting it, if it is visible.
2678         * TextBoxBase.cs: Only rich text box can do full line selects.
2679         - Make sure to set the cursor position when there is a click,
2680         otherwise two clicks in separate areas could cause a large chunk
2681         to be selected.
2682
2683 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2684
2685         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
2686         Fixes #79863.
2687
2688 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2689
2690         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
2691         time. Remove tooltips when ToolButton click events.  Fixes #79856.
2692
2693 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2694
2695         * MenuAPI.cs: Ignore right click for menu actions and fixes
2696         menu border when clicked.  Fixes #79846.
2697
2698 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2699
2700         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
2701         MouseState after create wParam for message, this fixes mouse button 
2702         equal none in mouse up events.
2703         
2704 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
2705
2706         * Control.cs : Focus() now calls Select to set the Container's
2707         Active Control and to give it focus. To avoid infinite recursion
2708         (because ActiveControl also calls Focus at one point), a check 
2709         is made in Focus with the help of a new internal variable
2710         is_focusing.
2711
2712 2006-11-07  Mike Kestner  <mkestner@novell.com>
2713
2714         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
2715         if there's a selection.  Fixes #79849.
2716
2717 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
2718
2719         * PropertyGrid.cs: Avoid fixed height of help description label.
2720         Fixes part of bug #79829.
2721
2722 2006-11-07  Chris Toshok  <toshok@ximian.com>
2723
2724         * XplatUIX11.cs: fix #79790 again, by using the
2725         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
2726
2727 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2728
2729         * ToolBar.cs: Fix left click checking.
2730
2731 2006-11-07  Chris Toshok  <toshok@ximian.com>
2732
2733         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
2734
2735 2006-11-07  Chris Toshok  <toshok@ximian.com>
2736
2737         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
2738         PropertyManager unit tests.
2739
2740         * PropertyManager.cs: make property_name internal.
2741
2742 2006-11-07  Chris Toshok  <toshok@ximian.com>
2743
2744         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
2745         pass a unit test.  Also, don't set image_index to anything in
2746         response to setting the ImageList property.
2747
2748 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2749
2750         * ToolBar.cs: Ignore click events when mouse button is not a
2751         left button, only accepts other button for dropdown menus.  
2752         Fixes #79854.
2753
2754 2006-11-07  Chris Toshok  <toshok@ximian.com>
2755
2756         * DataGrid.cs: make the back and parent row buttons a little less
2757         ugly.
2758
2759 2006-11-07  Jackson Harper  <jackson@ximian.com>
2760
2761         * TextBoxBase.cs: When converting to Text don't put line breaks in
2762         for soft line breaks.
2763         * TextControl.cs: There is an initial "fake" line in the document,
2764         this is now a soft break line, so that an extra line feed doesn't
2765         get added to the end of documents.
2766
2767 2006-11-07  Chris Toshok  <toshok@ximian.com>
2768
2769         [ fix bug #79778 ]
2770         
2771         * CurrencyManager.cs: if the list is readonly, don't bother
2772         checking if IBindingList.AllowNew is true.
2773
2774         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
2775         for non-DataRowView datasources..  or rather, make it not crash.
2776         (DataGridPaintRelationRow): make sure we limit the row painting to
2777         the area not covered by the row header, and make our cell width at
2778         least large enough to cover the relation area.  This allows grids
2779         that have relations but no rows to render correctly.
2780         (DataGridPaintRowContents): same type of changes here.
2781         (SetDataSource): move back to always calling
2782         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
2783         navigating back through relations.
2784         (HitTest): handle the case where we have no cells but have
2785         relations.  Right now we generate a hit in cell 0 of whatever the
2786         row is, not sure if this is strictly correct, but it works for our
2787         purposes.
2788         
2789         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
2790         bother doing anything.
2791
2792 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
2793
2794         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
2795         early version of StatusStrip.  Not responsible for eaten
2796         application or firstborn children.
2797
2798 2006-11-06  Chris Toshok  <toshok@ximian.com>
2799
2800         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
2801         call GetTabRect with a -1 index.  Fixes #79847.
2802
2803 2006-11-06  Jackson Harper  <jackson@ximian.com>
2804
2805         * TreeNodeCollection.cs: Update scrollbars after clearing.
2806
2807 2006-11-06  Chris Toshok  <toshok@ximian.com>
2808
2809         * NumericUpDown.cs: fix the ToString method for some unit test
2810         love.
2811
2812 2006-11-06  Chris Toshok  <toshok@ximian.com>
2813
2814         * PropertyGrid.cs:
2815         - set the initial SelectedGridItem if we can.
2816
2817         - Exclude non-mergable properties only if we're merging > 1
2818         object.  Merging 1 object isn't really merging, obviously.
2819
2820         - Handle PropertySort.NoSort just like Alphabetical, which is
2821         wrong of course, but at least gets things on the screen.
2822         
2823         * PropertyGridView.cs:
2824         - Add method "FindFirstItem" which finds the first property grid
2825         item, so we can select it by default.
2826
2827         - make use of GridEntry.CanResetValue.
2828
2829         - Don't call RedrawBelowItemOnExpansion here anymore, the
2830         individual GridEntry's will do that.
2831
2832         - Remove the ITypeDescriptorContextImpl internal class.
2833         
2834         * GridEntry.cs:
2835         - this class needs to implement ITypeDescriptorContext, as it's
2836         what MS's PropertyDescriptorGridEntry does, which means we can
2837         remove the ITypeDescriptorContextImpl internal class from
2838         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
2839
2840         - keep a reference to our PropertyGridView, and move the call to
2841         RedrawBelowItemOnExpansion here from PGV.  This means
2842         programmaticly setting Expanded actually does something visible.
2843
2844         - add a CanResetValue() function which takes into account our
2845         possibly multiple "selected_objects" in the merged case.  Shifting
2846         PropertyGridView to use this method fixes another unreported
2847         crasher found running the test for #79829.
2848
2849         - when Top or Bounds is updated, make sure the PropertyGridTextBox
2850         is updated to reflect this.
2851
2852         * CategoryGridEntry.cs: the ctor takes the PGV now.
2853         
2854 2006-11-06  Jackson Harper  <jackson@ximian.com>
2855
2856         * TextControl.cs: These are 1 based.
2857         * TextBoxBase.cs: When setting the selected text, don't change the
2858         selected text tags, this is done by ReplaceText, just position the
2859         cursor at the end of the new text.
2860
2861 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2862
2863         * ListView.cs: Allow label edit only when, when LabelEdit is
2864           set to true.
2865
2866 2006-11-06  Jackson Harper  <jackson@ximian.com>
2867
2868         * TextControl.cs: If a suitable wrapping position isn't found,
2869         just wrap right in the middle of a word.
2870
2871 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2872
2873         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
2874           bug #79820.
2875
2876 2006-11-06  Jackson Harper  <jackson@ximian.com>
2877
2878         * TreeView.cs: Can't use the VisibleCount property when setting
2879         scrollbar heights, because this doesn't take into account whether
2880         or not the horz scrollbar just came visible.
2881
2882 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
2883
2884         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
2885         activated.  Fixes #79369, #79832.
2886
2887 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
2888
2889         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
2890           had to remove support for links that point to a directory. FileInfo
2891           returns no usefull information (means, the directory they point to)
2892           for such links. Replaced some empty string ("") with String.Empty.
2893
2894 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2895
2896         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
2897         NullReferenceException when attempting to remove node that is not in
2898         collection. Throw NullReferenceException when null is passed to 
2899         Remove. Allow first element of the collection to be removed. Fixes
2900         bug #79831.  In GetEnumerator ().Current return null if positioned 
2901         before the first element of the collection. In GetEnumerator ().Reset,
2902         position before first element of the collection.
2903
2904 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2905
2906         * PropertyGrid.cs: To match MS, remove default title and description
2907         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
2908         buttons.
2909
2910 2006-11-04  Chris Toshok  <toshok@ximian.com>
2911
2912         * Theme.cs: add a Clamp method, just for kicks.
2913
2914         * ThemeWin32Classic.cs: clamp all color components to [0..255].
2915
2916 2006-11-04  Chris Toshok  <toshok@ximian.com>
2917
2918         * Form.cs: if the form isn't visible, Close() does nothing.
2919
2920 2006-11-03  Chris Toshok  <toshok@ximian.com>
2921
2922         * Form.cs (Close): if the form is modal, don't Dispose of it, only
2923         Hide it.
2924         (WndProc): don't Dispose after handling the WM_CLOSE message.
2925
2926         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
2927         them as such, instead of using casts from Control to Form.  Also,
2928         don't Dispose of the modal dialog when we fall out of the loop -
2929         Close() it instead.
2930
2931         fixes bug #79813.
2932
2933 2006-11-03  Chris Toshok  <toshok@ximian.com>
2934
2935         * Control.cs (Dispose): only go through the dispose thing if we're
2936         @disposing, and we haven't already been disposed.  Fixes bug
2937         #79814.
2938
2939         * Form.cs: no reason to call "base.Dispose()" here instead of
2940         "Dispose()".
2941
2942 2006-11-03  Mike Kestner  <mkestner@novell.com>
2943
2944         * ComboBox.cs : use ToString instead of casts in AddItem for
2945         sorting functionality.  Fixes #79812.
2946
2947 2006-11-03  Chris Toshok  <toshok@ximian.com>
2948
2949         * Application.cs: pave the way for actually using the thread
2950         exception dialog.  it's ifdefed out at the moment.
2951
2952 2006-11-03  Chris Toshok  <toshok@ximian.com>
2953
2954         * ThreadExceptionDialog.cs: until we get a better layout, actually
2955         hide the details textbox and label when we shouldn't see them.
2956
2957 2006-11-03  Jackson Harper  <jackson@ximian.com>
2958
2959         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
2960         multiline textboxes anymore.  This method also determines the
2961         width/height of a textboxes canvas area.
2962         - Sorta a revert of the last patch.  For multiline just position
2963         the controls, then bail.  This way the scrollbar width won't be
2964         altered.
2965
2966 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
2967
2968         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
2969         it dont need.  Fixes #79537.
2970
2971 2006-11-02  Jackson Harper  <jackson@ximian.com>
2972
2973         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
2974         send the status after firing the DndOver event.
2975
2976 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2977
2978         * TrackBar.cs: Now orientation only switches height / width if
2979         the control's handle is created (Win32 does it like this). Also 
2980         fixed a typo in ToString() for a test to pass, changed the 
2981         exception thrown in set_LargeChange and set_SmallChange to 
2982         match Win32 behaviour, and added TrackBar tests to the unit 
2983         tests.
2984
2985 2006-11-02  Chris Toshok  <toshok@ximian.com>
2986
2987         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
2988         not _NET_WM_STATE_NO_TASKBAR.
2989
2990 2006-11-02  Jackson Harper  <jackson@ximian.com>
2991
2992         * TextControl.cs: Increment count by one, since in the update view
2993         count - 1 is used.
2994
2995 2006-11-02  Jackson Harper  <jackson@ximian.com>
2996
2997         * TextBoxBase.cs: Use client rectangle not bounds for checking if
2998         the mouse is in the client rectangle (duh).
2999
3000 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3001         
3002         * TrackBar.cs: Fixed trackbar jumping around when clicking
3003         on it - the trackbar was not detecting correctly at which
3004         side of the thumb the click was done. (fixes #79718)
3005
3006 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
3007
3008         * ListBox.cs: scroll visible area when change SelectedIndex to
3009         a non visible area.  Fixes #79481.
3010
3011 2006-11-01  Jackson Harper  <jackson@ximian.com>
3012
3013         * TextControl.cs: When replacing the selection move the selection
3014         start/end/anchor to the end of the new text.
3015
3016 2006-11-01  Jackson Harper  <jackson@ximian.com>
3017
3018         * XplatUIWin32.cs: When setting the parent change the controls
3019         visibility to it's visibility flag, not to it's old parents
3020         visibility (.Visible walks the parent chain).
3021
3022 2006-11-01  Chris Toshok  <toshok@ximian.com>
3023
3024         * XplatUIX11.cs: revert the #79790 fix, as the simple.
3025         XSetTransientForHint fix breaks paint .net's tool windows.  more
3026         work needed for that one.
3027
3028 2006-11-01  Chris Toshok  <toshok@ximian.com>
3029
3030         * ScrollBar.cs: throw ArgumentException instead of Exception in
3031         LargeChange/SmallChange setters.  fixes unit tests.
3032
3033 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3034
3035         * ContainerControl.cs: reverted rev.67183 (which was itself
3036         a reversion of rev.66853... eh).
3037         
3038         * Control.cs: Fixes Reflector hang by changing Focus() call
3039         to what it was before rev.66643 (calling Select() here sets 
3040         ActiveControl, which in some situations calls back Focus and 
3041         eventually does a stack overflow). Temp fix.    
3042         Changes to GetNextControl() to not look for children to select when
3043         parent cannot be selectable (so it looks for siblings instead)  
3044         
3045 2006-10-31  Mike Kestner  <mkestner@novell.com>
3046
3047         * CheckedListBox.cs : off by one error in returned index from
3048         ObjectCollection.Add.  Fixes #79758.
3049
3050 2006-10-31  Chris Toshok  <toshok@ximian.com>
3051
3052         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
3053         calls for the textbox/spinner, to keep from recursing to the point
3054         where we crash.  Fixes #79760.
3055
3056 2006-10-31  Chris Toshok  <toshok@ximian.com>
3057
3058         * ListControl.cs (set_SelectedValue): don't throw exceptions on
3059         null/"" value, just return.  matches ms's behavior and fixes some
3060         failing tests.
3061
3062 2006-10-31  Chris Toshok  <toshok@ximian.com>
3063
3064         * Control.cs (set_Capture): make a logic a little easier to
3065         follow.
3066
3067         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
3068         if it's being destroyed.  A necessary fix surely, but a bandaid
3069         also, to fix the stuck capture problem in bug #78413.
3070
3071 2006-10-31  Chris Toshok  <toshok@ximian.com>
3072
3073         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
3074         convention of clearing hwnd.ClientRect when we set the
3075         width/height (so it'll be recalculated by Hwnd).
3076
3077 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3078
3079         * ContainerControl.cs: reversed Contains check from
3080         ActiveControl due to hanging problems. This fix
3081         partly regresses #79667 (button does not have
3082         initial focus), so this might be a symptom for 
3083         a larger parenting problem (set_ActiveControl
3084         is being called but the child control does
3085         not have the parent set yet?)   
3086         
3087 2006-10-31  Mike Kestner  <mkestner@novell.com>
3088
3089         * MenuAPI.cs : fix keynav when menu is click activated.
3090
3091 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
3092
3093         * ToolStrip*: Version 0.2.
3094
3095         * MenuStrip.cs: Version 0.1.
3096
3097         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
3098
3099 2006-10-30  Chris Toshok  <toshok@ximian.com>
3100
3101         [ fixes the oversized notify icon issue in bug #79745 ]
3102         
3103         * NotifyIcon.cs: scale the icon down to the size we're given by
3104         the XplatUI layer (this would be faster if we did it once instead
3105         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
3106         since it's never invoked.
3107
3108         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
3109         pixels high by default, so let's hardcode our systray icon to that
3110         size.  The SYSTEM_TRAY protocol should really have a way for
3111         client apps to query for the correct icon size.. but oh well.  A
3112         couple of patches to deal with the screwy client_window ==
3113         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
3114         instance, and also make sure we don't XSelectInput twice).
3115
3116 2006-10-30  Chris Toshok  <toshok@ximian.com>
3117
3118         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
3119         recreating forms.  Control recreation is the bane of my existence.
3120         Fix it in a way that keeps everyone happy.
3121
3122 2006-10-30  Chris Toshok  <toshok@ximian.com>
3123
3124         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
3125         just non-CHILD ones.  otherwise sometimes scrollbars end up with
3126         client_windows not being resized to the proper size (ReportBuilder
3127         shows this extremely well).
3128
3129 2006-10-30  Chris Toshok  <toshok@ximian.com>
3130
3131         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
3132         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
3133         showing up in the gnome taskbar.  Fixes bug #79790.
3134
3135 2006-10-30  Chris Toshok  <toshok@ximian.com>
3136
3137         * ApplicationContext.cs: guard against a NRE.
3138
3139         * Application.cs: null out the old MainForm for the context, so we
3140         don't try to use it again once it's disposed.  Fixes bug #79783.
3141
3142 2006-10-30  Chris Toshok  <toshok@ximian.com>
3143
3144         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
3145         BindingContext, set the data source directly, otherwise do the
3146         lazy approach - the actual ListManager will be created when we get
3147         a BindingContext. Fixes bug #79700.
3148
3149 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3150
3151         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
3152           XplatUIX11.cs: Remove old 2 parameter SetVisible.
3153
3154         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
3155
3156 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3157
3158         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
3159         of SetVisible that allows a window to be shown, but not activated.
3160         This is needed on Windows for MenuStrip, and can probably be used
3161         with MainMenu and ComboBox to fix the focus stealing issues on
3162         Windows.
3163
3164         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
3165
3166 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
3167
3168         * PictureBox.cs: Fix the output of the ToString method.
3169
3170 2006-10-29  Chris Toshok  <toshok@ximian.com>
3171
3172         * Control.cs (get_TopLevelControl): fix bug #79781.
3173
3174 2006-10-29  Chris Toshok  <toshok@ximian.com>
3175
3176         * ListControl.cs (set_DataSource): throw Exception here, not
3177         ArgumentException, to match MS behavior.
3178
3179 2006-10-29  Chris Toshok  <toshok@ximian.com>
3180
3181         * Form.cs: remove the try-catch's around calls to GetWindowState.
3182         We can just check the return value.
3183
3184         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
3185         Instead return -1.
3186
3187         * XplatUI.cs: Add note about additional return value for
3188         GetWindowState.
3189
3190 2006-10-29  Chris Toshok  <toshok@ximian.com>
3191
3192         * Control.cs (CreateHandle): when we create our handle, we also
3193         create the handles of our child controls.  Fixes one of the
3194         Control unit tests (CH11).
3195
3196 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3197
3198         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
3199
3200 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3201
3202         * ThemeClearlooks.cs: A little speedup.
3203
3204 2006-10-27  Chris Toshok  <toshok@ximian.com>
3205
3206         * Control.cs: implement Control.FromChildHandle in a way that
3207         matches the docs (and fixes the failed test.)
3208
3209 2006-10-27  Chris Toshok  <toshok@ximian.com>
3210
3211         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
3212         comments).
3213
3214         * DataGrid.cs: implement ResetForeColor such that the tests
3215         succeed.
3216         
3217 2006-10-27  Chris Toshok  <toshok@ximian.com>
3218
3219         * ToolBarButton.cs: setting text/tooltiptext to null results in it
3220         being set to "".  Fixes bug #79759.
3221
3222 2006-10-27  Jackson Harper  <jackson@ximian.com>
3223
3224         * TextControl.cs: We need to clear the entire selection area when
3225         setting the start, otherwise multiline selections are still
3226         visible.
3227
3228 2006-10-26  Chris Toshok  <toshok@ximian.com>
3229
3230         * PropertyGridView.cs: 
3231
3232         - ifdef all the code specific to the double
3233         buffer case, and provide some alternatives in the non-doublebuffer
3234         code, which makes heavy use of XplatUI.ScrollWindow to move things
3235         around without having to invalidate (and cause flicker).  There
3236         are still some drawing problems in the non-doublebuffered case, so
3237         DOUBLEBUFFER is defined by default.
3238
3239         - Fix the way dropdowns are handled.  now we explicitly watch for
3240         the events which might cause the dropdown to close, and break out
3241         of the nested event loop there.  This gets rid of all Capture
3242         code, at the expense of the Msg special casing.  Seems to work,
3243         though, and fixes bug #79743.
3244
3245 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
3246         * Control.cs: SetIsRecreating now recreates implicitly added
3247         child controls as well. Finally fixes #79629. The flag passed to 
3248         SetIsRecreating has also been removed since it wasn't used.
3249         
3250 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3251
3252         * PageSetupDialog.cs: Clean some code, fix some bits, 
3253         add some checks, and add a printer sub-dialog.
3254
3255 2006-10-26  Chris Toshok  <toshok@ximian.com>
3256
3257         * PropertyGrid.cs: make set_SelectedObject call
3258         set_SelectedObjects, and move the duplicate logic to the
3259         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
3260
3261         * PropertyGridView.cs: hide the textbox when we get a
3262         SelectedObjectsChanged event.
3263
3264         Fixes bug #79748.
3265
3266 2006-10-26  Chris Toshok  <toshok@ximian.com>
3267
3268         * PropertyGridView.cs: deal with the type converter not supporting
3269         GetStandardValues() or GetStandardValues() returning null, which
3270         is does in the default case.  Fixes #79742.
3271
3272 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3273
3274         * CheckedListBox.cs: nunit no longer crashes when selecting 
3275         Project/Edit menu option
3276         
3277 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3278
3279         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
3280         is no menu selected. fixes #79739
3281
3282 2006-10-25  Chris Toshok  <toshok@ximian.com>
3283
3284         * PropertyGridView.cs: factor out the splitter invalidation code
3285         into the SplitterPercent setter, and for kicks implement the
3286         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
3287         amount in either direction.
3288
3289 2006-10-25  Chris Toshok  <toshok@ximian.com>
3290
3291         * PropertyGridView.cs: do some cleanup of the brush used to draw
3292         text - read only fields should be grayed out.  not sure how to do
3293         this with the textbox, though.  but the textbox's should also be
3294         readonly now at least.  Also, hide/show the textbox when resizing
3295         the control.
3296         
3297         * CursorConverter.cs: use System.Reflection when getting the
3298         properties of Cursors, as TypeDescriptor.GetProperties isn't
3299         returning static properties.
3300
3301 2006-10-25  Chris Toshok  <toshok@ximian.com>
3302
3303         * PropertyGridView.cs: factor out the up/down handling, and reuse
3304         it for page up/down.  also add End/Home support.
3305
3306 2006-10-25  Chris Toshok  <toshok@ximian.com>
3307
3308         * PropertyGridView.cs:
3309
3310         - ensure the selected grid item is visible in the scrolled area,
3311         fixes bug #79572.
3312
3313         - fix Keys.Down handling when you're on the last item in the
3314         propertygrid.
3315
3316 2006-10-25  Mike Kestner  <mkestner@novell.com>
3317
3318         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
3319         clicks too.  Fixes #79725.
3320
3321 2006-10-24  Chris Toshok  <toshok@ximian.com>
3322
3323         * PropertyGrid.cs: use property.Converter instead of
3324         TypeDescriptor.GetConverter(property.PropertyType), so we catch
3325         TypeConverters declared on the property as well as on the
3326         PropertyType.  Fixes bug #79678.
3327
3328 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
3329
3330         * MimeIcon.cs, Mime.cs:
3331           Fallback to the default platform handler if no shared mime info
3332           stuff exists (fixes #79693).
3333
3334 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3335         * ContainerControl.cs: Incorrect contains check in ActiveControl 
3336         from previous fix (duh).
3337
3338 2006-10-20  Chris Toshok  <toshok@ximian.com>
3339
3340         * PropertyGridView.cs: the dropdown should be MIN(number of items
3341         in list, 15).  Fixes #79551.
3342
3343 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3344         Fixes #79384, #79394, #79652, #79667
3345         * Application.cs: 
3346         
3347         - Modal windows are now destroyed in the proper order for windows
3348         
3349         * ContainerControl.cs:
3350         
3351         - ActiveControl setter has more conditions on when to return:
3352                 - if we're reselecting the active control, but it actually
3353                 didn't have focus (window hidden or some such), it runs
3354                 - if the active control being selected doesn't actually 
3355                 exist in the container, it returns
3356         
3357         * Form.cs
3358         
3359         - The ShowDialog now gets the current form as the owner when
3360         invoking without parameters, and correctly activates the owner 
3361         when returning
3362         
3363         * MessageBox.cs
3364         
3365         - MessageBox now catches the Escape key to exit
3366
3367 2006-10-20  Chris Toshok  <toshok@ximian.com>
3368
3369         * PropertyGridView.cs: fix a number of issues (bug #78565, and
3370         most of bug #79676):
3371
3372         - you can navigate around the property grid with the arrow keys.
3373
3374         - the dropdown is sized properly when the pg has a vertical
3375         scrollbar.
3376
3377         - fix the indentation for subentries, and properly select the
3378         entire label rect.
3379
3380         - fix the gray bar's drawing (only draw it to the last element,
3381         not for the height of the control.  Also make sure we draw that
3382         last horizontal grid line.
3383
3384         - use the same mechanism the datagrid uses wrt the editing textbox
3385         when scrolling/resizing/etc.  Namely, we hide it first, do the
3386         operation, then show it again (if it's still visible).
3387         
3388         - aggressively remove a lot of unnecessary refreshes (and also
3389         calls to Invalidate(). call more limited variants, and only redraw
3390         what we need.)
3391         
3392         * PropertyGrid.cs:
3393
3394         - when we're populating the merged collection, fill in the UI
3395         parent with either the passed in item, or the category item we
3396         create.
3397
3398         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
3399
3400         * GridItem.cs: drop some fully qualified names.
3401         
3402         * GridEntry.cs: add a "UIParent", which is basically the parent
3403         treenode.
3404
3405         * GridItemCollection.cs: add an IndexOf method.
3406
3407 2006-10-20  Mike Kestner  <mkestner@novell.com>
3408
3409         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
3410         a working win32 NC invalidation mechanism, we can't invalidate
3411         menus.  [Fixes #79705]
3412
3413 2006-10-20  Mike Kestner  <mkestner@novell.com>
3414
3415         * ListBox.cs : don't update the VScrollbar if the list is empty,
3416         just hide it.  [Fixes #79692]
3417
3418 2006-10-20  Jackson Harper  <jackson@ximian.com>
3419
3420         * RichTextBox.cs: Handle some special chars better, and don't skip
3421         the entire group when we encounter a special char that we don't
3422         handle correctly.
3423
3424 2006-10-18  Chris Toshok  <toshok@ximian.com>
3425
3426         * PropertyGridView.cs: address a number of issues from bug #79676,
3427         mostly of the cosmetic variety.
3428
3429         - The highlight rectangle for indented items not extends all the
3430         way to the left.
3431
3432         - Indented items aren't indented so much.
3433
3434         - the dropdown is properly sized width-wise if the pg has a
3435         vertical scrollbar.
3436
3437 2006-10-18  Chris Toshok  <toshok@ximian.com>
3438
3439         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
3440         systray stuff is rather convoluted to begin with.
3441
3442         systray icons are a single window for some reason (that I haven't
3443         figured out yet), and for them, client_window == whole_window.
3444         Given the way the tests are structured elsewhere to determine
3445         which paints are pending (client vs. nc), that situation will
3446         always yield PAINT, not NCPAINT.  So, if we have a pending
3447         nc_expose and no pending expose, remove the hwnd from the paint
3448         queue, and also set nc_expose_pending to false, to keep us from
3449         blocking further expose's adding the hwnd to the paint queue.
3450
3451         phew.  like i said, a rather convoluted change.  Fixes the
3452         notifyicon repaint issues in bug #79645.
3453
3454 2006-10-18  Chris Toshok  <toshok@ximian.com>
3455
3456         * Form.cs: when getting the backcolor of the form, don't get
3457         base.BackColor, as this allows parents to influence the background
3458         color.  This breaks mdi forms.  Instead, if the background_color
3459         is empty, return the default.
3460
3461 2006-10-18  Chris Toshok  <toshok@ximian.com>
3462
3463         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
3464         to being private instead of internal static.
3465
3466         * Control.cs: remove all the stupid ParentWaitingOnRecreation
3467         crap, it wasn't working for more deeply nested controls anyway,
3468         and we already have the is_recreating flag - use that instead.
3469         Before calling DestroyHandle in RecreateHandle, recurse through
3470         the control tree setting it to true.  this returns the recreate
3471         code to much of its original simplicity, while now guaranteeing we
3472         actually recreate everything we're supposed to.  This change gets
3473         fyireporting actually showing mdi children.
3474
3475 2006-10-17  Chris Toshok  <toshok@ximian.com>
3476
3477         * Form.cs: remove some debug spew, and collapse some duplicate
3478         code at the end of SetClientSizeCore.
3479
3480         * XplatUIX11.cs: 
3481         - add some more debug spew here too wrt Destroy handling.
3482         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
3483         in Control's handling of WM_DESTROY.
3484         - Remove the handling of zombie window DestroyNotifies from the
3485         event loop - we don't need it.  Now the only DestroyNotifies we
3486         actually handle are ones generated by X.
3487         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
3488         match gtk's (functioning) handling of this. This keep metacity
3489         from leaving droppings in the form of wm borders with no window
3490         contents all over the place.
3491
3492         * Control.cs:
3493         - add a bunch of debug spew wrt control recreation.
3494         - fix a bug where we weren't tracking Visible properly on
3495         recreated hwnds.
3496         - fixed the WM_PAINT double buffer handling to support re-entrant
3497         calls (yes, i know it's gross, but it's happening to us).
3498
3499 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3500         * ThemeWin32Classic.cs: changed drawing of selected days
3501         to make them look better.
3502
3503 2006-10-16  Chris Toshok  <toshok@ximian.com>
3504
3505         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
3506         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
3507
3508         * XplatUIX11.cs: move away from using hwnd.client_dc and
3509         hwnd.non_client_dc and on to a stack of dc's (and in window's
3510         case, PAINTSTRUCT's), so we can deal with nested Paint calls
3511         without puking or not disposing of Graphics objects.
3512
3513         * XplatUIOSX.cs: same.
3514
3515         * XplatUIWin32.cs: same.
3516
3517 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3518
3519         * FileDialog.cs: Don't call on_directory_changed inside
3520           OnSelectedIndexChanged (it changes the SelectedIndex too).
3521           Instead move it to OnSelectionChangeCommitted.
3522
3523 2006-10-13  Chris Toshok  <toshok@ximian.com>
3524
3525         * XplatUIX11.cs: more Destroy work.  the current code does the
3526         following things, in order:
3527
3528         1. Enumerates all handles of all controls at or below the one
3529         being destroyed, in pre-order.  As it is doing this, it marks the
3530         handles as zombie and clears all references to them.
3531         
3532         2. calls XDestroyWindow on the window passed in.
3533
3534         3. SendMessage's WM_DESTROY to all he handles in the accumulated
3535         list.
3536
3537 2006-10-13  Chris Toshok  <toshok@ximian.com>
3538
3539         * XplatUIX11.cs: set hwnd.zombie to true before calling
3540         SendMessage (WM_DESTROY).  this keeps us from marking the new
3541         window a zombie, and also keeps us from calling sendmessage at
3542         all.
3543
3544 2006-10-13  Jackson Harper  <jackson@ximian.com>
3545
3546         * TextControl.cs: Do not show the caret and selection at the same
3547         time.  Reduces ugliness by 35%.
3548
3549 2006-10-13  Chris Toshok  <toshok@ximian.com>
3550
3551         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
3552         zombie after we do the recursive call, so we actually do call
3553         SendMessage on the children controls.
3554         (GetMessage): if we find a pending paint event for a zombie hwnd,
3555         remove the hwnd from the paint queue, or else it will always be
3556         there (and we'll effectively loop infinitely)
3557
3558 2006-10-13  Mike Kestner  <mkestner@novell.com>
3559
3560         * MenuItem.cs : add Selected format under keynav too.
3561         Fixes #79528.
3562
3563 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
3564
3565         * PropertyGrid.cs: Fixed some NRE's and small difference between our
3566         implementation and that of MS.
3567
3568 2006-10-13  Chris Toshok  <toshok@ximian.com>
3569
3570         * Control.cs (OnInvalidated) only futz with the invalid_region if
3571         the control is double buffered.  this fixes the apparent hang in
3572         the ListView unit tests.  Someone needs to make the
3573         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
3574
3575 2006-10-13  Chris Toshok  <toshok@ximian.com>
3576
3577         * PropertyGridView.cs:
3578
3579         - do a little refactoring so that only one place calls
3580         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
3581         else call that.  Also make it Refresh, since there are redraw bugs
3582         otherwise (we should take a look at that...)
3583
3584         - do a little more refactoring work to share the body of code
3585         involved with the drop down.  it was duplicated in the code
3586         dealing with the listbox handling and in the code dealing with the
3587         UITypeEditors.
3588
3589         - add a Capture to the dropdown form's control once it's
3590         displayed, and add a MouseDown handler that checks to make sure
3591         the position is inside the control.  If it's not, close the
3592         dropdown.  This fixes #78190.
3593
3594         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
3595         if the value is different than the initial value.
3596         
3597 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
3598
3599         * Control.cs: see #78650
3600         - Fixed GetNextControl for several cases:
3601                 - Changed FindFlatForward to return 
3602                 correct sibling control when more than one
3603                 control has same TabIndex as the currently 
3604                 focused one.
3605                 - Changed FindFlatBackward to loop children
3606                 from last to first and apply same logic as in
3607                 FindFlatForward
3608                 - Changed FindControlForward to search for
3609                 children when control is not a container
3610                 but has children, or search for siblings if
3611                 control is a container...
3612                 - Changed FindControlBackward   to continue
3613                 searching for child controls when hitting 
3614                 Panel-like parents
3615                 
3616         - Fixed Focus method to update ActiveControl
3617         (FocusTest.FocusSetsActive failure)
3618         
3619         * TabControl.cs:
3620         - Focus rectangle now refreshes when gaining
3621         or losing focus
3622         - Removed grab for Tab key on IsInputKey that 
3623         was keeping tab navigation from working (#78650)
3624
3625 2006-10-13  Chris Toshok  <toshok@ximian.com>
3626
3627         * PropertyGridView.cs:
3628         - Rewrite SetPropertyValue to loop over SelectedGridItem's
3629         SelectedObjects.
3630
3631         - Deal with GridItem.Value == null a few places.
3632
3633         * PropertyGrid.cs: 
3634         - replace the PopulateGridItemCollection with a pair of methods
3635         which compute the intersection of all the properties in the
3636         SelectedObjects array.  Fixes #79615.
3637
3638         - Throw ArgumentException from set_SelectedObjects if there's a
3639         null in the array.
3640
3641         - Add GetTarget method which can be used to traverse up the
3642         GridItem.Parent chain.  It depends on the assumption that
3643         selected_objects for different GridEntries are always in the same
3644         order (a safe assumption).  Use this method and loop over all the
3645         selected objects in the entry when calling RemoveValueChanged and
3646         AddValueChanged.
3647         
3648         * GridEntry.cs: Make this handle multiple selected objects.
3649         .Value returns null if not all the selected objects share the same
3650         value.
3651
3652 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
3653         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
3654           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
3655           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
3656           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
3657           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
3658         add additional functionality.
3659
3660 2006-10-12  Mike Kestner  <mkestner@novell.com>
3661
3662         * ErrorProvider.cs : new ToolTipWindow ctor sig.
3663         * HelpProvider.cs : new ToolTipWindow ctor sig.
3664         * ToolTip.cs : remove ToolTip param from Window sig since it is
3665         not used.
3666         * ToolBar.cs : add tooltip support.  Fixes #79565.
3667
3668 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3669
3670         * ComboBox.cs: move the events in set_SelectedIndex to 
3671         after the call to HighlightIndex in order to avoid 
3672         possible recursion and subsequent problems with the call
3673         to HighlightIndex and include a range check in 
3674         set_HighlightIndex. Fixes #79588
3675         
3676 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3677
3678         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
3679         to ui thread's settings instead of sunday. 
3680         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
3681
3682 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3683
3684         * DateTimePicker.cs
3685         * MonthCalendar.cs
3686         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
3687         and implement missing functionality (selecting different parts 
3688         of the date and edit them individually with the keyboard).
3689         
3690 2006-10-11  Chris Toshok  <toshok@ximian.com>
3691
3692         * Control.cs (OnInvalidated): fix NRE relating to last change.
3693
3694 2006-10-11  Chris Toshok  <toshok@ximian.com>
3695
3696         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
3697         atoms in _NET_WM_STATE here if the window is maximized.  We need
3698         to do this because we're *replacing* the existing _NET_WM_STATE
3699         property, so those atoms will be lost otherwise, and any further
3700         call to GetWindowState will return Normal for a window which is
3701         actually maximized.  Fixes #79338.
3702
3703 2006-10-11  Jackson Harper  <jackson@ximian.com>
3704
3705         * TextControl.cs: Special case for setting selection end to
3706         selection start, we basically kill the anchor.
3707         - some todo comments.
3708
3709 2006-10-11  Chris Toshok  <toshok@ximian.com>
3710
3711         * Control.cs: switch to using an "invalid_region" to track which
3712         parts of the image buffer need updating.  This is more code than
3713         the simple fix from r66532.  That version just attempted to always
3714         fill the entire buffer on redraw, which turns out to be
3715         inefficient when invalidating small rectangles.  This version
3716         simply adds the invalid rectangle to the invalid region.  When we
3717         get any WM_PAINT message we see if it can be filled using the
3718         image buffer, and if it can't (if the paint event's clip rectangle
3719         is visible in the invalid region) we first fill the image buffer.
3720         So, the image buffer is still a cache, we just fill it lazily.
3721
3722         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
3723         need it any longer.
3724
3725 2006-10-11  Chris Toshok  <toshok@ximian.com>
3726
3727         * XplatUIX11.cs (SetWindowPos): we need to update both position as
3728         well as size after calling XMoveResizeWindow.  This keeps us from
3729         ignoring future SetWindowPos calls.  Fixes the disappearing
3730         DateTimePicker in the ToolBarDockExample from bug #72499.
3731
3732 2006-10-11  Chris Toshok  <toshok@ximian.com>
3733
3734         * TextBoxBase.cs: reorder things a bit when it comes to
3735         resizing-causing-recalculation.  we were recalculating the
3736         document when our position was changed, which shouldn't happen.
3737         We only care about size changes.  Clear up some more redundant
3738         recalculation calls while I'm at it.  This makes the toolbar dock
3739         example snappy when you're just dragging toolbars around (since it
3740         causes a relayout whenever you move one.)
3741
3742 2006-10-11  Chris Toshok  <toshok@ximian.com>
3743
3744         * ToolBarButton.cs (get_Rectangle): this only returns
3745         Rectangle.Empty if Visible == false, or Parent == null.
3746         Parent.Visible doesn't matter.
3747
3748 2006-10-10  Chris Toshok  <toshok@ximian.com>
3749
3750         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
3751         by .net 1.1, so switch to an internal method instead.
3752
3753 2006-10-10  Chris Toshok  <toshok@ximian.com>
3754
3755         * Control.cs (WM_PAINT): when a control is double buffered we draw
3756         initially to the ImageBuffer and then copy from there.  But when a
3757         parent control which has child controls is double buffered, the
3758         initial drawing doesn't encompass the entire ClientRectangle of
3759         the parent control, so we end up with uninitialized bits (this is
3760         easily seen by dragging the top toolbar in
3761         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
3762         manually set the ClipRectangle of the paint_event (only the one we
3763         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
3764         of the nastiness in bug #72499.
3765
3766         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
3767         which we use in Control.cs's WM_PAINT handling.
3768
3769 2006-10-10  Jackson Harper  <jackson@ximian.com>
3770
3771         * TextBoxBase.cs: Finish off the autoscrolling stuff.
3772
3773 2006-10-10  Chris Toshok  <toshok@ximian.com>
3774
3775         * Cursor.cs: Apply a slightly different patch to the one suggested
3776         in #79609.
3777
3778 2006-10-10  Jackson Harper  <jackson@ximian.com>
3779
3780         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
3781         not the parent form.
3782         * TextControl.cs: use difference in old line count vs new count to
3783         calculate how many lines were added, this takes into account soft
3784         line breaks properly.
3785
3786 2006-10-10  Chris Toshok  <toshok@ximian.com>
3787
3788         * LinkLabel.cs: don't call MeasureCharacterRanges against a
3789         rectangle located at 0,0 and the size of the text.  Use
3790         ClientRectangle instead.  This fixes rendering of non-left aligned
3791         link labels.
3792
3793 2006-10-10  Jackson Harper  <jackson@ximian.com>
3794
3795         * TextBoxBase.cs: When we set the selection start position the
3796         caret.
3797         * TextControl.cs: Need to update the caret when we decrement it to
3798         zero.
3799         - Make sure that the selection_visible flag gets reset to false if
3800         the selection isn't visible.  Before this you could get it set to
3801         visible by changing the selection start, then changing the end to
3802         equal the start.
3803
3804 2006-10-09  Jackson Harper  <jackson@ximian.com>
3805
3806         * TreeView.cs: Don't update scrollbars when we aren't visible.
3807         * TreeNodeCollection.cs: Only need to update scrollbars if being
3808         added to an expanded visible node or the root node.
3809
3810 2006-10-09  Chris Toshok  <toshok@ximian.com>
3811
3812         * XplatUIX11.cs (SendMessage): fix NRE.
3813
3814 2006-10-09  Jackson Harper  <jackson@ximian.com>
3815
3816         * TextBoxBase.cs: Implement horizontal autoscrolling.
3817         * TextControl.cs: Add a movement types that allows moving forward
3818         and backwards without wrapping.
3819
3820 2006-10-09  Mike Kestner  <mkestner@novell.com>
3821
3822         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
3823         with focus "expansion" of labels.  Fixes #79532 and then some.
3824         * ThemeWin32Classic.cs : add LineLimit to ListView label format
3825         when wrapping.
3826
3827 2006-10-09  Jackson Harper  <jackson@ximian.com>
3828
3829         * TextBoxBase.cs: Set the default max values to MaxValue since
3830         we use the scrollbar for autoscrolling and the default value is
3831         100.  If we don't do this the caret won't keep up with typing
3832         after about 18 characters.
3833         * TextControl.cs: Make sure the selection is offset by the
3834         viewport x.  This fixes selection when using auto scrolling.
3835
3836 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
3837         
3838         * Form.cs: The active control should be selected after the 
3839         OnLoad so that any child control initialization that affects
3840         the selection is done. Fixes #79406
3841
3842 2006-10-06  Chris Toshok  <toshok@ximian.com>
3843
3844         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
3845         to have no evil effects.
3846
3847         - Stop selecting StructureNotifyMask on non-toplevel windows.
3848
3849           The only way children should be resized is by using the SWF api,
3850           and we already send WM_WINDOWPOSCHANGED messages in those cases.
3851           Toplevel windows can be interacted with via the window manager,
3852           and so we keep the input mask there.
3853
3854           The other event StructureNotifyMask gives us (that we care
3855           about) is DestroyNotify.  The code is already structured such
3856           that it assumes we won't be getting a DestroyNotify event for
3857           the window we pass to XDestroyWindow (which is what
3858           StructureNotifyMask is supposed to guarantee.)  So, that code
3859           shouldn't be affected by this either.
3860
3861         - Stop selecting VisibilityChangeMask altogether.
3862
3863           We weren't doing anything with the resulting events anyway.
3864         
3865         This vastly reduces the number of X requests and events we see
3866         when resizing/laying out a large ui.
3867
3868 2006-10-06  Chris Toshok  <toshok@ximian.com>
3869
3870         * ScrollableControl.cs (DisplayRectangle): we need to take into
3871         account the DockPadding regardless of whether or not auto_scroll
3872         == true.  rework this slightly to this effect, and fix bug #79606,
3873         and part of #72499 (you can now see the drag handles and drag
3874         toolbars around).
3875
3876 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
3877
3878         * ListViewItem.cs: Collections of selected and checked items are now
3879         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
3880         we mark the collection "dirty".
3881         * ListView.cs: Marked collections readonly. Modified UpdateSelection
3882         to only clear SelectedItems when a new item is selected and MultiSelect
3883         is enabled. CheckedItems and SelectedItems now subscribe to Changed
3884         event of ListViewItemCollection, and mark its list dirty whenever
3885         that event is fire. This allows us to return selected/checked items 
3886         in the same order as they are in the Items collection. This matches
3887         the MS behavior.
3888
3889 2006-10-06  Chris Toshok  <toshok@ximian.com>
3890
3891         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
3892         right mouse clicks.  Fixes bug #79593.
3893
3894 2006-10-06  Chris Toshok  <toshok@ximian.com>
3895
3896         * Splitter.cs: doh, fix splitters that don't want to cancel the
3897         movement when you drag them.  Also, impose the limits on the
3898         values we send to the SplitterMovingEvent.  Fixes #79598.
3899
3900 2006-10-06  Jackson Harper  <jackson@ximian.com>
3901
3902         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
3903         since we use this for auto scrolling also.
3904
3905 2006-10-05  Chris Toshok  <toshok@ximian.com>
3906
3907         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
3908         beginning to think that most datagrid column types don't need this
3909         method.  Fixes bug #79392.
3910
3911 2006-10-05  Chris Toshok  <toshok@ximian.com>
3912
3913         * DataGrid.cs: move back to a more lazy scheme for creating the
3914         CurrencyManager, so we aren't updating it every time you set
3915         either DataSource or DataMember.  Also, don't call
3916         RecreateDataGridRows if the currency manager hasn't changed.
3917
3918 2006-10-05  Chris Toshok  <toshok@ximian.com>
3919
3920         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
3921         emitted, SelectedIndex should already be updated.  Fixes bug
3922         #78929.
3923
3924 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
3925
3926         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
3927           ToolStripTextBox.cs: Initial commit.
3928         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
3929
3930 2006-10-05  Jackson Harper  <jackson@ximian.com>
3931
3932         * TabControl.cs: We need to invalidate the tab control area when
3933         new ones are added (duh).
3934
3935 2006-10-03  Chris Toshok  <toshok@ximian.com>
3936
3937         * Form.cs (ProcessDialogKey): if the focused control is in this
3938         form and is a button, call its PerformClick method here.  Fixes
3939         #79534.
3940
3941 2006-10-04  Jackson Harper  <jackson@ximian.com>
3942
3943         * TabPage.cs: Ignore setting of Visible, and add an internal
3944         method for setting the controls visibility.  TabPage's Visible
3945         property is a little strange on MS, this seems to make us
3946         compatible, and fixes cases where people set all the tab pages to
3947         visible.
3948         * TabControl.cs: Use the new internal setting on tab pages
3949         visibility.
3950
3951 2006-10-03  Mike Kestner  <mkestner@novell.com>
3952
3953         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
3954
3955 2006-10-03  Mike Kestner  <mkestner@novell.com>
3956
3957         * ListView.cs : use is_visible instead of Visible to check if 
3958         scrollbars should be placed/sized.  Also some max_wrap_width
3959         love for LargeIcon view.  [Fixes #79533]
3960
3961 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3962
3963         * TextControl.cs :
3964           Make set_TextAlign() do actually update the align. Fixed #78403.
3965
3966 2006-10-03  Chris Toshok  <toshok@ximian.com>
3967
3968         * DataGrid.cs: fix a crash when switching datasources if the
3969         vertical scrollbar is at someplace other than Value = 0.  Also,
3970         reduce the number of recalculation passes we do in SetDataSource
3971         from 2 to 1.
3972
3973 2006-10-03  Jackson Harper  <jackson@ximian.com>
3974
3975         * TextBoxBase.cs: Move the if value the same bail check up, we
3976         don't want to empty the document if it is already empty, this
3977         seems to severly mess up the caret.  TODO: I should probably fix
3978         the empty statement to update teh caret somehow.
3979
3980 2006-10-03  Chris Toshok  <toshok@ximian.com>
3981
3982         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
3983         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
3984         reflection, an internal row type, properties on said type, etc.)
3985         will work with our datagrid.  Fixes #79531.
3986
3987 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3988
3989         * FileDialog.cs: Don't crash if a path is not accessible
3990           (System.UnauthorizedAccessException). Fixes #79569.
3991         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
3992           a ':' too. Return unknown icon for those paths/files.
3993
3994 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
3995
3996         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
3997         GetContainerControl returns null.
3998
3999 2006-10-02  Chris Toshok  <toshok@ximian.com>
4000
4001         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
4002         call to XGetWindowAttributes instead of "handle".  fixes an X
4003         error using notifyicon after the NotifyIconWindow to Form base
4004         class switch.
4005
4006 2006-10-02  Chris Toshok  <toshok@ximian.com>
4007
4008         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
4009         server grab and looping we need to do to get down to the most
4010         deeply nested child window.
4011         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
4012         QueryPointer again after the WarpPointer so we can generate a
4013         proper (fake) MotionNotify event to be enqueued in the destination
4014         window's queue.
4015         (GetCursorPos): call QueryPointer.
4016
4017         Fixes #79556.
4018
4019 2006-10-02  Jackson Harper  <jackson@ximian.com>
4020
4021         * NotifyIcon.cs: Derive the notify icon from a form, so things
4022         like FindForm work on it.
4023         - Swallow the WM_CONTEXTMENU message, since that is generated on
4024         mouse down, and context menu is a mouse up kinda guy.  I believe
4025         the correct fix here is probably to make the notify icon entirely
4026         NC area, but this seems to work fine for anyone not manipulating
4027         WndProc.
4028
4029 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
4030
4031         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
4032           ToolStripItemCollection.cs, ToolStripLabel.cs,
4033           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
4034           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
4035           Initial implementation.
4036         * TextRenderer.cs: Provide padding to MeasureText.
4037
4038 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
4039
4040         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
4041         of ButtonBaseAccessibleObject. Fix bug #79552.
4042
4043 2006-10-02  Jackson Harper  <jackson@ximian.com>
4044
4045         * MdiWindowManager.cs: When maximizing use the containers client
4046         rect, not it's bounds, so nc area is accounted correctly.
4047         - Use the parent form's size for the menu position, since the
4048         client isn't always the full form size.
4049
4050 2006-10-01  Chris Toshok  <toshok@ximian.com>
4051
4052         * ScrollableControl.cs: make sure neither right_edge or
4053         bottom_edge are < 0, since they're used as LargeChange for the
4054         horiz/vert scrollbars respectively.  Fixes #79539.
4055
4056 2006-10-01  Chris Toshok  <toshok@ximian.com>
4057
4058         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
4059         the xplatuix11 code can cause us to destroy/recreate our handle.
4060
4061         * XplatUIX11.cs
4062         (SystrayAdd):
4063         - this code can be invoked many times for the same Hwnd.  Make
4064           sure we only destroy the client window once (the first time this
4065           method is called).  This fixes bug #79544.
4066         - Remove the call to the improperly bound XSync.  why we had two
4067           bindings to this, I will never know, but this call resulted in
4068           events being discarded from the queue(!).
4069         - correct a misunderstanding of _XEMBED_INFO - the second atom is
4070           not our current state but the state we wish to be in.  So, 0 if
4071           we don't want to be mapped.  Change it to 1.
4072         (SystrayRemove): The XEMBED spec makes mention of the fact that
4073         gtk doesn't support the reparent of client windows away from the
4074         embedder.  Looking at gtksocket-x11.c seems to agree with this.
4075         The only avenue we have for removing systray icons is to destroy
4076         them.  We don't want the handle to go away for good, though, so
4077         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
4078         #79545.
4079         
4080 2006-10-01  Chris Toshok  <toshok@ximian.com>
4081
4082         * Form.cs (WndProc): inline the native_enabled variable usage into
4083         the cases in which it's used.  Fixes #79536.
4084
4085 2006-09-29  Mike Kestner  <mkestner@novell.com>
4086
4087         * ListView.cs : toggle the selection state for ctrl clicks in 
4088         multiselect mode. [Fixes #79417]
4089
4090 2006-09-29  Mike Kestner  <mkestner@novell.com>
4091
4092         * ListView.cs : kill CanMultiSelect and refactor the selection
4093         code to support multiselection in the absence of mod keys. Steal
4094         arrow/home/end keys by overriding InternalPreProcessMessage to
4095         restore regressed keynav behavior.
4096         [Fixes #79416]
4097
4098 2006-09-29  Jackson Harper  <jackson@ximian.com>
4099
4100         * MdiClient.cs: Repaint the titlebars when the active window is
4101         changed.
4102
4103 2006-09-29  Chris Toshok  <toshok@ximian.com>
4104
4105         * Application.cs: when entering a runloop with a modal, make sure
4106         the hwnd is enabled.  Fixes #79480.
4107
4108 2006-09-29  Chris Toshok  <toshok@ximian.com>
4109
4110         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
4111         when ListManager.CanAddRows == false, bump us back one.
4112
4113         * DataGridColumnStyle.cs (ParentReadOnly): remove the
4114         listmanager.CanAddRows check.  This makes ArrayLists uneditable
4115         using a datagrid, which is not right.
4116         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
4117         is an IEditable, but call property_descriptor.SetValue regardless.
4118         fixes #79435.
4119
4120 2006-09-29  Chris Toshok  <toshok@ximian.com>
4121
4122         * DataGridBoolColumn.cs: we need to test equality in the face of
4123         possible null values (as is the case with the default NullValue).
4124         This patch keeps us from crashing in that case.
4125
4126 2006-09-29  Jackson Harper  <jackson@ximian.com>
4127
4128         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
4129         here, since it will get called for every node collection in the
4130         tree. This is now done in the treeview once the sorting is
4131         finished.
4132         * TreeView.cs: Recalculate the visible order, and update the
4133         scrollbars after sorting, set the top nope to the root so that the
4134         recalc actually works.
4135
4136 2006-09-29  Chris Toshok  <toshok@ximian.com>
4137
4138         * LinkLabel.cs: more handling of the default link collection in
4139         the face of LinkArea manipulation.  The default link collection
4140         contains 1 element (start=0,length=-1).  If the user sets LinkArea
4141         to anything and the links collection is the default, clear it.
4142         Then only add the link if its nonempty.  Fixes #79518.
4143
4144 2006-09-29  Chris Toshok  <toshok@ximian.com>
4145
4146         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
4147         piece correctly when we hit a '\n'.  Fixes #79517.
4148
4149 2006-09-29  Chris Toshok  <toshok@ximian.com>
4150
4151         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
4152         change the binding of gdk_init_check to take two IntPtr's, and
4153         pass IntPtr.Zero for both of them.  Fixes #79520.
4154
4155 2006-09-29  Mike Kestner  <mkestner@novell.com>
4156
4157         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
4158         [Fixes #78779]
4159
4160 2006-09-28  Jackson Harper  <jackson@ximian.com>
4161
4162         * XplatUIX11.cs: When translating NC messages make sure we go from
4163         whole window to screen, not client window to screen.
4164         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
4165         method doesn't exist
4166         - Skip over controls that aren't forms when arranging.
4167
4168 2006-09-28  Jackson Harper  <jackson@ximian.com>
4169
4170         * XplatUIWin32.cs: Clip the rect to the parent window.
4171         * XplatUIStructs.cs: Add clipping modes struct.
4172         * InternalWindowManager.cs: New private method that factors title
4173         bar heights in when calculating the pos of an NC mouse message.
4174         - Use SendMessage to force a paint when the form's size is changed
4175         instead of painting the decorations immediately.
4176         - Don't let the NC button click messages get to DefWndProc,
4177         because they will attempt to handle windowing themself, and this
4178         messes up z-order (it will put them in front of the scrollbars).
4179         * XplatUIX11.cs: Make sure that we don't reset window managers if
4180         we already have one (ie the window is an MDI window).
4181
4182 2006-09-28  Chris Toshok  <toshok@ximian.com>
4183
4184         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
4185         menu code really needs going over.
4186
4187 2006-09-27  Chris Toshok  <toshok@ximian.com>
4188
4189         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
4190         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
4191         window is maximizable.  So, we need to make sure that even if we
4192         clear the border/wm frame of those functions, they're still
4193         available (basically, we remove the decoration without removing
4194         the function).  Half the fix for #79338.
4195
4196 2006-09-27  Chris Toshok  <toshok@ximian.com>
4197
4198         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
4199         Fixes bug #79515.
4200
4201 2006-09-27  Chris Toshok  <toshok@ximian.com>
4202
4203         * Splitter.cs: reorder things a bit so that we don't actually
4204         draw/move the splitter until after calling OnSplitterMoving.  This
4205         lets users cancel/disallow the movement by explicitly setting
4206         event.SplitX/SplitY.  Fixes #79372.
4207
4208 2006-09-27  Jackson Harper  <jackson@ximian.com>
4209
4210         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
4211         because it is most likely on a window being destroyed, and that
4212         will give us an X11 error.
4213
4214 2006-09-27  Chris Toshok  <toshok@ximian.com>
4215
4216         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
4217         the dropdown button now toggles between showing and hiding the
4218         dropdown.  Also, get rid of dropdown_form_showing and just use
4219         dropdown_form.Visible.  We still don't do a grab, but I'll leave
4220         that part to someone who has handled Capture-fu before.
4221
4222 2006-09-27  Chris Toshok  <toshok@ximian.com>
4223
4224         * DataGrid.cs: return false if alt isn't pressed when '0' is
4225         pressed.  this keeps the '0' key from being swallowed, and fixes
4226         bug #79350.
4227
4228 2006-09-27  Chris Toshok  <toshok@ximian.com>
4229
4230         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
4231         Calling Refresh (in response to a scrollbar event) screws up the
4232         scrollbar painting.  Fixes bug #78923.
4233
4234 2006-09-27  Chris Toshok  <toshok@ximian.com>
4235
4236         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
4237         then insert into hashtable" blocks threadsafe.
4238
4239 2006-09-27  Chris Toshok  <toshok@ximian.com>
4240
4241         * MessageBox.cs (CreateParams): the styles should be |'ed with our
4242         baseclass's, since otherwise the
4243         ControlBox/MinimizeBox/MaximizeBox assignments above have no
4244         effect.  This gets the close button back in messageboxes.
4245
4246 2006-09-27  Chris Toshok  <toshok@ximian.com>
4247
4248         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
4249         flag, not just != 0.  this makes flags that are actually multiple
4250         bits (like WS_CAPTION) work.  fixes bug #79508.
4251
4252 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
4253
4254         * PageSetupDialog.cs: add support for getting and settings the 
4255         paper size, source and orientation.
4256
4257 2006-09-26  Chris Toshok  <toshok@ximian.com>
4258
4259         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
4260         and caption == "", we need to remove the resize handles as well as
4261         the title bar.
4262
4263         * Control.cs (set_Text): turns out that setting Text on a form
4264         should change the WM styles on the window, since if ControlBox ==
4265         false, the only way to get a window border is to have a non-""
4266         Text property.  check winforms/forms/text.cs for an example.  so,
4267         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
4268         update both window styles and title.  This fixes a lot of dialogs
4269         (including the preferences dialog in MonoCalendar.)
4270
4271 2006-09-26  Chris Toshok  <toshok@ximian.com>
4272
4273         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
4274         control isn't a Form), call Win32ShowWindow to hide the window,
4275         but don't update the control Visible property.  When we reparent
4276         back to a parent control, call SetVisible in order for the
4277         window's visibility to be reinstated.
4278
4279         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
4280         the FosterParent.
4281
4282         * Control.cs (ControlCollection.Remove): remove that value.Hide()
4283         call for good, since it breaks MonoCalendar (and other things I'm
4284         sure.) Also, set all_controls to null *after* the owner calls,
4285         which end up regenerating it.
4286         (ChangeParent): allow new_parent to be == null, passing
4287         IntPtr.Zero down to XplatUI.
4288
4289         this fixes #79294 the right way.
4290
4291 2006-09-26  Mike Kestner  <mkestner@novell.com>
4292
4293         * GridEntry.cs : internal SetParent method.
4294         * PropertyGrid.cs : attach to property changed on the proper
4295         target if we have a hierarchical grid with subobjects. Setup
4296         GridItem.Parent for hierarchical items.
4297         * PropertyGridView.cs : Set value on the correct target for
4298         hierarchical grids. [Fixes #78903]
4299
4300 2006-09-26  Chris Toshok  <toshok@ximian.com>
4301
4302         * Control.cs (ChildNeedsRecreating): this should return true if
4303         either we're being recreated and the child is in our list, or our
4304         parent is waiting for our recreation.
4305
4306 2006-09-26  Chris Toshok  <toshok@ximian.com>
4307
4308         * Control.cs (ControlCollection.Remove): reinstate the
4309         value.Hide() call as suggested in bug #79294.
4310
4311 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
4312
4313         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
4314         coordinates (versus a relative move).
4315
4316 2006-09-26  Chris Toshok  <toshok@ximian.com>
4317
4318         * Control.cs: rework child recreation a little bit.  It turns out
4319         that we race between the DestroyNotify the WM_DESTROY message.  If
4320         the parent gets its DestroyNotify before the child gets the
4321         WM_DESTROY message, the child ends up not recreating (since the
4322         parent finishes its recreation on DestroyNotify, and the child
4323         checks ParentIsRecreating.)
4324
4325         So, instead we store off a list of all the child controls which
4326         need to be recreated when the parent control starts to recreate
4327         itself.  Then, when child controls get their WM_DESTROY message we
4328         check to see if they're in the parent's pending recreation list,
4329         and if so, we recreate.  This removes all dependency on ordering
4330         from the code and fixes the initial MonoCalendar upgrade dialog.
4331         
4332 2006-09-26  Jackson Harper  <jackson@ximian.com>
4333
4334         * TextControl.cs: Use the Line to get the length of the line,
4335         since soft line breaks can change the end line.
4336
4337 2006-09-26  Chris Toshok  <toshok@ximian.com>
4338
4339         * Control.cs (ControlCollection.AddImplicit): don't add the
4340         control again if it's already in one of our lists.  This keeps us
4341         from adding controls over and over again for comboboxes when their
4342         handle gets recreated (as the combobox adds implicit controls in
4343         OnHandleCreated).  Fixes the X11 errors in bug #79480.
4344
4345 2006-09-26  Jackson Harper  <jackson@ximian.com>
4346
4347         * TextControl.cs: When deleting characters make sure that any
4348         orphaned zero lengthed tags get deleted.
4349         - Fix ToString for zero lengthed tags.
4350
4351 2006-09-25  Jackson Harper  <jackson@ximian.com>
4352
4353         * TextControl.cs: When getting a tag at the location there can be
4354         multiple tags at the same spot, these are 0-lengthed tags that
4355         appear when extra formatting has been stuck in a location.  We
4356         need to pull out the last of these 0 lengthed tags.
4357
4358 2006-09-25  Jackson Harper  <jackson@ximian.com>
4359
4360         * TextControl.cs: Fix print out in debug method.
4361         * TextBoxBase.cs: When text is set bail if we are setting to the
4362         previous value.
4363         
4364 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
4365
4366         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
4367           It is now possible to change the selected index in a FontXXXListBox
4368           with the up and down arrow keys from the FontXXXTextBoxes.
4369           Also, send the FontXXXTextBox mouse wheel event to the corresponding
4370           FontXXXListBoxes to match ms.
4371
4372 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
4373
4374         * SystemInformation.cs: Return a clone of the theme's MenuFont because
4375         anyone can dispose it, anytime. All other properties returns enums, 
4376         structs or basic types so they don't need such tricks.
4377
4378 2006-09-22  Jackson Harper  <jackson@ximian.com>
4379
4380         * XplatUI.cs:
4381         * XplatUIWin32.cs:
4382         * Clipboard.cs:
4383         * DataFormats.cs:
4384         * XplatUIOSX.cs:
4385         * XplatUIDriver.cs: Update interface to add a primary selection
4386         flag, so the driver can use the primary selection buffer if
4387         needed.
4388         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
4389
4390         * RichTextBox.cs: We need to supply the data object to paste now
4391         (so we can choose to supply CLIPBOARD or PRIMARY).
4392         * TextBoxBase.cs: Supply data object to paste (see above).
4393         - Middle click uses the primary selection data object.
4394         
4395 2006-09-21  Chris Toshok  <toshok@ximian.com>
4396
4397         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
4398         of SetWMStyles.  It's still a rat's nest and is largely
4399         order-dependent which I dislike immensely.  This also fixes the X
4400         button disappearing from toplevel forms.
4401
4402 2006-09-21  Mike Kestner <mkestner@novell.com>
4403
4404         * ListBox.cs: move Jordi's click/dblclick raising code to the
4405         mouse up handler.
4406
4407 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
4408
4409         * ListBox.cs: Fixes 79450
4410
4411 2006-09-21  Mike Kestner <mkestner@novell.com>
4412
4413         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
4414         to deal with people updating the TreeNodeCollection after the tree
4415         is disposed.  "Fixes" 79330.
4416
4417 2006-09-20  Jackson Harper <jackson@ximian.com>
4418
4419         * TextControl.cs: Push the cursor record onto the undo stack
4420         before the delete action. This fixes 78651.
4421
4422 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
4423
4424         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
4425         CreateParams. Fixes 79329.
4426
4427 2006-09-19  Chris Toshok  <toshok@ximian.com>
4428
4429         * XplatUIX11.cs: a couple of blanket code massage passes to clean
4430         things up a bit.  First, get rid of the NetAtoms array (and the NA
4431         enum), and just embed the atoms as static fields.  Also, add a
4432         couple of functions (StyleSet and ExStyleSet) to clean up all the
4433         bitmask testing of styles.
4434
4435         * X11Structs.cs: remove the NA enum, not needed anymore.
4436         
4437 2006-09-19  Chris Toshok  <toshok@ximian.com>
4438
4439         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
4440         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
4441         added cleanup to get MessageBox titles appearing again, which were
4442         broken by my earlier fix for caption-less/ControlBox-less windows.
4443
4444 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
4445
4446         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
4447           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
4448           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
4449           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
4450           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
4451           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
4452           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
4453           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
4454           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
4455           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
4456           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
4457             Inital import.
4458         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
4459           ToolStripButton.cs: Stubs needed for above.
4460         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
4461
4462 2006-09-15  Chris Toshok  <toshok@ximian.com>
4463
4464         * XplatUIX11.cs:
4465         - make the MessageQueues hashtable Synchronized.
4466         
4467         - SendMessage: if the Hwnd is owned by a different thread, use the
4468         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
4469         thread.  Fixes bug #79201.
4470
4471 2006-09-15  Chris Toshok  <toshok@ximian.com>
4472
4473         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
4474         ControlBox == false, we disallow maximize/minimize/close.  If the
4475         form Caption is "" we also disallow move (and get rid of the Title
4476         decoration).  Unfortunately, regardless of how things are set,
4477         we're stuck with the Title and WM menu.
4478
4479 2006-09-15  Chris Toshok  <toshok@ximian.com>
4480
4481         * Application.cs: add locking around the static message_filters
4482         ArrayList, part of #79196.
4483
4484 2006-09-15  Chris Toshok  <toshok@ximian.com>
4485
4486         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
4487         Form.ControlBox == false, the window has no titlebar nor resize
4488         handles.  fixes bug #79368.
4489
4490 2006-09-15  Chris Toshok  <toshok@ximian.com>
4491
4492         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
4493         >= 0.  Fixes bug #79370.
4494
4495 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
4496         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
4497         * Control.cs:
4498             Add properties: LayoutEngine, Margin, DefaultMargin.
4499             Add method: GetPreferredSize.
4500             Move layout logic from PerformLayout to layout engines. 
4501
4502 2006-09-13  Chris Toshok  <toshok@ximian.com>
4503
4504         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
4505         fix for #79326 broke #78718, so this change addresses that.
4506
4507         - in SendWMDestroyMessages remove the call to
4508         CleanupCachedWindows, since we might be recreating the control and
4509         need to maintain the references to right Hwnd handles.  Also, set
4510         the zombie flag to true for each of the children in the hierarchy
4511         instead of calling hwnd.Dispose.  This will cause GetMessage to
4512         ignore all events for the window except for DestroyNotify.
4513
4514         - In GetMessage, ignore messages except for DestroyNotify for
4515         zombie hwnds.
4516         
4517         * Control.cs: revert the is_recreating fix from the last
4518         ChangeLog.  It's definitely "right", but it breaks switching from
4519         an MDI form to a non-MDI form.  Will need to revisit that.
4520
4521         * Hwnd.cs: add a zombie flag, which means "the
4522         client_window/whole_window handles are invalid, but we're waiting
4523         for the DestroyNotify event to come in for them".  Set the flag to
4524         false explicitly if setting WholeWindow/ClientWindow, and also
4525         when Disposing.
4526         
4527 2006-09-13  Chris Toshok  <toshok@ximian.com>
4528
4529         * XplatUIX11.cs: rework window destruction slightly.
4530
4531         - when destroying the windows associated with a control, we don't
4532         need 2 separate XDestroyWindow calls.  Just the one for the
4533         whole_window (or for client_window if whole_window is somehow
4534         IntPtr.Zero -- can this happen?) is enough.
4535
4536         - reworked SendWMDestroyMessages slightly, so we always dispose
4537         the child control hwnd's after sending the messages.
4538         
4539         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
4540         the two places it was used (one was even using hwnd.Handle and the
4541         other hwnd.client_window.  ugh), adding another call in
4542         SendWMDestroyMessages.  We need this new call because now the
4543         DestroyNotify events in the queue will be ignored for the child
4544         controls (as their hwnd's were disposed, and the window id's
4545         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
4546
4547         - this fixes bug #79326.
4548
4549 2006-09-13  Chris Toshok  <toshok@ximian.com>
4550
4551         * Control.cs: don't always set is_recreating to false at the end
4552         of RecreateHandle, since sometimes we're not done (and won't be
4553         until WndProc handles the WM_DESTROY message).  Also, set
4554         is_recreating to false in the WM_DESTROY handling code.  Part of
4555         the fix for bug #79326.
4556
4557 2006-09-13  Miguel de Icaza  <miguel@novell.com>
4558
4559         * X11DesktopColors.cs: Start the droppage of debugging messages.
4560
4561         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
4562
4563 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
4564
4565         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
4566
4567 2006-09-12  Chris Toshok  <toshok@ximian.com>
4568
4569         * DataGrid.cs (get_ListManager): if the list_manager is null, try
4570         to create it using SetDataSource.  Fixes bug #79151.
4571
4572 2006-09-11  Chris Toshok  <toshok@ximian.com>
4573
4574         * XEventQueue.cs: add a DispatchIdle property.
4575
4576         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
4577         either the queue is null, or the queue has DispatchIdle set to
4578         true.
4579         (DoEvents): set queue.DispatchIdle to false around the
4580         peek/translate/dispatch message loop in this method.  This keeps
4581         Application.Doevents from emitting idle events.  Part of the fix
4582         for #78823.
4583
4584 2006-09-11  Chris Toshok  <toshok@ximian.com>
4585
4586         * DataGrid.cs (set_DataSource): make this work for both the
4587         winforms/datagrid test and ReportBuilder.  It seems as though when
4588         we've created a ListManager (or maybe it's if we have a
4589         BindingContext?), when we set the DataSource it clears the
4590         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
4591         #79333.
4592
4593 2006-09-11  Chris Toshok  <toshok@ximian.com>
4594
4595         * XplatUIX11.cs: deal with queue being null, which happens in all
4596         the Clipboard functions.  Fixes one of the two problems mentioned
4597         in #78612.
4598
4599 2006-09-11  Chris Toshok  <toshok@ximian.com>
4600
4601         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
4602         button on various spots (including outside the menu) works closer
4603         to MS, and doesn't crash.  Fixes #79343.
4604
4605 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
4606
4607         * ListView.cs: Do not initialize item_sorter in init. To match MS,
4608         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
4609         and the internal comparer is set. When a new ListViewItemSorter is set,
4610         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
4611         was specified. No further processing is necessary if SortOrder is set
4612         to it's current value. If Sorting is modified to None, and View is
4613         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
4614         (either custom or our internal ItemComparer) to null, on 1.0 profile
4615         only set item_sorter to null if its our internal IComparer. If Sorting
4616         is modified to Ascending or Descending, then use our internal IComparer
4617         if none is set, and if the current IComparer is our internal one then:
4618         on 2.0 profile always replace it with one for new Sorting, and on 1.0
4619         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
4620         Enum.IsDefined to verify whether a valid View value is specified in
4621         its setter. Automatically sort listview items when listview is
4622         created. In Sort, do nothing if ListView is not yet created, or if
4623         no item_sorter is set (no Sorting was set, Sorting was explicitly set
4624         to None or ListViewItemSorter was set to null). Added Sort overload
4625         taking a bool to indicate whether the ListView should be redrawn when
4626         items are sorted (we use this in ListViewItemCollection to avoid double
4627         redraws). Modified our internal IComparer to take the sort order into
4628         account. In Add and AddRange methods of ListViewItemCollection, also
4629         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
4630         view), but use overload with noredraw option to avoid double redraw.
4631         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
4632         true when View is Tile, and do the same when attempting to set View to
4633         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
4634         for selected/checked indices, as it involves overhead when sorting is
4635         done while these collections are not used all that often. Instead
4636         we'll build the indices on demand. Modified IList implementation of
4637         CheckedIndexCollection to use public methods if object is int.
4638         Modified CheckedListViewItemCollection to hide checked items if
4639         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
4640         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
4641         IList implementation in SelectedIndexCollection to use public methods
4642         if object is int. Modified SelectedListViewItemCollection to hide
4643         selected items if listview is not yet created.
4644         * ListViewItem.cs: CheckedIndices list no longer needs to be
4645         maintained separately (see ListView changes). Also clone font, fixes
4646         test failure.
4647
4648 2006-09-11  Mike Kestner  <mkestner@novell.com>
4649
4650         * ComboBox.cs: if we are updating the contents of the currently
4651         selected index, refresh the control or the textbox selection.
4652         [Fixes #79066]
4653
4654 2006-09-11  Mike Kestner  <mkestner@novell.com>
4655
4656         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
4657         the 'specified' logic has been moved there.  This seems like a bug 
4658         in Control.cs, since our current SetBoundsCore completely ignores 
4659         the specified parameter.  Peter's commit seems to indicate that is 
4660         the way the MS control implementation works.  [Fixes #79325]
4661
4662 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
4663
4664         * XplatUI.cs: Set default_class_name to be composed
4665         of current domain id. This allows MWF to be loaded in multiple
4666         domains on Win32.
4667
4668 2006-09-09  Miguel de Icaza  <miguel@novell.com>
4669
4670         * X11Keyboard.cs: If we are unable to obtain the input method, do
4671         not call CreateXic to create the input context.   Should fix
4672         #78944/79276.
4673
4674 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
4675
4676         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
4677           Simplified gnome support by adding more pinvokes to get the
4678           icon for a file or mime type.
4679
4680 2006-09-08  Jackson Harper  <jackson@ximian.com>
4681
4682         * MenuAPI.cs: Deslect popup context menu items before closing the
4683         window, so that you don't see the previously selected item
4684         selected when you reopen the menu.
4685         * TextControl.cs: Update the cursor position even if we don't have
4686         focus.  This fixes typing in things like the ComboBox.  I'm not
4687         totally sure we should always set the visibility if we don't have
4688         focus, but couldn't find any corner cases where the cursor showed
4689         up when it shouldn't.
4690
4691 2006-09-08  Chris Toshok  <toshok@ximian.com>
4692
4693         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
4694         our arrays are length 256.  & 0xff before indexing.  Fixes the
4695         crash in bug #78077.
4696         
4697 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4698
4699         * ThemeWin32Classic.cs: 
4700         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
4701         is true. Handle that check box too.
4702
4703 2006-09-07  Chris Toshok  <toshok@ximian.com>
4704
4705         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
4706         79244.
4707
4708 2006-09-07  Chris Toshok  <toshok@ximian.com>
4709
4710         * Control.cs: in set_BackColor only do the work if
4711         background_color != value.
4712
4713         * XplatUIX11.cs: move the clearing of invalid areas (both client
4714         and nc) to the same block of code where we set (nc_)expose_pending
4715         to false.  That is, move it from PaintEventEnd to PaintEventStart,
4716         so things that cause invalidates from within OnPaint will trigger
4717         another call to OnPaint.  Fixes bug #79262.
4718
4719 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
4720
4721         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
4722         * FileDialog.cs: Fix typo
4723
4724 2006-09-07  Jackson Harper  <jackson@ximian.com>
4725
4726         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
4727         for tab pages if they have any.
4728
4729 2006-09-06  Mike Kestner  <mkestner@novell.com>
4730
4731         * Splitter.cs: use the "current" rect when finishing drag handle
4732         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
4733
4734 2006-09-06  Mike Kestner  <mkestner@novell.com>
4735
4736         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
4737         support offset splitters. [Fixes #79298]
4738
4739 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
4740
4741         * Mime.cs: Fixed a bug that could override the global mime type
4742           result.
4743
4744 2006-09-05  Jackson Harper  <jackson@ximian.com>
4745
4746         * TabControl.cs: Better calculation method for setting the slider
4747         pos. Prevents crashes on really wide tabs.
4748         - Draw Image on tab pages if an image list is used.
4749
4750 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4751
4752         * MonthCalendar.cs: When Font changes, the Size should be
4753         updated to fit the new font's space requirements.
4754
4755 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
4756
4757         * ListBox.cs: If the items are cleared with Items.Clear set
4758           top_index to 0.
4759
4760 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4761
4762         * MonthCalendar.cs: Handle arrow keys as input keys. Also
4763         fire DateChanged event instead of DateSelected event when
4764         the date was changed by keyboard interaction.
4765
4766 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4767
4768         * DateTimePicker.cs: Handle DateChanged for the associated
4769         month_calendar control, and set month_calendar.Font from 
4770         OnFontChanged method, as well as resize the height of the
4771         control when needed. Make PreferredHeight proportional.
4772
4773 2006-09-01  Chris Toshok  <toshok@ximian.com>
4774
4775         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
4776         properties.
4777
4778         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
4779
4780 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
4781
4782         * FileDialog.cs: Set ClientSize instead of window size, to allow space
4783           for decorations (Fixes #79219)
4784
4785 2006-09-01  Mike Kestner  <mkestner@novell.com>
4786
4787         * ComboBox.cs: first stab at sorting plus some selection handling
4788         fixes to bring us more in line with MS behavior.  Also switches back
4789         to index based selection.  Alternative patches for index-based 
4790         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
4791         and latency@gmx.de on bug 78848.  I assume they were similar to this
4792         code I've had simmering in my tree forever.
4793         [Fixes #78848]
4794
4795 2006-09-01  Chris Toshok  <toshok@ximian.com>
4796
4797         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
4798         when setting list position guard against ending up with a -1 index
4799         (the other part of the fix for #78812).  Should probably make sure
4800         we don't need the analogous fix in the ItemDeleted case.
4801
4802         * DataGrid.cs:
4803         - in SetDataSource, work around the fact that the way
4804         OnBindingContextChanged is invoked will cause us to re-enter this
4805         method.  I'll remove the hack once I investigate
4806         OnBindingContextChanged.
4807
4808         - fix the logic in set_DataSource and set_DataMember (basically
4809         what to do if the other of the two is null.)
4810         
4811         - in OnListManagerItemChanged, we need to take into account the
4812         edit row when deciding whether or not to call RecreateDataGridRows
4813         (part of the fix for #78812).
4814
4815 2006-09-01  Jackson Harper  <jackson@ximian.com>
4816
4817         * Splitter.cs: Don't do anything if there is no control to affect
4818         (prevents us from crashing in weird tet cases).
4819         * TreeView.cs: Bounding box for the mouse movement reverting
4820         focus/selection back to previously selected node.  This matches
4821         MS, and makes the tree a lot more useable.
4822         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
4823         use clipping so they are not drawn.  This fixes when the control
4824         is set to have a transparent background, or if it was over an
4825         image.
4826
4827 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
4828
4829         * MimeIcon.cs: Improved handling for reading default icons when
4830           using gnome (2.16 made it necessary). Check and read svg icons
4831           first, then 48x48 and then 32x32 icons.
4832
4833 2006-08-31  Chris Toshok  <toshok@ximian.com>
4834
4835         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
4836         visible.
4837
4838         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
4839         ProcessKeyPreview.  Fixes part of #77806.
4840
4841         * DataGrid.cs: big patch.
4842
4843         - revert the queueing up of DataSource/DataMember if inside
4844         BeginInit/EndInit calls.  That's not the way the datagrid achieves
4845         its delayed databinding.  Instead, call SetDataSource in
4846         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
4847         #78811.
4848
4849         - Also, it wasn't mentioned in #78811, but the test case exhibits
4850         behavior that was lacking in our datagrid implementation - Columns
4851         that have mapping names that don't exist in the datasource's
4852         properties aren't shown.  Yuck.  To fix this I added the bound
4853         field to the column style, and basically any calculation to figure
4854         out anything about columns uses a loop to find the bound columns.
4855         still need to investigate if I can cache an array of the bound
4856         columns or if the indices must be the same.
4857
4858         - When setting CurrentCell, we no longer abort if the cell being
4859         edited was in the add row.  This fixes the other part of #77806.
4860
4861         - The new code also fixes #78807.
4862         
4863         * ThemeWin32Classic.cs: perpetrate the same disgusting
4864         column.bound field hack, and only render bound fields.
4865
4866 2006-08-31  Chris Toshok  <toshok@ximian.com>
4867
4868         * DataGridColumnStyle.cs: add bound field.  this field is true if
4869         the datasource has a property corresponding to the mapping name.
4870
4871         * DataGridTableStyle.cs: set the bound field on the column styles
4872         depending on whether or not we have a column for that property.
4873
4874 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
4875
4876         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
4877           splitter control (fixes #79228)
4878
4879 2006-08-31  Chris Toshok  <toshok@ximian.com>
4880
4881         * DataGridColumnStyle.cs: we need to delay the assignment of
4882         property descriptor until the last possible moment due to the lazy
4883         databinding stuff in the datagrid.  Also, fix the exceptions
4884         thrown by CheckValidDataSource to match MS.
4885
4886 2006-08-31  Jackson Harper  <jackson@ximian.com>
4887
4888         * Form.cs: When activated select the active control, if there is
4889         no active control, we select the first control.
4890         * XplatUIX11.cs: If there is no focus control when we get a
4891         FocusIn event, find the toplevel form and activate it.  This
4892         occurs when you popup a window, it becomes the focus window, then
4893         you close that window, giving focus back to the main window.
4894
4895 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4896
4897         * MonthCalendar.cs: 
4898         * ThemeWin32Classic.cs: Cache Font in bold style, as well
4899         as StringFormat with Center alignments in MonthCalendar,
4900         instead of creating new ones when drawing the control. 
4901         Also, draw the month name in bold style.
4902
4903 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
4904
4905         * Control.cs:
4906           - PerformLayout(): It would seem MS performs the fill even if the 
4907             control is not visible (part of #79218 fix)
4908           - ResetBackColor(): Use the setter to reset the color, to allow
4909             overriders to catch the change.
4910         * Form.cs:
4911           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
4912           - CreateHandle(): dito (part of $79218 fix)
4913           - Don't set an icon if we have a dialog
4914         * ScrollableControl.cs:
4915           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
4916           - ScrollIntoView(): No need to scroll if control is already visible
4917             (resolves fixme and fixes #79218)
4918
4919 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4920
4921         * MonthCalendar.cs: Change proportions in SingleMonthSize
4922         to match the aspect of the original control.
4923
4924 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
4925
4926         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
4927           get updated when they get maximized.
4928
4929 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
4930
4931         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
4932
4933 2006-08-29  Chris Toshok  <toshok@ximian.com>
4934
4935         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
4936
4937 2006-08-29  Jackson Harper  <jackson@ximian.com>
4938
4939         * TreeView.cs: Need to track selected node and highlighted node,
4940         they aren't always the same thing, when the mouse is down on a
4941         node it is hilighted, but not selected yet.
4942         - Do the HideSelection stuff right
4943         - Need to focus on rbutton mouse down. And redraw selection when
4944         right click is mouse upped.
4945
4946 2006-08-29  Mike Kestner  <mkestner@novell.com>
4947
4948         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
4949         when SubItems.Count < Columns.Count.  [Fixes #79167]
4950
4951 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
4952
4953         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
4954
4955 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
4956
4957         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
4958           from X. Only send based on ConfigureNotify if we don't have the
4959           correct location in hwnd (if the window manager moved us)
4960
4961 2006-08-28  Mike Kestner  <mkestner@novell.com>
4962
4963         * ListView.cs: remove a TODO. 
4964         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
4965         [Fixes ListView part of #79166]
4966
4967 2006-08-28  Mike Kestner  <mkestner@novell.com>
4968
4969         * ListView.cs: move wheel handler to parent since it is focused
4970         instead of the item_control now.  [Fixes #79177]
4971
4972 2006-08-28  Mike Kestner  <mkestner@novell.com>
4973
4974         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
4975         when the control is focused. [Fixes #79171]
4976
4977 2006-08-28  Mike Kestner  <mkestner@novell.com>
4978
4979         * ListView.cs: size the item and header controls for empty and
4980         unscrollable views.
4981         * ThemeWin32Classic.cs: draw disabled backgrounds.
4982         [Fixes #79187]
4983
4984 2006-08-28  Chris Toshok  <toshok@ximian.com>
4985
4986         * Form.cs: remove unused "active_form" static field.
4987
4988         * Hwnd.cs: lock around accesses to static windows collection.
4989
4990         * Application.cs: lock threads in Exit ().
4991
4992 2006-08-28  Chris Toshok  <toshok@ximian.com>
4993
4994         * NativeWindow.cs: lock around accesses to window_collection.
4995         
4996 2006-08-28  Chris Toshok  <toshok@ximian.com>
4997
4998         * Control.cs: err, fix this the right way, by locking on controls
4999         when using it.  not by making it synchronized.
5000
5001 2006-08-28  Chris Toshok  <toshok@ximian.com>
5002
5003         * Control.cs: make the static "controls" field synchronized, as it
5004         gets updated from multiple threads.
5005
5006 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5007
5008         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
5009           Prevent other threads from exiting when calling thread sets quit state.
5010         * XEventQueue.cs: Added PostQuitState property
5011
5012 2006-08-27  Chris Toshok  <toshok@ximian.com>
5013
5014         * AsyncMethodData.cs: add a slot for the window handle.
5015
5016         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
5017         window (the destination control's window, not the foster window).
5018
5019         * Control.cs (BeginInvokeInternal): store the window's handle in
5020         the AsyncMethodData.
5021         
5022
5023 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5024
5025         * XplatUIX11.cs:
5026           - PostQuitMessage: Removed resetting S.D display handle, we might have
5027             another loop started after calling PostQuitMessage (Fixes #79119)
5028           - Created destructor to reset S.D handle
5029
5030 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
5031
5032         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
5033
5034 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5035
5036         * TextControl.cs (Insert): Update the caret position even if we don't
5037           have a handle yet, just don't call the driver in that case.
5038         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
5039           to the end of the new selection text (Fixes #79184)
5040
5041 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5042
5043         * Form.cs (Activate): Only activate if the handle is created)
5044         * Control.c:
5045           - Mark window as invisible when it's disposed
5046           - Check if window handle is created when setting window visible, 
5047             instead of relying just on the is_created variable
5048           - Check if object is disposed when creating the control (Fixes #79155)
5049
5050 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5051
5052         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
5053           when allowing layout again. Otherwise we re-generate the anchoring 
5054           distance to the border again and actually alter what the user wanted
5055           This is ugly, it'd be better if we used DisplayRectangle instead of
5056           ClientRectangle for Control.UpdateDistances, but that causes us to
5057           have other problems (initial anchoring positons would be wrong)
5058           (Fixes #78835)
5059
5060 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5061
5062         * Control.cs:
5063           - The size and location setters shouldn't go directly to 
5064             SetBoundsCore, but to SetBounds, which triggers layout on the
5065             parent, then calls SetBoundsCore. (Related to fix for #78835)
5066           - SetBounds: Moved actual location update code into this function
5067             from SetBoundsCore, to match MS. Added call to PerformLayout if
5068             we have a parent (to trigger resizing of anchored parents if the 
5069             child size has changed (see testcase for #78835) 
5070         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
5071           new control code
5072         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
5073
5074 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5075
5076         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
5077           System.Drawing when a toplevel window gets closed; there might
5078           be other toplevel windows belonging to the same app (Fixes #78052)
5079
5080 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
5081
5082         * FileDialog.cs: After reading FileDialog settings from mwf_config
5083           use Desktop prefix only if a real folder doesn't exist anymore.
5084         * FontDialog.cs: Added char sets.
5085           It is now possible to select the font, size or style with the
5086           textboxes.
5087
5088 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
5089
5090         * PrintPreviewDialog.cs: Use assembly name constants.
5091
5092 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5093
5094         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
5095           scrollbar from whacking it's buttons)
5096
5097 2006-08-24  Chris Toshok  <toshok@ximian.com>
5098
5099         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
5100         in this patch (aggregating setting Left/Top/Width/Height to
5101         setting Bounds on the scrollbars), but the crux of the fix is in
5102         Recalculate, where we scroll by the remaining scroll_position if
5103         we're hiding a scrollbar.  The 2*$5 reward in the comment is
5104         serious.
5105
5106 2006-08-24  Jackson Harper  <jackson@ximian.com>
5107
5108         * MdiClient.cs:
5109         * MdiWindowManager.cs: If the form is made a non-mdi window we
5110         need to remove the form closed event so that closing forms works
5111         correctly.
5112
5113 2006-08-24  Jackson Harper  <jackson@ximian.com>
5114
5115         * Control.cs: Make IsRecreating internal so that the driver can
5116         check it
5117         - Temporarily remove the Hide when controls are removed, its
5118         making a whole bunch of things not work because visibility isn't
5119         getting reset elsewhere correctly
5120         * Form.cs: Need to do a full handle recreation when the mdi parent
5121         is set.
5122         * XplatUIX11.cs: If we are recreating handles don't dispose the
5123         HWNDs.  What was happening is the handles were being recreated in
5124         SendWMDestroyMessages, but then flow continued on in that method
5125         and destroyed the new handles.
5126
5127 2006-08-23  Jackson Harper  <jackson@ximian.com>
5128
5129         * Form.cs: MdiClient is always at the back of the bus
5130         * Control.cs: When the order of items in the collection is changed
5131         we need to reset the all_controls array
5132         - do the same sorta setup thats done when adding a control when a
5133         control is set on the collection.
5134
5135 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5136
5137         * TextBoxBase.cs (get_Text): Return an empty array if our document
5138           is empty (fixes #79052)
5139
5140 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5141
5142         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
5143           on WM_SYSCHAR messages (fixes #79053)
5144
5145 2006-08-23  Chris Toshok  <toshok@ximian.com>
5146
5147         * DataGrid.cs: fix flickering when scrolling vertically.
5148
5149 2006-08-23  Chris Toshok  <toshok@ximian.com>
5150
5151         * DataGrid.cs (EndEdit): only invalidate the row header when we
5152         need to.
5153
5154 2006-08-23  Chris Toshok  <toshok@ximian.com>
5155
5156         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
5157         methods.  fixes the flicker when scrolling around.
5158
5159 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5160
5161         * FileDialog.cs: Making sure the control is created before we get a 
5162           chance to use it with BeginInvoke (Fixes #79096)
5163
5164 2006-08-23  Chris Toshok  <toshok@ximian.com>
5165
5166         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
5167         width to use when painting the rows.
5168
5169 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5170
5171         * TextBoxBase.cs:
5172           - Throw ArgumentException if a negative value is passed to SelectionLength
5173           - Update the selection end if start is moved. end needs to be always
5174             after start. (Fixes #79095)
5175           - Track selection length; MS keeps the selection length even if start
5176             is changed; reset on all other operations affection selection
5177
5178 2006-08-22  Jackson Harper  <jackson@ximian.com>
5179
5180         * TreeView.cs: Make sure both scrollbars get displayed and sized
5181         correctly when the other bar is visible.
5182         - Use the original clip rectangle for checking if the area between
5183         the two scrollbars is visible, not the viewport adjusted clipping
5184         rectangle.
5185
5186 2006-08-22  Jackson Harper  <jackson@ximian.com>
5187
5188         * Binding.cs: We don't use IsBinding because it requires the
5189         control to be created, which really shouldn't be necessary just to
5190         set a property on the control.
5191
5192 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5193
5194         * ComboBox.cs: Some CB.ObjectCollection methods must throw
5195         ArgumentNullReferenceException when the argument is null.
5196
5197 2006-08-21  Jackson Harper  <jackson@ximian.com>
5198
5199         * Timer.cs: Track the thread that the timer is started in (NOT
5200         CREATED), this way messages for it will only be triggered on its
5201         queue.
5202         * XEventQueue.cs: Track the timers here, this makes timers per
5203         thread, like MS.
5204         * XplatUIX11.cs: The timers are moved to the XEventQueue.
5205
5206 2006-08-19  Chris Toshok  <toshok@ximian.com>
5207
5208         * XplatUIX11.cs: after further communication with pdb, we get the
5209         best of both worlds.  SetZOrder working for un-Mapped windows, and
5210         no X errors for un-mapped windows.
5211
5212 2006-08-19  Chris Toshok  <toshok@ximian.com>
5213
5214         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
5215         as it was causing pdn toolbars to not have the correct stacking.
5216
5217 2006-08-18  Mike Kestner  <mkestner@novell.com> 
5218
5219         * ListView.cs : guard against negative ClientArea.Width in scrollbar
5220         calculation.  Not sure why control should ever be setting a negative
5221         width though.  Fixes #78931.
5222
5223 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5224
5225         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
5226         null items in ObjectCollection class.
5227         * ListBox.cs.: Likewise.
5228
5229 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
5230
5231         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
5232           as the base method in ThemeWin32Classic should work fine.
5233           Fixed bug #78607.
5234
5235 2006-08-18  Jackson Harper  <jackson@ximian.com>
5236
5237         * Binding.cs: When validating if the value entered doesn't convert
5238         properly reset to the old value.
5239         * RadioButton.cs: Don't fire click when we get focus.
5240
5241 2006-08-18  Jackson Harper  <jackson@ximian.com>
5242
5243         * FileDialog.cs: Paint the selection on the directory combobox the
5244         same way as on MS. 
5245
5246 2006-08-17  Jackson Harper  <jackson@ximian.com>
5247
5248         * ErrorProvider.cs: Don't allow the error control to be selected.
5249         * Control.cs: Don't send the SetFocus messages, the control
5250         activation will do this, and if we do it blindly here validation
5251         does not work.
5252
5253 2006-08-17  Jackson Harper  <jackson@ximian.com>
5254
5255         * Control.cs:
5256         * ContainerControl.cs: Make validation events fire in the correct
5257         order.  TODO: For some reason the first validation event is not
5258         getting fired.
5259
5260 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5261
5262         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
5263
5264 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5265
5266         * ComboBox.cs : implement scroll wheel support for popped-down
5267         state. Fixes #78945. 
5268
5269 2006-08-17  Jackson Harper  <jackson@ximian.com>
5270
5271         * TreeView.cs: Specify treeview actions (old patch that didn't get
5272         committed for some reason).
5273         - Don't let the mouse wheel scroll us too far.  Just want to make
5274         the bottom node visible, not scroll it all the ways to the top.
5275
5276 2006-08-17  Jackson Harper  <jackson@ximian.com>
5277
5278         * XplatUIX11.cs: Mouse wheel events go to the focused window.
5279
5280 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5281
5282         * ComboBox.cs : don't do mouseover selection in simple mode.
5283
5284 2006-08-16  Jackson Harper  <jackson@ximian.com>
5285
5286         * Form.cs: Fire the closing events for all the mdi child windows
5287         when a window is closed.  If the cancel args are set to true, the
5288         main window still gets the event fired, but it doesn't not close.
5289         * MdiWindowManager.cs: Do this closing cleanup in a Closed
5290         handler, instead of when the button is clicked, so cancelling the
5291         close works correctly.
5292         * ComboBox.cs: Send the mouse down to the scrollbar.
5293
5294 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5295
5296         * ListBox.cs: When passing 'null' to SelectedItem,
5297         set SelectedIndex to -1, to unselect items. This is the
5298         observed behaviour in .Net.
5299
5300 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
5301
5302         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
5303           MS flags saying there won't be any. (fixes #78800)
5304         * Control.cs (HandleClick): Made virtual
5305
5306 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5307
5308         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
5309           cultures. Fixed bug #78399.
5310
5311 2006-08-16  Jackson Harper  <jackson@ximian.com>
5312
5313         * Form.cs: Use the MdiClients MdiChildren property to access
5314         MdiChildren instead of creating the array from the child controls.
5315         * MdiClient.cs: Maintain a separate array of the mdi children, so
5316         that insertion order is maintained when the Z-order is changed.
5317
5318 2006-08-16  Mike Kestner  <mkestner@novell.com> 
5319
5320         * ListView.cs : add an ItemComparer and default to it for sorting.
5321         Fixes #79076, but sorting needs a complete overhaul to be compat with
5322         MS.
5323
5324 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5325
5326         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
5327
5328 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5329
5330         * Hwnd.cs (Mapped): Properly traverse the tree
5331
5332 2006-08-15  Chris Toshok  <toshok@ximian.com>
5333
5334         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
5335         pass manager.Current.GetType() to ParseData.  It has to be the
5336         property type.  So, hold off doing the ParseData until we're in
5337         SetPropertyValue where we know the type.  This fixes the crash in
5338         #78821 but the textbox is still empty.
5339
5340 2006-08-15  Chris Toshok  <toshok@ximian.com>
5341
5342         * DataGrid.cs:
5343         - when we're scrolling, only call Edit() again if the
5344         current cell is still unobscured. Fixes bug #78927.
5345         - when handling mousedown on a cell, ensure the cell is visible
5346         before calling Edit.
5347         - remove the properties from DataGridRow, and remove the
5348         DataGridParentRow class altogether.
5349         
5350
5351 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5352
5353         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
5354           fire OnTextChanged by ourselves. There's no point calling base,
5355           we don't set the base value anywhere else. Fixes #78773.
5356
5357 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5358
5359         * ListBox.cs: Call CollectionChanged when modifying
5360         an item from Items indexer, to update the actual items
5361         in the list box.
5362
5363 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5364
5365         * PrintDialog.cs: Small fixes for focus and a pair of checks,
5366         to match .Net behaviour.
5367
5368 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5369
5370         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
5371
5372 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5373
5374         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
5375
5376 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5377
5378         * MessageBox.cs: Prevent potential NRE exception.
5379         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
5380
5381 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5382
5383         * MessageBox.cs: Calculate the owner of a messagebox, also make
5384           it topmost. Fixes #78753
5385
5386 2006-08-14  Chris Toshok  <toshok@ximian.com>
5387
5388         * XplatUIX11.cs: A couple of fixes so that metacity will let us
5389         programmatically move windows.  first, set the PPosition hint as
5390         well as the USPosition hint.  Second include some code from pdb
5391         that sets the window type to NORMAL when we set the transient for
5392         hint.  This is because, in the absence of a window type, metacity
5393         thinks any window with TransientFor set is a dialog, and refuses
5394         to let us move it programmatically.  fascists.
5395
5396 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5397
5398         * XplatUIX11.cs: When setting normal hints, take into consideration
5399           an different hints previously set so we don't delete them (fixes #78866)
5400
5401 2006-08-12  Chris Toshok  <toshok@ximian.com>
5402
5403         * ToolBarButton.cs: make Layout return a boolean, if something to
5404         do with the button's layout changed.
5405
5406         * ToolBar.cs:
5407         - add another parameter to Redraw, @force, which all existing
5408           calls set to true.
5409         - make the Layout function return a boolean which is true if the
5410           layout has actually changed.  Redraw now uses this (and @force)
5411           to determine when to invalidate.  At present the only place
5412           where @force can be false is the call from OnResize, when
5413           background_image == null.  So, resizing a toolbar when the
5414           layout doesn't change results in no drawing.
5415
5416 2006-08-12  Chris Toshok  <toshok@ximian.com>
5417
5418         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
5419         the VScrollBar and HScrollbar reversed.  oops.
5420
5421         * DataGrid.cs: fix the logic that assigns sizes to the implicit
5422         scrollbars.  we were assigning them twice (once in
5423         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
5424         therefore causing two scrollbar resizes (and redraws?) to happen
5425         per grid resize.
5426
5427 2006-08-12  Chris Toshok  <toshok@ximian.com>
5428
5429         * ToolBarButton.cs: redraw the entire button if the theme tells us
5430         to.
5431
5432         * Theme.cs: add ToolBarInvalidateEntireButton.
5433
5434         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
5435         buttons, just the border.
5436
5437         * ThemeNice.cs: redraw the entire toolbar button since we need to
5438         draw the highlight image.
5439
5440         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
5441         we need to redraw the entire button (not just the border).
5442
5443 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5444
5445         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
5446           for vertical bars. Fixes the mismatches shown by #78513
5447
5448 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
5449
5450         * FileDialog.cs: If a saved/remembered path doesn't exist
5451           anymore, fall back to "Desktop".
5452
5453 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5454
5455         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
5456           parent. It's apparently legal to not have one
5457         * XplatUIX11.cs:
5458           - SetZOrder: Don't try to set Z-Order on an unmapped window
5459           - CreateWindow: 0,0 are legal coordinates for a window. don't move
5460             it unless the coordinates are negative
5461
5462 2006-08-10  Mike Kestner  <mkestner@novell.com>
5463
5464         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
5465         when setting to null per msdn docs.  Fixes #78854.
5466
5467 2006-08-10  Chris Toshok  <toshok@ximian.com>
5468
5469         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
5470         flickering by setting a clip rectangle on the Graphics when we
5471         need to redraw just a particular menuitem.  Also, rename "OnClick"
5472         to "OnMouseDown" to reflect what it actually is.
5473         
5474         * Form.cs: track the OnMouseDown change.
5475
5476 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
5477
5478         * CommonDialog.cs: Properly inherit the CreateParams from the form
5479           and only change what we need. Fixes #78865
5480
5481 2006-08-10  Chris Toshok  <toshok@ximian.com>
5482
5483         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
5484         flickering in flat mode (and most of the flickering in general) by
5485         only invalidating the button border (and not the entire rectangle)
5486         when the state changes.  A couple of cases still flicker:
5487         ToggleButtons, and the dropdown arrow case when the user mouse
5488         ups.
5489
5490 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
5491
5492         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
5493           for german keyboards. Numlock state shouldn't affect the behaviour
5494           of the Del key. Fixes bug #78291.
5495
5496 2006-08-10  Chris Toshok  <toshok@ximian.com>
5497
5498         * ListControl.cs: remove the items.Clear line from BindDataItems,
5499         as this is the first thing done by both subclasses in their
5500         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
5501         passed -1, refresh the list.  This gets databinding working when
5502         the datasource is set on the list before the datasource is
5503         populated (as in wf-apps/ReportBuilder.)
5504
5505         * ComboBox.cs: remove the argument to BindDataItems.  This call
5506         should really go away, and be initiated by the ListControl code.
5507
5508         * ListBox.cs: same.
5509
5510 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5511
5512         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
5513           if no data is in the document when the control is displayed
5514
5515 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
5516
5517         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
5518           yes (fixes #78806)
5519         * TextControl.cs: 
5520           - PositionCaret: Allow positioning of caret but don't call methods 
5521             requiring a handle if the window isn't created yet
5522           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
5523           - owner_HandleCreated: Don't position the caret, just update it's 
5524             location. User might have already set a different position
5525
5526 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5527
5528         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
5529           windows. Screws up the returned coordinates for child windows. 
5530           Fixes #78825. I'm hoping this doesn't break something, since the
5531           code was explicitly put in 8 months ago, but no bug was attached.
5532           Menus still seem to work properly.
5533
5534 2006-08-08  Chris Toshok  <toshok@ximian.com>
5535
5536         * DataGrid.cs: make BeginInit/EndInit actually do what they're
5537         supposed to do - delay data binding until the EndInit call.  Also,
5538         make the table style collection's CollectionChangeAction.Refresh
5539         work properly.
5540
5541         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
5542         (with action = Refresh) when a consituent table's MappingName is
5543         changed.
5544
5545 2006-08-08  Chris Toshok  <toshok@ximian.com>
5546
5547         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
5548         Invalidate, since changing the text can change the size of the all
5549         toolbar buttons.
5550
5551 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5552
5553         * Form.cs (AddOwnedForm): Still need to add the form to our listif
5554           we don't have it yet
5555
5556 2006-08-08  Chris Toshok  <toshok@ximian.com>
5557
5558         * PrintControllerWithStatusDialog.cs: don't .Close() the status
5559         dialog, as this causes X errors later on, since we actually
5560         destroy the window.  Instead, .Hide() it.
5561
5562 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5563
5564         * ComboBox.cs: Added focus reflection for popup window
5565         * XplatUIX11.cs: 
5566           - Removed transient setting for non-app windows for now, not sure it
5567             was needed
5568           - Fixed logic checking if we have captions when deciding 
5569             override_redirect, WS_CAPTION is two bits and a 0 check was not
5570             sufficient
5571           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
5572             complicated
5573         * Form.cs: 
5574           - AddOwnedForm: Don't just add the form to the list, call the property
5575             to ensure the driver is informed about the ownership as well
5576           - CreateHandle: Set the TopMost status in the driver if we have an owner
5577         * XplatUI.cs: Fixed debug statement
5578
5579 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
5580         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5581           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
5582           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
5583           TrackBarRenderer.cs: Make constructor private.
5584         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
5585         * ProfessionalColorTable.cs: Make properties virtual.
5586
5587 2006-08-06  Duncan Mak  <duncan@novell.com>
5588
5589         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
5590         is not changing.
5591
5592 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5593         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5594           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
5595           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
5596           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
5597           Initial import of new 2.0 classes.
5598
5599 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5600         * Application.cs: Add 2.0 VisualStyles properties.
5601
5602 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5603         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
5604           XplatUIX11.cs: Create property to allow access to existing private
5605           variable "themes_enabled"
5606
5607 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5608
5609         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
5610         file size, as otherwise our class libraries fail using windows. Fixes
5611         bug #78759.
5612
5613 2006-08-04  Jackson Harper  <jackson@ximian.com>
5614
5615         * Form.cs:
5616         * XplatUIX11.cs: Move the toolwindow window manager creation into
5617         the X11 driver, this way on win32 we can let windows create/handle
5618         the toolwindows.
5619
5620 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5621
5622         * PrintDialog.cs: Remove some redundant checks, add some others,
5623         clean some code, and move the focus to the text boxes when the
5624         values are incorrect.
5625
5626 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
5627
5628         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
5629
5630 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5631
5632         * NumericUpDown.cs: Setting the Minimum and Maximum is now
5633           handled correctly. Fixes bug #79001.
5634
5635 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5636
5637         * PrintDialog.cs: The "Copies" numeric up down must have
5638         set the Minimum property to 1; only if the value is bigger
5639         than 1, activate "Collate" check box. This is the behaviour of .Net.
5640         Also modify the Document elements only if it is not null.
5641
5642 2006-08-03  Jackson Harper  <jackson@ximian.com>
5643
5644         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
5645         length. (We have a larger array then actual node count).
5646                 
5647 2006-08-03  Jackson Harper  <jackson@ximian.com>
5648
5649         * ComboBox.cs: Don't show selection by default.
5650         - The SelectAll isn't needed here, since the focus code should do
5651         that
5652         - DDL style lists to manual selection drawing, so when they
5653         get/lose focus they have to invalidate.
5654
5655 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
5656
5657         * TextBoxBase.cs: Don't always show all selections by default.
5658
5659 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
5660         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
5661           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
5662           Fixed various typos.
5663
5664 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5665
5666         * Control.cs: Removing the controls in a ControlCollection with
5667           Clear now hides the controls as expected. Fixes bug #78804. 
5668
5669 2006-08-03  Jackson Harper  <jackson@ximian.com>
5670
5671         * Control.cs: Revert previous focus patch, it breaks reflector.
5672
5673 2006-08-03  Jackson Harper  <jackson@ximian.com>
5674
5675         * ComboBox.cs: Cleanup selection and focus with the combobox.
5676         This also eliminates some duplicated keyboard code, since now
5677         everything is handled by the main class.
5678         - Make list selection work on mouse up instead of down, to match
5679         MS.
5680
5681 2006-08-02  Jackson Harper  <jackson@ximian.com>
5682
5683         * Control.cs: Setting focus needs to go through the whole
5684         selection mechanism.
5685
5686 2006-08-02  Chris Toshok  <toshok@ximian.com>
5687
5688         * PrintPreviewDialog.cs: change MinimumSize to use
5689         base.MinimumSize so it works.
5690
5691 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
5692
5693         * TextControl.cs:
5694           - UpdateCaret: Added sanity check in case caret isn't defined yet
5695           - Line.Delete: Now updating selection and caret markers if we're
5696             transfering a node (Properly fixes #78323)
5697           - SetSelectionEnd: Added sanity check
5698         * TextBoxBase.cs: Removed broken attempt to fix #78323
5699
5700 2006-08-01  Chris Toshok  <toshok@ximian.com>
5701
5702         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
5703         Close() call is handled in Form, not here.
5704
5705 2006-08-01  Chris Toshok  <toshok@ximian.com>
5706
5707         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
5708         layout/rendering.
5709
5710         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
5711         for sizes < 100% zoom.  The code now aggressively attempts to keep
5712         from calling document.Print (), and tries not to use the scaling
5713         g.DrawImage whenever possible (it still does if you scale to >
5714         100%, since usually that involves huge images).
5715
5716         * PrintPreviewControl.cs: hook up the close button.
5717
5718 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
5719         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
5720           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
5721           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
5722           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
5723           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
5724           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
5725           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
5726           Removed [Serializable] for 2.0 Event Handlers.
5727
5728 2006-07-31  Jackson Harper  <jackson@ximian.com>
5729
5730         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
5731         * TextControl.cs: Uncomment out the body of this method.
5732
5733 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
5734
5735         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
5736           standard cursors.
5737
5738 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5739
5740         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
5741           that embed TextBox and need selections visible even if textbox is not
5742           focused to enforce that behaviour.
5743         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
5744           selection drawing
5745
5746 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5747
5748         * TextControl.cs:
5749           - Added new SetSelectionStart/SetSelectionEnd overloads
5750           - Fixed viewport width assignment to be accurate
5751           - Adjusted alignment line shift calculations to allow cursor on right
5752             aligned lines to be always visible at the right border (like MS)
5753         * TextBoxBase.cs:
5754           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
5755           - TextBoxBase_SizeChanged: recalculating canvas on size changes
5756           - CalculateScrollBars: Use ViewPort size instead of window size, to
5757             properly consider space occupied by the border and scrollbars 
5758             (Fixes #78661)
5759           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
5760             calculations; no longer leaves artifacts
5761           - CaretMoved: Adjusted window scrolling to match MS and fixed several
5762             calculation bugs (Still missing right/center align calculations)
5763
5764 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
5765
5766         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
5767           use of both scroll rect and clip rect, as they do the same.
5768
5769 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5770
5771         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
5772           in the event handler (fixes #78912)
5773
5774 2006-07-31  Chris Toshok  <toshok@ximian.com>
5775
5776         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
5777         grid.ListManager.Count, since grid.ListManager might be null.
5778         This of course begs the question "why are we drawing rows for a
5779         grid with no list manager (and therefor no rows)?"  Fixes the
5780         crash in bug #78929.
5781
5782 2006-07-31  Chris Toshok  <toshok@ximian.com>
5783
5784         * RelatedPropertyManager.cs: Don't always chain up to the parent
5785         ctor.  instead, call SetDataSource if the parent's position is !=
5786         -1.  Fixes the crash in #78822.
5787
5788 2006-07-31  Chris Toshok  <toshok@ximian.com>
5789
5790         * DataGrid.cs (get_ListManager): use field instead of property
5791         accessors for datasource and datamember.
5792         (RowsCount): make internal again.
5793         (OnMouseDown): end edits before resizing columns/rows.
5794         (OnMouseUp): restart edits after resizing columns/rows.
5795
5796 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
5797
5798         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
5799           This fixes the situation where the last set cursor is displayed
5800           whenever the mouse is over scrollbars.
5801
5802 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5803
5804         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
5805         Document properties, as well as initial values.
5806
5807 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
5808
5809         * XplatUIWin32.cs (SetBorderStyle): Setting both border
5810           and ClientEdge results in a 3-pixel border, which is
5811           wrong.
5812
5813 2006-07-28  Jackson Harper  <jackson@ximian.com>
5814
5815         * TreeNodeCollection.cs: Fix the clear method.
5816         - Fix the Shrink also
5817
5818 2006-07-27  Jackson Harper  <jackson@ximian.com>
5819
5820         * TreeView.cs: Make sure the visible order is computed when we
5821         attempt to size the scrollbars (for trees that mess with the
5822         scrolling when they shouldn't.
5823         - Make sure to give the scrollbars valid values.
5824
5825 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5826
5827         * XplatUIX11.cs: Move motion compression code to where it
5828           has less performance impact
5829
5830 2006-07-26  Jackson Harper  <jackson@ximian.com>
5831
5832         * UpDownBase.cs: When the control is selected make the child
5833         controls non selectable, so that a click on them won't do a
5834         focus/unfocus cycle.
5835         - Don't give focus to the text box when the spinner is selected.
5836         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
5837
5838 2006-07-26  Chris Toshok  <toshok@ximian.com>
5839
5840         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
5841         satisfied with this solution.  If the bitmaps are small, we should
5842         just cache them in the PrintPreviewDialog and draw them here.
5843         Also, the layout is broken for the 2-up and 3-up cases.
5844
5845         * Theme.cs: add PrintPReviewControlPaint.
5846
5847         * PrintPreviewDialog.cs: first pass implementation.
5848
5849         * PrintPreviewControl.cs: first pass implementation.  No
5850         scrollbars yet.
5851
5852         * PrintDialog.cs: only validate fields if that particular portion
5853         of the UI is enabled.  Also, set the document's controller to a
5854         PrintControllerWithStatusDialog wrapping the document's print
5855         controller.
5856
5857         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
5858         bring up a SaveFileDialog (i hope we don't want to match the
5859         behavior of the crappy windows file entry) and set the
5860         PrinterSettings.PrintFileName accordingly.
5861
5862 2006-07-26  Jackson Harper  <jackson@ximian.com>
5863
5864         * ContainerControl.cs: Add a field that disables auto selecting
5865         the next control in a container when the container is activated.
5866         * UpDownBase.cs: Don't select the text box when the up down is
5867         selected.
5868
5869 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5870
5871         * XEventQueue.cs: Added methods for peeking (used for compression
5872           of successive events)
5873         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
5874           mouse move events (fixes #78732)
5875
5876 2006-07-25  Jackson Harper  <jackson@ximian.com>
5877
5878         * UpDownBase.cs: Use an internal class for the textbox so that we
5879         can control focus.  the updown control should always have focus,
5880         if either the text area or the buttons are clicked.
5881         - Send the key messages to the textbox, since it never actually
5882         has focus
5883         - Activate and decativate the textbox caret.
5884
5885 2006-07-24  Jackson Harper  <jackson@ximian.com>
5886
5887         * Control.cs: Use the directed select when selecting a control,
5888         this way the container controls override will get called and the
5889         whole ActiveControl chain will get triggered.  TODO: probably need
5890         to make sure this gets done everywhere instead of the old
5891         Select(Control).
5892         * ContainerControl.cs: Implement the directed Select method to
5893         find and activate the correct child control.    
5894         
5895 2006-07-22  Mike Kestner  <mkestner@novell.com>
5896
5897         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
5898         menu handling code so that clicks without a grab work too.
5899         [Fixes #78914]
5900
5901 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
5902
5903         * FileDialog.cs: Enable the BackButton when dirstack has one element.
5904           Added some small optimizations.
5905
5906 2006-07-21  Matt Hargett  <matt@use.net>
5907
5908         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
5909
5910 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
5911
5912         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
5913           tests pass and match MS in some strange border cases.
5914
5915 2006-07-21  Chris Toshok  <toshok@ximian.com>
5916
5917         * ThemeWin32Classic.cs: handle drawing of the relation links and
5918         parent row buttons.
5919
5920         * Theme.cs: change args to DataGridPaintParentRow.
5921
5922         * DataGrid.cs: Don't use controls for the relation links and
5923         parent buttons, so we have to handle all their interactions in
5924         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
5925         when we're navigating through child tables, so we can reinstate
5926         selection, expanded state, current cell, etc.
5927
5928 2006-07-20  Chris Toshok  <toshok@ximian.com>
5929
5930         * ToolBar.cs: When we redraw a button, for whatever reason,
5931         there's no reason to redraw the entire toolbar.  Also, don't call
5932         Control.Refresh from within Redraw, as it's much heavier than
5933         Invalidate (which is really what we want).
5934
5935 2006-07-20  Chris Toshok  <toshok@ximian.com>
5936
5937         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
5938         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
5939         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
5940         traces from within a debug IBindingList datasource
5941         (in mono/winforms/datagrid) for *days*, I've finally gotten things
5942         to work in a similar fashion.
5943
5944 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5945
5946         * ListBox.cs: Don't call Sort () when setting 
5947         the Sorted property to false (avoid an unnecessary sort).
5948
5949 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5950
5951         * ListControl.cs: DataSource should throw an ArgumentException
5952         instead of a normal exception when the argument is not of the 
5953         correct type.
5954
5955 2006-07-20  Mike Kestner  <mkestner@novell.com>
5956
5957         * Control.cs: add InternalPreProcessMessage to allow us to steal
5958         key events before MWF gets its paws on them.  Adapted from a
5959         suggestion by eno.
5960         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
5961         up/down/left/right navigation. Override the new internal control
5962         method to steal the events since they never make it to WndProc.
5963         * ToolBarButton.cs: don't worry about pushed when setting hilight
5964         since the drawing code prefers pushed to hilight. Invalidate on 
5965         Hilight changes. Fixes #78547 and #78525.
5966
5967 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5968
5969         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
5970           the canvas size. Fixes #78868
5971
5972 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
5973
5974         * Splitter.cs: Track requested split position until first layout
5975           is performed. Fixes #78871
5976
5977 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5978
5979         * Application.cs: Removed code that forces 1.x for the version
5980           number if the version started with 0. Not sure why that code was
5981           there and I couldn't find any bugs that indicated we needed it.
5982           Fixes #78869
5983
5984 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
5985
5986         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
5987           ResetDefaults(), just write some output to the console until it's
5988           implemented. Fixes bug #78907 for now. Eliminated two warnings.
5989
5990 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
5991
5992         * PropertyGridView.cs: set StartPosition of drop down forms
5993         so they appear in correct initial spot.  Fixes #78190.
5994
5995 2006-07-19  Mike Kestner  <mkestner@novell.com>
5996
5997         * ThemeWin32Classic.cs: use parent background color when drawing
5998         flat toolbars.  Restructure the conditionals to make sure non-flat
5999         non-Divider toolbars are filled too.  Fixes #78837.
6000
6001 2006-07-19  Mike Kestner  <mkestner@novell.com>
6002
6003         * ListBox.cs: Sort on collection changes even if the handle
6004         isn't created yet.  Fixes #78813.
6005
6006 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6007
6008         * ListControl.cs: DisplayMember should never be null,
6009         and now we assign String.Empty when null is passed to it (this
6010         is the .Net way).
6011
6012 2006-07-17  Mike Kestner  <mkestner@novell.com>
6013
6014         * ListViewItem.cs: restructure Font and subitem Font handling 
6015         to hold a specific font and refer back to owner on null.
6016         Fixes #78761.
6017
6018 2006-07-17  Mike Kestner  <mkestner@novell.com>
6019
6020         * ToolBar.cs: bandaid for side-effect of previous patch which was
6021         discarding explicit heights for non-AutoSize toolbars.  Need to
6022         extend my format tester to deal with AutoSize=false. Fixes #78864.
6023
6024 2006-07-15  Jackson Harper  <jackson@ximian.com>
6025
6026         * LabelEditTextBox.cs:
6027         * TreeView.cs: Use a new LabelEdit class for node editing, this
6028         class automatically 'closes' itself when it gets the enter key or
6029         loses focus.
6030         - Use the client rectangle when setting the trees scrollbars, so
6031         border style is taken into account.
6032         
6033 2006-07-14  Jackson Harper  <jackson@ximian.com>
6034
6035         * TreeNode.cs:
6036         * TreeView.cs: Make the editing work similar to MSs, firing the
6037         events correctly and ending edits correctly.
6038
6039 2006-07-14  Mike Kestner  <mkestner@novell.com>
6040
6041         * ToolBarButton.cs:
6042         * ToolBar.cs: layout restructuring and redraw enhancements to support
6043         formatting changes gracefully, like setting TextAlign, ImageList, 
6044         ButtonSize, and Appearance.  Handles explicit button sizing quirks
6045         of the MS controls.  Things like flat toolbars ignoring button size
6046         but becoming constant sized at the largest button's size.  Normal
6047         toolbars with an image set cannot be shrunk smaller than the image,
6048         but text can be clipped/ignored.
6049         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
6050         is zero.  Seems like DrawString should be smart enough to not put
6051         anything on screen though. Also trim labels and ellipsize at the char
6052         boundary, not word.
6053         Fixes #78711 and #78483.
6054
6055 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6056
6057         * FolderBrowserDialog.cs: Disable "New Folder" button and
6058           "New Folder" contextmenu menuitem if a folder like "My Computer"
6059           is selected.
6060
6061 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6062
6063         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
6064         * FolderBrowserDialog.cs:
6065           - Use MWFConfig to store and read size and position settings
6066           - Added code to create a new folder (button or context menu).
6067             Use TreeView labeledit to change the name of the new folder.
6068
6069 2006-07-14  Jackson Harper  <jackson@ximian.com>
6070
6071         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
6072         when the tree is scrolled we end editing.
6073
6074 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6075
6076         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
6077           Down arrows
6078
6079 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
6080
6081         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
6082         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
6083         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
6084         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
6085         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
6086         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
6087         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
6088         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
6089         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
6090         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
6091         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
6092         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
6093         ListViewItemSelectionChangedEventHandler.cs,
6094         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
6095         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
6096         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
6097         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
6098         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
6099         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
6100         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
6101         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
6102         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
6103         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
6104         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
6105         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
6106         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
6107         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
6108         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
6109         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
6110         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
6111         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
6112         WebBrowserNavigatingEventHandler.cs, 
6113         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
6114
6115 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
6116
6117         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
6118         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
6119         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
6120         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
6121         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
6122         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
6123         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
6124         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
6125         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
6126         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
6127         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
6128         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
6129         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
6130         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
6131         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
6132         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
6133         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
6134         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
6135         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
6136         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
6137         ListViewItemStates.cs, MaskFormat.cs: Added
6138
6139 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
6140
6141         * PropertyGridView.cs: Fix keyboard navigation of drop down.
6142         Patch from eno for bug 78558.
6143         
6144 2006-07-13  Jackson Harper  <jackson@ximian.com>
6145
6146         * TreeView.cs: When an edit is finished make sure that the
6147         selected node is visible.
6148         - When setting the top/bottom use the scrollbars is_visible, so
6149         everything will be set correctly even if the tree isn't visible
6150         yet.
6151
6152 2006-07-13  Jackson Harper  <jackson@ximian.com>
6153
6154         * ComboBox.cs: Revert the item->index part of my previous patch.
6155         * TreeView.cs: Use LostFocus instead of Leave for detecting when
6156         the edit box has lost focus (duh).
6157         - Just make the edit box not visible when we get return, that will
6158         take the focus, which will call EndEdit
6159         * TreeNode.cs When we start editing, notify the treeview.
6160
6161 2006-07-12  Jackson Harper  <jackson@ximian.com>
6162
6163         * ComboBox.cs: Clear out old items before setting the item list.
6164         This prevents databound controls from having their items added
6165         twice.
6166         - Switch the combobox to use indices whereever possible instead of
6167         using Item's.  This allows usto navigate through lists that have
6168         more then one item with the same string value (ie a, b, b, a).
6169         - Scroll the listboxes scrollbar when a non visible item is
6170         highlighted
6171         - Allow keypress to cycle through all the possible values. For
6172         example if you have b1, b2, b3 and hold down the B key all the
6173         values will be cycled through.
6174         
6175 2006-07-12  Jackson Harper  <jackson@ximian.com>
6176
6177         * TextBoxBase.cs:
6178         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
6179         this using the internal methods.
6180         * Control.cs: Add OnGotFocusInternal.  A new method that allows
6181         controls to "override" OnGotFocus and change focus behavior if
6182         needed.
6183         - Same thing for LostFocus
6184         * ComboBox.cs: Pass off focus to the text control properly.
6185
6186 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
6187
6188         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
6189         * FolderBrowserDialog.cs: Almost a complete rewrite.
6190           - Better support for Environment.Specialfolders
6191           - Added support for MWFVFS
6192           - Made setting SelectedPath work
6193
6194 2006-07-12  Jackson Harper  <jackson@ximian.com>
6195
6196         * Control.cs: Optimze getting all the controls.
6197
6198 2006-07-11  Jackson Harper  <jackson@ximian.com>
6199
6200         * ContainerControl.cs: Override SETFOCUS in the container control,
6201         so that it is not selected on mouse click.
6202
6203 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
6204
6205         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
6206           Hopefully we will have a better way once all of focus is complete.
6207
6208 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
6209
6210         * ThemeWin32Classic.cs: Commented out some debug code and fixed
6211           a compile error with csc.
6212
6213 2006-07-11  Jackson Harper  <jackson@ximian.com>
6214
6215         * Control.cs: When hiding a control only select the next control
6216         if the current control was focused.
6217         - Don't handle enter/leave when setting/killing focus, this is
6218         done by the container control.
6219         - Remove is_selected, it's not needed anymore.
6220         - Add utility methods for selecting a child control, and for
6221         firing the Enter/Leave events.
6222         * ContainerControl.cs: When a control is activated fire the
6223         enter/leave events.
6224         - Don't wrap when processing the tab key, so that focus can be
6225         moved outside of the container.
6226         - Use the correct active control
6227
6228 2006-07-11  Jackson Harper  <jackson@ximian.com>
6229
6230         * ComboBox.cs: Remove some debug code that was blinding me.
6231         * UpDownBase.cs: These controls actually aren't implicit, they are
6232         visible to the user.
6233
6234 2006-07-10  Chris Toshok  <toshok@ximian.com>
6235
6236         * DataGrid.cs: move back to the is_adding boolean field.  god i
6237         hate this is_editing/is_adding/is_changing stuff.
6238
6239 2006-07-10  Chris Toshok  <toshok@ximian.com>
6240
6241         * DataGridTableStyle.cs: just check if the property type is bool.
6242         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
6243         Don't use CanRenderType.
6244
6245         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
6246         if our text == NullText.  Remove CanRenderType.
6247
6248         * DataGridBoolColumn.cs: nuke CanRenderType.
6249
6250         * DataGrid.cs: reenable some code to end the current edit inside
6251         of set_CurrentCell.  This fixes the other 1.1.16 regression.
6252         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
6253         Also, remove the visible_row_count arg from CalcRowHeaders, since
6254         we don't need to worry about the actual height of the area.
6255
6256 2006-07-10  Chris Toshok  <toshok@ximian.com>
6257
6258         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
6259         mode, just return.
6260
6261         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
6262         the real sense of the IsInEditOrNavigateMode property (true =
6263         navigate, false = edit).  Also, update OnKeyPress to reflect this.
6264
6265         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
6266         column style exists, we still need to set its property descriptor
6267         to match up with our list manager.
6268
6269 2006-07-10  Chris Toshok  <toshok@ximian.com>
6270
6271         * ThemeWin32Classic.cs: implement the new row/header painting
6272         approach.  The parent row painting will likely go away and
6273         replaced with label controls, but the rest seems to work ok (and
6274         efficiently).
6275
6276         * Theme.cs: change the way we draw datagrid rows.  we don't draw
6277         the row headers as a block now.  Instead we draw them in the
6278         normal draw-row loop.  Add some calls for drawing parent rows and
6279         relation rows.
6280
6281         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
6282         a default table style.  Set the defaults from ThemeEngine.Current,
6283         not SystemColors.  Fix lots of misc issues with property setters.
6284
6285         * DataGrid.cs: move loads of style information out of this class
6286         as it's being duplicated with DataGridTableStyle.  keep track of a
6287         special DataGridTableStyle for the properties we used to mirror
6288         here.  Switch all the style properties to access this table style
6289         instead of instance fields of this class.  Also add a internal
6290         class to represent parent rows (more needs to be stored here, like
6291         the selection state from the parent table, as well as the
6292         expansion state.)  Also, for datasources with relations, do the
6293         right thing for collapse/expand, and add support for the
6294         navigation/parent row buttons.
6295
6296         Lastly, fix the crash in the 1.1.16 build.
6297
6298         * GridTableStylesCollection.cs: make the explicit interface
6299         implementations call the class's methods as opposed to duplicating
6300         them.
6301
6302         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
6303         0 so the text doesn't jump around when we move the cursor.
6304
6305 2006-07-10  Jackson Harper  <jackson@ximian.com>
6306
6307         * TextBoxBase.cs:
6308         * ListBox.cs: Match MS's ToString (this makes debugging focus
6309         stuff infinitely easier).
6310
6311 2006-07-10  Jackson Harper  <jackson@ximian.com>
6312
6313         * Control.cs (SelectNextControl): When checking the control's
6314         parent use this instead of ctrl.parent so that null can be passed
6315         to SelectNextControl. (I have unit tests for this).
6316         - Remove unused var.
6317
6318 2006-07-10  Chris Toshok  <toshok@ximian.com>
6319
6320         * CurrencyManager.cs: correct one regression, the removal of the
6321         finalType field.  Also, add a MonoTODO on CanAddRows, implement
6322         Refresh() correctly, and fix some event emission in
6323         ListChangedHandler.
6324
6325 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6326
6327         * FileDialog.cs: Don't use brackets for new folders if they exist
6328           under *nix. Instead use -(number of existing folders +1).
6329
6330 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6331
6332         * FileDialog.cs:
6333           - Fixed really nasty bug #78771
6334           - Don't block the whole GUI when reading directories with a lot of
6335             entries. Use an other thread instead and call BeginInvoke to
6336             update the ListView in MWFFileView
6337
6338 2006-07-07  Chris Toshok  <toshok@ximian.com>
6339
6340         * Control.cs (Dispose): release any Capture when disposing.
6341
6342 2006-07-07  Chris Toshok  <toshok@ximian.com>
6343
6344         * LinkLabel.cs (Select): if we chain up to the parent, set
6345         focused_index to -1 so we'll search for the first available link
6346         the next time the user tabs into us.  Also, if the direction is
6347         backward and focused_index == -1, start the search from the last
6348         element.
6349
6350 2006-07-07  Chris Toshok  <toshok@ximian.com>
6351
6352         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
6353         is beyond the end of the text, don't do anything.
6354         (CreateLinkPieces): set our ControlStyles.Selectable based on
6355         whether or not we have any links.
6356         (Link.Invalidate): use a loop instead of foreach.
6357         (Link.set_Start): null out owner.sorted_links so it'll be
6358         recreated by CreateLinkPieces.
6359
6360 2006-07-06  Chris Toshok  <toshok@ximian.com>
6361
6362         * LinkLabel.cs: revert the SetStyle change.
6363
6364 2006-07-06  Chris Toshok  <toshok@ximian.com>
6365
6366         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
6367         (OnEnableChanged): s/Refresh/Invalidate
6368         (OnGotFocus): if we have a focused index already, refocus it (so
6369         if we mouse out/in to the window it'll focus the right link).
6370         (OnKeyDown): move the tab handling out of here.
6371         (OnLostFocus): don't set focused_index to -1, so we can refocus it
6372         when we lose focus.
6373         (OnMouseDown): don't Capture here - Control handles it.  Also,
6374         focus the active link.
6375         (OnMouseUp): don't deal with Capture.
6376         (OnPaintBackgroundInternal): remove.
6377         (OnTextAlignChanged): CreateLinkPieces before calling the
6378         superclass's method.
6379         (OnTextChanged): call CreateLinkPieces before calling superclass's
6380         method.
6381         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
6382         move around.
6383         (Select): implement this, moving the selection between different
6384         links, and call parent.SelectNextControl if we don't have another
6385         link to focus in the given direction.
6386         (CreateLinkPieces): call Invalidate instead of Refresh.
6387         
6388 2006-07-06  Chris Toshok  <toshok@ximian.com>
6389
6390         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
6391         new LinkLabel internals.
6392
6393         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
6394         over pieces looking for active/focused/etc links.  also, deal with
6395         runs of text (and links) with embedded \n's in them, and use
6396         MeasureCharacterRanges instead of MeasureString to figure out the
6397         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
6398         two-step.
6399
6400 2006-07-04  Jackson Harper  <jackson@ximian.com>
6401
6402         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
6403         XKB or key auto repeat, do it manually.  Without key auto repeat,
6404         when a key is held down we get key press, key release, key press,
6405         key release, ... with auto repeat we get key press, key press, key
6406         press ..., and then a release when the key is actually released.
6407
6408 2006-07-03  Jackson Harper  <jackson@ximian.com>
6409
6410         * TabControl.cs:
6411         * ThemeWin32Classic.cs: Tabs do not obey normal background color
6412         rules, they are always control color regardless of the background
6413         color.
6414
6415 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
6416
6417         * FileDialog.cs: Added internal class MWFConfig.
6418           Removed Registry support and replaced it with support for the new
6419           MWFConfig class. See MWFConfig comments for more information.
6420
6421 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
6422
6423         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
6424           rectangle. Added some patches from eno from bug #78490 and fixed
6425           the arrow position for small up and down CPDrawScrollButtons.
6426
6427 2006-06-30  Jackson Harper  <jackson@ximian.com>
6428
6429         * InternalWindowManager.cs: Remove some debug code.
6430         * Form.cs: When an MdiParent is set to null, the window is
6431         "detatched" and becomes a normal window.
6432         * MdiClient.cs: Don't bring the new child form to the front until
6433         it is activated (setting it as active does this), this makes the
6434         previously active forms titlebar get redrawn as inactive.
6435
6436 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
6437
6438         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
6439           with later controls
6440
6441 2006-06-29  Mike Kestner  <mkestner@novell.com>
6442
6443         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
6444         arrow in keynav state.  Fixes #78682.
6445
6446 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6447
6448         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
6449           order (fixes #78393)
6450
6451 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
6452
6453         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
6454           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
6455           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
6456           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
6457           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
6458           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
6459           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
6460           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
6461           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
6462           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
6463           enumerations (FlagsAttribute, SerializableAttribute, added/removed
6464           values)
6465
6466 2006-06-28  Mike Kestner  <mkestner@novell.com>
6467
6468         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
6469
6470 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6471
6472         * PropertyGrid.cs,
6473           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
6474           item lines from other area (It also makes BackColor consistent and
6475           compatible with .NET). Fixed bug #78564.
6476
6477 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
6478
6479         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
6480         Patch from Eno for #78555.
6481
6482 2006-06-27  Chris Toshok  <toshok@ximian.com>
6483
6484         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
6485
6486         * DataGridColumnStyle.cs: same.
6487
6488         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
6489         
6490         * DataGridDrawingLogic.cs: nuke.
6491
6492 2006-06-27  Chris Toshok  <toshok@ximian.com>
6493
6494         * DataGridTableStyle.cs: clean up the constructors, and build the
6495         list of child relations for this table.  I have no idea if this is
6496         where we should be doing it (it probably isn't), but since we're
6497         already iterating over the properties..
6498
6499         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
6500         struct and array for keeping track of row information, similar to
6501         what's shown in a hack on
6502         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
6503
6504         * Theme.cs: be consistent about the naming of DataGrid methods,
6505         prefering ColumnWidths and RowHeights over columnsWidths and
6506         RowsHeights.
6507
6508         * ThemeWin32Classic.cs: same, and also add support for variable
6509         sized rows (and the +/- expansion icons for related rows).
6510
6511 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6512
6513         * TextBoxBase.cs: Applied Eno's patch from #78660
6514
6515 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6516
6517         * Form.cs (ScaleCore): We don't want to scale our form if it's
6518           state is minimized or maximized, but we still need to scale our
6519           child windows. Also, added try/finally block to ensure layout
6520           gets reset (Fixes #78697)
6521
6522 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6523
6524         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
6525
6526 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6527
6528         * Form.cs: Fixed c+p error and added check to resize form if minimum
6529           size is bigger than current size (Fixes #78709)
6530
6531 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
6532
6533         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
6534
6535 2006-06-26  Mike Kestner  <mkestner@novell.com>
6536
6537         * ComboBox.cs: only do Keypress handling in the combo when there  
6538         are items in the collection. Fixes #78710.
6539
6540 2006-06-26  Chris Toshok  <toshok@ximian.com>
6541
6542         * Binding.cs: make this work bi-directionally.  also, clear up
6543         other mixups between Push/Pull Data (e.g. we're supposed to pull
6544         data when validating).
6545
6546         * BindingManagerBase.cs: trim some fully qualified collection
6547         types.
6548
6549         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
6550
6551 2006-06-23  Chris Toshok  <toshok@ximian.com>
6552
6553         * PropertyManager.cs: It appears (according to the unit tests)
6554         that PropertyManager doesn't use
6555         PropertyDescriptor.AddValueChanged to track propery value changes
6556         in its datasource, but uses the same scheme as Binding, where it
6557         looks for a <Property>Changed event and binds to it.
6558
6559         Also, according to the docs, IsSuspended always returns false for
6560         a property manager with a non-null datasource.
6561
6562 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
6563
6564         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
6565           need to update the actual DialogResult. (Fixes #78613)
6566
6567 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
6568
6569         * Form.cs (ShowDialog): Release any captures before running the
6570           new message pump (fixes #78680)
6571
6572 2006-06-22  Mike Kestner  <mkestner@novell.com>
6573
6574         * ListView.cs: Layout column widths properly in details mode even 
6575         if HeaderStyle.None is set.  Fixes #78691.
6576
6577 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
6578
6579         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
6580
6581 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
6582
6583         * Control.cs (ContainsFocus): Using new driver method to get focused
6584           window, instead of trying to use internal tracking var, which can
6585           recursion issues (Fixes #78685)
6586         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
6587           XplatUIWin32.cs: Added GetFocus method to return focused window
6588
6589 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6590
6591         * ColorDialog.cs: when the mouse button is pressed inside the color
6592         matrix, don't let the cursor move out of it until the button is
6593         released, which is the behavior on windows. Changed 'colours' by
6594         'colors' to use the same word consistently.
6595
6596 2006-06-21  Chris Toshok  <toshok@ximian.com>
6597
6598         * DataGrid.cs: add in some basic navigation stuff (navigating to a
6599         child relation and back, using a stack).  Also, remove
6600         GetDataSource and the code that calls it - it's not needed.  Also,
6601         track CurrencyManager.ListName's removal.
6602
6603 2006-06-21  Chris Toshok  <toshok@ximian.com>
6604
6605         * CurrencyManager.cs: push some of the original type checking from
6606         BindingContext.CreateBindingManager to here, and remove some of
6607         the finalType stuff.  Need more tests to make sure I've got the
6608         ListName part right, and we might need more in SetDataSource.
6609
6610         * PropertyManager.cs: add a ctor that takes just the datasource,
6611         and no property name.  Make SetDataSource work with a null
6612         property_name, and make Current return the data_source if the
6613         property descriptor is null.  this makes 'string foo = "hi";
6614         BindingContext[foo].Current' return "hi" as it should.
6615
6616         * RelatedCurrencyManager.cs: make this code more generic - there's
6617         no reason the parent manager has to be CurrencyManager, and
6618         there's no reason to pass the DataRelation.  It suffices to use a
6619         BindingManagerBase and PropetyDescriptor.
6620
6621         * RelatedPropertyManager.cs: make a similar change here.
6622         
6623         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
6624         flower I knew it could be.
6625
6626 2006-06-20  Chris Toshok  <toshok@ximian.com>
6627
6628         * PropertyManager.cs: the PropertyChangedHandler is invoked when
6629         data in the source has changed and we need to update the control,
6630         so s/PullData/PushData.
6631
6632         * CurrencyManager.cs: Refresh is meant to update the control from
6633         data in the datasource.  So, s/PullData/PushData.
6634
6635         * BindingContext.cs: add more ugliness (we weren't handling the
6636         case where data_source = DataTable and data_member = column_name).
6637
6638         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
6639         from the perspective of the datasource.  PullData pulls from the
6640         control, PushData pushes to the control.
6641
6642 2006-06-20  Chris Toshok  <toshok@ximian.com>
6643
6644         * BindingContext.cs: rewrite the CreateBindingManager code to
6645         handle navigation paths more or less properly.  This could
6646         definitely stand some more work, in particular to push the
6647         recursion up to the toplevel.  But that relies on fixes in other
6648         places (System.Data comes to mind).
6649
6650         Also, move to a flat hashtable (and encode the twolevel nature of
6651         the dictionary into the hash key).  This lets us implement the
6652         IEnumerable.GetEnumerator method.
6653
6654         * RelatedCurrencyManager.cs: new class.  Update our view based on
6655         our relation and our parent CurrencyManager's position.
6656
6657         * CurrencyManager.cs: split out some logic from the ctor into
6658         SetView, so it can be called from the new RelatedCurrencyManager
6659         subclass.
6660
6661         * RelatedPropertyManager.cs: new class.  Update our datasource
6662         based on the position of our parent CurrencyManager.
6663
6664         * PropertyManager.cs: split out some logic from the ctor into
6665         SetDataSource, so it can be called from the new RelatedDataSource
6666         subclass.  Also, make the Current getter return the value
6667         of the PropertyDescriptor, not the data_source.
6668
6669         * Binding.cs: no need to duplicate the string splitting code here.
6670
6671 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6672
6673         * Control.cs:
6674           - set_Enabled: OnEnabledChanged is not called if the inherited state 
6675             of the control is not altered, even though  we might be changing the
6676             internal state of the control (#78458)
6677           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
6678             OnEnabledChanged, to allow easy altering of any child window state
6679           - OnEnabledChanged: Added code to enable/disable driver window state
6680           - OnParentEnabledChanged: Instead of firing the event, call 
6681             OnEnabledChanged, which will fire the event and also a) set driver
6682             window state and pass the enabled state to any grandchildren (#78458)
6683
6684 2006-06-19  Jackson Harper  <jackson@ximian.com>
6685
6686         * InternalWindowManager.cs: We don't set the cursor explicitly
6687         thats done via the response to NCHITTESTs.
6688         - Don't need to adjust for titlebar heights anymore, the
6689         coordinates are coming in the correct coordinates now (see peters
6690         last patch).
6691
6692
6693 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6694
6695         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
6696           being translated relative to whole window, instead of client window.
6697           That caused broken offsets on mouseclick (and caused gas for our
6698           InternalWindowManager)
6699
6700 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6701
6702         * TextControl.cs:
6703           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
6704           - Undo(): Added replay of cursor move on DeleteChars action; added
6705             calling Undo() again if a recorded cursor move is invalid (to
6706             ensure that some action is performed on Undo)
6707         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
6708
6709 2006-06-16  Jackson Harper  <jackson@ximian.com>
6710
6711         * MdiClient.cs: Instead of just sizing maximized windows when
6712         there is a resize we also have to adjust the Y of minimized
6713         windows, so they stay pinned to the bottom of the mdi container.
6714         - Eliminate separate tracking of the active control, we can just
6715         get this from the controls collection.
6716         - Paint the decorations for the newly activated titlebar so we get
6717         a pretty blue bar.
6718         * InternalWindowManager.cs:
6719         * ThemeWin32Classic.cs: Minimized windows get all three buttons
6720         even if they are a tool window.
6721         
6722 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6723
6724         * TextControl.cs (Undo): Handle non-existent cursor locations in the
6725           undo buffer, these can happen when text was deleted and the cursor
6726           was recorded first. Since we will also have a recorded cursor
6727           after the delete this is not an issue. (Fixes #78651)
6728
6729 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
6730
6731         * AccessibleObject.cs: Remove dependence on Control.is_selected;
6732           instead properly track control states internally (allows us to
6733           remove is_selected from Control)
6734
6735 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6736
6737         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
6738         whose width is not a multiple of 8.
6739
6740 2006-06-13  Jackson Harper  <jackson@ximian.com>
6741
6742         * MdiClient.cs:  Only maximize the next child if the current one
6743         is maximized.
6744
6745 2006-06-13  Chris Toshok  <toshok@ximian.com>
6746
6747         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
6748         modified.  Also, guard against grid or grid_drawing being null in
6749         Invalidate.
6750
6751         * DataGrid.cs: Reformat tons of getters/setters.  In the
6752         DataMember setter, just call SetNewDataSource instead of
6753         duplicating some of its functionality.  In SetNewDataSource, don't
6754         check ListManager for null, since the property getter creates the
6755         object if needed.
6756
6757         * DataGridTableStyle.cs: don't set TableStyle or call
6758         SetDataGridInternal on the column here, it's done in
6759         GridColumnStylesCollection.Add.
6760
6761         * GridColumnStylesCollection.cs: fix all the explicit interface
6762         implementations to just call our methods.  Nuke AddInternal() and
6763         move the body of it to Add().  Also, add a call to
6764         column.SetDataGridInternal to Add().
6765
6766         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
6767         base()+duplicate code.  Also, use the Format property instead of
6768         format to generate an Invalidate ala MS.  Lastly, create the
6769         textbox here, unconditionally.
6770         (set_Format): call Invalidate.
6771         (get_TextBox): no need to call EnsureTextBox.
6772         (Commit): remove the message box.
6773         (Edit) remove the call to EnsureTextBox.
6774         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
6775         (EnterNullValue): no need to check textbox for null.
6776         (HideEditBox): no need to check textbox for null.
6777         (SetDataGridInColumn): add the textbox to the grid's controls.
6778         (EnsureTextBox): nuke.
6779         
6780 2006-06-13  Jackson Harper  <jackson@ximian.com>
6781
6782         * MdiWindowManager.cs: Hook up to the maximized menus paint event
6783         and redraw the buttons when needed. Unhook when the window is
6784         unmaximized.
6785         * MainMenu.cs: Add an internal Paint event, the mdi window manager
6786         needs this so that it can redraw its buttons when the menu is
6787         repainted.
6788         * InternalWindowManager.cs:
6789         * Form.cs: The method order has changed for DrawMaximizedButtons,
6790         so that it can be a PaintEventHandler.
6791         
6792 2006-06-13  Jackson Harper  <jackson@ximian.com>
6793
6794         * MdiClient.cs: When we close a maximized mdi window, the next mdi
6795         window is activated and maximized, even if it wasn't before.
6796         - When  a new window is activated repaint the decorations of the
6797         old one, so that it no longer has the Active "look" (the blue
6798         titlebar).
6799         * InternalWindowManager.cs: Open up CreateButtons to base classes
6800         so they can recreate the buttons on state changes.
6801         - If a window is maximized give it all three buttons
6802         * MdiWindowManager.cs: Create the titlebar buttons when the state
6803         is changed, this is needed because a toolwindow will not have all
6804         three buttons until it is maximized.
6805
6806 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
6807
6808         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
6809           Fixed bug #78609.
6810
6811 2006-06-12  Jackson Harper  <jackson@ximian.com>
6812
6813         * KeysConverter.cs: Make sure we handle the Ctrl special case
6814         if its the only key.
6815         
6816 2006-06-12  Jackson Harper  <jackson@ximian.com>
6817
6818         * Theme.cs: Add a method to get the size of a managed window
6819         toolbar button.
6820         * InternalWindowManager.cs: Remove the ButtonSize property, this
6821         should be retrieved from the theme.
6822         * MdiWindowManager.cs: Get the button size from the theme
6823         * ThemeWin32Classic.cs: Make the method to get the managed window
6824         titlebar button size public.
6825         - Handle the different button sizes of maximized toolwindows
6826         (should match any maximized window).
6827         - Get the titlebar height from the theme, not the WM (which gets
6828         it from the theme).
6829
6830 2006-06-12  Jackson Harper  <jackson@ximian.com>
6831
6832         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
6833         event down to the mdi window manager.
6834         - Expose some extra stuff to base classes
6835         - Make sure to end the Capture on an NC Mouse up, so that we can
6836         get double clicks properly, and the sizing doens't stick.
6837         - When doing PointToClient contain it in the workable desktop
6838         area, this prevents windows from changing size when the cursor is
6839         pulled outside of the working area while sizing.
6840         * MdiWindowManager.cs: When we get a double click maximize the
6841         window.
6842         - Reset the cursor after handling mode changes.
6843
6844 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
6845
6846         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
6847           current desktop, instead of just assuming a 0, 0 origin. This
6848           is needed for our internal window manager, to know the top
6849           margin of the desktop
6850
6851 2006-06-12  Chris Toshok  <toshok@ximian.com>
6852
6853         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
6854         we need this to get rid of the selected background in the bool
6855         column.
6856         (CancelEditing): move the ConcedeFocus call to above the Abort
6857         call.  Also, set is_changing to false and invalidate the row
6858         header if we were changing before.
6859         (ProcessKeyPreviewInternal): remove, since noone outside this
6860         class calls it anymore.  Roll the code into ProcessKeyPreview.
6861         (EndEdit): remove the internal version.
6862         (InvalidateCurrentRowHeader): make private.
6863
6864         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
6865         Keys.Escape handling (and with it the last call to
6866         DataGrid.EndEdit from outside the class.)
6867
6868
6869 2006-06-12  Chris Toshok  <toshok@ximian.com>
6870
6871         * DataGridTextBox.cs (.ctor): isedit defaults to false.
6872         (OnKeyPress): set isedit to true.
6873         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
6874         already handled by the grid.
6875
6876         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
6877         right.  ugh.
6878         (set_DataSource): SetDataSource always returns true, so stop
6879         putting it in an if statement.
6880         (EndEdit): get rid of some {}'s
6881         (ProcessGridKey): return true in case Keys.Escape.
6882         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
6883         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
6884         PositionChanged, stopped connecting to CurrentChanged.
6885         (GetDataSource): simplify this a bunch.
6886         (SetDataSource): change return type from bool to void.
6887         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
6888         to this, and make sure we don't set ListManager.Position inside
6889         set_CurrentCell.
6890         (OnListManagerItemChanged): if we're passed an actual index,
6891         redraw that row.
6892
6893         * CurrencyManager.cs (set_Position): don't call PullData here.
6894
6895 2006-06-09  Jackson Harper  <jackson@ximian.com>
6896
6897         * TreeNode.cs:  Recalculate the visible order before doing the
6898         Expand/Collapse Below calls, because those calls generate an
6899         expose.
6900         - Reduce calls to the TreeView property, which is mildly expensive
6901         by using a local var.
6902         * Form.cs: Layout the MDI child windows when creating the parent
6903         form.
6904         - Don't use the internal constructor anymore
6905         * MdiClient.cs: use the parent form width/height (if available)
6906         when laying out the child windows, we do this because the
6907         mdiclient isn't docked yet when the initial layout is done.
6908         - Don't need an internal constructor anymore.
6909
6910 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6911
6912         * FileDialog.cs: handle access errors when trying to create a folder
6913         or changing to a directory. No need to initialize out parameters.
6914
6915 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6916
6917         * FileDialog.cs: Append a number when creating a new folder if the
6918           folder already exists (use parenthesis instead of square brackets)
6919
6920 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6921
6922         * FileDialog.cs:
6923           - Disabled registry support for windows and added better registry
6924             error checking for other systems (need to investigate why it
6925             works perfectly on my system)
6926           - If a folder already exist show an error MessageBox instead of
6927             trying to create an indexed name.
6928           - Fixed a non intentional typo.
6929
6930 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6931
6932         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
6933
6934 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6935
6936         * FileDialog.cs: When creating a new folder don't crash if the
6937           folder already exists.
6938
6939 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6940
6941         * FileDialog.cs: Allmost a complete rewrite.
6942           - added a "virtual" file system that handles the differences
6943             between unix and windows file systems (especially the directory
6944             structure). Moved most of the directory and file handling code
6945             into the vfs.
6946             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
6947             UnixFileSystem and FSEntry.
6948           - Recently used folder/directory, size, location and used file names
6949             (file name ComboBox) are now stored in the registry and get read
6950             before the dialog shows up (fixes part 6 of bug #78446).
6951           - Creation of new folders/directories is now possible (context menu
6952             or ToolBar). Added TextEntryDialog for this that fills in the gap
6953             until ListView.LabelEdit works.
6954           - Fixed cursor handling (bug #78527) and focus handling for
6955             PopupButtonPanel
6956           - Various "Search in" ComboBox enhancements. The content of the
6957             dropdown listbox now almost matches ms.
6958           - Changed the behaviour when the user switches to SpecialFolder
6959             Recent to show the ListView in View.Details.
6960           - Beside using the ToolBar to change the View property of the
6961             file ListView it is now possible to use the context menu too.
6962
6963 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6964
6965         * ComboBox.cs: Don't create a new ObjectCollection when an item
6966           gets inserted. Just insert the item in the existing object_items
6967           ArrayList.
6968
6969 2006-06-08  Jackson Harper  <jackson@ximian.com>
6970
6971         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
6972         that the treeview and root node checks are done also, this fixes a
6973         regression i caused in the unit tests.
6974
6975 2006-06-07  Wade Berrier <wberrier@novell.com> 
6976
6977         * RichTextBox.cs: More ISO8859-1 -> unicode
6978
6979 2006-06-07  Mike Kestner  <mkestner@novell.com>
6980
6981         * ComboBox.cs : use items to hold highlight/selection so that
6982         collection insertions don't require synchronization.
6983
6984 2006-06-07  Jackson Harper  <jackson@ximian.com>
6985
6986         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
6987         routine.  We now always keep the sized edge at the cursor instead
6988         of computing movement and adjusting rects.  There is one buglet
6989         with this method though when the cursor is moved over area that
6990         the window can not expand too (such as the toolbars on the desktop).
6991
6992 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6993
6994         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
6995         here. Fixes crash on startup in AlbumSurfer.
6996
6997 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
6998
6999         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
7000           values
7001
7002 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7003
7004         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
7005         statement to avoid calling XNextEvent which will block if another thread
7006         took the event that we were expecting. Fixes bug #78605.
7007
7008 2006-06-07  Mike Kestner  <mkestner@novell.com>
7009
7010         * ListView.cs : isolated checkbox clicking from the selection logic.
7011         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
7012
7013 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7014
7015         * Form.cs: Check that the value passed to Form.DialogResult
7016         is a valid enum value.
7017
7018 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7019
7020         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
7021         Computer'. Clicking it in the network view goes to 'My Computer'.
7022         Added CIFS filesystem type. Display the mount point of filesystems.
7023         Avoid duplicate mount points (happens for me with CIFS);
7024
7025 2006-06-06  Jackson Harper  <jackson@ximian.com>
7026
7027         * InternalWindowManager.cs: Draw the maximized windows buttons
7028         when resizing.
7029
7030 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7031
7032         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
7033         all other dialogs. Fixes bug #78585.
7034
7035 2006-06-06  Mike Kestner  <mkestner@novell.com>
7036
7037         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
7038         Only invalidate checkbox on checkstate changes to avoid flicker.
7039         * ListBox.cs : avoid unselect/select when clicking selected item.
7040         avoid reselection flicker for already multiselected items.
7041         Fixes #78382.
7042
7043 2006-06-06  Jackson Harper  <jackson@ximian.com>
7044
7045         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
7046         the parent form so that the menu is removed if needed.
7047
7048 2006-06-06  Mike Kestner  <mkestner@novell.com>
7049
7050         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
7051         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
7052
7053 2006-06-06  Mike Kestner  <mkestner@novell.com>
7054
7055         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
7056
7057
7058 2006-06-06  Jackson Harper  <jackson@ximian.com>
7059
7060         * Control.cs: Use the property (instead of the field) to get the
7061         default cursor so it is instantiated correctly.
7062         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
7063         resizes so we need to manually repaint the window decorations here.
7064         - Set the titlebar button locations as soon as they are created,
7065         otherwise they are not set correctly on win32.
7066         
7067 2006-06-06  Chris Toshok  <toshok@ximian.com>
7068
7069         * CurrencyManager.cs (set_Position): call PullData before
7070         OnCurrentChanged.
7071         (AddNew): after calling IBindingList.AddNew, update our
7072         listposition, and call OnCurrentChanged/OnPositionChanged (without
7073         calling PullData).
7074         (OnCurrentChanged): remove the call to PullData from here.
7075         (OnItemChanged): remove the call to PushData from here.
7076         (OnPositionChanged): change the test from == null to != null to
7077         match the other methods.
7078         (ListChangedHandler): the grossest part of the patch.  Implement
7079         this such that it passes the unit tests in CurrencyManagerTest and
7080         the output more or less matches that of MS's implementation.
7081  
7082 2006-06-06  Mike Kestner  <mkestner@novell.com>
7083
7084         * ListView.cs : only update check state on single click.
7085         * ThemeWin32Classic.cs : fix focus drawing for details view without
7086         fullrowselect.  Fixes #78454.
7087         * XplatUIX11.cs : fix for double click emission.
7088
7089 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
7090
7091         * PropertyGridView.cs : Applied Atsushi's patch to fix
7092         font dialog bug  (#78197).
7093
7094 2006-06-05  Jackson Harper  <jackson@ximian.com>
7095
7096         * TreeNode.cs: Compute the next node for expanding/collapsing
7097         correctly. We now factor in nodes without a NextNode
7098         correctly. (Fixes somes cases in nunit-gui).
7099         * InternalWindowManager.cs: Set the bounds when updating the
7100         virtual position of a tool window.
7101         
7102 2006-06-05  Chris Toshok  <toshok@ximian.com>
7103
7104         * DataGrid.cs: rename cached_currencymgr to list_manager.
7105         (set_CurrentCell): move SetCurrentCell code here, and clean it up
7106         some.
7107         (CurrentRow, CurrentColumn): single accessors so we can make the
7108         cursor movement code a lot easier to understand.
7109         (CurrentRowIndex): implement this in terms of CurrentRow.
7110         (BeginEdit): clean this up a bit.
7111         (CancelEditing): sort out the is_editing/is_changing/is_adding
7112         stuff a little.
7113         (EndEdit): minor changes.
7114         (OnKeyDown): add a comment about a (most likely) unnecessary
7115         check.
7116         (OnMouseDown): cancel editing when we click on a row header.  And
7117         use the CurrentRow setter, not CurrentCell.
7118         (ProcessDialogKey): directly call ProcessGridKey.
7119         (UpdateSelectionAfterCursorMove): factor out this common block of
7120         code (it's used everywhere that we move the cursor by updating row
7121         or column).
7122         (ProcessGridKey): pretty substantial overhaul.  Use the
7123         CurrentRow/CurrentColumn properties to make the code a lot more
7124         readable.  Only use the CurrentCell property when we have to
7125         modify both row and column at once.  Tab behavior is still broken,
7126         and Delete is untested.
7127         (Select): if we have no selected rows, set selection_start to
7128         @row.
7129         (EditCurrentCell): rename EditCell this.  It was only ever invoked
7130         with CurrentCell as the arg, so drop the arg and rename it.
7131
7132         * DataGridColumnStyle.cs: clean up the constructors a little, and
7133         drop CommonConstructor().
7134
7135         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
7136         actually get notified when the user hits it.
7137         (ProcessKeyMessage): *substantially* simplify this method.
7138         There's no reason (that I can see) for the textbox to be making
7139         calls into the datagrid at all.  Remove all of them but the ones
7140         for Enter handling.  those will take some more work.
7141
7142         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
7143         calling HideEditBox.
7144         (HideEditBox): if we have an active textbox, render it invisible
7145         without causing a re-layout of the datagrid.
7146
7147 2006-06-05  Mike Kestner  <mkestner@novell.com>
7148
7149         * ListView.cs : fix NRE crasher when focuseditem is cleared by
7150         collection changes by resetting it to Items[0].  Fixes #78587.
7151
7152 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7153
7154         * MessageBox.cs: if the height of the text is larger than the icon_size,
7155         use that. Fixes bug #78575.
7156
7157 2006-06-05  Jackson Harper  <jackson@ximian.com>
7158
7159         * TreeView.cs: Fix line drawing when scrolling.  To do this each
7160         node is basically responsible for drawing its entire horizontal
7161         area.  When drawing a node it draws its parent node lines if
7162         needed.
7163         - Adjust the clip area to the viewport rectangle
7164         - Fix Left/Right key handling to match MS. (It expand/collapses
7165         and moves to parents/first child but does not move selection to
7166         sibling nodes).
7167         - Fix SetTop to work with new bound calculation code
7168         - When scrollbars are no longer needed we need to reset scrolling
7169         vars and recalculate the visible order so the redraw is correct
7170         * TreeNode.cs: We can't expand/collapse nodes with no children.
7171
7172 2006-06-03  John Luke  <john.luke@gmail.com> 
7173
7174         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
7175         so the colors work without dev packages
7176         
7177 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
7178
7179         * Control.cs 
7180           - Select: Implemented to just use activate. Seems to match MS 
7181             behaviour closest. Documented to only do actual control walking 
7182             based on it's parameters if in a container control so I moved 
7183             the code there.
7184           - Removed selection check logic from our internal Select() method
7185         * ContainerControl.cs:
7186           - Select: Moved selection logic from Control here, since MS documents
7187             that containers obey the bool arguments. No longer calling base
7188
7189 2006-06-02  Jackson Harper  <jackson@ximian.com>
7190
7191         * TreeView.cs: If the selected node isn't changed when we get
7192         focus update the previously selected node so that we see the
7193         selection box.
7194
7195 2006-06-02  Mike Kestner  <mkestner@novell.com>
7196
7197         * ComboBox.cs: restructure grab and general mouse event handling.
7198         Make the composite control raise mouse events like it was a single
7199         control for leaves/enters/motion/up/down events.  fix dropdown list
7200         coordinate mangling and refactor it into the scrollbar subclass to
7201         reduce code duplication.  Fixes #78282 #78361 and #78457.
7202
7203 2006-06-02  Mike Kestner  <mkestner@novell.com>
7204
7205         * ScrollBar.cs: remove Capture setting/clearing, as it happens
7206         automatically in the Control.WndProc.
7207
7208 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7209
7210         * FileDialog.cs: fix crash when running SharpChess, which sets the
7211         FilterIndex to 2 with only one Filter.
7212
7213 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7214
7215         * ToolBar.cs: add SizeSpecified property.
7216         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
7217         try to figure out our real size, otherwise fallback to what the
7218         container says.
7219
7220 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7221
7222         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
7223         * Control.cs (WndProc): MS always calls the DefWndProc to pass
7224           up the event
7225
7226 2006-06-01  Mike Kestner  <mkestner@novell.com>
7227
7228         * ListView.cs: revamp the focus management in ListView.  It still
7229         causes churn of LostFocus/GotFocus emissions on clicks, but it's
7230         better than not handling focus at all.  Will revisit when pdb feels
7231         the general focus handling is solid.  Fixes #78526.
7232
7233 2006-06-01  Jackson Harper  <jackson@ximian.com>
7234
7235         * TreeView.cs: Set the default border style in the constructor.
7236         - Move painting to use OnPaintInternal instead of capturing
7237         WM_PAINT, this is the correct way of doing things
7238         - UpdateBelow shouldn't invalidate the scrollbar area
7239         - Cap the top on update below in case the node was above the top
7240         of the viewport rectangle.
7241         - ExpandBelow and Collapse below need to obey Begin/End Update.
7242         * TreeNode.cs: Make is_expanded internal so the treenode
7243         collection can change it without firing the whole event chain.
7244         * TreeNodeCollection.cs: When clearing all the child nodes make
7245         sure to recalc the visible order.
7246         - Improve algo for remove the top node
7247
7248 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7249
7250         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
7251           SendMessage directly calling window procedures, which in turn might
7252           call SetFocus()
7253
7254 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
7255
7256         * Control.cs: Don't handle WM_SETFOCUS if the same window already
7257           has focus (works around X11 sending a FocusIn after our SetFocus)
7258         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
7259
7260 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
7261
7262         * Mime.cs: Fix for the NET_2_0 build.
7263           NameValueCollection needs StringComparer now.
7264
7265 2006-05-31  Chris Toshok  <toshok@ximian.com>
7266
7267         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
7268         return (via an out parameter) the starting X of the column.
7269         (UpdateVisibleColumn): track change to FromPixelToColumn.
7270         (HitTest): add a ColumnResize case here.
7271         (DrawResizeLine): new function, probably poorly named.
7272
7273         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
7274         only need to keep one reference.
7275         (set_ListManager): same.
7276         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
7277         Also, add support for HitTestType.ColumnResize.
7278         (OnMouseMove): add column resize behavior here, and change the
7279         cursor to the correct one as we move around the datagrid.
7280         (OnMouseUp): terminate the column resize if we're resizing.
7281         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
7282         for the current cell.
7283         (ConnectListManagerEvents): use cached_currencymgr.
7284         (DisconnectListManagerEvents): fill this in, using
7285         cached_currencymgr.
7286         (SetCurrentCell): remove cached_currencymgr_events handling.
7287         (SetDataMember): only call DisconnectListManagerEvents if
7288         cached_currencymgr is != null.
7289         (SetDataSource): same.
7290         (OnListManagerCurrentChanged): cached_currencymgr_events ->
7291         cached_currencymgr.
7292
7293 2006-05-31  Jackson Harper  <jackson@ximian.com>
7294
7295         * BindingManagerBase.cs: Remove somedebug code that creeped into
7296         SVN.
7297         * TreeNode.cs: We get the indent level dynamically right now, so
7298         don't track it as a member.
7299         * TreeNodeCollection.cs: Make sure all nodes added to the list
7300         have parents, treeviews/topnodes setup properly.
7301         - Don't attempt to track indent level.
7302
7303 2006-05-30  Jackson Harper  <jackson@ximian.com>
7304
7305         * BindingContext.cs: Create the currency manager tables here.
7306         This allows us to more easily create null tables (when bad data
7307         members are used), and more easily create related currency
7308         managers.
7309         * CurrencyManager.cs: All the table creation stuff is done by the
7310         binding context now.
7311         - Current should throw an exception if listposition is -1.
7312         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
7313         been bound yet.
7314
7315 2006-05-30  Mike Kestner  <mkestner@novell.com>
7316
7317         * ListView.cs: allow reexpansion of zero-width column headers.
7318         Fixes #78528.
7319
7320 2006-05-28  Chris Toshok  <toshok@ximian.com>
7321
7322         * CurrencyManager.cs (get_Current): after the late binding
7323         listposition = -1 fix, we need to guard against it here and return
7324         null, otherwise we raise an exception (which is swallowed
7325         elsewhere, and breaks datagrid databinding.)
7326
7327 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7328
7329         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
7330           than WM_SYSKEY, don't throw if get something unexpected (#78507)
7331
7332 2006-05-26  Jackson Harper  <jackson@ximian.com>
7333
7334         * ControlPaint.cs:
7335         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
7336         values, it's faster and it's all we care about (we don't care if
7337         the names aren't equal).
7338         * KeyboardLayouts.cs: Eliminate some dead code.
7339         - Lazy init things
7340         * X11Keyboard.cs: Lazy init keyboard detection.
7341         - Cleanup access modifiers a little.
7342
7343 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7344
7345         * XplatUIX11.cs: Once again, attempting to get layout just right.
7346
7347 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
7348
7349         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
7350           the sizes of each link section, that will result in sizes that
7351           match DrawString's layout (Fixes #78391)
7352
7353 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
7354
7355         * FileDialog.cs: If AddExtension property is true autocomplete the
7356           extensions in SaveFileDialog correctly. Fixes bug #78453.
7357           Set MyNetwork and MyComputer to "C:\" for windows. This should
7358           fix part 8 of bug #78446 for now.
7359
7360 2006-05-26  Chris Toshok  <toshok@ximian.com>
7361
7362         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
7363         invalidate the current row header if we need to, but presumably
7364         we'll invalidate the row corrsponding to the bounds or
7365         editingControl.
7366         (GridHScrolled): switch back to this method, as it's part of the
7367         public api.  *sigh*.
7368         (GridVScrolled): same.
7369         (OnMouseWheel): hack up something that more or less works.  Call
7370         GridHScrolled/GridVScrolled directly, instead of duplicating much
7371         of their code here.
7372         (EnsureCellVisibility): reinstate a bunch of this code, since we
7373         can't just set the scrollbar Value and expect to do all the work
7374         in the ValueChanged handler.  Also, Call Update() after scrolling
7375         in one direction so the other XplatX11.ScrollWindow call has the
7376         proper stuff in the proper places.
7377         (EditCell): set is_editing to true before calling .Edit.
7378
7379         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
7380         don't bother comparing first.
7381         (OnKeyPress): call grid.ColumnStartedEditing before calling
7382         base.OnKeyPress.  this will set is_changing and invalidate the row
7383         header if necessary.
7384         (ProcessKeyMessage): for WM_CHAR messages, call
7385         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
7386         and WM_KEYDOWN.
7387         
7388         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
7389         it's done in the DataGrid.
7390         (NextState): call grid.ColumnStartedEditing, which takes care of
7391         invalidating the row header (and setting is_changing).
7392
7393         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
7394         here.  it's done in the DataGrid.
7395
7396 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7397
7398         * Control.cs: allow changing the cursor when the mouse position is
7399         out of bounds but Capture is set.
7400         * LinkLabel.cs: handle the case when the mouse button is pressed on the
7401         linklabel but released somewhere else.
7402
7403 2006-05-25  Jackson Harper  <jackson@ximian.com>
7404
7405         * TreeView.cs: When we get focus if there is no selected node make
7406         it the top node
7407         - Remove some uneeded setup code from Draw.
7408         * TreeNodeCollection.cs: If the tree doesn't have a top node when
7409         a new node is inserted make the new node the top.
7410         * XplatUIX11.cs:
7411         * Timer.cs: Use Utc time so that no local time zone stuff needs to
7412         be used (should be faster).
7413         
7414 2006-05-25  Chris Toshok  <toshok@ximian.com>
7415
7416         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
7417         problem with the last commit.
7418
7419 2006-05-25  Chris Toshok  <toshok@ximian.com>
7420
7421         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
7422         need the invalidate call here, while scrolling right-to-left via
7423         the left arrow key (i.e. moving the editing cell while scrolling).
7424
7425         * DataGrid.cs (.ctor): remove the initialization of
7426         ctrl_pressed/shift_pressed.  We no longer track them using key
7427         up/down handlers, but by using Control.ModifierKeys.  Also, switch
7428         to using ValueChanged handlers on the scrollbars instead of
7429         Scrolled event handlers.  This simplifies a bunch of the scrolling
7430         code.
7431         (GridHValueChanged): rename from GridHScrolled, and change it to
7432         work with the new event args.
7433         (GridVValueChanged): same.
7434         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
7435         (OnMouseWheel): actually scroll the datagrid.  Don't change the
7436         selected cell.
7437         (ProcessGridKey): correct all the keyboard navigation stuff I
7438         could find.  Ctrl up/down/left/right/home/end work now.
7439         (EnsureCellVisibility): correct method name spelling.  Also,
7440         simplify this a touch by not explicitly calling the
7441         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
7442         scrollbar value.
7443         (OnKeyUpDG): no need for this method now.
7444         
7445 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7446
7447         * LinkLabel.cs: display the OverrideCursor when hovering the label.
7448         Fixes bug #78392.
7449
7450 2006-05-25  Chris Toshok  <toshok@ximian.com>
7451
7452         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
7453         r61019.
7454
7455 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7456
7457         * Application.cs: Moved setting of is_modal and closing to before
7458           we create the control, to allow the event handlers called as a
7459           result of creation affect closing. Also removed Gonzalo's previous
7460           change to setting DialogResult, the behaviour has been moved to 
7461           Form.ShowDialog()
7462         * Form.cs: 
7463           - ShowDialog(): Removed explicit creation of the form, let RunLoop
7464             handle it instead
7465           - ShowDialog(): If no dialog result is set, we need to return Cancel
7466           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
7467             the close is cancelled
7468
7469 2006-05-25  Jackson Harper  <jackson@ximian.com>
7470
7471         * StatusBar.cs: We only need to update the sizes of the other
7472         panels when we have auto size contents.  Also we are only updating
7473         the contents of the panel, not the borders, so compensate for the
7474         border width (TODO: get this width from the theme somehow).
7475         * TreeView.cs: Scrollable is true by default
7476         - Use invalidate instead of refresh where needed
7477         - Factor the scrollable value into scrollbar updating
7478         - Update the scrollbars if the Scrollable property is altered
7479         - Update the selected node if its ImageIndex is changed
7480         - Handle null nodes in UpdateNode (mainly so we don't have to
7481         check if selected is null when updating it
7482         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
7483         are factored into the visible count
7484         - Use VisibleCount for clarity in the code
7485         - When the font is changed we need to recurse through all the
7486         nodes and invalidate their sizes
7487         
7488 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7489
7490         * Application.cs: set the DialogResult to fixed when the main form is
7491         hidden or destroyed while being modal.
7492
7493 2006-05-25  Miguel de Icaza  <miguel@novell.com>
7494
7495         * Theme.cs: Use Tangoified messagebox icons. 
7496
7497         (GetSizedResourceImage): Also cope with width = 0 and do not
7498         trigger a warning in that case (0 means "give me your icon from
7499         the resouce, no special size needed).
7500
7501 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7502
7503         * Application.cs: Leave runloop if the the main modal form is 
7504           hidden (fixes #78484)
7505
7506 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7507
7508         * BindingContext.cs : reject null datasource in Contains() and
7509           Item[].
7510         * CurrencyManager.cs : check data_member validity when data_source
7511           is dataset. When it is late binding, the initial position is -1.
7512
7513 2006-05-24  Jackson Harper  <jackson@ximian.com>
7514
7515         * TreeNodeCollection.cs: Dont't recalculate the visible order on
7516         inserted nodes that aren't visible.  This changes the
7517         max_visible_order which confuses scrollbar settings.
7518         - Use the enumerator to get the prev node instead of duplicating
7519         code.
7520         * TreeView.cs: Use new method for setting scrollbar values
7521         - Don't set the bounds every time the scrollbar is updated
7522         - When updating below the root node use an invalidate instead of a
7523         refresh to prevent the child controls (scrollbars) from being
7524         refreshed. (UpdateBelow still needs to be reworked anyways).
7525         - Reenable SetBottom now that visible orders are set correctly,
7526         added some debug code incase we ever get bad values there again.
7527         - Set the scrollbar max to 2 less then the max value, this
7528         compensates for the max value being one above the node count, and
7529         for scrollbars adding one extra "notch".
7530         - When drawing image nodes if there is an imagelist we draw the
7531         first image in the list if the supplied image index is out of the
7532         image list's bounds.
7533         
7534 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7535
7536         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
7537           we receive a size change from the WM (Fixes #78503)
7538
7539 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
7540
7541         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
7542           rectangle (Fixes #78501)
7543
7544 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7545
7546         * ButtonBase.cs: 
7547           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
7548             as a bitfield.
7549           - Fixed MouseMove to no longer switch pressed state unless the left
7550             mouse button is pressed. Atsushi provided the original patch (#78485)
7551           
7552 2006-05-24  Jackson Harper  <jackson@ximian.com>
7553
7554         * ScrollBar.cs: New internal methods that allow us to change a
7555         couple values on the scrollbar (the most common case is maximum
7556         and large change) without getting multiple invalidates.
7557
7558 2006-05-24  Chris Toshok  <toshok@ximian.com>
7559
7560         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
7561         (Edit): save off the original state in oldState, and set
7562         grid.is_editing to true.
7563         (OnKeyDown): abort editing if escape is pressed.  also, call
7564         NextState if space is pressed.
7565         (OnMouseDown): call NextState.
7566         (NextState): factor out shared code from OnKeyDown and OnMouseDown
7567         here.  Also, only invalidate the row header once (on the initial
7568         is_changing switch) to save on redraws.
7569
7570 2006-05-24  Chris Toshok  <toshok@ximian.com>
7571
7572         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
7573         if the value in the cell is different than it was before.  This
7574         keeps us from triggering a layout when we move around a datarid
7575         with a highlighted cell.
7576         (Edit): suspend layout when creating/positining the text box, and
7577         resume passing false so we don't ever actually re-layout.
7578         (ReleaseHostedControl): same.
7579         (EnsureTextBox): reformat slightly, and set WordWrap to false.
7580
7581         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
7582         control-key sequences should go to the datagrid - remove that
7583         lock.  Also, modify the conditions under which we move between
7584         cells when moving the cursor within a cell, and remove the "this"
7585         and "base" from field accesses.  We weren't even consistent, given
7586         they all were in the base class.
7587
7588 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
7589
7590         * Binding.cs : (.ctor)
7591           An obvious NRE fix for BindingTest.CtorNullTest().
7592
7593 2006-05-23  Chris Toshok  <toshok@ximian.com>
7594
7595         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
7596         them between lines.  This fixes some quirks editing cells in the
7597         datagrid.
7598
7599 2006-05-23  Jackson Harper  <jackson@ximian.com>
7600
7601         * TreeView.cs: Use begin/end update when doing expand/collapse all
7602         so that we don't get flicker on the scrollbar.
7603
7604 2006-05-23  Jackson Harper  <jackson@ximian.com>
7605
7606         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
7607         treenode calculations to be independant of the painting code. To
7608         do this nodes track a visible order which is calculated by the
7609         treeview.
7610         - Call new methods for expanding/collapsing nodes.  These methods
7611         use scrollwindow so we don't have to update everything below the
7612         node.
7613         * TreeView.cs: Refactored drawing and scrolling code.  We don't
7614         need to update nodes when drawing anymore or calculate scrollbar
7615         stuff.
7616         - Added new methods for expanding/collapsing nodes. These methods
7617         use ScrollWindow so as to not have to redraw all the nodes below.
7618         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
7619         we add/remove nodes or sort.
7620         - Handle removing the selected and the top node properly.
7621
7622 2006-05-23  Chris Toshok  <toshok@ximian.com>
7623
7624         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
7625         maybe this should actually happen in the datagrid code?
7626         (EndEdit): no need to invalidate anything, given that
7627         ReleaseHostedControl causes the datagrid to relayout, which
7628         invalidates everything anyway.
7629
7630         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
7631         in SetCurrentCell).
7632         (set_SelectionBackColor): call InvalidateSelection instead of
7633         Refresh.
7634         (set_SelectionForeColor): same.
7635         (BeginEdit): Flesh this out a bit.
7636         (CancelEditing): only do any of this if we're editing/adding.
7637         (EndEdit): same.
7638         (OnMouseDown): there's no need to cancel editing here, it's done
7639         in SetCurrentCell.
7640         (SetCurrentCell): only invalidate the current row header if it's a
7641         different row than the new one.
7642         (ShiftSelection): fix this to work like MS does.
7643         (ResetSelection): factor out the invalidation of selected_rows to
7644         InvalidateSelection.
7645         (SetDataSource): cancel any editing that's going on.
7646
7647         * DataGridColumnStyle.cs
7648         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
7649         call the non-interface version.
7650
7651         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
7652         header rectangle with the clip rectangle so we don't redraw the
7653         entire header for just a small area.  Gets rid of the last flicker
7654         when horizontally scrolling.
7655         (DataGridPaintRow): same.
7656
7657 2006-05-23  Mike Kestner  <mkestner@novell.com>
7658
7659         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
7660         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
7661         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
7662         Critical bug report.
7663
7664 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7665
7666         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
7667           and this fixes #78493
7668
7669 2006-05-23  Miguel de Icaza  <miguel@novell.com>
7670
7671         * Theme.cs (GetSizedResourceImage): Scale images if the proper
7672         size is not found.  
7673         
7674         * FileDialog.cs: Do not change the background for the side bar as
7675         it wont work nicely with the theme, and also reduces the artifacts
7676         in rendering the icons (which I want to fix too).
7677
7678         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
7679         resources, not resgen resources. 
7680
7681         (PlatformDefaultHandler): Pull images using the new API.
7682
7683 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7684
7685         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
7686           a reference to the hwnd and will not remove it unless there are
7687           no pending exposures (fixes #78341)
7688         * XplatUI.cs: Improved debug
7689
7690 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
7691
7692         * MenuAPI.cs : don't handle OnClick event when it was not the left
7693           button. Fixed bug #78487.
7694
7695 2006-05-23  Mike Kestner  <mkestner@novell.com>
7696
7697         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
7698         prefer submenus to the top menu for item lookup, to avoid popping down
7699         top-row items.
7700
7701 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
7702
7703         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
7704           Graphics.FillRectangle as the visual results are really bad (even
7705           on win). We now draw perfect arrows (and perfect shadows when the
7706           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
7707           Pen.DashPattern to draw the dots of each line.
7708
7709 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
7710
7711         * FileDialog.cs: Update the filename combobox when navigating through
7712           the ListView with the cursor keys. Fixes part 7 of bug #78446.
7713
7714 2006-05-22  Mike Kestner  <mkestner@novell.com>
7715
7716         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
7717         Fixes #78463.
7718
7719 2006-05-22  Mike Kestner  <mkestner@novell.com>
7720
7721         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
7722         requests. Fix a misspelled parameter and a copy paste exception error
7723         in Select.
7724
7725 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
7726
7727         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
7728           to get the same width/height (5/13) on X11 as the default font has on
7729           win32. This means that our DefaultFont emSize is smaller than the 
7730           the MS SWF equivalent (even thought the width/height stays the same)
7731
7732 2006-05-20  Jackson Harper  <jackson@ximian.com>
7733
7734         * MdiClient.cs:
7735         * MdiWindowManager.cs:
7736         * InternalWindowManager.cs: Make sure to use the border width from
7737         the theme.
7738
7739 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
7740
7741         * PrintDialog.cs: Implements printer details
7742
7743 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
7744
7745         * FileDialog.cs: Added focus handling for PopupButtonPanel.
7746           Fixes part 1 and 2 of bug #78446
7747
7748 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
7749
7750         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
7751           instead of sticking to the first ever calculated value
7752
7753 2006-05-19  Mike Kestner  <mkestner@novell.com>
7754
7755         * ComboBox.cs: fix mouse motion selection to use MousePosition and
7756         PointToClient, since Capture is set. Fixes #78344.
7757
7758 2006-05-19  Mike Kestner  <mkestner@novell.com>
7759
7760         * ListView.cs: match MS behavior in Details view where items are not
7761         drawn if Columns.Count == 0. 
7762         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
7763         Use a separate pen to draw the check, since changing the width affects
7764         the box as well.  Fixes #78454.
7765
7766 2006-05-18  Miguel de Icaza  <miguel@novell.com>
7767
7768         * ListView.cs: ArgumentOutOfRangeException, single versions of the
7769         exception should throw the name of the invalid argument.
7770
7771         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
7772         there are no files listed. 
7773
7774 2006-05-18  Jackson Harper  <jackson@ximian.com>
7775
7776         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
7777         up.
7778
7779 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7780
7781         * Control.cs: Brought back our old UpdateZOrder method as a private
7782           function and switched our calls from UpdateZOrder to the new one.
7783           This fixes the Paint.Net canvas disappearing bug.
7784
7785 2006-05-18  Jackson Harper  <jackson@ximian.com>
7786
7787         * Theme.cs:
7788         * ThemeWin32Classic.cs:
7789         * InternalWindowManager.cs: Move the drawing into the theme,
7790         expose everything the theme should need from the window manager.
7791
7792 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7793
7794         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
7795           from the call to NativeWindow to avoid walking up the parent chain
7796           further than needed (speeds up setting cursors and avoids setting
7797           the wrong cursor if a parent has another cursor defined)
7798         * Cursor.cs: When loading an icon as cursor, MS uses the center of
7799           the icon as hotspot, not what's contained as hotspot in the icon
7800           file. This fixes the perceived drawing offset seen with Paint.Net
7801         
7802 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7803
7804         * XplatUIX11.cs: 
7805           - Store the calculated rectangle in Hwnd object and use it when 
7806             setting the client size
7807           - Force Toolwindows to always be type Dock, to ensure they're on top
7808
7809 2006-05-18  Mike Kestner  <mkestner@novell.com>
7810
7811         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
7812         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
7813         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
7814         Substantial refactoring to remove confusing nested classes. Coding
7815         standard and Get+Set->property refactorings.  Shift to index based
7816         highlighting in ComboListBox instead of constantly using IndexOf and
7817         Items[]. Add invalidations on resize for DropDownList to fix ugliness
7818         in FileDialog growth.  Draw borders manually since Simple mode needs
7819         to look like two independent controls.  Make listbox border
7820         conditional to DropDownStyle.  Improved OwnerDraw support.
7821
7822 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
7823
7824         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
7825         Don't set the disposed graphics to null, so we can throw the "right"
7826         exception if the graphics is reused later (added a flag to avoid 
7827         double disposing). Some behaviours are different under 2.0 and are
7828         filled under bug #78448.
7829
7830 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7831
7832         * Control.cs: When double-buffering is enabled, we need to reset
7833           our graphics context between paint calls. Otherwise, any 
7834           transformations and other alterations on the context will 
7835           become cumulative (#77734)
7836
7837 2006-05-18  Mike Kestner  <mkestner@novell.com>
7838
7839         * ListView.cs: do focused item selection like MS on clicks. 
7840         Rework focus handling for ItemControl so LostFocus invalidates as
7841         well.
7842         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
7843         the ListView ItemControl has focus.
7844
7845 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
7846
7847         * XplatUIX11.cs: If client_window ends up being width or height zero
7848           due to border settings, move it off window inside whole_window (#78433)
7849
7850 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7851
7852         * Mime.cs: Shrink the mime file cache correctly.
7853
7854 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7855
7856         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
7857
7858 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7859
7860         * XplatUIX11.cs (AddExpose): More sanity checks
7861
7862 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7863
7864         * XplatUIX11.cs:
7865           - AddExpose: Don't add expose ranges outside the size of our
7866             window
7867           - Cast opacity values to Int32 to avoid crashes with certain
7868             values
7869           - Added disabled code paths that protect against illegal cross-
7870             thread painting (Developers.exe)
7871
7872 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7873
7874         * ProgressBar.cs: Invalidate the control when it's resized
7875           since block size is based on control size. (#78388)
7876
7877 2006-05-16  Miguel de Icaza  <miguel@novell.com>
7878
7879         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
7880         of setting the incoming argument to the "reset" value, we set the
7881         this.datamember to string.empty (before we were invalidating the
7882         incoming data).   
7883
7884         Fixes 78420
7885
7886 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7887
7888         * Form.cs: Only apply transparency settings after the form
7889           is created. (Fixes #77800)
7890
7891 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7892
7893         * ApplicationContext.cs: Grab the HandleDestroyed event so
7894           we know when to fire OnMainFormClosed 
7895
7896 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7897
7898         * Application.cs: Introduced sub-class to allow tracking of
7899           threads and centralized triggering of the event mess for
7900           ThreadExit, AppExit, etc..  (#76156)
7901
7902 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
7903
7904         * MimeIcon.cs:
7905           - Do not return a null icon index value for a mime subclass.
7906             Instead try the main mime type class too.
7907           - Seems that some newer distributions don't have a link to some
7908             gnome default icons anymore. So check the default gnome dir too.
7909           
7910
7911 2006-05-16  Jackson Harper  <jackson@ximian.com>
7912
7913         * MdiClient.cs: Don't paint the parent background image if we have
7914         our own background image.
7915
7916 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7917
7918         * Control.cs:
7919           - PerformLayout: Do not shrink space filled by DockStyle.Fill
7920             controls, all filled controls are supposed to overlap (#78080)
7921           - UpdateZOrder is supposed to update the control's z-order in the
7922             parent's z-order chain. Fixed to behave like that
7923           - BringToFront: Removed obsolete code
7924           - SendToBack: Simplyfied
7925           - SetChildIndex: Trigger layout calculations when Z-order changes
7926             since layout is done by z-order
7927
7928 2006-05-16  Chris Toshok  <toshok@ximian.com>
7929
7930         [ fixes bug #78410 ]
7931         * DataGrid.cs (set_AlternatingBackColor): use
7932         grid_drawing.InvalidateCells instead of Refresh().
7933         (set_BackColor): call grid_drawing.InvalidateCells.
7934         (set_BackgroundColor): use Invalidate instead of Refresh.
7935
7936         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
7937         invalidate the cell area.
7938
7939 2006-05-15  Chris Toshok  <toshok@ximian.com>
7940
7941         [ fixes bug #78011 ]
7942         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
7943         on to DataGridPaintRow.
7944         (DataGridPaintRow): take a clip argument, and only draw the cells
7945         which intersect it.  same with the not_usedarea.
7946
7947         * Theme.cs (DataGridPaintRow) add @clip parameter.
7948
7949         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
7950         XplatUI.ScrollWindow.
7951         (ScrollToRow): same.
7952
7953         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
7954         with last column which was causing a gray swath to appear with the
7955         XplatUI.ScrollWindow code.
7956
7957 2006-05-15  Chris Toshok  <toshok@ximian.com>
7958
7959         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
7960         use XplatUI.ScrollWindow.
7961         (VerticalScrollEvent): use XplatUI.ScrollWindow.
7962
7963 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
7964
7965         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
7966
7967 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7968
7969         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
7970           file since there are no equivalent X11 cursors
7971
7972 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7973
7974         * MonthCalendar.cs : DateTimePicker should reflect selected date
7975           on mouse*up*, not mouse*down*. Fixed originally reported part of
7976           bug #76474.
7977
7978 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7979
7980         * TabControl.cs : When argument index is equal or more than tab
7981           count, just ignore. Fixed bug #78395.
7982
7983 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7984
7985         * Control.cs: Dispose all child controls when control is diposed (#78394)
7986
7987 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7988
7989         * ColorDialog.cs: Finally it is possible to select the color with
7990           the text boxes
7991
7992 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7993
7994         * PrintDialog.cs: Fix typo
7995
7996 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7997
7998         * PrintDialog.cs: PrintDialog is not resizable
7999         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
8000           color. Made some ToolBar drawing methods protected virtual.
8001
8002 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
8003
8004         * PrintDialog.cs: Implementation of the PrintDialog
8005
8006 2006-05-12  Chris Toshok  <toshok@ximian.com>
8007
8008         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
8009         thumb, instead use MoveThumb.  This has the side effect of making
8010         most of the other thumb moving machinery use MoveThumb as well.
8011         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
8012         need to actually invalidate the rectangle where the new thumb will
8013         go.
8014         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
8015         We force an Update() after, so it's not as fast as it could be,
8016         but at least there's zero flicker and no droppings.
8017         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
8018         (UpdateThumbPos): add another argument (dirty), which says whether
8019         or not to calculate/add dirty regions which we later invalidate.
8020         For cases where we know we're going to use MoveThumb, we pass
8021         false for this.  Otherwise, pass true.
8022
8023 2006-05-12  Jackson Harper  <jackson@ximian.com>
8024
8025         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
8026         the status bar.
8027         
8028 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
8029
8030         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
8031           and GetClipRegion methods and UserClipWontExposeParent property.
8032         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
8033           overriding UserClipWontExposeParent property, setting to false, since
8034           Win32 handles the required expose messages to draw our clipped parent
8035           areas internally
8036         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
8037           PaintEventStart to set the user clip region if set.
8038         * Control.cs: 
8039           - Now internally tracking the Region for the control since we need to
8040             store it if the handle is not yet created and only set it when it
8041             becomes created. Before setting the region forced handle creation
8042           - Added code to draw the parents underneath a user-clipped region
8043         * Hwnd.cs: Added UserClip property
8044
8045 2006-05-12  Chris Toshok  <toshok@ximian.com>
8046
8047         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
8048         (set_Maximum): same.
8049         (set_Minimum): same.
8050         (set_SmallChange): same.
8051         (OnMouseUpSB): remove the call to refresh when releasing the
8052         thumb.  We shouldn't need it.
8053         
8054 2006-05-12  Miguel de Icaza  <miguel@novell.com>
8055
8056         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
8057         AutoSize set to None, we do not need to relayout everything, we
8058         just need to invalidate the current region.
8059
8060         (Draw): Do not draw the entire ClientArea, just redraw the
8061         clip area being passed.
8062
8063         * MdiClient.cs: Make MdiClient constructor with the Form argument
8064         internal. 
8065
8066 2006-05-12  Jackson Harper  <jackson@ximian.com>
8067
8068         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
8069         parents background image,  but strangely not their own.
8070         - (DrawStatusBarPanel): Take into account horizontal alignment
8071         when drawing the strings and icons.
8072
8073 2006-05-12  Mike Kestner  <mkestner@novell.com>
8074
8075         * ListBox.cs: avoid invalidations for focus when the collection is
8076         empty. 
8077
8078 2006-05-12  Chris Toshok  <toshok@ximian.com>
8079
8080         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
8081         invalidate the entire thumb area.  Call InvalidateDirty which
8082         limits the redraw to the thumb itself and surrounding pixels.
8083
8084         * XplatUIX11.cs (ScrollWindow): optimize copying.
8085         
8086 2006-05-12  Chris Toshok  <toshok@ximian.com>
8087
8088         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
8089         Figure out the positioning/layout in a single pass instead of
8090         multiple recursive invocations.  Speeds up the initial display of
8091         the data grid.  Also, make many things private that were
8092         originally public but unused outside this class.
8093
8094 2006-05-11  Jackson Harper  <jackson@ximian.com>
8095
8096         * MdiClient.cs: Improved layout code.
8097
8098 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
8099
8100         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
8101           not SelectedObject.
8102
8103 2006-05-11  Chris Toshok  <toshok@ximian.com>
8104
8105         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
8106         union of that will always be {0,0,width,height}.
8107
8108 2006-05-11  Jackson Harper  <jackson@ximian.com>
8109
8110         * Form.cs: Match MS's DefaultSize for forms (they must have
8111         changed the size in sp2).
8112
8113 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8114
8115         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
8116
8117 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8118
8119         * TextControl.cs : Fixed bug #78109. This incorrect position
8120           comparison caused crash on automatic line split.
8121         * TextBoxBase.cs : reduce duplicate code.
8122
8123 2006-05-10  Jackson Harper  <jackson@ximian.com>
8124
8125         * MdiClient.cs: Active form is only sent to the back when using
8126         the Next form functionality, when a form is clicked the current
8127         active shouldn't be sent to the back.
8128         - Layout the mdi windows when the container is first made visible.
8129         * Form.cs: Give the MdiClient a ref to the containing form when we
8130         create it.
8131         
8132 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8133
8134         * LinkLabel.cs : link_font could be uninitialized, so populate one
8135           before actual use. Fixed bug #78340.
8136
8137 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8138
8139         * XplatUIX11.cs : clipboard format native value is IntPtr.
8140           Fixed bug #78283.
8141
8142 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8143
8144         * Control.cs: 
8145           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
8146             which is passed up the parent chain by DefWndProc
8147           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
8148             to DefWndProc (#77956)
8149         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
8150
8151 2006-05-10  Jackson Harper  <jackson@ximian.com>
8152
8153         * MdiClient.cs: We need to remove the controls from the mdi
8154         collection, when we close the window.
8155         * MdiWindowManager.cs: Special handling of closing mdi windows.
8156         * InternalWindowManager.cs: Make the close method virtual so the
8157         mdi window manager can handle it specially.
8158
8159 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
8160
8161         * DataGrid.cs:
8162           - Recalculate grid when the data source has changed
8163           - Matches styles provided by user from all data sources types
8164         * DataGridTableStyle.cs: For columns that provided by the user set the
8165         with the preferred value is there was unassigned.
8166         * CurrencyManager.cs: throw OnItemChanged event
8167
8168 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
8169
8170         * PictureBox.cs: Don't animate until handle is created. Start animation
8171           when handle is created.
8172
8173 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8174
8175         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
8176           current codebase.
8177         * XEventQueue.cs: We don't need to provide the extra info
8178
8179 2006-05-10  Jackson Harper  <jackson@ximian.com>
8180
8181         * MdiClient.cs: If the mdi clients parent form has a background
8182         image set, we draw that background image for the mdi area's
8183         background.
8184
8185 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8186
8187         * TextBoxBase.cs: Set IBeam cursor (#78347)
8188
8189 2006-05-10  Mike Kestner  <mkestner@novell.com>
8190
8191         * ToolBar.cs: fix some text padding issues with ButtonSize
8192         calculation. Update the default size to match MS documentation.
8193         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
8194         button size. Fixes #78296.
8195
8196 2006-05-10  Mike Kestner  <mkestner@novell.com>
8197
8198         * ListBox.cs: use is_visible for scrollbar positioning in case the
8199         control isn't on screen yet.  Fix off by one with Right vs Width
8200         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
8201         
8202 2006-05-10  Jackson Harper  <jackson@ximian.com>
8203
8204         * X11Dnd.cs: Drop to a control with another control on top of it.
8205         * ToolBar.cs: Work on a copy of the buttons list, so that it can
8206         be modified in click handlers. TODO: Look for similar problems in
8207         other controls.
8208
8209 2006-05-09  Jackson Harper  <jackson@ximian.com>
8210
8211         * Form.cs: Window managers need the old window state when setting
8212         window state now.
8213         * InternalWindowManager.cs: Allow the base mdi window manager to
8214         handle more of the MDI only stuff (like maximize buttons).
8215         * MdiWindowManager.cs: Fix some snafus in changing the window
8216         state.  Add all the menu functionality, for both popup and
8217         maximized menus.
8218         * MdiClient.cs: When a new form is selected the currently
8219         activated form is sent to the back, this matches MS.
8220         - Implement a new method to activate the next mdi child window.
8221
8222 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
8223
8224         * Control.cs: 
8225           - Added new InternalCapture method to allow controls to prevent
8226             the capture behaviour on the click handlers
8227           - Switched to use InternalCapture
8228         * ComboBox.cs:
8229           - Using InternalCapture to prevent mouse captures from being released
8230             on mouse button release (Fixes #78100)
8231         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
8232           returns Form borders if a caption is present. (Fixes #78310)
8233
8234 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
8235
8236         * TreeNode.cs: Changed serialization .ctor to not require every field
8237           to be present. (#78265)
8238         * OwnerDrawPropertyBag.cs: Added serialization .ctor
8239
8240 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
8241
8242         * MimeIcon.cs: for is faster than foreach for strings.
8243
8244 2006-05-05  Mike Kestner  <mkestner@novell.com>
8245
8246         * CheckedListBox.cs: update check handling code to not use selected.
8247         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
8248         behavior for visual feedback, motion response, shift/ctrl handling,
8249         and properly deal with all 4 selection modes. Updates to bounds
8250         handling logic.  Add scroll wheel support. [Fixes #77842]
8251
8252 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8253
8254         * ListView.cs:
8255           - Moved adding of Implicit controls into .ctor. That way, subsequent
8256             creation of the controls will not cause them to think they are 
8257             toplevel windows (fixes #78200 header problem)
8258           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
8259           - Switched visibility setting of header control to use internal field
8260             to avoid triggering handle creation
8261           - Now checking if handle is created before causing a refresh when items
8262             are added (This makes us now match handle creation time with MS)
8263         * Splitter.cs: Removed loading of private splitter cursor, switched to
8264           Cursors version now that that is loading the right ones
8265         * Cursors.cs: Load proper splitter cursors from resources
8266         * Cursor.cs: Added second method of loading resource cursors for the 
8267           VS.Net users amongst us
8268
8269 2006-05-05  Mike Kestner  <mkestner@novell.com>
8270
8271         * ListView.cs: give header_control a minimum size based on the
8272         ListView size.
8273
8274 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8275
8276         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
8277           window seems to do that with metacity, so set that type. (#78120)
8278
8279 2006-05-05  Mike Kestner  <mkestner@novell.com>
8280
8281         * ListViewItem.cs: fix Details mode checkbox layout bug.
8282         * ThemeWin32Classic.cs: draw a ListView column header for unused space
8283         at the end of the header, if it exists. [Fixes for #78200]
8284
8285 2006-05-04  Jackson Harper  <jackson@ximian.com>
8286
8287         * MdiClient.cs: Add a helper property to get the container form.
8288         * MdiWindowManager.cs: We have to make sure to use the menu origin
8289         when drawing the icons and buttons, this fixes maximized window
8290         icons/buttons on win32.
8291         * InternalWindowManager.cs: Reset the restore captions when a
8292         window goes from Maximized to Minimized and vice versa. Move the
8293         DrawMaximizedButtons into the MdiWindowManager source, tool
8294         windows can't be maximized. NOTE: This could use a little
8295         refactoring if time ever permits.
8296         
8297 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8298
8299         * TextBox.cs: Add MWFCategoryAttributes
8300         * TextBoxBase.cs: Add MWFCategoryAttributes
8301         * Form.cs: Add MWFCategoryAttributes
8302
8303 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8304
8305         * Control.cs: Add MWFCategoryAttributes
8306         * ScrollableControl.cs: Add MWFCategoryAttributes
8307
8308 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
8309
8310         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
8311           Divider is true. Fix a little glitch in PropertyToolBar
8312           drawing code
8313
8314 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
8315
8316         * Control.cs:
8317           - Dispose: Call base.Dispose, this causes the disposed event
8318             to be fired (and probably other, more important stuff)
8319           - SetVisibleCore: Set is_visible to true after creating the
8320             window so that the window still gets created invisible (if
8321             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
8322             to generate a WM_ACTIVE message
8323         * Form.cs: Call Dispose when we want to destroy the window, instead of
8324           just destroying the handle (Dispose will do that for us)
8325         * XplatUIX11.cs:
8326           - RootWindow also needs a queue, so we can properly process the
8327             property change events from RootWindow (like Activate)
8328           - Generatic synthetic WM_ACTIVE message when the active window is
8329             being destroyed
8330
8331 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8332
8333         * LinkLabel.cs: Trigger a recalc of our label dimensions when
8334           bounds are changed
8335
8336 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
8337
8338         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
8339           for determining width and height (image might not be assigned if
8340           we're drawing an imagelist)
8341
8342 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8343
8344         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
8345         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
8346           height from system
8347         * Theme.cs: No longer returns hardcoded menu height, instead calls
8348           new driver method
8349         * Form.cs (OnLoad): Scaling happens before triggering Load events 
8350           on MS (# 78257)
8351
8352 2006-05-01  Mike Kestner  <mkestner@novell.com>
8353
8354         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
8355
8356 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
8357
8358         * TextBoxBase.cs: Removed Fixme
8359         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
8360
8361 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
8362
8363         * XplatUIX11.cs:
8364           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
8365             the rectangle relative to the parent, considering borders. We
8366             don't really want that.
8367           - ScrollWindow: Fixed warning to be more understandable
8368         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
8369           scrollbars and scroll only the visible area
8370         * RichTextBox.cs: Removed debug output
8371
8372 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8373
8374         * NumericUpDown.cs (Text): Just use base
8375         * UpDownBase.cs: Ensure txtView is created before using it
8376
8377 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8378
8379         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
8380           casting to IntPtr to avoid 64bit overflow errors
8381
8382 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8383
8384         * Control.cs:
8385           - AllowDrop: Don't force handle creation.
8386           - CreateHandle: Added call to tell driver if we're allowed to drop
8387
8388 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8389
8390         * FileDialog.cs: Remember the last directory not only for the
8391           current instance but also for new FileDialog instances.
8392
8393 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8394         
8395         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
8396           broke sending async messages
8397
8398 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8399
8400         * XplatUIX11.cs:
8401           - ScrollWindow: Fixed method. We finally generate expose events again
8402             for scrolled areas. This was causing 'garbage' when scrolling
8403             textbox and other controls that used ScrollWindow
8404           - Switched from using the regular queue for paint events to the MS 
8405             model of 'generating' paint events when the queue is empty.
8406             We use the new XQueueEvent.Paint subclass to store which windows
8407             need painting.
8408           - AddExpose now takes the x/y/width/height of the exposed area
8409             and inserts the window into the paint queue if not already there
8410           - InvalidateWholeWindow: Switched to use new AddExpose method
8411           - UpdateMessageQueue: Added which queue to monitor for paint events
8412           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
8413             the unlikely case nothing above handles it. We reset the expose
8414             pending states to get them off the queue.
8415           - GetMessage: Now pulls a paint event if no other events are in the
8416             queue
8417           - Invalidate: Switched to new AddExpose method
8418           - PeekMessage: Updated to understand pending paint events
8419           - UpdateWindow: Fixed logic bug. We were only updating if the window
8420             didn't need updating. Also switched to sending WM_PAINT directly,
8421             like MS does.
8422         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
8423           and random access Remove(). The random access is needed to handle
8424           UpdateWindow() where a WM_PAINT is sent directly without accessing
8425           the queue.
8426         * ScrollBar.cs: Added Update() calls to cause immediate updates to
8427           allow for better feedback when scrolling. Scrollbars are small and
8428           the immediate update should make it 'feel' more responsive without
8429           slowing things down. ScrollBar still needs it's invaliate logic
8430           updated to not always invalidate the whole bar on certain changes.
8431
8432 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8433
8434         * Control.cs:
8435         (BackColor): if the control does not support a transparent background,
8436         return the default backcolor when the parent backcolor is transparent.
8437
8438 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
8439
8440         * Application.cs: Updated to new StartLoop/GetMessage API
8441         * RichTextBox.cs: Provide some output on RTF parsing errors
8442         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
8443           new queue_id argument to GetMessage and PeekMessage to allow faster
8444           handling of per-thread queues in drivers.
8445         * Hwnd.cs: Added Queue tracking and property
8446         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
8447         * XEventQueue.cs: Added thread trackingA
8448         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
8449         * XplatUIX11.cs:
8450           - Implemented new per-thread queue
8451           - GetMessage: Fixed return/break behaviour on several cases. We were
8452             returning stale messages in some cases, instead of just processing
8453             the next message
8454
8455 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8456
8457         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
8458
8459 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
8460
8461         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
8462           fixed off-by-one comparisons between Width/Height and Right/Bottom.
8463
8464 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8465
8466         * PropertyGridView.cs: Fix drop down width.
8467
8468 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8469
8470         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
8471           a mess in DrawToolBar, so I removed one of them.
8472
8473 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8474
8475         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
8476           needed (clip). Otherwise we get artifacts.
8477
8478 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8479
8480         * FixedSizeTextBox.cs: Added constructor to allow specifying which
8481           dimension is fixed
8482         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
8483           and switched FixedSizeTextBox to only be fixed vertical (#78116)
8484         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
8485           if it matches the scale base font (avoids unneeded scaling)
8486
8487 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8488
8489         * X11DesktopColors.cs: One gtk_init_check should be enough
8490
8491 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
8492
8493         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
8494           match MS behaviour
8495
8496 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8497
8498         * TextBoxBase.cs: 
8499           - Generate OnTextChanged for Backspace even if we're only deleting
8500             the current selection
8501           - When setting the Text property, only select all text if the
8502             control does not have focus when it is being set. Otherwise
8503             just place the cursor at the beginning of the control
8504
8505 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8506
8507         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
8508           Added a little helper to draw PropertyGrid ToolBar with a different
8509           border and a different BackColor.
8510         * PropertyGrid.cs: Some background parts didn't get painted with the
8511           correct background color. Added a class that helps us to draw the
8512           correct border for PropertyGridView and a class that helps us to
8513           draw ToolBars with a different backcolor
8514         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
8515
8516 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
8517
8518         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
8519         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
8520
8521 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8522
8523         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
8524           into the palette entries. Also, since we're working on a copy
8525           we needed to copy the palette back onto the bitmap.
8526         * Cursor.cs: Same fix as XplatUIWin32.cs.
8527
8528 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
8529
8530         * ImageListStreamer.cs: Need to read the var (or we're off)
8531
8532 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8533
8534         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
8535           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
8536           TextBoxBase.cs: Unused var fixes
8537         * AxHost.cs: Small 2.0 fix
8538         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
8539           as it seems that is what at least Metacity expects. This will make
8540           icons show up on 64bit platforms. We still have some 64bit size
8541           issues, though, since the startup app window size still won't match.
8542
8543 2006-04-25  Mike Kestner  <mkestner@novell.com>
8544
8545         * *.cs: cleanup newly reported exception var unused warnings.
8546
8547 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8548
8549         * ThemeWin32Classic.cs: Button image alignment now matches exactly
8550           ms
8551
8552 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8553
8554         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
8555           image. The image position is always the same, no matter if the
8556           button is pressed or not.
8557
8558 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8559
8560         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
8561           selection and set the correct filename for SaveFileDialog.
8562           Patch by Emery Conrad.
8563
8564 2006-04-24  Mike Kestner  <mkestner@novell.com>
8565
8566         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
8567         check for item.X outside the ClientRect instead of item.Y. Fixes
8568         #78151.
8569
8570 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8571
8572         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
8573         trust that value blindly and do some sanity check. Fixes bug #77814.
8574
8575 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8576
8577         * ImageListStreamer.cs: save the mask as a 1bpp image.
8578
8579 2006-04-21  Mike Kestner  <mkestner@novell.com>
8580
8581         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
8582         pass Checked and Indeterminate to the Theme Engine. Improve
8583         encapsulation with ListBox.
8584         * ListBox.cs: Keep a StringFormat instead of calculating it every item
8585         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
8586         nested types.  Move all CheckState functionality to CheckedListBox.
8587         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
8588         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
8589         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
8590         single base list. Fix scrollbar sizing and placement to mirror MS.
8591         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
8592         used.
8593         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
8594         for CheckedListBox by using new DrawItemState info.  Center the
8595         checkboxes on the items. Use new StringFormat property.
8596
8597 2006-04-18  Jackson Harper  <jackson@ximian.com>
8598
8599         * Form.cs: MdiChildren don't do default locations the same way as
8600         regular forms.  This prevents a crash when trying to position the
8601         mdi windows.
8602
8603 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
8604
8605         * PropertyGridTextBox.cs: Formatting, copyright
8606         * PropertiesTab.cs: Formatting
8607         * PropertyGrid.cs: Formatting
8608         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
8609           click toggling of values
8610           
8611 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
8612
8613         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
8614         * Control.cs (.ctor): verify_thread_handle is static, don't reset
8615           every time a control is created
8616         * Application.cs: Removed obsolete EnableRTLMirroring method
8617
8618 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
8619
8620         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
8621         SelectedIndex to -1. Fixes bug #78121.
8622
8623 2006-04-17  Jackson Harper  <jackson@ximian.com>
8624
8625         * Binding.cs: Handle null values for Current and BindingContext.
8626         This occurs when binding is a little delayed.
8627         * CurrencyManager.cs: return null for Current when there are no
8628         items in the list.
8629         - Hookup to the listchanged event on the DataView and update
8630         bindings when the list is changed.  This fixes late binding of
8631         controls.
8632
8633 2006-04-17  Jackson Harper  <jackson@ximian.com>
8634
8635         * X11Dnd.cs:
8636         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
8637         Ringenbach.
8638
8639 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
8640
8641         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
8642           place
8643         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
8644           with the correct ButtonState
8645
8646 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
8647
8648         * XplatUIX11.cs: Improved distinguishing between window types to
8649           tell the WM a type closer to what the app wants (Fixes #78107)
8650
8651 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8652
8653         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
8654           GrabHandle
8655
8656 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8657
8658         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
8659           drawing code to reflect the size grip changes
8660
8661 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8662
8663         * ImageListStreamer.cs: fix handling of the mask that follows the main
8664         bitmap when deserializing and serialize it properly. The generated mask
8665         should better be a 1bpp image, but I'll do that later.
8666
8667 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8668
8669         * FileDialog.cs: Show something in the DirComboBox on *nix if the
8670           path doesn't fit into some of our Current.Places
8671
8672 2006-04-13  Jackson Harper  <jackson@ximian.com>
8673
8674         * ComboBox.cs: Use borders instead of drawing our own decorations,
8675         try to obey correct rules for heights.
8676         * Theme.cs:
8677         * ThemeNice.cs:
8678         * ThemeClearLooks.cs:
8679         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
8680         this is now handled by borders.
8681         - Remove unused DrawListBoxDecorationSize method.
8682         
8683 2006-04-13  Mike Kestner  <mkestner@novell.com>
8684
8685         * MenuAPI.cs: null guarding for the disbled click check fixes crash
8686         reported by Alex.
8687
8688 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8689
8690         * ThemeWin32Classic.cs: 
8691           - Fixed CPDrawStringDisabled
8692           - Corrected drawing of disabled menu items
8693           - Fixed drawing of disabled radio buttons (bug #78095)
8694           - Draw check in a disabled CheckBox with color ControlDark 
8695
8696 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8697
8698         * Form.cs: Use the provided width when calculating the menu size;
8699           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
8700           and ClientSize.Width won't be updated yet
8701         * Application.cs: Use Visible instead of Show() to make form visible,
8702           this way we create the handle later and menusize is considered
8703
8704 2006-04-12  Mike Kestner  <mkestner@novell.com>
8705
8706         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
8707         reporting.
8708
8709 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8710
8711         * TextBox.cs: Implemented context menu
8712
8713 2006-04-12  Mike Kestner  <mkestner@novell.com>
8714
8715         * ListView.cs: implement box selection. fixes #77838.
8716         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
8717
8718 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8719
8720         * XplatUIX11.cs: Added setting of window type when transient window
8721           is created (metacity would move it otherwise)
8722         * X11Structs.cs: Added WINDOW_TYPE atoms
8723         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
8724           background (the control is Opaque but still wants transparent
8725           backgrounds)
8726
8727 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8728
8729         * Control.cs: Added OnPaintBackgroundInternal to allow controls
8730           that set Opaque but don't mean it (like all ButtonBase-derived
8731           controls) to still draw their background
8732         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
8733           the background
8734
8735 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8736
8737         * Control.cs (PaintControlBackground): Set the graphics object
8738           on our PaintEvent to null to prevent it from being disposed
8739           when the PaintEvent gets disposed
8740
8741 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
8742
8743         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
8744         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
8745
8746 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8747
8748         * Control.cs: 
8749           - Added transparency check to BackColor property. Transparent
8750             backgrounds are only allowed if the control styles permit it
8751           - Added recursive painting of parent control background and
8752             foreground if a control with a transparent backcolor is drawn
8753             (Thanks to Tim Ringenback for providing his 'hack' as a base
8754              for this patch) Fixes #77985 and #78026.
8755           - Added Opaque style check before calling OnPaintBackground, no
8756             need to draw the background if the control is opaque
8757           - Removed ControlAccessibleObject owner variable (inherited from
8758             base, no need to define again)
8759           - Added some documentation links explaining the drawing events
8760             and styles
8761
8762 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8763
8764         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
8765           that the affected control is the located at the left border of our
8766           parent (Fixes #77936)
8767
8768 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8769
8770         * TextBoxBase.cs: When rendering disabled or readonly controls,
8771           draw the background with 'Control' instead of 'Window' color as
8772           long as the user hasn't specifically set a color
8773
8774 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8775
8776         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
8777           since that won't be updated if the user types text (only if it's
8778           programatically set)
8779
8780 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8781
8782         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
8783           layout changes do to app-triggered resizes will have the proper
8784           display rectangle for layout
8785
8786 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
8787
8788         * ThemeWin32Classic.cs:
8789           - Make use of the SystemBrushes and SystemPens wherever possible
8790           - Corrected some highlight colors
8791           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
8792             drawing
8793         * Theme.cs: Added Empty field to CPColor struct
8794
8795 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8796
8797         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
8798           is displayed when calculating the display rectangle. Thanks to Mike
8799           for teaching me the err of my ways.
8800
8801 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
8802
8803         * ScrollableControl.cs:
8804           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
8805             (instead of 0,0) and we now return the real width/height instead of
8806             just the clientrectangle, adjusted for padding. The rectangle is
8807             now cached and created by the new CalculateDisplayRectangle method.
8808           - Created new CalculateDisplayRectange method, which basically does
8809             what get_DisplayRectangle() did originally, but now using the 
8810             right edge instead of DisplayRectangle to determine the size of
8811             our scrollbars
8812           - get_Canvas(): Fixed it to properly calculate canvas for 
8813             right/bottom controls which seem to be placed to the right/bottom
8814             of any controls that have a fixed location
8815           - Removed TODO that's taken care of
8816           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
8817             and SetDisplayRectLocation according to new MSDN2 docs
8818           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
8819             event when that is called, this is added for compatibility
8820           - ScrollControlIntoView(): Implemented.
8821           - Switched scrollbars to be implicit, they shouldn't be selectable
8822         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
8823           call it when the active control is set/changed
8824         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
8825         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
8826           implicit_control variable (used for native Win32 message generation)
8827         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
8828           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
8829         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
8830         * XplatUIStructs.cs: Added ScrollBarCommands enum
8831
8832 2006-04-10  Jackson Harper  <jackson@ximian.com>
8833
8834         * ButtonBase.cs:
8835         * CheckedListBox.cs:
8836         * ComboBox.cs:
8837         * DataGrid.cs:
8838         * DataGridView.cs:
8839         * Form.cs:
8840         * GroupBox.cs:
8841         * ListBox.cs:
8842         * PrintPreviewControl.cs:
8843         * ProgressBar.cs:
8844         * PropertyGrid.cs:
8845         * Splitter.cs:
8846         * StatusBar.cs:
8847         * TrackBar.cs:
8848         * UpDownBase.cs: Fixup base event overrides.
8849         
8850 2006-04-06  Mike Kestner  <mkestner@novell.com>
8851
8852         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
8853         all user-initiated value changes to min <= value <= max-thumbsz+1.
8854         (set_Value): check for vert/horiz when calculating new thumb position.
8855         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
8856         like MS does.
8857         (OnMouseMoveSB): refactor the thumb dragging code and refine
8858         invalidation logic to reduce flicker.
8859         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
8860         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
8861         (UpdateThumbPosition): small code readability cleanup
8862
8863 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
8864
8865         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
8866           different
8867
8868 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8869
8870         * ThemeNice.cs: Use a better graphics effect when a button is pressed
8871
8872 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8873
8874         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
8875         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
8876           This dramatically reduces the number of Pen.Dispose calls. 
8877           Where possible call ResPool methods only once instead of calling it
8878           over and over again (for example for the same color).
8879
8880 2006-04-06  Mike Kestner  <mkestner@novell.com>
8881
8882         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
8883         Also remove an unused private field on the collection. Fixes #77972.
8884
8885 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8886
8887         * ThemeNice.cs: Added ToolBar drawing code
8888
8889 2006-04-06  Mike Kestner  <mkestner@novell.com>
8890
8891         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
8892         I'm assuming that means we need to look up the toplevel for the
8893         provided control. Fixes the crash trace in #77911 but exposes another
8894         crash in some strange reflection usage in NDocGui.
8895
8896 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8897
8898         * ThemeNice.cs: Gave it a little silver touch and added Images
8899           method
8900         * FontDialog.cs: FontDialog is not resizable
8901         * FileDialg.cs: Added SizeGripStyle.Show
8902
8903 2006-04-05  Jackson Harper  <jackson@ximian.com>
8904
8905         * KeyboardLayouts.cs: Remove warning.
8906
8907 2006-04-05  Jackson Harper  <jackson@ximian.com>
8908
8909         * Control.cs: Enable OnPaintInternal so we can use it for drawing
8910         all of our controls instead of Paint +=.
8911         * ListBox.cs:
8912         * ListView.cs:
8913         * MenuAPI.cs:
8914         * MessageBox.cs:
8915         * NotifyIcon.cs:
8916         * ProgressBar.cs:
8917         * ScrollBar.cs:
8918         * Splitter.cs:
8919         * StatusBar.cs:
8920         * TabControl.cs:
8921         * TextBoxBase.cs:
8922         * ToolBar.cs:
8923         * TrackBar.cs:
8924         * UpDownBase.cs:
8925         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
8926         use OnPaintInternal. Remove Width/Height and Visible checks in
8927         paint handler, this is done at a higher level now.
8928         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
8929         * PaintEventArgs.cs: Add a handled flag so controls that don't
8930         want anymore painting after OnPaintInternal can make sure OnPaint
8931         isn't called.
8932
8933 2006-04-05  Mike Kestner  <mkestner@novell.com>
8934
8935         * Form.cs: fix the menu WndProc hacks to respect the native enabled
8936         state of the form, so that we don't process events when Modal dialogs
8937         are up. Fixes #77922.
8938
8939 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
8940
8941         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
8942           checking is done.
8943
8944 2006-04-05  Mike Kestner  <mkestner@novell.com>
8945
8946         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
8947
8948 2006-04-05  Mike Kestner  <mkestner@novell.com>
8949
8950         * ListView.cs (HeaderMouseMove): null guarding for the over column
8951         when setting up the drag_to_index.  Fixes #78015.
8952
8953 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
8954
8955         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
8956           in the taskbar. Transient windows seem to accomplish that.
8957
8958 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
8959
8960         * Form.cs:
8961           - Re-enabled CreateParams.X/Y code for FormStartPosition
8962           - Added code for manual placement when creating the Control
8963           - Incomplete patch to treat MDI forms differently when
8964             setting the ClientSizeCore. (Still need to figure out handling
8965             x/y coords there)
8966         * XplatUIX11.cs:
8967           - When we're explicitly setting the X/Y position of a non-Child
8968             window, let the WM know. Metacity really wants this.
8969
8970 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8971
8972         * ThemeNice.cs: Added CPDrawButton
8973
8974 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8975
8976         * ThemeNice.cs: Changed the color for focused buttons and activated
8977           the arrows for small scroll buttons.
8978
8979 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8980
8981         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
8982           anymore. Changed some method modifiers to protected (virtual)
8983         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
8984           changes
8985         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
8986           Updated drawing of menus, buttons and progressbars; added
8987           CPDrawBorder3D 
8988
8989 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8990
8991         * ImageListStreamer.cs: implemented serialization/deserialization
8992         of the images.
8993
8994 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
8995
8996         * ThemeWin32Classic.cs:
8997           - Removed all the DrawFrameControl stuff; CPDrawButton,
8998             CPDrawCheckBox and CPDrawRadioButton are now handled directly
8999             inside the methods
9000           - Updated and corrected the drawing code of CPDrawButton,
9001             CPDrawCheckBox and CPDrawRadioButton to better match ms
9002           - Updated theme checkbox and radiobutton code to use the CP*
9003             methods
9004
9005 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9006
9007         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
9008           bug is fixed
9009
9010 2006-03-31  Jackson Harper  <jackson@ximian.com>
9011
9012         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
9013         sometimes.
9014         * UpDownBase.cs: Don't CreateGraphics manually, use a
9015         Refresh. Ideally we would invalidate the correct areas here.
9016
9017 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9018
9019         * XplatUIX11.cs: 
9020           - We now track the mapping state of windows. If a window (or 
9021             one of it's parents) is not mapped we no longer permit
9022             WM_PAINT messages to be generated since we'd otherwise get 
9023             lots of BadMatch X errors. Jackson did all the work figuring
9024             out the problem.
9025           - Destroying the caret if the window it's contained in is 
9026             destroyed. Can't use regular DestroyCaret method since it
9027             might fall into a drawing function (trying to remove the
9028             caret) and with that generate new BadMatch errors. Again,
9029             Jackson tracked this down.
9030           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
9031             make sure we send the messages to all windows. (The old code
9032             would send the WM_DESTROY to the window, and then all child
9033             windows would be 'gone' because the WM_DESTROY handle lookup
9034             would no longer find the destroyed window)
9035         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
9036         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
9037
9038 2006-03-31  Jackson Harper  <jackson@ximian.com>
9039
9040         * ScrollableControl.cs: Dont recalc if we are not visible.
9041
9042 2006-03-31  Mike Kestner  <mkestner@novell.com>
9043
9044         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
9045         the visibility branch.
9046
9047 2006-03-31  Jackson Harper  <jackson@ximian.com>
9048
9049         * ScrollBar.cs: Cap values when incrementing/decrementing.
9050
9051 2006-03-31  Mike Kestner  <mkestner@novell.com>
9052
9053         * MenuAPI.cs: setup menu.tracker for popup/context menus.
9054         * ToolTip.cs: guard against timer expirations with no active control.
9055         Not sure why it happened.
9056
9057 2006-03-31  Mike Kestner  <mkestner@novell.com>
9058
9059         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
9060         text.
9061         * ToolTip.cs: Position the tooltip based on where the cursor is at
9062         popup time, not at MouseEnter time.  Add a Down state so that we don't
9063         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
9064         positioning offset. Lookup DisplaySize at positioning time, since it
9065         can theoretically change during invocation.
9066         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
9067         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
9068
9069 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9070
9071         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
9072           Fixes behaviour when the Text property of the box is String.Empty
9073
9074 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
9075
9076         * XplatUIX11.cs: Only send mouseleave for our client windows, not
9077           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
9078           a window)
9079
9080 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9081
9082         * FileDialog.cs: Visual enhancement for the popup buttons in 
9083           PopupButtonPanel
9084
9085 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9086
9087         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
9088           code
9089
9090 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
9091
9092         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
9093           highlighted menu items to match ms
9094
9095 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
9096
9097         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
9098
9099 2006-03-30  Mike Kestner  <mkestner@novell.com>
9100
9101         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
9102         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
9103         go active to account for HotLight to Selected transition.
9104         * MenuItem.cs: add internal Selected prop. Fill out the Status
9105         property by calculating it from item info. Add HotLight,
9106         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
9107
9108 2006-03-30  Mike Kestner  <mkestner@novell.com>
9109
9110         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
9111
9112 2006-03-29  Jackson Harper  <jackson@ximian.com>
9113
9114         * Form.cs: Implement TODO.
9115
9116 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
9117
9118         * PrintPreviewDialog.cs: Implemented missing methods and events; still
9119           missing proper dialog setup in the constructor
9120
9121 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
9122
9123         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
9124         * Control.cs:
9125           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
9126           - Fixed ResetBindings and removed TODO
9127           - Added check for cross-thread calls to get_Handle()
9128           - Added Marshaller attribute for set_Font to satisfy class status
9129         * FontDialog.cs: Removed TODOs that seemed implemented
9130         * UpDownBase.cs: Removed unneeded TODO and Fixme
9131         * MessageBox.cs: Implemented support for Default button and removed TODO
9132         * FileDialog.cs: Removed obsolete TODO
9133         * DomainUpDown.cs: Removed obsolete TODO
9134         * ButtonBase.cs: Removed obsolete TODO
9135         * XplatUIWin32.cs: Removed obsolete TODO
9136         * Form.cs:
9137           - Removed obsolete TODO
9138           - Calling CheckAcceptButton when the acceptbutton is changed to allow
9139             internal status updates
9140           - Making sure the active control is selected when the control is created
9141         * CurrencyManager.cs: Removed obsolete TODO
9142
9143 2006-03-29  Mike Kestner  <mkestner@novell.com>
9144
9145         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
9146         of PrintPreviewDialog and RichTextBox.
9147
9148 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9149
9150         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
9151           DarkDark, Light and LightLight colors for a specific color
9152         * ThemeWin32Classic.cs:
9153           - Use Button drawing code to draw RadioButtons and CheckBoxes with
9154             Appearance = Button 
9155           - Make use of the new ResPool helper CPColor
9156           - Draw ProgressBar and StatusBar with correct 3D borders
9157
9158 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9159
9160         * ColorDialog.cs: Return selected color. Fixes bug #77940.
9161
9162 2006-03-28  Mike Kestner  <mkestner@novell.com>
9163
9164         * ListView.cs: fix Icon layout to plan for scrollbar widths when
9165         calculating col/row counts.
9166
9167 2006-03-28  Mike Kestner  <mkestner@novell.com>
9168
9169         * ColumnHeader.cs:
9170         * ListView.cs:
9171         * ListViewItem.cs:
9172         * Menu.cs: 
9173         switch to explicit interface method implementation for some methods
9174         corcompare identifies as inconsistent with MS.
9175
9176 2006-03-28  Mike Kestner  <mkestner@novell.com>
9177
9178         * MainMenu.cs: 
9179         * Menu.cs:
9180         add a few missing methods from the class status output.
9181
9182 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
9183
9184         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
9185           correct.
9186
9187 2006-03-28  Mike Kestner  <mkestner@novell.com>
9188
9189         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
9190
9191 2006-03-27  Mike Kestner  <mkestner@novell.com>
9192
9193         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
9194         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
9195
9196 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
9197
9198         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
9199
9200 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9201
9202         * ThemeWin32Classic.cs:
9203           - GroupBox: Inserted a little gap between the text and the lines
9204             on the right side
9205           - Made the code in CPDrawBorder3D more readable
9206           - Corrected the drawing location of the up and down arrows in 
9207             CPDrawScrollButton
9208
9209 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9210
9211         * ControlPaint.cs: Corrected line widths in DrawBorder for
9212           ButtonBorderStyle Inset and Outset
9213
9214 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9215
9216         * ThemeWin32Classic.cs:
9217           - Rewrote the totally broken CPDrawBorder3D method. That was
9218             one of the main problems for the terrific ThemeWin32Classic
9219             look
9220           - Updated and corrected Button drawing
9221           - Correct the dimensions of the SizeGrip to match ms ones
9222           - Removed a small drawing glitch in DrawComboBoxEditDecorations
9223         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
9224           Border3DStyle.Sunken to match ms.
9225
9226 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9227
9228         * ThemeWin32Classic.cs: First small part of the "de-uglify
9229           ThemeWin32Classic" effort, SizeGrip
9230
9231 2006-03-24  Jackson Harper  <jackson@ximian.com>
9232
9233         * XplatUIX11.cs: Give a max idle time of one second, this matches
9234         MS and forces an Idle event every second when there are no other
9235         events in the queue.
9236
9237 2006-03-24  Mike Kestner  <mkestner@novell.com>
9238
9239         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
9240         * ListView.Item.cs: fix layout issues with null image lists and images
9241         smaller than checkbox size.
9242         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
9243         mode like MS does.  It's weird, but consistent.  ;-)
9244         Fixes #77890.
9245
9246 2006-03-24  Mike Kestner  <mkestner@novell.com>
9247
9248         * ListView.cs: Scroll wheel support for the item control.  Fixes
9249         #77839.
9250
9251 2006-03-23  Jackson Harper  <jackson@ximian.com>
9252
9253         * ScrollableControl.cs: Special case negative sized areas, not
9254         zero.
9255         * MonthCalendar.cs: Save the rect of the clicked date so we can
9256         use it for invalidation.
9257         - Try to cut down on the number of invalidates
9258         - Invalidate the rect the mouse is over and was over when moving
9259         the mouse, so we get the focus box following the cursor.
9260
9261 2006-03-23  Mike Kestner  <mkestner@novell.com>
9262
9263         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
9264         focus rectangle drawing. Fixes #77835.
9265
9266 2006-03-23  Mike Kestner  <mkestner@novell.com>
9267
9268         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
9269         the if and else if and reverting back to the original == check on the
9270         None conditional.
9271
9272 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9273
9274         * FontDialog.cs: Update the example panel if the selected index of
9275           the fontListBox changes.
9276
9277 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9278
9279         * FileDialog.cs: Make FileDialog remember which directory it was in
9280           last in the same execution.
9281
9282 2006-03-22  Mike Kestner  <mkestner@novell.com>
9283
9284         * FileDialog.cs: make the DropDownMenu on the toolbar display
9285         RadioChecks since they are mutually exclusive and that's what MS does.
9286
9287 2006-03-22  Mike Kestner  <mkestner@novell.com>
9288
9289         * Theme.cs: add Color param to CPDrawMenuGlyph.
9290         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
9291         checks and radio marks and arrows are visible on highlighted items.
9292         * ControlPaint.cs: update to use new Theme signature.
9293
9294 2006-03-22  Mike Kestner  <mkestner@novell.com>
9295
9296         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
9297         is active. Fixes #77870.
9298
9299 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9300
9301         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
9302           to be focused/selected after startup
9303
9304 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9305
9306         * ColorDialog.cs: 
9307           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
9308             CustomColors and ShowHelp properties
9309           - Some internal rewrites to get better results when using the
9310             ColorMatrix
9311
9312 2006-03-22  Mike Kestner  <mkestner@novell.com>
9313
9314         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
9315         HoverSelection.  Fixes #77836.
9316
9317 2006-03-22  Mike Kestner  <mkestner@novell.com>
9318
9319         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
9320         ToggleButtons.  (De)Sensitize the Back button around a stack count of
9321         1, not 0.  Update ButtonSize based on a pixel count of the win32
9322         control.  Adjust the toolbar size/location for new button size.
9323
9324 2006-03-22  Jackson Harper  <jackson@ximian.com>
9325
9326         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
9327         true.
9328         * ScrollBar.cs: When doing increments and decrements we need to
9329         set the Value property so that ValueChanged gets raised. A
9330         possible optimization here would be to make an internal SetValue
9331         that doesn't invalidate immediately.
9332         * ToolTip.cs: Tooltips get added to their container (when
9333         supplied) so they get disposed when the container is disposed.
9334         - Don't create tooltips for String.Empty. This prevents all these
9335         little 2-3 pixel windows from showing up when running nunit-gui
9336         and driving me mad.
9337         * Form.cs: Don't set topmost when setting the owner if the handles
9338         haven't been created yet.  The topmost set will happen when the
9339         handles are created.
9340
9341 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
9342
9343         * XplatUIX11.cs:
9344           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
9345           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
9346             visible (to allow them to recalculate their sizes)
9347
9348 2006-03-21  Mike Kestner  <mkestner@novell.com>
9349
9350         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
9351         methods. Removed a ton of redundant code.  Still not really happy with
9352         the border rendering, but I think that's mainly because of the
9353         ControlDarkDark being black instead of a dark grey. Depending on how 
9354         close we want to be, we might want to revisit those color choices.
9355         Among the new features added during the refactor were DropDownArrow
9356         pressed rendering, Disabled image rendering.  Proper flat appearance
9357         boundary rendering.  Removed the Divider and Wrapping dividers since I
9358         can't figure out any combination of themes and conditions to make the
9359         MS control draw a horizontal line on a toolbar despite what the
9360         Divider property docs indicate.
9361         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
9362         conditions and incorrect layout.  Updated to coding standard.
9363         * ToolBarButton.cs: refactored layout and positioning code from
9364         ToolBar to here.  Invalidate wherever possible instead of forcing
9365         redraws of the whole toolbar. 
9366         (Known remaining issues: explicit ButtonSize smaller than provided
9367         images.)
9368
9369 2006-03-21  Mike Kestner  <mkestner@novell.com>
9370
9371         * ContextMenu.cs (Show): use the position parameter instead of just
9372         showing at the MousePosition.
9373
9374 2006-03-21  Jackson Harper  <jackson@ximian.com>
9375
9376         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
9377         control handle this.
9378         * TreeNodeCollection.cs: If we are clearing the root node we need
9379         to reset top_node so calcs can still happen.
9380         * ThemeWin32Classic.cs: This is a Flags so we need to check
9381         properly.
9382         
9383 2006-03-21  Jackson Harper  <jackson@ximian.com>
9384
9385         * DataGrid.cs: Create columns when the binding context has been
9386         changed.
9387         * X11Structs.cs: Keysyms are uints.
9388         - Add size to fix build.
9389
9390 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
9391
9392         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9393           XplatUIOSX.cs: 
9394           - Added ResetMouseHover method to allow controls to retrigger
9395             hovering if they need it more than once
9396           - Implemented MouseHoverTime and MouseHoverSize properties
9397         * Timer.cs: Start() must reset the interval
9398         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
9399           properties
9400
9401 2006-03-21  Jackson Harper  <jackson@ximian.com>
9402
9403         * X11Keyboard.cs: improved layout detection. Move the nonchar
9404         tables into this file.
9405         * KeyboardLayouts.cs: Move the tables into resource files.
9406
9407 2006-03-21  Mike Kestner  <mkestner@novell.com>
9408
9409         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
9410
9411 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
9412
9413         * Mime.cs: Various speed optimizations. Looking up mime types
9414           is now 2 times faster than before
9415
9416 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
9417
9418         * CreateParams.cs: Added internal menu field
9419         * Control.cs: 
9420           - Switched call order for UpdateBounds; now we always call
9421             the one that also takes ClientSize, and we're calculating the 
9422             client size via driver method in the others. The previous
9423             method of tracking client size by difference wasn't working
9424             for forms where even the starting client size wouldn't match
9425             the overall form size (due to borders) (Part of fix for #77729)
9426           - CreateParams(): Do not use parent.Handle unless the handle is
9427             already created. Causes havoc with Nexxia and throws off our
9428             creation of controls
9429         * XplatUIX11.cs:
9430           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
9431           - Switched handling of ConfigureNotify over to new PerformNCCalc 
9432             method (consolidates code)
9433           - Changed RequestNCRecalc to use new PerformNCCalc method
9434           - Added calls to RequestNCRecalc when menus and borders are changed
9435             to allow app to set NC size. (Part of fix for #77729) This matches
9436             when MS send a WM_NCRECALC on Win32 windows.
9437           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
9438             (Part of fix for #77729). This matches what MS does, they also
9439             send that message when the form is made visible.
9440           - XException.GetMessage: Improved usability of X errors by including
9441             a translation of the window into Hwnd and Control class
9442           - Improved debug info for window creation, reparenting and destruction
9443           - Created helper method WindowIsMapped() [Currently not used]
9444         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
9445         * Form.cs:
9446           - CreateParams: Now setting our menu on the new internal menu field
9447           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
9448             avoid calculating the same property twice
9449         * Hwnd.cs:
9450           - Improved usability of ToString() for debugging purposes
9451           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
9452             determine the height of the menu, instead of just the font. This
9453             required to also create a graphics context and to keep a bmp 
9454             around (for performance reasons)
9455
9456 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
9457
9458         * MenuAPI.cs: Added OnMouseUp method
9459         * Form.cs:
9460           - Now remembering the requested client size, avoids size errors
9461           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
9462             instead of base if the menu is active. This is required due to
9463             control now capturing and releasing on down/up and it would
9464             prematurely release our menu capture
9465
9466 2006-03-17  Jackson Harper  <jackson@ximian.com>
9467
9468         * KeyboardLayouts.cs: Add the czech layouts.
9469
9470 2006-03-16  Jackson Harper  <jackson@ximian.com>
9471
9472         * Control.cs: Use the viewport space when sizing not the controls
9473         client size, so things like ScrollableControl that effect the
9474         viewport size (when scrollbars are added) are computed correctly.
9475         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
9476         of ManagerEntrys.
9477         - Handle creating BindingManagers for null data sources.
9478         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
9479         source, otherwise when rows are added they are added to the 'fake'
9480         datasource and we will crash when trying to set the position in
9481         those rows.
9482         - Use Implicit scrollbars on the datagrid so they arent
9483         selectable.
9484         
9485 2006-03-16  Jackson Harper  <jackson@ximian.com>
9486
9487         * Binding.cs:
9488         * InternalWindowManager.cs:
9489         * MdiWindowManager.cs:
9490         * X11Keyboard.cs: I really want Mike to love me again (fix
9491         compiler warnings).
9492
9493 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
9494
9495         * DataGrid.cs:
9496           - OnMouseDown: Switch to editing mode when clicking on the cell
9497                          even if we're clicking on the cell that's currently 
9498                          selected
9499           - ProcessGridKey: Left/Right now wrap like MS.Net does
9500           - ProcessGridKey: Tab now knows to add a new row when tab is
9501                             pressed in the cell of the last column of the 
9502                             last row
9503           - ProcessGridKey: Enter now adds another row  if pressed in the last
9504                             row and selectes the new row, same column cell
9505           - ProcessGridKey: Home/End navigate columns, not rows, like 
9506                             originally implemented
9507           - Broke ProcessKeyPreview code out into an extra Internal method
9508             so it can be called from the edit code
9509         * DataGridTextBox.cs (ProcessKeyMessage):
9510           - Switched to accept Tab keypresses
9511           - Added F2 handling to allow jumping to the end of the edited cell
9512           - Added logic to allow moving caret left/right inside edited cell
9513             and making the edited cell jump when the caret hits cell borders
9514           - Tab and Enter are now passed to the datagrid after being handled
9515         * TextBoxBase.cs:
9516           - Removed capture code now that Control handles it
9517           - set_SelectionStart now ensures caret is visible
9518
9519 2006-03-16  Jackson Harper  <jackson@ximian.com>
9520
9521         * TrackBar.cs: Debackwards the increment/decrement for handling
9522         mouse clicks on the bar with vertical trackbars.
9523         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
9524         bottom to match MS.
9525
9526 2006-03-16  Mike Kestner  <mkestner@novell.com>
9527
9528         * ListView.cs: make shift/ctrl keyboard and mouse selection 
9529         consistent with the MS control. Fix a bug in
9530         SelectedListViewItemCollection.Clear that was pissing me off for the
9531         better part of a day because the collection was being altered
9532         underneath us as we walked the list.
9533
9534 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
9535
9536         * Control.cs: Not sure how we could miss this so long, but it seems
9537           that MS.Net has Capture set all the way from before calling 
9538           OnMouseDown through sending the mouse events until after
9539           OnMouseUp. This will fix DataGrid's selection being set to end
9540           at the location of the MouseUp.
9541
9542 2006-03-15  Jackson Harper  <jackson@ximian.com>
9543
9544         * BindingContext.cs: Check the binding after its added so that it
9545           can initialize the binding managers and hookup to events.
9546         * Binding.cs: Data members seem to sometimes include rows/cols in
9547           the format Row.Column we now take this into account.
9548           - Hookup to the position changed event so we can update the
9549           control when the position has changed in the data set.
9550         * CurrencyManager.cs: Take into account the row/col naming
9551           convention when creating dataset tables.
9552         * BindingContext.cs: Using a newer better way of storing
9553           datasource/datamember pairs.  Hopefully this better matches MS for
9554           looking up binding managers.
9555
9556
9557 2006-03-15  Jackson Harper  <jackson@ximian.com>
9558
9559         * BindingContext.cs: The currency manager needs the data member
9560         name, if the member is a data set we use the name to find the
9561         correct table.
9562         * CurrencyManager.cs: When creating the list prefer an IList over
9563         an IListSource.
9564         - Attempt to create a DataTable from a DataSet (TODO: might need
9565         some better error checking here, although MS doesn't seem to have much)
9566         - If we have a DataTable create a view and use it as our list.
9567
9568 2006-03-15  Mike Kestner  <mkestner@novell.com>
9569
9570         * ListView.cs: keep a matrix of the icon mode layout to facilitate
9571         keyboard navigation. Support Up/Down/Left/Right selection correctly
9572         for all 4 View modes.
9573         * ListViewItem.cs: add internal row/col fields for icon layouts.
9574
9575 2006-03-15  Jackson Harper  <jackson@ximian.com>
9576
9577         * TabControl.cs: Redraw the tabs when we resize so their newly
9578         calculated sizes are drawn on screen.
9579         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
9580         composite characters.
9581         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
9582         - filter events so that composite characters can be created
9583         patches by peter
9584         * X11Structs.cs: Add XIMProperties enum.
9585
9586 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9587
9588         * Control.cs (BringToFront, SendToBack): Don't use window or handle
9589           unless it's created
9590
9591 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9592
9593         * Control.cs (PerformLayout): We don't need to consider visiblity
9594           for anchoring, only for docking. This fixes 'whacky' alignment
9595           in listbox and other controls that use implicit scrollbars after
9596           the previous PerformLayout patch
9597         * ListBox.cs: Switched to use implicit scrollbars
9598           
9599 2006-03-14  Mike Kestner  <mkestner@novell.com>
9600
9601         * ToolBar.cs: 
9602         * VScrollBar.cs:
9603         - chain up the "new event" overrides to base and use
9604         OnEvent to raise them.  Part of fix for bug #76509.
9605
9606 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
9607
9608         * FileDialog.cs: Do not select an item in the parent directory
9609           on backspace
9610
9611 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9612
9613         * Control.cs (PerformLayout): It would seem that we considered
9614           invisible windows for our layout. Not quite the right thing
9615           to do. Now we don't any longer, thereby fixing bug #76889.
9616
9617 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9618
9619         * Control.cs (CanFocus): I goofed. A control can have focus 
9620           even though it's not selectable. Made it match MS docs.
9621
9622 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9623
9624         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
9625           center by default (fixes #76895)
9626         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
9627           all uses of Border3DSides.All with the explicit ORd together
9628           Left|Right|Top|Bottom because I assume that nobody was aware 
9629           that All also implies a center fill. Most places I checked had
9630           a fill right above.
9631         * ProgressBarStyle.cs: Added
9632
9633 2006-03-13  Mike Kestner  <mkestner@novell.com>
9634
9635         * ListView.cs: fix breakage in drag shadow header positioning 
9636         from Peter's csc compilation fix.
9637
9638 2006-03-13  Mike Kestner  <mkestner@novell.com>
9639
9640         * ListView.cs: fix NRE produced by backspacing twice in a focused
9641         FileDialog.
9642
9643 2006-03-13  Mike Kestner  <mkestner@novell.com>
9644
9645         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
9646
9647 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9648
9649         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
9650           be changed
9651         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
9652           the allowed size before making programmatic size changes
9653
9654 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
9655
9656         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
9657           set, metacity is broken and will still use the emty sizes in 
9658           the struct. (Fix for #77089)
9659
9660 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9661
9662         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
9663           WindowExStyles and marked both enums as Flags
9664         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
9665           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
9666           to match WindowStyles split
9667         * XplatUIX11.cs:
9668           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
9669           - Updated to match WindowStyles split
9670         * XplatUIWin32.cs:
9671           - Fixed FosterParent creation, was using ExStyle on the Style field
9672             (This should help with Popup focus issues)
9673           - Updated to match WindowStyles split
9674
9675 2006-03-13  Jackson Harper  <jackson@ximian.com>
9676
9677         * MdiWindowManager.cs: Use the system menu height. Fixes some
9678         strange sizing issues.
9679
9680 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9681
9682         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
9683         * TextBoxBase.cs:
9684           - Scroll to caret after inserting text (#77672)
9685           - Make scroll range one pixel higher, fixes off-by-one error (and
9686             makes underlines visible on the last line)
9687
9688 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
9689
9690         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
9691           the keyboard state from being stuck with keys in 'pressed' state when
9692           focus is switched away via keyboard
9693         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
9694           reset the keyboard if no X11 KeyUp events are expected to come
9695         * X11Structs.cs: Switched type of Visible to bool to match driver
9696
9697 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9698
9699         * TextControl.cs:
9700           - Switched caret to be just 1 pixel wide, matches MS and looks less
9701             clunky
9702           - Moved caret display 1 pixel down from the top of the control
9703             to improve view
9704           - InsertCharAtCharet: Update the selection start if moving the caret
9705             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
9706           - No longer always creating the caret when the caret methods are
9707             called. Only the actual ShowCaret/HideCaret will do that now
9708           - Only setting caret visible if the owner control has focus
9709           - UpdateView: Added invalidation-shortcut logic for center and right 
9710             aligned text. Previously we'd update all according to the left
9711             logic which caused drawing errors. Also fixed height of invalidated
9712             areas, now properly invalidating the whole area (was off-by-one)
9713           - owner_HandleCreated: Always generate the document when the
9714             handle is created; this ensures that 
9715         * TextBoxBase.cs:
9716           - Fixed situation where caret would disappear under the right
9717             window border, also improved scrolling behaviour on left-
9718             aligned textboxes
9719           - Fixed right-aligned textboxes to have a border to the
9720             right instead of the caret being under the right border
9721         * XplatUIX11.cs:
9722           - Switched from 'nested' to simple visible/not visible tracking 
9723             for caret (part of fix for #77671)
9724           - No longer passing through translated FocusIn/FocusOut messages
9725             since we were notifying too often and the wrong windows. Instead
9726             we just notify our focussed window of receiving or loosing focus
9727         * XplatUIWin32.cs: Switched from 'nested' show/hide 
9728           counting for caret to simple visible yes/no behaviour (part of 
9729           fix for #77671)
9730
9731 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9732
9733         * Mime.cs: Remove debug code...
9734
9735 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9736
9737         * MimeGenerated.cs: Removed
9738         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
9739           and subclasses) from /usr/(local/)share/mime and
9740           $HOME/.local/share/mime.
9741
9742 2006-03-10  Jackson Harper  <jackson@ximian.com>
9743
9744         * MdiWindowManager.cs: Recalc the NC area when a window is
9745         maximized/restored so that the menu area is drawn on forms that
9746         don't have a menu.
9747
9748 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9749
9750         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9751           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
9752           us to force a WM_NCCALCRESIZE message being sent. This is needed
9753           for MDI maximizing.
9754
9755 2006-03-10  Jackson Harper  <jackson@ximian.com>
9756
9757         * Form.cs: We need to use the ActiveMenu when calculating menu
9758         height.
9759         - Fix nullref when the window manager hasn't been created yet.
9760         * Control.cs: Fix nullref when we try to bring a control to the
9761         front that has no parent.
9762         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
9763         height.
9764         - Add a dummy item to the maximized menu so it always has the
9765         correct height. Otherwise when there are no menus we don't get our
9766         icon and buttons.
9767         
9768
9769 2006-03-10  Jackson Harper  <jackson@ximian.com>
9770
9771         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
9772         stuff.
9773         * Form.cs: Make the window_state internal so the window managers
9774         can track it.
9775         - When an MDI child is maximized let its window manager create the
9776         main menu (so it can add its icon).
9777         - Notify the window managers of state changes
9778         - Let the window manager paint its buttons and handle button
9779         clicks on the menu when it is maximized.
9780         * InternalWindowManager.cs: Move the prev_bounds into the mdi
9781         window manager, since tool windows don't use it, only mdi windows.
9782         - Tell the main form that we don't want it to handle NCPAINT
9783         itself to avoid extra painting.
9784         - Handle clicks on a maximized windows menu.
9785         - Handle window state changes
9786         - Handle minimize/maximize clicks correctly by setting the window state.
9787         * MdiWindowManager.cs: Add an icon menu that (the menu you get
9788         when clicking on the forms icon).
9789         - New method to create a forms maximized menu. This is its normal
9790         menu + an icon.
9791         - Handle window state changes.
9792         - Handle sizing of maximized windows.  Maximized windows are just
9793         drawn bigger then the parent visible area. All controls are still
9794         there, they are just outside the visible area (this matches windows).
9795         * MdiClient.cs: No scrollbars when a child window is maximized.
9796         - Let the children windows figure out how big they should be when
9797         sizing maximized windows.
9798         - Implement a version of ArrangeIconicWindows somewhat similar to
9799         Windows version.  There are some little differences, but I don't
9800         think any app will rely on the layout of minimized mdi windows.
9801
9802 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9803
9804         * Padding.cs: Several fixes to allow compiling with csc 2.0
9805
9806 2006-03-09  Jackson Harper  <jackson@ximian.com>
9807
9808         * Menu.cs:
9809         * MenuItem.cs: Cheap hack so we can add items to the list without
9810         the events being raised.  This allows adding mdi items during
9811         drawing. TODO: Should probably find a better time to add the items.
9812
9813 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9814
9815         * ThemeWin32Classic.cs:
9816           - CheckBox_DrawText: Added logic to not wrap if not enough space
9817             is available (Fix for bug #77727)
9818           - RadioButton_DrawText: Added logic not to wrap if not enough
9819             space is available (Fix for bug #77727). Also removed some
9820             duplicate code, DrawString always drawing the regular text
9821             before hitting the if statement.
9822
9823 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
9824
9825         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
9826
9827 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9828
9829         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
9830         * ContainerControl.cs: Partial implementation of some 2.0 scaling
9831           methods. Moved the new 2.0 properties into alphabetical order with
9832           other properties and added MonoTODO tags
9833
9834 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9835
9836         * AutoScaleMode.cs: Added. Fix build.
9837
9838 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9839
9840         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9841           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
9842           and was requiring premature handle creation for calls from above
9843         * Form.cs, Control.cs: Removed handle arguments from calls to
9844           CalculateClientRect()
9845
9846 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9847
9848         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
9849           drag_column.column_rect is MarshalByRef and can't be used that way
9850
9851 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9852
9853         * AxHost.cs: Added deserialization constructor for 
9854           AxHost+State (fixes 77743)
9855
9856 2006-03-09  Mike Kestner  <mkestner@novell.com>
9857
9858         * ListView.cs: 
9859         - Added column drag reordering for details view.
9860         - fixed behavior when mouse is dragged off column and
9861         AllowColumnReorder is false.
9862         * ColumnHeader.cs: clone the format too in Clone.
9863         * Theme.cs: add DrawListViewHeaderDragDetails method.
9864         * ThemeWin32Classic.cs:
9865         - impl new method for drawing drag column shadows and targets.
9866         - support column offset for details mode in DrawListViewItem.
9867
9868 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9869
9870         * TextControl.cs: Reset the char_count when the document is cleared
9871           (Fixes bug reported on mono-winforms mailing list)
9872
9873 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9874
9875         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
9876           of calling base we simply process the key ourselves, since both
9877           DefWindowProc and the handled method would set m.Result. 
9878           (Fixes #77732)
9879
9880 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9881
9882         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
9883           method also moves the window; instead implemented a copy of
9884           Control.ScaleCore (Part of fix for #77456)
9885         * TextBoxBase.cs: 
9886           - Created new CreateGraphicsInternal method to allow providing
9887             a graphics context when no handle is created without triggering
9888             handle creation. (Part of fix for #77456)
9889           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9890         * TextControl.cs: 
9891           - Switched Constructor to require TextBoxBase instead of Control (to
9892             allow uncast access to CreateGraphicsInternal)
9893           - Safeguarded use of owner.Handle property. No longer accessing it
9894             unless the handle is already created.
9895           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9896           - Now triggering a recalc when owning control becomes visible
9897         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
9898           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
9899           premature handle creation (Part of fix for #77456)
9900         * Control.cs:
9901           - We now only destroy our double-buffering buffers when the
9902             control is resized or disposed, but not when visibility
9903             changes. (The code even re-created them twice every time)
9904           - Now requiring a redraw of the buffer on visibility changes
9905             (fixes bug 77654 part 2)
9906           - Not passing OnParentVisibleChanged up unless the control
9907             is visible
9908           - CanFocus: Fixed to match MS documentation
9909           - Focus: Fixed to return actual focus state and to check if
9910             setting focus is legal before setting it
9911
9912 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
9913
9914         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
9915           when to draw focus rectangle by looking at parent focus and
9916           selected state instead. This fixes TabPages on Linux sometimes
9917           having none or multiple focus rectangles.
9918         * XplatUIX11.cs (SetFocus): 
9919           - Don't set the focus if the same window already has focus
9920           - Use SendMessage instead of PostMessage (like it's Win32
9921             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
9922             to match MS behaviour
9923         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
9924           are not selectable.
9925
9926 2006-03-07  Jackson Harper  <jackson@ximian.com>
9927
9928         * PictureBox.cs: Revert line I accidently committed last week.
9929
9930 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9931
9932         * Control.cs: 
9933           - Added new IsRecreating and ParentIsRecreating properties to
9934             allow testing if RecreateHandle has been called on ourselves
9935             or one of our parents
9936           - WndProc(WM_DESTROY): If our control handle is being recreated
9937             we immediately need to create the handle when receiving the
9938             destroy, that way our child windows find a valid parent handle
9939             when they themselves are being recreated upon WM_DESTROY receipt
9940             (fix for bug #77654 part 1)
9941         * XplatUIX11.cs:
9942           - DestroyWindow: WM_DESTROY must be sent to our own window before
9943             notifying any child windows. MS documents that child windows
9944             are still valid when WM_DESTROY is received. (Control now relies on
9945             this behaviour)
9946           - Added some fine-grain debug options
9947
9948 2006-03-06  Jackson Harper  <jackson@ximian.com>
9949
9950         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
9951         box and base calculations off this.
9952         * MdiChildContext.cs:
9953         * MdiWindowManager.cs: Don't need to ensure scrollbars here
9954         anymore.
9955         
9956 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
9957
9958         * Splitter.cs: In situations where the affected control is added
9959           to the parent's control list after the splitter, we would not
9960           populate affected. Now we try populating it on mousedown, if
9961           it's not already set, and force it to be re-set whenever our
9962           parent changes.
9963
9964 2006-03-03  Matt Hargett  <matt@use.net>
9965
9966         * Control.cs: implement Control.Padding
9967         * Padding.cs: -Padding.All returns -1 when constructing with the
9968         implicit default ctor
9969         -Padding.ToString() matches MS.NET
9970         * ContainerControl.cs: implement
9971         ContainerControl.AutoScaleDimensions
9972         * ListControl.cs: implement ListControl.FormattingEnabled
9973         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
9974         * ButtonBase.cs:
9975         * TabPage.cs: Implement UseVisualStyleBackColor.
9976         * PictureBox.cs: Implement PictureBox.InitialImage.
9977
9978 2006-03-03  Mike Kestner  <mkestner@novell.com>
9979
9980         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
9981         event declarations to proxy to base event.
9982         * ListViewItem.cs: update to use ItemControl.
9983         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
9984         * ThemeWin32Classic.cs: update to new ListView theme API and fix
9985         column header label rendering for 0 width columns.
9986
9987 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
9988
9989         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
9990           that causes the control to be created. Fixes #77476.
9991
9992 2006-03-02  Jackson Harper  <jackson@ximian.com>
9993
9994         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
9995         expose_pending.
9996
9997 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
9998
9999         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
10000           passed in for the EventArgs (fixes #77690)
10001
10002 2006-03-01  Jackson Harper  <jackson@ximian.com>
10003
10004         * ScrollBar.cs: Refresh afterbeing resized.
10005
10006 2006-02-28  Mike Kestner  <mkestner@novell.com>
10007
10008         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
10009         Clean up a tracker compile warning.
10010         * MenuItem.cs: add internal PerformPopup method.
10011         [Fixes #77457]
10012
10013 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10014
10015         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
10016           implicit expose) when the text is set to null
10017
10018 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
10019
10020         * RichTextBox.cs (FlushText): When newline is true, we always
10021           need to split the line, even if no text is on it and we may
10022           never eat newlines. (Fixes #77669)
10023
10024 2006-02-28  Mike Kestner  <mkestner@novell.com>
10025
10026         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
10027         and set Selected instead.
10028         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
10029         collections.
10030
10031 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10032
10033         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
10034
10035 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
10036
10037         * FontDialog.cs:
10038           - Got rid of the panel. All controls are now directly added to
10039             the dialog form
10040           - It is now possible to set a font with the Font property
10041           - MinSize and MaxSize property do now what they should
10042           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
10043           - Searching and selecting a font with the font textbox works now,
10044             the same applies to the style and size textbox
10045           - Draw the correct 3D border in the example panel
10046           - Fixed a little mem leak (unused fonts didn't get disposed)
10047           - Many other internal updates/rewrites...
10048           - Fix typo
10049
10050 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10051
10052         * TextControl.cs: 
10053           - InsertRTFFromStream: Added 'number of characters inserted' argument
10054           - set_SelectedRTF: Now using the number of characters to calculate
10055             the new location for the selection and cursor (x/y cannot be used
10056             due to potentially already wrapped text)
10057
10058 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
10059
10060         * TextControl.cs: Added property and implemented means to allow 
10061           disabling recalculation of a document (can be used to speed up
10062           multiple inserts and is needed to make RTF inserts predictable, see
10063           bug #77659)
10064         * RichTextBox.cs: Using the new NoRecalc property of Document to
10065           keep x/y insert locations predictable. Also makes it faster inserting
10066           large chunks of RTF
10067
10068 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10069
10070         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
10071           it's easier for a child control to handle the other messages without
10072           having to duplicate the special functionality
10073         * TextBoxBase.cs
10074           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
10075             code to handle processing the key ourselves, in order to get 
10076             access to the result of KeyEventArgs.Handled. We now only call 
10077             ProcessKey if they key hasn't been handled already. Fixes #77526.
10078           - set_Text: If null or empty string is given, just clear the 
10079             document. Fixes part of #77526
10080
10081 2006-02-27  Jackson Harper  <jackson@ximian.com>
10082
10083         * SizeGrip.cs: Paint the background color before painting the grip
10084         so things look right.
10085         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
10086
10087 2006-02-27  Mike Kestner  <mkestner@novell.com>
10088
10089         * ListView.cs:
10090           - Restructure layout and invalidation model to remove a ton of
10091           flicker from the control and speed up performance in general.
10092           - Add manual column resize, flickers like crazy, but I already have
10093           some ideas on how I'll fix that. (#76822)
10094           - Merge the three Icon-based views into a single layout method.
10095           - Move item selection interaction logic from the item since 
10096           interaction with the collections is more appropriate to the view.
10097           - Deselection on non-item clicks.
10098         * ListViewItem.cs:
10099           - Encapsulate most of the layout. Add some internal props to trigger
10100           layout.  Move to a model where Items invalidate themselves instead
10101           of just invalidating the whole control every time something changes.
10102           - Invalidate on Text/Caption changes.
10103           - switch to an offset based layout model to avoid having to absolute
10104           position every element on item moves.
10105           - correct checkbox layout to conform to MS layout.
10106         * ThemeWin32Classic.cs:
10107           - refactor some column header drawing code.
10108           - fix string justification for column headers (#76821)
10109           - make SmallIcon labels top justified for compat with MS impl.
10110         * ThemeClearlooks.cs:
10111           - adjust to new ListViewItem internal checkbox bounds api.
10112
10113 2006-02-27  Jackson Harper  <jackson@ximian.com>
10114
10115         * Control.cs:  Change where implicit controls fall in the zorder.
10116         They are now on top of all children.
10117         - Synced AddImplicit code with Add
10118         - Removed unused enumerator.
10119         * SizeGrip.cs: Remove the TODO as its been TODONE.
10120
10121 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
10122
10123         * TextControl.cs(Insert): Combine the last lines unless the insertion
10124           string ends with \n\n, otherwise we leave one line too many (Fixes
10125           something I noticed with the testapp for #77526; the bug itself was
10126           already fixed in the previous checkin)
10127
10128 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
10129
10130         * RichTextBox.cs:
10131           - SelectionColor and SelectionFont methods no longer set absolute
10132             styles. Instead, the keep font or color respectively (This 
10133             resolves a long-standing FIXME in the code)
10134           - When flushing RTF text, the insert code now considers text trailing
10135             behind the insertion point (Fixes the bug where when replacing
10136             the selected text via SelectedRTF the remainder of the line behind 
10137             the selection would stay on the first insertion line)
10138         * TextBoxBase.cs:
10139           - AppendText now updates the selection points after inserting text
10140           - AppendText now ensures that the last tag (sometimes 0-length) of
10141             the document is used for the style information (Fixes part of 
10142             bug #77220)
10143         * TextControl.cs:
10144           - Created new FontDefiniton class to allow describing partial style
10145             changes
10146           - StreamLine() now takes a lines argument, to allow it to decide
10147             whether an encountered zero-length tag is the last in the document
10148             (which must be kept to not loose the font/color contained in it,
10149             for later appends)
10150           - Created Combine() and Split() methods for Marker structs, to 
10151             support marker updates due to reformatted documents (soft line
10152             wraps)
10153           - Implemented Document.CaretTag setter
10154           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
10155             of the last line (Not the cause, but also exposed by bug #77220)
10156           - Added LineTag argument to InsertString method, to allow callers
10157             to force a certain tag to be used (required to force use of the
10158             trailing zero-length tag of a document)
10159           - Now updating markers in Combine(), to avoid stale tag markers
10160           - Added some method descriptions to aid maintenance
10161           - Implemented new FormatText concept, allowing additive/subtractive
10162             formatting by only specifying the components that are to be 
10163             changed. This was needed for resolving the RTB.SelectedColor/
10164             RTB.SelectedFont fixmes
10165           - Added Break() support method to allow breaking up linetags (used
10166             for partial formatting)
10167           - Added GenerateTextFormat() method. It is used for partial 
10168             formatting and allows to generate a full font/color from given
10169             attributes and an existing tag.
10170
10171 2006-02-26  Jackson Harper  <jackson@ximian.com>
10172
10173         * XplatUIX11.cs:  Use the correct caption height.
10174         - Translate hittest coordinates to screen coords to match MS.
10175         * XplatUIWin32.cs: When we create MDI windows we need to reset
10176         some of the style flags, so we get a nice blank window, and can
10177         draw all the decorations ourselves.
10178         - Set a clipping rectangle on the non client paint event, the
10179         window manager drawing code needs one.
10180         * Form.cs: The window manager needs to know when the window state
10181         has been updated.
10182         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
10183         don't need to factor in border and title sizes in these
10184         methods. TODO: Remove the args and fix the call points.
10185         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
10186         properly.
10187         - Let the driver set the cursors.
10188         - Improve active window handling
10189         - Correct sizes for title bars and buttons.
10190         - Match MS drawing better
10191         * MdiWindowManager.cs: We don't need to handle border style
10192         updates specially anymore.
10193         - Check for scrollbars when windows are done moving
10194         - Handle Active properly.
10195         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
10196         correctly. I am spewing the exception though, so we don't hide the
10197         bugs.
10198         
10199 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
10200
10201         * DataGridViewRowPostPaintEventArgs.cs,
10202           DataGridViewCellPaintingEventArgs.cs,
10203           DataGridViewRowCollection.cs,
10204           DataGridViewRowPrePaintEventArgs.cs,
10205           DataGridViewCell.cs: Clear a few warnings and implement a few
10206           exceptions that should be thrown.
10207
10208 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10209
10210         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
10211           'inheriting' our parent's (non-default) cursor. (Part of
10212            the fix for #77479)
10213
10214 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
10215
10216         * XplatUIX11.cs: Fixed cast to make csc happy
10217
10218 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10219
10220         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
10221           it's for the client area (part of fix for #77479 and needed
10222           for MDI window cursor handling)
10223         * XplatUIX11.cs
10224           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
10225             the appropriate default cursors and also passing the message
10226             up the parent chain 
10227           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
10228             for non-client areas
10229
10230 2006-02-15  Jackson Harper  <jackson@ximian.com>
10231
10232         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
10233         is a real MDI window
10234
10235 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
10236
10237         * X11DesktopColors.cs: Instead of checking the desktop session
10238           string for "KDE" check if it starts with "KDE"
10239
10240 2006-02-10  Jackson Harper  <jackson@ximian.com>
10241
10242         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
10243         systems).
10244
10245 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10246
10247         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
10248           errors
10249         * ColorDialog.cs:
10250           - Got rid of the panel. All controls are now directly added to
10251             the dialog form
10252           - Changed to mono coding style
10253
10254 2006-02-10  Jackson Harper  <jackson@ximian.com>
10255
10256         * InternalWindowManager.cs: We don't need the set visibility to
10257         false hack anymore now that peter has written beautiful shutdown
10258         code.
10259
10260 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
10261
10262         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
10263           where already explicitly destroyed
10264
10265 2006-02-10  Jackson Harper  <jackson@ximian.com>
10266
10267         * MdiClient.cs: Handle the case where windows are too high or to
10268         the left and we need scrollbars.
10269
10270 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10271
10272         * MimeIcon.cs: Added some icons
10273         * FileDialog.cs:
10274           - Fixed bug #77477
10275           - Got rid of the panel. All controls are now directly added to
10276             the dialog form
10277           - Changed to mono coding style
10278           - On Linux "My Computer" and "My Network" will now show some
10279             more usefull information. A new class, MasterMount, gathers
10280             this information from /proc/mount. Updated MWFFileView to make
10281             use of this information
10282           - Fixed a bug that caused FileDialog to crash when
10283             ".recently_used" file had a zero size
10284           - FilterIndex does now what it should
10285           - Some Refactoring
10286         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
10287             FileDialog changes
10288
10289 2006-02-09  Jackson Harper  <jackson@ximian.com>
10290
10291         * ComboBox.cs: Don't touch if null.
10292
10293 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
10294
10295         * Cursor.cs: 64bit safeness fix
10296         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
10297
10298 2006-02-09  Jackson Harper  <jackson@ximian.com>
10299
10300         * Form.cs: If a form is made into an MDI form update the styles so
10301         all the props can get set correctly.
10302         - Kill the mdi_container when we dont need it anymore.
10303         * InternalWindowManager.cs: Add missing NOT
10304
10305 2006-02-08  Jackson Harper  <jackson@ximian.com>
10306
10307         * InternalWindowManager.cs: Respek clipping when drawing MDi
10308         decorations.
10309
10310 2006-02-08  Jackson Harper  <jackson@ximian.com>
10311
10312         * Hwnd.cs: Add bits to track non client expose events.
10313         * XplatUIX11.cs: Track non client expose events on the hwnd. This
10314         gives us a proper invalid rect and will allow for some nice
10315         optimizations with NC client drawing
10316         - MDI windows are children windows, so move their style handling
10317         into the child window block.
10318         * InternalWindowManager.cs: Remove a state reset that was
10319         getting invoked at the wrong time. Fixes managed windows getting
10320         into a 'stuck' captured state.
10321
10322 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10323
10324         * TextControl.cs (Document.ctor): Now initializing 
10325           selection_anchor. Fixes #77493
10326
10327 2006-02-07  Jackson Harper  <jackson@ximian.com>
10328
10329         * TrackBar.cs: The increment/decrements were backwards.
10330
10331 2006-02-07  Mike Kestner  <mkestner@novell.com>
10332
10333         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
10334         to the instance itself.
10335
10336 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10337
10338         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
10339           on ulongs and pointers, the size differs between 32bit and 64bit
10340           systems. 
10341
10342 2006-02-07  Mike Kestner  <mkestner@novell.com>
10343
10344         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
10345         for 64 bit platforms to work around a metacity bug. 
10346
10347 2006-02-07  Jackson Harper  <jackson@ximian.com>
10348
10349         * TrackBar.cs: Process the input keys we need, and hookup to
10350         KeyDown instead of using WndProc, so we get key messages.
10351
10352 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
10353
10354         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
10355           machine we're on. 
10356         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
10357           we need to translate the XdndVersion atoms array before sending it
10358
10359 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
10360
10361         * XplatUIX11.cs: 
10362           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
10363             number of bits for the property, not the number of bytes. The
10364             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
10365             but would not crash since it specified 8 bits instead of 4 bits)
10366           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
10367             defined as XID -> long in the C headers)
10368           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
10369             references since those are now IntPtr to begin with
10370           - Switched all Atom.XXX 'int' casts to IntPtr casts
10371           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
10372           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
10373           - Added XChangeActivePointerGrab DllImport (for X11DnD)
10374         * X11Structs.cs:
10375           - Changed 'int' type for Atoms in XEvent structures to IntPtr
10376           - Changed atom in HoverStruct to be IntPtr
10377         * X11DnD.cs:
10378           - Removed local DllImports, switched code to use those from XplatUIX11
10379           - Removed/fixed casts related to the switch of Atom to be a IntPtr
10380
10381 2006-02-06  Mike Kestner  <mkestner@novell.com>
10382
10383         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
10384         method signatures in the import region.  There may still be some
10385         lingering struct marshaling issues, as I didn't drill down into those.
10386         Yet.
10387
10388 2006-02-06  Jackson Harper  <jackson@ximian.com>
10389
10390         * ComboBox.cs: Dont manually set the top_item, this is computed
10391         when the scrollbar position is set.
10392
10393 2006-02-06  Mike Kestner  <mkestner@novell.com>
10394
10395         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
10396         startup crashes on amd64.  There's other fixes needed.  All pinvoke
10397         usage of Atom needs to be mapped to IntPtr for example.  And there are
10398         likely other int/long issues to be addressed.
10399
10400 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
10401
10402         * FileDialog.cs: One more...
10403
10404 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10405
10406         * FileDialog.cs: Next try
10407
10408 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10409
10410         * FileDialog.cs: First part of fix for #77464
10411
10412 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10413
10414         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
10415           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
10416           AcceptButton border drawing.
10417
10418 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
10419
10420         * Form.cs: Moved positioning of form after auto scaling is applied,
10421           otherwise it would possibly use wrong form size.
10422
10423 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
10424
10425         * Control.cs (RecreateHandle): No need to re-create any child
10426           controls, the child windows will get destroyed automatically by
10427           the windowing system or driver, and re-created when the handle
10428           is being accessed the first time. Fixes #77456
10429         * Form.cs: No longer setting the form to closing if the handle is 
10430           being recreated. This seems like the right thing to do, don't
10431           have a bug or testcase for this, though.
10432
10433 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10434
10435         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
10436           controls to avoid unwanted side effects
10437
10438 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
10439
10440         * Control.cs: 
10441           - ScaleCore needs to scale the bounds, not the ClientSize of the 
10442             control. Fixes #77416.
10443           - DefaultSize is 0,0 for control
10444         * TextBoxBase.cs: 
10445           - DefaultSize is 100, 20
10446           - SetBoundsCore: Now enforcing the height, no matter if the provided
10447             height is more or less than the preferred one, as long as AutoSize
10448             is on
10449         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
10450
10451 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10452
10453         * Control.cs:
10454           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
10455             call unless both performLayout is true *and* we have a pending
10456             layout change
10457           - ResumeLayout: MS does not completely nest Suspend and Resume,
10458             they bottom out at 0, fixed our code to match that.
10459           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
10460             SetBoundsCore, we were updating even when we shouldn't. This fixes
10461             swf-anchors mis-anchoring when resizing the app fast and lots.
10462           - UpdateDistances: Now only setting the left and top distance if 
10463             we have a parent and are not suspended, this is based on
10464             a suggestion by Don Edvaldson in bug #77355.
10465           - OnVisibleChanged: Fixed logic when to create the control. We may
10466             not create the control if we have no parent or if it's not visible;
10467             switched to using Visible property instead of is_visible field 
10468             since the property also considers parent states. This fixes a bug
10469             when starting Paint.Net
10470
10471 2006-02-02  Jackson Harper  <jackson@ximian.com>
10472
10473         * Form.cs: If the forms handle hasn't been created yet don't call
10474         into xplatui to make it top most, just set the topmost flag on the
10475         form in CreateParams
10476         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
10477
10478 2006-02-01  Jackson Harper  <jackson@ximian.com>
10479
10480         * ScrollableControl.cs: Refactored the Recalculate method a
10481         little, this wasn't handling all the variants of bottom and right
10482         bars needed to be added and added/removed based on their
10483         counterparts being added/removed (which changes the drawable
10484         size). Also we special case client widths and heights of 0 and
10485         don't add the scrollbar for those.
10486
10487 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
10488
10489         * XplatUIX11.cs: 
10490           - Added method to get AbsoluteGeometry(); currently unused, but might
10491             be used in the future, if we try again to figure out toplevel
10492             coordinates with some more crappy window managers
10493           - Added FrameExtents() method to retrieve the WM set decoration size
10494           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
10495             to deal with at least KDE, FVWM and metacity (Fixes #77092)
10496         * Hwnd.cs: 
10497           - Added whacky_wm tracking var for metacity
10498           - Added logic to have default menu height if the actual menu height
10499             has not yet been calculated (part of fix for #77426)
10500         * Form.cs: Keep track whether client size has been set and re-set 
10501           it if a menu is added/removed afterwards (Fixes #77426)
10502
10503 2006-01-31  Jackson Harper  <jackson@ximian.com>
10504
10505         * Control.cs: When a new Site is set on the component attempt to
10506         pull the AmbientProperties from it.
10507
10508 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
10509
10510         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
10511           in the background of the owning form. Fixes #77332
10512
10513 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10514
10515         * MimeIcon.cs: Fix for #77409
10516
10517 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10518
10519         * XplatUIX11GTK.cs: Initial import
10520
10521 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
10522
10523         * FixedSizeTextBox: fixes class signature
10524
10525 2006-01-30  Jackson Harper  <jackson@ximian.com>
10526
10527         * FixedSizeTextBox.cs: New internal class that represents a
10528         textBox that will not be scaled.
10529         * TreeView.cs:
10530         * ComboBox.cs:
10531         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
10532         standard TextBox.
10533                 
10534 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
10535
10536         * XplatUIX11.cs: Retrieve default screen number instead of
10537           assuming 0. Attempted fix for #77318
10538
10539 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
10540
10541         * XplatUIWin32.cs: 
10542           - GetWindowPos: When a window is parented by FosterParent, use 
10543             the desktop instead of FosterParent as the base to get coordinates
10544           - CreateWindow: Don't make FosterParent the parent window for Popups
10545             if we don't want a taskbar entry, Popups automatically don't get one
10546         * Hwnd.cs: Need to call remove to actually remove the key from the
10547           hash table
10548
10549 2006-01-30  Mike Kestner  <mkestner@novell.com>
10550
10551         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
10552
10553 2006-01-30  Jackson Harper  <jackson@ximian.com>
10554
10555         * TreeView.cs:
10556         * TreeNode.cs: Raise events no matter how the treenode is
10557         checked. Patch by Don Edvalson.
10558
10559 2006-01-30  Jackson Harper  <jackson@ximian.com>
10560
10561         * TreeNode.cs: Signature fix.
10562
10563 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
10564
10565         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
10566
10567 2006-01-20  Mike Kestner  <mkestner@novell.com>
10568
10569         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
10570         event forwarding when menus are active.
10571         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
10572         Most of the patch is pdb's with a little rework.
10573
10574 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10575
10576         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
10577           Removed GetMenuDC and ReleaseMenuDC methods; replaced
10578           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
10579         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
10580         * InternalWindowManager.cs: Added use of PaintEventStart/End to
10581           handling of WM_NCPAINT message, now passing the PaintEventArgs to
10582           the PaintWindowDecorations method
10583         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
10584         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
10585         * MenuAPI.cs: Made tracker window invisible
10586         * XplatUIWin32.cs:
10587           - Removed GetMenuDC and ReleaseMenuDC methods
10588           - Implemented the client=false path for PaintEventStart and
10589             PaintEventEnd
10590
10591 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10592
10593         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
10594         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
10595           styles
10596         * Form.cs: 
10597           - MaximizeBox, MinimizeBox: Recreate the handle when setting
10598             the style
10599           - CreateParams: Reworked the styles to match MS look'n'feel,
10600             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
10601             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
10602
10603 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10604
10605         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
10606           window is not mapped, since otherwise every form that's being 
10607           created is considered minimized, which is wrong.
10608         * Form.cs: Catching the exception and returning our internal value
10609           instead
10610
10611 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10612
10613         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
10614           SetWindowMinMax() to have means to tell the driver about the minimum,
10615           maximum and maximized state window sizes. (Part of the fix for #76485)
10616         * Form.cs:
10617           - Implemented tracking of minimum and maximum window size, now calling
10618             new SetWindowMinMax() driver method to tell the driver (Part of the
10619             fix for #76485)
10620           - Finished handling of WM_GETMINMAXINFO method, now setting all values
10621             (Completes fix for #76485)
10622           - Calling new SetWindowMinMax driver method when the handle for a 
10623             form is created, to make sure the driver knows about it even if
10624             the values have been set before the window was created
10625           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
10626             to avoid messing up our anchoring calculations (partial fix
10627             for #77355)
10628         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
10629         * XplatUIX11.cs:
10630           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
10631           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
10632             (and presumably other freedesktop.org compliant WMs). Left the
10633             assumption unmapped=minimized, needed for SetVisible to work.
10634           - Now setting the window state when creating windows
10635           - Fixed SetVisible to consider/set the window state when mapping
10636             a Form. We cannot set the state before it's mapped, and we cannot
10637             use Form.WindowState once it's mapped (since it would ask the
10638             driver and get 'normal'. Therefore, we grab the state before
10639             mapping, map, and then set state.
10640           - Implmemented SetWindowMinMax method; Metacity does not seem to
10641             honor the ZoomHints, though.
10642         * XplatUIWin32.cs:
10643           - Removed MINMAXINFO (moved to XplatUIStructs)
10644           - Added SetWindowMinMax stub (on Win32 the only way to set that
10645             information is in response to the WM_GETMINMAXINFO message, which
10646             is handled in Form.cs)
10647           - Added logic to SetVisible to set the proper window state when a 
10648             form is made visible (fixes #75720)
10649
10650 2006-01-26  Jackson Harper  <jackson@ximian.com>
10651
10652         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
10653         same way we handle them with Invoke.
10654
10655 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
10656
10657         * Form.cs:
10658           - Added tracking of window state so CreateParams can return
10659             the appropriate style
10660           - Moved setting of WS_CAPTION style in CreateParams to allow
10661             styles without caption
10662         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
10663           control if the TextBox property is accessed. Fixes #77345
10664         * Control.cs:
10665           - get_Created: now uses is_disposed and is_created to determine
10666             return value (suggested by Jackson)
10667           - CreateHandle: No longer exits if the handle is being recreated
10668           - RecreateHandle: If the handle is not yet created call the 
10669             appropriate method to create either control or handle. If the
10670             control is already created CreateHandle will simply exit instead
10671             of just creating the handle
10672         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
10673           now SendMessage WM_DESTROY directly to the control when DestroyWindow
10674           is called.
10675         * XplatUIX11.cs: 
10676           - When DestroyWindow is called, instead of waiting for the 
10677             DestroyNotification from X11, we directly post it to the WndProc
10678             and immediately dispose the hwnd object.
10679             Same applies to DestroyChildWindows, and this obsoletes the
10680             expose_pending tracking. Contrary to Win32 behaviour we destroy our
10681             child windows before our own, to avoid X11 errors.
10682           - Removed the direct sending of WM_PAINT on UpdateWindow
10683         * XplatUIWin32.cs:
10684           - Reworked DoEvents and GetMessage to allow access to internal queue
10685             even when trying non-blocking access to the queue.  Fixes #77335. 
10686             Based on a patch suggestion by Don Edvalson. The new private
10687             GetMessage can now also be used as a backend for a PeekMessage
10688             frontend version.
10689         * XplatUI.cs: Improved debug output for CreateWindow
10690
10691 2006-01-25  Jackson Harper  <jackson@ximian.com>
10692
10693         * Help.cs: Allow param to be null. Patch by Don Edvalson.
10694
10695 2006-01-24  Jackson Harper  <jackson@ximian.com>
10696
10697         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
10698         when we have a MaxDropItems lower then the selected index.
10699
10700 2006-01-24  Jackson Harper  <jackson@ximian.com>
10701
10702         * Control.cs: Don't allow selection of non visible controls, allow
10703         selection of controls without parents.
10704
10705 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10706
10707         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
10708         * DataGridDrawingLogic.cs: Add editing row only when is necessary
10709
10710 2006-01-23  Jackson Harper  <jackson@ximian.com>
10711
10712         * UpDownBase.cs: Make the textbox handle all the selection and
10713         tabbing. This fixes tabing to updown controls.
10714
10715 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10716
10717         * TextBoxBase.cs: fixes exception thown the object was null
10718
10719 2006-01-23  Jackson Harper  <jackson@ximian.com>
10720
10721         * ButtonBase.cs: Just use the base CreateParams. They set
10722         visibility and enabled correctly.
10723         * ComboBox.cs:
10724         * TrackBar.cs:
10725         * MonthCalendar.cs: Lets let the base set as much of the
10726         createparams as possible so we don't have duplicate code all over
10727         the place.
10728
10729 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
10730
10731         * ThemeGtk.cs: Added TrackBar and some experimental code to
10732           get double buffering back
10733
10734 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
10735
10736         * DataGrid.cs: Allows row number set internally higher than the last
10737         when creating a new row. Restores the editing functionality.
10738
10739 2006-01-20  Mike Kestner  <mkestner@novell.com>
10740
10741         * MimeIcon.cs: delay Image creation until the icons are accessed
10742         instead of creating 190 scaled images on GnomeHandler startup.
10743
10744 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
10745
10746         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
10747           first call base before processing the event. Fixes #77279
10748
10749 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
10750
10751         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
10752           that the stride for the GDI bitmap would match the stride of
10753           a DIB or a Cursor.
10754
10755 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
10756
10757         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
10758
10759 2006-01-19  Jackson Harper  <jackson@ximian.com>
10760
10761         * ComboBox.cs: Hookup the text controls keydown event so we get
10762         those when the text control has the focus.
10763
10764 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10765
10766         * Label.cs: Now using the base events instead of defining new ones;
10767           this allows us to just call the base properties without having to
10768           duplicate all base property logic 
10769
10770 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10771
10772         * Label.cs: A label by default is not a tabstop (Fixes one of our
10773           failing nunit tests)
10774
10775 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10776
10777         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
10778         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
10779
10780 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10781
10782         * Cursor.cs: Reimplemented creating cursor bitmaps without using
10783           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
10784           This fixes #77218
10785         * XplatUIWin32.cs: 
10786           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
10787             constructor creates images that can't be saved. Part of the fix
10788             for #76103
10789           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
10790           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
10791             bug fix for handling window state in forms properly)
10792
10793 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10794
10795         * ThemeGtk.cs: Simplify ScrollBar drawing
10796
10797 2006-01-18  Jackson Harper  <jackson@ximian.com>
10798
10799         * Splitter.cs: Set the default dock style for the splitter control
10800         in the constructor.
10801
10802 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10803
10804         * ThemeGtk.cs: Corrected StateType and ShadowType for
10805           gtk_paint_box
10806
10807 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10808
10809         * Control.cs: Make use of Theme.DoubleBufferingSupported
10810         * ThemeGtk.cs:
10811           - Added drawing for flat style buttons
10812           - Added ScrollBar drawing
10813
10814 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10815
10816         * ThemeClearlooks.cs: Removed some unneeded code.
10817         * ThemeGtk.cs: First part of ThemeGtk enhancements.
10818
10819 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10820
10821         * LinkLabel.cs: We need to update the hover drawing when
10822           leaving the control as well.
10823
10824 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
10825
10826         * DataGrid.cs: Clicking on non empty areas in the columns
10827            area was giving an exception
10828
10829 2006-01-17  Jackson Harper  <jackson@ximian.com>
10830
10831         * ThemeWin32Classic.cs:
10832         * ListView.cs: Do not draw/clip the headers when the header style
10833         is None.
10834
10835 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10836
10837         * DataGrid.cs: Fixes 77260
10838         
10839 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10840
10841         * DataGrid.cs: Clicking on a column on a empty grid was giving
10842           an exception
10843
10844 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10845
10846         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
10847           or any keypress will crash the grid.
10848
10849 2006-01-17  Mike Kestner  <mkestner@novell.com>
10850
10851         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
10852         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
10853         invisible/previously-visible items.
10854         [Fixes #76909]
10855
10856 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
10857
10858         * ThemeClearlooks.cs:
10859         - Added CL_Draw_Button method; now other theme controls that are 
10860           not derived from button or do not have a button can draw buttons
10861           too
10862         - Updated ComboBox drawing
10863         - Beautified RadioButton drawing
10864         - Corrected drawing of bottom and left tabs
10865         - Beautified DateTimePicker and MonthCalendar
10866         - Added CPDrawButton and CPDrawRadioButton
10867
10868 2006-01-16  Jackson Harper  <jackson@ximian.com>
10869
10870         * ComboBox.cs: Set the initial value of the scrollbar to the
10871         current index. Reduce the numbers of refreshs and IndexOfs called.
10872
10873 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
10874
10875         * FileDialog.cs: When the file listview is focused hitting the
10876           backspace key moves the fileview to the parent directory
10877
10878 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10879
10880         * Form.cs: 
10881           - Added RecreateHandle call when changing taskbar visibility to 
10882             trigger reparenting in Win32 driver (Fixes #75719)
10883           - If a window has minimize or maximize buttons, it cannot have
10884             a help button
10885         * XplatUIWin32.cs:
10886           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
10887             the toplevel form with FosterParent (A toolwindow not on the
10888             taskbar) (Fixes #75719)
10889           - Made FosterParent a toolwindow
10890
10891 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10892
10893         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
10894
10895 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10896
10897         * ToolTip.cs: If SetToolTip is called from a control and the mouse
10898           is currently over that control, make sure that tooltip_window.Text
10899           gets updated
10900
10901 2006-01-13  Mike Kestner  <mkestner@novell.com>
10902
10903         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
10904
10905 2006-01-13  Jackson Harper  <jackson@ximian.com>
10906
10907         * TreeView.cs: On MS GetNodeAt never actually factors in the X
10908         value passed.  Also redraw the selected node when we recieve
10909         focus, so tabbing between trees works correctly.
10910
10911 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10912
10913         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
10914           ~/.gconf/%gconf-tree.xml, so use
10915           .gconf/desktop/gnome/interface/%gconf.xml
10916
10917 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10918
10919         * TextControl.cs: Draw text in gray if control is disabled
10920
10921 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10922
10923         * TreeView.cs: Draw the focus rectangle outside the highlight, to
10924           make sure it's always visible. Fixes #76680.
10925
10926 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10927
10928         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
10929
10930 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
10931
10932         * PageSetupDialog.cs: Added.
10933         * PrintDialog.cs: Attributes.
10934         * PrintPreviewControl.cs: Updates.
10935         * PrintPreviewDialog.cs: Updates.
10936         
10937 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10938
10939         * Control.cs: Undid my selection check fix, since it's not needed
10940         * TextBoxBase.cs:
10941           - Now considering the presence of hscroll/vscroll when sizing
10942             vscroll/hscroll respectively. Fixed bug #77077
10943           - Added Left/Up/Down/Right to IsInputKey list to prevent
10944             ContainerControl from stealing them. This fixes what I broke
10945             with my last checkin.
10946
10947 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
10948
10949         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
10950           I finally understand how the property can be set without a setter :-)
10951
10952 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10953
10954         * Application.cs:
10955           - Switched RunLoop to use static Message.Create to create a 
10956             Message object
10957           - Added PreProcessMessage call in runloop for keyboard events; this
10958             is part of the fix for #77219, I overlooked this originally in the
10959             MSDN doc for PreProcessMessage
10960         * Control.cs:
10961           - Removed call to PreProcessMessage from handling of keyboard 
10962             messages; it's supposed to be done in the message pump
10963           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
10964             per MSDN documentation.
10965           - IsInputChar: All chars are input chars by default; removed the 
10966             parent calling chain, MS does not document that
10967           - PreProcessMessage: If IsInputChar is true, we want to return false
10968             to allow dispatching of the message
10969           - When selecting the next control, now also check that we're not
10970             selecting ourselves again and therefore return a false positive.
10971         * TextBoxBase.cs:
10972           - Tried to match return values for IsInputKey and ProcessDialogKey
10973             to what MS returns; moved processing of our special keys outside
10974             ProcessDialogKey since MS does not seem to return true on those.
10975           - Moved code that previously was in ProcessDialogKey into new private
10976             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
10977           - Reworked handling of WM_CHAR to not have to duplicate code from
10978             Control.cs anymore, instead we simply call down to base.
10979            
10980 2006-01-12  Jackson Harper  <jackson@ximian.com>
10981
10982         * ComboBox.cs: We always need to refresh the text area when
10983         EndUpdate is called. Fixes the combobox in the file dialog.
10984         * Control.cs: Don't create the creator_thread until the controls
10985         handle is created.  Also in InvokeRequired we check if the
10986         creator_thread is null. This gives the effect of InvokeRequired
10987         returning true if the controls handle is not created yet, and
10988         matches MS.
10989
10990 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10991
10992         * XplatUI.cs:
10993           - Added StartLoop() driver method. This is used to allow drivers to
10994             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
10995             loop for a particular thread
10996           - Added EndLoop() driver method. This is called once the message
10997             pump for the thread is shut down
10998           - Added SupportsTransparency method to allow the driver to indicate
10999             opacity support for windows
11000         * Form.cs:
11001           - Removed TODO attribute, completed AllowTransparency property
11002           - Added documented logic to Opacity
11003         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
11004           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
11005           versions of CompatibleTextRendering
11006         * X11Structs.cs: Added opacity atom to our atom enumeration
11007         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
11008           of a form might be set before it's reparented by the WM, and we need
11009           the opacity value without calling up to Form)
11010         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
11011           SupportsTransparency() driver methods
11012         * Application.cs: Now calling StartLoop and EndLoop driver methods
11013         * XplatUIX11.cs:
11014           - Added opacity atom registration
11015           - Added StartLoop()/EndLoop() methods. They're empty right now but
11016             will need to get implemented when we switch to a per-thread queue
11017           - Implemented SupportsTransparency() method
11018           - Implemented SetWindowTransparency() method
11019           - Added support for setting the opacity value when a window is
11020             reparented (since the opacity needs to be set on the WM frame)
11021         * XplatUIOSX.cs, XplatUIWin32.cs:
11022           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
11023
11024 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11025
11026         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
11027
11028 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11029
11030         * FileDialog.cs: Added ToolTip for MWFFileView
11031         * MimeIcon.cs: Rewrote GnomeHandler.
11032           - Get currently used gnome icon theme from
11033             ($HOME)/.gconf/%gconf-tree.xml
11034           - Make use of inherited icon themes
11035           - Support SVG icon themes like Tango via librsvg
11036
11037 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11038
11039         Revert's Jackson's revert which broke 2.0 builds.   Fix both
11040         builds. 
11041         
11042         * Application.cs: Move the use_compatible_text_rendering outside
11043         the NET_2_0 define.  If we ever need to use the
11044         use_compatible_text_rendering on the individual controls they will
11045         access the variable from the common shared code paths.
11046
11047 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11048
11049         * XplatUI.cs:
11050           - Added more granular debug options
11051           - Added method to print both window text and id
11052           - Switched debug output to use new Window() debug method
11053           - Added IsEnabled() driver method
11054           - Added EnableWindow() driver method
11055         * Form.cs:
11056           - Removed end_modal; no longer needed, new loop handles termination
11057             via 'closing' variable
11058           - If form is modal, setting DialogResult will now initiate loop
11059             termination via 'closing' variable
11060           - Added support for is_enabled/WS_DISABLED to CreateParams
11061           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
11062             does all the work
11063           - Removed code that's now in RunLoop from ShowDialog()
11064           - Added various documented sanity checks to ShowDialog()
11065           - Added handling of WM_DESTROY message; we set 'closing' on getting
11066             the message to indicate the message pump to terminate
11067           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
11068             send by the Application.ExitThread method. (We send the message
11069             to destroy the window after all other events have been
11070             processed through the queue, instead of destroying the handle 
11071             directly)
11072           - Moved code from Close() method to WM_CLOSE handler; added logic
11073             to only send close-related events if the form is not displayed
11074             modal
11075         * Splitter.cs (..ctor): Fixed typo in resource name
11076         * Control.cs:
11077           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
11078             brush now
11079           - set_Cursor: Now only setting calling into XplatUI if the handle for
11080             the control is already created; this avoids implict handle creation
11081             or crashes if it's not created
11082           - set_Enabled: Now setting the enabled state via the new driver method
11083             instead of just tracking it
11084           - CreateParams: Added logic to set WS_DISABLED based on enabled state
11085           - CreateControl: Reordered event firing and method calls to more
11086             closely fire events in the order MS does. Now setting the
11087             enabled state in the driver when creating the control.
11088           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
11089             match MS order
11090         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
11091           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
11092         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
11093         * Hwnd.cs:
11094           - Added tracking of window enabled state (get_Enabled/set_Enabled)
11095           - Added EnabledHwnd property to easily allow a driver to find the
11096             handle of the first enabled window in the parent chain (this is
11097             used by drivers to pass up input events of disabled windows)
11098         * XplatUIDriver.cs: Added IsEnabled() method
11099         * Application.cs:
11100           - Removed crude and obsolete exiting tracking variable
11101           - Removed internal ModalRun(); replaced by RunLoop()
11102           - Implemented private CloseForms() method to allow closing all 
11103             windows owned by a particular (or all) threads
11104           - Exit() now properly closes all windows without forcing the message
11105             pump to quit
11106           - Removed obsolete InternalExit() method
11107           - Changed Run() methods to use new RunLoop() message pump
11108           - Implemented new RunLoop() method for both modal and non-modal forms
11109         * CommonDialog.cs:
11110           - get_CreateParams: Added setting of WS_DISABLED
11111           - Simplified ShowDialog(); now all the work is done in RunLoop(),
11112             invoked via Form.ShowDialog()
11113         * NativeWindow.cs: We don't remove the window from the collection when
11114           the handle is destroyed; there might still be messages for it in the
11115           queue (mainly the resulting WM_DESTROY); instead it will be removed
11116           when Control calls InvalidateHandle in the WM_DESTROY handler
11117         * XplatUIX11.cs:
11118           - CreateWindow: Added logic to handle the WS_DISABLED window style
11119           - EnableWindow: Implemented based on Hwnd.Enabled
11120           - GetMessage: Reset PostQuitState so the method can be called again
11121           - Implemented support for disabled windows (passing messages to the
11122             first enabled parent) in handling all input messages
11123           - Added optimizations for handling Expose events
11124           - Implemeted new driver method IsEnabled()
11125           - Now always resetting paint pending tracking vars when we start paint
11126           - Re-implemented UpdateWindow via just sending a WM_PAINT message
11127         * XplatUIOSX.cs: Added IsEnabled method stub
11128         * XplatUIWin32.cs: Implemented new IsEnabled() method
11129
11130 2006-01-11  Jackson Harper  <jackson@ximian.com>
11131
11132         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11133         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
11134         variables a little.
11135         * ColorDialog.cs: Clear out the old form before adding the new
11136         panel.  
11137
11138 2006-01-11  Jackson Harper  <jackson@ximian.com>
11139
11140         * X11Dnd.cs: Make sure to add all the text formats when adding
11141         strings to the data object.
11142         * TreeNodeCollection.cs: When adding to a sorted tree we need to
11143         do some redrawing too.  Also change the UpdateNode to an
11144         UpdateBelow so the newly added node gets painted.
11145         
11146 2006-01-11  Miguel de Icaza  <miguel@novell.com>
11147
11148         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11149         LinkLabel.cs, PropertyGrid.cs: Implement the
11150         UseCompatibleTextRendering property for 2.x
11151
11152         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
11153
11154 2006-01-11  Jackson Harper  <jackson@ximian.com>
11155
11156         * TreeView.cs: Use the property for setting the selected node so
11157         the correct events get raised.
11158         * TreeNode.cs: Update the tree when the fore/back colours of a
11159         node are set.
11160
11161 2006-01-10  Jackson Harper  <jackson@ximian.com>
11162
11163         * TreeView.cs: Allow setting SelectedNode to null.
11164
11165 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11166
11167         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
11168
11169 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11170
11171         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
11172
11173 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11174
11175         * PrintDialog.cs: Added attributes and set default property values.
11176
11177 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11178
11179         * PrintControllerWithStatusDialog.cs: 
11180         Added PrintControllerWithStatusDialog.
11181
11182 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11183
11184         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11185         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
11186
11187 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11188
11189         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
11190
11191 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11192
11193         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
11194         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
11195
11196 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11197
11198         * MimeIcon.cs: Added internal class SVGUtil.
11199
11200 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11201
11202         * FileDialog.cs: Don't crash if there are two files with the
11203           same name but different locations.
11204
11205 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
11206
11207         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
11208         dates across multiple month grids. Used to not highlight entire 
11209         month, but does now.
11210         
11211 2006-01-06  Jackson Harper  <jackson@ximian.com>
11212
11213         * MonthCalendar.cs: Removed DoEvents call to prevent a running
11214         message loop. Change timer intervals to numbers that seem more
11215         natural.
11216
11217 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
11218
11219         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
11220           object for location info since screen object is now implemented.
11221
11222 2006-01-05  Jackson Harper  <jackson@ximian.com>
11223
11224         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
11225         * AsyncMethodResult.cs: We no longer use a WeakReference for the
11226         AsyncMethodResult, this is because we ALWAYS want the
11227         ManualResetEvent to get set.
11228         * Control.cs: When disposing use an async invoke to call shutdown
11229         code, so that thigns don't block on the finalizer thread.  Also
11230         check if we even have a message loop before trying to send
11231         messages, if we don't then don't bother sending messages.
11232         - No more weak references for async methods
11233         * XplatUIDriver.cs: No more weak references for async methods.
11234
11235 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11236
11237         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
11238           returns two FontFamily with the same name
11239
11240 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11241
11242         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
11243           drawing disabled text. Instead using the ColorGrayText color
11244
11245 2006-01-04  Jackson Harper  <jackson@ximian.com>
11246
11247         * TreeNode.cs: redraw the node when its image index is changed.
11248
11249 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11250
11251         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
11252           time I checked there are no others like it.
11253
11254 2006-01-04  Jackson Harper  <jackson@ximian.com>
11255
11256         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
11257         this gives the behavoir I was looking for.
11258         * Control.cs: Special case Invoking EventHandlers, this matches MS
11259         and fixes part of bug #76326.
11260
11261 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11262
11263         * ThemeClearlooks.cs, FileDialog.cs:
11264           - Reflect the latest Theme class changes
11265           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
11266             with DateTime
11267             
11268 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11269
11270         * Theme.cs: Cache UI resource images and resize them if needed
11271
11272 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11273
11274         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
11275           is called. This fixes the crash in Nexxia when setting the font
11276           attributes in the chat. [However, RTF needs a look-over to make sure
11277           that all SelectionXXX methods handle the special case that selection
11278           is empty and therefore the change must be applied to all text starting
11279           at the cursor/selection start]
11280
11281 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
11282
11283         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11284           XplatUIOSX.cs: Added SendMessage and PostMessage methods
11285         * X11Keyboard.cs: Switched to new way of calling PostMessage
11286
11287 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11288
11289         * Theme.cs: Added theme interface for images to allow the theme to
11290           control what images are used for things like FileDialog, MessageBox
11291           icons, etc.
11292         * MessageBox.cs: Now uses the new Theme icon/image interfaces
11293
11294 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
11295
11296         * FileDialog.cs:
11297           - Removed some dead code
11298           - Opening a recently used file does work now
11299           - Small UI enhancements
11300           - Refactoring
11301
11302 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11303
11304         * FileDialog.cs: Forgot too add __MonoCS__
11305
11306 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11307
11308         * FileDialog.cs: We are able to read recently used files now let's
11309           go on and write them.
11310
11311 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
11312
11313         * FileDialog.cs: Breathe some life into "last open"/"recently used"
11314           button
11315         * MimeIcon.cs: Do a check for the top level media type also
11316
11317 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11318
11319         * ThemeClearlooks.cs:
11320           - Added CPDrawStringDisabled
11321           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
11322             some chars if the text doesn't fit into text_rect
11323           - DrawListViewItem: If View = View.LargeIcon center the image;
11324             rewrote the drawing of ListViewItem.Text if View = 
11325             View.LargeIcon
11326
11327 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11328
11329         * MimeIcon.cs: Use default KDE icon theme if there is no
11330           "48x48" directory for the current icon theme, fixes #77114
11331         * Mime.cs: Disable not working and actually not used code. 
11332         * ThemeWin32Classic.cs:
11333           - Replace "new SolidBrush" in GetControlBackBrush and
11334             GetControlForeBrush with ResPool.GetSolidBrush
11335           - Changed DrawListViewItem from private to protected virtual
11336         * FileDialog.cs:
11337           - Added form.MaximizeBox = true
11338           - Don't throw an exception if there is a broken symbolic link
11339
11340 2005-12-23  Jackson Harper  <jackson@ximian.com>
11341
11342         * TabControl.cs: Give the panels focus, keyboard navigation is
11343         fixed so this works correctly now.
11344         - We need these key events also.
11345         * ToolBar.cs: Remove some of the poor mans double buffering.
11346         
11347 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
11348
11349         * ComboBox.cs: The internal TextBox now returns the focus.
11350
11351 2005-12-23  Jackson Harper  <jackson@ximian.com>
11352
11353         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
11354
11355 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11356
11357         * Control.cs: Removed debug code
11358         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
11359           implicit children
11360
11361 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
11362
11363         * Control.cs: When creating the control, update the Z-order after
11364           all it's children are created, too. (Fixes nexxia not showing
11365           picturebox bug)
11366
11367 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11368
11369         * Control.cs: Do not update the anchoring distances if layout is
11370           suspended, instead do it once layout is resumed
11371
11372 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
11373
11374         * Control.cs: 
11375           - After many hours of debugging, for both Jackson and
11376             myself, it turns out that it helps to set the parent of a control
11377             if you want to actually see it onscreen. In the spirit of that
11378             discovery, we're now setting the parent of the control and
11379             it's children when the control's handle is created. This fix
11380             will make Lutz Roeder's Reflector run happily. 
11381           - now just creating the handle instead of the whole control when
11382             getting a graphics context for the control.
11383
11384 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11385
11386         * ScrollableControl.cs: When calculating the canvas, don't consider
11387           the scrollbar widths. Instead, predict if horizontal scrollbar
11388           will affect canvas when deciding on vertical display and vice versa.
11389
11390 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11391
11392         * RichTextBox.cs: Set default RTF font for documents that don't
11393           have a font table (Fixes #77076)
11394
11395 2005-12-22  Jackson Harper  <jackson@ximian.com>
11396
11397         * TextBoxBase.cs: It's difficult to do, but you can have an empty
11398         clipboard. This prevents a NullRef in that case.
11399         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
11400         clipboard. PRIMARY is for the currently selected text only. (We
11401         should implement PRIMARY at some point.
11402
11403 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11404
11405         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
11406           a Unicode function with a structure that was defined in Ansi way.
11407           This fixes #76942.
11408
11409 2005-12-21  Jackson Harper  <jackson@ximian.com>
11410
11411         * StatusBar.cs: Statusbar handles its fore/back colours on it's
11412         on. Because thats how it rolls. (and this avoids it using ambient
11413         colours).
11414         * ThemeWin32Classic.cs: Use the proper back color for filling.
11415         * Menu.cs: Use the system menu bar color for drawing menu
11416         bars. Using the window back color will bring ambient colours into
11417         the picture.
11418
11419 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
11420
11421         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
11422           Bitmaps were created and not disposed.
11423
11424 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11425
11426         * Control.cs (CreateControl): Don't do anything if the control is
11427           already created, otherwise we'd fire the OnCreated event more than
11428           once
11429
11430 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11431
11432         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
11433           will always match. Instead return -1. Fixes #76464.
11434
11435 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11436
11437         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
11438           neither the beginning nor the end of the line (Fixes bug #76479)
11439
11440 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11441
11442         * Control.cs:
11443           - ControlNativeWindow.ControlFromHandle(): Now handling situation
11444             where handle is invalid
11445           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
11446             instead of slower linear search
11447         * NativeWindow.cs: Don't remove the window from the hashtable until
11448           after the driver has destroyed it (since the driver might use
11449           Control.FromHandle to lookup the control object
11450         * Hwnd.cs: Added DestroyPending property to track if a window is 
11451           already destroyed as far as the driver is concerned and only hasn't
11452           yet notified the control
11453         * XplatUIX11.cs:
11454           - Activate(): Check if the window is still valid before using the 
11455             handle
11456           - Implemented DestroyChildWindow() method to mark child windows as
11457             destroyed when a window is destroyed. This prevents situations 
11458             where we might call an X method based on queued events for a
11459             window that already has been destroyed but we haven't yet pulled
11460             the destroy method from the queue.
11461           - Added a call to the new DestroyChildWindow() method to the drivers
11462             DestroyWindow code. Also now marking the destroyed window itself
11463             as pending
11464
11465 2005-12-20  Jackson Harper  <jackson@ximian.com>
11466
11467         * StatusBar.cs:
11468         * StatusBarPanel.cs: Don't calculate panel sizes on draw
11469         anymore. Just do them when needed, also track the rects of panels
11470         so that we can optimize refreshing more in the future.
11471
11472 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
11473
11474         * ColorDialog.cs: Fixed focus drawing in small color controls
11475
11476 2005-12-19  Jackson Harper  <jackson@ximian.com>
11477
11478         * InternalWindowManager.cs:
11479         * MdiWindowManager.cs: Cleanup some coordinate system changes so
11480         moving windows works properly.
11481
11482 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
11483
11484         * Control.cs: 
11485           - Removed call to InitLayout() from SetBoundsCore(); doc says
11486             it's only called when a control is added to a container
11487           - Split InitLayout logic, moved to separate UpdateDistances() method
11488             since we need to perform those calculations more often than just
11489             when adding the control to a container. (Needed to fix #77022)
11490           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
11491           - Reduced the OnBindingContextChanged events count, don't send them
11492             unless the control is created, we still aren't totally matching
11493             MS, but I can't quite figure out some of their rules
11494
11495 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11496
11497         * ThemeClearlooks.cs: Corrected distance between ProgressBar
11498           stripes
11499
11500 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11501
11502         * ThemeClearlooks.cs:
11503           - Updated ProgressBar drawing
11504           - Corrected drawing of ScrollBars and scroll buttons
11505           - Some temporary fixes for minor pixel artefacts
11506
11507 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
11508
11509         * Control.cs:
11510           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
11511             cause events to be sent in the same order as MS does.
11512           - Added ChangeParent() method to trigger various OnXXXChanged events
11513             that need to be fired when a parent changes (This is a reworking
11514             of the patch from r54254, with the X11 errors fixed)
11515           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
11516             since on MS we get OnLayoutChanged events when calling Clear()
11517           - Changed Enabled property to consider parent state as well, if a
11518             parent is not enabled, the control will not be either
11519           - Changed Parent property to simply call Controls.Add() since that
11520             now does all the work required, this way we avoid code duplication
11521           - Threw in a few OnBindingsContextChanged calls to try and match
11522             when MS sends them. We seem to send a few too many, though.
11523           - Added call to CreateControl when adding the control to a parent.
11524             We were never calling CreateControl. Still needs some work, in
11525             some places we treat HandleCreated and ControlCreated as equal, 
11526             which is wrong
11527           - Removed obsolete commented out code from UpdateZOrder()
11528
11529 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11530
11531         * ThemeClearlooks.cs: Updated TrackBar drawing.
11532
11533 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11534
11535         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
11536
11537 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11538
11539         * FileDialog.cs: Add the Help button and the open readonly
11540           checkbox only if needed
11541
11542 2005-12-16  Jackson Harper  <jackson@ximian.com>
11543
11544         * Control.cs: Make sure we have an active menu before trying to
11545         process commands on it. Prevents menu-less forms from crashing
11546         when Alt is pressed.
11547         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
11548         Dieter Bremes.
11549         * RichTextBox.cs: Expand statement to help out gmcs and fix the
11550         2.0 build.
11551
11552 2005-12-16  Jackson Harper  <jackson@ximian.com>
11553
11554         * InternalWindowManager.cs: Don't translate tool windows screen
11555         coordinates. This fixes windows 'bouncing' around when being moved.
11556
11557 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11558
11559         * TextBoxBase.cs:
11560           - MaxLength now treats 2^31-1 equal to unlimited length (this is
11561             not quite MS compatible, MS uses that number only for single line
11562             and 2^32-1 for multi-line, but I figure it won't hurt keeping
11563             the limit at 2GB)
11564           - Now enforcing the MaxLength limit when entering characters
11565           - Added argument to internal Paste() method to track if it's called
11566             from programatically or via keyboard, since keyboard driven pastes
11567             need to enforce max-length
11568           - Added logic to Paste to only paste as many chars as MaxLength 
11569             allows
11570         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
11571         * TextControl.cs:
11572           - Added Length property to return number of characters in document
11573           - Added private CharCount property which only tracks actual chars
11574             in the document (no linefeeds) and fires event when CharCount
11575             changes
11576           - Added tracking of character count to all methods that alter it
11577           - Added LengthChanged event to allow applications to subscribe
11578             to any changes to the document
11579
11580 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11581
11582         * TextBox.cs: 
11583           - Removed local password_char field (moved to TextBoxBase)
11584           - Now setting the document's password var when password is
11585             set
11586         * TextBoxBase.cs:
11587           - Added password_char field (needed here so MultiLine can
11588             access it)
11589           - Added logic to MultiLine property setter to set the document's
11590             variable when password display is allowed
11591           - Removed debug code and made some debug code conditional
11592         * TextControl.cs:
11593           - Added RecalculatePasswordLine() method to handle special password
11594             char only lines
11595           - Added PasswordChar property, also added related tracking vars
11596           - Draw() method now uses local text var for grabbing text to draw,
11597             this var is set to line.text unless we're doing password display,
11598             then it is set to the pre-generated all-password-chars line
11599           - Added calling RecalculatePasswordLine() method for password lines
11600
11601 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11602
11603         * Hwnd.cs: 
11604           - Added Reparented property to allow tracking of Window Manager
11605             reparenting actions (which affect X/Y calculations of toplevel 
11606             windows)
11607           - Made ToString() print window handles in hex
11608         * XplatUIX11.cs:
11609           - AddConfigureNotify(): Now uses reparented state off Hwnd to
11610             determine if X/Y needs offsetting
11611           - AddConfigureNotify(): Fixed offset calculations
11612           - Now adds ReparentNotify messages into the queue
11613           - Now processes ReparentNotify messages and causes a 
11614             WM_WINDOWPOSCHANGED message to be sent upstream if a window
11615             is reparented (as most likely it's X/Y coordinates are changed
11616             due to that)
11617
11618 2005-12-14  Jackson Harper  <jackson@ximian.com>
11619
11620         * XplatUIX11.cs: Tool windows still need to respek focus.
11621
11622 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11623
11624         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
11625           have a working release
11626
11627 2005-12-13  Jackson Harper  <jackson@ximian.com>
11628
11629         * Form.cs: Update styles after setting the border style regardless
11630         of whether or not the window is using a window manager.
11631
11632 2005-12-13  Jackson Harper  <jackson@ximian.com>
11633
11634         * Form.cs: We now hook into an internal window manager instead of just an
11635         MDI subsystem, this is so we can have properly behaving tool windows.
11636         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
11637         * InternalWindowManager.cs: New internal class that acts as a
11638         window manager for tool windows and as a base for mdi windows.
11639         * MdiWindowManager.cs: New class that acts as a window manager for
11640         mdi windows.
11641
11642 2005-12-12  Jackson Harper  <jackson@ximian.com>
11643
11644         * Control.cs: Updates so we match behavoir for for implicit
11645         controls. Fixes explosions in MDI.
11646
11647 2005-12-12  Jackson Harper  <jackson@ximian.com>
11648
11649         * Control.cs: Implement Invalidate (Region).
11650
11651 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
11652
11653         * Control.cs: 
11654           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
11655             the same events as MS does. MS fires events for each property 
11656             except, for unknown reasons, Cursor, when the control is reparented. 
11657             I can't seem to totally match add/remove since MS also fires some 
11658             VisibleChanged events, which makes no sense. Consolidated the
11659             parenting code into a separate method so it can be called from
11660             both Add and Remove. set_Parent no longer needs any special logic
11661             as it calls the parent's add method which implicitly fires
11662             all events
11663           - Removed some obsolete code and debug output
11664           - Enabled state is inherited from parents, if this is enabled
11665
11666 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
11667
11668         * Form.cs: Removed commented out code
11669
11670 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
11671
11672         * Control.cs:
11673           - Added internal version of Invoke, with additional argument 
11674             indicating if we're calling it from a Dispose() handler. That
11675             way we can avoid BeginInvoke throwing an exception if we're
11676             calling for an already destroyed window.
11677           - Added a dispose argument to BeginInvokeInternal, and made the
11678             check if a valid window handle chain exists conditional on
11679             it not being a dispose call
11680           - Removed code in DestroyHandle to destroy our children. Since we
11681             now handle the WM_DESTROY message we will catch all our children
11682             being destroyed.
11683           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
11684         * Form.cs:
11685           - Added a field to track the application context of the form.
11686           - No need to set closing variable as response to WM_CLOSE, instead
11687             we destroy the window. We also call PostQuitMessage if the form
11688             has an application context (which makes it the main app form,
11689             which, when closed terminates the app)
11690         * XplatUI.cs:
11691           - Dropped Exit() method, it's naming was confusing
11692           - Added PostQuitMessage() which causes GetMessage to return false
11693             once the message queue is empty
11694         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
11695           PostQuitMessage()
11696         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
11697           no longer a valid XplatUI method, but left it in since it's used
11698           internally. Added empty PostQuitMessage() method.
11699         * MenuAPI.cs: Replaced call to Exit() with call to
11700           PostQuitMessage, even though this is probably no longer needed.
11701         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
11702         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
11703         * Application.cs:
11704           - Replaced call to XplatUI.Exit() with PostQuitMessage()
11705           - Removed old debug code that would call XplatUI for exception
11706             display, enabled standard exception handling (Still not enabled
11707             though, until NativeWindow's ExternalExceptionHandler define
11708             is removed
11709         * NativeWindow.cs:
11710           - Added internal method to allow control to update NativeWindow
11711             after a window has been destroyed
11712           - Added handling of already destroyed windows when calling i
11713             DestroyWindow
11714           - Added removal of handle from list on ReleaseHandle
11715         * XplatUIX11.cs:
11716           - Dropped GetMessageResult var and related code
11717           - Added PostQuitState to field to track if PostQuitMessage has been
11718             called
11719           - Dropped Exit() method
11720           - Added PostQuitMessage() method
11721           - GetMessage now will return false if PostQuitState is set and no
11722             more messages are in the queue.
11723           - Expose handler will no longer generate WM_PAINT messages if we are
11724             in PostQuitState since it's very likely any windows have already
11725             been destroyed, and since Hwnd won't get updated until we have
11726             processed the DestroyNotify we'd be causing X errors.
11727         
11728 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11729
11730         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
11731           Thanks to Mike for pointing out the err of my ways.
11732
11733 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11734
11735         * Control.cs(PreProcessMessage): Moved menu handling back, but
11736           after all other key handling, to match MS (who handles Menu in
11737           DefWndProc)
11738         * Menu.cs (WndProc): Removed my brainfart
11739
11740 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11741
11742         * Control.cs(PreProcessMessage): Removed special menu handling 
11743         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
11744
11745 2005-12-07  Mike Kestner  <mkestner@novell.com>
11746
11747         * Control.cs : special case SYSKEYUP so that we can adjust keynav
11748         state according in tracker.
11749         * Menu.cs : promote tracker field to base class and provide a tracker
11750         lookup capability.  Add/Remove shortcuts dynamically if the top menu
11751         has a tracker. Unparent items that are removed from the collection.
11752         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
11753         * Theme*.cs: add always_show_hotkeys field to support configurability
11754         of mnemonic display.  win32 doesn't show mnemonics until Alt is
11755         pressed.
11756
11757 2005-12-07  Jackson Harper  <jackson@ximian.com>
11758
11759         * MdiChildContext.cs: Use Control.ResetCursor.
11760         * Control.cs: ResetCursor needs to set the property so that the
11761         correct XplatUI call gets made.
11762
11763 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11764
11765         * Control.cs: More fixes to make our key events match MS. We
11766           were not setting the modifier state on KeyData, and we were
11767           not generating any events when Alt was pressed with a key
11768           since handling of WM_SYSxxx was missing for the OnKey methods.
11769
11770 2005-12-07  Jackson Harper  <jackson@ximian.com>
11771
11772         * MdiChildContext.cs: reenable the sizing code.
11773         - When the mouse leaves a window reset its cursor.
11774
11775 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11776
11777         * ThemeClearlooks.cs: Reflect latest Hwnd changes
11778
11779 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11780
11781         * Hwnd.cs: Now using the theme 3d bordersize to calculate
11782           widths of Fixed3D borders
11783
11784 2005-12-07  Jackson Harper  <jackson@ximian.com>
11785
11786         * MdiClient.cs: Fix warnings. Earn Mike's love.
11787
11788 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11789
11790         * ThemeClearlooks.cs:
11791           - Adjusted mouse over button color
11792           - Added first parts of CheckBox drawing
11793           - Added correct color for selected text background
11794           - Fixed ComboBox drawing
11795           - Added CPDrawBorder3D and CPDrawBorder
11796
11797 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11798
11799         * XplatUIX11.cs: Added call to XBell for AudibleAlert
11800
11801 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
11802
11803         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11804           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
11805           alert users via sound. We could add an enum arg with different
11806           types of alerts in the future
11807
11808 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11809
11810         * Control.cs: Fix behaviour problems pointed out by Mike
11811
11812 2005-12-05  Mike Kestner  <mkestner@novell.com>
11813
11814         * StatusBarPanel.cs: add Invalidate method and hook it into all the
11815         prop setters.  Calls parent.Refresh for now, but could be maybe be
11816         optimized with an internal method on StatusBar at some point.
11817         [Fixes #76513]
11818
11819 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
11820
11821         * RichTextBox.cs: Implemented get_SelectionColor
11822
11823 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
11824
11825         * ThemeClearlooks.cs:
11826           - Removed dead code
11827           - Draw black button border only if button is Form.AcceptButton
11828           - Draw correct button color for pressed RadioButton if the mouse 
11829             has entered the button
11830           - Updated ProgressBar drawing!
11831           - Updated CPDrawSizeGrip drawing
11832           - Updated StatusBarPanel drawing
11833
11834 2005-12-05  Mike Kestner  <mkestner@novell.com>
11835
11836         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
11837         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
11838
11839 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
11840
11841         * ThemeClearlooks.cs: Initial check-in, activate with
11842           export MONO_THEME=clearlooks
11843         * ThemeEngine.cs: Added ThemeClearlooks
11844
11845 2005-12-03  Mike Kestner  <mkestner@novell.com>
11846
11847         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
11848         [Fixes #76897]
11849
11850 2005-12-02  Jackson Harper  <jackson@ximian.com>
11851
11852         * Form.cs: If the child form has no menu the default main menu is
11853         used as the active menu.
11854
11855 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
11856
11857         * ListBox.cs: Check if any items exist before trying to resolve 
11858           coordinates into items
11859
11860 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11861
11862         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
11863           as the second color for the background hatch
11864
11865 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11866
11867         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
11868         * RichTextBox.cs: FormatText position arguments are 1-based, now making
11869           sure that what we pass to FormatText is always 1-based. Fixes #76885
11870
11871 2005-11-29  Miguel de Icaza  <miguel@novell.com>
11872
11873         * NumericUpDown.cs (EndInit): When we are done initializing,
11874         reflect any updates on the UI.
11875
11876 2005-12-02  Jackson Harper  <jackson@ximian.com>
11877
11878         * ImplicitHScrollBar.cs:
11879         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
11880         their container controls.
11881         * TreeView.cs: Use the new implicit scrollbars.
11882
11883 2005-12-02  Jackson Harper  <jackson@ximian.com>
11884
11885         * TreeView.cs: Make top_node internal so the TreeNodeCollections
11886         can play with it.
11887         * TreeNodeCollection.cs: If we remove the topnode we need to
11888         update topnode to the next node in line.
11889         - When clearing nodes go through the same process as removing
11890         them, so they get depareneted and checked if they are top node.
11891
11892 2005-12-01  Jackson Harper  <jackson@ximian.com>
11893
11894         * TreeView.cs: When imagelists are used the image area is
11895         selectable as well as the text.
11896         - If there are no selected nodes select the first one.
11897         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
11898         so don't do it more then we need to.
11899
11900 2005-12-01  Jackson Harper  <jackson@ximian.com>
11901
11902         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
11903         that arrows can be scaled.
11904
11905 2005-12-01  Jackson Harper  <jackson@ximian.com>
11906
11907         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
11908         fail. Patch by Dieter Bremes
11909
11910 2005-11-30  Jackson Harper  <jackson@ximian.com>
11911
11912         * Form.cs: Property is 2.0 only
11913         * PrintDialog.cs: Signature fix.
11914
11915 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11916
11917         * TextControl.cs: 
11918           - No longer artificially moves text 2 pixels down (now that we have
11919             borders this is no longer needed)
11920           - Added calcs for left, hanging and right indent
11921
11922 2005-11-23  Mike Kestner  <mkestner@novell.com>
11923
11924         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
11925
11926 2005-11-30  Jackson Harper  <jackson@ximian.com>
11927
11928         * MdiChildContext.cs: Set the cloned menus forms, as these don't
11929         get cloned as part of CloneMenu ().
11930         * Menu.cs: Make sure the parent of the items get set correctly
11931         when they are added.  And the owners are notified of the changes.
11932         * Form.cs: Create an ActiveMenu property, so that when MDI is used
11933         we can change the menu being displayed/handled by the form without
11934         changing the menu assosciated with the form.
11935         - Don't let Mdi children draw/handle menus.
11936         
11937 2005-11-30  Jackson Harper  <jackson@ximian.com>
11938
11939         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
11940         a MenuChanged event. Just to make the API a little more
11941         consistent.
11942         * MainMenu.cs:
11943         * MenuItem.cs: Use the new OnMenuChanged
11944         * MdiChildContext.cs: Handle menu merging.
11945         * Form.cs: Implement MergedMenu.
11946         
11947 2005-11-30  Jackson Harper  <jackson@ximian.com>
11948
11949         * Menu.cs: We were misusing Add. Add goes behind the specified
11950         index according to the docs, and does not replace the specified
11951         index. So I added an Insert method.
11952
11953 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11954
11955         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
11956           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
11957           is for Jackson
11958         * RichTextBox.cs: Added calls to base for DnD events
11959
11960 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
11961
11962         * TextControl.cs:
11963           - Fixed drag-selection related crash; style fixes
11964           - Implemented undo class
11965             o Implemented method to capture document state for specified
11966               range in document tree
11967             o Implemented method to restore captured document state
11968             o Implemented cursor tracking
11969             o Implemented basic undo stack
11970           - Added undo cursor tracking to methods altering cursor location
11971           - Added undo tracking to selection deletion (still missing
11972             other text-altering hookups)
11973         * RichTextBox.cs:
11974           - Added SelectionLength property
11975           - Implemented CanPaste()
11976           - Implemented Paste()
11977           - Added missing protected methods
11978           - Fixed RTF->Document conversion; now uses font index 0 and color 
11979             index 0 as the default font for the parsed text
11980           - Fixed RTF<->Document font size translation
11981           - Fixed RTF generation, now properly handles cross-tag boundaries
11982             for single line selection
11983           - No longer always appends blank line to generated RTF
11984           - Removed TODOs
11985           - Added missing attributes
11986           - Hooked up undo-related methods
11987         * TextBoxBase.cs:
11988           - Implemented Copy()
11989           - Implemented Paste()
11990           - Implemented Cut()
11991           - Fixed caret mis-behaviour on backspace across line-boundaries
11992
11993 2005-11-29  Jackson Harper  <jackson@ximian.com>
11994
11995         * MdiClient.cs: Add a method for activating mdi children. Very
11996         basic right now. I imagine someday it might need more girth.
11997         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
11998         children windows names are added to the menu item.
11999         * ThemeWin32Classic.cs: Draw the arrow if the item is an
12000         mdilist. This happens regardless of whether or not there are any
12001         mdi windows to see in the list, and according to my tests happens
12002         before the items are even added. Also happens if there isn't even
12003         an mdi client to get windows from.
12004
12005 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
12006
12007         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
12008         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
12009
12010 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
12011
12012         * DataGridTableStyle.cs:
12013           - Create always the styles for the missing columns even if they are
12014             provided by the user (not default table style)
12015         * DataGrid.cs:
12016           - Fixes bug 76770
12017           - Fixes SetDataBinding (always re-attach source)
12018           - Fixes SetNewDataSource (only clear styles if they are not for 
12019             this source)
12020          -  Expands OnTableStylesCollectionChanged to handle style refresh 
12021             and remove properly
12022
12023 2005-11-29  Jackson Harper  <jackson@ximian.com>
12024
12025         * FileDialog.cs: Implement missing bits, remove some dead
12026         code.
12027         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
12028         creation of the panel so that the options set on the dialog are
12029         seen when the panel is created.
12030         * TreeView.cs: raise a click when items are clicked.
12031         
12032 2005-11-29  Jackson Harper  <jackson@ximian.com>
12033
12034         * MdiClient.cs: Pass some signature methods through to base.
12035
12036 2005-11-28  Jackson Harper  <jackson@ximian.com>
12037
12038         * ListView.cs: Raise the click event when items are clicked.
12039
12040 2005-11-28  Jackson Harper  <jackson@ximian.com>
12041
12042         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
12043         a nullref.
12044
12045 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
12046
12047         * ThemeNice.cs: - Removed 1 pixel bitmaps
12048           - Use SmoothingMode.AntiAlias where it makes sense
12049             (ScrollButton arrow for example)
12050           - Enhanced Button focus drawing
12051           - Fixed ComboBox drawing (no artefacts anymore, focus
12052             rectangle is back again, reduced size of ComboButton, etc.)
12053           - Fixed RadioButton focus drawing for Appearence.Button
12054           - Slight ScrollButton redesign
12055           - Some LinearGradientBrush size fixes
12056           - GroupBoxes have now rounded edges
12057           - Fixed StatusBar drawing
12058
12059 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
12060
12061         * ThemeNice.cs: - Remove dead code
12062           - use correct background colors for menus, etc.
12063           - Fake pixel drawing with 1 pixel bitmaps
12064
12065 2005-11-24  Jackson Harper  <jackson@ximian.com>
12066
12067         * MdiClient.cs: Size the scrollbars when resizing the window.
12068         - Resize the maximized windows when the client is resized
12069         * Form.cs: Make the child context available
12070         
12071 2005-11-23  Jackson Harper  <jackson@ximian.com>
12072
12073         * MdiChildContext.cs: Don't size windows if they are maximized.
12074
12075 2005-11-23  Mike Kestner  <mkestner@novell.com>
12076
12077         * ContextMenu.cs: use MenuTracker.
12078         * Control.cs: remove menu handle usage.
12079         * Form.cs: remove menu handle usage.
12080         * Hwnd.cs: remove menu handle usage.
12081         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
12082         motion and clicks to the new Tracker handlers.
12083         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
12084         and handle usage.
12085         * MenuAPI.cs: refactored to combine popup and menubar event handling.
12086         Killed the MENU and MENUITEM data types and associated collections
12087         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
12088         MenuTracker class that exposes the leftovers from the old MenuAPI
12089         static methods. Restructured Capture handling so that only one grab is
12090         done for the entire menu hierarchy instead of handing off grabs to
12091         submenus. Tracker now has an invisible control to Capture when active.
12092         * MenuItem.cs: add sizing accessors, kill Create
12093         and handle usage.
12094         * Theme.cs: remove menu handle and MENU(ITEM) usage.
12095         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
12096         MENU(ITEM). remove menu handle usage, use Menu directly.
12097         * XplatUIDriver.cs: remove menu handle usage.
12098         * XplatUIOSX.cs: remove menu handle usage.
12099         * XplatUIWin32.cs: remove menu handle usage.
12100         * XplatUIX11.cs: remove menu handle usage.
12101
12102 2005-11-22  Jackson Harper  <jackson@ximian.com>
12103
12104         * Hwnd.cs: Don't compute the menu size for
12105         DefaultClientRectangle.
12106         - Reenable menu sizes being computed for GetClienRectangle.
12107         * Form.cs: Remove comment of trechery
12108         
12109 2005-11-22  Jackson Harper  <jackson@ximian.com>
12110
12111         * Hwnd.cs: The adjustments for the menu bar are made when it is
12112         attached to the form.
12113
12114 2005-11-19  Jackson Harper  <jackson@ximian.com>
12115
12116         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
12117         (just like on windows).
12118
12119 2005-11-19  Jackson Harper  <jackson@ximian.com>
12120
12121         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
12122         use real buttons anymore because they are in non client area. The
12123         one TODO here is that I need to somehow invalidate a section of
12124         the non client area.
12125
12126 2005-11-18  Jackson Harper  <jackson@ximian.com>
12127
12128         * Control.cs: Put the enum check back in now that MDI doesnt have
12129         to use this to set border styles.
12130         * Form.cs: Only set mdi child windows borders if the handle has
12131         been created.
12132         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
12133         this directly on to the driver.
12134         - Get the move start position before adjusting for the titlebar
12135         height, this fixes the windows "skipping" when they are first
12136         moved.
12137
12138 2005-11-18  Jackson Harper  <jackson@ximian.com>
12139
12140         * XplatUIX11.cs: Just compute the mdi borders separately as they
12141         don't totally match up with normal form borders.
12142
12143 2005-11-18  Jackson Harper  <jackson@ximian.com>
12144
12145         * Control.cs: Set WS_ styles for borders, so that the driver does
12146         not have to retrieve the control instance to figure out what kind
12147         of borders it should have.
12148         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
12149         driver can know its an mdi child easily.
12150         * XplatUIX11.cs: Get the border styles and whether the window is
12151         MDI from the Styles and ExStyles params instead of having to get a
12152         control. This prevents a chicken and egg problem.       
12153
12154 2005-11-18  Jackson Harper  <jackson@ximian.com>
12155
12156         * MdiClient.cs: Fix typo so scrollbars show up correctly.
12157
12158 2005-11-18  Jackson Harper  <jackson@ximian.com>
12159
12160         * MdiClient.cs: Calculate when to add and remove scrollbars
12161         correctly.
12162         * MdiChildContext.cs: Adjust the y position to take the titlebar
12163         into account.
12164         - No height for FormBorderStyle.None
12165
12166 2005-11-18  Jackson Harper  <jackson@ximian.com>
12167
12168         * Control.cs: Allow non enum values to be used for
12169         InternalBorderStyle.  MDI does this to set a special border style.
12170         - New utility methods for converting points to/from client coords
12171         - Add the newly created control to the Controls collection before
12172         updating its style. This way UpdateStyle can walk the control
12173         heirarchy to find the control if needed.
12174         so I don't need to create a new Point object all the time.
12175         * Form.cs: Let MDI windows handle their border styles.
12176         - Set styles on MDI windows so the correct title style is derived.
12177         * MdiChildContext.cs: Move all the painting and window handling
12178         into the non client area.
12179         - Use correct sizing and put correct buttons on frames based on
12180         the FormBorderStyle.
12181         - Notify the mdi client about scrolling
12182         - Need to handle the buttons ourselves now, because they are all
12183         in non client areas and we can't add controls there.
12184         * MdiClient.cs: Halfway to scrolling, this implementation is
12185         somewhat broken though, we need to check to make sure other
12186         windows aren't causing scrolling before removing the bars. Also
12187         the bars need to be drawn on top, maybe I can switch implicit
12188         controls to be on top.
12189         * Hwnd.cs: caption_height and tool_caption_height are now
12190         properties of an hwnd, this way they can be set by the driver
12191         based on the type of window they are.  In X11 the window manager
12192         handles the decorations so caption_height is zero unless its an
12193         MDI window.
12194         - Add 3 pixel borders for MDI windows (0xFFFF).
12195         - Get rid of some code duplication, have DefaultClientRectanle
12196         just call GetClientRectangle.
12197         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
12198         Hwnd now.
12199         - Set border styles differently for mdi windows.
12200         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
12201         Hwnd now.
12202         
12203 2005-11-15  Mike Kestner  <mkestner@novell.com>
12204
12205         * Menu.cs: when adding an item to the collection, if item is already 
12206         parented, remove it from the parent.
12207
12208 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
12209
12210         * X11DesktopColors.cs: Added KDE support
12211
12212 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
12213
12214         * XplatUIWin32.cs: 
12215           - Clipboard methods now can translate Rtf format
12216           - No longer removes clipboard contents whenever a new format is added
12217             to allow placing multiple formats on the clipboard
12218         * Clipboard.cs: Clipboard now supports getting a IDataObject and
12219           will place all formats contained in it onto the clipboard. Also
12220           now cleans the clipboard before placing a new object onto it
12221         * RichTextBox.cs:
12222           - Implemented set_Rtf
12223           - Implemented set_SelectedRtf
12224           - Created InsertRTFFromStream() method to allow single code base
12225             for all properties and methods that insert RTF into document
12226           - Removed debug output
12227         * TextControl.cs:
12228           - Fixed Delete(int) to fix up line numbers
12229           - Fixed ReplaceSelection to combine start and end line
12230           - Fixed serious DeleteChars bug that would leave the document tree
12231             broken
12232           - Improved DumpTree with several logic checks to detect broken
12233             document trees
12234           - Removed debug lines
12235           - Fixed Caret.WordForward/WordBack moving code, now always also 
12236             updates caret.tag (fixes crash when word-selecting across tag
12237             boundaries via keyboard)
12238           - Added Insert() method for inserting multiline text into documents
12239           - Fixed DeleteChars() calculation errors that would cause a broken
12240             tag chain with multiple tag lines
12241           - DeleteChars() no longer crashes on multi-tag lines if not all tags
12242           - Split() no longer moves caret if split is at caret location
12243           - ReplaceSelection() now updates the cursor and re-displays it
12244           - ReplaceSelection() now uses new Insert() method to avoid code
12245             duplication
12246           - FormatText() can now handle formatting partial lines
12247         * TextBoxBase.cs:
12248           - Append now uses new TextControl.Insert() method (this avoids 
12249             duplicate code)
12250           - Implemented Ctrl-X (Cut) (
12251           - Implemented Ctrl-C (Copy)
12252           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
12253             regeneration when pasting text; roundtripping Copy&Paste within
12254             edit control still fails due to some calculation bugs in GenerateRTF)
12255           - The Delete key will now remove the current selection if it is visible
12256         * TextBox.cs: Removed debug lines
12257         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
12258           driver to be initialized and can't therefore be done via a static ctor)
12259
12260 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
12261
12262         * TextControl.cs: Added backend code for finding char arrays and strings
12263         * TextBoxBase.cs:
12264           - Added mouse wheel scroll support
12265           - Added support for VScroll and HScroll events
12266         * RichTextBox.cs:
12267           - Implemented all seven Find() variants
12268           - Implemented GetCharFromPosition()
12269           - Implemented GetCharIndexFromPosition()
12270           - Implemented GetLineFromIndex()
12271           - Implemented GetPositionFromCharIndex();
12272           - Implemented SaveFile for PlainText and UnicodeText
12273           - Fixed set_Font, now setting a new font applies that font to
12274             the whole document
12275           - Implemented generic Document to RTF converter
12276           - Implemented SaveFile for RichText format (still missing unicode
12277             conversion for non-ansi chars)
12278           - Implemented get_Rtf
12279           - Implemented get_SelectedRtf
12280
12281 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
12282
12283         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
12284           to allow any captures to be released before triggering OnClick. This
12285           way a click handler may capture the mouse without interference.
12286         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
12287           This way we send them even though X may not allow a grab (if the window
12288           isn't visible, for example)
12289
12290 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
12291
12292         * DataGridViewRowEventArgs.cs: DataGridView implementation
12293         * DataGridViewElement.cs: DataGridView implementation
12294         * DataGridViewComboBoxCell.cs: DataGridView implementation
12295         * DataGridViewDataErrorContexts.cs: DataGridView implementation
12296         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
12297         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
12298         * ImageLayout.cs: DataGridView implementation
12299         * DataGridViewComboBoxColumn.cs: DataGridView implementation
12300         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
12301         * DataGridViewSelectionMode.cs: DataGridView implementation
12302         * IDataGridViewEditingControl.cs: DataGridView implementation
12303         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
12304         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
12305         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
12306         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
12307         * DataGridViewColumnSortMode.cs: DataGridView implementation
12308         * DataGridView.cs: DataGridView implementation
12309         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
12310         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
12311         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
12312         * Padding.cs: DataGridView implementation
12313         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
12314         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
12315         * DataGridViewRowEventHandler.cs: DataGridView implementation
12316         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
12317         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
12318         * DataGridViewButtonCell.cs: DataGridView implementation
12319         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
12320         * DataGridViewEditMode.cs: DataGridView implementation
12321         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
12322         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
12323         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
12324         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
12325         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
12326         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
12327         * DataGridViewCellEventHandler.cs: DataGridView implementation
12328         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
12329         * DataGridViewCellStyleConverter.cs: DataGridView implementation
12330         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
12331         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
12332         * DataGridViewColumnEventArgs.cs: DataGridView implementation
12333         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
12334         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
12335         * QuestionEventArgs.cs: DataGridView implementation
12336         * IDataGridViewEditingCell.cs: DataGridView implementation
12337         * DataGridViewTriState.cs: DataGridView implementation
12338         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
12339         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
12340         * DataGridViewColumnCollection.cs: DataGridView implementation
12341         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
12342         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
12343         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
12344         * DataGridViewColumn.cs: DataGridView implementation
12345         * DataGridViewCellBorderStyle.cs: DataGridView implementation
12346         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
12347         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
12348         * DataGridViewRow.cs: DataGridView implementation
12349         * DataGridViewImageCellLayout.cs: DataGridView implementation
12350         * DataGridViewImageCell.cs: DataGridView implementation
12351         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
12352         * DataGridViewCheckBoxCell.cs: DataGridView implementation
12353         * DataGridViewHeaderCell.cs: DataGridView implementation
12354         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
12355         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
12356         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
12357         * DataGridViewTextBoxColumn.cs: DataGridView implementation
12358         * QuestionEventHandler.cs: DataGridView implementation
12359         * DataGridViewCellStyleScopes.cs: DataGridView implementation
12360         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
12361         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
12362         * DataGridViewCell.cs: DataGridView implementation
12363         * DataGridViewCellEventArgs.cs: DataGridView implementation
12364         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
12365         * DataGridViewCellStyle.cs: DataGridView implementation
12366         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
12367         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
12368         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
12369         * TextFormatFlags.cs: DataGridView implementation
12370         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
12371         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
12372         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
12373         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
12374         * DataGridViewButtonColumn.cs: DataGridView implementation
12375         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
12376         * HandledMouseEventArgs.cs: DataGridView implementation
12377         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
12378         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
12379         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
12380         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
12381         * DataGridViewRowCollection.cs: DataGridView implementation
12382         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
12383         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
12384         * DataGridViewHitTestType.cs: DataGridView implementation
12385         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
12386         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
12387         * DataGridViewColumnEventHandler.cs: DataGridView implementation
12388         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
12389         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
12390         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
12391         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
12392         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
12393         * DataGridViewContentAlignment.cs: DataGridView implementation
12394         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
12395         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
12396         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
12397         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
12398         * DataGridViewPaintParts.cs: DataGridView implementation
12399         * DataGridViewCellCollection.cs: DataGridView implementation
12400         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
12401         * DataGridViewImageColumn.cs: DataGridView implementation
12402         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
12403         * DataGridViewElementStates.cs: DataGridView implementation
12404         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
12405         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
12406         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
12407         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
12408         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
12409         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
12410         * DataGridViewRowHeaderCell.cs: DataGridView implementation
12411         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
12412         * DataGridViewTextBoxCell.cs: DataGridView implementation
12413         * DataGridViewBand.cs: DataGridView implementation
12414         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
12415         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
12416         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
12417         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
12418         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
12419         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
12420         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
12421         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
12422         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
12423         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
12424         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
12425
12426 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
12427
12428         * ThemeWin32Classic.cs: 
12429           - Draw the outside focus rectangle around buttons
12430           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
12431             doesn't use end caps for every dash of a line anymore. This
12432             workaround ignores the forecolor.
12433
12434 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
12435
12436         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
12437           endian safe.
12438
12439 2005-11-07  Jackson Harper  <jackson@ximian.com>
12440
12441         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
12442
12443 2005-11-07  Jackson Harper  <jackson@ximian.com>
12444
12445         * ScrollableControl.cs: Calculate the maximum and change vars
12446         (more) correctly so that scrollbars appear as a sensible size.
12447
12448 2005-11-04  Jackson Harper  <jackson@ximian.com>
12449
12450         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
12451         collection.
12452         * TreeView.cs: When the tree is sorted null out the top_node so
12453         that it is recalculated.
12454         - Use dotted lines instead of dashed lines to match MS better.
12455
12456 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
12457
12458         * ListView.cs: 
12459           - Implements key search for items. Useful when browsing files with FileDialog
12460           - When changing view mode or when clear the items reset scrollbar positions
12461
12462 2005-11-04  Jackson Harper  <jackson@ximian.com>
12463
12464         * CurrencyManager.cs: Implement the MetaDataChanged event, the
12465         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
12466         as to what the method may do as there is no real way of creating a
12467         derived CurrencyManager and calling the method. 
12468
12469 2005-11-03  Jackson Harper  <jackson@ximian.com>
12470
12471         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
12472         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
12473         method which seems to just be used internally to refresh the tabs.
12474
12475 2005-11-03  Jackson Harper  <jackson@ximian.com>
12476
12477         * TabControl.cs: Implement the remove method. Fix some broken
12478         comments.
12479
12480 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12481
12482         * DateTimePicker.cs:
12483           - Added missing DateTimePickerAccessibleObject class
12484           - Added missing events
12485           - Added OnFontChanged method
12486         * Form.cs: Added missing attributes
12487         * TreeView.cs: Added missing attributes
12488
12489 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
12490
12491         * GridItemCollection.cs: Fix signatures
12492
12493 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12494
12495         * XplatUI.cs: Updated build rev/date
12496         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
12497           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
12498         * Application.cs: Trigger context-specific ExitThread events
12499
12500 2005-11-03  Jackson Harper  <jackson@ximian.com>
12501
12502         * Menu.cs:
12503         * MainMenu.cs:
12504         * GridTableStylesCollection.cs:
12505         * Timer.cs:
12506         * TabPage.cs:
12507         * HelpProvider.cs:
12508         * StatusBar.cs:
12509         * MonthCalendar.cs: Signature fixes
12510
12511 2005-11-03  Jackson Harper  <jackson@ximian.com>
12512
12513         * TreeNodeCollection.cs: Remove should not be virtual.
12514         * TreeView.cs: Implement the last of the missing methods.
12515
12516 2005-11-03  Jackson Harper  <jackson@ximian.com>
12517
12518         * TreeNodeConverter.cs: Implement to get off my class-status back.
12519
12520 2005-11-03  Jackson Harper  <jackson@ximian.com>
12521
12522         * TreeView.cs: Hookup the bits for drag and drop.
12523         * TreeNode.cs: Don't cache the tree_view or index anymore, now
12524         that nodes can be moved from tree to tree easily this just causes
12525         all sorts of problems.
12526         * TreeNodeCollection: Don't need to give treenodes an index and
12527         treeview anymore when they are added, these are computed on the
12528         fly. Also make sure to remove a node before its added.
12529
12530 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12531
12532         * TextControl.cs:
12533           - Added CaretSelection enum
12534           - Added comparison methods to Marker struct, makes selection code
12535             more readable
12536           - Added SelectionStart and SelectionEnd as 'moveable' location for
12537             the CaretDirection enum and handler
12538           - Added selection_prev variable to track optimized invalidation for
12539             word and line selection
12540           - Added SelectionVisible property (returns true if there is a valid 
12541             selection)
12542           - Switched CaretHasFocus to only display the caret if there is no
12543             visible selection
12544           - Avoiding StringBuilder.ToString to retrieve a single char, instead
12545             using the direct character index; should be much faster
12546           - Added various conditional debug statements
12547           - Fixed invalidation calculation for selection ranges
12548           - Added ExpandSelection() method to support word and line selection
12549           - Switched SetSelectionToCaret to use new Marker compare overloads
12550           - Added central IsWordSeparator() method to determine word 
12551             separators/whitespace and FindWordSeparator() to streamline common
12552             usage of IsWordSeparator()
12553         * TextBoxBase.cs:
12554           - Removed unneeded grabbed variable, it was just mirroring
12555             Control.Capture
12556           - No longer firing OnTextChanged event when Text setter is called,
12557             since the base will fire the event for us
12558           - Added handling of Ctrl-Up/Down selection
12559           - Added handling of Shift-Cursorkey selection
12560           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
12561             words
12562           - Added handling of Shift and Ctrl-Shift-Home/End selection
12563           - Removed some debug output
12564           - Added handling for single/double/tripple-click to place caret/
12565             select word/select line respectively (Fixes bug #76031)
12566           - Added support for drag expansion of word/line selection
12567         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
12568           current selection
12569
12570 2005-11-02  Jackson Harper  <jackson@ximian.com>
12571
12572         * X11Dnd.cs: If the drag is going to and from a MWF window just
12573         copy the data instead of sending it out through the X Selection
12574         mechanism.
12575
12576 2005-11-02  Jackson Harper  <jackson@ximian.com>
12577
12578         * X11Dnd.cs:
12579         * XplatUIX11.cs: When in a drag we don't want motion notify
12580         messages to get passed on to the other controls. This prevents
12581         mouse move messages from showing up in the drag source.
12582
12583 2005-11-02  Jackson Harper  <jackson@ximian.com>
12584
12585         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
12586         the correct button is release to end a drag.
12587         * XplatUIX11.cs: Make the button state internal so the drag system
12588         can access it.  Dragging needs to know about all button releases,
12589         not just left button.
12590
12591 2005-11-02  Miguel de Icaza  <miguel@novell.com>
12592
12593         * Form.cs (Icon): If the icon is null, reset the icon to the
12594         default value. 
12595
12596         * Cursor.cs: When writing the AND-mask bitmap do not include the
12597         number of colors, but hardcode those to two (black and white),
12598         fixes the loading of color cursors (Paint Dot Net).
12599
12600         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
12601         turn off autoscaling.
12602
12603         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
12604
12605 2005-11-02  Jackson Harper  <jackson@ximian.com>
12606
12607         * X11Dnd.cs: Make sure to send a status message if the pointer
12608         enters a control that can not accept a drop, otherwise the cursor
12609         isn't updated correctly. Also tried to compress the lines of code
12610         a bit.
12611
12612 2005-11-02  Jackson Harper  <jackson@ximian.com>
12613
12614         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
12615         set actions correctly.  This isn't perfect as XDND and win32 have
12616         some differences on how you allow actions. I'll clear this up by
12617         adding a path for drag from MWF to MWF windows.
12618         * XplatUIX11.cs: Hook into the dnd system.
12619
12620 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
12621
12622         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
12623         previously shown but they are no longer need it. Very obvious when 
12624         browsing files with FileDialog.
12625
12626 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
12627
12628         * Control.cs: We always need to call OnPaintBackground. We pretty much
12629           ignore AllPaintingInWmPaint and always do the painting there, whether 
12630           it's set or not, since we always ignore the WM_ERASEBKGND message 
12631           (which we don't generate on X11). This fixes #76616.
12632         * Panel.cs: Removed unneeded background painting. This happens properly
12633           in Control.cs already
12634
12635 2005-10-31  Mike Kestner  <mkestner@novell.com>
12636
12637         * Menu.cs: Add items to collection before setting their index.
12638         * MenuItem.cs : add range checking with ArgumentException like MS.
12639         [Fixes #76510]
12640
12641 2005-10-31  Jackson Harper  <jackson@ximian.com>
12642
12643         * ListBox.cs: Invalidate if the area is visible at all not just
12644         contained in the visible rect. Fixes unselection of semi visible
12645         items.
12646
12647 2005-10-31  Jackson Harper  <jackson@ximian.com>
12648
12649         * Control.cs: Consistently name the dnd methods. Make them
12650         internal so we can override them to match some MS behavoir
12651         internally.
12652         * Win32DnD.cs: Use the new consistent names.
12653
12654 2005-10-31  Jackson Harper  <jackson@ximian.com>
12655
12656         * TreeView.cs: Don't draw the selected node when we lose focus.
12657
12658 2005-10-31  Jackson Harper  <jackson@ximian.com>
12659
12660         * X11Dnd.cs: We still need to reset the state even though a full
12661         reset isn't being done, otherwise status's still get sent all over
12662         the place.
12663
12664 2005-10-31  Jackson Harper  <jackson@ximian.com>
12665
12666         * Control.cs: Make the dnd_aware flag internal so the dnd
12667         subsystem can check it. Catch exceptions thrown in dnd handlers to
12668         match MS behavoir.
12669         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
12670         * X11Dnd.cs: Handle null data in the converters. Set the XDND
12671         version when sending a XdndEnter. Use the control/hwnd dnd_aware
12672         flags to reduce the number of dnd enters/status's sent.
12673
12674 2005-10-31  Jackson Harper  <jackson@ximian.com>
12675
12676         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
12677
12678 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
12679
12680         * PictureBox.cs: Fixes 76512
12681
12682 2005-10-28  Jackson Harper  <jackson@ximian.com>
12683
12684         * X11Dnd.cs: Early implementation to support winforms being a drag
12685         source for data on X11. Also restructured the converters so they
12686         can go both ways now.
12687         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
12688         
12689 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
12690
12691         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
12692           clipboard requests
12693
12694 2005-10-27  Jackson Harper  <jackson@ximian.com>
12695
12696         * TreeNode.cs: Implement serialization so my DnD examples will work.
12697
12698 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
12699
12700         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
12701           TreeView.cs: Don't dispose objects that are not owned.
12702           
12703 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
12704
12705         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
12706           should retrieve the current cursor and report that, but XplatUI
12707           doesn't (yet) have an interface for that (and I'm not sure I even
12708           can, on X11)
12709         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
12710           until any message loop processing is done (and the WM_SETCURSOR
12711           replaces the cursor to the proper one)
12712         * XplatUIX11.cs: 
12713           - Fixed override behaviour, we can't set the cursor globally on X11, 
12714             just for our windows.
12715           - Invalidating the System.Drawing X11 display handle when we are
12716             shutting down
12717         * Control.cs: Fix to make csc happy
12718
12719 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
12720
12721         * TextBoxBase.cs: 
12722           - get_Text: Add last line (without trailing newline) to returned
12723             value (Fixes 76212)
12724           - get_TextLength: Count last line in returned length
12725           - ToString: Call Text property instead of duplicating code
12726
12727 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
12728
12729         * ImageList.cs: Dispose ImageAttributes objects.
12730
12731 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12732
12733         * ImageList.cs: Use attribute constructors with less arguments where
12734           possible.
12735
12736 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12737
12738         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
12739           Use typeof instead of strings when assembly is referenced. Added
12740           some more comments.
12741
12742 2005-10-21  Jackson Harper  <jackson@ximian.com>
12743
12744         * ListView.cs: Raise a double click event. Also tried to somewhat
12745         fix when the selectedindexchanged event is raised. Its still
12746         broken though.
12747
12748 2005-10-21  Jackson Harper  <jackson@ximian.com>
12749
12750         * TreeView.cs: New method to invalidate the plus minus area of a
12751         node without invalidating the whole node (maybe this can be used
12752         in some more places).
12753         * TreeNodeCollection.cs: When adding to an empty node we need to
12754         invalidate its plus minus area so the little block shows up.
12755         
12756 2005-10-21  Jackson Harper  <jackson@ximian.com>
12757
12758         * TreeView.cs: Make sure that when we invalidate a node the bounds
12759         are big enough to cover the selected box and the focus
12760         rectangle. Use a different colour for the lines connecting nodes
12761         so they show up with all themes.
12762
12763 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12764
12765         * NativeWindow.cs: Don't call anything that could call into the driver,
12766           we might be on a different thread.
12767
12768 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
12769
12770         * Control.cs(Dispose): Since Dispose might run on a different thread,
12771           make sure that we call methods that could call into the driver via
12772           invoke, to avoid thread issues
12773
12774 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12775
12776         * XplatUI.cs: Removed finalizer
12777         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
12778           not allowing to be called on the finalizer thread.
12779
12780 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
12781
12782         * ImageList.cs:
12783           - Reverted r51889 and r51891.
12784           - Added ImageListItem class that stores unmodified image items and image
12785             properties required to create list images until handle is created.
12786           - Added AddItem and moved image creation logic to AddItemInternal.
12787           - Added CreateHandle method that creates images based on unmodified items.
12788           - Added DestroyHandle that changes state to store unmodified items.
12789           - Add and AddStrip methods no more create handle.
12790           - ReduceColorDepth has no return value.
12791           - Dispose destroys handle.
12792           - Modified other methods to reflect the above changes.
12793           - Implemented key support.
12794           - Added profile 2.0 members and attributes.
12795           - Added private Reset and ShouldSerialize methods that provide the same
12796             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
12797             them as they are private.
12798           - Added some more comments about implementation details.
12799
12800 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12801
12802         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
12803
12804 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12805
12806         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
12807
12808 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12809
12810         * DataGridDrawingLogic.cs: Fixes column hit calcultation
12811         * DataGridColumnStyle.cs: Remove debug message
12812
12813 2005-10-20  Jackson Harper  <jackson@ximian.com>
12814
12815         * TreeView.cs: We can always get input keys regardless of whether
12816         or not editing is enabled. They are used for navigation.
12817
12818 2005-10-20  Jackson Harper  <jackson@ximian.com>
12819
12820         * TreeNode.cs: Use the viewport rect for determining if a node
12821         needs to be moved for visibility. Don't use Begin/End edit. This
12822         calls a full refresh when its done.
12823         * TreeView.cs: New SetBottom works correctly.  Make the viewport
12824         rect property internal so the treenodes can see it. When clicking
12825         on a node we need to ensure that its visible because it might just
12826         be partly visible when clicked.
12827
12828 2005-10-20  Jackson Harper  <jackson@ximian.com>
12829
12830         * TreeNodeCollection.cs: Remove debug code.
12831
12832 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12833
12834         * Datagrid.cs: Implements column sorting in Datagrid
12835         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
12836
12837 2005-10-20  Jackson Harper  <jackson@ximian.com>
12838
12839         * TreeNodeCollection.cs: Remove items properly. Update the correct
12840         area after removing them.
12841
12842 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12843
12844         * Datagrid.cs: Should not call base.OnPaintBackground
12845
12846 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12847
12848         * XplatUIX11.cs (GetMessage):
12849           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
12850             window instead of client window
12851           - Now properly calculates NC_xBUTTONUP message coordinates
12852           - ScreenToMenu now properly calculates it's coordinates of whole 
12853             window, since menus are in the whole window, not in the client
12854             window
12855           - Added WholeToScreen coordinate translation method
12856
12857 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
12858
12859         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
12860           want to return a message, loop back to the beginning of the function
12861           and grab the next real message to process instead.
12862
12863 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12864
12865         * Splitter.cs: Properly set limits if no filler control is used
12866
12867 2005-10-19  Jackson Harper  <jackson@ximian.com>
12868
12869         * ColorDialog.cs: Don't show the help button if it is not enabled
12870         instead of disabling it (this is what MS does). Don't create the
12871         panel until the dialog is run, otherwise the vars (such as
12872         ShowHelp) are not set yet.
12873
12874 2005-10-19  Jackson Harper  <jackson@ximian.com>
12875
12876         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
12877         are reduced when adding nodes.
12878         * TreeNode.cs:
12879         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
12880         tree.
12881         
12882 2005-10-19  Jackson Harper  <jackson@ximian.com>
12883
12884         * FolderBrowserDialog.cs: End editing our treeview so the window
12885         actually gets refreshed.
12886
12887 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12888
12889         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
12890           Obsoleted handling of WM_ERASEBKGND, now always draws our background
12891           inside of WM_PAINT
12892
12893 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12894
12895         * MenuAPI.cs: Returns after Hidding window
12896         * XplatUIX11.cs: Added TODO found while debugging menu issues
12897
12898 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12899
12900         * XplatUIX11.cs: Do not re-map the whole window when it's size
12901           becomes non-zero unless it's supposed to be actually visible
12902
12903 2005-10-18  Jackson Harper  <jackson@ximian.com>
12904
12905         * TreeView.cs: We don't need to keep a count anymore.
12906         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
12907         use the Grow method.
12908
12909 2005-10-18  Jackson Harper  <jackson@ximian.com>
12910
12911         * TreeNodeCollection.cs: Insert is not supported on arrays, so
12912         implement it manually here.
12913
12914 2005-10-18  Jackson Harper  <jackson@ximian.com>
12915
12916         * ImageList.cs: Dont kill the list when the colour depth is
12917         changed, just change the colour depth of all the images.
12918         - Same goes for setting the image size. Just resize them all
12919         instead of killing the list softly.
12920
12921 2005-10-18  Jackson Harper  <jackson@ximian.com>
12922
12923         * Control.cs: Don't invalidate empty rectangles.
12924
12925 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12926
12927         * ListViewItem.cs:
12928           - Adds checked item to the Checked/Item lists (where empty before)
12929           - Do not add items to the Selected lists if they are already present
12930         * ListView.cs:
12931           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
12932           - When deleting items make sure that we delete them for the Selected
12933           and Checked list also.
12934
12935 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12936
12937         * Label.cs: Dispose objects no longer used
12938         * ThemeWin32Classic.cs: Dispose objects no longer used
12939
12940 2005-10-18  Jackson Harper  <jackson@ximian.com>
12941
12942         * TabControl.cs: Don't refresh the whole control when the tabs are
12943         scrolled, we just need to refresh the tab area.
12944
12945 2005-10-17  Jackson Harper  <jackson@ximian.com>
12946
12947         * XplatUIX11.cs: Compress code a little bit. Only calculate the
12948         after handle when we need it.
12949
12950 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12951
12952         * Control.cs: When the parent size changes, recalculate anchor 
12953           positions. Partial fix for #76462
12954
12955 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12956
12957         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
12958           drawn. Fixes #76462
12959
12960 2005-10-17  Jackson Harper  <jackson@ximian.com>
12961
12962         * MonthCalendar.cs: Don't create the numeric up down until our
12963         handle is created. Otherwise our handle is created in the
12964         constructor and we don't know if we are a WS_CHILD or WS_POPUP
12965         yet.
12966
12967 2005-10-17  Jackson Harper  <jackson@ximian.com>
12968
12969         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
12970         correctly.
12971
12972 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12973         * TreeNode.cs : small logical fix (was using local var instead of field)
12974         
12975 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12976
12977         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
12978
12979 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12980
12981         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
12982
12983 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
12984
12985         * Control.cs: 
12986           - Re-implemented anchoring code. My first version was really broken.
12987             This fixes bug #76033. Unlike the previous implementation we will
12988             no longer have round errors since all numbers are calculated from
12989             scratch every time. Removed various anchor-related obsolete vars.
12990           - InitLayout no longer causes layout event firing and layout to be 
12991             performed
12992
12993 2005-10-16  Jackson Harper  <jackson@ximian.com>
12994
12995         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
12996         which was broken).
12997
12998 2005-10-16  Jackson Harper  <jackson@ximian.com>
12999
13000         * TabControl.cs: Remove debug code.
13001
13002 2005-10-16  Jackson Harper  <jackson@ximian.com>
13003
13004         * XEventQueue.cs: Increase the default queue size (very simple
13005         apps needed to grow the queue).
13006         * Hwnd.cs: No finalizer so we don't need to suppress
13007         finalization. Compute the invalid area manually so a new rectangle
13008         does not newto be created.
13009         * ScrollableControl.cs: Don't set any params (otherwise visibility
13010         isn't set correctly).
13011         * MdiChildContext.cs: New constructor takes the mdi parent so it
13012         doesn't have to be computed and avoids a crash on windows. Draw
13013         the window icon properly, and allow the text to be seen.
13014         * Form.cs: Use new MdiChildContext constructor. Make sure the
13015         child context isn't null in wndproc.
13016         * TabControl.cs: Don't set focus, this is muddling keyboard
13017         behavoir. Expand the tab rows when a window size increase will
13018         allow extra tabs to be seen. Don't allow tabs smaller than the
13019         width of a window to be scrolled out of view.
13020         * TreeNode.cs:
13021         * TreeView.cs: Use measure string to calculate a nodes width, the
13022         width is cached and only updated when the text or the font is
13023         changed. Don't check for expand/collapse clicks on the first level
13024         nodes if root lines are disabled.
13025         
13026 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
13027
13028         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
13029
13030 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13031
13032         * DataGridBoolColumn.cs: fixes warning
13033
13034 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13035
13036         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
13037         to match more to match more precisely the MS Net behavior
13038
13039 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13040
13041         * Hwnd.cs: Added field to track if window is mapped
13042         * XplatUIX11.cs: 
13043           - Unmap windows if they become 0-size, re-map when 
13044             they are >0 again; fixes #76035
13045           - Re-set our error handler after initializing X11Desktop
13046             to override any error handlers Gtk or whatever was called
13047             may have set.
13048
13049 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13050
13051         * CheckedListBox.cs: Removed unused vars
13052         * ListView.cs: Fixed signatures
13053         * RichTextBox.cs: Removed unused vars
13054         * TextBoxBase.cs: Removed unused vars
13055         * XplatUIWin32.cs: Removed unused vars
13056         * XplatUIX11.cs: Removed unused vars
13057         * XplatUI.cs: Updated version and date to latest published
13058
13059 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13060
13061         * Cursor.cs: Added private .ctor to work around a bug in
13062           resourceset (Thanks to Geoff Norton for the help on this)
13063         * SplitterEventArgs.cs: Made fields accessible so we don't
13064           waste boatloads of objects and can reuse the same one
13065           in Splitter
13066         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
13067           any captions and borders when generating screen coordinates
13068         * Splitter.cs: Reimplemented control, now fully complete, uses
13069           rubberband drawing, supports and obeys all properties, has
13070           proper cursors
13071
13072 2005-10-13  Miguel de Icaza  <miguel@novell.com>
13073
13074         * Form.cs (Form): Setup default values for autoscale and
13075         autoscale_base_size;  Make these instance variables, not static
13076         variables. 
13077
13078         (OnLoad): on the first load, adjust the size of the form.
13079
13080 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13081
13082         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
13083           width argument to DrawReversibleRectangle()
13084         * XplatUIWin32.cs, XplatUIX11.cs: 
13085           - Implemented width for DrawReversibleRectangle()
13086           - Added logic to DrawReversibleRectangle that recognizes a zero
13087             width or height and only draws a line in that situation
13088         
13089 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
13090
13091         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
13092         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
13093         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
13094           method (it uses our FosterParent window to get a graphics context)
13095
13096 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
13097
13098         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
13099           and SetWindowBackground methods
13100         * Control.cs:
13101           - Setting proper ControlStyles
13102           - We no longer call XplatUI.SetWindowBackground and XplatUI.
13103             EraseWindowBackground, instead we draw the window background
13104             ourselves in PaintControlBackground. This behaviour is
13105             required to match MS, where, when OnPaintBackground is not
13106             called, the background is not drawn.
13107           - Removed unneeded Refresh() in set_Text
13108         * Hwnd.cs: Dropped the ErasePending support. No longer needed
13109         * XplatUIX11.cs:
13110           - Created DeriveStyles method to translate from CreateParams to
13111             FormBorderStyle and TitleStyle, also handles BorderStyle (which
13112             matches FormBorderStyle enum values)
13113           - Consolidated SetHwndStyles and CalculateWindowRect border/title
13114             style calculations into single DeriveStyles method
13115           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
13116             from redrawing the whole window on any resize or expose.
13117           - Fixed CreateWindow usage of SetWindowValuemask. Before not
13118             all styles were applied to our whole/client window appropriately
13119           - Removed EraseWindowBackground() and SetWindowBackground() methods
13120           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
13121             no longer clear/redraw the background through X
13122           - Removed handling of erase_pending bit, we have no use for it (or
13123             so it seems)
13124         * XplatUIOSX.cs:
13125           - Removed generation and handling of WM_ERASEBKGND message
13126           - Removed EraseWindowBackground() and SetWindowBackground() methods
13127           - Removed handling of hwnd.ErasePending flag
13128         * XplatUIWin32.cs:
13129           - Removed EraseWindowBackground() and SetWindowBackground() methods
13130           - We no longer call EraseWindowBackground on PaintEventStart, we 
13131             ignore the fErase flag, erasing is handled in Control in the
13132             background handler
13133         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
13134           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
13135           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
13136           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
13137           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
13138           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
13139           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
13140
13141 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
13142
13143         * PropertyGrids.cs: Get sub properties
13144         * PropertyGridView.cs: Fix drawing code
13145
13146 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13147
13148         * ListBox.cs: Fixes 76383
13149
13150 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13151
13152         * DataGridTextBoxColumn.cs: Sets location and size before attachment
13153         * ThemeWin32Classic.cs: Fixes border drawing and calculations
13154         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
13155
13156
13157 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13158
13159         * ComboBox.cs: Fixes border drawing
13160
13161 2005-10-10  Miguel de Icaza  <miguel@novell.com>
13162
13163         * MimeIcon.cs: Ignore errors if the file can not be read.
13164
13165 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13166
13167         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
13168          - Fixed border calculations
13169          - Fixed horizontal scrolling in single column listboxes
13170          - Fixed drawing issues
13171
13172 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
13173
13174         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
13175           FormBorderStyle enum
13176         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
13177           code to determine FormBorderStyles from CreateParams
13178         * Form.cs:
13179           - Fixed bug where we'd set the wrong window styles if we were
13180             not creating an MDI window
13181           - Added call to XplatUI.SetBorderStyle when form borders are set
13182         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
13183         * Hwnd.cs:
13184           - Removed obsolete edge style
13185           - Switched from BorderStyle to FormBorderStyle
13186         
13187 2005-10-10  Jackson Harper  <jackson@ximian.com>
13188
13189         * Form.cs: Use the property to get the window handle instead of
13190         accessing it directly. Prevents a null reference exception.
13191
13192 2005-10-10  Jackson Harper  <jackson@ximian.com>
13193
13194         * TreeView.cs: Don't adjust the rect given to DrawString now that
13195         our libgdiplus draws correctly.
13196
13197 2005-10-08  Jackson Harper  <jackson@ximian.com>
13198
13199         * TreeView.cs: Don't try to find the clicked on node if there are
13200         no nodes in the tree.
13201
13202 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13203
13204         * RichTextBox.cs:
13205
13206           restore
13207
13208 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13209
13210         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
13211           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
13212           ErrorProvider.cs:
13213           Use ResPool for brushes and dispose System.Drawing objects that
13214           are not used anymore.
13215
13216 2005-10-07  Jackson Harper  <jackson@ximian.com>
13217
13218         * MdiChildContext.cs: Use the new borders instead of drawing them
13219         ourselves.
13220
13221 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13222
13223         * Calling UpdateBounds after changing the window's BorderStyle 
13224         since the style can change the ClientSize
13225
13226 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13227
13228         * Control.cs: Made PaintControlBackground virtual
13229         * Panel.cs: Overriding PaintControlBackground instead of using paint
13230           event; paint event method was interfering with 'real' users of the
13231           event.
13232
13233 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13234
13235         * ThemeWin32Classic.cs: remove border drawing since it is handled
13236         by the base control class now and was causing double border drawing.
13237
13238 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13239
13240         * Panel.cs: Redraw our background on paint. Not a pretty solution,
13241           but it does seem to match MS behaviour. This fixes bug #75324
13242
13243 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13244
13245         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
13246           somewhat hackish looking
13247
13248 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13249
13250         * TextBoxBase.cs:
13251           - We now accept Enter even if AcceptEnter is false, if the containing
13252             form does not have an AcceptButton configured (fixes bug #76355)
13253           - Calculations are now fixed to no longer use Width/Height, but
13254             ClientSize.Width/Height, since we now support borders (this was
13255             a result of fixing borders and therefore bug #76166)
13256           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
13257             true (fixes bug #76354)
13258         
13259 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13260
13261         * Control.cs: 
13262           - Defaulting BorderStyle and setting it in XplatUI when our window 
13263             is created
13264           - Added enum check to InternalBorderStyle setter
13265         * XplatUIX11.cs: 
13266           - Added drawing of window borders
13267           - Now properly calculates WM decorations offset for toplevel 
13268             windows (fixes bug #74763)
13269         * XplatUIWin32.cs: 
13270           - Implemented BorderStyles for windows (we're letting win32 draw 
13271             the border for us)
13272           - Fixed the signature for SetWindowLong
13273         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
13274           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
13275           setting borders
13276         * UpDownBase.cs: Remove drawing of borders, this is handled by
13277           the driver, outside the client area
13278         * ListView.cs: Removed bogus border calculations. The control should
13279           be oblivious to borders, since those are not part of the client
13280           area. 
13281         * X11DesktopColors.cs: Commented out (currently) unneeded variables
13282         * ThemeWin32Classic.cs: Removed border calculations from ListView 
13283           drawing code
13284
13285 2005-10-06  Jackson Harper  <jackson@ximian.com>
13286
13287         * MdiChildContext.cs: Clear out the old virtual position remove
13288         all the unneeded calls to CreateGraphics.
13289
13290 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13291
13292         * TextControl.cs: Use proper color for highlighted text; fixes #76350
13293
13294 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13295
13296         * Form.cs: 
13297           - Added loading and setting of our new default icon
13298           - Only set icon if window is already created
13299
13300 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13301
13302         * Label.cs:
13303           - Do not explicitly set the foreground and background colors, to
13304             allow inheriting from parents (fixes #76302)
13305           - Use Control's InternalBorderStyle property to deal with borders
13306
13307 2005-10-06  Jackson Harper  <jackson@ximian.com>
13308
13309         * MdiChildContext.cs: Use the new xplatui function to draw a
13310         reversible rect.
13311
13312 2005-10-06  Jackson Harper  <jackson@ximian.com>
13313
13314         * Form.cs: Add the parent before creating the child context cause
13315         we need the parent when setting up the child.
13316
13317 2005-10-06  Jackson Harper  <jackson@ximian.com>
13318
13319         * FolderBrowserDialog.cs: redo the tree population code so a
13320         second thread isn't used. Should be a lot faster and more stable
13321         now.
13322
13323 2005-10-05  Jackson Harper  <jackson@ximian.com>
13324
13325         * TreeView.cs: There are no expand/collapse boxes if the node has
13326         no children.
13327
13328 2005-10-05  Jackson Harper  <jackson@ximian.com>
13329
13330         * X11DesktopColors.cs: Get menu colours for the gtk theme.
13331
13332 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
13333
13334         * FileDialog.cs: Fix InitialDirectory
13335
13336 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13337
13338         * ComboBox.cs:
13339                 - Fixes changing between styles
13340                 - Fixes simple mode
13341                 - Fixes last item crashing when navigating with keyboard
13342
13343 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13344
13345         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
13346
13347 2005-10-05  Jackson Harper  <jackson@ximian.com>
13348
13349         * TreeView.cs: If updating the root node do a full refresh.
13350         * TreeNode.cs: The root node should be expanded by default. Also
13351         added a utility prop to tell if we are the root node.
13352         * TreeNodeCollection.cs: Only refresh if the node we are being
13353         added to is expanded. Also added a comment on a potential
13354         optimization.
13355         
13356 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
13357
13358         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
13359           in dispose method. Fixes #76330
13360
13361 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
13362
13363         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
13364
13365                 - Implements vertical and horizontal scrolling using XplatUI
13366                 - Fixes keyboard navagation
13367                 - Fixes EnsureVisible
13368                 - Drawing fixes
13369                 - Handles and draws focus properly
13370
13371
13372 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
13373
13374         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
13375           Create handle. NET_2_0: Destroy handle when value is null.
13376
13377 2005-10-03  Jackson Harper  <jackson@ximian.com>
13378
13379         * ScrollBar.cs: My last scrollbar patch was broken. This is a
13380         revert and a new patch to prevent the thumb from refreshing so
13381         much.
13382
13383 2005-10-02  Jackson Harper  <jackson@ximian.com>
13384
13385         * ScrollBar.cs: Don't update position if it hasn't actually
13386         changed. This occurs when you hold down the increment/decrement
13387         buttons and the thumb gets to the max/min.
13388
13389 2005-10-01  Jackson Harper  <jackson@ximian.com>
13390
13391         * Form.cs:
13392         * MdiChildContext.cs:
13393         * MdiClient.cs: Implement ActiveMdiChild in Form.
13394
13395 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
13396
13397         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
13398
13399 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
13400
13401         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
13402           be found
13403
13404 2005-09-30  Jackson Harper  <jackson@ximian.com>
13405
13406         * ListBox.cs: Don't do a full refresh unless some data has
13407         actually changed.
13408
13409 2005-09-30  Jackson Harper  <jackson@ximian.com>
13410
13411         * TreeView.cs: Make sure that the checkboxes size is factored in
13412         even when not visible.
13413
13414 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13415
13416         * FileDialog.cs: Fix Jordi's build break
13417
13418 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13419
13420         * FileDialog.cs: 
13421                 - Use standard the Windows colours for the combobox as espected
13422                 - Dispose objects that use resouces when no longer need them
13423
13424 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13425
13426         * X11DesktopColors.cs: Initial incomplete implementation
13427         * XplatUIX11.cs: Added call to initialize X11DesktopColors
13428
13429 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
13430
13431         * Theme.cs: 
13432           - Switched Theme color names to match the names defined in 
13433             System.Drawing.KnownColors. Life's hard enough, no need to make 
13434             it harder.
13435           - Added setters to all theme color properties so themes can set
13436             their color schemes. The setters also propagate the color changes
13437             to System.Drawing.KnownColors via reflection
13438         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
13439           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
13440           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
13441           use the new, more logical theme color names
13442         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
13443           post-NT colors
13444         * ThemeWin32Classic.cs:
13445           - Removed code to set the old classic Windows colors. Instead it
13446             now relies on the colors returned by System.Drawing.KnownColors
13447             which will be either modern static colors (Unix) or colors
13448             read from the user's configuration (Win32)
13449           - Updated to use the new, more logical theme color names
13450           - Switched DataGrid drawing code to use only Theme colors instead of
13451             a mix of System.Drawing.KnownColors and Theme colors
13452           - DrawFrameControl(): Removed code that fills the button area, the
13453             fill would overwrite any previous fill done by a control. This
13454             fixes bug #75338 
13455           - Added DrawReversibleRectangle() stub
13456         * ScrollableControl.cs: Set visible state to false when scrollbars
13457           are removed (pdn fix)
13458         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
13459           DrawReversibleRectangle() method to allow drawing primitive 
13460           'rubber bands'
13461         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
13462
13463 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13464
13465         * ImageList.cs: Add(Icon): Create handle.
13466
13467 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13468
13469         * ListView.cs:
13470         * ThemeWin32Classic.cs:
13471                 - Fixes detail mode
13472                 - Sets clippings
13473                 - Issues with drawing
13474
13475 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13476
13477         * ImageList.cs: Moved RecreateHandle back to ImageList as event
13478           source has to be the ImageList.
13479
13480 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13481
13482         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
13483
13484 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13485
13486         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
13487
13488 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13489
13490         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
13491
13492 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
13493         * GridItem.cs: Fixed TODOs
13494         * GridItemCollection.cs: Added ICollection interface
13495
13496 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13497
13498         * ImageList.cs: Resize icons when needed.
13499
13500 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
13501
13502         * ListViewItem.cs
13503                 - Fixes GetBounds and returns on screen rects
13504         * ListView.cs:
13505                 - Fixes vertical and horzintal scrolling of items
13506         * ThemeWin32Classic.cs:
13507                 - Fixes drawing
13508                 
13509 2005-09-29  Raja R Harinath  <harinath@gmail.com>
13510
13511         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
13512
13513 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
13514
13515         * ImageList.cs: Added comments about handle creation. Moved Handle,
13516           HandleCreated and OnRecreateHandle implementations to ImageCollection.
13517           Handle is created in Add methods.
13518
13519 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13520          
13521         * DataGridDrawingLogic.cs: 
13522                 - Takes rows into account on Colum calculations
13523                 - Returns the column when clickig
13524         * DataGrid.cs:
13525                 - Fixes default HitTestInfo values
13526                 - Fixes HitTestInfo.ToString
13527                 - Fixes ResetBackColor          
13528         
13529 2005-09-28  Jackson Harper  <jackson@ximian.com>
13530
13531         * MdiChildContext.cs: Obey rules for fixed sized windows (no
13532         sizing or cursor changes). Also added some temp code to draw the
13533         titlebars text (Makes dev a little easier).
13534
13535 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13536
13537         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
13538
13539 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13540          
13541         * ListBox.cs: Fixes bug 76253
13542
13543 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13544
13545         * ImageList.cs: Added comments about the current implementation. Added
13546           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
13547           Format32bppArgb to preserve transparency and can use Graphics.FromImage
13548           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
13549           with Bitmap.LockBits for better performance. Revised the whole file to
13550           match MS.NET behaviour and provide better performance. Non-public
13551           interface members are calling public members even when they throw
13552           NotSupportedException for better maintainability. Moved ColorDepth,
13553           ImageSize, ImageStream and TransparentColor implementations to
13554           ImageCollection for better performance as these properties are not used
13555           by ImageList.
13556         * ImageListStreamer.cs: Added a new internal constructor that takes an
13557           ImageList.ImageCollection and serializes Images based on
13558           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
13559           match ImageList property name.
13560
13561 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
13562
13563         * ListBox.cs: Fixes IndexFromPoint for last item
13564
13565 2005-09-27  Jackson Harper  <jackson@ximian.com>
13566
13567         * Form.cs: Set the position of new mdi children correctly.
13568
13569 2005-09-27  Jackson Harper  <jackson@ximian.com>
13570
13571         * MdiClient.cs: New mdi children need to be added to the back of
13572         the controls collection so the zorder is set correctly. Also add a
13573         count of all the child windows that have been created.
13574
13575 2005-09-27  Jackson Harper  <jackson@ximian.com>
13576
13577         * Form.cs (CreateParams): Setup MDI forms correctly.
13578
13579 2005-09-27  Jackson Harper  <jackson@ximian.com>
13580
13581         * MdiChildContext.cs:
13582         * MonthCalendar.cs:
13583         * UpDownBase.cs:
13584         * ListBox.cs:
13585         * ListView.cs:
13586         * TextBoxBase.cs:
13587         * TreeView.cs:
13588         * ScrollableControl.cs:
13589         * ComboBox.cs: Add implicit controls using the new implict control
13590         functionality in ControlCollection. Also try to block multiple
13591         control add in a suspend/resume layout to save some cycles.
13592         
13593 2005-09-27  Jackson Harper  <jackson@ximian.com>
13594
13595         * Control.cs: Add functionality to the controls collection to add
13596         'implicit controls' these are controls that are created by the
13597         containing control but should not be exposed to the user. Such as
13598         scrollbars in the treeview.
13599         * Form.cs: The list var of the ControlsCollection is no longer
13600         available because of the potential of implicit controls getting
13601         ignored by someone accessing the list directly.
13602
13603 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
13604
13605         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
13606           loose it's parent. (Fixed bug introduced in r49103 when we added
13607           setting the child parent to null on Remove)
13608
13609 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
13610
13611         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
13612         * Splitter.cs: Added missing attributes for BorderStyle property.
13613         * TextBoxBase.cs: Marked Calculate* methods internal.
13614         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
13615         MS.NET.
13616
13617 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
13618          
13619         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
13620
13621 2005-09-25  Jackson Harper  <jackson@ximian.com>
13622
13623         * TreeView.cs: Update the node bounds correctly regardless of
13624         whether the node is visible.
13625
13626 2005-09-25  Jackson Harper  <jackson@ximian.com>
13627
13628         * ImageList.cs: Don't dispose the image after it is added to the
13629         image list. Only reformat images that need to be resized.
13630
13631 2005-09-25  Jackson Harper  <jackson@ximian.com>
13632
13633         * ImageList.cs: Don't set the format when changing the image.
13634
13635 2005-09-25  Jackson Harper  <jackson@ximian.com>
13636
13637         * TreeView.cs: We can't just assume the node has a font. Use the
13638         treeviews font if no node font is available.
13639
13640 2005-09-25  Jackson Harper  <jackson@ximian.com>
13641
13642         * TreeView.cs: Allow the scrollbars to be reset with negative
13643         values.
13644         - Don't add scrollbars to negative sized windows.
13645
13646 2005-09-23  Jackson Harper  <jackson@ximian.com>
13647
13648         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
13649         old Mono.Posix. Also remove some stray code that shouldn't have
13650         been committed.
13651
13652 2005-09-23  Jackson Harper  <jackson@ximian.com>
13653
13654         * TreeView.cs: Attempt at proper sizing of the horizontal
13655         scrollbar. Also don't resize the scrollbars unless they are
13656         visible.
13657
13658 2005-09-23  Jackson Harper  <jackson@ximian.com>
13659
13660         * TreeView.cs: We don't need to expand the invalid area when the
13661         selection changes, as this is all drawn in the node's bounding
13662         box. The area needs to be expanded (previous typo was contracting
13663         it) when the focus rect moves.
13664
13665 2005-09-23  Jackson Harper  <jackson@ximian.com>
13666
13667         * TreeView.cs: Display the selection box under the correct
13668         circumstances. We were rendering white text with no selection box
13669         before.
13670
13671 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
13672
13673         * TextControl.cs(Split): Now updates selection start/end if it points 
13674           into a line that's being split. Fixes a FIXME and bug #75258
13675
13676 2005-09-23  Jackson Harper  <jackson@ximian.com>
13677
13678         * Binding.cs:
13679         * ListControl.cs: Don't use the path when retrieving binding
13680         managers from the binding context. My bat sense tells me that the
13681         path is only used on insertion.
13682
13683 2005-09-22  Jackson Harper  <jackson@ximian.com>
13684
13685         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
13686
13687 2005-09-22  Jackson Harper  <jackson@ximian.com>
13688
13689         * Splitter.cs: There are special cursors used for splitting.
13690         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
13691
13692 2005-09-22  Jackson Harper  <jackson@ximian.com>
13693
13694         * Splitter.cs: Change the cursor appropriately when the splitter
13695         is moused over, so the user actually knows there is a splitter
13696         there.
13697
13698 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13699
13700        * Label.cs : Fix ToString method to give same output as MS.NET
13701
13702 2005-09-22  Jackson Harper  <jackson@ximian.com>
13703
13704         * TreeView.cs: Create the scrollbars when the handle is created
13705         and add them right away, just make them invisble. Also account for
13706         the window being shrunk vertically to the point that the vert
13707         scrollbar needs to be added.
13708         - Remove some 0.5 adjustments to get around anti aliasing issues.
13709         
13710 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
13711          
13712         * MainMenu.cs: Fixes default value
13713         * MenuItem.cs: Fixes default value
13714
13715 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
13716
13717         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
13718
13719 2005-09-21  Jackson Harper  <jackson@ximian.com>
13720
13721         * Control.cs: Don't try to set the border style on the window if
13722         it hasn't been created. When the window is created the border
13723         style will be used.
13724
13725 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13726
13727         * Control.cs (Update): Don't call XplatUI if we don't have a
13728           window handle yet
13729
13730 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13731
13732         * ContainerControl.cs: Instead of throwing an exception, print
13733           a one-time warning about Validate not being implemented
13734         * XplatUIWin32.cs: Removed debug output
13735
13736 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13737
13738         * Control.cs: Only set XplatUI background if we expect the windowing
13739           system to handle the background. This stops controls that draw their
13740           own background from flickering
13741
13742         * XplatUIX11.cs: Support custom visuals and colormaps for window 
13743           creation. This allows, amongst other things, using MWF X11 windows 
13744           with OpenGL.
13745
13746 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13747
13748         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
13749           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
13750           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
13751           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
13752           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
13753           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
13754           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
13755           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
13756           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
13757           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
13758           GridColumnStylesCollection.cs, 
13759           IDataGridColumnStyleEditingNotificationService.cs,
13760           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
13761           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
13762           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
13763           TreeNodeCollection.cs, AmbientProperties.cs, 
13764           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13765           DataObject.cs, ErrorProvider.cs, Splitter.cs,
13766           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
13767           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
13768           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
13769           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
13770           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
13771           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
13772           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
13773           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
13774           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
13775           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
13776           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
13777           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
13778           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
13779           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
13780           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
13781           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
13782           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
13783           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
13784           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
13785           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
13786           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
13787           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
13788           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
13789           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
13790           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
13791           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
13792           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
13793           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
13794           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
13795           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
13796           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
13797           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
13798           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
13799           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
13800           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
13801
13802 2005-09-21  Jackson Harper  <jackson@ximian.com>
13803
13804         * TreeNode.cs: Call Before/After Expand not Collapse when
13805         expanding.
13806
13807 2005-09-20  Jackson Harper  <jackson@ximian.com>
13808         
13809         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
13810
13811 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13812          
13813         * ListViewItem.cs:
13814                 - Fixes bug 76120
13815                 - Fixes proper storing of subitems
13816                 - Fixes not updated items
13817
13818 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
13819
13820         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
13821           things if our window handle isn't created yet. Also disabled 
13822           debug for TextBoxBase
13823
13824 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
13825
13826         * MenuAPI.cs: Remove filtering of events to allow menu usage
13827
13828 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13829
13830         * Cursor.cs: Allow null to be passed to Cursor.Current.
13831
13832 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
13833
13834         * ThemeWin32Classic.cs:
13835           - Change some private methods/fields to protected virtual so that 
13836             they can be accessed and overriden in derived classes
13837           - First refactoring of some methods. Derived themes now don't 
13838             need to duplicate the complete code from ThemeWin32Classic
13839         * ThemeNice.cs:
13840           - Added nice StatusBar
13841           - Derive from ThemeWin32Classic and not Theme
13842           - Removed duplicate ThemeWin32Classic code
13843
13844 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13845
13846         * Control.cs (ControlCollection.Add): If the value null is passed
13847         the control is ignored. 
13848
13849         Optimize this loop.
13850
13851 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
13852
13853         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
13854           PostQuitMessage state.
13855         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
13856
13857 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
13858
13859         * Application.cs: Our constructor will never get called, move 
13860           initialization to fields; fixes bug #75933
13861
13862 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13863
13864         * FileDialog.cs :
13865                 - Allow files to be selected properly using file name
13866                 combo box.
13867                 - Add ability to change diretory (absolute / relative)
13868                 using file name combo box.
13869
13870 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13871          
13872         * ListBox.cs: 
13873                 - Fixes Multicolumn listboxes item wrong calculations
13874                 - Allows to click when only one item is in the listbox
13875                 - Fixes crash when no items using keyboard navigation
13876
13877 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
13878
13879         * ComboBox.cs: Reverted almost everything from the latest patch which
13880           broke ComboBox
13881
13882 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
13883         
13884         * ToolTip.cs:
13885                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
13886         * ComboBox.cs:
13887                 - When DropDownStyle is Simple, it does not show scrollbar 
13888                 to the last item of the list.
13889                 - When DropDownStyle is Simple, it crashed when the list was 
13890                 scrolled down with the down cursor key.
13891                 - Fixed a bug that when DropDownStyle is DropDownList, the 
13892                 selected item was not shown.
13893                 - The position of the selected item was not preserved when 
13894                 the next dropdown happened.
13895         * ThemeWin32Classic.cs:
13896                 - Items were wrapped at the right end.
13897         * CheckedListBox.cs:
13898                 - Fixed Add method
13899         * ListBox.cs:
13900                 - Items should be fully shown.
13901                 - When resizing and vertical scrollbar disappeared, the item 
13902                 of index 0 should be on the top of the list.
13903                 - GetItemRectangle should consider the size of ver. scrollbar
13904         * StatusBar.cs:
13905                 - SizingGrip area should not be allocated when it is not 
13906                 displayed.
13907                 - Now it reflects MinWidth of the containing panel and 
13908                 fixed a crash that happens when its width becomes so small.
13909
13910 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13911
13912         * CheckedListBox.cs: Fixes bug 76028
13913         * ListBox.cs: Fixes bug 76028
13914
13915 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13916
13917         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
13918         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
13919
13920 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
13921
13922         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
13923
13924 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13925
13926         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
13927
13928 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13929
13930         * IRootGridEntry.cs: Added
13931         * PropertyGridCommands.cs: Added
13932         * PropertiesTab.cs: Added missing methods and property
13933         * PropertyGridView.cs: Made class internal
13934         * PropertyGridTextBox.cs: Made class internal
13935
13936 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13937
13938         * MimeIcon.cs: Try to check some other environment variables
13939           if "DESKTOP_SESSION" returns "default"
13940
13941 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13942
13943         * ThemeNice.cs: Corrected background colors (e.g. menus)
13944         * ColorDialog.cs: Use correct background colors for controls
13945
13946 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13947
13948         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
13949
13950 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
13951
13952         * RichTextBox.cs: Added initial implementation
13953         * lang.cs: Removed. Was accidentally checked in long time ago
13954         * TODO: Removed. Contents were obsolete
13955
13956 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13957                                                                                 
13958         * PropertiesTab.cs : Added
13959
13960 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13961                                                                                 
13962         * PropertyGrid.cs : Update
13963         * PropertyGridView.cs : Update
13964         * System.Windows.Forms.resx : Added images and strings
13965
13966 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
13967
13968         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
13969  
13970 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
13971
13972         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
13973           a busy loop right after the Ungrab the X11 display is otherwise 
13974           blocked
13975
13976 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
13977
13978         * ThemeWin32Classic.cs: Optimise the use of clipping
13979
13980 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
13981
13982         * DataGrid.cs: fixes recursion bug
13983
13984 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
13985
13986         * ThemeNice.cs: 
13987           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
13988           - Cleanup
13989
13990 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
13991
13992         * ThemeNice.cs: Draw nice ProgressBars
13993
13994 2005-09-01  Miguel de Icaza  <miguel@novell.com>
13995
13996         * VScrollBar.cs: Another buglet found by Aaron's tool. 
13997
13998         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
13999         bug finder.
14000
14001 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
14002
14003         * ThemeNice.cs:
14004           - Added nicer menu drawing
14005           - Updated DrawTab
14006           - some refactoring
14007
14008 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14009
14010         * CreateParams.cs (ToString): Made output match MS
14011         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
14012             handle is already created (to avoid forcing window creation)
14013         * XplatUIX11.cs: Set window text to caption after creating window,
14014           in case Text was set before window was created
14015         * Form.cs: Use this.Text instead of a static string as caption
14016
14017 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14018
14019         * NotifyIcon.cs: Don't set the window to visible; this screws
14020           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
14021           OnPaint without a bitmap)
14022         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
14023           happen very often anyway; we could add the check to the WM_PAINT 
14024           event generation code
14025
14026 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14027
14028         * NotifyIcon.cs: Fill the icon area with a background color, to 
14029           avoid 'residue' when transparent icons are drawn
14030         * XplatUIX11.cs:
14031           - Handle whole_window == client_window when destroying windows
14032           - SystrayAdd(): Set client_window to whole_window value to
14033             get mouse and other events passed to NotifyIcon
14034
14035 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14036
14037         * Form.cs: Set proper default for Opacity property
14038         * NotifyIcon.cs:
14039           - ShowSystray(): Don't bother creating telling the OS
14040             about the systray item if no icon is provided
14041           - Now handles WM_NCPAINT message to deal with whole/client window
14042             split
14043           - Create window as visible to not get caught by Expose optimization
14044         * Hwnd.cs: Removed debug message
14045         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
14046           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
14047             PaintEventStart/End to use new client argument
14048         * TextBoxBase.cs:
14049           - Commented out debug messages
14050           - Switched PaintEventStart/End to use new client argument
14051         * XplatUI.cs: Added client window bool to PaintEventStart()/
14052           PaintEventEnd() calls, to support drawing in non-client areas
14053         * XplatUIDriver.cs: 
14054           - Added client window bool to PaintEventStart()/PaintEventEnd() 
14055             calls, to support drawing in non-client areas
14056           - Added conditional compile to allow using MWF BeginInvoke 
14057             on MS runtime
14058         * XplatUIX11.cs:
14059           - Added some conditional debug output
14060           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
14061             whole/client window split
14062           - Implemented handling of client argument to PaintEventStart()/End()
14063         * Control.cs:
14064           - Throw exception if BeginInvoke() is called and the window handle
14065             or one of the window's parent handles is not created
14066           - Added conditional compile to allow using MWF BeginInvoke on
14067             MS runtime
14068           - get_Parent(): Only sets parent if handle is created. This avoids
14069             forcing window handle creation when parent is set.
14070           - Now fires Layout and Parent changed events in proper order
14071           - Switched to use Handle instead of window.Handle for Z-Order setting,
14072             the get_Parent() patch above causes us to possibly get null for 'window'
14073           - Implemented handling of client argument to PaintEventStart()/End()
14074           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
14075             default handling)
14076           - Now sends a Refresh() to all child windows when Refresh() is called
14077
14078 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14079
14080         * Form.cs: Added (non-functional) Opacity property
14081         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
14082
14083 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
14084         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
14085           use export MONO_THEME=nice to activate it.
14086           Currently supported controls:
14087           - Button
14088           - ComboBox
14089           - ScrollBar
14090           - TabControl (TabAlignment.Top only, other will follow)
14091         * ThemeEngine.cs: Add theme nice
14092         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
14093           if enabled
14094
14095 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
14096
14097         * Splitter.cs: Resize docked control and its neighbor.
14098
14099 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14100         -- Making Windows with Menus layout correctly --
14101         * Form.cs : The first leg of the fix
14102                 Menu setter - adjust Client Size as needed to make space for the menu
14103                 SetClientSizeCore - doesn't call base version to be able to pass the 
14104                         menu handle to XplatUI.CalculateWindowRect
14105         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
14106         * XplatUIX11.cs: The critical second leg of the fix
14107                 GetWindowPos needs to use a recalculated client_rect
14108                 so that resizing the window doesn't break layout of child controls. 
14109                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
14110                 Lots of \t\n killed
14111
14112 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14113
14114         * Label.cs: Now properly recalculates width and height on Font and Text
14115           changes if AutoSize is set
14116
14117 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14118         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
14119
14120 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
14121
14122         * ImageList.cs: Makes ToString method compatible with MS
14123
14124 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
14125
14126         * MenuAPI.cs: fixes bug 75716
14127
14128 2005-08-11 Umadevi S <sumadevi@novell.com>
14129         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
14130
14131 2005-08-11 Umadevi S <sumadevi@novell.com>
14132         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
14133
14134 2005-08-10  Umadevi S <sumadevi@novell.com>
14135         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
14136
14137 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
14138
14139         * Menu.cs: fixes bug 75700
14140         * MenuAPI.cs: fixes navigation issues
14141
14142 2005-08-09  Umadevi S <sumadevi@novell.com>
14143         * CheckedListBox.cs - simple fix for GetItemChecked.
14144
14145 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
14146
14147         * ComboBox.cs: Serveral fixes
14148         * ListBox.cs: Serveral fixes
14149
14150 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14151
14152         * ComboBox.cs: Fixes FindString methods and GetItemHeight
14153         * ListBox.cs: Fixes FindString methods
14154
14155 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14156
14157         * DataGrid.cs: fixes bugs exposed by new tests
14158
14159 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
14160
14161         * Mime.cs: Compile Mono assembly references only if compiling
14162           with Mono (Allows to build with VS.Net again)
14163
14164 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
14165
14166         * Control.cs (PaintControlBackground): Draw background image
14167         corrrectly.
14168         (CheckForIllegalCrossThreadCalls): Stubbed.
14169         
14170         * Form.cs (OnCreateControl): Center when should be centered.
14171         
14172         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
14173
14174 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
14175
14176         * Binding.cs: Binding to properties should be case unsensitive
14177
14178 2005-07-18 vlindos@nucleusys.com
14179
14180         * DataGrid.cs: fixes setmember order
14181
14182 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
14183
14184         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
14185         * FileDialog.cs: FileDialog is now resizable and uses the new
14186           MimeIconEngine
14187
14188 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
14189
14190         * DataGridTextBoxColumn.cs: default value
14191         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
14192         * GridTableStylesCollection.cs: fixes checking MappingName
14193         * DataGridDrawingLogic.cs: fixes drawing logic issues
14194         * DataSourceHelper.cs: rewritten to make compatible with more data sources
14195         * DataGrid.cs: fixes    
14196
14197 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
14198
14199         * MimeGenerated.cs: Use case sensitive comparer for
14200           NameValueCollections
14201
14202 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
14203
14204         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
14205         * ThemeWin32Classic.cs: bug fixes, code refactoring
14206         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
14207         * DataGrid.cs: bug fixes, code refactoring
14208         * DataGridTextBox.cs: bug fixes, code refactoring
14209         * DataGridColumnStyle.cs:  bug fixes, code refactoring
14210         * Theme.cs:  bug fixes, code refactoring
14211
14212 2005-07-01  Peter Bartok  <pbartok@novell.com> 
14213
14214         * TextControl.cs: Quick fix for the reported crash on ColorDialog
14215           and other text box usage
14216
14217 2005-07-01  Jackson Harper  <jackson@ximian.com>
14218
14219         * TabControl.cs: Make sure the bottom of the tab covers the pages
14220         border.
14221
14222 2005-06-30  Peter Bartok  <pbartok@novell.com> 
14223
14224         * Form.cs (ShowDialog): Assign owner of the dialog
14225         * TextBoxBase.cs: Always refresh caret size when deleting, caret
14226           might have been moved to a tag with different height
14227
14228 2005-06-30  Jackson Harper  <jackson@ximian.com>
14229
14230         * Form.cs: Don't create an infinite loop when setting focus
14231         * MenuItem.cs: Don't dirty the parents if we don't have any
14232
14233 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
14234
14235         * LibSupport.cs: Rename
14236
14237 2005-06-29  Peter Bartok  <pbartok@novell.com>
14238
14239         * TextBoxBase.cs: Re-align caret after deleting a character
14240         * TextControl.cs:
14241           - DeleteChars(): Ensure that tag covers the provided position
14242           - StreamLine(): Drop reference for dropped tag
14243
14244 2005-06-29  Peter Bartok  <pbartok@novell.com> 
14245
14246         * TextControl.cs: 
14247           - Selections now work properly, anchoring at the initial location
14248             and properly extending in either direction (SetSelectionToCaret(),
14249             SetSelectionStart() and SetSelectionEnd())
14250           - No longer redraws the whole control on selection change, now
14251             calculates delta between previous and new selection and only
14252             invalidates/redraws that area
14253           - Fixed FindPos() math off-by-one errors
14254           - Changed DeleteChars() to verify the provided tag covers the
14255             provided position, selections may have a tag that doesn't cover
14256             the position if the selection is at a tag border
14257           - Fixed off-by-one errors in DeleteChars()
14258           - Added missing streamlining check in DeleteChars() to remove
14259             zero-length tags
14260           - Implemented Invalidate() method, now properly calculates exposures
14261             between two given lines/positions
14262           - Implemented SetSelection()
14263           - Obsoleted and removed FixupSelection()
14264           - Improved RecalculateDocument() logic, removing code duplication
14265
14266 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14267
14268         * LibSupport.cs: changes to match different input/output arguments.
14269
14270 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14271
14272         * LibSupport.cs: added libsupport.so init routine.
14273
14274 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
14275         
14276         * ControlBindingsCollection.cs
14277                 - Throws an exception on null datasource when adding
14278                 - Checks for duplicated bindings when adding
14279
14280 2005-06-28  Jackson Harper  <jackson@ximian.com>
14281
14282         * TreeView.cs (OnKeyDown): Support left and right properly
14283         (navigates as well as expanding and collapsing.
14284         - Add support for Multiply, this expands all the selected nodes
14285         children.
14286         - Fix some tabbing.
14287
14288 2005-06-28  Jackson Harper  <jackson@ximian.com>
14289
14290         * TreeView.cs: Implement keyboard navigation, currently supports,
14291         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
14292         support for toggling checkboxes with the space bar.
14293
14294 2005-06-28  Jackson Harper  <jackson@ximian.com>
14295
14296         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
14297         tree.
14298
14299 2005-06-28  Jackson Harper  <jackson@ximian.com>
14300
14301         * TreeView.cs: Add missing event.
14302
14303 2005-06-27  Peter Bartok  <pbartok@novell.com> 
14304
14305         * TextControl.cs:
14306           - Made line ending size configurable (now allows for counting 
14307             lineendings as \n or \r\n)
14308           - Added margin to viewport to keep caret visible on right side
14309           - Fixed translation routines for line/pos to documentpos to consider
14310             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
14311           - Fixed some line-endings to be unix style
14312           - Fixed Document.FormatText to perform it's calculations 1-based
14313           - Added descriptions for a few methods that might otherwise get 
14314             used wrong
14315           - Added NOTE section with some basic conventions to remember at 
14316             the top of the file
14317           - Major fixup for RichTextBox selection drawing:
14318             * Fixed crashes when multiple tags on a single line were selected
14319             * fixed selection box drawing not overlaying text
14320             * fixed bogus offset calculation for tags not starting at index 1
14321             * Switched behaviour from using multiple Substrings of a 
14322               StringBuilder.ToString() to using multiple 
14323               StringBuilder.ToString(start, length) statements, hoping this is
14324               faster (kept original version commented out in the code, in case
14325               original version was faster)
14326         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
14327           alignment != Left
14328         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
14329           call it as well
14330
14331 2005-06-27  Jackson Harper  <jackson@ximian.com>
14332
14333         * TabControl.cs: Move to the left and right with the arrow
14334         keys. These keys don't cycle beyond first and last like
14335         tab. Refresh all the tabs when scrolling them to the left or
14336         right.
14337
14338 2005-06-27  Jackson Harper  <jackson@ximian.com>
14339
14340         * TabControl.cs:
14341           - ToString: Added method
14342           - CreateParams: Remove TODO and comment
14343           - OnKeyDown: Cycle through bounds properly.
14344           - SelectedIndex: Scroll to the right or left if we need to
14345           display the newly selected tab.
14346
14347 2005-06-23  Jackson Harper  <jackson@ximian.com>
14348
14349         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
14350         set.
14351
14352 2005-06-23  Jackson Harper  <jackson@ximian.com>
14353
14354         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
14355         CTRL-SHIFT-TAB, and HOME, END are there any others?
14356
14357 2005-06-23  Jackson Harper  <jackson@ximian.com>
14358
14359         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
14360
14361 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14362         
14363         * DataGridTextBoxColumn.cs: fixes and enhancements
14364         * ThemeWin32Classic.cs: fixes and enhancements
14365         * DataGridBoolColumn.cs:  fixes and enhancements
14366         * DataGridDrawingLogic.cs:  fixes and enhancements
14367         * CurrencyManager.cs: fixes and enhancements
14368         * DataGrid.cs: fixes and enhancements
14369         * DataGridColumnStyle.cs:  fixes and enhancements
14370
14371 2005-06-22  Jackson Harper  <jackson@ximian.com>
14372
14373         * TabControl.cs: Add some missing methods that just call into the
14374         base. Make the TabPageCollection's IList interface behave in the
14375         same manner as the MS implementation.
14376
14377 2005-06-22  Peter Bartok  <pbartok@novell.com> 
14378
14379         * TextControl.cs: Added sanity check
14380         * TextBoxBase.cs: 
14381           - Fixed wrapping behaviour, don't set wrap on single line controls
14382             (this fixes the breakage of colordialog introduced in an earlier
14383              checkin)
14384           - Added rudimentary support for autoscrolling right-aligned controls
14385             (still needs fixing, also, center alignment scroll is missing)
14386
14387 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14388         
14389         * ScrollBar.cs: Fixes thumbpos on Maximum values
14390
14391 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
14392         
14393         * PropertyGridView.cs: Pass context information to UITypeEditors 
14394
14395 2005-06-21  Peter Bartok  <pbartok@novell.com> 
14396
14397         * TextBoxBase.cs:
14398           - Now calling PositionCaret with absolute space coordinates
14399           - Enabled vertical scrolling
14400           - Better tracking of scrollbar changes, tied into WidthChange
14401             event
14402           - Improved cursor tracking
14403           - Removed debug output
14404         * TextControl.cs:
14405           - PositionCaret coordinates are now works in absolute space, not 
14406             the canvas
14407           - Improved tracking of document size
14408           - Added events for width and height changes
14409
14410 2005-06-21  Peter Bartok  <pbartok@novell.com>
14411
14412         * Form.cs: Set focus to active control when form is activated
14413         * TextControl.cs: 
14414           - Added word-wrap functionality to RecalculateLine() 
14415           - Added some short function descriptions for VS.Net to aid in
14416             writing dependent controls
14417           - Added Caret property, returning the current coords of the caret
14418           - Added ViewPortWidth and ViewPortHeight properties
14419           - Added Wrap property
14420           - Added CaretMoved event
14421           - Removed some old debug code
14422           - Split() can now create soft splits
14423           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
14424           - Added method to format existing text
14425           - Fixed size/alignment calculations to use viewport
14426           - RecalculateDocument now can handle changing line-numbers while
14427             calculating lines
14428
14429         * TextBox.cs:
14430           - Added some wrap logic, we don't wrap if alignment is not left
14431           - Added casts for scrollbar var, base class switched types to
14432             also support RichTextBoxA
14433           - Implemented handling of scrollbar visibility flags
14434
14435         * TextBoxBase.cs:
14436           - Switched scrollbars type to RichTextBoxScrollBars to support
14437             RichTextBox
14438           - Added tracking of canvas width/height
14439           - Switched scrollbars to be not selectable (to keep focus on text)
14440           - Added central CalculateDocument() method to handle all redraw
14441             requirements
14442           - Added ReadOnly support
14443           - Added WordWrap support
14444           - Fixed handling of Enter key (we now treat it as a DialogKey)
14445           - Fixed caret positioning when h or v scroll is not zero
14446           - Fixed placing/generation of vertical scrollbar
14447           - Added CalculateScrollBars() method to allow updating scrollbar
14448             limits and visibility
14449           - Fixed handling of horizontal scroll
14450           - Added handling of vertical scroll
14451           - Implemented auto-'jump' when caret moves to close to a left or
14452             right border and there is text to be scrolled into view (currently
14453             there's the potential for a stack overflow, until a bug in
14454             scrollbar is fixed)
14455
14456 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
14457         
14458         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
14459
14460 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
14461
14462         * Mime.cs:
14463         - added inodes.
14464         - return application/x-zerosize for files with size zero
14465           (if no extension pattern matches).
14466         - check matches collection for strings too.
14467         - return only the first mime type if the name value
14468           collection has more than one mime type.
14469
14470 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
14471         
14472         * PropertyGrid.cs: Cleaned up some TODOs
14473         * PropertyGridView.cs: Added support for UITypeEditors
14474
14475 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14476         
14477         * DataGrid.cs: clears cached value
14478
14479 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14480
14481         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
14482         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
14483         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
14484         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
14485         
14486 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
14487
14488         * ThemeWin32Classic.cs: fixes colour
14489
14490 2005-06-15  Peter Bartok  <pbartok@novell.com>
14491
14492         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
14493         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
14494         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
14495         * Control.cs: Added some MWFCategory and MWFDescription attributes
14496         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
14497
14498 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
14499
14500         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
14501         usage
14502
14503 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
14504
14505         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
14506         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
14507         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
14508         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
14509         * DataGrid.cs: default datagrid settings for Default Styles, fixes
14510         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
14511
14512 2005-06-13  Jackson Harper  <jackson@ximian.com>
14513
14514         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
14515         isn't printed when the user enables dropping. (X11 does accept
14516         drops).
14517         
14518 2005-06-13  Jackson Harper  <jackson@ximian.com>
14519
14520         * TreeView.cs: Remove some TODOS.
14521
14522 2005-06-13  Jackson Harper  <jackson@ximian.com>
14523
14524         * Form.cs: Hook into the mdi framework.
14525         * MdiClient.cs: Use the base control collections add method so
14526         parents get setup correctly. Set the default back colour and dock
14527         style.
14528         * MdiChildContext.cs: New class, this bad actor handles an
14529         instance of an MDI window. Right now there is only basic
14530         support. You can drag, close, and resize windows. Minimize and
14531         Maximize are partially implemented.
14532
14533 2005-06-13  Jackson Harper  <jackson@ximian.com>
14534
14535         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
14536         freaky when both vals are negative. NOTE: There are probably other
14537         places in XplatUIX11 that this needs to be done.
14538
14539 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
14540
14541         * DataGrid.cs: implement missing methods, move KeyboardNavigation
14542         * DataGridColumnStyle.cs: fixes signature
14543
14544 2005-06-12  Jackson Harper  <jackson@ximian.com>
14545
14546         * XplatUIX11.cs: Use sizing cursors similar to the ones on
14547         windows.
14548
14549 2005-06-11  Jackson Harper  <jackson@ximian.com>
14550
14551         * StatusBarPanel.cs: Signature cleanups. Implement
14552         BeginInit/EndInit.
14553
14554 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
14555
14556         * DataGridTextBoxColumn.cs: Honors aligment
14557         * GridColumnStylesCollection.cs: Contains is case unsensitive
14558         * GridTableStylesCollection.cs: several fixes
14559         * DataGridTableStyle.cs: default column creation
14560         * DataGridDrawingLogic.cs: fixes
14561         * CurrencyManager.cs: ListName property
14562         * DataGrid.cs: multiple styles support
14563         * DataGridColumnStyle.cs: fixes
14564         
14565
14566 2005-06-10  Peter Bartok  <pbartok@novell.com>
14567
14568         * Control.cs(Select): Moved SetFocus call to avoid potential
14569           loops if controls change the active control when getting focus
14570         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
14571           the up/down buttons
14572
14573 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
14574
14575         * ImageListConverter.cs: Implemented
14576
14577 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14578
14579         * MonthCalendar.cs: Wired in NumericUpDown control for year
14580
14581 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14582
14583         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
14584           DoubleClick events, since they are not meant to be fired.
14585
14586 2005-06-09  Peter Bartok  <pbartok@novell.com>
14587
14588         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
14589           Jonathan's standalone controls into MWF, implemented missing
14590           events, attributes and methods; added xxxAccessible classes
14591         * AccessibleObject.cs: Made fields internal so other classes
14592           can change them if needed
14593
14594 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
14595
14596         * UpDownBase.cs: Complete implementation
14597         * NumericUpDown.cs: Complete implementation
14598         * DomainUpDown.cs: Complete implementation
14599
14600 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
14601
14602         * DataGridTextBoxColumn.cs: drawing fixes
14603         * DataGridCell.cs: fixes ToString method to match MSNet
14604         * DataGridTableStyle.cs: fixes
14605         * DataGridBoolColumn.cs: fixes, drawing
14606         * DataGridDrawingLogic.cs: fixes, new methods
14607         * DataGridTextBox.cs: Keyboard and fixes
14608         * DataGrid.cs:
14609                 - Keyboard navigation
14610                 - Scrolling fixes
14611                 - Row selection (single, multiple, deletion, etc)
14612                 - Lots of fixes
14613         
14614 2005-06-07  Jackson Harper  <jackson@ximian.com>
14615
14616         * ThemeWin32Classic.cs: Clear the background area when drawing
14617         buttons.
14618
14619 2005-06-06  Peter Bartok  <pbartok@novell.com>
14620
14621         * ImageListStreamer.cs: Fixed signature for GetData
14622         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
14623         * ComboBox.cs:
14624           - Added missing ChildAccessibleObject class
14625           - Added missing OnXXXFocus overrides, switched to using those
14626             instead of the event handler
14627         * Control.cs:
14628           - Added Parent property for ControlAccessibleObject
14629           - Fixed signatures
14630           - Fixed attributes
14631           - Added ResetBindings()
14632         * ListBindingConverter.cs: Implemented some methods
14633         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
14634         * ImageList.cs: Implemented basic handle scheme, removed TODOs
14635         * ContainerControl.cs: Fixed signature, now subscribing to the
14636           ControlRemoved event instead of overriding the handler, LAMESPEC
14637         * CurrencyManager.cs: Added missing attribute
14638         * MonthCalendar.cs: Added missing properties
14639
14640 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14641
14642         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
14643         
14644 2005-06-06  Gaurav Vaish and Ankit Jain
14645
14646         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
14647         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
14648         
14649 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14650
14651         * Control.cs: fixes CreateParams Width / Height.
14652
14653 2005-06-05  Peter Bartok  <pbartok@novell.com>
14654
14655         * Win32DnD.cs: Removed compilation warnings
14656
14657 2005-06-05  Peter Bartok  <pbartok@novell.com>
14658
14659         * Control.cs (CreateParams): Since we don't know if one of the
14660           properties we use is overridden, lets make sure if we fail accessing
14661           we continue with a backup plan
14662
14663 2005-06-05  Peter Bartok  <pbartok@novell.com>
14664
14665         * Win32DnD.cs:
14666           - Removed debug output
14667           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
14668             struct
14669           - Plugged resource leak
14670         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
14671           MS size
14672
14673 2005-06-05  Peter Bartok  <pbartok@novell.com>
14674
14675         * XplatUIWin32.cs: Removed DnD code
14676         * Win32DnD.cs: Implemented drop source and drop target functionality
14677
14678 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14679
14680         * UpDownBase.cs: remove duplicate addition of event, enable some code
14681         that was commented out.
14682         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
14683         Validate input when a key is pressed. It works fine now for every
14684         combination of Hexadecimal. Only missing some drawing love when sharing
14685         space with other controls.
14686
14687 2005-06-04  Peter Bartok  <pbartok@novell.com>
14688
14689         * Control.cs:
14690           - We need to pass a window for DragDrop, so enable callback events
14691           - Added DnD callback events when being a DragSource
14692         * XplatUI.cs (StartDrag): Added window handle argument
14693         * XplatUIDriver.cs (StartDrag): Added window handle argument
14694         * QueryContinueDragEventArgs: Made fields internally accessible so
14695           drivers can set them
14696         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
14697           can set them
14698
14699 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
14700
14701         * DataGridTextBoxColumn.cs: column text editing
14702         * DataGridTableStyle.cs: Respect columns styles created by the user
14703         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
14704         * DataGridBoolColumn.cs: bool column editing
14705         * DataGrid.cs: fixes to scrolling, properties, etc
14706         * DataGridTextBox.cs: handle keyboard
14707         * DataGridColumnStyle.cs: fixes
14708
14709 2005-06-02  Jackson Harper  <jackson@ximian.com>
14710
14711         * ImageListStreamer.cs: Somewhat broken implementation of
14712         GetObjectData. The RLE needs some work to match MS properly.
14713
14714 2005-06-02  Jackson Harper  <jackson@ximian.com>
14715
14716         * X11Dnd.cs: Attempting to keep at least one file in MWF
14717         monostyled.
14718
14719 2005-06-02  Peter Bartok  <pbartok@novell.com>
14720
14721         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
14722           that way
14723
14724 2005-06-02  Peter Bartok  <pbartok@novell.com>
14725
14726         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
14727         * XplatUI.cs: Added DoDragDrop() method
14728         * XplatUIDriver.cs: Added DoDragDrop() method
14729
14730 2005-06-02  Jackson Harper  <jackson@ximian.com>
14731
14732         * Splitter.cs: Implement BorderStyle.
14733
14734 2005-06-02  Jackson Harper  <jackson@ximian.com>
14735
14736         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
14737         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
14738         X11 using XDND.
14739
14740 2005-06-02  Peter Bartok  <pbartok@novell.com>
14741
14742         * DataObject.cs:
14743           - Added Data setter
14744           - Fixed broken insertion code for SetData, now also
14745             overwrites any existing entry of the same format name
14746         * Hwnd.cs: Added list of pointers that automatically gets
14747           freed when the window is disposed
14748         * XplatUI.cs: Call driver initialization method when loading
14749           a driver
14750         * Control.cs:
14751           - OnDragLeave takes EventArgs, not DragEventArgs
14752           - Added setting of WS_EX_ACCEPTFILES style when dropping is
14753             supported
14754           - Forces style update when drop state changes
14755         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
14756           not perfect since we cannot (yet) call the IDataObject.GetData()
14757           method, we keep getting 0x80004005 error, dunno why)
14758
14759 2005-06-02  Peter Bartok  <pbartok@novell.com>
14760
14761         * DragEventArgs.cs: Make fields internal so we can cache the
14762           object and re-set the fields from XplatUI
14763
14764 2005-06-02  Jackson Harper  <jackson@ximian.com>
14765
14766         * Control.cs: Add some internal methods so the DnD subsystem can
14767         raise DnD events. Also call into the driver when AllowDrop is set.
14768         * XplatUI.cs:
14769         * XplatUIDriver.cs: New method for setting whether or not a window
14770         is allowed to accept drag and drop messages.
14771                 
14772 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
14773         
14774         * ScrollBar.cs: Make sure that values sent in Scroll events
14775         are always between Maximum and Minimum.
14776
14777 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
14778
14779         * Menu.cs: Call MenuChanged when menuitem visibility has been
14780         changed.
14781         * MenuItem.cs: Rebuild menu when item is (not) visible.
14782         * MainMenu.cs: MainMenu has special MenuChanged.
14783         * Theme.cs: Caption and FrameBorderSize are not fixed.
14784         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
14785         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
14786         * XplatUIX11.cs,
14787         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
14788         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
14789
14790 2005-05-30  Jackson Harper  <jackson@ximian.com>
14791
14792         * DataFormat.cs: We can't statically initialize this stuff because
14793         it calls into the xplatui and could create a loop. So we lazy init
14794         it.
14795
14796 2005-05-28  Jackson Harper  <jackson@ximian.com>
14797
14798         * Control.cs: Proper implementation of Product(Name/Version).
14799
14800 2005-05-27  Jackson Harper  <jackson@ximian.com>
14801
14802         * DataObject.cs: Dont crash if no data is found.
14803
14804 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
14805         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
14806                 as per status page, guessing it should be set to true
14807
14808 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
14809
14810         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
14811         * DataGridTableStyle.cs: set proper formatting text, def header text
14812         * ThemeWin32Classic.cs: new themable paramaters
14813         * DataGridBoolColumn.cs: paint check box, get data, fixes
14814         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
14815         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
14816         * DataGridColumnStyle.cs: fixes
14817         * Theme.cs: new themable paramaters
14818                 
14819 2005-05-26  Peter Bartok  <pbartok@novell.com>
14820
14821         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
14822
14823 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14824         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
14825
14826 2005-05-24  Peter Bartok  <pbartok@novell.com>
14827
14828         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
14829           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
14830           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
14831           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
14832           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
14833           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
14834           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
14835           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
14836           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
14837           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
14838           missing attributes, etc
14839         * DataGridPreferredColumnWidthTypeConverter.cs: Added
14840
14841 2005-05-24  Peter Bartok  <pbartok@novell.com>
14842
14843         * Help.cs: Added, implemented trivial functions, throws up MessageBox
14844           when user tries to get help
14845         * DataObject.cs, DataFormats.cs, LinkArea.cs,
14846           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
14847           to suppress warnings
14848         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
14849           avoid unreachable code warning
14850
14851 2005-05-20  Peter Bartok  <pbartok@novell.com>
14852
14853         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
14854
14855 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14856
14857         * DataGridTextBoxColumn.cs: Basic painting methods
14858         * DataGridTableStyle.cs: Set table style in the column
14859         * ThemeWin32Classic.cs: Use Theme for colors
14860         * DataGridDrawingLogic.cs: Implement more drawing
14861         * DataGrid.cs: drawing, theming, enhacements, fixes
14862         * DataGridColumnStyle.cs: fixes, drawing
14863         * Theme.cs: theming for Datagrid
14864
14865 2005-05-20  Peter Bartok  <pbartok@novell.com>
14866
14867         * Cursor.cs: Implemented GetObjectData() method
14868
14869 2005-05-20  Peter Bartok  <pbartok@novell.com>
14870
14871         * Cursors.cs: Added setting of cursor name
14872         * Cursor.cs:
14873           - Implemented constructors
14874           - Implemented Draw and DrawStretched
14875           - Implemented Current property
14876           - Implemented == and != operators
14877           - Implemented Dispose()
14878           - Implemented ToString
14879           - Added missing attributes
14880         * XplatUIX11.cs:
14881           - Added missing reset for OverrideCursor when DoEvents is called
14882           - Fixed creation of cursor, logic was wrong
14883         * XplatUIWin32.cs:
14884           - Added missing reset for OverrideCursor when DoEvents is called
14885           - Fixed creation of cursor, bit arrays were swapped
14886         * Clipboard.cs: Removed obsolete MonoTODO attribute
14887
14888 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14889
14890         * ComboBox.cs: fixes OnSelectedItemChanged
14891         * ControlBindingsCollection.cs: fixes item range check
14892
14893 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14894
14895         * UpDownBase.cs:
14896                 - Calc preferred height properly
14897                 - Implement missing properties
14898                 
14899         * NumericUpDown.cs: Implement missing events
14900
14901 2005-05-19  Jackson Harper  <jackson@ximian.com>
14902
14903         * TabControl.cs: New method that resizes the tab pages before
14904         redrawing them. This as needed as the control is double buffered
14905         and sizing will not be recalculated unless ResizeTabPages is
14906         called.
14907         * TabPage.cs: Set base.Text instead of Text in the constructor so
14908         that UpdateOwner does not get called. Use the new Redraw method of
14909         TabControl instead of Refresh so the sizing is recalculated.
14910         * ThemeWin32Classic.cs: Draw the text for button tabs.
14911
14912 2005-05-19  Jackson Harper  <jackson@ximian.com>
14913
14914         * Control.cs: Paint control background images. Fix typo where
14915         PaintControlBackground was not getting called correctly.
14916
14917 2005-05-19  Peter Bartok  <pbartok@novell.com>
14918
14919         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
14920           I can investigate, apparently I broke FileDialog
14921
14922 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
14923
14924         * AxHost.cs: Some simple properties.
14925         * Control.cs: window must be accessible after ctor.
14926         * Form.cs: Added TransparencyKey property.
14927         * TextBoxBase.cs: Implemented Clear. Text property can be null.
14928         * XplatUIWin32.cs: SetBorderStyle implemented.
14929
14930 2005-05-18  Peter Bartok  <pbartok@novell.com>
14931
14932         * DataObject.cs: Entries are not global but particular to the
14933           DataObject, now it behaves that way
14934         * XplatUIWin32.cs: Implemented Clipboard methods
14935         * Clipboard.cs: Implemented
14936         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
14937         * XplatUIOSX.cs: Updated to final clipboard prototypes
14938         * XplatUIX11.cs: Implemented Clipboard methods
14939         * XplatUIDriver.cs: Updated to final clipboard prototypes
14940         * XplatUIStructs.cs:
14941           - Added BITMAPINFOHEADER struct
14942           - Added ClipboardFormats enum
14943         * X11Structs.cs:
14944           - Added ClipboardStruct
14945           - Added Atom enum items for clipboard types
14946           - Fixed atom types for Selection event structures
14947         * DataFormats.cs:
14948           - Added internal properties and methods for drivers to enumerate
14949             all known formats
14950           - Switched initialization method to allow drivers to assign their
14951             own IDs even for the MS predefined clipboard IDs
14952         * XplatUI.cs: Updated to final clipboard interface
14953
14954 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14955         * PropertyGridView.cs: Fixed compiler warnings.
14956
14957 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14958         * PropertyGrid.cs: Added some event calls
14959         * PropertyGridView.cs: Change drawing code to use double buffering
14960         * PropertyGridTextBox.cs: Changed Text property name
14961         * GridItem.cs: Added Bounds property.
14962         * GridEntry.cs: Added Bounds property.
14963
14964 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
14965
14966         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
14967         since GetType() may not return the correct type if the object is
14968         a remoting proxy.
14969
14970 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
14971
14972         * TreeNodeCollection.cs: fixes get/set item ranges
14973         
14974 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14975
14976         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
14977                 
14978 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14979
14980         * ComboBox.cs: Fix item range comparation
14981         * ListView.cs: Fix item range comparation
14982
14983 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14984
14985         * FontDialog.cs:
14986           - Clear example panel when OnPaint is called
14987           - Better solution for displaying the example panel text
14988           - Select default indexes in the ListBoxes
14989
14990 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14991
14992         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
14993
14994 2005-05-11  Peter Bartok  <pbartok@novell.com>
14995
14996         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
14997         * SelectionRangeConverter.cs: Implemented
14998         * PropertyGrid.cs: Fixed attribute value
14999         * Control.cs:
15000           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
15001           - Added Sebastien Pouliot's CAS Stack Propagation fixes
15002         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
15003           that's common to all drivers. First methods to go there are
15004           Sebastien Pouliot's CAS Stack Propagation helper methods
15005         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
15006           Sebastien Pouliot for CAS Stack Propagation
15007
15008 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15009
15010         * OSXStructs.cs:
15011           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
15012
15013 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
15014
15015         * DataGridTextBoxColumn.cs: fixed some members
15016         * GridColumnStylesCollection.cs: indexed column is case insensitive
15017         * DataGridTableStyle.cs: fixes
15018         * ThemeWin32Classic.cs: add new theme parameter
15019         * Theme.cs: add new theme parameter
15020         * DataGridDrawingLogic.cs: Datagrid's drawing logic
15021         * DataGrid.cs: fixes, new internal properties, etc.
15022         * DataGridColumnStyle.cs: allows to set grid value
15023         *
15024
15025 2005-05-10  Peter Bartok  <pbartok@novell.com>
15026
15027         * AccessibleObject.cs:
15028           - Removed MonoTODO attribute on help, method is correct
15029           - Fixed Bounds property
15030         * AxHost.cs: Moved MonoTODO
15031         * ButtonBase.cs: Now setting AccessibleObject properties
15032         * RadioButton.cs: Setting proper AccessibleObject role
15033         * CheckBox.cs: Setting proper AccessibleObject role
15034         * ControlBindingsCollection.cs: Added properties, methods and attributes
15035         * DataFormats.cs: Fixed awkward internal API, and changed to enable
15036           userdefined DataFormats.Format items as well
15037         * ListControl.cs: Removed data_member from the public eye
15038         * OpenFileDialog.cs:
15039           - Made class sealed
15040           - Added missing attributes
15041         * SaveFileDialog.cs: Added missing attributes
15042         * ImageListStreamer.cs: Fixed code that caused warnings
15043         * LinkLabel.cs: Removed unreachable code
15044         * TreeView.cs: Fixed code that caused warnings
15045         * PropertyGridView.cs: Fixed code that caused warnings
15046         * GridColumnStylesCollection.cs: Added missing attributes
15047         * GridTableStylesCollection: Added missing attribute
15048         * PropertyManager: Added .ctor
15049         * SecurityIDType: Added
15050         * DataObject.cs: Implemented class
15051         * LinkArea.cs: Added missing attribute
15052
15053 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
15054
15055         * RadioButton.cs: call base method to allow to fire OnClick event
15056         * UpDownBase.cs: OnMouseUp call base method
15057         * CheckedListBox.cs: call base method before returning
15058         * TrackBar.cs: call base method before returning
15059         
15060
15061 2005-05-10  Peter Bartok  <pbartok@novell.com>
15062
15063         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
15064           for messages
15065
15066 2005-05-10  Peter Bartok  <pbartok@novell.com>
15067
15068         * DataFormats.cs: Implemented
15069         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
15070           XplatUIX11.cs: Added Clipboard APIs
15071         * XplatUIWin32.cs: Implemented Clipboard APIs
15072         * FolderBrowserDialog.cs: Added missing event, attributes
15073
15074 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
15075
15076         * CheckBox.cs: call base method to allow to fire OnClick event
15077
15078 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
15079
15080         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
15081
15082 2005-05-06  Peter Bartok  <pbartok@novell.com>
15083
15084         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
15085         * Screen.cs: Implemented
15086         * HelpNavigator.cs: Added
15087         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
15088           property
15089         * HelpProvider.cs: Implemented all we can do until we have a CHM
15090           help library (which means that "What's This" does work now)
15091
15092 2005-05-06  Jackson Harper  <jackson@ximian.com>
15093
15094         * XplatUIX11.cs: Fix waking up the main loop.
15095                 
15096 2005-05-05  Peter Bartok  <pbartok@novell.com>
15097
15098         * XplatUI.cs: Updated revision
15099         * Form.cs: Removed enless loop
15100         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
15101         * Label.cs (OnPaint): Added call to base.OnPaint()
15102         * ToolTip.cs: Made ToolTipWindow reusable for other controls
15103         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
15104         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
15105         * AxHost.cs: Added
15106         * ButtonBase.cs: Moved base.OnPaint() call to end of method
15107         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
15108           to ToolTip.ToolTipWindow for drawing and size methods; this allows
15109           reuse of ToolTipWindow by other controls
15110         * SizeGrip.cs: Moved base.OnPaint() call to end of method
15111         * XplatUIX11.cs: Now clipping drawing area (experimental)
15112         * PictureBox.cs: Moved base.OnPaint() call to end of method
15113         * Theme.cs: Fixed ToolTip abstracts to match new format
15114         * ErrorProvider.cs: Implemented
15115
15116 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
15117
15118         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
15119         * LinkLabel.cs:
15120                 - Adds cursors
15121                 - Handles focus
15122                 - Implements LinkBehavior
15123                 - Fixes many issues
15124
15125 2005-05-03  Jackson Harper  <jackson@ximian.com>
15126
15127         * ListView.cs: Calculate the scrollbar positioning on resize and
15128         paint, so they get put in the correct place.
15129
15130 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15131
15132         * ColorDialogs.cs: The small color panels are now handled by
15133           SmallColorControl. This fixes drawing of the focus rectangle
15134           and adds a 3D border.
15135
15136 2005-05-03  Peter Bartok  <pbartok@novell.com>
15137
15138         * Control.cs: Modified version of Jonathan Chamber's fix for
15139           double-buffering
15140
15141 2005-05-03  Jackson Harper  <jackson@ximian.com>
15142
15143         * ListView.cs: Remove redraw variable. Control now handles whether
15144         or not a redraw needs to be done, and will only raise the paint
15145         event if redrawing is needed.
15146
15147 2005-05-03  Jackson Harper  <jackson@ximian.com>
15148
15149         * Splitter.cs: No decorations for the splitter form. Cache the
15150         hatch brush.
15151
15152 2005-05-03  Jackson Harper  <jackson@ximian.com>
15153
15154         * TreeView.cs: Use dashed lines to connect nodes. Use the
15155         ControlPaint method for drawing the focus rect instead of doing
15156         that in treeview.
15157
15158 2005-05-02  Peter Bartok  <pbartok@novell.com>
15159
15160         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
15161
15162 2005-04-29  Jackson Harper  <jackson@ximian.com>
15163
15164         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
15165         entire image buffer. Just clear the clipping rectangle.
15166
15167 2005-04-29  Jackson Harper  <jackson@ximian.com>
15168
15169         * ThemeWin32Classic.cs: Don't draw list view items that are
15170         outside the clipping rectangle.
15171
15172 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
15173
15174         * ListBox.cs: added horizontal item scroll
15175
15176 2005-04-29  Jackson Harper  <jackson@ximian.com>
15177
15178         * ThemeWin32Classic.cs: Remove some old debug code that was
15179         causing flicker with the new double buffering code.
15180
15181 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
15182
15183         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
15184         behave like combobox and comboboxlist (still not sure if this is
15185         correct though).
15186
15187 2005-04-28  Jackson Harper  <jackson@ximian.com>
15188
15189         * ThemeWin32Classic.cs: Don't fill the middle of progress
15190         bars. This fills areas outside of the clip bounds that don't need
15191         to be filled.
15192
15193 2005-04-28  Jackson Harper  <jackson@ximian.com>
15194
15195         * Control.cs: Don't expose functionality to touch the image buffers.
15196         * ProgressBar.cs:
15197         * ListView.cs: We do not need to (and no longer can) manipulate
15198         the image buffers directly. All of this is handled by Control.
15199
15200 2005-04-28  Peter Bartok  <pbartok@novell.com>
15201
15202         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15203           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
15204           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
15205
15206 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15207
15208         * Combobox:
15209                 - Adjust control's height for non-simple comboboxes (bug fix)
15210                 - Remove dead code
15211         * MenuAPI.cs: remove unused var
15212         * ScrollBar.cs: remove unsed var
15213                  
15214         * ListBox.cs: unselect items when clearing
15215
15216 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15217
15218         * ListControl.cs: honors OnPositionChanged and default Selected Item
15219         * ListBox.cs: unselect items when clearing
15220
15221 2005-04-27  Jackson Harper  <jackson@ximian.com>
15222
15223         * X11Keyboard.cs: Initialize a default keyboard and give a warning
15224         if a "correct" keyboard is not found. This will make us not crash,
15225         but might give some users bad keyboard layouts...seems to be the
15226         same thing rewind does.
15227
15228 2005-04-27  Jackson Harper  <jackson@ximian.com>
15229
15230         * BindingManagerBase.cs: Attach the current/position changed
15231         handlers to their respective events.
15232
15233 2005-04-27  Jackson Harper  <jackson@ximian.com>
15234
15235         * Control.cs: Make sure that the first WM_PAINT does a full draw,
15236         not just a blit.
15237         * ThemeWin32Classic.cs: Don't fill the background for picture
15238         boxes. This could overright user drawing.
15239         * ComboBox.cs: Just fill the clipping rect not the entire client
15240         rect when drawing the background. This prevents pieces of the
15241         image buffer from getting overwritten and is theoretically faster.
15242
15243 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
15244
15245         * ComboBox.cs: Databinding support fixes, fire missing events
15246         * ListControl.cs: implement missing methods and properties, fixes
15247         * ThemeWin32Classic.cs: Databiding support on Drawing
15248         * CheckedListBox.cs: Databinding support fixes, fire missing events
15249         * ListBox.cs: Databinding support fixes, fire missing events
15250         
15251 2005-04-25  Peter Bartok  <pbartok@novell.com>
15252
15253         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
15254
15255 2005-04-25  Jackson Harper  <jackson@ximian.com>
15256
15257         * TreeView.cs: Use the horizontal scrollbars height not width when
15258         determining how much of the client area is available.
15259
15260 2005-04-25  Jackson Harper  <jackson@ximian.com>
15261
15262         * Control.cs: Double buffering is handled differently now. As per
15263         the spec, the extra buffer is created in the WM_PAINT message and
15264         passed down to the control's drawing code.
15265         * GroupBox.cs:
15266         * Label.cs:
15267         * CheckBox.cs:
15268         * ProgressBar.cs:
15269         * RadioButton.cs:
15270         * ColorDialog.cs:
15271         * ComboBox.cs:
15272         * PropertyGridView.cs:
15273         * UpDownBase.cs:
15274         * MessageBox.cs:
15275         * MenuAPI.cs:
15276         * ListView.cs:
15277         * ButtonBase.cs:
15278         * SizeGrip.cs:
15279         * ScrollBar.cs:
15280         * ListBox.cs:
15281         * TrackBar.cs:
15282         * ToolBar.cs:
15283         * PictureBox.cs:
15284         * DateTimePicker.cs:
15285         * StatusBar.cs:
15286         * TreeView.cs: Update to new double buffering system.
15287         * MonthCalendar.cs: Uncomment block, as Capture is now
15288         working. Update to new double buffering
15289         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
15290         * PaintEventArgs.cs: New internal method allows us to set the
15291         graphics object. This is used for double buffering.
15292         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
15293         rectangle. The internal paint_area var has been removed from
15294         StatusBar. The clipping rect should be used instead.
15295         * Theme.cs: Give the PictureBox drawing method a clipping rect.
15296         * TabPage.cs: The RefreshTabs method was removed, so just call the
15297         tab controls Refresh method now.
15298         * TabControl.cs: Update to new double buffering. Make sure the
15299         handle is created before sizing the tab pages, otherwise we will
15300         get stuck in a loop.
15301
15302 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
15303
15304         * LinkLabel.cs: Fix typo, bug #74719; patch
15305           from Borja Sanchez Zamorano
15306
15307 2005-04-22  Jackson Harper  <jackson@ximian.com>
15308
15309         * TreeNode.cs: Implement Handle stuff.
15310         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
15311
15312 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
15313
15314         * DataGridTextBoxColumn.cs: call base constructors, fixes
15315         * GridColumnStylesCollection.cs: missing events, methods, and functionality
15316         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
15317         * DataGridTableStyle.cs: implements create default column styles
15318         * DataGridBoolColumn.cs: which types can handle
15319         * DataGrid.cs: missing methods, fixes, new functionality
15320         * DataGridColumnStyle.cs: fixes
15321
15322 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
15323         * FolderBrowserDialog.cs:
15324         - Use a thread to fill the TreeView
15325         - Adjusted some sizes
15326
15327 2005-04-19  Peter Bartok  <pbartok@novell.com>
15328
15329         * LinkLabel.cs: (Re-)create the pieces when setting the Text
15330           property. Fixes #74360.
15331
15332 2005-04-19  Jackson Harper  <jackson@ximian.com>
15333
15334         * XEventQueue.cs: Lock when getting the lockqueue size.
15335         * PictureBox.cs: Call base OnPaint
15336         
15337 2005-04-19  Peter Bartok  <pbartok@novell.com>
15338
15339         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
15340           messages were no longer being processed (this broke BeginInvoke)
15341
15342           
15343 2005-04-18  Jackson Harper  <jackson@ximian.com>
15344
15345         * TreeView.cs: buglet that caused node images to get drawn
15346         regardless of whether or not they were in the clipping rectangle.
15347
15348 2005-04-18  Jackson Harper  <jackson@ximian.com>
15349
15350         * CurrencyManager.cs: There are four rules for GetItemProperties:
15351         - If the type is an array use the element type of the array
15352         - If the type is a typed list, use the type
15353         - If the list contains an Item property that is not an object, use
15354         that property
15355         - use the first element of the list if there are any elements in
15356         the list.
15357         
15358 2005-04-17  Jackson Harper  <jackson@ximian.oom>
15359
15360         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
15361         click. This handles offsets for scrolling properly and reduces
15362         memory. Also fixed GetNode to not offset now that TopNode works
15363         properly.
15364         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
15365         
15366 2005-04-17  Jackson Harper  <jackson@ximian.com>
15367
15368         * CursorConverter.cs: Initial implementation.
15369
15370 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15371
15372         * ListControl.cs: work towards complex data binding support on ListControl
15373         * CurrencyManager.cs: work towards complex data binding support on ListControl
15374         * ListBox.cs: work towards complex data binding support on ListControl
15375
15376
15377 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15378
15379         * GridTableStylesCollection.cs: fixes name and constructor
15380         * DataGridTableStyle.cs: fixes
15381         * DataGridBoolColumn.cs: fixes names and constructors
15382         * DataGrid.cs: define methods and properties. Some init implementations
15383         * DataGridCell.cs: define methods and properties. Some init implementations
15384         * GridTablesFactory.cs: Define methods and properties
15385
15386 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
15387
15388         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
15389         graphics port changes.  We still want the coordinates in global screen
15390         coordinates.
15391
15392 2005-04-14  Jackson Harper  <jackson@ximian.com>
15393
15394         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
15395         check plus minus or checkbox clicks unless those features are enabled.
15396
15397 2005-04-14  Jackson Harper  <jackson@ximian.com>
15398
15399         * TreeView.cs: Add methods for setting the top and bottom visible
15400         nodes. TreeNode::EnsureVisible uses these methods.
15401         * TreeNode.cs: Implement EnsureVisible
15402
15403 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
15404
15405         * Form.cs: Pospone menu assignation if the window has not been created yet
15406         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
15407         size and position
15408
15409 2005-04-12  Jackson Harper  <jackson@ximian.com>
15410
15411         * TreeView.cs: Set the TopNode properly when scrolling
15412         occurs. This has the added benifit of reducing the amount of
15413         walking that needs to be done when drawing. Also removed an old
15414         misleading TODO.
15415         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
15416         
15417 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
15418
15419         * Timer.cs: fixes interval setting when the timer is already enabled
15420         
15421 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
15422
15423         * FolderBrowserDialog.cs: First approach
15424
15425 2005-04-09  Peter Bartok  <pbartok@novell.com>
15426
15427         * FolderBrowserDialog: Added
15428
15429 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
15430
15431         * LinkLabel.cs: move drawing code into the theme
15432         * ThemeWin32Classic.cs: drawing code and painting background bugfix
15433         * Theme.cs: define DrawLinkLabel method
15434
15435 2005-04-05  Jackson Harper  <jackson@ximian.com>
15436
15437         * BindingContext.cs: Use weak references so these bad actors don't
15438         stay alive longer then they need to.
15439
15440 2005-04-05  Jackson Harper  <jackson@ximian.com>
15441
15442         * ListControl.cs: Basic implementation of complex databinding.
15443         * ComboBox.cs:
15444         * ListBox.cs: Add calls to ListControl databinding methods.
15445
15446 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
15447
15448         * FileDialog.cs:
15449           - Don't change PopupButtonState to Normal when the
15450             PopupButton gets pressed several times.
15451           - Renamed ButtonPanel to PopupButtonPanel
15452
15453 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
15454
15455         * ColorDialog.cs: Use cached objects instead of creating them
15456         * LinkLabel.cs: Use cached objects instead of creating them
15457         * Splitter.cs: Use cached objects instead of creating them
15458         * FontDialog.cs: Use cached objects instead of creating them
15459         * PropertyGridView.cs: Use cached objects instead of creating them
15460         * MessageBox.cs: Use cached objects instead of creating them
15461         * FileDialog.cs: Use cached objects instead of creating them
15462         * ThemeWin32Classic.cs: Use cached objects instead of creating them
15463         * TreeView.cs: Use cached objects instead of creating them
15464         
15465 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
15466
15467         * Control.cs: use Equals to compare the font since no == op
15468         * ScrollBar.cs: use Equals to compare the font since no == op
15469
15470 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
15471
15472         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
15473
15474 2005-04-01  Jackson Harper  <jackson@ximian.com>
15475
15476         * Binding.cs: Implement IsBinding.
15477         * BindingManagerBase.cs:
15478         * PropertyManager.cs:
15479         * CurrencyManager.cs: Add IsSuspended property.
15480
15481 2005-04-01  Jackson Harper  <jackson@ximian.com>
15482
15483         * Binding.cs: Had some IsAssignableFrom calls backwards.
15484
15485 2005-04-01  Jackson Harper  <jackson@ximian.com>
15486
15487         * Binding.cs: Handle null data members when pulling data.
15488         * PropertyManager.cs: Handle the data member being a property that
15489         does not exist.
15490
15491 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15492
15493         * DataGridTextBoxColumn.cs: fixes signature
15494         * DataGrid.cs: calls right constructor
15495
15496 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15497
15498         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
15499         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
15500         * GridTableStylesCollection.cs: implements GridTableStylesCollection
15501         * DataGridTableStyle.cs: implements DataGridTableStyle
15502         * DataGridBoolColumn.cs: implements DataGridBoolColumn
15503         * DataGridTextBox.cs: implements DataGridTextBox
15504         * DataGridColumnStyle.cs: implements DataGridColumnStyle
15505
15506 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
15507
15508         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
15509
15510 2005-03-29  Peter Bartok  <pbartok@novell.com>
15511
15512         * Application.cs:
15513           - Properly implemented CompanyName property
15514           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
15515             returns a path that includes CompanyName, ProductName and
15516             Version (fixes bug #70330)
15517
15518 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
15519
15520         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
15521           fixes bug #72588.
15522
15523 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15524
15525         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
15526         
15527           - Added ReadOnly CheckBox
15528           - Further refactoring: moved some code from Open-/SaveFileDialog
15529             to FileDialog
15530
15531 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15532
15533         * OpenFileDialog.cs: Fixed CheckFileExists
15534         * FileDialog.cs:
15535           Moved FileView and DirComboBox outside FileDialog class.
15536           They can now be used outside FileDialog
15537
15538 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15539
15540         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
15541         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
15542
15543 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15544
15545         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15546           - Added missing CreatePrompt property in SaveDialog
15547           - Overall SaveDialog handling should be better now
15548           - Added non standard ShowHiddenFiles property
15549           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
15550           - Added InitialDirectory and RestoreDirectory support
15551
15552 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
15553
15554         * FileDialog.cs: Made dirComboBox usable
15555
15556 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
15557
15558         * FileDialog.cs: Added Filter support (case sensitiv)
15559
15560 2005-03-24  Jackson Harper  <jackson@ximian.com>
15561
15562         * TabControl.cs: Need a couple more pixels for the lines.
15563
15564 2005-03-23  Jackson Harper  <jackson@ximian.com>
15565
15566         * TabControl.cs: Give the tab page focus when it is selected.
15567
15568 2005-03-23  Jackson Harper  <jackson@ximian.com>
15569
15570         * TabControl.cs: Account for the drawing of tabs borders when
15571         invalidating. If the slider was clicked dont do click detection on
15572         the tabs.
15573
15574 2005-03-23  Jackson Harper  <jackson@ximian.com>
15575
15576         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
15577
15578 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
15579
15580         * CategoryGridEntry.cs: Added
15581         * GridItem.cs: Added helper properties
15582         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
15583         * GridEntry.cs: Updated code for collection
15584         * PropertyGrid.cs: Cleaned up some formatting
15585         * PropertyGridView.cs: Added drop down functionality for enums.
15586         * GridItemCollection.cs: Added enumerator logic
15587         * PropertyGridEntry.cs: Added
15588
15589 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15590
15591         * FileDialog.cs:
15592           - Removed unnecessary commented code
15593           - Fixed handling for entering the filename manually in the combobox
15594
15595 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15596
15597         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
15598
15599 2005-03-18  Peter Bartok  <pbartok@novell.com>
15600
15601         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
15602           them being touching the border
15603
15604 2005-03-18  Peter Bartok  <pbartok@novell.com>
15605
15606         * TextControl.cs: Quick hack to center text better
15607
15608 2005-03-18  Peter Bartok  <pbartok@novell.com>
15609
15610         * ControlPaint.cs:
15611           - Don't throw NotImplemented exceptions, just print a notice once
15612             instead (requested by Miguel). This makes running existing SWF
15613             apps a bit easier
15614         * Control.cs:
15615           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
15616           - Added context menu trigger on right click
15617         * Panel.cs: Trigger invalidate on resize
15618         * StatusBar.cs:
15619           - Removed old double-buffer drawing
15620           - Added ResizeRedraw style to force proper update of statusbar
15621         * ListView.cs:
15622           - Removed debug output
15623         * ThemeWin32Classic.cs:
15624           - Fixed drawing of status bar, now draws Text property if there
15625             are no defined panels
15626
15627 2005-03-18  Jackson Harper  <jackson@ximian.com>
15628
15629         * ImageList.cs: When the image stream is set pull all the images
15630         from it.
15631         * ImageListStreamer.cs: Implement reading image list streams.
15632
15633 2005-03-18  Peter Bartok  <pbartok@novell.com>
15634
15635         * ThemeWin32Classic.cs (DrawPictureBox):
15636           - Fixed calculations for centered drawing
15637           - Fixed drawing for normal mode, not scaling the image on normal
15638
15639 2005-03-18  Peter Bartok  <pbartok@novell.com>
15640
15641         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
15642           textbox
15643         * FileDialog.cs:
15644           - Made Open/Save button the accept button for FileDialog
15645           - Tied the cancel button to the IButtonControl cancel button
15646           - Save/Open now properly builds the pathname
15647           - Now handles user-entered text
15648           - Preventing crash on right-click if no item is selected
15649           - Fixed Text property, now uses contents of textbox
15650           - Fixed SelectedText property, now just returns the text part that
15651             is selected in the text box
15652
15653 2005-03-18  Jackson Harper  <jackson@ximian.com>
15654
15655         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
15656         rect, make sure to de-adjust the interior rect after drawing the
15657         tab text.
15658
15659 2005-03-18  Peter Bartok  <pbartok@novell.com>
15660
15661         * MenuAPI.cs: Remove menu *before* executing selected action to
15662           prevent the menu from 'hanging around'
15663           
15664 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
15665
15666         * XplatUIOSX.cs: Implemented WorkingArea property
15667
15668 2005-03-17  Peter Bartok  <pbartok@novell.com>
15669
15670         * XplatUIX11.cs: Fixed menu coord calculations
15671         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
15672           for calculating offsets
15673
15674 2005-03-17  Peter Bartok  <pbartok@novell.com>
15675
15676         * Hwnd.cs: Do not consider menu presence for default client
15677           rectangle location/size
15678         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
15679           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
15680           translation functions
15681         * FileDialog.cs: Fixed (what I presume is a) typo
15682
15683 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
15684
15685         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
15686           X access (avoids X-Async errors)
15687
15688 2005-03-16  Jackson Harper  <jackson@ximian.com>
15689
15690         * TabControl.cs: Raise the SelectedIndexChanged event.
15691
15692 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
15693
15694         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15695           - Removed vertical ToolBar and replaced it with a custom panel
15696             (desktop and home button already work)
15697           - Added Help button (some controls get resized or relocated then)
15698           - Draw correct text depending on Open or Save.
15699           - Fixed some typos...
15700
15701 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
15702
15703         * ScrollBar.cs:
15704           - Only change Maximum and Minimum when need it (bug fix)
15705
15706 2005-03-15  Peter Bartok  <pbartok@novell.com>
15707
15708         * Form.cs: Use Handle for icon, to trigger creation if
15709           the window does not yet exist
15710         * Control.cs:
15711           - CanSelect: Slight performance improvement
15712           - Focus(): Preventing possible recursion
15713           - Invalidate(): Removed ControlStyle based clear flag setting
15714           - WM_PAINT: fixed logic for calling OnPaintBackground
15715           - WM_ERASEBKGND: Fixed logic, added call to new driver method
15716             EraseWindowBackground if the control doesn't paint background
15717         * XplatUIWin32.cs:
15718           - Moved EraseWindowBackground() method to internal methods
15719           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
15720             is sent via SendMessage on BeginPaint call on Win32
15721         * XplatUIX11.cs:
15722           - Added EraseWindowBackground() method
15723           - No longer sends WM_ERASEBKGND on .Expose, but on call to
15724             PaintEventStart, which more closely matches Win32 behaviour
15725           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
15726           - Fixed SetFocus() to properly deal with client and whole windows
15727         * Hwnd.cs: Added ErasePending property
15728         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
15729         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
15730
15731 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
15732
15733         * XplatUIOSX.cs:
15734           - Fix hard loop when timers exist.
15735           - Fix bugs with middle and right click for 3 button mice.
15736
15737 2005-03-11  Peter Bartok  <pbartok@novell.com>
15738
15739         * XplatUIX11.cs:
15740           - get_WorkingArea: Need to call X directly, GetWindowPos only
15741             returns cached data now
15742           - Added sanity check to GetWindowPos hwnd usage
15743
15744 2005-03-11  Jackson Harper  <jackson@ximian.com>
15745
15746         * BindingManagerBase.cs: This method isn't used anymore as
15747         PullData now updates the data in the control.
15748
15749 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
15750
15751         * Form.cs: fixes menu drawing on X11
15752         * MenuAPI.cs:  fixes menu drawing on X11
15753
15754 2005-03-11  Peter Bartok  <pbartok@novell.com>
15755
15756         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
15757           from Jonathan Gilbert; should fix bug #73606
15758         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
15759           in Screen coordinates. Thanks, Jordi.
15760         * Form.cs: Added missing attribute
15761
15762 2005-03-11  Peter Bartok  <pbartok@novell.com>
15763
15764         * Form.cs:
15765           - Rudimentary Mdi support
15766           - Removed outdated FormParent code
15767           - Implemented lots of missing properties and methods, still missing
15768             transparency support
15769           - Added missing attributes
15770           - Implemented support for MaximumBounds
15771           - Added firing of various events
15772         * XplatUI.cs: Added SetIcon() method
15773         * XplatUIDriver.cs: Added SetIcon() abstract
15774         * XplatUIOSX.cs: Stubbed out SetIcon() method
15775         * XplatUIX11.cs:
15776           - Implemented SetIcon() support
15777           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
15778           - Switched to unix line endings
15779         * XplatUIWin32.cs:
15780           - Made POINT internal so for can access it as part of MINMAX
15781           - Implemented SetIcon() support
15782           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
15783             native Mdi support again, might have to go managed)
15784         * Control.cs: Now fires the StyleChanged event
15785         * MdiClient.cs: Added; still mostly empty
15786
15787 2005-03-10  Peter Bartok  <pbartok@novell.com>
15788
15789         * SaveFileDialog.cs: Added emtpy file
15790
15791 2005-03-08  Peter Bartok  <pbartok@novell.com>
15792
15793         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
15794           in turn triggers OnCreateContro) when creating a handle for the
15795           first time.
15796         * TextControl.cs: Fixed endless loop in certain cases when
15797           replacing the current selection
15798
15799 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
15800
15801         * ScrollBar.cs:
15802           - Honors NewValue changes in Scroll events allowing apps to change it
15803           - Adds First and Last Scroll events
15804           - Fixes Thumb events
15805
15806 2005-03-07  Peter Bartok  <pbartok@novell.com>
15807
15808         * Hwnd.cs: Added DefaultClientRectangle property
15809         * XplatUI.cs: Now using the X11 driver Where() method, which provides
15810           more detailed debug information
15811         * XplatUIX11.cs:
15812           - Fixed size-change feedback loop, where we would pull an old size
15813             off the queue and mistakenly change our window's size to an
15814             earlier value
15815           - Now compressing ConfigureNotify events, to reduce looping and
15816             redraw issues
15817         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
15818           is called
15819
15820 2005-03-07  Jackson Harper  <jackson@ximian.com>
15821
15822         * Binding.cs: Push data pushes from data -> property. Check if the
15823         property is readonly when attempting to set it.
15824
15825 2005-03-07  Jackson Harper  <jackson@ximian.com>
15826
15827         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
15828         instead of IsSubclassOf. Pulling data now sets the value on the
15829         control.
15830         * PropertyManager.cs:
15831         * CurrencyManager.cs: Just need to pull data when updating now,
15832         because PullData will set the value on the control.
15833
15834 2005-03-04  Jackson Harper  <jackson@ximian.com>
15835
15836         * Binding.cs: Implement data type parsing and converting on pulled
15837         data. TODO: Are there more ways the data can be converted?
15838
15839 2005-03-04  Jackson Harper  <jackson@ximian.com>
15840
15841         * Binding.cs: Support <Property>IsNull checks. Also bind to the
15842         controls Validating method so we can repull the data when the
15843         control loses focus.
15844
15845 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
15846
15847         * ColumnHeader.cs:
15848           - Fixes null string format
15849           
15850         * ListView.cs:
15851           - Adds enum type checks
15852           - Fixes redrawing and recalc need after changing some properties
15853           - Fixes on focus_item set after the event
15854           - Fixes adding columns after the control has been created
15855           
15856         * ThemeWin32Classic.cs:
15857           - Fixes CheckBox focus rectangle
15858           - Fixes ColumnHeader drawing
15859
15860
15861 2005-03-03  Jackson Harper  <jackson@ximian.com>
15862
15863         * Binding.cs: Bind to <Property>Changed events so we can detect
15864         when properties are changed and update the data.
15865
15866 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
15867
15868         * ImageList.cs:
15869           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
15870           - Fixes ImageList constructor with ImageList container
15871           - Fixes image scaling (wrong parameters at DrawImage)
15872
15873 2005-02-02  Jackson Harper  <jackson@ximian.com>
15874
15875         * Binding.cs: Make property searches case-insensitive. Eliminate
15876         some duplicated code.
15877
15878 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
15879
15880         * ComboBox.cs:
15881                 - Handle focus event
15882                 - Fix scrollbar events
15883                 - Discard highlighted item if remove it
15884                 - Fixes SelectedItem with strings
15885
15886 2005-03-01  Peter Bartok  <pbartok@novell.com>
15887
15888         * Control.cs:
15889           - Fixed Visible property, now follows (once again) parent chain
15890             to return false if any control in the chain is visible=false
15891           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
15892           - Fixed several places where is_visible instead of Visible was used
15893           - Implemented FIXME related to focus selection when setting focused
15894             control to be invisible
15895
15896         * XplatUIWin32.cs: Now using proper method to find out if window is
15897           visible. Thanks to Jordi for pointing it out
15898
15899 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
15900
15901         * ComboBox.cs: show/hide scrollbar instead of creating it
15902
15903 2005-02-27  Jackson Harper  <jackson@ximian.com>
15904
15905         * CurrencyManager.cs: Add PositionChanged stuff.
15906
15907 2005-02-27  Peter Bartok  <pbartok@novell.com>
15908
15909         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
15910         * XplatUIOSX.cs: Added GetMenuOrigin() stub
15911         * XplatUIWin32.cs: Implemented GetMenuOrigin()
15912         * XplatUIX11.cs:
15913           - Implemented GetMenuDC()
15914           - Implemented GetMenuOrigin()
15915           - Implemented ReleaseMenuDC()
15916           - Implemented generation of WM_NCPAINT message
15917           - Implemented generation and handling of WM_NCCALCSIZE message
15918         * Form.cs: Added debug helper message for Jordi's menu work
15919         * Hwnd.cs:
15920           - Modified ClientRect property; added setter, fixed getter to handle
15921             setting of ClientRect
15922           - Added MenuOrigin property
15923
15924 2005-02-26  Peter Bartok  <pbartok@novell.com>
15925
15926         * XplatUIX11.cs:
15927           - Destroys the caret if a window that's being destroyed contains it
15928           - Ignores expose events coming from the X11 queue for windows that
15929             already are destroyed
15930           - Now uses the proper variable for handling DestroyNotify, before we
15931             marked the wrong window as destroyed
15932           - Improved/added some debug output
15933
15934 2005-02-26  Peter Bartok  <pbartok@novell.com>
15935
15936         * X11Keyboard.cs: Fixes to work on 64bit systems
15937
15938 2005-02-26  Peter Bartok  <pbartok@novell.com>
15939
15940         * Control.cs:
15941           - Now calling OnHandleDestroyed from DestroyHandle()
15942             instead of Dispose()
15943           - Removed bogus call to controls.Remove() from DestroyHandle()
15944
15945 2005-02-26  Peter Bartok  <pbartok@novell.com>
15946
15947         * Control.cs: Properly destroy child windows when our handle is
15948           destroyed
15949
15950 2005-02-25  Peter Bartok  <pbartok@novell.com>
15951
15952         * XplatUI.cs:
15953           - Added 'DriverDebug' define to allow tracing XplatUI API calls
15954           - Alphabetized Static Methods and Subclasses
15955
15956         * XplatUIX11.cs:
15957           - Added XException class to allow custom handling of X11 exceptions
15958           - Created custom X11 error handler, tied into XException class
15959           - Added support for MONO_XEXCEPTIONS env var to allow the user
15960             to either throw an exception on X errors or continue running
15961             after displaying the error
15962           - Added handling of DestroyNotify message
15963           - Added handler for CreateNotify message (still disabled)
15964           - Improved (tried to at least) Where method to provide file and lineno
15965         * X11Structs.cs:
15966           - Added XErrorHandler delegate
15967           - Added XRequest enumeration (to suppor translation of errors)
15968
15969 2005-02-25  Jackson Harper  <jackson@ximian.com>
15970
15971         * PropertyManager.cs: Implement editing features
15972         * CurrencyManager.cs:
15973         * Binding.cs: First attempt at UpdateIsBinding
15974         * BindingManagerBase.cs: Call UpdateIsBinding before
15975         pushing/pulling data.
15976
15977 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
15978
15979         * MenuAPI.cs: Respect disabled items
15980         * ThemeWin32Classic.cs
15981                 - Caches ImageAttributes creation for DrawImageDisabled
15982                 - Fixes vertical menu line drawing
15983                 - Draws disabled arrows in disable menu items
15984
15985 2005-02-24  Peter Bartok  <pbartok@novell.com>
15986
15987         * Hwnd.cs:
15988           - Added UserData property to allow associating arbitrary objects
15989             with the handle
15990           - Fixed leak; now removing Hwnd references from static windows array
15991         * XplatUIWin32.cs:
15992           - Fixed Graphics leak in PaintEventEnd
15993           - Removed usage of HandleData, switched over to Hwnd class
15994         * HandleData.cs: Removed, obsoleted by Hwnd.cs
15995
15996 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15997
15998         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
15999         * ScrollBar.cs: Fixes bug
16000         * TrackBar.cs: removes death code, clipping, mimize refreshes,
16001          keyboard navigation enhancements
16002
16003 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16004
16005         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
16006         * GroupBox.cs: Add control styles
16007         * Label.cs: Add control styles
16008         * UpDownBase.cs: Add control styles
16009         * ListBox.cs: Add control styles
16010         * XplatUIWin32.cs: Fixes wrong parameter order
16011
16012
16013 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
16014
16015         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
16016
16017 2005-02-23  Jackson Harper  <jackson@ximian.com>
16018
16019         * PropertyManager.cs: Implement property binding. This doesn't
16020         seem to work yet though as (I think) there are some bugs in
16021         System.ComponentModel.PropertyDescriptor.
16022         * BindingContext.cs: Use new PropertyManager constructor.
16023
16024 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
16025
16026         * ProgressBar.cs: use clip region in ProgressBar
16027         * ThemeWin32Classic.cs: use clip region in ProgressBar
16028
16029 2004-02-22  Jackson Harper  <jackson@ximian.com>
16030
16031         * BindingsCollection.cs: Remove some debug code.
16032
16033 2005-02-22  Jackson Harper  <jackson@ximian.com>
16034
16035         * BindingContext.cs:
16036         * ControlBindingsCollection.cs:
16037         * CurrencyManager.cs:
16038         * Binding.cs:
16039         * BindingManagerBase.cs: Initial implementation
16040         * BindingsCollection.cs: Add an internal contains method that the
16041         BindingManagerBase uses to ensure bindings aren't added twice to
16042         the collection.
16043         * PropertyManager.cs: Stubbed out.
16044         * Control.cs:
16045         * ContainerControl.cs: Hook up databinding
16046         
16047 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
16048
16049         * XplatUIOSX.cs:
16050           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
16051           Fixed Invalidate/Update chain.
16052           Fixed tons of other minor bugs (this is almost a complete rewrite).
16053
16054 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
16055
16056         * ComboBox.cs: do subcontrol creation when the control is created
16057
16058 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16059
16060         * Label.cs: fixes image drawing (image and imagelist)
16061         * ThemeWin32Classic.cs: cache brushes
16062         
16063 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16064
16065         * Form.cs: Move menu drawing code to Theme class
16066         * ComboBox.cs: Move ComboBox drawing code to Theme class
16067         * MenuItem.cs: Move menu drawing code to Theme class
16068         * MenuAPI.cs: Move menu drawing code to Theme class
16069         * ThemeWin32Classic.cs: New methods
16070         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
16071         * ListBox.cs: Move Listbox drawing code to Theme class
16072         * Theme.cs: New methods
16073
16074 2005-02-20  Peter Bartok  <pbartok@novell.com>
16075
16076         * Control.cs:
16077           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
16078             only process mnemonics on those)
16079           - Fixed event sequence for key handling; first calling
16080             ProcessKeyEventArgs now
16081         * TextBoxBase.cs:
16082           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
16083             for processing non-character keys
16084           - Fixed WM_CHAR to generate proper event sequence before processing
16085         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
16086           generation
16087
16088 2005-02-19  Peter Bartok  <pbartok@novell.com>
16089
16090         * UserControl.cs: Added TextChanged event; added attributes
16091         * SizeGrip.cs: Implemented resizing and optional display of grip
16092         * Form.cs: Fixed attribute
16093         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16094           Changed meaning of ScrollWindow bool argument; instead of the
16095           clear attribute (which will be true usually anyway), it gives the
16096           option of moving child controls as well.
16097         * XplatUIX11.cs:
16098           - Changed to match new ScrollWindow argument
16099           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
16100             now handles the implicit parent window a WM puts around us
16101         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
16102           to work)
16103         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
16104         * TreeView.cs: Adjusted to new ScrollWindow arguments
16105
16106 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16107
16108         * Form.cs: Menu integration with non-client area
16109         * MenuItem.cs: Menu integration with non-client area
16110         * MenuAPI.cs: Menu integration with non-client area
16111
16112 2005-02-18  Peter Bartok  <pbartok@novell.com>
16113
16114         * MethodInvoker.cs: Added
16115         * MdiLayout.cs: Added
16116         * SendKeys.cs: Started implementation
16117         * ErrorIconAlignment.cs: Added
16118
16119 2005-02-18  Peter Bartok  <pbartok@novell.com>
16120
16121         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
16122         * Form.cs: Added handling for Menu-related Non-client messages
16123
16124 2005-02-17  Peter Bartok  <pbartok@novell.com>
16125
16126         * UpDownBase.cs: Fixed typo, compilation errors
16127         * DomainUpDown.cs: Fixed attribute value
16128
16129 2005-02-16  Miguel de Icaza  <miguel@novell.com>
16130
16131         * UpDownBase.cs: Attach entry events.
16132         Propagate events.
16133         Add ForeColor property, Focused, InterceptArrowKeys (interception
16134         does not work yet).
16135
16136 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
16137
16138         * Form.cs:
16139                 - Redraw non client are on Setmenu
16140                 - Calc proper menu starting point
16141
16142 2005-02-17  Peter Bartok  <pbartok@novell.com>
16143
16144         * Application.cs: Fixed message_filter check
16145
16146 2005-02-17  Peter Bartok  <pbartok@novell.com>
16147
16148         * Application.cs: Now calls registered message filters
16149         * DockStyle.cs: Fixed attribute
16150         * Form.cs: Fixed attribute
16151         * Menu.cs: Fixed attribute
16152         * ToolTip.cs: Fixed attribute
16153         * TreeNode.cs: Added missing attributes and arranged in regions
16154         * PropertyGrid.cs: Fixed signatures
16155         * TreeNodeCollection.cs: Added attributes
16156         * Splitter.cs: Added missing attributes; arranged into regions
16157         * TabPage.cs: Added missing attributes; arranged into regions
16158         * TextBoxBase.cs: Added missing attributes
16159         * TextBox.cs: Added missing attributes
16160         * ArrangeDirection.cs: Added missing attributes
16161         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
16162         * ToolBarButton.cs: Fixed attributes
16163         * AnchorStyles.cs: Fixed attribute
16164         * TrackBar.cs: Fixed attributes
16165         * TabControl.cs: Added missing attributes and arranged into regions
16166         * ToolBar.cs: Fixed attribute
16167         * StatusBar.cs: Fixed signature, organized into regions and added
16168           attributes
16169         * StatusBarPanel.cs: Fixed attributes
16170         * ContentsResizedEventArgs.cs: Implemented
16171         * ContentsResizedEventHandler.cs: Implemented
16172         * DateBoldEventArgs.cs: Implemented
16173         * DateBoldEventHandler.cs: Implemented
16174         * UpDownEventArgs.cs: Implemented
16175         * UpDownEventHandler.cs: Implemented
16176         
16177 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
16178
16179         * Form.cs: first Menu NC refactoring
16180         * MenuAPI.cs: first Menu NC refactoring
16181         
16182 2005-02-16  Peter Bartok  <pbartok@novell.com>
16183
16184         * ImeMode.cs: Added missing attributes
16185         * Menu.cs: Fixed attribute
16186         * GroupBox.cs: Fixed attribute
16187         * Label.cs: Fixed attribute
16188         * ColorDialog.cs (RunDialog): Removed TODO attribute
16189         * ComboBox.cs: Fixed attributes
16190         * ListControl.cs: Added missing attributes
16191         * PropertyGrid.cs: Fixed attributes
16192         * Control.cs: Fixed attributes
16193         * ListViewItem.cs: Added TypeConverter attribute
16194         * NotifyIcon.cs: Fixed attributes
16195         * ListView.cs: Fixed attributes
16196         * ButtonBase.cs: Fixed attribute
16197         * ImageList.cs: Added missing attributes
16198         * ContainerControl.cs: Fixed signature
16199         * CheckedListBox.cs: Fixed attribute; added missing attributes
16200         * Panel.cs: Fixed attributes
16201         * PropertyTabChangedEventArgs.cs: Added missing attribute
16202         * PropertyValueChangedEventArgs.cs: Added missing attribute
16203         * Binding.cs: Fixed attribute
16204         * ListViewItemConverter: Implemented ListViewSubItemConverter class
16205         * ListBox.cs: Fixed attribute; added missing attributes;
16206         * ScrollableControl.cs: Added missing attributes
16207         * PictureBox.cs: Added missing attributes; implemented missing property
16208         * DateTimePicker.cs: Added missing attributes
16209         * Theme.cs (ToolWindowCaptionHeight): Fixed type
16210         * MonthCalendar.cs: Fixed attributes
16211         * StatusBarPanel.cs: Added missing attributes
16212         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
16213
16214 2005-02-16  Peter Bartok  <pbartok@novell.com>
16215
16216         * TextBoxBase.cs: The previous method to enforce height yet remember
16217           the requested high was less than ideal, this is an attempt to do
16218           it better.
16219         * Control.cs: Added comment about possible problem
16220         * Copyright: Updated format
16221         * GridItemType.cs: Fixed swapped values
16222
16223 2005-02-15  Jackson Harper  <jackson@ximian.com>
16224
16225         * BaseCollection.cs: Use property so we never access an
16226         uninitialized list. Also initialize the list in the property.
16227
16228 2005-02-15  Peter Bartok  <pbartok@novell.com>
16229
16230         * GroupBox.cs (ProcessMnemonic): Implemented
16231         * Label.cs (ProcessMnemonic): Implemented
16232         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
16233           hotkeys
16234
16235 2005-02-15  Peter Bartok  <pbartok@novell.com>
16236
16237         * RadioButton.cs (ProcessMnemonic): Implemented
16238         * CheckBox.cs (ProcessMnemonic): Implemented
16239         * Control.cs:
16240           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
16241             handling
16242           - Added internal method to allow calling ProcessMnemonic from other
16243             controls
16244         * ContainerControl.cs:
16245           - Started support for handling validation chain handling
16246           - Implemented ProcessMnemonic support
16247           - Added Select() call to Active, to make sure the active control
16248             receives focus
16249         * Form.cs: Setting toplevel flag for Forms (this was lost in the
16250           FormParent rewrite)
16251         * ThemeWin32Classic.cs:
16252           - DrawCheckBox(): Fixed stringformat to show hotkeys
16253           - DrawRadioButton(): Fixed stringformat to show hotkeys
16254         * CommonDialog.cs: Removed WndProc override, not needed
16255
16256 2005-02-14  Peter Bartok  <pbartok@novell.com>
16257
16258         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
16259           missed those in the rewrite
16260
16261 2005-02-14  Miguel de Icaza  <miguel@novell.com>
16262
16263         * NumericUpDown.cs (Increment, ToString): Add.
16264         (DecimalPlaces): implement.
16265         
16266         Add attributes.
16267         
16268         * UpDownBase.cs: Add the designer attributes.
16269
16270 2005-02-13  Peter Bartok  <pbartok@novell.com>
16271
16272         * Panel.cs: Removed border_style, now in Control
16273         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
16274           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
16275
16276 2005-02-13  Peter Bartok  <pbartok@novell.com>
16277
16278         * MouseButtons.cs: Added missing attributes
16279         * XplatUIStructs.cs: Added enumeration for title styles
16280         * LeftRightAlignment.cs: Added missing attributes
16281         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
16282           it compatible with Graphics.FromHwnd()
16283         * SelectedGridItemChangedEventArgs.cs: Fixed property type
16284         * Keys.cs: Added missing attributes
16285         * SelectionRange.cs: Added missing attributes
16286         * SelectionRangeConverter.cs: Added
16287         * XplatUI.cs:
16288           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
16289             ReleaseMenuDC methods
16290           - Renamed ReleaseWindow to UngrabWindow
16291           - Added proper startup notice to allow version identification
16292         * Form.cs:
16293           - Added missing attributes
16294           - Removed FormParent concept
16295         * Label.cs: Removed border_style field, now in Control
16296         * RadioButton.cs: Now properly selects RadioButton when focus is
16297           received
16298         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
16299         * Control.cs:
16300           - Added missing attributes
16301           - Added borderstyle handling
16302           - Removed FormParent concept support
16303           - Fixed calls to XplatUI to match changed APIs
16304           - Fixed bug that would case us to use disposed Graphics objects
16305           - Removed unneeded internal methods
16306           - PerformLayout(): Fixed to handle DockStyle.Fill properly
16307           - SelectNextControl(): Fixed to properly check common parents
16308         * TextBoxBase.cs: Removed border_style field (now in Control)
16309         * MessageBox.cs:
16310           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
16311             fixed calculations for form size
16312           - Added support for localized strings and icons
16313           - Improved form size calculations, added border
16314         * ListView.cs: Removed border_style field (now in Control)
16315         * X11Structs.cs: Moved several structs from X11 driver here
16316         * X11Keyboard.cs: Changed debug message
16317         * Application.cs: Removed FormParent concept support
16318         * CommonDialog.cs:
16319           - Resetting end_modal flag
16320           - Removed FormParent concept support
16321         * NativeWindow.cs: Removed FormParent concept support
16322         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
16323           Client area and Non-Client whole window to allow support for WM_NC
16324           messages
16325         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
16326           prevent using it until it supports Hwnd as per Geoff Norton's request
16327         * ToolBar.cs: Fixed drawing, was not doing proper drawing
16328         * PictureBox.cs: Removed border_style field, now in Control
16329         * XplatUIWin32.cs: Added new driver methods
16330
16331 2005-02-12  Peter Bartok  <pbartok@novell.com>
16332
16333         * OpacityConverter.cs: Implemented
16334         * Hwnd.cs: Internal class to support drivers that need to emulate
16335           client area/non-client area window behaviour
16336
16337 2005-02-11  Peter Bartok  <pbartok@novell.com>
16338
16339         * KeysConverter.cs: Implemented
16340
16341 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
16342
16343         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
16344         * LinkLabel: Added missing attributes
16345         * MainMenu.cs: fixes ToString
16346         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
16347         * ListBox.cs: fixes event position
16348         * TrackBar.cs: adds missing attributes and events
16349         
16350 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
16351
16352         * MenuItem.cs: Use SystemInformation and bug fixes
16353         * MenuAPI.cs: Use SystemInformation and bug fixes
16354
16355 2005-02-09  Jackson Harper  <jackson@ximian.com>
16356
16357         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
16358         their keystate otherwise things like VK_MENU get stuck "on".
16359
16360 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
16361
16362         * ListBox.cs: Fixes AddRange bug
16363         
16364 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
16365
16366         * ProgressBar.cs
16367                 - Add missing attributes
16368                 - Add missing method
16369                 
16370         * CheckedListBox.cs: Added missing attributes
16371                 - Add missing attributes
16372                 - Remove extra method
16373         
16374         * ComboBox.cs: Added missing attributes
16375         * VScrollBar.cs: Added missing attributes
16376         * ScrollBar.cs:  Added missing attributes
16377         * ListBox.cs: Fixes signature, add missing consts
16378         * LinkArea.cs:   Added missing attributes
16379         
16380
16381 2005-02-08  Peter Bartok  <pbartok@novell.com>
16382
16383         * Menu.cs: Added missing attributes
16384         * MainMenu.cs: Added missing attributes
16385         * GroupBox.cs: Added missing attributes
16386         * Label.cs: Added missing attributes
16387         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
16388         * ColorDialog.cs:
16389           - Added Instance and Options properties
16390           - Added missing attributes
16391         * Cursor.cs: Made Serializable
16392         * NotifyIcon: Added missing attributes
16393         * MenuItem.cs: Added missing attributes
16394         * TextBoxBase.cs: Implemented AppendText() and Select() methods
16395         * Panel.cs: Added Missing attributes
16396         * MonthCalendar.cs: Fixed CreateParams
16397
16398 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16399         
16400         * LinkLabel.cs:
16401                 - Fixes signature
16402                 - Fixes issues with links
16403                 - Adds the class attributes
16404
16405 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16406         
16407         * ComboBox.cs:
16408                 - Fixes button when no items available in dropdown
16409                 - Fixes repainting problems
16410                 - Adds the class attributes
16411                 
16412 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16413
16414         * XplatUIOSX.cs: Detect the menu bar and title bar height from
16415         the current theme.  Cache these on startup.
16416
16417 2005-02-07  Jackson Harper  <jackson@ximian.com>
16418
16419         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
16420         the scrollbar buttons when they are depressed.
16421
16422 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16423
16424         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
16425         Get the display size from the main displayid.  We currently dont
16426         support multiple display configurations.
16427
16428 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16429
16430         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
16431
16432 2005-02-07  Miguel de Icaza  <miguel@novell.com>
16433
16434         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
16435
16436 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16437
16438         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
16439
16440 2005-02-04  Jackson Harper  <jackson@ximian.com>
16441
16442         * ThemeWin32Classic.cs: Respect the clipping rect when
16443         drawing. Only fill the intersection of clips and rects so there
16444         isn't a lot of large fills.
16445         * ScrollBar.cs: Pass the correct clipping rect to the theme
16446         engine. Remove some debug code.
16447
16448 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
16449         
16450         * DateTimePicker.cs:
16451                 - Fixed crash on DateTime.Parse, use Constructor instead
16452
16453 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16454         
16455         * MenuItem.cs:
16456         * MenuAPI.cs:
16457                 - Owner draw support (MeasureItem and DrawItem)
16458
16459 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16460         
16461         *  Menu.cs:
16462                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
16463                 - Fixes MenuItems.Add range
16464         * MenuItem.cs:
16465                 - MergeMenu and Clone and CloneMenu functions
16466
16467 2005-02-03  Jackson Harper  <jackson@ximian.com>
16468
16469         * ScrollBar.cs: Make abstract
16470         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
16471         is abstract.
16472
16473 2005-02-03  Jackson Harper  <jackson@ximian.com>
16474
16475         * ScrollBar.cs: First part of my scrollbar fixups. This removes
16476         all the unneeded refreshes and uses invalidates with properly
16477         computed rects.
16478
16479 2005-02-03  Peter Bartok  <pbartok@novell.com>
16480
16481         * ComponentModel.cs: Added
16482         * IDataGridEditingService.cs: Added
16483         * Timer.cs: Added missing attributes
16484         * ToolTip.cs: Added missing attributes
16485
16486 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16487
16488         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
16489
16490 2005-02-03  Peter Bartok  <pbartok@novell.com>
16491
16492         * ListBox.cs: Added missing attributes
16493
16494 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
16495         
16496         * ListBox.cs:
16497                 - Fixes font height after font change
16498                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
16499                 
16500 2005-02-02  Peter Bartok  <pbartok@novell.com>
16501
16502         * HandleData.cs: Introduced static methods to allow class
16503           to be more self-contained and track it's own HandleData objects
16504         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
16505           HandleData to use new static methods
16506
16507 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
16508
16509         * Combobox.cs:
16510                 - Fixes default size and PreferredHeight
16511                 - Missing events
16512                 - ObjectCollection.Insert implementation
16513                 
16514         * ListControl.cs
16515                 - Fixes signature
16516         * ListBox.cs:
16517                 - Several fixes
16518                 - ObjectCollection.Insert implementation
16519                 - No selection after clean
16520                 - Small fixes
16521
16522 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16523
16524         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
16525
16526 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
16527
16528         * Combobox.cs:
16529                 - Caches ItemHeight calculation for OwnerDrawVariable
16530                 - Handles dropdown properly
16531                 - Fixes several minor bugs
16532
16533 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16534
16535         * ListBox.cs:
16536                 - Fixes 71946 and 71950
16537                 - Fixes changing Multicolumn on the fly
16538                 - Fixes keyboard navigation on Multicolumn listboxes
16539
16540 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16541         
16542         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
16543         crash reporter log.
16544
16545 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16546
16547         * XplatUIOSX.cs: Allow applications to actually exit.
16548
16549 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16550
16551         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
16552         their parent at creation time rather than lazily later.  Fixes a major
16553         regression we were experiencing.
16554
16555 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16556
16557         * ThemeWin32Classic.cs: more date time picker painting fixes
16558         * DateTimePicker.cs: more monthcalendar drop down fixes
16559         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
16560
16561 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16562
16563         * ScrollBar.cs:
16564                 - When moving the thumb going outside the control should stop the moving
16565                 - Adds the firing of missing events
16566                 - Fixes no button show if Size is not specified
16567                 - End / Home keys for keyboard navigation
16568
16569 2005-01-30  Peter Bartok  <pbartok@novell.com>
16570
16571         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
16572           sanity check to prevent theoretical loop
16573         * XplatUIWin32.cs (SetVisible): Removed debug output
16574         * XplatUIX11.cs (SystrayChange): Added sanity check
16575         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
16576         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
16577           behaviour, valid until the X11 client window rewrite is done
16578         * TextBox.cs (ctor): Setting proper default foreground and background
16579           colors
16580
16581 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
16582
16583         * Theme: Added DrawDateTimePicker to interface
16584         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
16585         * DateTimePicker.cs: Created (still needs keys and painting code)
16586         * DateTimePickerFormat.cs: added
16587         * MonthCalendar.cs: fixed CreateParams for popup window mode
16588           
16589 2005-01-29  Peter Bartok  <pbartok@novell.com>
16590
16591         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
16592           this should also the calculations for ligher/darker
16593         * Theme.cs: Fixed defaults for ScrollBar widths/heights
16594
16595 2005-01-29  Peter Bartok  <pbartok@novell.com>
16596
16597         * ArrangeDirection.cs: Added
16598         * ArrangeStartingPositon.cs: Added
16599         * SystemInformation.cs: Implemented
16600         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16601           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
16602           used by SystemInformation class
16603         * X11Strucs.cs: Added XSizeHints structure
16604         * MenuAPI.cs:
16605           - Fixed CreateParams to make sure the menu window is always visible
16606           - TrackPopupMenu: Added check to make sure we don't draw the
16607             menu offscreen
16608
16609 2005-01-29  Peter Bartok  <pbartok@novell.com>
16610
16611         * HandleData.cs: Added method for altering invalid area
16612         * TextBoxBase.cs: Implemented TextLength
16613
16614 2005-01-28  Peter Bartok  <pbartok@novell.com>
16615
16616         * XplatUIX11.cs: Improvement over last patch, not sending
16617           the WM_PAINT directly anymore, instead we scroll any pending
16618           exposed areas and let the system pick out the WM_PAINT later
16619
16620 2005-01-28  Peter Bartok  <pbartok@novell.com>
16621
16622         * SWF.csproj: Deleted, no longer used. Instead,
16623           Managed.Windows.Forms/SWF.csproj should be used
16624         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
16625           directly, to avoid a potential race condition with the next
16626           scroll
16627
16628 2005-01-28  Peter Bartok  <pbartok@novell.com>
16629
16630         * XplatUI.cs: Made class internal
16631
16632 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
16633
16634         * CheckedListBox.cs:
16635                 - Draw focus
16636                 - Fixed Drawing
16637                 - Missing methods and events
16638
16639 2005-01-27  Peter Bartok  <pbartok@novell.com>
16640
16641         * Application.cs (Run): Don't use form if we don't have one
16642
16643 2005-01-27  Peter Bartok  <pbartok@novell.com>
16644
16645         * TextBoxBase.cs (get_Lines): Fixed index off by one error
16646
16647 2005-01-27  Peter Bartok  <pbartok@novell.com>
16648
16649         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
16650         * GridItem.cs: Added; Patch by Jonathan S. Chambers
16651         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
16652         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
16653         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
16654         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
16655         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16656         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16657         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16658         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16659         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16660         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16661
16662 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16663
16664         * Combobox.cs:
16665                 - Draw focus on Simple Combobox
16666                 - Fixes drawing issues
16667                 - fixes 71834
16668
16669 2005-01-27  Peter Bartok  <pbartok@novell.com>
16670
16671         * Form.cs:
16672           - Place window in default location, instead of hardcoded 0/0
16673           - Send initial LocationChanged event
16674         * Control.cs:
16675           - UpdateBounds after creation to find out where the WM placed us
16676           - Make sure that if the ParentForm changes location the Form
16677             is notified
16678         * XplatUIX11.cs: XGetGeometry will not return the coords relative
16679             to the root, but to whatever the WM placed around us.
16680             Translate to root coordinates before returning toplevel
16681             coordinates
16682         * XplatUIWin32.cs: Removed debug output
16683         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
16684           flag to GetWindowPos, to allow translation of coordinates on X11
16685
16686 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16687
16688         * ListBox.cs: connect LostFocus Event
16689
16690 2005-01-27  Peter Bartok  <pbartok@novell.com>
16691
16692         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16693           XplatUIX11.cs: Extended the Systray API
16694         * Form.cs: Removed debug output
16695         * Application.cs: Fixed focus assignment, always need to call
16696           XplatUI.Activate() since Form.Activate() has rules that may
16697           prevent activation
16698         * NotifyIcon.cs: Should be complete now
16699         * ToolTip.cs: Worked around possible timer bug
16700
16701 2005-01-27  Jackson Harper  <jackson@ximian.com>
16702
16703         * TabControl.cs:
16704         - Only invalidate the effected tabs when the
16705         selected index changes. This reduces drawing and gets rid of some
16706         flicker.
16707         - Only refresh if the tabs need to be shifted, otherwise only
16708         invalidate the slider button.
16709         - On windows the tabs are not filled to right if the slider is
16710         visible.
16711         
16712 2005-01-27  Jackson Harper  <jackson@ximian.com>
16713
16714         * TabControl.cs: Only refresh on mouseup if we are showing the
16715         slider. Also only invalidate the button whose state has changed.
16716
16717 2005-01-26  Peter Bartok  <pbartok@novell.com>
16718
16719         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
16720         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
16721           and SystrayRemove() methods
16722         * XplatUIOSX.cs: Stubbed Systray methods
16723         * XplatUIX11.cs:
16724           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
16725             methods
16726           - Fixed broken XChangeProperty calls (marshalling messed up things)
16727         * X11Structs.cs: Added enums and structs required for Size hinting
16728         * NotifyIcon.cs: Added & implemented
16729
16730 2005-01-26  Jackson Harper  <jackson@ximian.com>
16731
16732         * TabControl.cs: Space vertically layed out tabs properly.
16733
16734 2005-01-26  Peter Bartok  <pbartok@novell.com>
16735
16736         * Form.cs (CreateClientParams): Always set the location to 0,0
16737           since we're a child window.
16738
16739         * Control.cs (SetVisibleCore): Always explicitly setting the location
16740           of a toplevel window, apparently X11 doesn't like to move windows
16741           while they're not mapped.
16742
16743 2005-01-26  Jackson Harper  <jackson@ximian.com>
16744
16745         * TabControl.cs: Implement FillToRight size mode with vertically
16746         rendered tabs.
16747
16748 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16749
16750         * ControlPaint.cs, ThemeWin32Classic.cs
16751                 - Fixes DrawFocusRectangle
16752
16753 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16754
16755         * MenuAPI.cs:
16756                 - MenuBar tracking only starts when item is first clicked
16757                 - Fixes menu hidding for multiple subitems
16758                 - Unselect item in MenuBar when item Executed
16759                 - Fixes bug 71495
16760
16761 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
16762
16763         * ListControl.cs:
16764                 - IsInputKey for ListBox
16765         * ListBox.cs:
16766                 - Focus item
16767                 - Shift and Control item selection
16768                 - Implement SelectionMode.MultiExtended
16769                 - Fixes RightToLeft
16770         * ComboBox.cs:
16771                 - IsInputKey implemented
16772                 - Do not generate OnTextChangedEdit on internal txt changes
16773                 
16774 2005-01-23  Peter Bartok  <pbartok@novell.com>
16775
16776         * AccessibleObject.cs: Partially implemented Select()
16777         * MonthCalendar.cs: Added missing attributes and events
16778         * Form.cs: Fixed CreateParams behaviour, now controls derived from
16779           form can properly override CreateParams.
16780         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16781           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
16782           Control performs Invalidate & Update
16783         * NativeWindow (CreateHandle): Added special handling for Form
16784           and Form.FormParent classes to allow overriding of From.CreateParams
16785         * Control.cs:
16786           - ControlNativeWindow: Renamed 'control' variable to more intuitive
16787             name 'owner'
16788           - ControlNativeWindow: Added Owner property
16789           - Removed usage of Refresh() on property changes, changed into
16790             Invalidate(), we need to wait until the queue is processed for
16791             updates, direct calls might cause problems if not all vars for
16792             Paint are initialized
16793           - Added call to UpdateStyles() when creating the window, to set any
16794             styles that CreateWindow might have ignored.
16795           - Added support for Form CreateParent overrides to UpdateStyles()
16796         * MessageBox.cs: Removed no longer needed FormParent override stuff,
16797           CreateParams are now properly overridable
16798         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
16799           CreateParams are now properly overridable
16800
16801 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
16802
16803         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
16804         OnTextBoxChanged.
16805
16806         Capture LostFocus and OnTextBoxChanged.  The later introduces a
16807         recursive invocation that I have not figured out yet.
16808
16809         Reset the timer when not using (it was accumulating).
16810
16811
16812         (OnTextBoxChanged): Set UserEdit to true here to track whether the
16813         user has made changes that require validation.
16814
16815         Reset changing to avoid loops.
16816
16817 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
16818
16819         * NumericUpDown.cs: Display value at startup.
16820
16821         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
16822         ValidateEditText.
16823
16824         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
16825         filled in.  Added some basic parsing of text.
16826
16827         Still missing the OnXXX method overrides, and figuring out the
16828         events that must be emitted.
16829
16830         * UpDownBase.cs: Handle UserEdit on the Text property.
16831         
16832 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
16833
16834         * ComboBox.cs:
16835           - Fixes IntegralHeight
16836           - ToString method
16837
16838 2005-01-21  Jackson Harper  <jackson@ximian.com>
16839
16840         * TabControl.cs: Set the SelectedIndex property when SelectedTab
16841         is set so that the page visibility is updated and the tabs are
16842         sized correctly.
16843
16844 2005-01-21  Jackson Harper  <jackson@ximian.com>
16845
16846         * TabControl.cs: Use cliping rectangle for blitting. Give the
16847         theme the clipping rect so we can do clipping while
16848         drawing. Remove some debug code.
16849
16850 2005-01-21  Jackson Harper  <jackson@ximian.com>
16851
16852         * TabPage.cs: Add a new method so tab pages can force the tab
16853         control to recalculate the tab page sizes.
16854         * TabControl.cs: UpdateOwner needs to make the tab control recalc
16855         sizes.
16856
16857 2005-01-20  Jackson Harper  <jackson@ximian.com>
16858
16859         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
16860
16861 2005-01-20  Jackson Harper  <jackson@ximian.com>
16862
16863         * TreeView.cs: Set the bounds for nodes properly. They were
16864         getting screwed up when checkboxes were not enabled, but images
16865         were.
16866
16867 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
16868
16869         * ListBox.cs:
16870                 - Owner draw support
16871                 - Fixes
16872                 
16873 2005-01-20  Jackson Harper  <jackson@ximian.com>
16874
16875         * XplatUIStructs.cs: More misc keys
16876         * X11Keyboard.cs: Ignore some control keys.
16877
16878 2005-01-20  Jackson Harper  <jackson@ximian.com>
16879
16880         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
16881         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
16882
16883 2005-01-19  Peter Bartok  <pbartok@novell.com>
16884
16885         * Control.cs: Un-selecting the control when it is loosing focus
16886
16887 2005-01-19  Jackson Harper  <jackson@ximian.com>
16888
16889         * TreeView.cs: Hook up to the text controls leave event so we can
16890         end editing when the users clicks outside the text box.
16891         
16892 2005-01-19  Jackson Harper  <jackson@ximian.com>
16893
16894         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
16895         get set in the conversion array.
16896
16897 2005-01-19  Peter Bartok  <pbartok@novell.com>
16898
16899         * Application.cs (ModalRun): Added a call to CreateControl to ensure
16900           focus is properly set
16901         * Button.cs:
16902           - Added missing attributes
16903           - removed styles, those are already set in the base class
16904         * ButtonBase.cs:
16905           - Added missing attributes
16906           - Added clip window styles
16907         * CheckBox.cs: Added missing attributes
16908         * CommonDialog.cs:
16909           - FormParentWindow.CreateParams: Added required clip styles
16910         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
16911           also filters modifier keys
16912         * MessageBox.cs:
16913           - Added assignment of Accept and Cancel button to enable Enter
16914             and Esc keys in MessageBox dialogs
16915           - FormParentWindow.CreateParams: Added required clip styles
16916         * RadioButton.cs: Added missing attributes
16917         * TextControl.cs: No longer draws selection if control does not
16918           have focus
16919         * TextBoxBase.cs:
16920           - Now draws simple rectangle around test area to make it obvious
16921             there's a control. This is a hack until we properly support borders
16922           - A few simple fixes to support selections better, now erases selected
16923             text when typing, and resets selection when using movement keys
16924
16925 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16926
16927         * UpDownBase.cs: Added some new properties.
16928
16929         * DomainUpDown.cs: Implement a lot to get my test working.
16930
16931 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16932
16933         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
16934
16935 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16936
16937         * OSXStructs (WindowAttributes): Fixed csc complaints
16938
16939 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16940
16941         * XplayUIOSX.cs:
16942           OSXStructs.cs: Initial refactor to move enums and consts into
16943           OSXStructs and use them in the driver for greater readability.
16944
16945 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16946
16947         * XplatUIOSX.cs: Initial support for Standard Cursors.
16948         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
16949
16950 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
16951
16952         * ComboBox.cs: ability to change style when the ctrl is already
16953         created, missing methods and events, bug fixes, signature fixes
16954
16955 2005-01-19  Peter Bartok  <pbartok@novell.com>
16956
16957         * Cursors.cs (ctor): Added ctor to fix signature
16958
16959 2005-01-18  Peter Bartok  <pbartok@novell.com>
16960
16961         * Button.cs: Implemented DoubleClick event
16962         * ButtonBase.cs:
16963           - Fixed keyboard handling to behave like MS, where the press of
16964             Spacebar is equivalent to a mousedown, and the key release is
16965             equivalent to mouseup. Now a spacebar push will give the same
16966             visual feedback like a mouse click.
16967           - Added missing attributes
16968           - Added ImeModeChanged event
16969           - Added support for generating DoubleClick event for derived classes
16970         * CheckBox.cs:
16971           - Implemented DoubleClick event
16972           - Added missing attributes
16973         * CommonDialog.cs: Added missing attribute
16974         * ContextMenu.cs: Added missing attributes
16975         * RadioButton.cs:
16976           - AutoChecked buttons do not allow to be unselected when clicked
16977             (otherwise we might end up with no selected buttons in a group)
16978           - Added missing attributes
16979           - Implemented DoubleClickEvent
16980         * ThreadExceptionDialog.cs: Enabled TextBox code
16981
16982 2005-01-18  Peter Bartok  <pbartok@novell.com>
16983
16984         * Form.cs: Removed debug output
16985         * Button.cs: Added support for DoubleClick method
16986
16987 2005-01-18  Peter Bartok  <pbartok@novell.com>
16988
16989         * Form.cs:
16990           - Added method to parent window that allows triggering size
16991             calculations when a menu is added/removed
16992           - set_Menu: Cleaned up mess from early days of Form and Control,
16993             now properly triggers a recalc when a menu is added/removed
16994           - Added case to select form itself as focused form if no child
16995             controls exist
16996           - Added PerformLayout call when showing dialog, to ensure properly
16997             placed controls
16998         * Control.cs:
16999           - Select(): Made internal so Form can access it
17000           - Focus(): Only call Xplat layer if required (avoids loop), and sets
17001             status
17002         * Application.cs (Run): Removed hack and calls PerformLayout instead
17003           to trigger calculation when Form becomes visible
17004
17005 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
17006
17007         * ComboBox.cs: fixes for ownerdraw
17008
17009 2005-01-18  Peter Bartok  <pbartok@novell.com>
17010
17011         * TextControl.cs:
17012           - Sentinel is no longer static, each Document gets it's own, this
17013             avoids locking or alternatively overwrite problems when more
17014             than one text control is used simultaneously.
17015           - Switched to use Hilight and HilightText brushes for text selection
17016
17017         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
17018
17019 2005-01-18  Peter Bartok  <pbartok@novell.com>
17020
17021         * Control.cs:
17022           - Hooked up the following events:
17023                 o ControlAdded
17024                 o ControlRemoved
17025                 o HandleDestroyed
17026                 o ImeModeChanged
17027                 o ParentChanged
17028                 o TabStopChanged
17029                 o Invalidated
17030                 o SystemColorsChanged
17031                 o ParentFontChanged
17032                 o Move
17033           - Removed debug output
17034           - Added a call to the current theme's ResetDefaults when a color change
17035             is detected
17036         * Form.cs: Now setting the proper ImeMode
17037         * Theme.cs: Defined a method to force recreation of cached resources
17038           and rereading of system defaults (ResetDefaults())
17039         * ThemeWin32Classic.cs: Added ResetDefaults() stub
17040
17041 2005-01-17  Peter Bartok  <pbartok@novell.com>
17042
17043         * Control.cs: Added missing attributes
17044
17045 2005-01-17  Jackson Harper  <jackson@ximian.com>
17046
17047         * TreeNode.cs: Implement editing. Add missing properties selected
17048         and visible.
17049         * TreeView.cs: Implement node editing. Also some fixes to use
17050         Invalidate (invalid area) instead of Refresh when selecting.
17051
17052 2005-01-17  Peter Bartok  <pbartok@novell.com>
17053
17054         * Control.cs:
17055           - Implemented InvokeGotFocus() method
17056           - Implemented InvokeLostFocus() method
17057           - Implemented InvokePaint() method
17058           - Implemented InvokePaintBackground() method
17059           - Implemented InvokeClick() method
17060           - Implemented FindForm() method
17061           - Implemented RectangleToClient() method
17062           - Implemented ClientToRectangle() method
17063           - Implemented ResetBackColor() method
17064           - Implemented ResetCursor() method
17065           - Implemented ResetFont() method
17066           - Implemented ResteForeColor() method
17067           - Implemented ResetImeMode() method
17068           - Implemented ResetLeftToRight() method
17069           - Implemented ResetText() method
17070           - Implemented Scale() methods
17071           - Implemented ScaleCore() method
17072           - Implemented Update() method
17073           - Removed unused variables
17074           - Stubbed AccessibilityNotifyClients and
17075             ControlAccessibleObject.NotifyClients() methods (dunno what to do
17076             with those yet)
17077           - Now setting proper default for RightToLeft property
17078           - Fixed bug in SetClientSizeCore that would cause windows to get
17079             really big
17080           - Now sending Click/DoubleClick events
17081           - Now selecting controls when left mouse button is clicked on
17082             selectable control
17083         * AccessibleEvents.cs: Added
17084         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
17085         * XplatUIOSX.cs: Stubbed UpdateWindow() method
17086         * XplatUIWin32.cs: Implemented UpdateWindow() method
17087         * XplatUIX11.cs: Implemented UpdateWindow() method
17088         * Form.cs: Removed stray semicolon causing CS0162 warning
17089         * ThemeWin32Classic.cs: Fixed unused variable warnings
17090         * ScrollableControl.cs: Now calls base method for ScaleCore
17091         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
17092           style to avoid interference with internal click handler (which is
17093           different than standard Control click handling)
17094         * RadioButton.cs:
17095           - Now unchecks all sibling radio buttons when control is
17096             selected (Fixes #68756)
17097           - Removed internal tabstop variable, using the one inherited from
17098             Control
17099
17100 2005-01-17  Jackson Harper  <jackson@ximian.com>
17101
17102         * NavigateEventArgs.cs: Fix base type.
17103         * LinkLabel.cs: Sig fix
17104         
17105 2005-01-17  Jackson Harper  <jackson@ximian.com>
17106
17107         * TreeView.cs: Only invalidate the effected nodes bounds when
17108         selecting nodes.
17109
17110 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17111
17112         * XplatUIWin32.cs: fixes Win32 marshaling
17113         * XplatUIX11.cs: fixes method signature
17114
17115 2005-01-17  Peter Bartok  <pbartok@novell.com>
17116
17117         * XplatUIX11.cs: Clean up resources when we no longer need them
17118
17119 2005-01-17  Peter Bartok  <pbartok@novell.com>
17120
17121         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
17122           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
17123           and DestroyCursor() methods.
17124         * Cursor.cs: Partially implemented, now supports standard cursors;
17125           still contains some debug code
17126         * Cursors.cs: Implemented class
17127         * Control.cs:
17128           - WndProc(): Added handling of WM_SETCURSOR message, setting the
17129             appropriate cursor
17130           - Implemented Cursor property
17131           - Replaced break; with return; more straightforwar and possibly
17132             faster
17133           - Now properly setting the result for WM_HELP
17134         * X11Structs.cs: Added CursorFontShape enum
17135         * XplatUIStructs.cs:
17136           - Added StdCursor enum (to support DefineStdCursor() method)
17137           - Added HitTest enum (to support sending WM_SETCURSOR message)
17138         * XplatUIX11.cs:
17139           - Now sends the WM_SETCURSOR message
17140           - Implemented new cursor methods
17141         * XplatUIOSX.cs: Stubbed new cursor methods
17142         * XplatUIWin32.cs:
17143           - Implemented new cursor methods
17144           - Added GetSystemMetrics function and associated enumeration
17145
17146 2005-01-15  Peter Bartok  <pbartok@novell.com>
17147
17148         * Control.cs:
17149           - WndProc(): Now handles EnableNotifyMessage
17150           - SelectNextControl(): Fixed bug where if no child or sibling
17151             controls exist we looped endlessly
17152
17153 2005-01-14  Jackson Harper  <jackson@ximian.com>
17154
17155         * TreeView.cs: Recalculate the tab pages when a new one is added
17156         so that the proper bounding rects are created.
17157
17158 2005-01-14  Jackson Harper  <jackson@ximian.com>
17159
17160         * TreeView.cs: Draw a gray box instead of a grip in the lower
17161         right hand corner when there are both horizontal and vertical
17162         scroll bars.
17163
17164 2005-01-14  Jackson Harper  <jackson@ximian.com>
17165
17166         * Control.cs: When erasing backgrounds use FromHwnd instead of
17167         FromHdc when there is a NULL wparam. This occurs on the X driver.
17168         * XplatUIX11.cs: Set the wparam to NULL.
17169
17170 2005-01-13  Jackson Harper  <jackson@ximian.com>
17171
17172         * PictureBox.cs: Implement missing methods (except ToString, need
17173         to test that on windows) and events. When visibility is changed we
17174         need to redraw the image because the buffers are killed. When size
17175         is changed refresh if the sizemode needs it.
17176
17177 2005-01-13  Peter Bartok  <pbartok@novell.com>
17178
17179         * Control.cs (SelectNextControl): Was using wrong method to select
17180           a control
17181
17182 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17183
17184         * ComboBox.cs: fixes dropstyle
17185
17186 2005-01-13  Peter Bartok  <pbartok@novell.com>
17187
17188         * Form.cs:
17189           - Implemented Select() override
17190           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
17191           - Now sets keyboard focus on startup
17192         * Control.cs (SelectNextControl): Now properly handles directed=true
17193         * TextBoxBase.cs:
17194           - WndProc: Now passes tab key on to base if AcceptTabChar=false
17195           - Added (really bad) focus rectangle (mostly for testing)
17196         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
17197           to enforce redraw on focus changes
17198         * ContainerControl.cs:
17199           - Fixed detection of Shift-Tab key presses
17200           - Fixed traversal with arrow keys
17201         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
17202           gonna keep this or if it's complete yet
17203         
17204 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17205
17206         * ComboBox.cs: missing properties, fixes
17207
17208 2005-01-13  Peter Bartok  <pbartok@novell.com>
17209
17210         * Panel.cs (ctor): Setting Selectable window style to off
17211         * Splitter.cs (ctor): Setting Selectable window style to off
17212         * GroupBox.cs (ctor): Setting Selectable window style to off
17213         * Label.cs (ctor): Setting Selectable window style to off
17214
17215 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
17216
17217         * UpDownBase.cs (InitTimer): If the timer has been already
17218         created, enable it.
17219
17220         Use a TextBox instead of a Label.
17221
17222 2005-01-12  Jackson Harper  <jackson@ximian.com>
17223
17224         * TreeView.cs: Refresh the tree after sorting the nodes. Always
17225         draw the connecting node lines (when ShowLines is true).
17226         * TreeNode.cs: The nodes index can now be updated. This is used
17227         when a node collection is sorted.
17228         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
17229         insert or an existing unsorted node collection can be sorted.
17230         
17231 2005-01-12  Peter Bartok  <pbartok@novell.com>
17232
17233         * ContainerControl.cs: Implemented ProcessDialogKeys()
17234
17235 2005-01-12  Peter Bartok  <pbartok@novell.com>
17236
17237         * Control.cs:
17238           - Implemented SelectNextControl() method
17239           - Several focus related bug fixes
17240           - Fixed Docking calculations to match MS documentation and
17241             behaviour
17242
17243 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
17244
17245         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
17246         bug fixes
17247
17248 2005-01-12  Peter Bartok  <pbartok@novell.com>
17249
17250         * Control.cs:
17251           - Fixed broken Contains() method
17252           - Implemented GetNextControl() method. Finally. This is the pre-
17253             requisite for focus handling.
17254
17255 2005-01-12  Peter Bartok  <pbartok@novell.com>
17256
17257         * OSXStrucs.cs: Added
17258
17259 2005-01-12  Peter Bartok  <pbartok@novell.com>
17260
17261         * XplatUIWin32.cs:
17262           - Removed PeekMessageFlags
17263           - Implemented SetWindowStyle() method
17264         * XplatUIStructs.cs: Added PeekMessageFlags
17265         * X11Structs: Added missing border_width field to XWindowChanges struct
17266         * XplatUIX11.cs:
17267           - PeekMessage: Now throws exception if flags which are not yet
17268             supported are passed
17269           - Implemented SetWindowStyle() method
17270           - Fixed SetZOrder to handle AfterHwnd properly
17271         * XplatUI.cs: Added SetWindowStyle() method
17272         * XplatUIDriver.cs: Added SetWindowStyle() abstract
17273         * Control.cs:
17274           - Implemented UpdateStyles() method
17275           - Implemented UpdateZOrder() method
17276         * XplatUIOSX.cs: Added SetWindowStyle() stub
17277
17278 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
17279
17280         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
17281         button mouse).
17282
17283
17284 2005-01-11  Jackson Harper  <jackson@ximian.com>
17285
17286         * TreeView.cs: Still need to draw lines to siblings even if out of
17287         the current node is out of the clip.
17288
17289 2005-01-11  Jackson Harper  <jackson@ximian.com>
17290
17291         * TreeView.cs: When setting the hbar/vbar/grip position use
17292         SetBounds so that perform layout is only called once. Also suspend
17293         and resume layout so layout is only done once for all controls.
17294         - Removed some debug fluff
17295         * SizeGrip.cs: Call base implmentation in overriding methods.
17296         - When visibility is changed the drawing buffers are killed so we
17297         need to redraw.
17298
17299 2005-01-11  Jackson Harper  <jackson@ximian.com>
17300
17301         * TreeView.cs: Calculate the open node count while drawing. This
17302         saves us an entire tree traversal for every paint operation. Use
17303         a member var for the open node count so less vars are passed around.
17304
17305 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
17306
17307         * MonthCalendar.cs:
17308         - fixed selection to use mousemove, not mouse polling on timer
17309         * ThemeWin32Classic.cs
17310         - removed redundant unused variable "no_more_content"
17311         
17312 2005-01-11  Peter Bartok  <pbartok@novell.com>
17313
17314         * XplatUIX11.cs (DoEvents): Needs to return when no more events
17315           are pending, so it now calls PeekMessage instead of GetMessage;
17316           implemented a incomplete version of PeekMessage
17317         
17318 2005-01-11  Peter Bartok  <pbartok@novell.com>
17319
17320         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
17321           I18n issues
17322         * TextBoxBase.cs: Added sending of TextChanged event
17323
17324 2005-01-10  Jackson Harper  <jackson@ximian.com>
17325
17326         * TreeView.cs: Try not to draw outside the clipping rectangle on
17327         each node element.
17328
17329 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
17330
17331         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
17332
17333 2005-01-10  Jackson Harper  <jackson@ximian.com>
17334
17335         * TreeView.cs:
17336         - Implement fast scrolling. Now only the newly
17337         exposed nodes are drawn and the old image is moved using the
17338         XplatUI::ScrollWindow method.
17339         - Factor in height of nodes when calculating whether or not the
17340         node is in the clipping rect.
17341
17342 2005-01-10  Jackson Harper  <jackson@ximian.com>
17343
17344         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
17345
17346 2005-01-10  Peter Bartok  <pbartok@novell.com>
17347
17348         * Application.cs: Added temporary hack to resolve all our resize
17349           required issues on startup. This will get fixed properly at
17350           some point in the future
17351
17352 2005-01-10  Jackson Harper  <jackson@ximian.com>
17353
17354         * SizeGrip.cs: New internal class that is used as a sizing
17355         grip control...hence the name.
17356
17357 2005-01-10  Peter Bartok  <pbartok@novell.com>
17358
17359         * Control.cs: Implemented proper TabIndex handling, now assigning
17360           a tabindex when a control is added to a container
17361         * GroupBox.cs (ctor): Now sets the Container style bit, required
17362           for Control.GetNextControl()
17363
17364 2005-01-09  Jackson Harper  <jackson@ximian.com>
17365
17366         * TextBoxBase.cs: Clear window when scrolling (fixes build).
17367
17368 2005-01-09  Peter Bartok <pbartok@novell.com>
17369
17370         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17371           XplatUIX11.cs: Added ability to control ScrollWindow expose and
17372           an overload for ScrollWindow to allow only scrolling a rectangle
17373
17374 2005-01-09  Peter Bartok <pbartok@novell.com>
17375
17376         * Form.cs:
17377           - Implemented SetDesktopBounds method
17378           - Implemented SetDesktopLocation method
17379
17380 2005-01-08  Jackson Harper  <jackson@ximian.com>
17381
17382         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
17383         the node count has changed, this removes to VScroll::Refresh calls
17384         when drawing.
17385
17386 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
17387
17388         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
17389
17390 2005-01-07  Jackson Harper  <jackson@ximian.com>
17391
17392         * TreeNode.cs: Just update the single node when it is
17393         checked. Don't refresh after toggling, the Expand/Collapse already
17394         handles this.
17395         * TreeView.cs: Respect clipping a little more when drawing. Try
17396         not to redraw things that don't need to be redrawn. Just hide the
17397         scrollbars when they are no longer needed instead of removing
17398         them, so they don't have to be created again and again.
17399         
17400 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
17401
17402         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
17403         coordinates to window space to place the caret properly, FIXED.
17404         Implement GetWindowState & SetWindowState
17405
17406 2005-01-06  Peter Bartok <pbartok@novell.com>
17407
17408         * Form.cs:
17409           - Implemented ClientSize property
17410           - Implemented DesktopBounds property
17411           - Implemented DesktopLocation property
17412           - Implemented IsRestrictedWindow property
17413           - Implemented Size property
17414           - Implemented TopLevel property
17415           - Implemented FormWindowState property
17416         * Control.cs:
17417           - Implemented GetTopLevel() method
17418           - Implemented SetTopLevel() method
17419         * X11Structs.cs (Atom):
17420           - Added AnyPropertyType definition
17421           - Added MapState definiton and updated XWindowAttribute struct
17422         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
17423         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
17424         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
17425         * XplatUIWin32.cs:
17426           - Implemented GetWindowState() and SetWindowState() methods
17427           - Fixed Win32GetWindowLong return type
17428         * XplatUIX11.cs:
17429           - Introduced central function for sending NET_WM messages
17430           - Implemented GetWindowState() and SetWindowState() methods
17431         * TextBoxBase.cs (set_Lines):
17432           - Now uses Foreground color for text added via Text property (Duh!)
17433           - Added code to remember programmatically requested size (fixes
17434             behaviour when Multiline is set after Size)
17435           - Added AutoSize logic
17436
17437 2005-01-06  Jackson Harper  <jackson@ximian.com>
17438
17439         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
17440
17441 2005-01-06  Jackson Harper  <jackson@ximian.com>
17442
17443         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
17444         set to less then 0.
17445
17446 2005-01-06  Jackson Harper  <jackson@ximian.com>
17447
17448         * ScrollableControl.cs: Lazy init the scrollbars.
17449         
17450 2005-01-06  Jackson Harper  <jackson@ximian.com>
17451
17452         * Theme.cs: Speed up getting pens and solid brushes, by using
17453         their ARGB as a hash instead of tostring and not calling Contains.
17454
17455 2005-01-06  Peter Bartok <pbartok@novell.com>
17456
17457         * Form.cs:
17458           - Implemented OnActivated and OnDeactivate event trigger
17459           - Implemented Activate() method
17460           - Fixed ShowDialog() to activate the form that was active before
17461             the dialog was shown
17462         * XplatUIX11.cs:
17463           - Added global active_window var that tracks the currently active
17464             X11 window
17465           - Now always grabs Property changes from the root window to always
17466             catch changes on the active window property
17467           - Added code to PropertyNotify handler to send Active/Inactive
17468             messages when state changes. This puts X11 and Win32 en par on
17469             WM_ACTIVATE notifications (except for double notifications when
17470             the user clicks away from our modal window to another one of our
17471             windows)
17472
17473 2005-01-05  Jackson Harper  <jackson@ximian.com>
17474
17475         * ImageList.cs: Implment ctor
17476
17477 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17478
17479         * XplatUIOSX.cs: Implement Activate/SetTopmost
17480
17481 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17482
17483         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
17484
17485 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17486
17487         * XplatUIOSX.cs: Implement GetActive/SetFocus.
17488
17489 2005-01-05  Peter Bartok <pbartok@novell.com>
17490
17491         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
17492           XplatUIOSX.cs: Added GetActive method to return the currently
17493           active window for the application (or null, if none is active)
17494         * Form.cs:
17495           - Implemented ActiveForm
17496           - Commented out owner assignment for modal dialogs (causes problems
17497             on Win32, since the owner will be disabled)
17498           - Reworked some Active/Focus handling (still incomplete)
17499         * CommonDialog.cs: Commented out owner assignment for modal dialogs
17500           (causes problems on Win32, since the owner will be disabled)
17501         * IWin32Window: Added ComVisible attribute
17502
17503 2005-01-05  Peter Bartok <pbartok@novell.com>
17504
17505         * ToolTip.cs (WndProc): Enable setting focus now that we have the
17506           required XplatUI functions.
17507
17508 2005-01-05  Peter Bartok <pbartok@novell.com>
17509
17510         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
17511           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
17512           to implement focus and activation handling; still incomplete and
17513           with debug output
17514
17515 2005-01-04  Peter Bartok <pbartok@novell.com>
17516
17517         * TextBoxBase.cs: Changed access level for Document property to
17518           match switch to internal for TextControl
17519
17520 2005-01-04  Peter Bartok <pbartok@novell.com>
17521
17522         * AccessibleObject: Added ComVisible attribute
17523
17524 2005-01-04  Jackson Harper  <jackson@ximian.com>
17525
17526         * X11Keyboard.cs: Remove unneeded var.
17527
17528 2005-01-04  Jackson Harper  <jackson@ximian.com>
17529
17530         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
17531         but PAINT.
17532         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
17533         ClientMessage. This makes apps exit cleanly (more often).
17534         
17535 2005-01-04  Jackson Harper  <jackson@ximian.com>
17536
17537         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
17538         handling focus, return correct colors and fonts,
17539         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
17540         handle selection, horizontal scrolling, and mouse interaction.
17541
17542 2005-01-04  Peter Bartok <pbartok@novell.com>
17543
17544         * ICommandExecutor.cs: Added
17545         * IDataGridColumnStyleEditingNotificationService.cs: Added
17546         * IFeatureSupport.cs: Added
17547         * IFileReaderService.cs: Added
17548         * IDataObject.cs: Added ComVisible attribute
17549         * AmbientProperties.cs: Added
17550         * BaseCollection.cs: Added missing attributes
17551         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
17552         * BaseCollection.cs: Added missing attributes
17553         * Binding.cs: Added TypeConverter attribute
17554         * BindingContext.cs: Added DefaultEvent attribute
17555         * BindingsCollection.cs: Added DefaultEvent attribute
17556         * Button.cs: Added DefaultValue attribute
17557         * DragEventArgs.cs: Added ComVisible attribute
17558         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
17559         * KeyEventArgs.cs: Added ComVisible attribute
17560         * KeyPressEventArgs.cs: Added ComVisible attribute
17561         * MouseEventArgs.cs: Added ComVisible attribute
17562         * NavigateEventArgs.cs: Added
17563         * NavigateEventHandler.cs: Added
17564         * FeatureSupport.cs: Added
17565         * OSFeature.cs: Added
17566         * Theme.cs: Added abstract Version property to support OSFeature
17567         * ThemeWin32Classic.cs: Added Version property to
17568           support OSFeature.Themes
17569         * ProgressBar.cs: Removed OnPaintBackground override, not required since
17570           the proper styles to avoid background drawing are set, also doesn't
17571           match MS signature
17572         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
17573         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
17574         * ScrollEventArgs.cs: Added ComVisible attribute
17575         * SplitterEventArgs.cs: Added ComVisible attribute
17576         * AccessibleSelection.cs: Added Flags attribute
17577         * Appearance.cs: Added ComVisible attribute
17578         * Border3DSide.cs: Added ComVisible attribute
17579         * Border3DStyle.cs: Added ComVisible attribute
17580         * BorderStyle.cs: Added ComVisible attribute
17581         * DragAction.cs: Added ComVisible attribute
17582         * ErrorBlinkStyle.cs: Added
17583         * ScrollEventType.cs: Added ComVisible attribute
17584         * AnchorStyles.cs: Added Editor attribute
17585         * DockStyle.cs: Added Editor attribute
17586         * HorizontalAlignment.cs: Added ComVisible attribute
17587         * HelpEventArgs.cs: Added ComVisible attribute
17588         * PaintEventArgs.cs: Added IDisposable
17589
17590 2005-01-04  Peter Bartok <pbartok@novell.com>
17591
17592         * TextControl.cs: Switched Line, LineTag and Document classes to
17593           internal
17594
17595 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17596
17597         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
17598         Simple mode, fixes, IntegralHeight, etc.
17599
17600 2005-01-04  Peter Bartok <pbartok@novell.com>
17601
17602         * TextBoxBase.cs: Using proper font variable now
17603
17604 2005-01-04  Peter Bartok <pbartok@novell.com>
17605
17606         * Form.cs (ShowDialog): Set parent to owner, if provided
17607         * GroupBox.cs: Removed unused vars
17608         * TextControl.cs:
17609           - Added GetHashCode() for Document and LineTag classes
17610           - Removed unused variables
17611           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
17612             to allow translation between continuous char position and line/pos
17613         * CheckBox.cs: Removed vars that are provided by base class
17614         * RadioButton.cs: Removed vars that are provided by base class, added
17615           new keyword where required
17616         * LinkLabel.cs: Added new keyword where required
17617         * Control.cs (WndProc): Removed unused variable
17618         * TextBoxBase.cs:
17619           - Finished SelectionLength property
17620           - Implemented SelectionStart property
17621           - Implemented Text property
17622           - Removed unused vars
17623         * MessageBox.cs: Added new keyword where required
17624         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
17625           WndProc signature
17626         * MenuAPI.cs: Added new keyword where required
17627         * ButtonBase.cs: Removed vars that are provided by base class, added
17628           new keyword where required
17629         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
17630           argument to double, to allow compiling with csc 2.0 (Atsushi ran
17631           into this)
17632         * Application.cs (Run): Now triggers the ThreadExit event
17633         * CommonDialog.cs: Added new keyword where required; now properly sets
17634           parent (owner) for dialog
17635         * XplatUIX11.cs: Commented out unused vars
17636         * StatusBar.cs: Fixed signature for Text property
17637         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
17638
17639 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17640
17641         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
17642         TrackBar.cs, MonthCalendar.cs: remove unused vars
17643
17644 2005-01-03  Jackson Harper  <jackson@ximian.com>
17645
17646         * ThemeWin32Classic.cs:
17647         * X11Keyboard.cs: Remove unused vars.
17648
17649 2005-01-03  Peter Bartok  <pbartok@novell.com>
17650
17651         * TextBox.cs:
17652           - set_Text: Tied into TextControl
17653           - set_TextAlignment: Tied into TextControl
17654         * TextControl.cs:
17655           - Added alignment properties and implemented alignment handling
17656             and drawing (still has a bug, not generating proper expose events)
17657           - Added new Line() constructor to allow passing the line alignment
17658           - Fixed selection setting, properly handling end<start now
17659           - Added aligment considerations to RecalculateDocument()
17660         * TextBoxBase.cs:
17661           - Now properly enforces control height for single line controls
17662           - Added support for CharacterCasing
17663           - Added IsInputKey override
17664           - Fixed Keys.Enter logic
17665           - Added SetBoundsCore override
17666           - Fixed mouse selection handling
17667
17668 2005-01-03  Jackson Harper  <jackson@ximian.com>
17669
17670         * TreeView.cs:
17671           - Collapse and uncheck all nodes when CheckBoxes is disabled.
17672           - Checkboxes are always aligned to the bottom of the node,
17673           regardless of item height.
17674           - Use the node bounds to draw the text so we can center it when
17675           the item height is greater then the font height.
17676           - Node::Bounds are only the text part of the node.
17677         * TreeNode.cs: New method to combine collapsing and unchecking all
17678           nodes recursively.
17679
17680 2005-01-02  Jackson Harper  <jackson@ximian.com>
17681
17682         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
17683         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
17684         tree when a check is changed. TODO: Only refresh the checked node.
17685
17686 2004-12-30  Jackson Harper  <jackson@ximian.com>
17687
17688         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
17689         * TreeNode.cs: When collapsing make sure to never collapse the
17690         root node.
17691
17692 2004-12-29  Jackson Harper  <jackson@ximian.com>
17693
17694         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
17695         
17696 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
17697
17698         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
17699
17700 2004-12-28  Peter Bartok  <pbartok@novell.com>
17701
17702         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
17703           not yet assigned
17704
17705 2004-12-28  Peter Bartok  <pbartok@novell.com>
17706
17707         * Control.cs (WndProc): Added WM_HELP handler, now generates
17708           HelpRequested event
17709         * Form.cs: Added HelpButton property and required support code
17710         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
17711
17712 2004-12-28  Peter Bartok  <pbartok@novell.com>
17713
17714         * CommonDialog.cs:
17715           - Made DialogForm.owner variable internal
17716           - Added check to ensure owner form is set before setting
17717             owner properties in CreateParams
17718
17719 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
17720
17721         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
17722           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
17723           GetCursorPos.  Fix major visibility issues.  Rework the windowing
17724           system to support borderless/titleless windows (implements menus).
17725           Fix GetWindowPos.  Implement initial background color support for
17726           views.
17727
17728 2004-12-28  Peter Bartok  <pbartok@novell.com>
17729
17730         * Form.cs (get_CreateParams): Make sure we have an owner before using
17731           the owner variable. Implement proper default if no owner exists
17732
17733 2004-12-28  Peter Bartok  <pbartok@novell.com>
17734
17735         * In preparation for making Managed.Windows.Forms the default build target
17736           for System.Windows.Forms, the following stubbed files were added.
17737           Dialogs are currently being implemented by contributors and are only
17738           short-term place holders.
17739         * ColorDialog.cs: Initial check-in (minmal stub)
17740         * DataGrid.cs: Initial check-in (minimal stub)
17741         * DataGridLineStyle.cs: Initial check-in (minimal stub)
17742         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
17743         * DataGridTableStyle.cs: Initial check-in (minimal stub)
17744         * FontDialog.cs: Initial check-in (minimal stub)
17745         * FileDialog.cs: Initial check-in (minimal stub)
17746         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
17747         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
17748         * OpenFileDialog: Initial check-in (minimal stub)
17749         * IComponentEditorPageSite.cs: Initial check-in
17750         * Splitter.cs: Initial check-in (for Jackson)
17751         * SplitterEventArgs.cs: Initial check-in (for Jackson)
17752         * SplitterEventHandler.cs: Initial check-in (for Jackson)
17753         * TextBox.cs: Initial check-in; still needs some wiring to
17754           TextControl backend
17755         * Form.cs: Implemented ControlBox property
17756         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
17757         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
17758         * TextControl.cs: Added selection functionality; added todo header
17759         * TextBoxBase.cs:
17760           - Implemented Lines property
17761           - Implemented TextHeight property
17762           - Implemented SelectedText property
17763           - Implemented SelectionLength property
17764           - Implemented SelectAll method
17765           - Implemented ToString method
17766           - Removed and cleaned up some debug code
17767           - Implemented (still buggy) mouse text selection
17768
17769 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
17770
17771         * ComboBox.cs: Complete DropDownList implementation, fixes.
17772
17773 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
17774
17775         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
17776         * ComboBoxStyle.cs: ComboBoxStyle enum
17777         * ComboBox.cs: Initial work on ComboBox control
17778
17779 2004-12-21  Peter Bartok  <pbartok@novell.com>
17780
17781         * Control.cs (ctor, CreateParams): Moved setting of is_visible
17782           forward so that anything that creates a window gets the default,
17783           also no longer uses Visible property in CreateParams to avoid
17784           walking up the parent chain and possibly get the wrong visible
17785           status. Fixed IsVisible to no longer walk up to the parent.
17786
17787 2004-12-21  Peter Bartok  <pbartok@novell.com>
17788
17789         * Form.cs (ShowDialog): Unset modality for the proper window
17790  
17791 2004-12-20  Peter Bartok  <pbartok@novell.com>
17792
17793         * CommonDialog.cs: Initial check-in
17794
17795 2004-12-20  Peter Bartok  <pbartok@novell.com>
17796
17797         * Control.cs (Visible): Now uses the parent window instead of the
17798           client area window for the property
17799
17800         * Form.cs
17801           - ShowDialog(): Now uses the proper window for modality
17802           - The default visibility state for the form parent is now false. This
17803             will prevent the user from seeing all the changes to the form and
17804             its controls before the application hits Application.Run()
17805           - Removed some stale commented out code
17806
17807         * NativeWindow.cs:
17808           - Added FindWindow() method to have a method to check for existence
17809             of a window handle
17810           - Added ability to override default exception handling (for example
17811             when debugging with VS.Net; to do this the ExternalExceptionHandler
17812             define must be set
17813           - Removed some useless debug output
17814
17815         * XplatUIX11.cs:
17816           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
17817             not working as expected
17818           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
17819             property to allow switching back to the modal window if focus is
17820             given to another one of our windows (Application Modal)
17821           - Now only sets override_redirect if we create a window
17822             without WS_CAPTION
17823           - Moved EventMask selection before mapping of newly created window
17824             so we can catch the map event as well
17825           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
17826           - Added various Atom related DllImports
17827           - Implemented Exit() method
17828           - .ctor() : No longer shows window if WS_VISIBLE is not defined
17829             in the CreateParams
17830
17831         * MessageBox.cs: Now properly deals with the FormParent window by
17832           providing an override the FormParent CreateParams property to
17833           set as POPUP instead of OVERLAPPED window.
17834
17835 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17836
17837         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
17838         Minor code cleanup.
17839
17840 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17841         
17842         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
17843
17844 2004-12-18  Peter Bartok  <pbartok@novell.com>
17845
17846         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
17847           implementing SetModal() method
17848
17849 2004-12-18  Peter Bartok  <pbartok@novell.com>
17850
17851         * X11Structs.cs (XGCValues): Fixed type of function element
17852         * XplatUI.cs: Added ScrollWindow() method
17853         * XplatUIDriver.cs: Added ScrollWindow() abstract
17854         * XplatUIWin32.cs: Implemented ScrollWindow() method
17855         * XplatUIX11.cs: Implemented ScrollWindow() method
17856         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
17857
17858 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17859
17860         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
17861         Some more keyboard support (INCOMPLETE)
17862
17863 2004-12-17  Peter Bartok  <pbartok@novell.com>
17864
17865         * TextControl.cs:
17866         - Added color attribute to line tags.
17867         - Added color argument to all functions dealing with tags
17868         - Added color argument support to various functions
17869         - Fixed miss-calculation of baseline/shift in certain circumstances
17870
17871         * TextBoxBase.cs: Added new color option to test code
17872
17873 2004-12-17  Jackson Harper  <jackson@ximian.com>
17874
17875         * TreeNode.cs:
17876         * MonthCalendar.cs: Signature fixes
17877
17878 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17879
17880         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
17881         keyboard event moved it.  Create a new graphics context for each paint resolves this
17882
17883 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17884
17885         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
17886         Make caret exist and go blink blink.  Initial keyboard support.
17887         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
17888         works.
17889
17890 2004-12-17  Jackson Harper  <jackson@ximian.com>
17891
17892         * XplatUIStructs.cs: Updated set of virtual keycodes.
17893         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
17894
17895 2004-12-17  Jackson Harper  <jackson@ximian.com>
17896
17897         * XplatUIX11.cs: Prune old keyboard code.
17898
17899 2004-12-17  Jackson Harper  <jackson@ximian.com>
17900
17901         * XplatUIX11.cs: When generating mouse wparams get the modifier
17902         keys from the ModifierKeys property.
17903
17904 2004-12-17  Jackson Harper  <jackson@ximian.com>
17905
17906         * X11Keyboard.cs: Send up/down input when generating
17907         messages. Remove some unused vars.
17908
17909 2004-12-17  Jackson Harper  <jackson@ximian.com>
17910
17911         * TabControl.cs:
17912         * TreeView.cs: get rid of warnings.
17913
17914 2004-12-17  Jackson Harper  <jackson@ximian.com>
17915
17916         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
17917
17918 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
17919
17920         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
17921           CheckedListBox.cs: Implementation
17922
17923 2004-12-17  Peter Bartok  <pbartok@novell.com>
17924
17925         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
17926
17927 2004-12-16  Peter Bartok  <pbartok@novell.com>
17928
17929         * TextControl.cs:
17930           - InsertCharAtCaret(): Fixed start pos fixup
17931           - CaretLine_get: No longer derives the line from the tag, the tag
17932             could be stale if lines in the document have been added or deleted
17933           - RebalanceAfterDelete(): Fixed bug in balancing code
17934           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
17935           - Line.Streamline(): Now can also elminate leading empty tags
17936           - DumpTree(): Added a few more tests and prevented exception on
17937             uninitialized data
17938           - Added Debug section for Combining lines
17939           - Delete(): Now copies all remaining properties of a line
17940           
17941         * TextBoxBase.cs:
17942           - Left mousebutton now sets the caret (and middle button still acts
17943             as formatting tester, which must go away soon)
17944           - Added Debug section for Deleting/Combining lines
17945           - Fixed calculations for UpdateView after Combining lines
17946
17947 2004-12-16  Peter Bartok  <pbartok@novell.com>
17948
17949         * TextControl.cs: Now properly aligns text on a baseline, using the
17950           new XplatUI.GetFontMetrics() method. Simplified several calculations
17951         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
17952           defined
17953
17954 2004-12-16  Peter Bartok  <pbartok@novell.com>
17955
17956         * XplatUI.cs: Added GetFontMetrics() method
17957         * XplatUIDriver.cs: Added GetFontMetrics() abstract
17958         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
17959           into libgdiplus, our private GetFontMetrics function
17960         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
17961         * XplatUIWin32.cs: Implemented GetFontMetrics() method
17962
17963 2004-12-16  Jackson Harper  <jackson@ximain.com>
17964
17965         * XplatUIStruct.cs: Add enum for dead keys
17966         * X11Keyboard.cs: Map and unmap dead keys.
17967
17968 2004-12-16  Jackson Harper  <jackson@ximian.com>
17969
17970         * X11Keyboard.cs: Detect and use the num lock mask.
17971
17972 2004-12-16  Peter Bartok  <pbartok@novell.com>
17973
17974         * Control.cs (CreateGraphics): Added check to make sure the
17975           handle of the window exists before calling Graphics.FromHwnd()
17976
17977 2004-12-16  Peter Bartok  <pbartok@novell.com>
17978
17979         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
17980           contains a lot of code that's not supposed to be there for the
17981           real thing, but required for developing/testing the textbox
17982           backend.
17983
17984 2004-12-16  Peter Bartok  <pbartok@novell.com>
17985
17986         * TextControl.cs:
17987         - Fixed Streamline method
17988         - Added FindTag method to Line
17989         - Added DumpTree method for debugging
17990         - Added DecrementLines() method for deleting lines
17991         - Fixed UpdateView to update the cursor to end-of-line on single-line
17992           updates
17993         - Added PositionCaret() method
17994         - Fixed MoveCaret(LineDown) to move into the last line, too
17995         - Added InsertChar overload
17996         - Fixed InsertChar tag offset calculations
17997         - Added DeleteChar() method
17998         - Added Combine() method for folding lines
17999         - Fixed Delete() method, no longer allocates wasted Line object and
18000           now copies all properties when swapping nodes
18001         - Delete() method now updates document line counter
18002
18003 2004-12-15  Jackson Harper  <jackson@ximian.com>
18004
18005         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
18006         * X11Keyboard.cs: Expose the currently selected modifier keys
18007         through a property.
18008
18009 2004-12-15  Peter Bartok  <pbartok@novell.com>
18010
18011         * TextControl.cs: Initial check-in. Still incomplete
18012
18013 2004-12-15  Jackson Harper  <jackson@ximian.com>
18014
18015         * TreeNode.cs:
18016         * TreeView.cs: Fix build on csc (second time today ;-))
18017
18018 2004-12-15  Jackson Harper  <jackson@ximian.com>
18019
18020         * TreeView.cs: Store the treenodes plus/minus box bounds when it
18021         is calculated and use this for click testing.
18022         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
18023
18024 2004-12-15  Jackson Harper  <jackson@ximian.com>
18025
18026         * TreeView.cs: Pass the nodes image index to the image list when
18027         drawing that image.
18028
18029 2004-12-15  Jackson Harper  <jackson@ximian.com>
18030
18031         * X11Keyboard.cs: Set messages hwnd.
18032         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
18033         post_message calls.
18034
18035 2004-12-15  Jackson Harper  <jackson@ximian.com>
18036
18037         * X11Keyboard.cs: Fix to compile with csc.
18038         
18039 2004-12-15  Jackson Harper  <jackson@ximian.com>
18040
18041         * X11Structs.cs: Add key mask values
18042         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
18043         * X11Keyboard.cs: New file - Extrapolates and interpolates key
18044         down/up foo into WM_CHAR foo
18045         * KeyboardLayouts.cs: Common keyboard layouts
18046         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
18047         post messages into the main queue.
18048
18049 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
18050
18051         * Button.cs: implement ProcessMnemonic
18052         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
18053           brushes everytime
18054         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
18055         * ButtonBase.cs: Show HotkeyPrefix (not the &)
18056
18057 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
18058         
18059         * MonthCalendar.cs: Implemented click-hold for next/previous month
18060           and date selection
18061           
18062 2004-12-11  Peter Bartok  <pbartok@novell.com>
18063
18064         * X11Structs.cs:
18065           - Added XKeyboardState (moved from XplatUIX11.cs)
18066           - Added XCreateGC related enums and structures
18067           - Added GXFunction for XSetFunction
18068
18069         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
18070
18071         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
18072           CaretVisible() calls
18073
18074         * ToolTip.cs: Added code to prevent stealing focus from app windows
18075
18076         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
18077           DestroyCaret, SetCaretPos and CaretVisible)
18078
18079         * XplatUIX11.cs:
18080           - Added implementation for caret functions
18081           - Moved hover variables into a struct, to make it a bit easier
18082             on the eyes and to debug
18083           - Removed XKeyboardState (moved to XplatUIX11.cs)
18084           - Moved Keyboard properties into the properties region
18085
18086         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
18087           call to get a graphics context for our control
18088
18089         * XplatUIOSX.cs: Added empty overrides for the new caret functions
18090
18091         * TreeView.cs: Fixed bug. No matter what color was set it would always
18092           return SystemColors.Window
18093
18094         * XplatUIWin32.cs: Implemented caret overrides
18095
18096 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
18097
18098         * ListBox.cs: fire events, implement missing methods and properties,
18099         sorting.
18100
18101 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
18102
18103         * MonthCalendar.cs: invalidation bug fixing
18104         * ThemeWin32Classic.cs: paint fixing
18105
18106 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
18107
18108         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
18109         prepare the CGContextRef there now.
18110
18111 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
18112
18113         * MonthCalendar.cs:
18114           - optimisationL only invalidate areas that have changed
18115         * ThemeWin32Classic.cs:
18116           - only paint parts that intersect with clip_area
18117
18118 2004-12-09  Peter Bartok  <pbartok@novell.com>
18119
18120         * Application.cs: Undid changes from r37004 which cause problems
18121         on X11
18122
18123 2004-12-09  Ravindra  <rkumar@novell.com>
18124
18125         * ToolBar.cs: Added support for displaying ContextMenu
18126         attached to a button on ToolBar.
18127         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
18128         property.
18129
18130 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18131
18132         * Label.cs: autosize works in text change and removes unnecessary
18133         invalidate
18134
18135 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18136
18137         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18138         remove warnings
18139
18140 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
18141
18142         * XplatUIOSX.cs: Added mouse move/click/grab support
18143         Remove some debugging WriteLines not needed anymore.
18144         Add window resizing/positioning.
18145         Fix visibility on reparenting.
18146
18147 2004-12-08  Peter Bartok  <pbartok@novell.com>
18148
18149         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
18150
18151 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
18152
18153         * XplatUIOSX.cs: Initial checkin
18154         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
18155
18156 2004-12-03  Ravindra <rkumar@novell.com>
18157
18158         * ListView.cs: Added some keybindings and fixed scrolling.
18159         ScrollBars listen to ValueChanged event instead of Scroll
18160         Event. This would let us take care of all changes being
18161         done in the scrollbars' values programmatically or manually.
18162         * ListView.cs (CanMultiselect): Added a check for shift key.
18163         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
18164         * ListViewItem.cs (Clone): Fixed. We need to make a copy
18165         of ListViewSubItemCollection as well.
18166
18167 2004-12-06  Peter Bartok <pbartok@novell.com>
18168
18169         * Control.cs (Parent): Added check and exception to prevent
18170         circular parenting
18171
18172 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
18173
18174         * ListBox.cs: implemented clipping, selection single and multiple,
18175         bug fixing
18176
18177 2004-12-03  Ravindra <rkumar@novell.com>
18178
18179         * ListView.cs (ListView_KeyDown):
18180         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
18181         when CTRL key is pressed.
18182         * ListViewItem.cs (Selected): Fixed setting the property.
18183
18184 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18185
18186         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
18187
18188         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
18189         MinimizeBox, ShowInTaskbar, TopMost properties.
18190
18191         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
18192         will be implemented).
18193
18194 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18195
18196         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
18197
18198         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
18199         tests.
18200         
18201         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
18202         
18203         * TreeView.cs: BackColor is Colors.Window.
18204
18205 2004-12-01  Jackson Harper  <jackson@ximian.com>
18206
18207         * TreeView.cs: When resizing the tree if the user is making it
18208         smaller we don't get expose events, so we need to handle adding
18209         the horizontal scrollbar in the size changed handler as well as
18210         the expose handler.
18211
18212 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
18213
18214         * DrawItemState.cs: fixes wrong enum values
18215
18216 2004-12-01  Jackson Harper  <jackson@ximian.com>
18217
18218         * TreeView.cs: Resize the hbar as well as the vbar on resize.
18219
18220 2004-12-01  Jackson Harper  <jackson@ximian.com>
18221
18222         * NodeLabelEditEventArgs.cs:
18223         * NodeLabelEditEventHandler.cs:
18224         * OpenTreeNodeEnumerator.cs:
18225         * TreeNode.cs:
18226         * TreeNodeCollection.cs:
18227         * TreeView.cs:
18228         * TreeViewAction.cs:
18229         * TreeViewCancelEventArgs.cs:
18230         * TreeViewCancelEventHandler.cs:
18231         * TreeViewEventArgs.cs:
18232         * TreeViewEventHandler.cs: Initial implementation.
18233
18234 2004-12-01  Ravindra <rkumar@novell.com>
18235
18236         * ListView.cs (CalculateListView): Fixed scrolling related
18237         calculations. Also, removed some debug statements from other
18238         places.
18239         * ListViewItem.cs: Changed access to 'selected' instance variable
18240         from private to internal.
18241         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
18242
18243 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
18244
18245         * ThemeWin32Classic.cs: remove cache of brush and pens for
18246         specific controls and use the global system, fixes scrollbutton
18247         bugs (for small sizes, disabled, etc)
18248         
18249         * ScrollBar.cs: does not show the thumb for very small controls
18250         (as MS) and allow smaller buttons that the regular size
18251
18252 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
18253
18254         * UpDownBase.cs: Add abstract methods for the interface.
18255         Add new virtual methods (need to be hooked up to TextEntry when it
18256         exists).
18257         Add override methods for most features.
18258         Computes the size, forces the height of the text entry.
18259
18260         * NumericUpDown.cs: Put here the current testing code.
18261
18262         * Set eol-style property on all files that do not have mixed line
18263         endings, to minimize the future problems.  There are still a few
18264         files with mixed endings, and someone should choose whether they
18265         want to move it or not.
18266
18267 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
18268
18269         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
18270         System.Colors
18271         
18272 2004-11-30  Ravindra <rkumar@novell.com>
18273
18274         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
18275         drawing and replaced use of SystemColors by theme colors.
18276         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
18277         * ListView.cs (ListViewItemCollection.Add): Throw exception when
18278         same ListViewItem is being added more than once.
18279
18280 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
18281
18282         * MonthCalendar.cs:
18283           - ControlStyles love to make the control not flicker
18284           
18285 2004-11-30  Peter Bartok  <pbartok@novell.com>
18286
18287         * CharacterCasing.cs: Added
18288
18289 2004-11-29  Peter Bartok  <pbartok@novell.com>
18290
18291         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18292           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
18293           I am removing these files as they conflict with already completed
18294           work. While it is fantastic to get contributions to MWF, I
18295           respectfully ask that everyone please coordinate their contributions
18296           through mono-winforms-list or #mono-winforms at this time. We're
18297           explicitly avoiding stubbing and don't want controls that don't have
18298           their basic functionality implemented in svn. Please also see
18299           http://www.mono-project.com/contributing/winforms.html
18300
18301
18302 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
18303
18304         * Application.cs (ModalRun): Don't hang after exit.
18305
18306         * Theme.cs: New TreeViewDefaultSize property.
18307
18308         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
18309         with less hardcoded SystemColors constant.
18310         Implemented TreeViewDefaultSize.
18311
18312         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18313         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
18314
18315
18316 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
18317
18318         * MonthCalendar.cs:
18319           - Fix NextMonthDate and PrevMonthDate click moving calendar
18320
18321 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18322
18323         * MonthCalendar.cs:
18324           - Fix usage of ScrollChange Property when scrolling months
18325
18326 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
18327
18328         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
18329          - Fixes menu destroying
18330          - Support adding and removing items on already created menus
18331
18332 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18333
18334         * MonthCalendar.cs:
18335           - Re-worked all bolded dates handling to match win32
18336         * ThemeWin32Classic.cs:
18337           - Fixed rendering with bolded dates
18338
18339 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
18340
18341         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
18342         - Horizontal scroolbar
18343         - Multicolumn
18344         - Fixes
18345
18346
18347 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
18348
18349         * MonthCalendar.cs:
18350           - Fix Usage of MaxSelectionCount from SelectionRange
18351           - Fixed Shift + Cursor Selection
18352           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
18353           - Fixed normal cursor selection to be compat with win32
18354           - Fixed Shift + Mouse Click selection
18355
18356 2004-11-24  Peter Bartok <pbartok@novell.com>
18357
18358         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
18359         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
18360         * XplatUIX11.cs:
18361           - CreatedKeyBoardMsg now updates keystate with Alt key
18362           - Added workaround for timer crash to CheckTimers, Jackson will
18363             develop a proper fix and check in later
18364           - Implemented DispatchMessage
18365           - Removed calling the native window proc from GetMessage (call
18366             now moved to DispatchMessage)
18367
18368         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
18369           the keydata (Fixes bug #69831)
18370
18371         * XplatUIWin32.cs:
18372           - (DispatchMessage): Switched to return IntPtr
18373           - Added DllImport for SetFocus
18374
18375 2004-11-24  Ravindra <rkumar@novell.com>
18376
18377         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
18378         background drawing.
18379         * ListViewItem.cs: Fixed various properties, calculations
18380         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
18381         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
18382         and some internal properties. Fixed MouseDown handler and Paint
18383         method.
18384
18385 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18386
18387         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
18388
18389 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18390
18391         * ContainerControl.cs: correct accidental check in of local changes
18392
18393 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18394
18395         * ThemeWin32Classic.cs:
18396                 - Fixed Drawing Last month in grid (sometimes not showing)
18397         * MonthCalendar.cs:
18398                 - Fixed title width calculation bug (makeing title small)
18399
18400 2004-11-23  Peter Bartok <pbartok@novell.com>
18401
18402         * XplatUIX11.cs:
18403           - Added generation of WM_MOUSEHOVER event
18404           - Added missing assignment of async_method atom
18405           - Fixed WM_ERASEBKGND; now only redraws the exposed area
18406
18407 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18408
18409         * ThemeWin32Classic.cs:
18410                 - Fixed Drawing of today circle when showtodaycircle not set
18411                 - fixed drawing of first and last month in the grid (gay dates)
18412         * MonthCalendar.cs:
18413                 - Fixed Drawing of today circle
18414                 - Fixed drawing of grady dates
18415                 - Fixed HitTest for today link when ShowToday set to false
18416                 - Fixed DefaultSize to obey ShowToday
18417
18418 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18419
18420         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
18421         * System.Windows.Forms/Theme.cs
18422         * MonthCalendar.cs: added for MonthCalendar
18423         * SelectionRange.cs: added for MonthCalendar
18424         * Day.cs: added for MonthCalendar: added for MonthCalendar
18425         * DateRangeEventArgs.cs: added for MonthCalendar
18426         * DateRangeEventHandler.cs: added for MonthCalendar
18427
18428 2004-11-22  Ravindra <rkumar@novell.com>
18429
18430         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
18431         property.
18432
18433 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
18434
18435         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
18436         event handler.
18437         
18438         * NumericUpDown.cs: Added new implementation.
18439         * UpDownBase.cs: Added new implementation.
18440
18441         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
18442         implementations.
18443         
18444         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
18445         implementations.
18446
18447         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
18448         methods.
18449
18450 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
18451
18452         * Timer.cs  (Dispose): Should call the base dispose when
18453         overriding.
18454
18455 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18456
18457         * ScrollBar.cs: updates thumb position when max, min or increment
18458         is changed
18459
18460 2004-11-21  Ravindra <rkumar@novell.com>
18461
18462         * ListView.cs: Implemented item selection, activation and
18463         column header style. Fixed properties to do a redraw, if
18464         required. Added support for MouseHover, DoubleClick, KeyDown
18465         and KeyUp event handling and some minor fixes.
18466         * ListViewItem.cs: Fixed constructor.
18467         * ThemeWin32Classic.cs: Improved drawing for ListView.
18468
18469 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18470
18471         * ThemeWin32Classic.cs: initial listbox drawing code
18472         * DrawMode.cs: new enumerator
18473         * ListControl.cs: stubbed class
18474         * ListBox.cs: initial implementation
18475         * Theme.cs: new methods definitions
18476         * SelectionMode.cs: new enumerator
18477
18478 2004-11-17  Peter Bartok  <pbartok@novell.com>
18479
18480         * XplatUIWin32.cs: Added double-click events to the class style
18481         * Control.cs (WndProc):
18482           - Added handling of click-count to MouseDown/ MouseUp events.
18483           - Added handling of middle and right mouse buttons
18484           - Removed old debug code
18485
18486 2004-11-17  Jackson Harper  <jackson@ximian.com>
18487
18488         * XplatUIX11.cs: Use the new Mono.Unix namespace.
18489
18490 2004-11-17  Ravindra <rkumar@novell.com>
18491
18492         * ListView.cs: Added event handling for MouseMove/Up/Down.
18493         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
18494         * ThemeWin32Classic.cs: We need to clear the graphics context and
18495         draw column header in a proper state.
18496
18497
18498 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
18499
18500         *  Menu.cs: fixes signature
18501
18502 2004-11-16  Peter Bartok  <pbartok@novell.com>
18503
18504         * XplatUIX11.cs (GetMessage): Implemented generation of
18505           double click mouse messages
18506
18507 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
18508
18509         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
18510         not by menu
18511
18512 2004-11-11  Peter Bartok  <pbartok@novell.com>
18513
18514         * HandleData.cs: Added Visible property
18515         * XplatUIX11.cs (IsVisible): Now uses Visible property from
18516           HandleData
18517         * XplatUIX11.cs: Removed old debug leftovers
18518         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
18519         * Control.cs (WndProc): Removed old debug leftovers,
18520           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
18521           needed WM_SIZE handling
18522
18523 2004-11-11  Jackson Harper  <jackson@ximian.com>
18524
18525         * OwnerDrawPropertyBag.cs:
18526         * TreeViewImageIndexConverter.cs: Initial implementation
18527
18528 2004-11-10  Jackson Harper  <jackson@ximian.com>
18529
18530         * ThemeWin32Classic.cs:
18531         * TabControl.cs: instead of moving tabs by the slider pos just
18532         start drawing at the tab that is offset by the slider. This way
18533         scrolling always moves by exactly one tab.
18534
18535 2004-11-10  Jackson Harper  <jackson@ximian.com>
18536
18537         * TabControl.cs: You can only scroll left when the slider has
18538         already ben moved right.
18539         
18540 2004-11-10  Jackson Harper  <jackson@ximian.com>
18541
18542         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
18543         the clip area.
18544         
18545 2004-11-10  Jackson Harper  <jackson@ximian.com>
18546
18547         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
18548         clip area.
18549         
18550 2004-11-09  Jackson Harper  <jackson@ximian.com>
18551
18552         * TabControl.cs (CalcXPos): New helper method so we can determine
18553         the proper place to start drawing vertical tabs.
18554         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
18555         
18556 2004-11-09  Jackson Harper  <jackson@ximian.com>
18557
18558         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
18559         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
18560         and Bottom, left and right are illegal values for this and
18561         multiline is enabled when the alignment is set to left or right.
18562         (DrawTab): Each alignment block should draw the text itself now
18563         because Left requires special love. Also add rendering for Left
18564         aligned tabs.
18565         
18566 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
18567
18568         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
18569         does not destroy the windows, removes debugging messages
18570
18571 2004-11-09  jba  <jba-mono@optusnet.com.au>
18572
18573         * ThemeWin32Classic.cs
18574         (DrawButtonBase): Fix verticle text rect clipping in windows
18575         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18576         rendering and incorrect text rect clipping
18577         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18578         rendering and incorrect text rect clipping
18579         
18580 2004-11-08  Jackson Harper  <jackson@ximian.com>
18581
18582         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
18583         bottom when they are bottom aligned so the bottoms of the tabs get
18584         displayed.
18585         * TabControl.cs (DropRow): Move rows up instead of down when the
18586         tab control is bottom aligned.
18587
18588 2004-11-08 13:59  pbartok
18589
18590         * XplatUIX11.cs:
18591           - Added handling for various window styles
18592           - Added handling for popup windows
18593           - Added SetTopmost handling
18594
18595 2004-11-08 13:55  pbartok
18596
18597         * XplatUIWin32.cs:
18598           - Added argument to SetTopmost method
18599           - Fixed broken ClientToScreen function
18600
18601 2004-11-08 13:53  pbartok
18602
18603         * XplatUIStructs.cs:
18604           - Added missing WS_EX styles
18605
18606 2004-11-08 13:53  pbartok
18607
18608         * XplatUI.cs, XplatUIDriver.cs:
18609           - Added argument to SetTopmost
18610
18611 2004-11-08 13:52  pbartok
18612
18613         * X11Structs.cs:
18614           - Added XSetWindowAttributes structure
18615           - Improved XWindowAttributes structure
18616           - Added SetWindowValuemask enum
18617           - Added window creation arguments enum
18618           - Added gravity enum
18619           - Added Motif hints structure
18620           - Added various Motif flags and enums
18621           - Added PropertyMode enum for property functions
18622
18623 2004-11-08 13:50  pbartok
18624
18625         * Form.cs:
18626           - Fixed arguments for updated SetTopmost method
18627
18628 2004-11-08 13:49  pbartok
18629
18630         * ToolTip.cs:
18631           - Fixed arguments for updated SetTopmost function
18632           - Fixed usage of PointToClient
18633
18634 2004-11-08 13:44  pbartok
18635
18636         * MenuAPI.cs:
18637           - Added Clipping of children and siblings
18638
18639 2004-11-08 13:41  pbartok
18640
18641         * MainMenu.cs:
18642           - Removed SetMenuBarWindow call. We do this in Form.cs
18643
18644 2004-11-08 13:40  jackson
18645
18646         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
18647           scrolling jimmi in the correct location with bottom aligned tabs
18648
18649 2004-11-08 13:36  pbartok
18650
18651         * ContainerControl.cs:
18652           - Implemented BindingContext
18653           - Implemented ParentForm
18654
18655 2004-11-08 12:46  jackson
18656
18657         * TabControl.cs: Put bottom rendered tabs in the right location
18658
18659 2004-11-08 07:15  jordi
18660
18661         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
18662           removes dead code
18663
18664 2004-11-05 17:30  jackson
18665
18666         * TabControl.cs: When selected tabs are expanded make sure they
18667           don't go beyond the edges of the tab control
18668
18669 2004-11-05 14:57  jackson
18670
18671         * TabControl.cs: Reset show_slider so if the control is resized to
18672           a size where it is no longer needed it's not displayed anymore
18673
18674 2004-11-05 13:16  jackson
18675
18676         * TabControl.cs: Make tab pages non visible when added to the
18677           control
18678
18679 2004-11-05 12:42  jackson
18680
18681         * TabControl.cs: Implement SizeMode.FillToRight
18682
18683 2004-11-05 12:16  jackson
18684
18685         * Control.cs: Do not call CreateHandle if the handle is already
18686           created
18687
18688 2004-11-05 11:46  jackson
18689
18690         * TabControl.cs: Remove superflous call to CalcTabRows
18691
18692 2004-11-05 09:07  jackson
18693
18694         * XplatUIX11.cs: Update for Mono.Posix changes
18695
18696 2004-11-05 07:00  ravindra
18697
18698         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
18699           scrolling.
18700
18701 2004-11-04 22:47  jba
18702
18703         * ThemeWin32Classic.cs:
18704           - Fix Button rendering for FlatStyle = Flat or Popup
18705           - Fix RadioButton and CheckBox rendering when Appearance = Button
18706             (normal and flatstyle).
18707           - Correct outer rectangle color when drawing focus rectangle
18708           - Adjust button bounds to be 1 px smaller when focused
18709           - Make button not draw sunken 3d border when pushed (windows compat)
18710           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
18711           - Offset the text in RadioButton and Checkbox when being rendered as
18712           a button.
18713           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
18714           radiobuttons
18715           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
18716           - Fixed disabled text rendering for normally rendered radiobuttons
18717
18718 2004-11-04 10:26  jackson
18719
18720         * TabControl.cs: Recalculate tab rows when resizing
18721
18722 2004-11-04 07:47  jordi
18723
18724         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
18725           collection completion, drawing issues, missing features
18726
18727 2004-11-04 05:03  ravindra
18728
18729         * ScrollBar.cs:
18730                 - We need to recalculate the Thumb area when
18731                 LargeChange/maximum/minimum values are changed.
18732           - We set the 'pos' in UpdatePos() method to minimum, if it's less
18733                 than minimum. This is required to handle the case if large_change is
18734                 more than max, and use LargeChange property instead of large_change
18735                 variable.
18736           - We return max+1 when large_change is more than max, like MS does.
18737
18738 2004-11-04 04:29  ravindra
18739
18740         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
18741                 - Changed default value signatures (prefixed all with ListView).
18742                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
18743                 ListView.
18744           - Fixed calculations for ListViewItem and implemented Clone()
18745           method.
18746
18747 2004-11-04 04:26  ravindra
18748
18749         * Theme.cs, ThemeWin32Classic.cs:
18750                 - Changed default ListView values signatures (prefixed all with
18751                 ListView).
18752           - Fixed default size values for VScrollBar and HScrollBar.
18753                 - Fixed DrawListViewItem method.
18754
18755 2004-11-04 04:05  ravindra
18756
18757         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
18758
18759 2004-11-04 04:04  ravindra
18760
18761         * ImageList.cs: Implemented the missing overload for Draw method.
18762
18763 2004-11-03 19:29  jackson
18764
18765         * TabControl.cs: Handle dropping rows on selection properly
18766
18767 2004-11-03 11:59  jackson
18768
18769         * TabControl.cs: remove debug code
18770
18771 2004-11-03 11:52  jackson
18772
18773         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
18774           the scrolly widgerywoo
18775
18776 2004-11-02 13:52  jackson
18777
18778         * TabControl.cs: Resize the tab pages and tabs when the tab control
18779           is resized
18780
18781 2004-11-02 13:40  jackson
18782
18783         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
18784           selected tab to the bottom
18785
18786 2004-11-02 13:39  jackson
18787
18788         * TabPage.cs: Store the tab pages row
18789
18790 2004-11-02 12:33  jordi
18791
18792         * MenuItem.cs: fixes handle creation
18793
18794 2004-11-02 11:42  jackson
18795
18796         * TabControl.cs: signature fix
18797
18798 2004-11-02 08:56  jackson
18799
18800         * TabControl.cs: Calculate whether the tab is on an edge properly.
18801           Remove top secret debugging code
18802
18803 2004-11-01 19:57  jackson
18804
18805         * TabControl.cs: Add click handling, and proper sizing
18806
18807 2004-11-01 19:47  jackson
18808
18809         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
18810           tab controls
18811
18812 2004-11-01 19:39  jackson
18813
18814         * TabPage.cs: add internal property to store the bounds of a tab
18815           page
18816
18817 2004-10-30 04:23  ravindra
18818
18819         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
18820           values.
18821
18822 2004-10-30 04:21  ravindra
18823
18824         * ListView.cs, ListViewItem.cs: Added support for scrolling and
18825           fixed calculations.
18826
18827 2004-10-30 03:06  pbartok
18828
18829         * XplatUIX11.cs:
18830           - Removed extension of DllImported libs
18831
18832 2004-10-29 09:55  jordi
18833
18834         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
18835           navigation, itemcollection completion, menu fixes
18836
18837 2004-10-27 22:58  pbartok
18838
18839         * XplatUIX11.cs:
18840           - Now throws a nice error message when no X display could be opened
18841
18842 2004-10-26 13:51  jordi
18843
18844         * ListView.cs: removes warning
18845
18846 2004-10-26 03:55  ravindra
18847
18848         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
18849           ThemeWin32Classic.cs: Some formatting for my last checkins.
18850
18851 2004-10-26 03:36  ravindra
18852
18853         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
18854           control and default values.
18855
18856 2004-10-26 03:35  ravindra
18857
18858         * Theme.cs: Added some default values for ListView control.
18859
18860 2004-10-26 03:33  ravindra
18861
18862         * ToolBar.cs: ToolBar should use the user specified button size, if
18863           there is any. Added a size_specified flag for the same.
18864
18865 2004-10-26 03:33  ravindra
18866
18867         * ColumnHeader.cs: Added some internal members and calculations for
18868           ColumnHeader.
18869
18870 2004-10-26 03:32  ravindra
18871
18872         * ListViewItem.cs: Calculations for ListViewItem.
18873
18874 2004-10-26 03:31  ravindra
18875
18876         * ListView.cs: Added some internal members and calculations for
18877           ListView.
18878
18879 2004-10-22 13:31  jordi
18880
18881         * MenuAPI.cs: speedup menus drawing
18882
18883 2004-10-22 13:16  jackson
18884
18885         * XplatUIX11.cs: Make sure to update exposed regions when adding an
18886           expose event
18887
18888 2004-10-22 11:49  jackson
18889
18890         * Control.cs: oops
18891
18892 2004-10-22 11:41  jackson
18893
18894         * Control.cs: Check to see if the window should have its background
18895           repainted by X when drawing.
18896
18897 2004-10-22 11:31  jackson
18898
18899         * XplatUIX11.cs: When invalidating areas only use XClearArea if
18900           clear is true, this way we do not get flicker from X repainting the
18901           background
18902
18903 2004-10-22 11:28  jackson
18904
18905         * XEventQueue.cs: Queue properly
18906
18907 2004-10-21 09:38  jackson
18908
18909         * XEventQueue.cs: Fix access modifier
18910
18911 2004-10-21 09:36  jackson
18912
18913         * XEventQueue.cs: Don't loose messages
18914
18915 2004-10-21 09:22  jackson
18916
18917         * XEventQueue.cs: Don't loose messages
18918
18919 2004-10-20 04:15  jordi
18920
18921         * BootMode.cs: enum need it by SystemInfo
18922
18923 2004-10-19 21:58  pbartok
18924
18925         * XplatUIWin32.cs:
18926           - Small sanity check
18927
18928 2004-10-19 21:56  pbartok
18929
18930         * Form.cs:
18931           - Added private FormParentWindow class which acts as the container
18932             for our form and as the non-client area where menus are drawn
18933           - Added/Moved required tie-ins to Jordi's menus
18934           - Fixed/Implemented the FormStartPosition functionality
18935
18936 2004-10-19 21:52  pbartok
18937
18938         * Control.cs:
18939           - Removed unneeded locals
18940           - Added code to all size and location properties to understand and
18941             deal with the parent container of Form
18942
18943 2004-10-19 21:33  pbartok
18944
18945         * Application.cs:
18946           - Fixed to deal with new Form subclasses for menus
18947
18948 2004-10-19 17:48  jackson
18949
18950         * XEventQueue.cs: commit correct version of file
18951
18952 2004-10-19 16:50  jackson
18953
18954         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
18955
18956 2004-10-19 16:15  jordi
18957
18958         * MenuAPI.cs: MenuBarCalcSize returns the height
18959
18960 2004-10-19 08:31  pbartok
18961
18962         * Control.cs:
18963           - Added missing call to PreProcessMessage before calling OnXXXKey
18964           methods
18965
18966 2004-10-19 00:04  ravindra
18967
18968         * ToolTip.cs: Fixed constructor.
18969
18970 2004-10-18 09:31  jordi
18971
18972         * MenuAPI.cs: menuitems in menubars do not have shortcuts
18973
18974 2004-10-18 09:26  jordi
18975
18976         * MenuItem.cs: fixes MenuItem class signature
18977
18978 2004-10-18 08:56  jordi
18979
18980         * MenuAPI.cs: prevents windows from showing in the taskbar
18981
18982 2004-10-18 00:28  ravindra
18983
18984         * ToolTip.cs: Suppressed a warning message.
18985
18986 2004-10-18 00:27  ravindra
18987
18988         * Control.cs: Default value of visible property must be true.
18989
18990 2004-10-17 23:19  pbartok
18991
18992         * ToolTip.cs:
18993           - Complete implementation
18994
18995 2004-10-17 23:19  pbartok
18996
18997         * XplatUIX11.cs:
18998           - Added EnableWindow method
18999           - Added SetModal stub
19000           - Added generation of WM_ACTIVATE message (still needs testing)
19001           - Added SetTopMost stub
19002           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
19003
19004 2004-10-17 23:17  pbartok
19005
19006         * XplatUIWin32.cs:
19007           - Removed VirtualKeys to XplatUIStructs
19008           - Implemented SetTopMost method
19009           - Implemented EnableWindow method
19010           - Bugfix in ScreenToClient()
19011           - Bugfixes in ClientToScreen()
19012
19013 2004-10-17 22:51  pbartok
19014
19015         * XplatUIStructs.cs:
19016           - Added WS_EX styles to WindowStyles enumeration
19017
19018 2004-10-17 22:50  pbartok
19019
19020         * XplatUI.cs, XplatUIDriver.cs:
19021           - Added method for enabling/disabling windows
19022           - Added method for setting window modality
19023           - Added method for setting topmost window
19024
19025 2004-10-17 22:49  pbartok
19026
19027         * ThemeWin32Classic.cs:
19028           - Added ToolTip drawing code
19029
19030 2004-10-17 22:49  pbartok
19031
19032         * Theme.cs:
19033           - Added ToolTip abstracts
19034
19035 2004-10-17 22:47  pbartok
19036
19037         * Form.cs:
19038           - Fixed Form.ControlCollection to handle owner relations
19039           - Added Owner/OwnedForms handling
19040           - Implemented Z-Ordering for owned forms
19041           - Removed unneeded private overload of ShowDialog
19042           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
19043             so I hope)
19044           - Fixed Close(), had wrong default
19045           - Added firing of OnLoad event
19046           - Added some commented out debug code for Ownership handling
19047
19048 2004-10-17 22:16  pbartok
19049
19050         * Control.cs:
19051           - Fixed/implemented flat list of controls
19052
19053 2004-10-17 22:14  pbartok
19054
19055         * Application.cs:
19056           - Added code to simulate modal dialogs on Win32
19057
19058 2004-10-17 16:11  jordi
19059
19060         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
19061           mouse event
19062
19063 2004-10-17 13:39  jordi
19064
19065         * MenuAPI.cs: menu drawing fixes
19066
19067 2004-10-15 09:10  ravindra
19068
19069         * StructFormat.cs: General Enum.
19070
19071 2004-10-15 09:09  ravindra
19072
19073         * SizeGripStyle.cs: Enum for Form.
19074
19075 2004-10-15 09:08  ravindra
19076
19077         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
19078           in Theme for ListView.
19079
19080 2004-10-15 09:06  ravindra
19081
19082         * ColumnHeader.cs: Flushing some formatting changes.
19083
19084 2004-10-15 09:05  ravindra
19085
19086         * ListViewItem.cs: Implemented GetBounds method and fixed coding
19087           style.
19088
19089 2004-10-15 09:03  ravindra
19090
19091         * ListView.cs: Implemented Paint method and fixed coding style.
19092
19093 2004-10-15 07:34  jordi
19094
19095         * MenuAPI.cs: fix for X11
19096
19097 2004-10-15 07:32  ravindra
19098
19099         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
19100                 - Renamed Paint() method to Draw() for clarity. Also, moved
19101                 DrawImage() to OnPaint().
19102
19103 2004-10-15 07:25  ravindra
19104
19105         * CheckBox.cs, RadioButton.cs:
19106                 - Removed Redraw (), we get it from ButtonBase.
19107                 - Implemented Paint (), to do class specific painting.
19108
19109 2004-10-15 07:16  ravindra
19110
19111         * ButtonBase.cs:
19112                 - Redraw () is not virtual now.
19113                 - Added an internal virtual method Paint (), so that
19114                 derived classes can do their painting on their own.
19115                 - Modified OnPaint () to call Paint ().
19116
19117 2004-10-15 06:43  jordi
19118
19119         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
19120           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
19121
19122 2004-10-15 00:30  ravindra
19123
19124         * MessageBox.cs:
19125                 - MessageBox on windows does not have min/max buttons.
19126                 This change in CreateParams fixes this on Windows. We
19127                 still need to implement this windowstyle behavior in
19128                 our X11 driver.
19129
19130 2004-10-14 05:14  ravindra
19131
19132         * ToolBar.cs:
19133                 - Changed Redraw () to do a Refresh () always.
19134                 - Fixed the MouseMove event handling when mouse is pressed,
19135                 ie drag event handling.
19136                 - Replaced the usage of ToolBarButton.Pressed property to
19137                 ToolBarButton.pressed internal variable.
19138
19139 2004-10-14 05:10  ravindra
19140
19141         * ToolBarButton.cs:
19142                 - Added an internal member 'inside' to handle mouse move
19143                 with mouse pressed ie mouse drag event.
19144                 - Changed 'Pressed' property to return true only when
19145                 'inside' and 'pressed' are both true.
19146                 - Some coding style love.
19147
19148 2004-10-14 00:17  ravindra
19149
19150         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
19151           public method.
19152
19153 2004-10-14 00:15  ravindra
19154
19155         * ButtonBase.cs: Redraw () related improvements.
19156
19157 2004-10-14 00:14  ravindra
19158
19159         * MessageBox.cs: Moved InitFormSize () out of Paint method and
19160           removed unnecessary calls to Button.Show () method.
19161
19162 2004-10-13 17:50  pbartok
19163
19164         * XplatUIX11.cs:
19165           - Formatting fix
19166           - Removed destroying of window until we solve the problem of X
19167             destroying the window before us on shutdown
19168
19169 2004-10-13 16:32  pbartok
19170
19171         * ButtonBase.cs:
19172           - Now Redraws on MouseUp for FlatStyle Flat and Popup
19173
19174 2004-10-13 14:18  pbartok
19175
19176         * XplatUIX11.cs:
19177           - Added code to destroy the X window
19178
19179 2004-10-13 14:18  pbartok
19180
19181         * XplatUIWin32.cs:
19182           - Added code to destroy a window
19183
19184 2004-10-13 14:12  pbartok
19185
19186         * ButtonBase.cs:
19187           - Added the Redraw on Resize that got dropped in the last rev
19188
19189 2004-10-13 09:06  pbartok
19190
19191         * ThemeWin32Classic.cs:
19192           - Path from John BouAntoun:
19193             * Fix check rendering (centre correctly for normal style, offset
19194               correctly for FlatStyle).
19195             * Fix border color usage (use backcolor) for FlatStyle.Popup
19196             * Use checkbox.Capture instead of checkbox.is_pressed when
19197               rendering flatstyle states.
19198
19199 2004-10-12 21:48  pbartok
19200
19201         * ThemeWin32Classic.cs:
19202           - Removed all occurences of SystemColors and replaced them with the
19203             matching theme color
19204
19205 2004-10-12 21:41  pbartok
19206
19207         * ThemeWin32Classic.cs:
19208           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
19209             him using the function for flatstyle drawing
19210           - Changed functions to use the new version of CPDrawBorder3D
19211
19212 2004-10-12 21:15  pbartok
19213
19214         * ControlPaint.cs:
19215           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
19216             match MS documentation. They need to return defined colors if the
19217             passed color matches the configured control color. Thanks to John
19218             BouAntoun for pointing this out.
19219
19220 2004-10-12 20:57  pbartok
19221
19222         * Control.cs:
19223           - Fix from John BouAntoun: Raise ForeColorChanged event when text
19224             color is changed
19225
19226 2004-10-12 20:46  pbartok
19227
19228         * CheckBox.cs:
19229           - Fix from John BouAntoun: Now properly sets the Appearance property
19230
19231 2004-10-12 20:45  pbartok
19232
19233         * ThemeWin32Classic.cs:
19234           - Fixes from John BouAntoun: now handles forecolors and backcolors
19235             for flatstyle rendered controls much better; It also fixes normal
19236             checkbox rendering when pushed or disabled.
19237
19238 2004-10-08 02:50  jordi
19239
19240         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
19241           work
19242
19243 2004-10-07 08:56  jordi
19244
19245         * ThemeWin32Classic.cs: Removes deletion of cached brushes
19246
19247 2004-10-06 03:59  jordi
19248
19249         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
19250           XplatUIWin32.cs: removes warnings from compilation
19251
19252 2004-10-05 12:23  jackson
19253
19254         * RadioButton.cs: Fix ctor
19255
19256 2004-10-05 11:10  pbartok
19257
19258         * MessageBox.cs:
19259           - Partial implementation by Benjamin Dasnois
19260
19261 2004-10-05 10:15  jackson
19262
19263         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
19264           by John BouAntoun
19265
19266 2004-10-05 03:07  ravindra
19267
19268         * ToolBar.cs:
19269                 - Removed a private method, Draw ().
19270                 - Fixed the ButtonDropDown event handling.
19271                 - Fixed MouseMove event handling.
19272
19273 2004-10-05 03:04  ravindra
19274
19275         * ThemeWin32Classic.cs:
19276                 - Added DrawListView method and ListViewDefaultSize property.
19277                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
19278                 - Changed DOS style CRLF to Unix format (dos2unix).
19279
19280 2004-10-05 03:03  ravindra
19281
19282         * Theme.cs:
19283                 - Added DrawListView method and ListViewDefaultSize property.
19284
19285 2004-10-05 02:42  ravindra
19286
19287         * ToolBarButton.cs: Added an internal member dd_pressed to handle
19288           clicks on DropDown arrow.
19289
19290 2004-10-04 22:56  jackson
19291
19292         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
19293           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
19294           Control handle the buffers, derived classes should not have to
19295           CreateBuffers themselves.
19296
19297 2004-10-04 21:20  jackson
19298
19299         * StatusBar.cs: The control handles resizing the buffers now.
19300
19301 2004-10-04 21:18  jackson
19302
19303         * Control.cs: When resizing the buffers should be invalidated. This
19304           should be handled in Control not in derived classes.
19305
19306 2004-10-04 14:45  jackson
19307
19308         * TabPage.cs: oops
19309
19310 2004-10-04 02:14  pbartok
19311
19312         * LeftRightAlignment.cs:
19313           - Initial check-in
19314
19315 2004-10-04 01:09  jordi
19316
19317         * ThemeWin32Classic.cs: fixes right button position causing right
19318           button not showing on horizontal scrollbars
19319
19320 2004-10-02 13:12  pbartok
19321
19322         * XplatUIX11.cs:
19323           - Simplified the Invalidate method by using an X call instead of
19324             generating the expose ourselves
19325           - Added an expose when the window background is changed
19326           - Implemented ClientToScreen method
19327
19328 2004-10-02 13:08  pbartok
19329
19330         * XplatUIWin32.cs:
19331           - Added Win32EnableWindow method (test for implementing modal
19332           dialogs)
19333           - Added ClientToScreen method and imports
19334
19335 2004-10-02 13:07  pbartok
19336
19337         * XplatUI.cs, XplatUIDriver.cs:
19338           - Added ClientToScreen coordinate translation method
19339
19340 2004-10-02 13:06  pbartok
19341
19342         * KeyPressEventArgs.cs:
19343           - Fixed access level for constructor
19344
19345 2004-10-02 13:06  pbartok
19346
19347         * NativeWindow.cs:
19348           - Changed access level for the window_collection hash table
19349
19350 2004-10-02 13:05  pbartok
19351
19352         * Form.cs:
19353           - Added KeyPreview property
19354           - Added Menu property (still incomplete, pending Jordi's menu work)
19355           - Implemented ProcessCmdKey
19356           - Implemented ProcessDialogKey
19357           - Implemented ProcessKeyPreview
19358
19359 2004-10-02 13:02  pbartok
19360
19361         * Control.cs:
19362           - Added private method to get the Control object from the window
19363           handle
19364           - Implemented ContextMenu property
19365           - Implemented PointToScreen
19366           - Implemented PreProcessMessage
19367           - Implemented IsInputChar
19368           - Implemented IsInputKey
19369           - Implemented ProcessCmdKey
19370           - Completed ProcessKeyEventArgs
19371           - Fixed message loop to call the proper chain of functions on key
19372           events
19373           - Implemented ProcessDialogChar
19374           - Implemented ProcessDialogKey
19375           - Implemented ProcessKeyMessage
19376           - Implemented ProcessKeyPreview
19377           - Added RaiseDragEvent stub (MS internal method)
19378           - Added RaiseKeyEvent stub (MS internal method)
19379           - Added RaiseMouseEvent stub (MS Internal method)
19380           - Added RaisePaintEvent stub (MS Internal method)
19381           - Added ResetMouseEventArgs stub (MS Internal method)
19382           - Implemented RtlTranslateAlignment
19383           - Implemented RtlTranslateContent
19384           - Implemented RtlTranslateHorizontal
19385           - Implemented RtlTranslateLeftRight
19386           - Added generation of KeyPress event
19387
19388 2004-10-02 05:57  ravindra
19389
19390         * ListViewItem.cs: Added attributes.
19391
19392 2004-10-02 05:32  ravindra
19393
19394         * ListView.cs: Added attributes.
19395
19396 2004-10-01 11:53  jackson
19397
19398         * Form.cs: Implement the Close method so work on MessageBox can
19399           continue.
19400
19401 2004-09-30 14:06  pbartok
19402
19403         * XplatUIX11.cs:
19404           - Bug fixes
19405
19406 2004-09-30 11:34  jackson
19407
19408         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
19409
19410 2004-09-30 07:26  ravindra
19411
19412         * ListViewItemConverter.cs: Converter for ListViewItem.
19413
19414 2004-09-30 07:26  ravindra
19415
19416         * SortOrder.cs: Enum for ListView control.
19417
19418 2004-09-30 07:25  ravindra
19419
19420         * ColumnHeader.cs: Supporting class for ListView control.
19421
19422 2004-09-30 07:24  ravindra
19423
19424         * ListView.cs, ListViewItem.cs: Initial implementation.
19425
19426 2004-09-30 07:20  ravindra
19427
19428         * ItemActivation.cs: Enum for ListView Control.
19429
19430 2004-09-29 20:29  pbartok
19431
19432         * XplatUIX11.cs:
19433           - Added lookup of pixel value for background color; tries to get a
19434             color 'close' to the requested color, it avoids having to create a
19435             colormap.  Depending on the display this could mean the used color
19436             is slightly off the desired color. Might have to change it to a more
19437             resource intensive colormap approach, but it will work as a
19438           workaround to avoid red screens.
19439
19440 2004-09-29 14:27  jackson
19441
19442         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
19443
19444 2004-09-28 12:44  pbartok
19445
19446         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
19447           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
19448           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
19449           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
19450           TrackBar.cs, VScrollBar.cs:
19451           - Streamlined Theme interfaces:
19452             * Each DrawXXX method for a control now is passed the object for
19453               the control to be drawn in order to allow accessing any state the
19454               theme might require
19455
19456             * ControlPaint methods for the theme now have a CP prefix to avoid
19457               name clashes with the Draw methods for controls
19458
19459             * Every control now retrieves it's DefaultSize from the current
19460             theme
19461
19462 2004-09-28 12:17  jackson
19463
19464         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
19465           drawing
19466
19467 2004-09-24 14:57  jackson
19468
19469         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
19470           Gives us a nice little performance boost.
19471
19472 2004-09-24 12:02  jackson
19473
19474         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
19475           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
19476           Control and supporting classes. Initial checkin
19477
19478 2004-09-23 13:08  jackson
19479
19480         * Form.cs: Temp build fixage
19481
19482 2004-09-23 01:39  ravindra
19483
19484         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
19485           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
19486           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
19487           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
19488           EventHandlers needed by ListView Control.
19489
19490 2004-09-22 14:12  pbartok
19491
19492         * ScrollableControl.cs:
19493           - Implemented DockPadding property
19494           - Implemented AutoScroll property
19495           - Implemented AutoScrollMargin property
19496           - Implemented AutoScrollMinSize property
19497           - Implemented AutoScrollPosition property
19498           - Implemented DisplayRectangle property (still incomplete)
19499           - Implemented CreateParams property
19500           - Implemented HScroll property
19501           - Implemented VScroll property
19502           - Implemented OnVisibleChanged property
19503
19504 2004-09-22 14:09  pbartok
19505
19506         * Form.cs:
19507           - Added Form.ControllCollection class
19508           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
19509             RemoveOwnedForm (still incomplete, missing on-top and common
19510             minimize/maximize behaviour)
19511           - Added StartPosition property (still incomplete, does not use when
19512             creating the form)
19513           - Added ShowDialog() methods (still incomplete, missing forcing the
19514             dialog modal)
19515
19516 2004-09-22 14:05  pbartok
19517
19518         * Application.cs:
19519           - Added message loop for modal dialogs
19520
19521 2004-09-22 14:02  pbartok
19522
19523         * GroupBox.cs:
19524           - Fixed wrong types for events
19525
19526 2004-09-22 14:00  pbartok
19527
19528         * Shortcut.cs, FormWindowState.cs:
19529           - Fixed wrong values
19530
19531 2004-09-22 12:01  jackson
19532
19533         * Control.cs: Text is never null
19534
19535 2004-09-20 22:14  pbartok
19536
19537         * XplatUIWin32.cs:
19538           - Fixed accessibility level for Idle handler
19539
19540 2004-09-20 18:54  jackson
19541
19542         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19543           XplatUIX11.cs: New message loop that uses poll so we don't get a
19544           busy loop
19545
19546 2004-09-17 10:43  pbartok
19547
19548         * ScrollBar.cs:
19549           - Fixed behaviour of arrow buttons. Now properly behaves like
19550             Buttons (and like Microsoft's scrollbar arrow buttons)
19551
19552 2004-09-17 10:14  pbartok
19553
19554         * ScrollBar.cs:
19555           - Added missing release of keyboard/mouse capture
19556
19557 2004-09-17 06:18  jordi
19558
19559         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
19560           Theme.cs: Very early menu support
19561
19562 2004-09-16 17:45  pbartok
19563
19564         * XplatUIWin32.cs:
19565           - Fixed sending a window to the front
19566           - Added overload for SetWindowPos to avoid casting
19567
19568 2004-09-16 17:44  pbartok
19569
19570         * Control.cs:
19571           - Added SendToBack and BringToFront methods
19572
19573 2004-09-16 07:00  ravindra
19574
19575         * Copyright: Added Novell URL.
19576
19577 2004-09-16 07:00  ravindra
19578
19579         * ToolBar.cs: Invalidate should be done before redrawing.
19580
19581 2004-09-15 21:19  ravindra
19582
19583         * ColumnHeaderStyle.cs: Enum for ListView Control.
19584
19585 2004-09-15 21:18  ravindra
19586
19587         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
19588           ListView Control.
19589
19590 2004-09-13 18:26  jackson
19591
19592         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
19593           properly
19594
19595 2004-09-13 18:13  jackson
19596
19597         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
19598           a second thread and post messages into the main threads message
19599           queue. This makes timing much more consistent. Both win2K and XP
19600           have a minimum timer value of 15 milliseconds, so we now do this
19601           too.
19602
19603 2004-09-13 15:18  pbartok
19604
19605         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19606           XplatUIX11.cs:
19607           - Added Z-Ordering methods
19608
19609 2004-09-13 10:56  pbartok
19610
19611         * Form.cs:
19612           - Fixed #region names
19613           - Moved properties and methods into their proper #regions
19614
19615 2004-09-13 10:51  pbartok
19616
19617         * Form.cs:
19618           - Added Accept and CancelButton properties
19619           - Added ProcessDialogKey() method
19620
19621 2004-09-13 08:18  pbartok
19622
19623         * IWindowTarget.cs:
19624           - Initial check-in
19625
19626 2004-09-10 21:50  pbartok
19627
19628         * Control.cs:
19629           - Added DoDragDrop() [incomplete]
19630           - Properly implemented 'Visible' handling
19631           - Added SetVisibleCore()
19632           - Implemented FindChildAtPoint()
19633           - Implemented GetContainerControl()
19634           - Implemented Hide()
19635
19636 2004-09-10 19:28  pbartok
19637
19638         * Control.cs:
19639           - Moved methods into their appropriate #regions
19640           - Reordered methods within regions alphabetically
19641
19642 2004-09-10 18:57  pbartok
19643
19644         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19645           - Added method to retrieve text from window
19646
19647 2004-09-10 18:56  pbartok
19648
19649         * Control.cs:
19650           - Moved some internal functions into the internal region
19651           - Implemented FontHeight
19652           - Implemented RenderRightToLeft
19653           - Implemented ResizeRedraw
19654           - Implemented ShowFocusCues
19655           - Implemented ShowKeyboardCues
19656           - Implemented FromChildHandle
19657           - Implemented FromHandle
19658           - Implemented IsMnemonic
19659           - Implemented ReflectMessage
19660           - All public and protected Static Methods are now complete
19661
19662 2004-09-10 16:54  pbartok
19663
19664         * Control.cs:
19665           - Implemented remaining missing public instance properties
19666           - Alphabetized some out of order properties
19667
19668 2004-09-10 05:51  ravindra
19669
19670         * PictureBox.cs: Added a check for null image.
19671
19672 2004-09-10 00:59  jordi
19673
19674         * GroupBox.cs: remove cvs tag
19675
19676 2004-09-09 05:25  ravindra
19677
19678         * ToolBar.cs: Make redraw accessible from ToolBarButton.
19679
19680 2004-09-09 05:23  ravindra
19681
19682         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
19683           parent redraw.
19684
19685 2004-09-09 02:28  pbartok
19686
19687         * ThemeWin32Classic.cs:
19688           - Improve disabled string look
19689
19690 2004-09-09 01:15  jordi
19691
19692         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
19693           args and handler
19694
19695 2004-09-08 23:56  ravindra
19696
19697         * ItemBoundsPortion.cs: It's enum, not a class!
19698
19699 2004-09-08 23:47  ravindra
19700
19701         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
19702           Enums for Form.
19703
19704 2004-09-08 21:13  ravindra
19705
19706         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
19707           ListView control.
19708
19709 2004-09-08 21:03  ravindra
19710
19711         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
19712           avoid crash.
19713
19714 2004-09-08 21:01  ravindra
19715
19716         * ScrollableControl.cs: Removed unreachable code.
19717
19718 2004-09-08 06:45  jordi
19719
19720         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
19721
19722 2004-09-08 01:00  jackson
19723
19724         * XplatUIX11.cs: Only run the timers when updating the message
19725           queue. This effectively gives X messages a higher priority then
19726           timer messages. Timers still need love though
19727
19728 2004-09-07 14:01  jackson
19729
19730         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
19731           this for us and the handle is no longer valid.
19732
19733 2004-09-07 13:59  jackson
19734
19735         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
19736           loop that manages to not crash. TODO: Add poll and cleanup timers
19737
19738 2004-09-07 11:12  jordi
19739
19740         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
19741
19742 2004-09-07 03:40  jordi
19743
19744         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
19745           fixes, methods, multiple links
19746
19747 2004-09-06 06:55  jordi
19748
19749         * Control.cs: Caches ClientRectangle rectangle value
19750
19751 2004-09-05 02:03  jordi
19752
19753         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
19754           certain situations
19755
19756 2004-09-04 11:10  jordi
19757
19758         * Label.cs: Refresh when font changed
19759
19760 2004-09-02 16:24  pbartok
19761
19762         * Control.cs:
19763           - Added sanity check to creation of double buffer bitmap
19764
19765 2004-09-02 16:24  pbartok
19766
19767         * ButtonBase.cs:
19768           - Fixed selection of text color
19769           - Fixed handling of resize event; now properly recreates double
19770             buffering bitmap
19771           - Added missing assignment of TextAlignment
19772           - Added proper default for TextAlignment
19773
19774 2004-09-02 14:26  pbartok
19775
19776         * RadioButton.cs:
19777           - Added missing RadioButton.RadioButtonAccessibleObject class
19778
19779 2004-09-02 14:26  pbartok
19780
19781         * Control.cs:
19782           - Added missing Control.ControlAccessibleObject class
19783           - Started to implement Select()ion mechanisms, still very incomplete
19784
19785 2004-09-02 14:25  pbartok
19786
19787         * AccessibleObject.cs:
19788           - Added missing methods
19789
19790 2004-09-02 14:23  pbartok
19791
19792         * AccessibleNavigation.cs, AccessibleSelection.cs:
19793           - Initial check-in
19794
19795 2004-09-02 10:32  jordi
19796
19797         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
19798           pool for pens, brushes, and hatchbruses
19799
19800 2004-09-01 15:30  jackson
19801
19802         * StatusBar.cs: Fix typo
19803
19804 2004-09-01 14:44  pbartok
19805
19806         * RadioButton.cs:
19807           - Fixed state
19808
19809 2004-09-01 14:39  pbartok
19810
19811         * Button.cs, RadioButton.cs:
19812           - Functional initial check-in
19813
19814 2004-09-01 14:01  pbartok
19815
19816         * CheckBox.cs:
19817           - Added missing default
19818           - Added missing region mark
19819
19820 2004-09-01 09:10  jordi
19821
19822         * Label.cs: fixes method signatures, new methods, events, fixes
19823           autosize
19824
19825 2004-09-01 07:19  jordi
19826
19827         * Control.cs: Init string variables with an empty object
19828
19829 2004-09-01 04:20  jordi
19830
19831         * Control.cs: fires OnFontChanged event
19832
19833 2004-08-31 20:07  pbartok
19834
19835         * ButtonBase.cs:
19836           - Enabled display of strings
19837
19838 2004-08-31 20:05  pbartok
19839
19840         * Form.cs:
19841           - Added (partial) implementation of DialogResult; rest needs to be
19842             implemented when the modal loop code is done
19843
19844 2004-08-31 19:55  pbartok
19845
19846         * CheckBox.cs:
19847           - Fixed to match the removal of the needs_redraw concept
19848
19849 2004-08-31 19:55  pbartok
19850
19851         * ButtonBase.cs:
19852           - Removed the rather odd split between 'needs redraw' and redrawing
19853           - Now handles the events that require regeneration (ambient
19854             properties and size)
19855
19856 2004-08-31 19:41  pbartok
19857
19858         * Control.cs:
19859           - Added firing of BackColorChanged event
19860           - Added TopLevelControl property
19861           - Fixed handling of WM_ERASEBKGRND message
19862
19863 2004-08-31 12:49  pbartok
19864
19865         * ButtonBase.cs:
19866           - Removed debug
19867           - Minor fixes
19868
19869 2004-08-31 12:48  pbartok
19870
19871         * CheckBox.cs:
19872           - Finished (famous last words)
19873
19874 2004-08-31 04:35  jordi
19875
19876         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
19877           scrolling bugs, adds new methods
19878
19879 2004-08-30 14:42  pbartok
19880
19881         * CheckBox.cs:
19882           - Implemented CheckBox drawing code
19883
19884 2004-08-30 14:42  pbartok
19885
19886         * ButtonBase.cs:
19887           - Made Redraw() and CheckRedraw() virtual
19888           - Improved mouse up/down/move logic to properly track buttons
19889
19890 2004-08-30 09:44  pbartok
19891
19892         * CheckBox.cs:
19893           - Updated to fix broken build. Not complete yet.
19894
19895 2004-08-30 09:28  pbartok
19896
19897         * CheckState.cs:
19898           - Initial checkin
19899
19900 2004-08-30 09:17  pbartok
19901
19902         * Appearance.cs:
19903           - Initial check-in
19904
19905 2004-08-27 16:12  ravindra
19906
19907         * ToolBarButton.cs: Added TypeConverter attribute.
19908
19909 2004-08-27 16:07  ravindra
19910
19911         * ImageIndexConverter.cs: Implemented.
19912
19913 2004-08-27 14:17  pbartok
19914
19915         * Control.cs:
19916           - Removed unneeded stack vars
19917           - First attempt to fix sizing issues when layout is suspended
19918
19919 2004-08-25 15:35  jordi
19920
19921         * ScrollBar.cs: more fixes to scrollbar
19922
19923 2004-08-25 14:04  ravindra
19924
19925         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
19926           Added the missing divider code and grip for ToolBar Control.
19927
19928 2004-08-25 13:20  pbartok
19929
19930         * Control.cs:
19931           - Control now properly passes the ambient background color to child
19932             controls
19933
19934 2004-08-25 13:20  jordi
19935
19936         * ScrollBar.cs: small bug fix regarding bar position
19937
19938 2004-08-25 12:33  pbartok
19939
19940         * Timer.cs:
19941           - Now only calls SetTimer or KillTimer if the enabled state has
19942           changed
19943
19944 2004-08-25 12:33  pbartok
19945
19946         * XplatUIWin32.cs:
19947           - Fixed timer handling, now seems to work
19948           - Improved error message for window creation
19949
19950 2004-08-25 12:32  pbartok
19951
19952         * Control.cs:
19953           - Fixed generation of MouseUp message
19954
19955 2004-08-25 12:29  jordi
19956
19957         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
19958           and fixes for progressbar
19959
19960 2004-08-24 18:43  ravindra
19961
19962         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
19963           in ToolBar control.
19964
19965 2004-08-24 17:15  pbartok
19966
19967         * Panel.cs:
19968           - Added #region
19969           - Added missing events
19970           - Alphabetized
19971
19972 2004-08-24 17:14  pbartok
19973
19974         * StatusBar.cs, PictureBox.cs:
19975           - Now uses Control's CreateParams
19976
19977 2004-08-24 16:36  pbartok
19978
19979         * XplatUIX11.cs:
19980           - Fixed background color handling
19981           - Fixed sending of enter/leave events on a grab
19982
19983 2004-08-24 16:35  pbartok
19984
19985         * X11Structs.cs:
19986           - Refined definitions for CrossingEvent
19987
19988 2004-08-24 12:37  jordi
19989
19990         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
19991           formmating, methods signature, and adds missing events
19992
19993 2004-08-24 12:24  jordi
19994
19995         * Control.cs: fire OnEnabledChanged event
19996
19997 2004-08-24 11:17  pbartok
19998
19999         * XplatUIWin32.cs:
20000           - Implemented SetTimer() and KillTimer()
20001
20002 2004-08-24 11:16  pbartok
20003
20004         * XplatUIX11.cs:
20005           - Now uses Remove instead of Add to kill the timer
20006
20007 2004-08-24 10:16  jackson
20008
20009         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
20010           picture boxes in the theme now. Draw picture box borders and obey
20011           sizing modes
20012
20013 2004-08-24 05:49  jackson
20014
20015         * Timer.cs: Remove top secret debugging code
20016
20017 2004-08-24 05:34  jackson
20018
20019         * PictureBox.cs: Temp hack to make picture boxes draw their full
20020           image
20021
20022 2004-08-24 05:29  jackson
20023
20024         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20025           XplatUIX11.cs: Move timers to the driver level. On X they are
20026           queued by the driver and checked on idle.
20027
20028 2004-08-24 01:07  jackson
20029
20030         * XplatUIX11.cs: Use a queue for async messages instead of passing
20031           them as ClientMessages since that was totally broken. Also simply
20032           check for events and return an idle message if none are found. This
20033           gives us an idle handler, and prevents deadlocking when no messages
20034           are in the queue.
20035
20036 2004-08-23 18:19  ravindra
20037
20038         * XplatUIWin32.cs: Removed the unwanted destructor.
20039
20040 2004-08-23 17:27  pbartok
20041
20042         * ButtonBase.cs:
20043           - Finishing touches. Works now, just needs some optimizations.
20044
20045 2004-08-23 16:53  jordi
20046
20047         * ScrollBar.cs: small fix
20048
20049 2004-08-23 16:45  pbartok
20050
20051         * Application.cs:
20052           - Removed debug output
20053           - Simplifications
20054
20055 2004-08-23 16:43  jordi
20056
20057         * ScrollBar.cs: [no log message]
20058
20059 2004-08-23 16:10  pbartok
20060
20061         * Form.cs:
20062           - Fixed handling of WM_CLOSE message
20063           - Removed debug output
20064
20065 2004-08-23 16:09  pbartok
20066
20067         * Application.cs:
20068           - Added handling of Idle event
20069           - Added handling of form closing
20070           - Fixed reporting of MessageLoop property
20071           - Removed some unneeded code, should provide a bit of a speedup
20072
20073 2004-08-23 15:22  pbartok
20074
20075         * Control.cs:
20076           - Added InitLayout() method
20077           - Added code to properly perform layout when Anchor or Dock property
20078             is changed
20079           - Changed 'interpretation' of ResumeLayout. MS seems to have a
20080             LAMESPEC, tried to do it in a way that makes sense
20081
20082 2004-08-23 14:10  jordi
20083
20084         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
20085           properties and methods
20086
20087 2004-08-23 13:55  pbartok
20088
20089         * Control.cs:
20090           - Properly fixed Jordi's last fix
20091           - Now uses Cursor's Position property instead of calling XplatUI
20092           directly
20093
20094 2004-08-23 13:44  jordi
20095
20096         * PaintEventHandler.cs: Adding missing attribute
20097
20098 2004-08-23 13:39  pbartok
20099
20100         * Cursor.cs:
20101           - Implemented Position property
20102
20103 2004-08-23 13:39  pbartok
20104
20105         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20106           - Added method to move mouse cursor
20107
20108 2004-08-23 13:39  pbartok
20109
20110         * XplatUIX11.cs:
20111           - Fixed setting of background color
20112           - Added method to move mouse cursor
20113
20114 2004-08-23 13:16  jordi
20115
20116         * Control.cs: avoids null exception
20117
20118 2004-08-22 17:46  jackson
20119
20120         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
20121           PictureBox
20122
20123 2004-08-22 17:40  jackson
20124
20125         * XplatUIX11.cs: Add some missing locks
20126
20127 2004-08-22 15:10  pbartok
20128
20129         * Control.cs, Form.cs:
20130           - Removed OverlappedWindow style from Control, instead it's default
20131             now is child
20132           - Made form windows OverlappedWindow by default
20133
20134 2004-08-22 13:34  jackson
20135
20136         * ScrollBar.cs: Update the position through the Value property so
20137           the OnValueChanged event is raised.
20138
20139 2004-08-22 12:04  pbartok
20140
20141         * SWF.csproj:
20142           - Added Cursor.cs and UserControl.cs
20143
20144 2004-08-22 12:03  pbartok
20145
20146         * Cursor.cs:
20147           - Started implementation, not usable yet
20148
20149 2004-08-22 12:00  pbartok
20150
20151         * UserControl.cs:
20152           - Implemented UserControl (complete)
20153
20154 2004-08-21 19:20  ravindra
20155
20156         * ToolBar.cs: Correcting the formatting mess of VS.NET.
20157
20158 2004-08-21 18:49  ravindra
20159
20160         * ToolBar.cs: Probably this completes the missing attributes in
20161           toolbar control.
20162
20163 2004-08-21 18:03  ravindra
20164
20165         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
20166           Fixed toolbar control signatures.
20167
20168 2004-08-21 16:32  pbartok
20169
20170         * LinkLabel.cs:
20171           - Signature Fixes
20172
20173 2004-08-21 16:30  pbartok
20174
20175         * Label.cs:
20176           - Signature fixes
20177
20178 2004-08-21 16:19  pbartok
20179
20180         * Control.cs, Label.cs:
20181           - Signature fixes
20182
20183 2004-08-21 15:57  pbartok
20184
20185         * ButtonBase.cs:
20186           - Added loads of debug output for development
20187           - Fixed typo in method name
20188
20189 2004-08-21 15:52  pbartok
20190
20191         * ToolBarButtonClickEventArgs.cs:
20192           - Added missing base class
20193
20194 2004-08-21 14:53  pbartok
20195
20196         * Control.cs:
20197           - Updated to match new GrabWindow signature
20198
20199 2004-08-21 14:51  pbartok
20200
20201         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20202           - Added method to get default display size
20203
20204 2004-08-21 14:23  pbartok
20205
20206         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20207           - Added method to query current grab state
20208           - Added argument to allow confining a grab to a window
20209
20210 2004-08-21 14:22  pbartok
20211
20212         * Keys.cs:
20213           - Added [Flags] attribute so that modifiers can be used in bitwise
20214           ops
20215
20216 2004-08-21 14:21  pbartok
20217
20218         * TrackBar.cs, ScrollBar.cs:
20219           - Replaced direct XplatUI calls with their Control counterpart
20220
20221 2004-08-21 13:32  pbartok
20222
20223         * Control.cs:
20224           - Implemented Created property
20225
20226 2004-08-21 13:28  pbartok
20227
20228         * Control.cs:
20229           - Implemented ContainsFocus
20230
20231 2004-08-21 13:26  pbartok
20232
20233         * Control.cs:
20234           - Implemented CausesValidation
20235
20236 2004-08-21 13:21  pbartok
20237
20238         * Control.cs:
20239           - Implemented CanFocus
20240           - Implemented CanSelect
20241           - Implemented Capture
20242
20243 2004-08-21 12:35  pbartok
20244
20245         * XplatUIWin32.cs:
20246           - Fixed bug with Async message handling
20247           - Implemented getting the ModifierKeys
20248
20249 2004-08-21 12:32  jackson
20250
20251         * AsyncMethodResult.cs: Make sure we have the mutex before we
20252           release it. Fixes BeginInvoke on windows
20253
20254 2004-08-21 11:31  pbartok
20255
20256         * XplatUIWin32.cs, XplatUIX11.cs:
20257           - Drivers now return proper mouse state
20258
20259 2004-08-21 10:54  jackson
20260
20261         * Control.cs: Implement EndInvoke
20262
20263 2004-08-21 10:48  jackson
20264
20265         * Timer.cs: Remove unneeded finalizer
20266
20267 2004-08-20 19:52  ravindra
20268
20269         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
20270           in mouse event handling in the ToolBar control.
20271
20272 2004-08-20 19:50  ravindra
20273
20274         * ImageList.cs: Changed draw method to use the arguments passed in
20275           to draw the image.
20276
20277 2004-08-20 18:58  pbartok
20278
20279         * XplatUIStructs.cs:
20280           - Added private message for async communication
20281
20282 2004-08-20 17:38  ravindra
20283
20284         * Control.cs: Made RightToLeft property virtual and removed a
20285           Console.WriteLine.
20286
20287 2004-08-20 14:39  jordi
20288
20289         * ThemeGtk.cs: use style_attach
20290
20291 2004-08-20 14:39  pbartok
20292
20293         * XplatUIWin32.cs:
20294           - Added jackson's Async code from X11 to Win32
20295
20296 2004-08-20 14:09  pbartok
20297
20298         * SWF.csproj:
20299           - Added all new files
20300
20301 2004-08-20 14:09  pbartok
20302
20303         * Control.cs:
20304           - Added call to set window background color
20305
20306 2004-08-20 14:03  pbartok
20307
20308         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20309           - Added method for setting the window background
20310
20311 2004-08-20 14:02  pbartok
20312
20313         * XplatUIWin32.cs:
20314           - Added method for setting the background color
20315           - Added handling for erasing the window background
20316
20317 2004-08-20 13:45  jordi
20318
20319         * TrackBar.cs: fixes timer, new properties and methods
20320
20321 2004-08-20 13:34  jackson
20322
20323         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
20324           correct thread
20325
20326 2004-08-20 13:22  jackson
20327
20328         * Timer.cs: Timer Tick events are now handed through Controls Async
20329           mechanism so the callbacks are executed in the same thread as X
20330
20331 2004-08-20 13:19  jackson
20332
20333         * XplatUIDriver.cs: Expose functionality to send async messages
20334           through the driver
20335
20336 2004-08-20 13:18  jackson
20337
20338         * Control.cs: Implement Begininvoke
20339
20340 2004-08-20 13:14  jackson
20341
20342         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
20343           messages through the driver
20344
20345 2004-08-20 13:12  jackson
20346
20347         * XplatUIX11.cs: Lock before all X operations. Also added Async
20348           method functionality through XSendEvent
20349
20350 2004-08-20 13:11  jackson
20351
20352         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
20353           This will screw up on 64 bit systems)
20354
20355 2004-08-20 13:10  jackson
20356
20357         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
20358           Async messages through X/Win32
20359
20360 2004-08-19 19:39  pbartok
20361
20362         * XplatUIX11.cs:
20363           - Updated code to match new HandleData.DeviceContext type
20364
20365 2004-08-19 19:38  pbartok
20366
20367         * HandleData.cs:
20368           - Made DeviceContext a generic object to allow usage from various
20369           drivers
20370           - Added support for queueing Windows messages
20371
20372 2004-08-19 19:37  pbartok
20373
20374         * XplatUIWin32.cs:
20375           - Added generation of MouseEnter, MouseLeave and MouseHover events
20376           - Added cleanup on EndPaint
20377
20378 2004-08-19 19:17  pbartok
20379
20380         * Control.cs:
20381           - Added handling of WM_MOUSEHOVER
20382           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
20383           code
20384
20385 2004-08-19 18:55  jordi
20386
20387         * ThemeGtk.cs: fixes button order
20388
20389 2004-08-19 18:12  jordi
20390
20391         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
20392
20393 2004-08-19 17:09  pbartok
20394
20395         * Control.cs:
20396           - Added Right property
20397           - Added RightToLeft property
20398
20399 2004-08-19 16:27  jordi
20400
20401         * ThemeGtk.cs: experimental GTK theme support
20402
20403 2004-08-19 16:26  jordi
20404
20405         * ITheme.cs, Theme.cs: move themes from an interface to a class
20406
20407 2004-08-19 16:25  jordi
20408
20409         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
20410           theme enhancaments
20411
20412 2004-08-19 16:04  pbartok
20413
20414         * XplatUIX11.cs:
20415           - Added colormap basics
20416           - Added a way to re-initialize with a different display handle
20417           - Fixed setting of the window background color
20418           - Added various X11 imports related to colors and colormaps
20419
20420 2004-08-19 15:51  pbartok
20421
20422         * X11Structs.cs:
20423           - Removed packing hints (Paolo suggested this a while back)
20424           - fixed colormap type
20425           - Added default Atom types
20426           - Added Screen and color structs and enums
20427
20428 2004-08-19 15:39  pbartok
20429
20430         * ImageList.cs:
20431           - Added missing Draw() method
20432           - Added missing RecreateHandle event
20433
20434 2004-08-19 15:30  pbartok
20435
20436         * Form.cs:
20437           - Added handling of WM_CLOSE
20438
20439 2004-08-18 13:16  jordi
20440
20441         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
20442           a table
20443
20444 2004-08-18 09:56  jordi
20445
20446         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
20447
20448 2004-08-17 15:31  ravindra
20449
20450         * SWF.csproj: Updated project.
20451
20452 2004-08-17 15:25  pbartok
20453
20454         * Control.cs:
20455           - Drawing improvement; don't call UpdateBounds if we are not visible
20456             (or have been minimized)
20457
20458 2004-08-17 15:24  pbartok
20459
20460         * XplatUIWin32.cs:
20461           - Finished IsVisible
20462           - Added Win32GetWindowPlacement
20463
20464 2004-08-17 15:08  jackson
20465
20466         * Panel.cs: Initial checkin of the Panel
20467
20468 2004-08-17 14:25  pbartok
20469
20470         * Control.cs:
20471           - Fixed broken handling of default window sizes
20472
20473 2004-08-17 13:29  jackson
20474
20475         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
20476           has a large startup time.
20477
20478 2004-08-17 10:25  jackson
20479
20480         * HandleData.cs: union areas properly
20481
20482 2004-08-17 10:12  jackson
20483
20484         * HandleData.cs: union areas properly
20485
20486 2004-08-16 20:00  ravindra
20487
20488         * ToolBar.cs, ToolBarButton.cs: Added attributes.
20489
20490 2004-08-16 18:48  ravindra
20491
20492         * ToolBar.cs: Added attributes.
20493
20494 2004-08-16 17:17  ravindra
20495
20496         * SWF.csproj: Updated project.
20497
20498 2004-08-16 17:16  jackson
20499
20500         * XplatUIX11.cs: Check for more expose events before sending a
20501           WM_PAINT so they can all be grouped together. This makes dragging a
20502           window across another window redraw in a sane way.
20503
20504 2004-08-16 15:47  pbartok
20505
20506         * Control.cs:
20507           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
20508             support OnMouseEnter/Leave()
20509           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
20510             exposure handling
20511
20512 2004-08-16 15:46  pbartok
20513
20514         * XplatUIStructs.cs, XplatUIX11.cs:
20515           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
20516           OnMouseEnter/Leave()
20517
20518 2004-08-16 15:34  jackson
20519
20520         * XplatUIX11.cs: Group multiple expose events in HandleData, make
20521           sure messages get the message field set to WM_NULL if they are not
20522           handled.
20523
20524 2004-08-16 15:24  jackson
20525
20526         * HandleData.cs: HandleData is used for storing message information
20527           for window handles
20528
20529 2004-08-15 17:23  ravindra
20530
20531         * ColorDepth.cs: Added attribute.
20532
20533 2004-08-15 17:23  ravindra
20534
20535         * SWF.csproj: Updated project for ToolBar Control.
20536
20537 2004-08-15 17:20  ravindra
20538
20539         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
20540           control and also dos2unix format.
20541
20542 2004-08-15 17:13  ravindra
20543
20544         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
20545           ToolBarButtonClickEventArgs.cs,
20546           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
20547           ToolBarTextAlign.cs: First Implementation of ToolBar control.
20548
20549 2004-08-15 15:31  pbartok
20550
20551         * ButtonBase.cs:
20552           - First (mostly) working version
20553
20554 2004-08-13 16:15  pbartok
20555
20556         * Control.cs:
20557           - Fixed Anchor default
20558
20559 2004-08-13 15:43  pbartok
20560
20561         * Control.cs:
20562           - Changed GetCursorPos signature
20563
20564 2004-08-13 15:42  pbartok
20565
20566         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20567           - Changed signature for GetCursorPos
20568
20569 2004-08-13 15:25  pbartok
20570
20571         * XplatUIX11.cs:
20572           - Cleanup
20573           - Fixed resizing/exposure handling
20574
20575 2004-08-13 15:22  jordi
20576
20577         * ThemeWin32Classic.cs: removes redundant code and fixes issues
20578           with tickposition
20579
20580 2004-08-13 14:55  jordi
20581
20582         * TrackBar.cs: change from wndproc to events
20583
20584 2004-08-13 13:00  jordi
20585
20586         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20587           XplatUIX11.cs: implements PointToClient (ScreenToClient)
20588
20589 2004-08-13 12:53  pbartok
20590
20591         * XplatUIWin32.cs:
20592           - Changed GetWindowPos to also provide client area size
20593           - Fixed broken prototypes for several win32 functions
20594
20595 2004-08-13 12:53  pbartok
20596
20597         * XplatUI.cs, XplatUIDriver.cs:
20598           - Changed GetWindowPos to also provide client area size
20599
20600 2004-08-13 12:52  pbartok
20601
20602         * XplatUIX11.cs:
20603           - Added generation of WM_POSCHANGED
20604           - Changed GetWindowPos to also provide client area size
20605
20606 2004-08-13 12:52  pbartok
20607
20608         * Control.cs:
20609           - Added Dispose() and destructor
20610           - Fixed resizing and bounds calculation
20611           - Fixed Layout
20612           - Added memory savings for invisible windows
20613
20614 2004-08-13 12:46  jordi
20615
20616         * TrackBar.cs: adds timer and grap window
20617
20618 2004-08-13 10:25  jackson
20619
20620         * Timer.cs: SWF Timer
20621
20622 2004-08-12 16:59  pbartok
20623
20624         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20625           - Implemented method to get current mouse position
20626
20627 2004-08-12 14:29  jordi
20628
20629         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
20630           enhancement, fix mouse problems, highli thumb, etc
20631
20632 2004-08-12 13:31  pbartok
20633
20634         * Control.cs:
20635           - Fixed Anchoring bugs
20636
20637 2004-08-12 13:01  jackson
20638
20639         * StatusBar.cs: Don't forget things
20640
20641 2004-08-12 12:54  jackson
20642
20643         * ThemeWin32Classic.cs: Handle owner draw status bars
20644
20645 2004-08-12 12:54  jackson
20646
20647         * StatusBar.cs: Implement missing properties, events, and methods.
20648           Handle mouse clicking
20649
20650 2004-08-12 10:19  jackson
20651
20652         * StatusBarPanelClickEventArgs.cs,
20653           StatusBarPanelClickEventHandler.cs: Classes for handling status
20654           bar panel click events
20655
20656 2004-08-12 10:10  jackson
20657
20658         * Control.cs: Add missing properties
20659
20660 2004-08-12 09:46  pbartok
20661
20662         * BindingsManagerBase.cs:
20663           - Name changed to BindingManagerBase.cs
20664
20665 2004-08-12 09:25  jordi
20666
20667         * ScrollableControl.cs: calls ctrlbase instead of exeception
20668
20669 2004-08-11 16:28  pbartok
20670
20671         * InputLanguageChangingEventArgs.cs:
20672           - Never check in before compiling. Fixes the last check-in
20673
20674 2004-08-11 16:26  pbartok
20675
20676         * InputLanguageChangingEventArgs.cs:
20677           - More signature fixes
20678
20679 2004-08-11 16:20  pbartok
20680
20681         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
20682           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
20683           ImageListStreamer.cs, InputLanguage.cs,
20684           InputLanguageChangedEventArgs.cs,
20685           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
20686           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
20687           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
20688           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20689           - Signature fixes
20690
20691 2004-08-11 16:16  pbartok
20692
20693         * Application.cs:
20694           - Fixed Signature
20695           - Added .Net 1.1 method
20696
20697 2004-08-11 15:25  pbartok
20698
20699         * SWF.csproj:
20700           - Fixed BindingManagerBase.cs filename
20701
20702 2004-08-11 15:22  pbartok
20703
20704         * BindingManagerBase.cs:
20705           - Was checked in with wrong filename
20706
20707 2004-08-11 14:50  pbartok
20708
20709         * SWF.csproj:
20710           - Updated
20711
20712 2004-08-11 13:41  jordi
20713
20714         * XplatUIWin32.cs: Fixes ClientRect
20715
20716 2004-08-11 13:19  pbartok
20717
20718         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20719           XplatUIX11.cs:
20720           - We had SetWindowPos and MoveWindow to set window positions and
20721             size, removed MoveWindow. We have GetWindowPos, so it made sense to
20722             keep SetWindowPos as matching counterpart
20723           - Added some X11 sanity checking
20724
20725 2004-08-11 12:59  pbartok
20726
20727         * Control.cs:
20728           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
20729             (It seems that SetBounds is just a front for SetBoundsCore and
20730              SetBoundsCore updates the underlying window system and
20731              UpdateBounds is responsible for updating the variables associated
20732              with the Control and sending the events)
20733           - Major cleanup of Size handling; we now have two sizes, client_size
20734             and bounds. Bounds defines the window with decorations, client_size
20735             without them.
20736
20737 2004-08-11 12:55  pbartok
20738
20739         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20740           - Added method to calculate difference between decorated window and
20741             raw client area
20742
20743 2004-08-11 12:54  pbartok
20744
20745         * Label.cs:
20746           - Forcing redraw on resize
20747
20748 2004-08-11 11:43  pbartok
20749
20750         * ImageList.cs:
20751           - Removed disposing of the actual images when the list is disposed
20752
20753 2004-08-11 09:13  pbartok
20754
20755         * Control.cs:
20756           - Now properly reparents windows
20757
20758 2004-08-11 08:37  pbartok
20759
20760         * Control.cs:
20761           - Duh!
20762
20763 2004-08-11 07:47  pbartok
20764
20765         * Control.cs:
20766           - Rewrote the collection stuff. Might not be as fast now, not
20767             keeping the number of children around and accessible directly, but
20768             it's more straightforward
20769
20770 2004-08-11 07:44  pbartok
20771
20772         * AccessibleObject.cs:
20773           - Fixed to match ControlCollection rewrite
20774
20775 2004-08-11 07:43  pbartok
20776
20777         * ImageList.cs:
20778           - Added missing creation of the collection list
20779
20780 2004-08-10 20:08  jackson
20781
20782         * StatusBar.cs: Get the paint message from WndProc
20783
20784 2004-08-10 19:31  jackson
20785
20786         * ThemeWin32Classic.cs: Create Brushes as little as possible
20787
20788 2004-08-10 19:20  jackson
20789
20790         * UICues.cs: Add Flags attribute
20791
20792 2004-08-10 19:19  jackson
20793
20794         * StatusBarPanel.cs: Signature cleanup
20795
20796 2004-08-10 19:10  jackson
20797
20798         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
20799           Initial implementation of status bar item drawing
20800
20801 2004-08-10 17:27  jordi
20802
20803         * TrackBar.cs: add missing methods, properties, and restructure to
20804           hide extra ones
20805
20806 2004-08-10 16:24  jackson
20807
20808         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
20809           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
20810           attribute
20811
20812 2004-08-10 13:21  jordi
20813
20814         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
20815           enhancements and standarize on win colors defaults
20816
20817 2004-08-10 12:52  jackson
20818
20819         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
20820           ThemeWin32Classic.cs: Implement DrawItem functionality
20821
20822 2004-08-10 12:47  jordi
20823
20824         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
20825
20826 2004-08-10 12:32  jordi
20827
20828         * Control.cs: throw ontextchange event
20829
20830 2004-08-10 11:43  pbartok
20831
20832         * Control.cs:
20833           - Added more to the still unfinished Dock/Anchor layout code
20834
20835 2004-08-10 11:39  pbartok
20836
20837         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20838           - Added GetWindowPos method
20839
20840 2004-08-10 11:36  pbartok
20841
20842         * XplatUIWin32.cs:
20843           - Implemented several methods
20844
20845 2004-08-10 09:47  jackson
20846
20847         * TrackBar.cs: Allow control to handle buffering
20848
20849 2004-08-10 09:41  jackson
20850
20851         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
20852
20853 2004-08-10 09:24  jackson
20854
20855         * Label.cs, LinkLabel.cs: Let Control handle buffering.
20856
20857 2004-08-10 09:09  jackson
20858
20859         * StatusBar.cs: Let Control handle all the buffering.
20860
20861 2004-08-10 09:08  jackson
20862
20863         * Control.cs: Control will now handle the buffering code, so each
20864           control does not have to implement this.
20865
20866 2004-08-10 08:34  jackson
20867
20868         * XplatUIDriver.cs: Use default colors from the theme
20869
20870 2004-08-09 17:12  pbartok
20871
20872         * ImageList.cs:
20873           - Fixed several bugs Ravindra pointed out
20874
20875 2004-08-09 16:11  pbartok
20876
20877         * Control.cs:
20878           - Added incomplete dock layout code
20879           - Added support for mouse wheel
20880
20881 2004-08-09 16:09  pbartok
20882
20883         * XplatUIX11.cs:
20884           - Added handling for middle and right mousebutton
20885           - Added handling for mouse wheel
20886           - Added handling for key state and mouse state and position
20887           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
20888           messages
20889
20890 2004-08-09 15:40  jackson
20891
20892         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
20893           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
20894           checkin
20895
20896 2004-08-09 15:37  jackson
20897
20898         * StatusBar.cs: Initial implementation of StatusBar
20899
20900 2004-08-09 15:36  jackson
20901
20902         * ITheme.cs: Add support for drawing status bar and getting status
20903           bar item sizes
20904
20905 2004-08-09 15:35  pbartok
20906
20907         * MouseButtons.cs:
20908           - Fixed values
20909
20910 2004-08-09 15:34  jackson
20911
20912         * ThemeWin32Classic.cs: Add support for drawing status bar and get
20913           status bar item sizes
20914
20915 2004-08-09 15:21  jackson
20916
20917         * ThemeWin32Classic.cs: Use known colors for default control
20918           colours
20919
20920 2004-08-09 15:12  jackson
20921
20922         * ThemeWin32Classic.cs: Make the default font static, it is static
20923           in control so this doesn't change functionality and creating fonts
20924           is sloooooow.
20925
20926 2004-08-09 14:56  pbartok
20927
20928         * X11Structs.cs:
20929           - Added GrabMode enum
20930
20931 2004-08-09 14:55  pbartok
20932
20933         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20934           - Removed Run method, was only required for initial development
20935
20936 2004-08-09 14:51  pbartok
20937
20938         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20939           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
20940           capture
20941
20942 2004-08-09 13:48  pbartok
20943
20944         * XplatUIX11.cs:
20945           - Fixed default sizing for child windows
20946
20947 2004-08-09 12:56  pbartok
20948
20949         * XplatUIX11.cs:
20950           - Added generation of WM_DESTROY message
20951           - Added handling of window manager induced shutdown
20952
20953 2004-08-09 11:31  jackson
20954
20955         * ThemeWin32Classic.cs: New names for control properties
20956
20957 2004-08-09 11:25  jackson
20958
20959         * Control.cs: Use new color names
20960
20961 2004-08-09 11:02  jackson
20962
20963         * XplatUI.cs: Get default window properties from the theme
20964
20965 2004-08-09 11:01  jackson
20966
20967         * ITheme.cs: The theme engine now controls default window
20968           properties
20969
20970 2004-08-09 11:00  jackson
20971
20972         * ThemeWin32Classic.cs: Add default window color properties
20973
20974 2004-08-09 10:17  jackson
20975
20976         * ThemeWin32Classic.cs: Use correct default back color
20977
20978 2004-08-09 10:05  jackson
20979
20980         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
20981           the theme now.
20982
20983 2004-08-09 09:56  jackson
20984
20985         * XplatUI.cs: Remove defaults, these are handled by the theme now.
20986
20987 2004-08-09 09:54  jackson
20988
20989         * Control.cs: Get default properties from the theme.
20990
20991 2004-08-09 09:53  jackson
20992
20993         * ITheme.cs: Themes now handle default control properties
20994
20995 2004-08-09 09:53  jackson
20996
20997         * ThemeWin32Classic.cs: Themes now handle default control
20998           properties so coloring will be consistent
20999
21000 2004-08-08 16:54  jordi
21001
21002         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
21003
21004 2004-08-08 15:08  jordi
21005
21006         * XplatUIX11.cs: fixes keyboard crash
21007
21008 2004-08-08 13:47  jordi
21009
21010         * Label.cs: add cvs header info
21011
21012 2004-08-08 12:09  jackson
21013
21014         * ThemeWin32Classic.cs: Add pen_buttonface
21015
21016 2004-08-08 11:52  jordi
21017
21018         * Label.cs, LinkLabel.cs: [no log message]
21019
21020 2004-08-08 11:34  jordi
21021
21022         * ThemeWin32Classic.cs: Use Windows Standard Colours
21023
21024 2004-08-07 17:32  jordi
21025
21026         * TrackBar.cs: throw exceptions of invalid enums values
21027
21028 2004-08-07 17:31  jordi
21029
21030         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
21031           draw method name
21032
21033 2004-08-07 16:56  jackson
21034
21035         * HorizontalAlignment.cs: Initial checkin
21036
21037 2004-08-07 13:16  jordi
21038
21039         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
21040           methods
21041
21042 2004-08-07 13:05  jordi
21043
21044         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
21045           GetSysColor defines
21046
21047 2004-08-06 18:01  pbartok
21048
21049         * ThemeWin32Classic.cs:
21050           - Fixed some rounding issues with float/int
21051
21052 2004-08-06 18:00  jackson
21053
21054         * DockStyle.cs, AnchorStyles.cs:
21055
21056                   Add flags and serializable attributes.
21057
21058 2004-08-06 17:46  pbartok
21059
21060         * XplatUIX11.cs:
21061           - Implemented GetParent
21062
21063 2004-08-06 17:18  pbartok
21064
21065         * TrackBar.cs:
21066           - Fixed some rounding issues with float/int
21067
21068 2004-08-06 17:17  pbartok
21069
21070         * X11Structs.cs, XplatUIX11.cs:
21071           - Fixed Refresh and Invalidate
21072
21073 2004-08-06 15:30  pbartok
21074
21075         * Control.cs, X11Structs.cs, XplatUIX11.cs:
21076           - Fixed recursive loop when resizing
21077           - Improved/fixed redrawing on expose messages
21078
21079 2004-08-06 09:53  jordi
21080
21081         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
21082           keyboard navigation
21083
21084 2004-08-06 08:02  pbartok
21085
21086         * X11Structs.cs, XplatUIX11.cs:
21087           - Fixed reparenting
21088           - Fixed window border creation
21089
21090 2004-08-05 15:38  pbartok
21091
21092         * XplatUIX11.cs:
21093           - Attempted fix for reparenting problems
21094
21095 2004-08-04 15:14  pbartok
21096
21097         * Control.cs:
21098           - Fixed Invalidation bug (calculated wrong client area)
21099           - Added ClientSize setter
21100
21101 2004-08-04 15:13  pbartok
21102
21103         * Form.cs:
21104           - Added AutoScale properties
21105
21106 2004-08-04 15:13  pbartok
21107
21108         * SWF.csproj:
21109           - Added latest files
21110
21111 2004-08-04 14:11  pbartok
21112
21113         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21114           XplatUIX11.cs:
21115           - Added Invalidate handling
21116
21117 2004-08-03 17:09  jordi
21118
21119         * XplatUIDriver.cs: fixes spelling mistake
21120
21121 2004-07-27 09:53  jordi
21122
21123         * TrackBar.cs: fixes trackbar events, def classname, methods
21124           signature
21125
21126 2004-07-27 09:29  jordi
21127
21128         * ScrollBar.cs: fixes scrollbar events
21129
21130 2004-07-27 04:38  jordi
21131
21132         * Control.cs: changes to be able to run winforms samples
21133
21134 2004-07-26 11:42  jordi
21135
21136         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
21137           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
21138
21139 2004-07-26 05:41  jordi
21140
21141         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
21142           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
21143           implementation
21144
21145 2004-07-22 09:22  jordi
21146
21147         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
21148           check link overlapping, implement events, and fixes
21149
21150 2004-07-21 10:28  jordi
21151
21152         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
21153
21154 2004-07-21 10:19  jordi
21155
21156         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
21157           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
21158           LinkLabelLinkClickedEventArgs.cs,
21159           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
21160           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
21161           implementation
21162
21163 2004-07-19 13:09  jordi
21164
21165         * Control.cs, Label.cs: label control re-written: added missing
21166           functionlity, events, and properties
21167
21168 2004-07-19 10:49  jordi
21169
21170         * Control.cs: fixes SetBounds logic
21171
21172 2004-07-19 01:29  jordi
21173
21174         * Control.cs: Call RefreshWindow only if the window has created
21175
21176 2004-07-15 14:05  pbartok
21177
21178         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
21179           - Implemented ImageList and ImageList.ImageCollection classes
21180           - Added ColorDepth enumeration
21181           - Updated SWF VS.Net project
21182
21183 2004-07-15 11:06  jordi
21184
21185         * XplatUIStructs.cs: added MsgButons enum
21186
21187 2004-07-15 11:03  jordi
21188
21189         * Control.cs: added basic mouse handeling events
21190
21191 2004-07-15 03:38  jordi
21192
21193         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
21194           Vertical TrackBar control implementation
21195
21196 2004-07-13 09:33  jordi
21197
21198         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
21199
21200 2004-07-13 09:31  jordi
21201
21202         * Control.cs, Form.cs: commit: new properties and fixes form size
21203           problems
21204
21205 2004-07-09 14:13  miguel
21206
21207         * ProgressBar.cs: Spelling
21208
21209 2004-07-09 11:25  pbartok
21210
21211         * ProgressBar.cs:
21212           - Removed usage of Rectangle for drawing. Miguel pointed out it's
21213           faster
21214
21215 2004-07-09 11:17  miguel
21216
21217         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
21218
21219                 * ProgressBar.cs: Fixed spelling for `block'
21220
21221                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
21222                 style guidelines.
21223
21224                 Avoid using the += on rect.X, that exposed a bug in the compiler.
21225
21226 2004-07-08 23:21  pbartok
21227
21228         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
21229           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
21230           BaseCollection.cs, Binding.cs, BindingContext.cs,
21231           BindingMemberInfo.cs, BindingsCollection.cs,
21232           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
21233           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
21234           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
21235           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
21236           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
21237           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
21238           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
21239           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
21240           FrameStyle.cs, GiveFeedbackEventArgs.cs,
21241           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
21242           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
21243           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
21244           InputLanguageChangedEventArgs.cs,
21245           InputLanguageChangedEventHandler.cs,
21246           InputLanguageChangingEventArgs.cs,
21247           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
21248           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
21249           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
21250           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
21251           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
21252           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
21253           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
21254           QueryAccessibilityHelpEventArgs.cs,
21255           QueryAccessibilityHelpEventHandler.cs,
21256           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
21257           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
21258           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
21259           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
21260           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
21261           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
21262           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
21263           XplatUIX11.cs, lang.cs:
21264           - Initial check-in
21265