also, disable the call do BindColumns in
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-01-05  Chris Toshok  <toshok@ximian.com>
2
3         * DataGrid.cs: don't forceably rebind columns in SetDataSource
4         unless our list manager has changed (i.e. unless we have reason to
5         believe our columns have changed).  Fixes #80422.
6         
7         also, disable the call do BindColumns in
8         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
9         1.1 the event isn't raised in response to a column addition on a
10         table.)
11
12 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
13
14         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
15         that inheritors can not call it if they choose.  Fixes bug #80456.
16
17 2007-01-05  Andreia Gaita  <avidigal@novell.com>
18
19         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
20         doesn't blow up with a null exception on marshalling.
21         
22 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
23
24         * Control.cs: Implement several 2.0 protected properties and methods.
25         Ensure that all necessary events are being called when properties
26         are set.
27
28 2007-01-05  Mike Kestner  <mkestner@novell.com>
29
30         * ListView.cs: implement PgUp/PgDn for Details view.  Also
31         fixes First/LastVisibleIndex to use the item_control.ClientRect 
32         instead of the parent control.  Fixes #80378.
33
34 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
35
36         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
37           determine whether to use yard-pound or not (bug #78399).
38
39 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
40
41         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
42         problems. So it is time to bring back the old popupbutton colors.
43
44 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
45
46         * ColumnHeader.cs:
47         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
48         property by using the internal information of the
49         columns order in ListView.
50
51 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
52
53         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
54         Add 2.0 Tag properties.
55
56         * LinkArea.cs: Add 2.0 ToString method.
57
58 2007-01-03  Chris Toshok  <toshok@ximian.com>
59
60         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
61         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
62         when we're editing, which fixes #80047.
63
64 2007-01-03  Chris Toshok  <toshok@ximian.com>
65
66         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
67         #80404.
68
69 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
70
71         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
72         property and implementation.
73
74         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
75         for MdiWindowListItem property.
76
77         * ToolStripDropDown.cs: Don't consider hidden menu items while
78         laying out the menu.
79
80 2007-01-03  Andreia Gaita  <avidigal@novell.com>
81
82         * SendKeys.cs: window handle is not needed in win32, so just
83         get the active window for X after parsing keys and don't use
84         it when building the message; it is passed by parameter to the 
85         Xplat method and used there to build the message instead. Also,
86         wait for events to be processed on SendWait, as opposed to Send,
87         which doesn't wait :) Playing with threads and Send() completely 
88         hangs on ms.net, only SendWait() works.
89         
90         XplatUIX11.cs
91         X11Display.cs: Check for valid window handle.
92
93 2007-01-03  Jackson Harper  <jackson@ximian.com>
94
95         * TextControl.cs: Need to prevent wrap calculations when replacing
96         text (this was there before i removed it accidently).
97         - Don't update the cursor during the positioning, just set it to
98         selection_start at the end of the operaion.
99
100 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
101
102         * Control.cs:
103         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
104         
105 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
106
107         * MonthCalendar.cs: Added Click and DoubleClick events again,
108         but this time they only hide Control's Click and DoubleClick.
109         
110 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
111
112         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
113         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
114
115 2007-01-02  Jackson Harper  <jackson@ximian.com>
116
117         * TextBoxBase.cs: We move the caret with the split now, so we
118         don't need to explicitly move the caret after splitting.  This
119         fixes the caret bumping down an extra line on Enter.
120
121 2007-01-02  Miguel de Icaza  <miguel@novell.com>
122
123         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
124         2.72). 
125
126         * ScrollableControl.cs: Add Scroll event.
127
128 2007-01-02  Mike Kestner  <mkestner@novell.com>
129
130         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
131         to fix all hdr height padding codepaths.  Fixes #80207.
132
133 2007-01-02  Chris Toshok  <toshok@ximian.com>
134
135         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
136         setting it to the Control defaults anyway, and it being after the
137         Dock set was screwing up layout.
138         (set_Dock): don't short circuit out of setting base.Dock.  Also,
139         no need to call UpdateStatusBar here, as it'll be re-layed out if
140         it needs to be.
141
142 2007-01-02  Mike Kestner  <mkestner@novell.com>
143
144         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
145         to header height for width == -1. Fixes the rest of #80207.
146
147 2007-01-02  Mike Kestner  <mkestner@novell.com>
148
149         * ListView.cs: rework the mouse event forwarding everaldo added
150         to translate the coordinates to the parent control not
151         raise the parent events until after we've done our work. Hover
152         needs more work, in the case where HoverSelection is on, because
153         the item control receives more than one MouseHover per Enter
154         event, so we need to ensure only the "first" hover gets forwarded.
155         Opening a minor bug for that.
156
157 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
158
159         * CheckedListBox.cs: Fixed SelectionMode to match MS.
160         * ListControl.cs: Implemented AllowSelection property. Removed extra
161         tabs.
162         * ListBox.cs: Implemented AllowSelection property.
163
164 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
165
166         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
167         SelectedItem, it prevent for errors when you must disable item
168         before perform click. Fixes #80409.
169
170 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
171
172         * MenuAPI.cs: Prevent second level and beyond submenus to close
173         until first level when move out side of popup.
174         
175 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
176
177         * MenuAPI.cs:
178         - Down submenu positin in three pixels.
179         - Closes sub menu when mouse leaves from menu. Fixes #80402.
180
181 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
182
183         * ThemeWin32Classic.cs:
184         - Fix popup menu size adding one pixel on the top.
185         - Down menu item border from two to one to mimic Win32.
186         - Some source identation fixes. 
187
188 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
189
190         * ThemeWin32Classic.cs: Use float numbers to calculate size and
191         position of menu arrows, it fix wrong arrow size.
192
193 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
194
195         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
196         instead of line, it simplify draw operation and fix it using 3D
197         borders to mimic Win32.
198
199 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
200
201         * StatusStrip.cs: Add implementation of the sizing grip.
202
203         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
204         StatusStrip rendering.
205
206 2006-12-31  Chris Toshok  <toshok@ximian.com>
207
208         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
209         override the layout style (anchor/dock) of the control.  assign to
210         Dock instead.  Fixes bug #80416.
211
212         * ToolStrip.cs: same.
213
214 2006-12-31  Andreia Gaita  <avidigal@novell.com>
215
216         * ContainerControl.cs: Use ContainerSelected flag to check if 
217         a Container is directly selected, or if Select is called on a 
218         non-container. If a container is directly selected, focus events 
219         should not be raised.
220         Apply #80411 patch to throw exception on set_ActiveControl if 
221         control is the same as the current one.
222         
223         * Control.cs: Use ContainerSelected flag (see above).
224         Add invalidation check to raise event but not invalidate if 
225         dimensions are 0.       
226         Apply #80411 patch.
227         
228
229 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
230
231         * MenuAPI.cs: After click, dont close popup menu when menu is
232         ContextMenu. Fixes #80399.
233
234 2006-12-30  Chris Toshok  <toshok@ximian.com>
235
236         * ContainerControl.cs: make sure we throw the exception if the
237         container control doesn't contain the control we're setting
238         ActiveControl to.
239
240 2006-12-30  Chris Toshok  <toshok@ximian.com>
241
242         * Control.cs (SetTopLevel): fix the exception raised by
243         SetTopLevel for child controls.
244         (set_Anchor): call UpdateDistances when setting the anchor type.
245         This fixes bug #80336.
246
247 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
248
249         * Theme.cs: For now, revert back to 8pt font.
250
251 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
252
253         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
254         Fixes #80395.
255
256 2006-12-29  Chris Toshok  <toshok@ximian.com>
257
258         * Control.cs: reorder the code in OnResize to give the same event
259         ordering as MS.
260
261 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
262
263         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
264         TileHorizontally and TileVertically.
265         
266 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
267
268         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
269         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
270         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
271         Corrected copyright and email adress.
272
273 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
274
275         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
276         of Exception in FullPath property if no TreeView is associated with
277         the TreeNode.
278
279 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
280
281         * Theme.cs: Marked default_font as private, and initialize it in ctor
282         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
283         on 2.0 profile.
284         * ThemeGtk.cs: Removed default_font intialization.
285         * ThemeWin32Classic.cs: Removed default_font initialization.
286
287 2006-12-28  Chris Toshok  <toshok@ximian.com>
288
289         * Control.cs: fix a couple of place where we were creating handles
290         more aggressively than we should be.  Fixes ControlRefresh unit
291         tests.
292
293 2006-12-28  Chris Toshok  <toshok@ximian.com>
294
295         * Control.cs: contrary to what the comment said, Control.Dock does
296         not supercede Control.Anchor - the last one you assign to decides
297         the layout behavior.  so we need to keep track of which was the
298         last set.  Also, fix some of the affected property arguments in
299         PerformLayout calls, and remove an redundant parent.PerformLayout
300         call in OnResized.
301
302         Add a VisibleInternal property, which returns is_visible.  We
303         can/should get rid of all the usage of this field elsewhere.
304
305 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
306         
307         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
308         control style, not DoubleBuffer. Added UseDoubleBuffering property
309         that indicates whether doublebuffering is enabled and supported.
310         (comment from and code based on Gert Driesen's patch in #80324).
311         Fixes #80324.
312
313 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
314         
315         * Control.cs: Fixed a NRE.
316
317 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
318
319         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
320         for 2.0.
321
322 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
323
324         * Control.cs: Rewrote double buffering, now a seperate
325         class handles all the buffering, no Graphics is disposed of
326         until the painting is finished (earlier implementation 
327         would crash if the control was resized in the OnPaint, 
328         since it would cause the double buffer to be recreated
329         and the old one disposed), a separate Graphics is 
330         created for every paint (MS behaviour and anyways the state
331         of the Graphics would have to be saved and restored otherwise)
332         
333         * XplatUIDriver.cs: 
334         * XplatUIX11.cs:
335         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
336         so that we can get the graphics for the back buffer without
337         having to create a new one and remove the offscreen_dc parameter
338         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
339         
340 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
341
342         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
343         Also make virtual all the key-related methods.
344
345         * ListViewItem.cs: Make virtual the key related methods for
346         ListViewSubItemCollection.
347
348 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
349
350         * ListView.cs:
351         * ListViewItem.cs:
352         * ThemeWin32Classic.cs:
353         * Theme.cs: Initial support for Tile view in ListView,
354         as well as the implementation of the required bits for it (Item
355         and Subitem).
356
357 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
358
359         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
360         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
361         Provide useful exception messages.
362
363 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
364
365         * TrackBar.cs: Remove a warning.
366         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
367         when used by DateTimePicker, fixes #80287. This also requires that 
368         MonthCalendar implements it's own drawing for the yearly updown control,
369         otherwise the Capture tracking would be too complicated. Removed the Click 
370         and DoubleClick events (according to comments they were hiding the base class
371         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
372         raise these events, not that they cannot be raised. It is possible to raise 
373         them by calling OnClick and OnDoubleClick). Added two internal fields in 
374         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
375         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
376         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
377         event, no longer needed.
378         
379 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
380
381         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
382         true if new value differs from current value.
383
384 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
385
386         * Control.cs: ControlCollection.Count must be public. Fixed build of
387         unit tests.
388
389 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
390
391         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
392
393 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
394
395         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
396
397 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
398
399         * Control.cs: Invalidates control including when Width and Height is 
400         equal zero or is not visible, only Paint event must be care about 
401         this. Fixes #79913.
402
403 2006-12-26  Chris Toshok  <toshok@ximian.com>
404
405         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
406         more corcompare work.
407
408         * DataGridView.cs: fix compiler warning.
409
410         * ColumnHeader.cs: some corcompare work, and also take the
411         opportunity to make the internal fields private.
412
413         * ListView.cs: fix the fallout from the above field change.
414
415 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
416
417         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
418         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
419         ToolStripTextBox.cs: Fixes to events and corcompare.
420
421 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
422
423         * ListView.cs: Call owner.OnMousexx event to propagate events from
424         item to ListView. Fixes #80367.
425
426 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
427
428         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
429         if value is less than one. ItemHeight should not be set to a value
430         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
431         Removed extra tabs.
432
433 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
434
435         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
436         * ToolStripStatusLabel.cs: Add Spring for Moma.
437
438 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
439
440         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
441         Fixed code formatting. Removed debug code.
442         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
443
444 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
445
446         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
447         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
448         ArgumentOutOfRangeException if ColumnCount is negative. In 
449         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
450         less than 4 or higher than 32768.
451         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
452         Fixed FormatProvider to return CurrentCulture unless explicitly set.
453         Fixed IsFormatProviderDefault to return true if FormatProvider has
454         not been explicitly set.
455
456 2006-12-25  Chris Toshok  <toshok@ximian.com>
457
458         * Application.cs: add a couple of 2.0 events.
459
460 2006-12-25  Chris Toshok  <toshok@ximian.com>
461
462         * Control.cs: fix compiler warning.
463
464         * AxHost.cs: corcompare fixes.
465
466         * ApplicationContext.cs: corcompare fixes.
467
468 2006-12-25  Chris Toshok  <toshok@ximian.com>
469
470         * Control.cs: only update dist_right/dist_bottom if the
471         width/height is > 0.  this fixes anchored controls being resized
472         smaller until they disappear and then resized larger again.
473
474 2006-12-25  Chris Toshok  <toshok@ximian.com>
475
476         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
477         since they're nothing more than X/Left and Y/Top, respectively.
478
479         Also, move back to a per-control Bitmap/Graphics for
480         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
481         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
482         Height.
483
484 2006-12-25  Miguel de Icaza  <miguel@novell.com>
485
486         * MessageBox.cs: Implemented overload that takes a new "bool
487         displayHelpButton" by adding a new internal field "show_help".
488         When clicked this will raise the HelpRequested on the owner or the
489         main form. 
490
491         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
492         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
493
494         * ListView.cs: Add support ColumnWidthChanged and
495         ColumnWidthChanging. 
496
497         Add support for ColumnReordered event.
498         (ReorderColumn): Add NET_2_0 specific support for cancelling the
499         reorder.
500
501         Very nice codebase!
502
503         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
504
505         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
506
507 2006-12-24  Chris Toshok  <toshok@ximian.com>
508
509         * GridTablesFactory.cs: 2.0 corcompare work.
510
511         * ToolStripContainer.cs: add "override" to
512         ContextMenuStripChanged, and remove the local event object.
513
514         * ToolStripDropDown.cs: same with a couple properties.
515
516         * ToolStripPanel.cs: same with AutoSizeChanged event.
517
518         * TextBoxBase.cs: add "override" to AutoSizeChanged.
519
520         * Form.cs: add the remaining 2.0 events, and do some corcompare
521         attribute work.
522
523         * DateTimePicker.cs: add "new" to padding.
524
525         * ButtonBase.cs: use Control's use_compatible_text_rendering.
526
527         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
528
529         * DataGridView.cs: PaddingChanged is overridden.
530
531 2006-12-24  Chris Toshok  <toshok@ximian.com>
532
533         * Control.cs: corecompare work here too.
534
535         * DataGridViewElement.cs, DataGridView.cs,
536         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
537         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
538         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
539         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
540         work.
541
542 2006-12-24  Miguel de Icaza  <miguel@novell.com>
543
544         * Control.cs: Switched the error message on the console for a
545         todo.  A review of the code will have to cope with this anyways
546         (since its a large feature, it is in our radar) and it was
547         producing too much output when running PDN.
548
549         * ToolStripComboBox.cs: Set the text when the SelectedIndex
550         changes.  Applications depend on this (PDN 2.72)
551
552 2006-12-23  Chris Toshok  <toshok@ximian.com>
553
554         * TableLayoutSettings.cs: finish up the corcompare work for this
555         class.
556
557 2006-12-23  Chris Toshok  <toshok@ximian.com>
558
559         * Control.cs: make SetImplicitBounds internal, do some futzing
560         with LayoutEngine so that it's available in 1.1, and remove the
561         entire duplicated code mess from PerformLayout.  Use
562         System.Windows.Forms.Layout.DefaultLayout instead.
563
564         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
565
566 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
567
568         * Form.cs: Add MainMenuStrip property.
569
570 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
571
572         * Control.cs: Add ContextMenuStrip property and implementation.
573         Fix ContextMenu implementation to show menu centered on control when
574         activated using the keyboard instead of showing at screen (0,0).
575
576         * ToolStripDropDown.cs: Fix needed overload of Show ().
577
578 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
579
580         * Menu.cs: Name property added for 2.0 profile.
581         
582 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
583
584         * Menu.cs: Update information about FindMenuItem, method to be
585         implemented soon.
586
587 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
588
589         * MenuAPI.cs: When deselect items deselect also selected subitems.
590         
591 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
592
593         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
594         FindSubItemByCoord to found itens that is not active, also an
595         cheking added to FindSubItemByCoord to search for items only 
596         in visible popup windows. Fixes #80274.
597
598 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
599
600         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
601         internal property, it be care about change ExStyle. 
602
603 2006-12-22  Andreia Gaita  <avidigal@novell.com>
604
605         * ContainerControl.cs: set activeControl for parent forms up the 
606         tree when the new activecontrol is a container.
607         When validating the active control, if it is a container, also
608         raise up the validation for it's active control. Fixes #80280
609         
610         * Control.cs: Add internal property flag and check to prevent
611         Focus events from getting raised when Select() is called for
612         a ContainerControl. There are still too many focus events being
613         raised at the moment though.
614         Cleaned up the code a bit.
615
616 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
617
618         * Control.cs: Added all missing 2.0 events.and
619         fixed a couple of corcompare issues.
620         * TrackBar.cs: Implemented missing 2.0 bits.
621         * MonthCalendar.cs, 
622         * DateTimePicker.cs, 
623         * MdiClient.cs: Fixed some corcompare issues.
624
625 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
626
627         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
628         SplitterPanel.cs: corecompare work.
629
630 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
631
632         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
633         Clean up warnings for BackgroundImageChanged and PaddingChanged
634         events now that they are implemented in Control.cs.
635
636 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
637
638         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
639         
640         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
641         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
642         of TableLayoutPanel and supporting cast.
643
644 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
645
646         * XplatUIWin32.cs: 
647         - GrabWindow now confines the mouse pointer to the confine window.
648         - Added Win32ClipCursor and Win32GetClipCursor.
649
650         * Control.cs: 
651         - Added CaptureWithConfine to be able to capture and confine 
652         mouse pointer.
653         
654         * InternalWindowManager.cs: 
655         - Call CaptureWithConfine instead of Capture if we're an
656         MdiChild (fixes #79982).
657
658 2006-12-21  Chris Toshok  <toshok@ximian.com>
659
660         * DataGrid.cs: guard against the initial state of selection, where
661         selection_start == -1.  make sure we only select from index >= 0.
662         Fixes bug #80291.
663
664 2006-12-21  Chris Toshok  <toshok@ximian.com>
665
666         * Control.cs: we don't need to be so draconian with
667         UpdateDistances, and we thusly don't need to call it before
668         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
669
670 2006-12-21  Daniel Nauck  <dna@mono-project.de>
671
672         * ComboBox.cs,
673         TextBox.cs: Implemented AutoComplete properties.
674
675 2006-12-20  Chris Toshok  <toshok@ximian.com>
676
677         * DataGridView*.cs: some corecompare work.
678
679 2006-12-20  Jackson Harper  <jackson@ximian.com>
680
681         * XplatUIX11.cs: We need to hide the caret when deleting it,
682         otherwise you get carets left lying around everywhere.
683         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
684         prevents getting some weird half drawn caret tracers when
685         scrolling.
686         * TextControl.cs: Attempt to reduce the number of times we need to
687         recreate the caret.
688
689 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
690
691         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
692
693 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
694
695         * DateTimePicker.cs:
696         - Implemented missing 2.0 bits.
697         - Changed some default values to match MS.
698         
699 2006-12-20  Jackson Harper  <jackson@ximian.com>
700
701         * TextBoxBase.cs: When changing the font across the document we
702         can't recalculate after changing each line, since that will cahnge
703         the line count.
704         - PreferredHeight is a little different than i thought.
705         - When backspacing, move the caret before we do the actual char
706         delete, because when that delete crosses a wrap boundary the
707         positional information will change.
708
709 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
710
711         * Control.cs: Added some missing 2.0 bits: 
712         BackgroundImageLayout, BackgroundImageLayoutChanged, 
713         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
714         add IBindableComponent and IDropTarget implementation.
715         
716         * MonthCalendar.cs: 
717         - Added all missing 2.0 features:
718         BackgroundImageLayout, RightToLeftLayout, 
719         OnHandleDestroyed, RightToLeftLayoutChanged, 
720         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
721         PaddingChanged.
722         - Rewrote all the BoldDate code, it was completely broken.
723         - Fixed all the tests (the tests can now be re-enabled, the
724         problems were not with the tests, but with the control, it was
725         mostly broken).
726         
727         * DateTimePicker.cs: Changed the location where the 
728         MonthCalendar is shown.
729         
730 2006-12-19  Chris Toshok  <toshok@ximian.com>
731
732         * DataGridView.cs: add IDropTarget implementation.
733
734         * ToolStripPanel.cs: add IDropTarget implementation.
735
736 2006-12-19  Jackson Harper  <jackson@ximian.com>
737
738         * TextControl.cs: soft now means something different than what it
739         used to mean, we want to move the caret regardless of whether or
740         not this break was soft (would we really have wanted the caret
741         to not move with the break in the old context?)
742         * TreeView.cs: Make sure we factor in the vert scrollbar when
743         calculating the horizontal scrollbar's maximum.
744
745 2006-12-19  Andreia Gaita  <avidigal@novell.org>
746
747         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
748         check for keywords in alternate casing, close bug #80049.
749
750 2006-12-19  Chris Toshok  <toshok@ximian.com>
751
752         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
753         methods (which all do nothing).
754
755         * IDropTarget.cs: add the 4 missing methods.
756
757 2006-12-19  Chris Toshok  <toshok@ximian.com>
758
759         * TableLayoutRowStyleCollection.cs: corcompare work.
760         
761         * TableLayoutSettings.cs: same.
762
763         * TableLayoutStyle.cs: same.
764
765         * TableLayoutColumnStyleCollection.cs: same.
766
767 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
768
769         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
770         TableLayoutPanel I've had in my local tree for way too long.
771
772 2006-12-19  Miguel de Icaza  <miguel@novell.com>
773
774         * TableLayoutSettings.cs: Finish the public API (still needs all
775         the logic to update on changes). 
776
777         * TableLayoutPanelCellPosition.cs: new file.
778         
779         * TableLayoutRowStyleCollection.cs,
780         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
781         TableLayoutSettings.cs: Track the final 2.0 table api.
782
783 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
784
785         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
786         and Image List 2.0 members for ColummnHeader.
787         * ListView.cs: Add key-related 2.0 methods for
788         ColumnHeaderCollection.
789
790 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
791
792         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
793         ArgumentNullException if items argument is null. Ignore null item in
794         arrays. Removed extra tabs.
795
796 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
797
798         * MonthCalendar.cs: Fixed InvalidCastException.
799
800 2006-12-19  Jackson Harper  <jackson@ximian.com>
801
802         * TextControl.cs: Don't increment the position here.
803         - When calculating char positions only add in the line break size
804         for hard line breaks.
805
806 2006-12-19  Andreia Gaita  <avidigal@novell.org>
807
808         * SendKeys.cs: Changed some things to match ms.net behaviour
809         when parsing shifted capital letters.
810         
811         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
812         Add window handle as parameter to SendInput. X11 needs the 
813         window handle, and the handle being passed      to it in the keys 
814         queue is the active control handle (which windows needs), not 
815         the window handle.
816         
817         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
818         to support SendKeys on X.       
819         
820         * X11Keyboard: Implement helper method to lookup a linux keycode
821         given the virtual keycode. Added table of keycode-2-virtualkey
822         values to support this.
823
824 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
825
826         * ListView.cs: Add support for SelectedIndexCollection
827         and SelectedItemCollection 2.0 methods. Implement support
828         for ImageKey too.
829         * ListViewItem.cs: Add support for ListViewSubItemCollection
830         2.0 methods. Also, fix an incorrect behavior of AddRange method
831         (it shouldn't call Clear).
832         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
833
834 2006-12-19  Jackson Harper  <jackson@ximian.com>
835
836         * RichTextBox.cs: 
837         * TextBoxBase.cs: New args for FormatText
838         * TextControl.cs: Rewrote the main drawing method, this version
839         feels a little easier to understand and debug to me.  Hopefully it
840         does to others also
841         - Fix FormatText to OR in the new formating values.  Added
842         FormatSpecified param, basically this works in the same way as
843         BoundsSpecified in Control.
844         - Set the caret properties when the caret is positioned.
845         - When wrapping text make sure that we calculate the width of the
846         last character
847         - when calculating alignments we might have wrapped down to the
848         next line, so don't search for an individual tag, search for the
849         end of the line
850         - We need to invalidate the selection area when we replace the
851         selection.
852         
853 2006-12-19  Daniel Nauck  <dna@mono-project.de>
854
855         * Application.cs: add Restart () 2.0 support
856
857 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
858
859         * MenuItem.cs: Invalidate menu item rectangle after change Enable
860         property. Fixes #80268.
861         
862 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
863
864         * MenuAPI.cs: Dont trigger select event when closes top menu
865         item. Fixes #80270.
866
867 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
868
869         * MenuAPI.cs: When you click on menuitem only trigger onselect
870         event for top menu itens. Fixes #80271.
871         
872 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
873
874         * MdiWindowManager.cs: Make IconicBounds depend on
875         the bottom of MdiClient, not the top (fixes #80267)
876         
877 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
878
879         * MdiClient.cs: Added missing 2.0 attribute
880
881 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
882
883         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
884         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
885
886 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
887
888         * MenuAPI.cs: Fix click when menuitem is not popup,
889         this regression was caused by last commit (#80272).
890
891 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
892
893         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
894         fire click event or close menu. Fixes #80272.
895
896 2006-12-17  Daniel Nauck  <dna@mono-project.de>
897
898         * ListViewHitTestInfo.cs: add
899
900 2006-12-17  Daniel Nauck  <dna@mono-project.de>
901
902         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
903         * FlatButtonAppearance.cs: add
904         * DockingAttribute.cs: add
905
906 2006-12-17  Chris Toshok  <toshok@ximian.com>
907
908         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
909         and rebind our columns when it does - this way, if you make
910         changes to the DataTable (or set the Table attribute on a DataView
911         after setting it as the DataGrid's DataSource, the changes are
912         made visible.)  Fixes bug #80107.
913
914 2006-12-17  Daniel Nauck  <dna@mono-project.de>
915
916         * ListViewGroup.cs: add internal Location property for layouting.
917         * Theme.cs: add abstract ListViewGroupHeight function.
918         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
919
920 2006-12-16  Andreia Gaita  <avidigal@novell.com>
921
922         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
923         Added reset of selected index to 0 when adding first tab page.
924         Fixes #80264
925         
926         * NumericUpDown.cs: Fix NET_2_0 check
927
928 2006-12-16  Daniel Nauck  <dna@mono-project.de>
929
930         * ListViewGroup.cs: fixed DefaultValueAttribute value
931
932 2006-12-16  Daniel Nauck  <dna@mono-project.de>
933
934         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
935
936 2006-12-15  Miguel de Icaza  <miguel@novell.com>
937
938         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
939         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
940         ScrollableControl.cs: Add a handful of methods that are
941         overwritten in 2.0 
942
943 2006-12-15  Chris Toshok  <toshok@ximian.com>
944
945         * XplatUIWin32.cs: initial implementation of the Reversible
946         drawing functions.  there are some problems.  DrawReversibleFrame
947         doesn't seem to work at all for Dashed FrameStyle, and in the
948         Thick case there are drawing errors at the corners (we probably
949         need to bind Rectangle instead of doing moveto/lineto's.)
950
951 2006-12-16  Andreia Gaita  <avidigal@novell.com>
952         
953         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
954         to send blocks of key messages. Send accumulates keys to send with Flush, 
955         while SendWait sends all keys immediately.
956                 
957         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
958         XplatUIX11.cs,  XplatUIX11-new.cs:
959         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
960         to Win32 SendInput.
961         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
962         
963         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
964         testing for ms.net on this class is very tricky, as the tests run too fast 
965         to allow the hook to release, essentially freezing the keyboard and the 
966         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
967         category :p
968
969 2006-12-16  Daniel Nauck  <dna@mono-project.de>
970
971         * Padding.cs: fixed serialization compability to MS ("_var" field names),
972                         added missing attributes.
973  
974 2006-12-15  Daniel Nauck  <dna@mono-project.de>
975
976         * ListViewGroup.cs: Added missing attributes.
977         * ListViewGroupCollection.cs: Added missing attributes.
978
979 2006-12-15  Daniel Nauck  <dna@mono-project.de>
980
981         * ListViewItem.cs: fixed ListViewSubItem text property.
982
983 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
984         
985         * Control.cs: Added missing 2.0 attributes
986         
987 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
988         
989         * MdiClient.cs: Added missing 2.0 attribute.
990         * MonthCalendar.cs: Added some missing 2.0 attributes 
991         and properties.
992         
993 2006-12-15  Daniel Nauck  <dna@mono-project.de>
994
995         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
996
997 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
998
999         * MainMenu.cs: Add the new 2.0 constructor to help out people
1000         using the MainMenu in VS2005.
1001
1002 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1003         
1004         * MdiChildContext.cs: Removed it, no longer used.
1005         * MdiClient.cs: Added missing 2.0 attributes.
1006         
1007 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1008         
1009         * InternalWindowManager.cs: Fix a NullRef with previous 
1010         changes for toolwindows.
1011         
1012 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1013
1014         * Control.cs: 
1015         - Added AfterTopMostControl to allow for certain controls 
1016         to always stay on top when normal controls are brought to 
1017         front.
1018         
1019         * XplatUIWin32.cs: 
1020         - (DrawInversibleRectangle): Get window rectangle from Win32 
1021         in stead of from control, since Win32 doesn't calculate
1022         screen coords correctly from control's Location if it 
1023         have docked siblings.
1024         
1025         * MdiWindowManager.cs:
1026         - Correct the control menu popup location when clicked on
1027         the maximized form icon. (fixes #80223.1)
1028         - Don't show moving rectangle if mouse hasn't moved from
1029         the original clicked point.
1030         - Removed FormGotFocus handler (not used).
1031         - Calculate the control buttons location from the main
1032         window's size and not client size (fixes #79770).
1033         - Form is now closed when the form icon is double-clicked
1034         (fixes #79775). 
1035         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
1036         
1037         * InternalWindowManager.cs:
1038         - Moved some MDI-only methods to MdiWindowManager.
1039         - Removed unused properties and methods.
1040         - Unified method naming for methods handling wm messages.
1041         - Moved all message handling to seperate methods for
1042         each message.
1043         
1044         * ThemeWin32Classic.cs:
1045         - DrawManagedWindowDecorations now draws the title bar 
1046         with a gradient brush.
1047         - Add a CPDrawButtonInternal that allows us to specify
1048         light, normal and dark colors for the buttons (control 
1049         buttons for MDI children were drawn with the same light
1050         color as the background, therefore loosing the 3D effect).
1051         
1052         * SizeGrip.cs:
1053         - Add a CapturedControl property that is used to 
1054         determine the control to resize (defaults to parent). 
1055         Needed for MdiClient, since its SizeGrip's parent is
1056         MdiClient, but the control to resize is the main form.
1057         
1058         * MdiClient.cs:
1059         - Set SizeGrip's CapturedControl to the main form in order
1060         to resize the main form and not the MdiClient.
1061         - Override AfterTopMostControl to leave the scrollbars 
1062         always on top.
1063
1064 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1065
1066         * ListView.cs: fixed ListViewItemCollection AddRange and
1067                         implemented ListViewItemCollection AddRange 2.0 support.
1068
1069 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1070
1071         * ListViewGroup.cs: Add.
1072         * ListViewGroupCollection.cs: Add
1073         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
1074         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
1075                                 stub for ImageKey 2.0 support.
1076
1077 2006-12-14  Mike Kestner  <mkestner@novell.com>
1078
1079         * ListView.cs: add text padding to the autocalculation for columns
1080         of width -2.  Fixes #80207.
1081  
1082 2006-12-14  Mike Kestner  <mkestner@novell.com>
1083
1084         * ListView.cs: add some index guarding for partial row navigation 
1085         logic.  Fixes #80250.
1086
1087 2006-12-14  Mike Kestner  <mkestner@novell.com>
1088
1089         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
1090         are added or inserted to the collection.  Fixes #81099.
1091
1092 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
1093
1094         * MenuAPI.cs: Closes menu when right click out side of popup
1095         it fix problem in ContextMenu and MainMenu. Fixes #80252.
1096
1097 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1098
1099         * ListViewItem.cs: Fix dumb error.
1100
1101         * ListView.cs: Add Find and ContainsKey methods in 
1102         ListViewItemCollection, and also return true for IsReadOnly
1103         and IsFixedSize (changes for 2.0). 
1104
1105 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
1106
1107         * Control.cs: Allow Region to be set to null.
1108
1109 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1110
1111         * MdiWindowManager.cs: Remove unused (commented out) code.
1112         * Form.cs: When the MdiChild is maximized, the form needs 
1113         WM_NCMOUSELEAVE, so request it.
1114         * InternalWindowManager.cs: 
1115         - Added tooltips to control buttons.
1116         - Removed duplicated control button handling code.
1117         - Removed unused (commented out) code.
1118         
1119 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
1120
1121         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
1122         was used because we must set cursor without trigger ChangeCursor event
1123         and without change Cursor control property. Fixes #79963.
1124
1125 2006-12-12  Andreia Gaita  <avidigal@novell.com>
1126         
1127         * Control.cs: Check if Region setter value is null, and ignore
1128
1129 2006-12-12  Jackson Harper  <jackson@ximian.com>
1130
1131         * TextControl.cs: We were almost always drawing one more line then
1132         needed, since the GetLineByPixel will return the last line found
1133         at that pixel. In most cases though, we were invalidating up to
1134         the junction between two lines.
1135         - Improve debug code.
1136
1137 2006-12-12  Chris Toshok  <toshok@ximian.com>
1138
1139         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
1140         and FillReversibleRectangle.
1141
1142         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
1143         and FillReversibleRectangle.
1144
1145         * XplatUIWin32.cs: add stubs which do nothing for
1146         DrawReversibleFrame, DrawReversibleLine, and
1147         FillReversibleRectangle.
1148
1149         * XplatUIOSX.cs: add stubs which raise NIE for
1150         DrawReversibleFrame, DrawReversibleLine, and
1151         FillReversibleRectangle.
1152
1153         * XplatUIX11.cs: add working implementation for
1154         DrawReversibleFrame, DrawReversibleLine, and
1155         FillReversibleRectangle.
1156         
1157         * ControlPaint.cs: implement DrawReversibleFrame,
1158         DrawReversibleLine, and FillReversibleRectangle, by calling into
1159         the appropriate XplatUI method.
1160
1161 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1162
1163         * Form.cs: Make MdiClient have the focus even if it's
1164         not selectable, since it should receive WM_KEY* and WM_MOUSE 
1165         messages. Fixes #79907.
1166         
1167 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1168
1169         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
1170         queried after the window is created.
1171         
1172         * XplatUIX11.cs: Added SendParentNotify to implement 
1173         WM_PARENTNOTIFY logic. Fixes #79965.
1174         
1175         * Control.cs: Added MakeParam.
1176         
1177 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1178
1179         * MdiClient.cs: Resume Layout before setting window
1180         states (fixes #80201).
1181
1182 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1183
1184         * MenuAPI.cs: Deselect a menu item after performing
1185         the click (fixes #80197).
1186
1187 2006-12-11  Jackson Harper  <jackson@ximian.com>
1188
1189         * TextBoxBase.cs: We need to cap this value, since Maximum -
1190         ViewPortHeight can be less than zero.
1191         - Only do selection with the left mouse button.
1192         * TextBox.cs: Don't tell the world that we have a context menu.
1193         * Control.cs: New method so that we can control whether or not the
1194         context menu is visible outside MWF.
1195
1196 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1197
1198         * ToolBarButton.cs: Fix text positon. 
1199
1200 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1201
1202         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
1203
1204         * Control.cs (DoubleBuffered): Add implementation.
1205
1206         * Application.cs (OpenForms): Add.
1207
1208 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1209
1210         * Form.cs: Use opacity instead of Opactiy to determine if we need
1211         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
1212
1213 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1214
1215         * Control.cs: Fix NRE if Control.Site was set to null.
1216
1217 2006-12-11  Chris Toshok  <toshok@ximian.com>
1218
1219         * Control.cs: ControlCollection.Remove should return if the arg is
1220         null, and ControlCollection.SetChildIndex should raise a ANE.
1221
1222 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
1223
1224         * Control.cs: Verify value set for Dock property. Code formatting
1225         updates.
1226
1227 2006-12-11  Jackson Harper  <jackson@ximian.com>
1228
1229         * TextControl.cs: Draw the caret and the selection when a flag is
1230         set on the owner.
1231         * TextBoxBase.cs: We want to draw the caret and the selection for
1232         TextBox but not for TextBoxBase.
1233         - If the window is resized and scrolling is no longer needed (the
1234         whole doc is visible) set the scroll position to zero.
1235         - The default SelectWord (the one TextBox uses) should move the
1236         caret to the end of the word.
1237         - SelectAll moves the caret to the end of the selection.
1238         * TextBox.cs: We don't selectall on focus, we just do it when the
1239         control is created.
1240         
1241 2006-12-11  Mike Kestner  <mkestner@novell.com>
1242
1243         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
1244
1245 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1246
1247         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
1248         2.0 support.
1249         * ListViewItem.cs: Add Name 2.0 property.
1250
1251 2006-12-11  Andreia Gaita  <avidigal@novell.com>
1252
1253         * TabControl.cs: Set visibility on selected or default tab 
1254         when tabcontrol handle is created, so that it's contents
1255         actually show up (duh). Fixes #80193
1256         Don't redraw the control if there is no handle created, as
1257         the selected index might be completely invalid. Added some tests
1258         to check for this.
1259
1260 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1261
1262         * ToolBar.cs: Uses maximun width and height of all buttons as 
1263         button rectangle when ButtonSize specified, it looks strange but
1264         is what happens in Win32. Fixes #80189.
1265
1266 2006-12-11  Jackson Harper  <jackson@ximian.com>
1267
1268         * TextControl.cs: Need to track undo levels ourself, since
1269         compound actions will mess them up.
1270
1271 2006-12-10  Andreia Gaita  <avidigal@novell.com>
1272
1273         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
1274         SelectedIndex value is changed (even if it's not valid).
1275         Reset SelectedIndex to 0 when the handle is created and if
1276         the current index is invalid.
1277         Fixes SelectdeIndex unit tests and #80128
1278
1279 2006-12-08  Chris Toshok  <toshok@ximian.com>
1280
1281         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
1282         calls EndEdit, it needs to be called before we set current_cell to
1283         its new value.  Otherwise, we end up committing the value in the
1284         textbox to the new cell as well.  Fixes bug #80160.
1285
1286 2006-12-08  Chris Toshok  <toshok@ximian.com>
1287
1288         * Form.cs (set_CancelButton): if the button's DialogResult is
1289         None, set it to Cancel.  Fixes bug 80180.
1290
1291 2006-12-08  Jackson Harper  <jackson@ximian.com>
1292
1293         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
1294         to watch ourselves when setting the canvas size and setting the
1295         scrollbar values.
1296
1297 2006-12-08  Chris Toshok  <toshok@ximian.com>
1298
1299         * DataGrid.cs: comment out the two MakeTransparent calls for the
1300         time being so people using trunk (and not 1.2.2) on windows can
1301         actually use the datagrid.  This deals with bug #80151.
1302
1303 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1304
1305         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
1306         Graphics.DrawImage (image, int, int, int, int) overload instead
1307         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
1308         the dpi difference and was blurring images it drew.
1309         [Fixes bug #79960]
1310
1311 2006-12-08  Chris Toshok  <toshok@ximian.com>
1312
1313         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
1314         rowcnt is 0 (such as with an empty datasource), and make sure we
1315         initialize not_usedarea.Y to cells.Y, so we don't draw over the
1316         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
1317
1318 2006-12-08  Chris Toshok  <toshok@ximian.com>
1319
1320         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
1321         grid.
1322
1323 2006-12-08  Chris Toshok  <toshok@ximian.com>
1324
1325         [ Fixes bug #80167 ]
1326         
1327         * ThemeWin32Classic.cs: don't draw the image if the button's flat
1328         style is FlatStyle.System.
1329
1330         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
1331         ButtonBase.flat_style private, and switch uses of it to the public
1332         property.
1333         
1334 2006-12-08  Chris Toshok  <toshok@ximian.com>
1335
1336         [ Fixes bug #80121 ]
1337         
1338         * ThemeWin32Classic.cs: center the caption text in the datagrid
1339         when we draw it.
1340
1341         * DataGrid.cs: lessen the amount we add to the caption height from
1342         6 to 2.  6 was making it huge.
1343
1344 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1345
1346         * UpDownBase: Handle MouseWheel call directly instead of capturing
1347         the inner textbox's OnMouseWheel. Fixes #80166
1348
1349 2006-12-08  Jackson Harper  <jackson@ximian.com>
1350
1351         * TextControl.cs: We need to invalidate the textbox when we empty
1352         it (how had this not been discovered before?)
1353
1354 2006-12-08  Jackson Harper  <jackson@ximian.com>
1355
1356         * TextBoxBase.cs: Reworked the mouse down code so I could get it
1357         to behave like MS, we now ignore the eventargs.Click and just
1358         track state ourself, which we were already doing anyways.
1359         - Constrain the double click handler to the double click size.
1360         
1361 2006-12-08  Chris Toshok  <toshok@ximian.com>
1362
1363         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
1364         direction if that scrollbar isn't shown.  fixes bug #80158.
1365
1366 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1367
1368         * NumericUpDown.cs: Update value on getter. Fixes #79950
1369
1370 2006-12-08  Chris Toshok  <toshok@ximian.com>
1371
1372         * MenuItem.cs: add back in the event cloning code.  I didn't know
1373         how to do it in the face of the EventHandlerList work i'd done
1374         last week.  Fixes bug #80183.
1375
1376 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1377
1378         * Control.cs: Add an invalidate to the BackgroundImage setter.
1379         [Fixes 80184]
1380
1381 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1382
1383         * ToolStrip*: Add some small properties reported by MoMA, fix event
1384         firing and default properties based off of unit tests, and add some
1385         attributes based off of the class status page.
1386
1387 2006-12-07  Jackson Harper  <jackson@ximian.com>
1388
1389         * TextBoxBase.cs: Take HideSelection into account when determining
1390         whether or not to show the selection.
1391         * RichTextBox.cs: After inserting the RTF into the document move
1392         the cursor to the beginning of the document.
1393
1394 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1395
1396         * Control.cs: Remove static ArrayList "controls" which maintained
1397         a reference to every control created.
1398         * Application.cs: Create a static FormCollection to maintain a reference
1399         to every form created.  Use it in places that formerly enumerated through
1400         the controls one looking for forms.
1401         * Form.cs: Add and remove self from above FormCollection.
1402
1403 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
1404
1405         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
1406           not libgdk (though it makes me wonder why I didn't have any
1407           problems)
1408
1409 2006-12-07  Chris Toshok  <toshok@ximian.com>
1410
1411         [ you had to know this was coming after that last commit...]
1412         
1413         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
1414         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
1415         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
1416         XCopyArea).
1417
1418 2006-12-07  Chris Toshok  <toshok@ximian.com>
1419
1420         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
1421         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
1422         all the behavior we need for double buffering.
1423
1424         * XplatUIDriver.cs: implement the 3 double buffer methods using a
1425         client side Bitmap, just like the old Control-based double buffer
1426         code did.  The methods are virtual, so each XplatUI driver
1427         subclass can replace the implementation to use a faster, platform
1428         specific approach.
1429
1430         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
1431         double buffer code, and clean things up a bit in the process.
1432
1433 2006-12-06  Chris Toshok  <toshok@ximian.com>
1434
1435         * Control.cs: reindent WndProc.
1436
1437 2006-12-06  Chris Toshok  <toshok@ximian.com>
1438
1439         [ I wanna be like BenM when I grow up ]
1440         
1441         * Hwnd.cs: create a single static Graphics object on the static
1442         Bitmap we create.  use this for our text measurements.
1443
1444         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
1445         This was causing us to allocate a backbuffer for every control,
1446         even when it wasn't flagged as double buffered.  Instead use the
1447         single graphics instance.  This might have implications for
1448         multithreaded applications.  If we run into problems we can switch
1449         to creating 1 Graphics per control, on the static Hwnd bitmap.
1450
1451         this change nets us a 7M savings in private dirty mappings when
1452         running FormsTest.exe.
1453
1454 2006-12-06  Chris Toshok  <toshok@ximian.com>
1455
1456         * ListView.cs: the BackgroundImage override is just to set
1457         attributes.  chain up to base.BackgroundImage.
1458
1459         * RichTextBox.cs: same.
1460
1461         * ToolBar.cs: same, but we need to also redraw the toolbar when it
1462         changes, so instead a handler for BackgroundImageChanged.
1463         
1464         * Control.cs: make background_image private.
1465
1466 2006-12-06  Chris Toshok  <toshok@ximian.com>
1467
1468         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
1469         sure we even need this assignment, but roll with it for now.
1470
1471         * Control.cs: make the cursor field private.
1472
1473 2006-12-06  Chris Toshok  <toshok@ximian.com>
1474
1475         * Form.cs: we don't need to explicitly set ImeMode to
1476         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
1477         behavior in the face of ImeMode.Inherit.
1478
1479         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
1480         change the ctor's assignment to use ImeMode instead of ime_mode.
1481
1482         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
1483         ImeModeInherit.  Only check for the parent's imemode (and return
1484         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
1485         This fixes the button unit test, which sets both ImeMode and
1486         DefaultImeMode to ImeMode.Disable.
1487
1488         also make the ime_mode field private.
1489
1490 2006-12-06  Chris Toshok  <toshok@ximian.com>
1491
1492         * Control.cs: make control_style private.
1493
1494         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
1495         setting the styles to true, then setting them to false instead of
1496         reverting to their previous values.
1497
1498         also, call SetStyle on the scrollbars instead of using
1499         control_style directly.
1500
1501 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
1502
1503         * FormCollection.cs: Implement. [2.0]
1504
1505 2006-12-06  Chris Toshok  <toshok@ximian.com>
1506
1507         * Control.cs: make tab_stop private.
1508
1509         * Label.cs: set TabStop, not tab_stop.  reformat some event
1510         add/remove methods to make them more compact.
1511
1512 2006-12-06  Chris Toshok  <toshok@ximian.com>
1513
1514         * RadioButton.cs: fix TabStop handling.
1515
1516 2006-12-06  Chris Toshok  <toshok@ximian.com>
1517
1518         * TextBox.cs: remove the explicit assignments to has_focus.
1519         Control does that.
1520
1521         * ButtonBase.cs: remove the assignment to has_focus.  Control will
1522         manage that.
1523         
1524 2006-12-06  Chris Toshok  <toshok@ximian.com>
1525
1526         * ButtonBase.cs: remove all uses of is_enabled from this code.
1527         it's always true when any of the code containing the checks is
1528         executed.
1529
1530 2006-12-06  Chris Toshok  <toshok@ximian.com>
1531
1532         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
1533         with different semantics (some are present in both 1.1 and 2.0
1534         profiles) so that we match MS's behavior in our unit tests.
1535
1536 2006-12-06  Jackson Harper  <jackson@ximian.com>
1537
1538         * TextControl.cs: Make this operation undoable.
1539         * TextBoxBase.cs: Factor the border width into the preferred
1540         height.
1541         - implement Modified as per the spec.
1542
1543 2006-12-06  Chris Toshok  <toshok@ximian.com>
1544
1545         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
1546
1547 2006-12-06  Chris Toshok  <toshok@ximian.com>
1548
1549         * Control.cs: make right_to_left and context_menu fields private.
1550
1551 2006-12-06  Chris Toshok  <toshok@ximian.com>
1552
1553         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
1554         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
1555         Control.child_controls private.  switch all uses over to
1556         Control.Controls.
1557
1558 2006-12-06  Chris Toshok  <toshok@ximian.com>
1559
1560         * System.Windows.Forms/GroupBox.cs,
1561         System.Windows.Forms/AccessibleObject.cs,
1562         System.Windows.Forms/ErrorProvider.cs,
1563         System.Windows.Forms/Control.cs,
1564         System.Windows.Forms/UpDownBase.cs,
1565         System.Windows.Forms/ScrollBar.cs,
1566         System.Windows.Forms/DateTimePicker.cs,
1567         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
1568         System.Windows.Forms/ToolTip.cs,
1569         System.Windows.Forms/RadioButton.cs,
1570         System.Windows.Forms/LinkLabel.cs,
1571         System.Windows.Forms/Splitter.cs,
1572         System.Windows.Forms/TextBoxBase.cs,
1573         System.Windows.Forms/ToolStripTextBox.cs,
1574         System.Windows.Forms/ContainerControl.cs,
1575         System.Windows.Forms/ThemeWin32Classic.cs,
1576         System.Windows.Forms/SizeGrip.cs,
1577         System.Windows.Forms/ToolStripDropDown.cs,
1578         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
1579         private.  switch all uses over to Control.Parent.
1580
1581 2006-12-06  Chris Toshok  <toshok@ximian.com>
1582
1583         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
1584         Control does this before calling emitting these events.
1585
1586         * TabControl.cs: same.
1587
1588         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
1589         Control.client_rect.
1590
1591         * ButtonBase.cs: use the ClientSize property instead of the
1592         client_size field.
1593
1594         * ScrollableControl.cs: same.
1595
1596         * Control.cs: another pass at making properties private.  also,
1597         move the initialization of tab_stop to the ctor.
1598
1599 2006-12-05  Andreia Gaita <avidigal@novell.com>
1600
1601         * TabControl.cs: Let the selected index be set freely if the 
1602         control handle is not yet created.
1603
1604 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1605
1606         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
1607         internal until I can rewrite DefaultLayout.
1608         * ToolStrip.cs: Fix build error and some general cleaning.
1609         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
1610         Fix build errors caused by making some of Control's fields private.
1611
1612 2006-12-05  Jackson Harper  <jackson@ximian.com>
1613
1614         * TextControl.cs: Redo Insert a little so that it use IndexOf
1615         instead of Split, this prevents it from messing up on things like
1616         \n\n\n. Also more effecient since the split array doesn't need to
1617         be created.
1618         * TextBoxBase.cs: AppendText doesnt handle multiline and non
1619         multiline text differently, this is the first of many fixes that
1620         will make multiline/non-multiline the same thing as far as the
1621         TextBoxBase is concerned.
1622         - Don't split the text and insert lines, this can lose some line
1623         endings (like is the last line a soft or hard break). Instead use
1624         the new Insert.
1625         - Fix an off by one when combining all the lines in the Text
1626         getter.
1627         - Remove separate multiline handling from the Text getter/setter.
1628
1629 2006-12-05  Chris Toshok  <toshok@ximian.com>
1630
1631         * ButtonBase.cs: a few changes:
1632
1633         - don't reinitialize internal Control fields in the ctor when they
1634         have the same values as Control sets them.
1635
1636         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
1637         this before calling those methods.
1638
1639         - we don't need to call Refresh for anything.  use Invalidate
1640         instead.
1641
1642         - OnEnabledChanged doesn't need to redraw at all - Control.cs
1643         calls Refresh in its OnEnabledChanged.
1644         
1645         - several of the events we were registered for in the ctor to
1646         redraw ourselves already include calls to Invalidate in the
1647         property setters that raise the events.  remove the extra
1648         invalidation.
1649
1650         - reformat a switch statement that was 83274658 columns wide.
1651         
1652 2006-12-05  Mike Kestner  <mkestner@novell.com>
1653
1654         * ComboBox.cs: fix a unit test regression from a TextBox
1655         SelectionLength return of -1 when there's no selection.  
1656
1657 2006-12-05  Chris Toshok  <toshok@ximian.com>
1658
1659         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
1660         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
1661         cleaning up some of the internal Control fields being used by
1662         subclasses.
1663
1664 2006-12-05  Mike Kestner  <mkestner@novell.com>
1665
1666         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
1667         listbox after AddImplicit calls since it defaults to hidden. Add a 
1668         hack to preserve requested heights across DropDownStyle changes.
1669
1670 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1671
1672         * PropertyGrid.cs: Hide FindFirstItem method from public API.
1673
1674 2006-12-05  Chris Toshok  <toshok@ximian.com>
1675
1676         * DataGridView.cs: fix compiler warnings.
1677
1678         * PrintControllerWithStatusDialog.cs: same.
1679
1680         * ToolBar.cs: same.
1681
1682         * FolderBrowserDialog.cs: same.
1683
1684         * Splitter.cs: same.
1685
1686         * DataGridViewComboBoxCell.cs: same.
1687
1688         * XplatUIWin32.cs: same.
1689
1690         * PictureBox.cs: same.
1691
1692         * Win32DnD.cs: same.
1693
1694         * PageSetupDialog.cs: same.
1695
1696         * FileDialog.cs: same.
1697
1698         * PrintDialog.cs: same.
1699
1700         * DataGridTextBoxColumn.cs: same.
1701
1702         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
1703
1704 2006-12-05  Chris Toshok  <toshok@ximian.com>
1705
1706         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
1707         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
1708         System.ComponentModel.EventHandlerList work.
1709
1710 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
1711
1712         * DrawTreeNodeEventArgs.cs: Added.
1713
1714 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1715         
1716         * InternalWindowManager.cs: Remove an unused field.
1717         
1718 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1719
1720         * InternalWindowManager.cs:
1721         - Save the point where the title bar is clicked.
1722         
1723         * MdiWindowManager.cs:
1724         - Only allow moving of the window as long as the 
1725         clicked point on the title bar does not get out of
1726         MdiClient's rectangle. Fixes #79982.
1727         
1728         * MdiClient.cs:
1729         - Added Horizontal/VerticalScrollbarVisible.
1730         - Simplified the scrollbar sizing algorithm.
1731         - Cache the difference in scrolled value in
1732         H/VBarValueChanged and move the calculation out
1733         of the for loop.
1734
1735 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1736
1737         * Control.cs: Make the Console.WriteLine in WndProc 
1738         write more info.
1739
1740 2006-12-05  Chris Toshok  <toshok@ximian.com>
1741
1742         * ToolStripManager.cs, ToolStripButton.cs,
1743         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
1744         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
1745         ToolStripSplitButton.cs, ToolStripSeparator.cs,
1746         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
1747         ToolStripProgressBar.cs, ToolStripContainer.cs,
1748         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
1749         to using System.ComponentModel.EventHandlerList.
1750
1751 2006-12-04  Chris Toshok  <toshok@ximian.com>
1752
1753         * LinkLabel.cs: fix up compiler warnings.
1754
1755         * TableLayoutSettings.cs: same.
1756
1757         * TreeView.cs: same.
1758
1759         * ToolBar.cs: same.
1760
1761         * TabControl.cs: same.
1762
1763         * RichTextBox.cs: same.
1764
1765         * ListViewItem.cs: same.
1766
1767         * PropertyGrid.cs: same.
1768
1769         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
1770
1771         * ToolTip.cs same.
1772
1773         * TextRenderer.cs: fix up compiler warnings.
1774
1775         * Label.cs: same.
1776
1777         * Form.cs: corcompare fixes.
1778
1779         * PictureBox.cs: fix up compiler warnings.
1780
1781         * ImageListStreamer.cs: same.
1782
1783         * TrackBar.cs: corcompare fix.
1784
1785         * Control.cs: fix up compiler warnings.
1786
1787         * SplitterPanel.cs: same.
1788
1789         * NumericTextBox.cs: same.
1790
1791         * ImageList.cs: same.
1792
1793         * StatusStrip.cs: same.
1794
1795         * ProgressBar.cs: corcompare fix.
1796
1797         * ToolStripButton.cs: fix up compiler warnings.
1798
1799         * ToolStripStatusLabel.cs: same.
1800
1801         * ToolStripSplitButton.cs: same.
1802
1803         * ToolStripSeparator.cs: same.
1804
1805         * ToolStripProgressBar.cs: same.
1806
1807         * ToolStripDropDownMenu.cs: same
1808
1809         * ToolStripDropDown.cs: same.
1810
1811         * ToolStripDropDownButton.cs: same.
1812
1813         * ToolStrip.cs: same.
1814
1815         * ToolStripControlHost.cs: same.
1816
1817         * ToolStripContentPanel.cs: same.
1818
1819         * ToolStripDropDown.cs: same.
1820
1821         * ToolStripContainer.cs: same.
1822
1823         * ToolStripPanel.cs: same, and add "new" where we need it to work
1824         with the new ArrangedElementCollection.
1825
1826         * ToolStripItemCollection.cs: add "new" where we need it to work
1827         with the new ArrangedElementCollection.
1828
1829 2006-12-04  Andreia Gaita <avidigal@novell.com>
1830
1831         * TabControl.cs: Fix default tab selection to after TabControl
1832         gets focus and not before. Fixes #80128
1833
1834 2006-12-04  Chris Toshok  <toshok@ximian.com>
1835
1836         * DataGridTableStyle.cs: remove the gross calling of
1837         datagrid.Refresh from here.  It's a broken idea and it doesn't
1838         work anyway.
1839
1840         * DataGrid.cs: instead, just register/unregister from the
1841         DataGridTableStyle events in CurrentTableStyle.  we play it
1842         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
1843         even though some would most likely not require it.  Fixes bug
1844         #80115 (and one portion of #80117 as a side effect).
1845
1846 2006-12-04  Chris Toshok  <toshok@ximian.com>
1847
1848         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
1849         so the textbox (if any) goes away.  Fixes bug #80117.
1850
1851 2006-12-04  Chris Toshok  <toshok@ximian.com>
1852
1853         * DataGridColumnStyle.cs: set the column's readonly property
1854         initially based on the property descriptor's IsReadOnly.  Fixes
1855         bug #80044.
1856
1857 2006-12-04  Chris Toshok  <toshok@ximian.com>
1858
1859         * ComboBox.cs: wrap the dropdown style changing work in
1860         SuspendLayout/ResumeLayout.  Fixes bug #79968.
1861
1862 2006-12-04  Jackson Harper  <jackson@ximian.com>
1863
1864         * TextBoxBase.cs: Fix off by one, since these are one-based.
1865         * TextBox.cs: Select all the text when we get focus.  The TextBox
1866         does this but the RTB does not.
1867
1868 2006-12-04  Chris Toshok  <toshok@ximian.com>
1869
1870         * DataGridTextBoxColumn.cs: remove some spew.
1871
1872         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
1873         but some part of me is saying "it shouldn't be here.."  At any
1874         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
1875         setting the value.
1876
1877 2006-12-04  Chris Toshok  <toshok@ximian.com>
1878
1879         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
1880         to reassign the propertydescriptor.
1881
1882 2006-12-04  Jackson Harper  <jackson@ximian.com>
1883
1884         * TextBoxBase.cs:
1885         * TextControl.cs: Remove some unused variables.  Maybe this will
1886         patch things up between mike and I.
1887         - don't split lines less then one char wide, if the viewport is
1888         that small text won't be visible anyways.
1889         
1890 2006-12-04  Jackson Harper  <jackson@ximian.com>
1891
1892         * TextBoxBase.cs: Default selection length is -1, need to do some
1893         more testing on windows to see when this is used for the property.
1894         - Redid the Lines [] property to that we properly remove soft line
1895         breaks
1896         - added support for preserving carriage returns
1897         -  CanUndo is not a variable like 'is undo enabled' it just returns
1898         true if there is undo operations available.
1899         - AppendText doesn't need to grab the last tag itself anymore,
1900         this happens automatically when we move the cursor.
1901         * TextControl.cs: Add CompoundActions to the undo class. This
1902         allows combining the other operations into one big option.  ie a
1903         paste will combine { delete old, insert new, move cursor }
1904         - Add InsertString undo operation
1905         - New method for deleting multiline text
1906         - Add carriage returns to lines. So we can preserve carriage
1907         returns when text is 'roundtripped'
1908
1909 2006-12-04  Chris Toshok  <toshok@ximian.com>
1910
1911         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
1912         minimum 0.  Fixes the scrollbar exception in bug #80136.
1913
1914 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1915
1916         * MdiClient.cs: 
1917         * MdiWindowManager: Removed unused fields and methods.
1918         
1919 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1920         
1921         * StatusBar.cs: Update all panels when a AutoSize=Contents
1922         panel needs updating.
1923         
1924         * StatusBarPanel.cs: Remove twidth and only use initialize.
1925         Fixes #80031.
1926                 
1927 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1928
1929         * Form.cs: When a form's MdiParent is set add it directly
1930         on top of the z-order in stead of relying on MdiClient's
1931         ActivateChild to do it. Fixes #80135.
1932         
1933         * MdiClient.cs: 
1934         - Remove original_order, mdi_child_list is already doing
1935         the same thing.
1936         - Create mdi_child_list on construction in
1937         stead of first use (avoids a few null checks).
1938
1939         * MenuItem.cs: Use an already existing list of mdi children
1940         to get the correct order of children and remove the other
1941         redundant list.
1942
1943 2006-12-04  Chris Toshok  <toshok@ximian.com>
1944
1945         * PropertyGridView.cs: cached_splitter_location is only used in
1946         !DOUBLEBUFFER code.
1947
1948         * PropertyGrid.cs: implement the ComComponentNameChanged event
1949         using Events, hoping that would fix the warning.  Looks like a
1950         compiler bug instead (#80144).
1951
1952         * PropertyManager.cs: remove unused method.
1953
1954 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
1955
1956         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
1957         include parentesis to fix expression evaluation. Fixes #79634.
1958
1959 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1960         
1961         * MenuAPI.cs:
1962         - Changes to fix behavior in Menu control, some reported in #80097
1963         and other detected during behavior refactory like a select event
1964         problems.
1965         - Remove unneded "if's" conditions.
1966         - Created an internal to flag when popup is active in control, we need 
1967         it because in .NET you can have menu active but without popup active
1968         when you active menu using popup without visible items.
1969         - Mimic win32 behavior for Select and Popup events.  
1970         - Dont open popup menu when you dont have visible subitems.
1971         - Do nothing when click on disabled menu item.
1972         - Some small changes to follow the coding style guidelines.
1973         - Unselect menu only when another control gives focus. Fixes #80097.
1974         - Remove unused code.
1975         
1976         * MenuItem.cs: internal VisibleItems method to check if menu
1977         theres visible subitems, it will be usefull to fix some 
1978         behavior in Menu control.
1979         
1980 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1981         
1982         * Timer.cs: Tag property for 2.0 profile.
1983         
1984 2006-12-01  Chris Toshok  <toshok@ximian.com>
1985
1986         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
1987         
1988         * Win32DnD.cs: comment out some unused fields.
1989
1990         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
1991         some unused properties/methods.
1992
1993         * XplatUIX11.cs: fix MousePosition so we override the base class's
1994         property instead of conflicting with it.
1995
1996         * PictureBox.cs: comment out some unused fields
1997
1998         * OSXStructs.cs: make some struct fields public.
1999
2000         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
2001         MousePosition so we override the base class's property instead of
2002         conflicting with it.
2003
2004         * X11Dnd.cs: comment out some unused fields
2005
2006         * X11DesktopColors.cs: fix some struct field visibility to quiet
2007         the compiler.
2008
2009         * X11Dnd.cs: remove some debug code.
2010
2011         * ThemeClearlooks.cs: comment out unused field.
2012
2013         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
2014
2015         * ThemeGtk.cs: comment out some unused pinvokes.
2016
2017         * Timer.cs: remove some unused fields.
2018
2019         * ThemeClearlooks.cs: comment out unused field.
2020
2021         * UpDownBase.cs: comment out unused field.
2022
2023         * DataObject.cs: comment out unused field.
2024
2025         * DataGridBoolColumn.cs: reomve unused field.
2026
2027         * DataGrid.cs: remove unused field.
2028
2029         * Cursor.cs: remove old ToBitmap code.
2030
2031         * ControlPaint.cs: remove unused method.
2032
2033         * ScrollBar.cs: remove unused fields.
2034
2035         * ComboBox.cs: remove unused field, and chain up to
2036         AccessibleObject ctor.
2037
2038         * ListBox.cs: remove unused field.
2039
2040         * ButtonBase.cs: wrap a couple fields in NET_2_0.
2041
2042         * GridEntry.cs: remove unused fields.
2043
2044         * Binding.cs: remove unused fields.
2045
2046         * AxHost.cs: remove unused method.
2047
2048         * ContainerControl.cs: remove unused field.
2049
2050         * ScrollableControl.cs: remove unused fields.
2051
2052 2006-12-01  Chris Toshok  <toshok@ximian.com>
2053
2054         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
2055         the Where/WhereString stuff.  it's easy enough to CWL
2056         Environment.StackTrace.
2057
2058         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
2059         unused private fields.
2060
2061 2006-12-01  Jackson Harper  <jackson@ximian.com>
2062
2063         * TextControl.cs: Do not update the view while inserting multiline
2064         text. If we update the view we might wrap lines, before entering
2065         the new lines, which causes the new line insertion calculations to
2066         be totally fubared.
2067         - Remove an old TODO
2068         - Make debug output a little nicer
2069         
2070 2006-12-01  Chris Toshok  <toshok@ximian.com>
2071
2072         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
2073
2074 2006-12-01  Chris Toshok  <toshok@ximian.com>
2075
2076         [ fix the majority of the CS0108 warnings we've been suppressing ]
2077         
2078         * TreeView.cs: mark BackgroundImageChanged as 'new'.
2079
2080         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
2081         to "LayoutToolBar" to quiet mcs.
2082         
2083         * TabControl.cs: mark our ControlCollection class as 'new'.
2084
2085         * TextBoxBase.cs: mark some events as 'new'.
2086
2087         * Splitter.cs: TabStop is 'new'.
2088
2089         * ControlBindingsCollection.cs: mark a few methods as new since
2090         they change the visibility from protected to public.
2091
2092         * RadioButton.cs: DoubleClick -> base class, and remove unused
2093         HaveDoubleClick.
2094
2095         * MonthCalendar.cs: ImeMode property -> base class, and mark many
2096         events as new.
2097
2098         * NumericUpDown.cs: TextChanged -> base class.
2099
2100         * CheckedListBox.cs: mark our ObjectCollection class as new to
2101         quiet mcs.
2102
2103         * FolderBrowserDialog.cs: make HelpRequest event new and have it
2104         muck with the base class.
2105
2106         * StatusBar.cs: fix some mcs warnings about Update being the same
2107         name as a base class method.
2108
2109         * RichTextBox.cs: mark some events as new, and make them do things
2110         to the base class impl.
2111
2112         * UserControl.cs: mark TextChanged as new, and have it manipulate
2113         base.TextChanged.
2114
2115         * UpDownBase.cs: mark some things new.
2116
2117         * CheckBox.cs: mark DoubleClick "new", and add some text about
2118         what we need to look at.
2119
2120         * Panel.cs: make the events "new", and manipulate the base
2121         version.  these are just here for attributes.
2122
2123         * AccessibleObject.cs: make owner private.
2124
2125         * Control.cs: deal with AccessibleObject.owner being private.
2126         cache our own copy if we need it.
2127
2128         * Button.cs: add "new" to the DoubleClickEvent.
2129
2130         * ListBox.cs: no need to track our own has_focus here.  let
2131         Control.has_focus do it for us.  Also some other work to clear up
2132         warnings about not overriding base class methods of the same name.
2133         
2134         * ComboBox.cs: clear up some warnings about not override base
2135         class methods of the same name.
2136
2137 2006-12-01  Chris Toshok  <toshok@ximian.com>
2138
2139         * Form.cs: flag a few things as "new" to quiet some of the mcs
2140         warnings.
2141
2142         * AxHost.cs: same.
2143
2144         * PrintPreviewDialog.cs: same.
2145
2146         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
2147         now DGV isn't so horrible on the class status page.  also, move
2148         all events to using System.ComponentModel.EventHandlerList.  my
2149         wrists hurt.
2150
2151 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2152
2153         * MdiWindowManager.cs:
2154         - Set form to active mdi child if shown,
2155         and update the active mdi child to the next 
2156         remaining child in the z-order if the form is hidden.
2157
2158         * Form.cs: 
2159         - Track if the form has been visible and if its 
2160         visibility is beeing changed, so that the MdiClient
2161         can properly decide the ActiveMdiChild. The MdiClient 
2162         cannot track this since the form can change visibility 
2163         before MdiClient is created.
2164
2165         * MdiClient.cs:
2166         - Don't activate anything of the parent form is changing
2167         its visibility.
2168         - Rework ActiveMdiChild to only return visible mdi 
2169         children and take into account several other corner 
2170         cases.
2171
2172 2006-12-01  Chris Toshok  <toshok@ximian.com>
2173
2174         * IBindableComponent.cs: new 2.0 interface.
2175
2176 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
2177
2178         * DataGrid.cs: Font for caption area is bold by default.
2179
2180 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
2181
2182         * Menu.cs: Tag property for 2.0.
2183         
2184 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2185
2186         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
2187         
2188 2006-12-01  Chris Toshok  <toshok@ximian.com>
2189
2190         * TreeView.cs: doh, the Begin* events should be
2191         TreeViewCancelEventHandler.
2192
2193 2006-12-01  Chris Toshok  <toshok@ximian.com>
2194
2195         * Form.cs: Form.ControlCollection already stores off the
2196         form_owner field.  don't access the base class's internal "owner"
2197         field.
2198
2199         * Control.cs: make all the fields in Control.ControlCollection
2200         private.  there's no need for any internal fields here.
2201
2202 2006-12-01  Chris Toshok  <toshok@ximian.com>
2203
2204         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
2205         OnHandleCreated.  Fixes bug #80109.
2206
2207 2006-12-01  Chris Toshok  <toshok@ximian.com>
2208
2209         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
2210         SplitContainer.cs, Control.cs, StatusStrip.cs,
2211         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
2212         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
2213         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
2214         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
2215         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
2216         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
2217         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
2218         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
2219         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
2220         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
2221
2222         do most of the work to convert our code over to use
2223         System.ComponentModel.Component.Events for
2224         adding/removing/dispatching events.
2225
2226
2227 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2228
2229         * DataGridView.cs: Fix an ArgumentNullException reported 
2230         twice today in IRC.
2231
2232 2006-11-30  Mike Kestner  <mkestner@novell.com>
2233
2234         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
2235         grabbed listbox.  Fixes #80036 and #80101.
2236
2237 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2238
2239         * Message.cs: Changed ToString() to match MS.
2240         
2241 2006-11-30  Jackson Harper  <jackson@ximian.com>
2242
2243         * TextBoxBase.cs: You can still change the selected text on a read
2244         only textbox.
2245         * TextControl.cs: Lower magic number for wrap calculations. This
2246         lets text get closer to the right (far) edge.
2247
2248 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2249
2250         * Control.cs: Tweak 2.0 layout properties.
2251         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
2252         * TextRenderer.cs: Add a new overload.
2253         * ToolStrip*: Huge amount of changes and new features.
2254
2255 2006-11-30  Mike Kestner  <mkestner@novell.com>
2256
2257         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
2258         scroll range correct.  Fixes #79994.
2259
2260 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2261
2262         * MdiWindowManager.cs: Update main form's text when
2263         a form is closed. (fixes #80038)
2264         
2265 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
2266
2267         * ToolBar.cs:
2268         - Fix an regression in ButtonSize.
2269         - Get ImeMode default value change to "Disable".
2270         - Get ShowTooltips default value change to true, default value is 
2271         "false" but after make a test in .NET we get "true" result as default.
2272         
2273 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
2274
2275         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
2276
2277 2006-11-29  Chris Toshok  <toshok@ximian.com>
2278
2279         * XplatUIWin32.cs (GetWindowTransparency): check return value of
2280         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
2281         SetWindowTransparency hasn't been called.
2282
2283 2006-11-29  Chris Toshok  <toshok@ximian.com>
2284
2285         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
2286         if it's supported.
2287         (set_AllowTransparency): reorder things a little so that the
2288         WS_EX_LAYERED style is removed properly.
2289
2290 2006-11-29  Chris Toshok  <toshok@ximian.com>
2291
2292         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
2293         
2294         * Form.cs: only call the XplatUI transparency method (get/set) if
2295         SupportsTransparency says it's supported. Otherwise fallback to
2296         doing nothing (in the set case) or returning the instance field we
2297         cache (in the get case).
2298
2299         * XplatUIStructs.cs: add TransparencySupport flag enum.
2300         
2301         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
2302         change to SupportsTransparency.
2303
2304         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
2305         TransparencySupport.None from SupportsTransparency.
2306
2307         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
2308         TransparencySupport.Set from SupportsTransparency.
2309
2310         * XplatUIWin32.cs: implement GetWindowTransparency calling
2311         GetLayeredWindowAttributes, and implement SupportsTransparency by
2312         checking whether or not both
2313         GetWindowTransparency/SetWindowTransparency are available
2314         entrypoints.  We need to do this since SetWindowTransparency is
2315         available as of win2k, but GetWindowTransparency requires winxp.
2316         yay win32 api.
2317
2318         * XplatUI.cs: Add GetWindowTransparency, and change
2319         SupportsTransparency to allow for either/both Get/Set.
2320
2321 2006-11-29  Chris Toshok  <toshok@ximian.com>
2322
2323         * DataGrid.cs: keep from going into an infinite loop redrawing a
2324         datagrid that has no datasource.  Fixes bug #80033.
2325
2326 2006-11-29  Chris Toshok  <toshok@ximian.com>
2327
2328         * MenuItem.cs: fix the NRE when we assign text (and therefore call
2329         Invalidate) before the mainmenu has been assigned to a control.
2330
2331 2006-11-29  Chris Toshok  <toshok@ximian.com>
2332
2333         * DataGrid.cs: detect when we should be double the double click
2334         row/column autosize stuff, although that codepath has yet to be
2335         written.  part of the work for bug #79891.
2336
2337 2006-11-29  Chris Toshok  <toshok@ximian.com>
2338
2339         * Binding.cs (SetControl): fix unit test.
2340
2341 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2342
2343         * PageSetupDialog.cs: Validate the margins and set them in
2344         PageSettings. 
2345         * NumericTextBox.cs: New class to mimic the behavior of the
2346         textboxes used in the printing dialogs.
2347
2348 2006-11-29  Andreia Gaita  <avidigal@novell.com>
2349         
2350         * Form.cs: Revert previous change (remove call UpdateBounds
2351         from form constructor), because it messes with the handle creation
2352         order, and that one needs lots and lots of love.
2353         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
2354         for valid printer and throw InvalidPrinterException if document
2355         is set but printer not valid), adding a MonoTODO. Once 
2356         handle creation is done properly, we can put this back in.
2357
2358 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2359
2360         * MenuItem.cs: Create a invalidate method for menu item, to be
2361         calling from set text, it make text changes to imadiate update
2362         on screen. Fixes #80013. 
2363         
2364 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2365
2366         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
2367         fixes bug #80070 and some other problem on toolbar buttons
2368         layout.
2369
2370 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2371
2372         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
2373         with dotted brush.      Fixes #79564
2374         
2375 2006-11-28  Andreia Gaita  <avidigal@novell.com>
2376
2377         * Form.cs: Removed call to UpdateBounds on Form
2378         constructor, it was causing a call to CreateHandle
2379         before it was supposed to.
2380         * PrintControllerWithStatusDialog: Applied patch
2381         by Chris Toshok to hide controller when there are
2382         no printers available.
2383         PrintDialog.cs: initialize printer settings to 
2384         null - correct DefaultValues test #5
2385         * PrintPreviewControl.cs: Move PrintController
2386         initialization to GeneratePreview
2387         * PrintPreviewDialog.cs: 
2388         - Remove Preview generation     from Document_set(). It is 
2389         called on OnPaint
2390         - Throw InvalidPrinterException on CreateHandle if
2391         a Document is set but there are no printers or 
2392         printer is not valid.
2393         * ThemeWin32Classic: don't paint PrintPreviewControl
2394         if there is nothing to paint    
2395
2396 2006-11-28  Miguel de Icaza  <miguel@novell.com>
2397
2398         * Form.cs: Add another popular method.
2399
2400         * TabPage.cs: ditto.
2401
2402 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2403
2404         * MenuItem.cs: Fixed a warning.
2405         * InternalWindowManager: Fixed a warning.
2406
2407 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2408
2409         * MenuItem.cs:
2410         - When cloning a menu also clone MdiList and clone the 
2411           window menu items properly (as the forms and menuitems
2412           are kept in an internal hashtable, these need updating 
2413           as well)
2414         - Rewrote the window menu code, menu items are added in the
2415           order the forms were added to their parent, and they are
2416           updated every time the window menu is shown (before the
2417           list was only generated once, in the current order of the
2418           forms, and would never be updated). A checkmark is shown
2419           next to the item corresponding to the active mdi child.
2420
2421 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2422
2423         * XplatUIStructs.cs: 
2424         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
2425         
2426         * XplatUIWin32.cs: 
2427         - Added TME_NONCLIENT to TMEFlags.
2428         - Handles WM_NCMOUSEMOVE in GetMessage to 
2429           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
2430
2431         * MdiWindowManager:
2432         - Now merges mdi child menu to parent menu when maximized.
2433         - Recalculate NC areas of both mdi child and mdi parent. 
2434           Fixes #79757 (4).
2435           on window state and size changes.Fixes #79844 (3).
2436         - Handle WM_NCCALCSIZE to properly calculate borders.
2437
2438         * Form.cs:
2439         - Add/remove to the mdi containers list of mdi children 
2440           in the order they are added.
2441         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
2442           to the maximized mdi child.
2443         
2444         * InternalWindowManager.cs:
2445         - Only execute a click on the control buttons on the mouse up,
2446           not on the mouse down. Show the state of the button 
2447           (was only showing Normal state, never Pressed state). The
2448           pressed button now follows the mouse (if you click the Close 
2449           button and move the mouse over the Maximize button, the 
2450           Maximize button will be shown as pressed). Since Win32 does
2451           not generate WM_NCLBUTTONUP if you release the button outside
2452           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
2453           it as a mouse up.
2454         
2455         * ThemeWin32Classic.cs:
2456         - Draw a missing border around mdi child forms. Fixes #79844 (2).
2457
2458         * MdiClient.cs:
2459         - Added a list of forms which contains the order the forms are
2460           added to the mdi parent.
2461         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
2462         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
2463         - If the active form changes set the scrollbars to the top
2464           of the Z order, otherwise the form could hide them.
2465         - Scrollbars are now sized according to ClientSize, not 
2466           to Size, and they take into account the other scrollbar
2467           to determine maximum.
2468         
2469 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
2470         
2471         * XplatUI.cs:
2472         * XplatUIDriver.cs:
2473         * XplatUIX11.cs:
2474         * XplatUIWin32.cs:
2475         * XplatUIOSX.cs:
2476         - Added RequestAdditionalWM_NCMessages for windows to 
2477           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
2478           Currently only implemented in XplatUIWin32.
2479
2480 2006-11-27  Chris Toshok  <toshok@ximian.com>
2481
2482         * Hwnd.cs: only add the hwnd to the windows hash in
2483         set_WholeWindow and set_ClientWindow if whole_window/client_window
2484         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
2485
2486 2006-11-27  Mike Kestner  <mkestner@novell.com>
2487
2488         * ComboBox.cs: remove redundant OnDropDown call.  It is called
2489         from the ComboListBox.ShowWindow code. Fixes #79969.
2490
2491 2006-11-27  Chris Toshok  <toshok@ximian.com>
2492
2493         * Hwnd.cs: remove the setters for ExposePending and
2494         NCExposePending - noone uses them.
2495
2496 2006-11-27  Jackson Harper  <jackson@ximian.com>
2497
2498         * TextControl.cs: new param for ReplaceSelection which determines
2499         whether we select the new selection, or set the cursor to the end
2500         of the new selection.
2501         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
2502         pasting, select the new text.
2503         * RichTextBox.cs: Use new param for ReplaceSelection.
2504
2505 2006-11-27  Jackson Harper  <jackson@ximian.com>
2506
2507         * TextBoxBase.cs: Set the selection to the caret after the caret
2508         is moved, otherwise they get out of sync.
2509
2510 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2511
2512         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
2513         it fixes #80015
2514
2515 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2516
2517         * ThemeWin32Classic.cs: 
2518         - Fix toolbar drop down arrow position.
2519         - Fix drop down appearance when ToolBar.Appearance is normal,
2520         it fixes #80018.
2521         
2522 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
2523
2524         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
2525         * Control.cs: Same.
2526         * UpDownBase.cs: Same.
2527         * ButtonBase.cs: Same.
2528         * ScrollBar.cs: Same.
2529         * TrackBar.cs: Same.
2530         * PictureBox.cs: Same.
2531         * UserControl.cs: Same.
2532         * Label.cs: Same.
2533         * ListControl.cs: Same.
2534         * TextBoxBase.cs: Same.
2535         * ListView.cs: Same.
2536         * RichTextBox.cs: Same.
2537         * TreeView.cs: Same.
2538
2539 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
2540
2541         * PrintDialog.cs:
2542         - Text label for where 
2543         - Text label comment was not shown
2544
2545 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
2546
2547         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
2548
2549 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2550
2551         * InternalWindowManager.cs: 
2552         - Handle WM_PARENTNOTIFY to activate the form
2553         if any child control is clicked.
2554         - The form is only sizable if not minimized.
2555
2556         * MdiWindowManager.cs:
2557         - Save the IconicBounds if the form is moved.
2558         - Rework SetWindowState, now the window bounds 
2559         are stored only if the old window state is Normal.
2560         
2561         * MdiClient.cs:
2562         - In SetWindowStates store the old window state if 
2563         the window is maximized and restore window state if
2564         the window looses focus.
2565         - Don't handle any scrollbar value changes if 
2566         initializing the scroll bars. Fixes #79771.
2567         - Reworked ArrangeIconicWindows. Current algorithm
2568         tests bounds agains all other minimized windows, if
2569         any intersections create new bounds (going left to 
2570         right, bottom to top) and then test again. When 
2571         successful the bounds are saved and never computed
2572         again. Fixes #79774.
2573
2574 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2575
2576         * InternalWindowManager.cs: Added HandleTitleBarUp.
2577
2578 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2579
2580         * NumericUpDown.cs: In .NET 1.1, user entered text is still
2581         hexadecimal in ParseUserEdit.
2582
2583         
2584 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2585
2586         * MdiWindowManager.cs: 
2587         - Handle a click on the form's icon to show the 
2588         system menu (when maximized). Fixes #79775.
2589         - Change the existing click handler for the form's
2590         icon when not maximized to show on MouseUp.
2591         Fixes #79776.
2592
2593         * Form.cs: In OnResize only layout the mdi child's
2594         parent if it actually has a parent. Might not if
2595         the window is closing.
2596
2597
2598 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2599
2600         * MdiClient.cs: Ignore active MDI client for text of parent, if
2601         child has no text set.
2602
2603 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2604
2605         * ToolBar.cs: Fixed ToString to match MS.
2606
2607 2006-11-22  Andreia Gaita  <avidigal@novell.com>
2608
2609         * NumericUpDown: 
2610         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
2611         update inner values on set. Fixes #79966.
2612         - Override OnLostFocus to update value on NET 2. Fixes #79950.
2613         - Fix hexadecimal parsing.
2614         
2615         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
2616         parent. Fixes #79957
2617
2618 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2619
2620         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
2621         the actual size has to be queried, since if height /
2622         width is negative Win32 changes it to 0. 
2623         Fixes #79999 on Windows.
2624         
2625         * XplatUIX11.cs: Set height / width to 0 if negative
2626         in SetWindowPos. Fixes #79999 on Linux.
2627         
2628 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2629
2630         * ThemeWin32Classic.cs: Fix text redenring when button is
2631         pressed.
2632
2633 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2634
2635         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
2636         and later navigate by mouse. Fixes #79528.
2637
2638 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2639
2640         * ToolBar.cs: Set default value for TabStop to false in
2641         constructor, it fixes remaining behavior of bug #79863.
2642
2643 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2644
2645         * MdiWindowManager.cs:
2646         * InternalWindowManager.cs:
2647         - Moved a few methods specific to Mdi from 
2648         InternalWindowManager to MdiWindowManager.
2649         Fixes #79996.
2650         
2651 2006-11-21  Chris Toshok  <toshok@ximian.com>
2652
2653         * XplatUIOSX.cs: stub out InvalidateNC.
2654
2655         * XplatUIWin32.cs: implement InvalidateNC using the call I found
2656         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
2657
2658         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
2659
2660         * XplatUIDriver.cs: add InvalidateNC abstract method.
2661
2662         * XplatUI.cs: add InvalidateNC.
2663
2664 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2665
2666         * ToolBar.cs: Invalidate complete button area when pressed status 
2667         was changed.
2668         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
2669         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
2670         by 1 when button is pressed.
2671
2672 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2673
2674         * ToolButton.cs: Invalidate middle of DropDown button when
2675         ToolBar theres DropDownArrows.
2676         * ThemeWin32Classic.cs: Change position of DropDown arrow and
2677         fix DropDown drawing operations.
2678
2679 2006-11-20  Chris Toshok  <toshok@ximian.com>
2680
2681         * NativeWindow.cs: fix the formatting of functions ('{' on the
2682         following line), and enable the thread exception dialog.
2683
2684         * Application.cs: remove the duplicate exception catching from
2685         here.
2686
2687 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2688
2689         * Toolbar.cs: Triggers button click event when click on icon
2690         of dropdown ToolBarButton. Fixes #79912.
2691         
2692 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2693
2694         * Theme.cs:
2695         * ThemeWin32Classic.cs:
2696         - Added a property WindowBorderFont to enable themeing
2697           of mdi child windows' Text.
2698           
2699 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2700
2701         * InternalWindowManager.cs:
2702         * Form.cs:
2703         * MdiClient.cs:
2704         * MdiWindowManager.cs: 
2705         - If mdi child is maximized, set mdi parent's
2706           text to "Parent - [Child]". Fixes #79770.
2707         - If there is any maximized mdi child windows, only the active 
2708           window (and any new windows) is maximized, the rest are normal.
2709         - On a WindowState change only save mdi child's window bounds 
2710           if the old window state was normal. Fixes #79774.
2711         - The scroll bars are now calculated on hopefully all
2712           necessary events. Fixed #79771 / #79844->6 / #79906.
2713         - MdiClient.SizeScrollBars() now takes into account docked 
2714           controls in the parent when calculating available space.
2715         - InternalWindowManager now always repaints the entire title
2716           area. Fixes #79844->1/4/5.
2717         - Added RequestNCRecalc on mdi child windowstate changes.
2718           Fixes #79772.
2719
2720 2006-11-20  Mike Kestner  <mkestner@novell.com>
2721
2722         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
2723         in the MouseUp handler of the listbox and move the return handling
2724         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
2725
2726 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2727
2728         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
2729
2730 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2731
2732         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
2733           working in 1.2.x anymore. So, updated.
2734
2735 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
2736
2737         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
2738         NumberGroupSeparator of current culture instead of assuming en-US.
2739         Fixed bug #79967.
2740
2741 2006-11-17  Mike Kestner  <mkestner@novell.com>
2742
2743         * Control.cs: Add the concept of implicit bounds setting so that
2744         dock/undock round trips preserve explicitly set size/locations.
2745         Fixes #79313.
2746
2747 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2748
2749         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
2750           can't handle those filters. (Fixes bug #79961)
2751
2752 2006-11-17  Chris Toshok  <toshok@ximian.com>
2753
2754         [ fixes the exit/crashes associated with #79835.  it's clearly
2755         suboptimal though, we need to figure out a better way to solve
2756         this. ]
2757         
2758         * PrintPreviewControl.cs: deal with the new invalid printer
2759         exceptions.
2760
2761         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
2762         and return false (so CommonDialog.ShowDialog doesn't actually show
2763         the form.)
2764
2765         * PrintDialog.cs: enable/disable the Ok button depending on
2766         whether or not the printer is valid.
2767
2768         * CommonDialog.cs (ShowDialog): only actually show the form if
2769         RunDialog returns true.
2770
2771 2006-11-17  Jackson Harper  <jackson@ximian.com>
2772
2773         * TextControl.cs: When soft splitting a line, mark it as a soft
2774         split line. Also carry over the current line break to the next
2775         line.
2776
2777 2006-11-17  Chris Toshok  <toshok@ximian.com>
2778
2779         * XplatUIX11.cs: when scrolling a window with an invalid area, we
2780         only want to shift the part of the invalid area that overlaps the
2781         area we're scrolling.  we also don't want to clear the invalid
2782         area unless the invalid area was entirely contained within the
2783         scrolling area.
2784
2785 2006-11-16  Chris Toshok  <toshok@ximian.com>
2786
2787         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
2788         also make sure to free the memory returned by XGetWindowProperty
2789         in GetText().
2790
2791         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
2792
2793 2006-11-16  Chris Toshok  <toshok@ximian.com>
2794
2795         * XplatUI.cs: add a new super secret way to get at the totally
2796         unsupported X11 backend.
2797
2798 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
2799
2800         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
2801
2802 2006-11-16  Jackson Harper  <jackson@ximian.com>
2803
2804         * TreeView.cs: Allow more explicit setting of top node position
2805         for scrollbars. Slower algo, but more accurate.
2806         - CollapseAll should maintain the current top node.
2807         * TextBoxBase.cs: When positioning the caret, use the line, pos
2808         method, since the x, y method does not grab the correct tag, and
2809         the caret height never gets set correctly. (Maybe I should just do
2810         away with the caret having its own height, and always use the
2811         carets current tag for height).
2812
2813 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
2814
2815         [Fixes 79778, 79923]
2816
2817         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
2818         Parent to the FosterParent instead.
2819
2820 2006-11-16  Jackson Harper  <jackson@ximian.com>
2821
2822         * TreeView.cs: Need to recalc the topnode when we expand or
2823         collapse. The scrolling methods can't handle this on their own,
2824         since they use differences between the last scroll position, and
2825         those difference get completely messed up since we are expanding
2826         nodes.  This problem should probably be fixed in the scrolling
2827         methods, so they can figure out exactly where they are, but this
2828         will slow things down a little.
2829         * ThemeWin32Classic.cs: Special case for groupboxes with empty
2830         strings, makes nunit-gui look a lot nicer.
2831
2832 2006-11-16  Chris Toshok  <toshok@ximian.com>
2833
2834         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
2835         the broken multithreaded event handling we have in here.  File
2836         this entry under "Why we should move to the new X11 backend".
2837
2838         Any thread can make it into UpdateMessageQueue, which gets events
2839         from the X socket - some of which could belong to hwnds being
2840         managed by a different thread.  We can also have multiple threads
2841         in UpdateMessageQueue at the same time, with each one reading from
2842         the X socket.  This leads to many problems, with the following
2843         solutions:
2844
2845         We can't use hwnd.Queue.Enqueue anywhere in here and must use
2846         EnqueueLocked.
2847
2848         The MotionNotify compression we do can't work across threads
2849         (without locking the entire queue, perhaps) since we call
2850         hwnd.Queue.Peek, so we just punt and don't compress motion events
2851         unless the owning thread is the one which got the X event.
2852
2853         ConfigureNotify is another fun one, since it modifies the hwnd's
2854         bounds and then enqueues the event.  We add a lock to Hwnd which
2855         is held when setting configure_pending to true (and enqueuing the
2856         event).
2857
2858         There is a race wrt the wake socket.  we need to make sure that
2859         only 1 thread is waiting on that socket, or else a thread could
2860         sleep waiting for data that never comes.  It's difficult (but not
2861         impossible) to make happen, because it seems to require something
2862         like the following:
2863
2864             1. Thread 1 polls on wake_receive
2865         
2866             2. poll returns saying there's data to be read on
2867                wake_receive.
2868         
2869             3. Thread 2 polls on wake_receive and immediately returns
2870                saying there's data to be read.
2871
2872             4. Thread 2 reads the wakeup byte from wake_receive
2873
2874             5. Thread 1 attempts to read the wakeup byte from
2875                wake_receive.
2876
2877             6. Thread 2 exits (due to a form closing, perhaps).
2878
2879             7. Thread 1 blocks forever.
2880         
2881         Fun, eh?
2882
2883         Fixing the Expose handling isn't done yet, and the races inherent
2884         in that piece of code are responsible for the drawing mistakes you
2885         see when generating expose events in a MT app (like NPlot).  This
2886         one is the likely to be the hardest to bandaid, and it doesn't
2887         appear to cause anything but drawing problems.  The other issues
2888         caused apps to exit or hang.
2889
2890         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
2891         called from a different thread than the one that should be calling
2892         these functions.
2893
2894         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
2895
2896 2006-11-15  Chris Toshok  <toshok@ximian.com>
2897
2898         * Application.cs: null out the context's MainForm when we exit
2899         RunLoop.  Fixes a newly checked in unit test as well as the last
2900         ODE from bug #79933.
2901
2902 2006-11-15  Chris Toshok  <toshok@ximian.com>
2903
2904         * Form.cs (set_Owner): allow a null value so we can clear the
2905         form's owner.
2906         (Dispose): set all our owned_form's Owner properties to null, and
2907         clear the owned_forms collection.
2908         (WM_CLOSE): clean up this a little bit.. still not right though.
2909
2910         * ApplicationContext.cs: OnMainFormClosed should only call
2911         ExitThreadCore if the main form isn't recreating.  Fixes unit
2912         test.
2913
2914 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2915
2916         [Fixes 78346]
2917
2918         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
2919
2920 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2921
2922         [Fixes 79433]
2923
2924         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
2925         keep popup window types from stealing focus from the main form
2926         on Windows.
2927
2928         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
2929
2930         * MenuAPI.cs: Set above flag to true.
2931
2932 2006-11-15  Chris Toshok  <toshok@ximian.com>
2933
2934         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
2935         the button being released is not in wParam.
2936
2937 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2938
2939         * Form.cs: Add the released button to MouseEventArgs.Button
2940         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
2941         on Win32.
2942
2943 2006-11-15  Chris Toshok  <toshok@ximian.com>
2944
2945         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
2946         GetText().  untested because it's unused in our implementation.
2947         Control.Text always caches the text, even if
2948         ControlStyles.CacheText is not set.
2949
2950         fixes bug #79939.
2951
2952 2006-11-15  Chris Toshok  <toshok@ximian.com>
2953
2954         [ fixes #79933 ]
2955         
2956         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
2957         message.  no hiding, no disposing.
2958
2959         in the WM_CLOSE handler, hide the form if it's modal.
2960
2961 2006-11-15  Chris Toshok  <toshok@ximian.com>
2962
2963         * XplatUIX11.cs: use AddExpose instead of sending a message.
2964         fixes textbox border drawing.
2965
2966 2006-11-15  Chris Toshok  <toshok@ximian.com>
2967
2968         * PropertyGridView.cs: keep from crashing on mouse move/down when
2969         the property grid is empty.
2970
2971 2006-11-14  Jackson Harper  <jackson@ximian.com>
2972
2973         * TextControl.cs: Make PageUp and PageDown more like the MS
2974         versions.
2975         * TextBoxBase.cs: When we set the text property position the
2976         cursor at the beginning of the document.
2977
2978 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2979
2980         * Form.cs: if a mdi child's WindowState has changed
2981         before it's creation, it would display wrong control
2982         buttons.
2983         
2984 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
2985
2986         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
2987           (Fixes bug #79927)
2988
2989 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2990
2991         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
2992         the window gets to paint its borders even if the window is
2993         getting smaller.
2994         
2995         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
2996         otherwise the old control buttons would still be painted 
2997         if the window gets bigger.
2998         
2999         * PaintEventArgs.cs: add an internal method so that the clip 
3000         rectangle can be changed.
3001         
3002 2006-11-13  Chris Toshok  <toshok@ximian.com>
3003
3004         [ fixes bug #79745 ]
3005         
3006         * NotifyIcon.cs: lots of cleanup.
3007
3008         * X11Structs.cs: add an enum for XEMBED messages.
3009
3010         * XplatUIX11.cs: reindent one of the giant switch statements, it
3011         was taking up an additional tab stop, and this file is already way
3012         too wide for my laptop's screen.
3013
3014         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
3015         we get it, resize the hwnd to the WMNormalHints max_width/height.
3016
3017 2006-11-13  Jackson Harper  <jackson@ximian.com>
3018
3019         * TextBoxBase.cs: Compute the value changes for the mouse wheel
3020         teh simple way.
3021
3022 2006-11-13  Chris Toshok  <toshok@ximian.com>
3023
3024         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
3025         #79898.  force a reference to the Region to stick around so the
3026         unmanaged object isn't collected (rendering our handle in the MSG
3027         stale).
3028
3029 2006-11-13  Chris Toshok  <toshok@ximian.com>
3030
3031         * XplatUIX11.cs: fix #79917 for window managers which support
3032
3033         using XStoreName on the raw utf8, and we need to convert to
3034         COMPOUND_TEXT if it's non-latin1.
3035
3036 2006-11-13  Chris Toshok  <toshok@ximian.com>
3037
3038         * Form.cs (set_DialogResult): we need to set closing to false if
3039         we're setting our result to None.  fixes bug #79908.
3040
3041 2006-11-13  Jackson Harper  <jackson@ximian.com>
3042
3043         * TextControl.cs: When formatting text, compute the adjusted tag
3044         lengths correctly, using FindTag for the end tag instead of trying
3045         to figure it out outselves.
3046         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
3047         the item, ItemHeight doesn't work, because trees with large
3048         imagelists use those for their height
3049         * TreeView.cs: ActualItemHeight factors in the image height
3050         - compute left edge of checkboxes correctly
3051         - when expanding/collapsing move the bottom down one pixel, so we
3052         aren't moving part of the node
3053
3054 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3055
3056         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
3057         stack in PaintEventStart so that it won't get disposed by the gc
3058         before reaching PaintEventEnd.
3059
3060 2006-11-13  Jackson Harper  <jackson@ximian.com>
3061
3062         * TextBoxBase.cs: Don't select the word if we are on a line with
3063         no text.
3064         - We don't need to position the caret on mouse up, since the mouse
3065         move handler should be doing this
3066         - When double clicking a blank line, the caret is advanced to the
3067         next line.
3068
3069 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
3070
3071         * TreeNodeCollection.cs: Avoid duplicating indexer code.
3072
3073 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
3074
3075         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
3076         Fixes part of bug #79910.
3077
3078 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
3079
3080         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
3081           (bug #79903). Some minor string updates to match ms.
3082
3083 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3084
3085         * FileDialog.cs: Don't add an extension if the filename
3086           already ends with that extension.
3087
3088 2006-11-10  Jackson Harper  <jackson@ximian.com>
3089
3090         * TreeView.cs: Use the currently highlighted node for the
3091         BeforeSelect event.
3092         * TextBoxBase.cs: There is no need to expand selection on
3093         MouseMove.
3094         - CanUndo means 'is there any undo operations', not 'is undo
3095         allowed on this textcontrol. Fixed ClearUndo unit test.
3096
3097 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
3098
3099         * Button.cs: only perform click when button is Selectable (so as 
3100         not to activate default buttons when they're disabled)
3101         
3102         * Control.cs: Rewrite of the SelectNextControl and related 
3103         methods. HandleClick now selects next control if the current one
3104         is being disabled.
3105         
3106         * Form.cs: OnActivated selects next active control only if Load 
3107         has already occurred. If Load hasn't run, there's no point in 
3108         selecting here, Load might change the state of controls.
3109         
3110         * FocusTest.cs: Tests marked as working again for these fixes
3111
3112 2006-11-10  Chris Toshok  <toshok@ximian.com>
3113
3114         * XplatUIX11.cs: a couple of fixes.
3115
3116         - use XInternAtoms with almost all the atoms we need to register,
3117         instead of many, many calls to XInternAtom.  should help a bit on
3118         startup time, at the expense of making the code look a little
3119         worse.
3120
3121         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
3122         isn't reparented (which seems to be a clue that we're running fon
3123         compiz) and they have an Owner form.  This fixes the tool windows
3124         in paint.net when running under compiz.
3125
3126         - when setting the opacity of a window, support both the case
3127         where the window has been reparented and also when it hasn't been.
3128         Since compiz/beryl doesn't seem to reparent windows, and these are
3129         the only window managers which support translucency, I'm not sure
3130         why we need the hwnd.reparented case at all.. but leave it in.
3131         now we get translucent windows in paint.net under compiz/beryl.
3132
3133 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3134
3135         * FileDialog.cs: Always return the value for FilterIndex that
3136           was set. Internally convert it to values that make sense.
3137
3138 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3139         
3140         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
3141
3142 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3143
3144         * Toolbar.cs: Change default value of DropDownArrows to true, the 
3145         signature still using false to make it compatible with MS but the 
3146         initial value is true. Fixes #79855.
3147
3148 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3149
3150         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
3151           only available on Linux.
3152
3153 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
3154
3155         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
3156         reduce number of calls to redraw method during toolbar creation.
3157
3158 2006-11-09  Mike Kestner  <mkestner@novell.com>
3159
3160         * ListView.cs : raise SelectedIndexChanged when an item is selected
3161         programmatically via the Item.Selected property.  Gert's nice 
3162         ListViewSelectedIndexChanged test fixture now runs clean.
3163
3164 2006-11-09  Mike Kestner  <mkestner@novell.com>
3165
3166         * ListView.cs : raise SelectedIndexChanged when a selected item is
3167         removed from the item collection using Remove or RemoveAt.
3168
3169 2006-11-09  Mike Kestner  <mkestner@novell.com>
3170
3171         * ListView.cs : raise SelectedIndexChanged once per selected item
3172         for compat with MS.  Fixes #79849+.
3173
3174 2006-11-09  Chris Toshok  <toshok@ximian.com>
3175
3176         * TabControl.cs: initialize row_count to 0, and set it to 1 when
3177         we need to (if we have any tab pages).  Fixes unit test.
3178
3179 2006-11-09  Chris Toshok  <toshok@ximian.com>
3180
3181         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
3182         width is 0, not 3.  Fixes a unit test.
3183
3184 2006-11-09  Mike Kestner  <mkestner@novell.com>
3185
3186         * ListView.cs : use Implicit scrollbars so that focus isn't 
3187         stolen from the listview when they are clicked. Fixes #79850.
3188
3189 2006-11-09  Chris Toshok  <toshok@ximian.com>
3190
3191         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
3192         have a root item.  Fixes #79879.
3193
3194 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
3195
3196         * FileDialog.cs:
3197           - Fix ToString ()
3198           - An ArgumentException is now thrown if a wrong filter
3199             is applied (matches ms). The previous filter doesn't change
3200             anymore if an exception is thrown.
3201           - Changing the FileName property also affects FileNames
3202         * ColorDialog.cs: The length of the CustomColors array is always
3203           16. It doesn't matter if we use a smaller array or null to update
3204           or change the custom colors property.
3205         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
3206           for RootFolder if we get a undefined value.
3207
3208 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3209
3210         * StatusBarPanel.cs: 
3211         - Width is set to MinWidth if Width is smaller than
3212         MinWidth. Fixes #79842.
3213         - MinWidth now always overrides Width (MSDN says MinWidth
3214         is set to Width when AutoSize = None, but they do not 
3215         behave like that).
3216         - Style has now the the correct default value.
3217         
3218 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3219  
3220         * TrackBar.cs: 
3221         - The control is completely invalidated on 
3222         Got/LostFocus to draw the focus rectangle correctly.
3223         - When AutoSize then height is always 45 (width for 
3224         vertical controls).
3225         
3226         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
3227         on the mouse when moved and it doesn't move when grabbed
3228         until the mouse moves as well. Also fixed some wrong 
3229         calculations when clicking on the thumb (control thought
3230         click was outside of thumb and didn't grab it).
3231         Fixes some of the issues in #79718.
3232
3233 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
3234
3235         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
3236
3237 2006-11-08  Chris Toshok  <toshok@ximian.com>
3238
3239         * PropertyGridView.cs: only call ToggleValue if the item is not
3240         readonly.
3241
3242 2006-11-08  Jackson Harper  <jackson@ximian.com>
3243
3244         * TextBoxBase.cs: The RichTextBox and textbox have very different
3245         word selection methods.  Implement the textbox's simple word
3246         selection here, and let the RichTextBox override and provide it's
3247         own.
3248         - Don't do extra selection on mouseup
3249         * RichTextBox.cs: Use the documents word selection algorithm, I
3250         think ideally, this function will be pulled into the
3251         RichTextBox.cs code someday.
3252
3253 2006-11-08  Chris Toshok  <toshok@ximian.com>
3254
3255         * RootGridEntry.cs: new class to represent GridItemType.Root.
3256
3257         * CategoryGridEntry.cs: reformat, and add boilerplate.
3258         
3259         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
3260         returns the UI parent anyway, and we need special handling to
3261         implement the GetTarget method in the face of it.  Also, implement
3262         Select().
3263
3264         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
3265         a root grid item, and use that instead of PropertyGrid.grid_items.
3266         Also, make use of TypeConverters (and add limitted support for
3267         ICustomTypeDescriptors) when initially populating the grid.
3268         Arrays now show up more or less properly.
3269
3270 2006-11-08  Chris Toshok  <toshok@ximian.com>
3271
3272         * Application.cs: set the modal dialog to non modal after we close
3273         it.  Fixes bug #79866.
3274
3275 2006-11-08  Jackson Harper  <jackson@ximian.com>
3276
3277         * TextControl.cs: When combining lines carry over the line end
3278         style from the end line.
3279         - Invalidate the selected area when setting it, if it is visible.
3280         * TextBoxBase.cs: Only rich text box can do full line selects.
3281         - Make sure to set the cursor position when there is a click,
3282         otherwise two clicks in separate areas could cause a large chunk
3283         to be selected.
3284
3285 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3286
3287         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
3288         Fixes #79863.
3289
3290 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3291
3292         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
3293         time. Remove tooltips when ToolButton click events.  Fixes #79856.
3294
3295 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3296
3297         * MenuAPI.cs: Ignore right click for menu actions and fixes
3298         menu border when clicked.  Fixes #79846.
3299
3300 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3301
3302         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
3303         MouseState after create wParam for message, this fixes mouse button 
3304         equal none in mouse up events.
3305         
3306 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
3307
3308         * Control.cs : Focus() now calls Select to set the Container's
3309         Active Control and to give it focus. To avoid infinite recursion
3310         (because ActiveControl also calls Focus at one point), a check 
3311         is made in Focus with the help of a new internal variable
3312         is_focusing.
3313
3314 2006-11-07  Mike Kestner  <mkestner@novell.com>
3315
3316         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
3317         if there's a selection.  Fixes #79849.
3318
3319 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
3320
3321         * PropertyGrid.cs: Avoid fixed height of help description label.
3322         Fixes part of bug #79829.
3323
3324 2006-11-07  Chris Toshok  <toshok@ximian.com>
3325
3326         * XplatUIX11.cs: fix #79790 again, by using the
3327         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
3328
3329 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3330
3331         * ToolBar.cs: Fix left click checking.
3332
3333 2006-11-07  Chris Toshok  <toshok@ximian.com>
3334
3335         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
3336
3337 2006-11-07  Chris Toshok  <toshok@ximian.com>
3338
3339         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
3340         PropertyManager unit tests.
3341
3342         * PropertyManager.cs: make property_name internal.
3343
3344 2006-11-07  Chris Toshok  <toshok@ximian.com>
3345
3346         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
3347         pass a unit test.  Also, don't set image_index to anything in
3348         response to setting the ImageList property.
3349
3350 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3351
3352         * ToolBar.cs: Ignore click events when mouse button is not a
3353         left button, only accepts other button for dropdown menus.  
3354         Fixes #79854.
3355
3356 2006-11-07  Chris Toshok  <toshok@ximian.com>
3357
3358         * DataGrid.cs: make the back and parent row buttons a little less
3359         ugly.
3360
3361 2006-11-07  Jackson Harper  <jackson@ximian.com>
3362
3363         * TextBoxBase.cs: When converting to Text don't put line breaks in
3364         for soft line breaks.
3365         * TextControl.cs: There is an initial "fake" line in the document,
3366         this is now a soft break line, so that an extra line feed doesn't
3367         get added to the end of documents.
3368
3369 2006-11-07  Chris Toshok  <toshok@ximian.com>
3370
3371         [ fix bug #79778 ]
3372         
3373         * CurrencyManager.cs: if the list is readonly, don't bother
3374         checking if IBindingList.AllowNew is true.
3375
3376         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
3377         for non-DataRowView datasources..  or rather, make it not crash.
3378         (DataGridPaintRelationRow): make sure we limit the row painting to
3379         the area not covered by the row header, and make our cell width at
3380         least large enough to cover the relation area.  This allows grids
3381         that have relations but no rows to render correctly.
3382         (DataGridPaintRowContents): same type of changes here.
3383         (SetDataSource): move back to always calling
3384         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
3385         navigating back through relations.
3386         (HitTest): handle the case where we have no cells but have
3387         relations.  Right now we generate a hit in cell 0 of whatever the
3388         row is, not sure if this is strictly correct, but it works for our
3389         purposes.
3390         
3391         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
3392         bother doing anything.
3393
3394 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
3395
3396         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
3397         early version of StatusStrip.  Not responsible for eaten
3398         application or firstborn children.
3399
3400 2006-11-06  Chris Toshok  <toshok@ximian.com>
3401
3402         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
3403         call GetTabRect with a -1 index.  Fixes #79847.
3404
3405 2006-11-06  Jackson Harper  <jackson@ximian.com>
3406
3407         * TreeNodeCollection.cs: Update scrollbars after clearing.
3408
3409 2006-11-06  Chris Toshok  <toshok@ximian.com>
3410
3411         * NumericUpDown.cs: fix the ToString method for some unit test
3412         love.
3413
3414 2006-11-06  Chris Toshok  <toshok@ximian.com>
3415
3416         * PropertyGrid.cs:
3417         - set the initial SelectedGridItem if we can.
3418
3419         - Exclude non-mergable properties only if we're merging > 1
3420         object.  Merging 1 object isn't really merging, obviously.
3421
3422         - Handle PropertySort.NoSort just like Alphabetical, which is
3423         wrong of course, but at least gets things on the screen.
3424         
3425         * PropertyGridView.cs:
3426         - Add method "FindFirstItem" which finds the first property grid
3427         item, so we can select it by default.
3428
3429         - make use of GridEntry.CanResetValue.
3430
3431         - Don't call RedrawBelowItemOnExpansion here anymore, the
3432         individual GridEntry's will do that.
3433
3434         - Remove the ITypeDescriptorContextImpl internal class.
3435         
3436         * GridEntry.cs:
3437         - this class needs to implement ITypeDescriptorContext, as it's
3438         what MS's PropertyDescriptorGridEntry does, which means we can
3439         remove the ITypeDescriptorContextImpl internal class from
3440         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
3441
3442         - keep a reference to our PropertyGridView, and move the call to
3443         RedrawBelowItemOnExpansion here from PGV.  This means
3444         programmaticly setting Expanded actually does something visible.
3445
3446         - add a CanResetValue() function which takes into account our
3447         possibly multiple "selected_objects" in the merged case.  Shifting
3448         PropertyGridView to use this method fixes another unreported
3449         crasher found running the test for #79829.
3450
3451         - when Top or Bounds is updated, make sure the PropertyGridTextBox
3452         is updated to reflect this.
3453
3454         * CategoryGridEntry.cs: the ctor takes the PGV now.
3455         
3456 2006-11-06  Jackson Harper  <jackson@ximian.com>
3457
3458         * TextControl.cs: These are 1 based.
3459         * TextBoxBase.cs: When setting the selected text, don't change the
3460         selected text tags, this is done by ReplaceText, just position the
3461         cursor at the end of the new text.
3462
3463 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3464
3465         * ListView.cs: Allow label edit only when, when LabelEdit is
3466           set to true.
3467
3468 2006-11-06  Jackson Harper  <jackson@ximian.com>
3469
3470         * TextControl.cs: If a suitable wrapping position isn't found,
3471         just wrap right in the middle of a word.
3472
3473 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3474
3475         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
3476           bug #79820.
3477
3478 2006-11-06  Jackson Harper  <jackson@ximian.com>
3479
3480         * TreeView.cs: Can't use the VisibleCount property when setting
3481         scrollbar heights, because this doesn't take into account whether
3482         or not the horz scrollbar just came visible.
3483
3484 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
3485
3486         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
3487         activated.  Fixes #79369, #79832.
3488
3489 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
3490
3491         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
3492           had to remove support for links that point to a directory. FileInfo
3493           returns no usefull information (means, the directory they point to)
3494           for such links. Replaced some empty string ("") with String.Empty.
3495
3496 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3497
3498         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
3499         NullReferenceException when attempting to remove node that is not in
3500         collection. Throw NullReferenceException when null is passed to 
3501         Remove. Allow first element of the collection to be removed. Fixes
3502         bug #79831.  In GetEnumerator ().Current return null if positioned 
3503         before the first element of the collection. In GetEnumerator ().Reset,
3504         position before first element of the collection.
3505
3506 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3507
3508         * PropertyGrid.cs: To match MS, remove default title and description
3509         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
3510         buttons.
3511
3512 2006-11-04  Chris Toshok  <toshok@ximian.com>
3513
3514         * Theme.cs: add a Clamp method, just for kicks.
3515
3516         * ThemeWin32Classic.cs: clamp all color components to [0..255].
3517
3518 2006-11-04  Chris Toshok  <toshok@ximian.com>
3519
3520         * Form.cs: if the form isn't visible, Close() does nothing.
3521
3522 2006-11-03  Chris Toshok  <toshok@ximian.com>
3523
3524         * Form.cs (Close): if the form is modal, don't Dispose of it, only
3525         Hide it.
3526         (WndProc): don't Dispose after handling the WM_CLOSE message.
3527
3528         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
3529         them as such, instead of using casts from Control to Form.  Also,
3530         don't Dispose of the modal dialog when we fall out of the loop -
3531         Close() it instead.
3532
3533         fixes bug #79813.
3534
3535 2006-11-03  Chris Toshok  <toshok@ximian.com>
3536
3537         * Control.cs (Dispose): only go through the dispose thing if we're
3538         @disposing, and we haven't already been disposed.  Fixes bug
3539         #79814.
3540
3541         * Form.cs: no reason to call "base.Dispose()" here instead of
3542         "Dispose()".
3543
3544 2006-11-03  Mike Kestner  <mkestner@novell.com>
3545
3546         * ComboBox.cs : use ToString instead of casts in AddItem for
3547         sorting functionality.  Fixes #79812.
3548
3549 2006-11-03  Chris Toshok  <toshok@ximian.com>
3550
3551         * Application.cs: pave the way for actually using the thread
3552         exception dialog.  it's ifdefed out at the moment.
3553
3554 2006-11-03  Chris Toshok  <toshok@ximian.com>
3555
3556         * ThreadExceptionDialog.cs: until we get a better layout, actually
3557         hide the details textbox and label when we shouldn't see them.
3558
3559 2006-11-03  Jackson Harper  <jackson@ximian.com>
3560
3561         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
3562         multiline textboxes anymore.  This method also determines the
3563         width/height of a textboxes canvas area.
3564         - Sorta a revert of the last patch.  For multiline just position
3565         the controls, then bail.  This way the scrollbar width won't be
3566         altered.
3567
3568 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
3569
3570         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
3571         it dont need.  Fixes #79537.
3572
3573 2006-11-02  Jackson Harper  <jackson@ximian.com>
3574
3575         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
3576         send the status after firing the DndOver event.
3577
3578 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3579
3580         * TrackBar.cs: Now orientation only switches height / width if
3581         the control's handle is created (Win32 does it like this). Also 
3582         fixed a typo in ToString() for a test to pass, changed the 
3583         exception thrown in set_LargeChange and set_SmallChange to 
3584         match Win32 behaviour, and added TrackBar tests to the unit 
3585         tests.
3586
3587 2006-11-02  Chris Toshok  <toshok@ximian.com>
3588
3589         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
3590         not _NET_WM_STATE_NO_TASKBAR.
3591
3592 2006-11-02  Jackson Harper  <jackson@ximian.com>
3593
3594         * TextControl.cs: Increment count by one, since in the update view
3595         count - 1 is used.
3596
3597 2006-11-02  Jackson Harper  <jackson@ximian.com>
3598
3599         * TextBoxBase.cs: Use client rectangle not bounds for checking if
3600         the mouse is in the client rectangle (duh).
3601
3602 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3603         
3604         * TrackBar.cs: Fixed trackbar jumping around when clicking
3605         on it - the trackbar was not detecting correctly at which
3606         side of the thumb the click was done. (fixes #79718)
3607
3608 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
3609
3610         * ListBox.cs: scroll visible area when change SelectedIndex to
3611         a non visible area.  Fixes #79481.
3612
3613 2006-11-01  Jackson Harper  <jackson@ximian.com>
3614
3615         * TextControl.cs: When replacing the selection move the selection
3616         start/end/anchor to the end of the new text.
3617
3618 2006-11-01  Jackson Harper  <jackson@ximian.com>
3619
3620         * XplatUIWin32.cs: When setting the parent change the controls
3621         visibility to it's visibility flag, not to it's old parents
3622         visibility (.Visible walks the parent chain).
3623
3624 2006-11-01  Chris Toshok  <toshok@ximian.com>
3625
3626         * XplatUIX11.cs: revert the #79790 fix, as the simple.
3627         XSetTransientForHint fix breaks paint .net's tool windows.  more
3628         work needed for that one.
3629
3630 2006-11-01  Chris Toshok  <toshok@ximian.com>
3631
3632         * ScrollBar.cs: throw ArgumentException instead of Exception in
3633         LargeChange/SmallChange setters.  fixes unit tests.
3634
3635 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3636
3637         * ContainerControl.cs: reverted rev.67183 (which was itself
3638         a reversion of rev.66853... eh).
3639         
3640         * Control.cs: Fixes Reflector hang by changing Focus() call
3641         to what it was before rev.66643 (calling Select() here sets 
3642         ActiveControl, which in some situations calls back Focus and 
3643         eventually does a stack overflow). Temp fix.    
3644         Changes to GetNextControl() to not look for children to select when
3645         parent cannot be selectable (so it looks for siblings instead)  
3646         
3647 2006-10-31  Mike Kestner  <mkestner@novell.com>
3648
3649         * CheckedListBox.cs : off by one error in returned index from
3650         ObjectCollection.Add.  Fixes #79758.
3651
3652 2006-10-31  Chris Toshok  <toshok@ximian.com>
3653
3654         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
3655         calls for the textbox/spinner, to keep from recursing to the point
3656         where we crash.  Fixes #79760.
3657
3658 2006-10-31  Chris Toshok  <toshok@ximian.com>
3659
3660         * ListControl.cs (set_SelectedValue): don't throw exceptions on
3661         null/"" value, just return.  matches ms's behavior and fixes some
3662         failing tests.
3663
3664 2006-10-31  Chris Toshok  <toshok@ximian.com>
3665
3666         * Control.cs (set_Capture): make a logic a little easier to
3667         follow.
3668
3669         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
3670         if it's being destroyed.  A necessary fix surely, but a bandaid
3671         also, to fix the stuck capture problem in bug #78413.
3672
3673 2006-10-31  Chris Toshok  <toshok@ximian.com>
3674
3675         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
3676         convention of clearing hwnd.ClientRect when we set the
3677         width/height (so it'll be recalculated by Hwnd).
3678
3679 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3680
3681         * ContainerControl.cs: reversed Contains check from
3682         ActiveControl due to hanging problems. This fix
3683         partly regresses #79667 (button does not have
3684         initial focus), so this might be a symptom for 
3685         a larger parenting problem (set_ActiveControl
3686         is being called but the child control does
3687         not have the parent set yet?)   
3688         
3689 2006-10-31  Mike Kestner  <mkestner@novell.com>
3690
3691         * MenuAPI.cs : fix keynav when menu is click activated.
3692
3693 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
3694
3695         * ToolStrip*: Version 0.2.
3696
3697         * MenuStrip.cs: Version 0.1.
3698
3699         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
3700
3701 2006-10-30  Chris Toshok  <toshok@ximian.com>
3702
3703         [ fixes the oversized notify icon issue in bug #79745 ]
3704         
3705         * NotifyIcon.cs: scale the icon down to the size we're given by
3706         the XplatUI layer (this would be faster if we did it once instead
3707         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
3708         since it's never invoked.
3709
3710         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
3711         pixels high by default, so let's hardcode our systray icon to that
3712         size.  The SYSTEM_TRAY protocol should really have a way for
3713         client apps to query for the correct icon size.. but oh well.  A
3714         couple of patches to deal with the screwy client_window ==
3715         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
3716         instance, and also make sure we don't XSelectInput twice).
3717
3718 2006-10-30  Chris Toshok  <toshok@ximian.com>
3719
3720         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
3721         recreating forms.  Control recreation is the bane of my existence.
3722         Fix it in a way that keeps everyone happy.
3723
3724 2006-10-30  Chris Toshok  <toshok@ximian.com>
3725
3726         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
3727         just non-CHILD ones.  otherwise sometimes scrollbars end up with
3728         client_windows not being resized to the proper size (ReportBuilder
3729         shows this extremely well).
3730
3731 2006-10-30  Chris Toshok  <toshok@ximian.com>
3732
3733         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
3734         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
3735         showing up in the gnome taskbar.  Fixes bug #79790.
3736
3737 2006-10-30  Chris Toshok  <toshok@ximian.com>
3738
3739         * ApplicationContext.cs: guard against a NRE.
3740
3741         * Application.cs: null out the old MainForm for the context, so we
3742         don't try to use it again once it's disposed.  Fixes bug #79783.
3743
3744 2006-10-30  Chris Toshok  <toshok@ximian.com>
3745
3746         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
3747         BindingContext, set the data source directly, otherwise do the
3748         lazy approach - the actual ListManager will be created when we get
3749         a BindingContext. Fixes bug #79700.
3750
3751 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3752
3753         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
3754           XplatUIX11.cs: Remove old 2 parameter SetVisible.
3755
3756         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
3757
3758 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3759
3760         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
3761         of SetVisible that allows a window to be shown, but not activated.
3762         This is needed on Windows for MenuStrip, and can probably be used
3763         with MainMenu and ComboBox to fix the focus stealing issues on
3764         Windows.
3765
3766         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
3767
3768 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
3769
3770         * PictureBox.cs: Fix the output of the ToString method.
3771
3772 2006-10-29  Chris Toshok  <toshok@ximian.com>
3773
3774         * Control.cs (get_TopLevelControl): fix bug #79781.
3775
3776 2006-10-29  Chris Toshok  <toshok@ximian.com>
3777
3778         * ListControl.cs (set_DataSource): throw Exception here, not
3779         ArgumentException, to match MS behavior.
3780
3781 2006-10-29  Chris Toshok  <toshok@ximian.com>
3782
3783         * Form.cs: remove the try-catch's around calls to GetWindowState.
3784         We can just check the return value.
3785
3786         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
3787         Instead return -1.
3788
3789         * XplatUI.cs: Add note about additional return value for
3790         GetWindowState.
3791
3792 2006-10-29  Chris Toshok  <toshok@ximian.com>
3793
3794         * Control.cs (CreateHandle): when we create our handle, we also
3795         create the handles of our child controls.  Fixes one of the
3796         Control unit tests (CH11).
3797
3798 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3799
3800         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
3801
3802 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3803
3804         * ThemeClearlooks.cs: A little speedup.
3805
3806 2006-10-27  Chris Toshok  <toshok@ximian.com>
3807
3808         * Control.cs: implement Control.FromChildHandle in a way that
3809         matches the docs (and fixes the failed test.)
3810
3811 2006-10-27  Chris Toshok  <toshok@ximian.com>
3812
3813         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
3814         comments).
3815
3816         * DataGrid.cs: implement ResetForeColor such that the tests
3817         succeed.
3818         
3819 2006-10-27  Chris Toshok  <toshok@ximian.com>
3820
3821         * ToolBarButton.cs: setting text/tooltiptext to null results in it
3822         being set to "".  Fixes bug #79759.
3823
3824 2006-10-27  Jackson Harper  <jackson@ximian.com>
3825
3826         * TextControl.cs: We need to clear the entire selection area when
3827         setting the start, otherwise multiline selections are still
3828         visible.
3829
3830 2006-10-26  Chris Toshok  <toshok@ximian.com>
3831
3832         * PropertyGridView.cs: 
3833
3834         - ifdef all the code specific to the double
3835         buffer case, and provide some alternatives in the non-doublebuffer
3836         code, which makes heavy use of XplatUI.ScrollWindow to move things
3837         around without having to invalidate (and cause flicker).  There
3838         are still some drawing problems in the non-doublebuffered case, so
3839         DOUBLEBUFFER is defined by default.
3840
3841         - Fix the way dropdowns are handled.  now we explicitly watch for
3842         the events which might cause the dropdown to close, and break out
3843         of the nested event loop there.  This gets rid of all Capture
3844         code, at the expense of the Msg special casing.  Seems to work,
3845         though, and fixes bug #79743.
3846
3847 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
3848         * Control.cs: SetIsRecreating now recreates implicitly added
3849         child controls as well. Finally fixes #79629. The flag passed to 
3850         SetIsRecreating has also been removed since it wasn't used.
3851         
3852 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3853
3854         * PageSetupDialog.cs: Clean some code, fix some bits, 
3855         add some checks, and add a printer sub-dialog.
3856
3857 2006-10-26  Chris Toshok  <toshok@ximian.com>
3858
3859         * PropertyGrid.cs: make set_SelectedObject call
3860         set_SelectedObjects, and move the duplicate logic to the
3861         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
3862
3863         * PropertyGridView.cs: hide the textbox when we get a
3864         SelectedObjectsChanged event.
3865
3866         Fixes bug #79748.
3867
3868 2006-10-26  Chris Toshok  <toshok@ximian.com>
3869
3870         * PropertyGridView.cs: deal with the type converter not supporting
3871         GetStandardValues() or GetStandardValues() returning null, which
3872         is does in the default case.  Fixes #79742.
3873
3874 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3875
3876         * CheckedListBox.cs: nunit no longer crashes when selecting 
3877         Project/Edit menu option
3878         
3879 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3880
3881         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
3882         is no menu selected. fixes #79739
3883
3884 2006-10-25  Chris Toshok  <toshok@ximian.com>
3885
3886         * PropertyGridView.cs: factor out the splitter invalidation code
3887         into the SplitterPercent setter, and for kicks implement the
3888         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
3889         amount in either direction.
3890
3891 2006-10-25  Chris Toshok  <toshok@ximian.com>
3892
3893         * PropertyGridView.cs: do some cleanup of the brush used to draw
3894         text - read only fields should be grayed out.  not sure how to do
3895         this with the textbox, though.  but the textbox's should also be
3896         readonly now at least.  Also, hide/show the textbox when resizing
3897         the control.
3898         
3899         * CursorConverter.cs: use System.Reflection when getting the
3900         properties of Cursors, as TypeDescriptor.GetProperties isn't
3901         returning static properties.
3902
3903 2006-10-25  Chris Toshok  <toshok@ximian.com>
3904
3905         * PropertyGridView.cs: factor out the up/down handling, and reuse
3906         it for page up/down.  also add End/Home support.
3907
3908 2006-10-25  Chris Toshok  <toshok@ximian.com>
3909
3910         * PropertyGridView.cs:
3911
3912         - ensure the selected grid item is visible in the scrolled area,
3913         fixes bug #79572.
3914
3915         - fix Keys.Down handling when you're on the last item in the
3916         propertygrid.
3917
3918 2006-10-25  Mike Kestner  <mkestner@novell.com>
3919
3920         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
3921         clicks too.  Fixes #79725.
3922
3923 2006-10-24  Chris Toshok  <toshok@ximian.com>
3924
3925         * PropertyGrid.cs: use property.Converter instead of
3926         TypeDescriptor.GetConverter(property.PropertyType), so we catch
3927         TypeConverters declared on the property as well as on the
3928         PropertyType.  Fixes bug #79678.
3929
3930 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
3931
3932         * MimeIcon.cs, Mime.cs:
3933           Fallback to the default platform handler if no shared mime info
3934           stuff exists (fixes #79693).
3935
3936 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3937         * ContainerControl.cs: Incorrect contains check in ActiveControl 
3938         from previous fix (duh).
3939
3940 2006-10-20  Chris Toshok  <toshok@ximian.com>
3941
3942         * PropertyGridView.cs: the dropdown should be MIN(number of items
3943         in list, 15).  Fixes #79551.
3944
3945 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3946         Fixes #79384, #79394, #79652, #79667
3947         * Application.cs: 
3948         
3949         - Modal windows are now destroyed in the proper order for windows
3950         
3951         * ContainerControl.cs:
3952         
3953         - ActiveControl setter has more conditions on when to return:
3954                 - if we're reselecting the active control, but it actually
3955                 didn't have focus (window hidden or some such), it runs
3956                 - if the active control being selected doesn't actually 
3957                 exist in the container, it returns
3958         
3959         * Form.cs
3960         
3961         - The ShowDialog now gets the current form as the owner when
3962         invoking without parameters, and correctly activates the owner 
3963         when returning
3964         
3965         * MessageBox.cs
3966         
3967         - MessageBox now catches the Escape key to exit
3968
3969 2006-10-20  Chris Toshok  <toshok@ximian.com>
3970
3971         * PropertyGridView.cs: fix a number of issues (bug #78565, and
3972         most of bug #79676):
3973
3974         - you can navigate around the property grid with the arrow keys.
3975
3976         - the dropdown is sized properly when the pg has a vertical
3977         scrollbar.
3978
3979         - fix the indentation for subentries, and properly select the
3980         entire label rect.
3981
3982         - fix the gray bar's drawing (only draw it to the last element,
3983         not for the height of the control.  Also make sure we draw that
3984         last horizontal grid line.
3985
3986         - use the same mechanism the datagrid uses wrt the editing textbox
3987         when scrolling/resizing/etc.  Namely, we hide it first, do the
3988         operation, then show it again (if it's still visible).
3989         
3990         - aggressively remove a lot of unnecessary refreshes (and also
3991         calls to Invalidate(). call more limited variants, and only redraw
3992         what we need.)
3993         
3994         * PropertyGrid.cs:
3995
3996         - when we're populating the merged collection, fill in the UI
3997         parent with either the passed in item, or the category item we
3998         create.
3999
4000         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
4001
4002         * GridItem.cs: drop some fully qualified names.
4003         
4004         * GridEntry.cs: add a "UIParent", which is basically the parent
4005         treenode.
4006
4007         * GridItemCollection.cs: add an IndexOf method.
4008
4009 2006-10-20  Mike Kestner  <mkestner@novell.com>
4010
4011         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
4012         a working win32 NC invalidation mechanism, we can't invalidate
4013         menus.  [Fixes #79705]
4014
4015 2006-10-20  Mike Kestner  <mkestner@novell.com>
4016
4017         * ListBox.cs : don't update the VScrollbar if the list is empty,
4018         just hide it.  [Fixes #79692]
4019
4020 2006-10-20  Jackson Harper  <jackson@ximian.com>
4021
4022         * RichTextBox.cs: Handle some special chars better, and don't skip
4023         the entire group when we encounter a special char that we don't
4024         handle correctly.
4025
4026 2006-10-18  Chris Toshok  <toshok@ximian.com>
4027
4028         * PropertyGridView.cs: address a number of issues from bug #79676,
4029         mostly of the cosmetic variety.
4030
4031         - The highlight rectangle for indented items not extends all the
4032         way to the left.
4033
4034         - Indented items aren't indented so much.
4035
4036         - the dropdown is properly sized width-wise if the pg has a
4037         vertical scrollbar.
4038
4039 2006-10-18  Chris Toshok  <toshok@ximian.com>
4040
4041         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
4042         systray stuff is rather convoluted to begin with.
4043
4044         systray icons are a single window for some reason (that I haven't
4045         figured out yet), and for them, client_window == whole_window.
4046         Given the way the tests are structured elsewhere to determine
4047         which paints are pending (client vs. nc), that situation will
4048         always yield PAINT, not NCPAINT.  So, if we have a pending
4049         nc_expose and no pending expose, remove the hwnd from the paint
4050         queue, and also set nc_expose_pending to false, to keep us from
4051         blocking further expose's adding the hwnd to the paint queue.
4052
4053         phew.  like i said, a rather convoluted change.  Fixes the
4054         notifyicon repaint issues in bug #79645.
4055
4056 2006-10-18  Chris Toshok  <toshok@ximian.com>
4057
4058         * Form.cs: when getting the backcolor of the form, don't get
4059         base.BackColor, as this allows parents to influence the background
4060         color.  This breaks mdi forms.  Instead, if the background_color
4061         is empty, return the default.
4062
4063 2006-10-18  Chris Toshok  <toshok@ximian.com>
4064
4065         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
4066         to being private instead of internal static.
4067
4068         * Control.cs: remove all the stupid ParentWaitingOnRecreation
4069         crap, it wasn't working for more deeply nested controls anyway,
4070         and we already have the is_recreating flag - use that instead.
4071         Before calling DestroyHandle in RecreateHandle, recurse through
4072         the control tree setting it to true.  this returns the recreate
4073         code to much of its original simplicity, while now guaranteeing we
4074         actually recreate everything we're supposed to.  This change gets
4075         fyireporting actually showing mdi children.
4076
4077 2006-10-17  Chris Toshok  <toshok@ximian.com>
4078
4079         * Form.cs: remove some debug spew, and collapse some duplicate
4080         code at the end of SetClientSizeCore.
4081
4082         * XplatUIX11.cs: 
4083         - add some more debug spew here too wrt Destroy handling.
4084         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
4085         in Control's handling of WM_DESTROY.
4086         - Remove the handling of zombie window DestroyNotifies from the
4087         event loop - we don't need it.  Now the only DestroyNotifies we
4088         actually handle are ones generated by X.
4089         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
4090         match gtk's (functioning) handling of this. This keep metacity
4091         from leaving droppings in the form of wm borders with no window
4092         contents all over the place.
4093
4094         * Control.cs:
4095         - add a bunch of debug spew wrt control recreation.
4096         - fix a bug where we weren't tracking Visible properly on
4097         recreated hwnds.
4098         - fixed the WM_PAINT double buffer handling to support re-entrant
4099         calls (yes, i know it's gross, but it's happening to us).
4100
4101 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4102         * ThemeWin32Classic.cs: changed drawing of selected days
4103         to make them look better.
4104
4105 2006-10-16  Chris Toshok  <toshok@ximian.com>
4106
4107         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
4108         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
4109
4110         * XplatUIX11.cs: move away from using hwnd.client_dc and
4111         hwnd.non_client_dc and on to a stack of dc's (and in window's
4112         case, PAINTSTRUCT's), so we can deal with nested Paint calls
4113         without puking or not disposing of Graphics objects.
4114
4115         * XplatUIOSX.cs: same.
4116
4117         * XplatUIWin32.cs: same.
4118
4119 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4120
4121         * FileDialog.cs: Don't call on_directory_changed inside
4122           OnSelectedIndexChanged (it changes the SelectedIndex too).
4123           Instead move it to OnSelectionChangeCommitted.
4124
4125 2006-10-13  Chris Toshok  <toshok@ximian.com>
4126
4127         * XplatUIX11.cs: more Destroy work.  the current code does the
4128         following things, in order:
4129
4130         1. Enumerates all handles of all controls at or below the one
4131         being destroyed, in pre-order.  As it is doing this, it marks the
4132         handles as zombie and clears all references to them.
4133         
4134         2. calls XDestroyWindow on the window passed in.
4135
4136         3. SendMessage's WM_DESTROY to all he handles in the accumulated
4137         list.
4138
4139 2006-10-13  Chris Toshok  <toshok@ximian.com>
4140
4141         * XplatUIX11.cs: set hwnd.zombie to true before calling
4142         SendMessage (WM_DESTROY).  this keeps us from marking the new
4143         window a zombie, and also keeps us from calling sendmessage at
4144         all.
4145
4146 2006-10-13  Jackson Harper  <jackson@ximian.com>
4147
4148         * TextControl.cs: Do not show the caret and selection at the same
4149         time.  Reduces ugliness by 35%.
4150
4151 2006-10-13  Chris Toshok  <toshok@ximian.com>
4152
4153         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
4154         zombie after we do the recursive call, so we actually do call
4155         SendMessage on the children controls.
4156         (GetMessage): if we find a pending paint event for a zombie hwnd,
4157         remove the hwnd from the paint queue, or else it will always be
4158         there (and we'll effectively loop infinitely)
4159
4160 2006-10-13  Mike Kestner  <mkestner@novell.com>
4161
4162         * MenuItem.cs : add Selected format under keynav too.
4163         Fixes #79528.
4164
4165 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
4166
4167         * PropertyGrid.cs: Fixed some NRE's and small difference between our
4168         implementation and that of MS.
4169
4170 2006-10-13  Chris Toshok  <toshok@ximian.com>
4171
4172         * Control.cs (OnInvalidated) only futz with the invalid_region if
4173         the control is double buffered.  this fixes the apparent hang in
4174         the ListView unit tests.  Someone needs to make the
4175         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
4176
4177 2006-10-13  Chris Toshok  <toshok@ximian.com>
4178
4179         * PropertyGridView.cs:
4180
4181         - do a little refactoring so that only one place calls
4182         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
4183         else call that.  Also make it Refresh, since there are redraw bugs
4184         otherwise (we should take a look at that...)
4185
4186         - do a little more refactoring work to share the body of code
4187         involved with the drop down.  it was duplicated in the code
4188         dealing with the listbox handling and in the code dealing with the
4189         UITypeEditors.
4190
4191         - add a Capture to the dropdown form's control once it's
4192         displayed, and add a MouseDown handler that checks to make sure
4193         the position is inside the control.  If it's not, close the
4194         dropdown.  This fixes #78190.
4195
4196         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
4197         if the value is different than the initial value.
4198         
4199 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
4200
4201         * Control.cs: see #78650
4202         - Fixed GetNextControl for several cases:
4203                 - Changed FindFlatForward to return 
4204                 correct sibling control when more than one
4205                 control has same TabIndex as the currently 
4206                 focused one.
4207                 - Changed FindFlatBackward to loop children
4208                 from last to first and apply same logic as in
4209                 FindFlatForward
4210                 - Changed FindControlForward to search for
4211                 children when control is not a container
4212                 but has children, or search for siblings if
4213                 control is a container...
4214                 - Changed FindControlBackward   to continue
4215                 searching for child controls when hitting 
4216                 Panel-like parents
4217                 
4218         - Fixed Focus method to update ActiveControl
4219         (FocusTest.FocusSetsActive failure)
4220         
4221         * TabControl.cs:
4222         - Focus rectangle now refreshes when gaining
4223         or losing focus
4224         - Removed grab for Tab key on IsInputKey that 
4225         was keeping tab navigation from working (#78650)
4226
4227 2006-10-13  Chris Toshok  <toshok@ximian.com>
4228
4229         * PropertyGridView.cs:
4230         - Rewrite SetPropertyValue to loop over SelectedGridItem's
4231         SelectedObjects.
4232
4233         - Deal with GridItem.Value == null a few places.
4234
4235         * PropertyGrid.cs: 
4236         - replace the PopulateGridItemCollection with a pair of methods
4237         which compute the intersection of all the properties in the
4238         SelectedObjects array.  Fixes #79615.
4239
4240         - Throw ArgumentException from set_SelectedObjects if there's a
4241         null in the array.
4242
4243         - Add GetTarget method which can be used to traverse up the
4244         GridItem.Parent chain.  It depends on the assumption that
4245         selected_objects for different GridEntries are always in the same
4246         order (a safe assumption).  Use this method and loop over all the
4247         selected objects in the entry when calling RemoveValueChanged and
4248         AddValueChanged.
4249         
4250         * GridEntry.cs: Make this handle multiple selected objects.
4251         .Value returns null if not all the selected objects share the same
4252         value.
4253
4254 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
4255         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
4256           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
4257           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
4258           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
4259           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
4260         add additional functionality.
4261
4262 2006-10-12  Mike Kestner  <mkestner@novell.com>
4263
4264         * ErrorProvider.cs : new ToolTipWindow ctor sig.
4265         * HelpProvider.cs : new ToolTipWindow ctor sig.
4266         * ToolTip.cs : remove ToolTip param from Window sig since it is
4267         not used.
4268         * ToolBar.cs : add tooltip support.  Fixes #79565.
4269
4270 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4271
4272         * ComboBox.cs: move the events in set_SelectedIndex to 
4273         after the call to HighlightIndex in order to avoid 
4274         possible recursion and subsequent problems with the call
4275         to HighlightIndex and include a range check in 
4276         set_HighlightIndex. Fixes #79588
4277         
4278 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4279
4280         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
4281         to ui thread's settings instead of sunday. 
4282         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
4283
4284 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4285
4286         * DateTimePicker.cs
4287         * MonthCalendar.cs
4288         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
4289         and implement missing functionality (selecting different parts 
4290         of the date and edit them individually with the keyboard).
4291         
4292 2006-10-11  Chris Toshok  <toshok@ximian.com>
4293
4294         * Control.cs (OnInvalidated): fix NRE relating to last change.
4295
4296 2006-10-11  Chris Toshok  <toshok@ximian.com>
4297
4298         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
4299         atoms in _NET_WM_STATE here if the window is maximized.  We need
4300         to do this because we're *replacing* the existing _NET_WM_STATE
4301         property, so those atoms will be lost otherwise, and any further
4302         call to GetWindowState will return Normal for a window which is
4303         actually maximized.  Fixes #79338.
4304
4305 2006-10-11  Jackson Harper  <jackson@ximian.com>
4306
4307         * TextControl.cs: Special case for setting selection end to
4308         selection start, we basically kill the anchor.
4309         - some todo comments.
4310
4311 2006-10-11  Chris Toshok  <toshok@ximian.com>
4312
4313         * Control.cs: switch to using an "invalid_region" to track which
4314         parts of the image buffer need updating.  This is more code than
4315         the simple fix from r66532.  That version just attempted to always
4316         fill the entire buffer on redraw, which turns out to be
4317         inefficient when invalidating small rectangles.  This version
4318         simply adds the invalid rectangle to the invalid region.  When we
4319         get any WM_PAINT message we see if it can be filled using the
4320         image buffer, and if it can't (if the paint event's clip rectangle
4321         is visible in the invalid region) we first fill the image buffer.
4322         So, the image buffer is still a cache, we just fill it lazily.
4323
4324         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
4325         need it any longer.
4326
4327 2006-10-11  Chris Toshok  <toshok@ximian.com>
4328
4329         * XplatUIX11.cs (SetWindowPos): we need to update both position as
4330         well as size after calling XMoveResizeWindow.  This keeps us from
4331         ignoring future SetWindowPos calls.  Fixes the disappearing
4332         DateTimePicker in the ToolBarDockExample from bug #72499.
4333
4334 2006-10-11  Chris Toshok  <toshok@ximian.com>
4335
4336         * TextBoxBase.cs: reorder things a bit when it comes to
4337         resizing-causing-recalculation.  we were recalculating the
4338         document when our position was changed, which shouldn't happen.
4339         We only care about size changes.  Clear up some more redundant
4340         recalculation calls while I'm at it.  This makes the toolbar dock
4341         example snappy when you're just dragging toolbars around (since it
4342         causes a relayout whenever you move one.)
4343
4344 2006-10-11  Chris Toshok  <toshok@ximian.com>
4345
4346         * ToolBarButton.cs (get_Rectangle): this only returns
4347         Rectangle.Empty if Visible == false, or Parent == null.
4348         Parent.Visible doesn't matter.
4349
4350 2006-10-10  Chris Toshok  <toshok@ximian.com>
4351
4352         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
4353         by .net 1.1, so switch to an internal method instead.
4354
4355 2006-10-10  Chris Toshok  <toshok@ximian.com>
4356
4357         * Control.cs (WM_PAINT): when a control is double buffered we draw
4358         initially to the ImageBuffer and then copy from there.  But when a
4359         parent control which has child controls is double buffered, the
4360         initial drawing doesn't encompass the entire ClientRectangle of
4361         the parent control, so we end up with uninitialized bits (this is
4362         easily seen by dragging the top toolbar in
4363         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
4364         manually set the ClipRectangle of the paint_event (only the one we
4365         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
4366         of the nastiness in bug #72499.
4367
4368         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
4369         which we use in Control.cs's WM_PAINT handling.
4370
4371 2006-10-10  Jackson Harper  <jackson@ximian.com>
4372
4373         * TextBoxBase.cs: Finish off the autoscrolling stuff.
4374
4375 2006-10-10  Chris Toshok  <toshok@ximian.com>
4376
4377         * Cursor.cs: Apply a slightly different patch to the one suggested
4378         in #79609.
4379
4380 2006-10-10  Jackson Harper  <jackson@ximian.com>
4381
4382         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
4383         not the parent form.
4384         * TextControl.cs: use difference in old line count vs new count to
4385         calculate how many lines were added, this takes into account soft
4386         line breaks properly.
4387
4388 2006-10-10  Chris Toshok  <toshok@ximian.com>
4389
4390         * LinkLabel.cs: don't call MeasureCharacterRanges against a
4391         rectangle located at 0,0 and the size of the text.  Use
4392         ClientRectangle instead.  This fixes rendering of non-left aligned
4393         link labels.
4394
4395 2006-10-10  Jackson Harper  <jackson@ximian.com>
4396
4397         * TextBoxBase.cs: When we set the selection start position the
4398         caret.
4399         * TextControl.cs: Need to update the caret when we decrement it to
4400         zero.
4401         - Make sure that the selection_visible flag gets reset to false if
4402         the selection isn't visible.  Before this you could get it set to
4403         visible by changing the selection start, then changing the end to
4404         equal the start.
4405
4406 2006-10-09  Jackson Harper  <jackson@ximian.com>
4407
4408         * TreeView.cs: Don't update scrollbars when we aren't visible.
4409         * TreeNodeCollection.cs: Only need to update scrollbars if being
4410         added to an expanded visible node or the root node.
4411
4412 2006-10-09  Chris Toshok  <toshok@ximian.com>
4413
4414         * XplatUIX11.cs (SendMessage): fix NRE.
4415
4416 2006-10-09  Jackson Harper  <jackson@ximian.com>
4417
4418         * TextBoxBase.cs: Implement horizontal autoscrolling.
4419         * TextControl.cs: Add a movement types that allows moving forward
4420         and backwards without wrapping.
4421
4422 2006-10-09  Mike Kestner  <mkestner@novell.com>
4423
4424         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
4425         with focus "expansion" of labels.  Fixes #79532 and then some.
4426         * ThemeWin32Classic.cs : add LineLimit to ListView label format
4427         when wrapping.
4428
4429 2006-10-09  Jackson Harper  <jackson@ximian.com>
4430
4431         * TextBoxBase.cs: Set the default max values to MaxValue since
4432         we use the scrollbar for autoscrolling and the default value is
4433         100.  If we don't do this the caret won't keep up with typing
4434         after about 18 characters.
4435         * TextControl.cs: Make sure the selection is offset by the
4436         viewport x.  This fixes selection when using auto scrolling.
4437
4438 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
4439         
4440         * Form.cs: The active control should be selected after the 
4441         OnLoad so that any child control initialization that affects
4442         the selection is done. Fixes #79406
4443
4444 2006-10-06  Chris Toshok  <toshok@ximian.com>
4445
4446         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
4447         to have no evil effects.
4448
4449         - Stop selecting StructureNotifyMask on non-toplevel windows.
4450
4451           The only way children should be resized is by using the SWF api,
4452           and we already send WM_WINDOWPOSCHANGED messages in those cases.
4453           Toplevel windows can be interacted with via the window manager,
4454           and so we keep the input mask there.
4455
4456           The other event StructureNotifyMask gives us (that we care
4457           about) is DestroyNotify.  The code is already structured such
4458           that it assumes we won't be getting a DestroyNotify event for
4459           the window we pass to XDestroyWindow (which is what
4460           StructureNotifyMask is supposed to guarantee.)  So, that code
4461           shouldn't be affected by this either.
4462
4463         - Stop selecting VisibilityChangeMask altogether.
4464
4465           We weren't doing anything with the resulting events anyway.
4466         
4467         This vastly reduces the number of X requests and events we see
4468         when resizing/laying out a large ui.
4469
4470 2006-10-06  Chris Toshok  <toshok@ximian.com>
4471
4472         * ScrollableControl.cs (DisplayRectangle): we need to take into
4473         account the DockPadding regardless of whether or not auto_scroll
4474         == true.  rework this slightly to this effect, and fix bug #79606,
4475         and part of #72499 (you can now see the drag handles and drag
4476         toolbars around).
4477
4478 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
4479
4480         * ListViewItem.cs: Collections of selected and checked items are now
4481         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
4482         we mark the collection "dirty".
4483         * ListView.cs: Marked collections readonly. Modified UpdateSelection
4484         to only clear SelectedItems when a new item is selected and MultiSelect
4485         is enabled. CheckedItems and SelectedItems now subscribe to Changed
4486         event of ListViewItemCollection, and mark its list dirty whenever
4487         that event is fire. This allows us to return selected/checked items 
4488         in the same order as they are in the Items collection. This matches
4489         the MS behavior.
4490
4491 2006-10-06  Chris Toshok  <toshok@ximian.com>
4492
4493         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
4494         right mouse clicks.  Fixes bug #79593.
4495
4496 2006-10-06  Chris Toshok  <toshok@ximian.com>
4497
4498         * Splitter.cs: doh, fix splitters that don't want to cancel the
4499         movement when you drag them.  Also, impose the limits on the
4500         values we send to the SplitterMovingEvent.  Fixes #79598.
4501
4502 2006-10-06  Jackson Harper  <jackson@ximian.com>
4503
4504         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
4505         since we use this for auto scrolling also.
4506
4507 2006-10-05  Chris Toshok  <toshok@ximian.com>
4508
4509         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
4510         beginning to think that most datagrid column types don't need this
4511         method.  Fixes bug #79392.
4512
4513 2006-10-05  Chris Toshok  <toshok@ximian.com>
4514
4515         * DataGrid.cs: move back to a more lazy scheme for creating the
4516         CurrencyManager, so we aren't updating it every time you set
4517         either DataSource or DataMember.  Also, don't call
4518         RecreateDataGridRows if the currency manager hasn't changed.
4519
4520 2006-10-05  Chris Toshok  <toshok@ximian.com>
4521
4522         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
4523         emitted, SelectedIndex should already be updated.  Fixes bug
4524         #78929.
4525
4526 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
4527
4528         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
4529           ToolStripTextBox.cs: Initial commit.
4530         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
4531
4532 2006-10-05  Jackson Harper  <jackson@ximian.com>
4533
4534         * TabControl.cs: We need to invalidate the tab control area when
4535         new ones are added (duh).
4536
4537 2006-10-03  Chris Toshok  <toshok@ximian.com>
4538
4539         * Form.cs (ProcessDialogKey): if the focused control is in this
4540         form and is a button, call its PerformClick method here.  Fixes
4541         #79534.
4542
4543 2006-10-04  Jackson Harper  <jackson@ximian.com>
4544
4545         * TabPage.cs: Ignore setting of Visible, and add an internal
4546         method for setting the controls visibility.  TabPage's Visible
4547         property is a little strange on MS, this seems to make us
4548         compatible, and fixes cases where people set all the tab pages to
4549         visible.
4550         * TabControl.cs: Use the new internal setting on tab pages
4551         visibility.
4552
4553 2006-10-03  Mike Kestner  <mkestner@novell.com>
4554
4555         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
4556
4557 2006-10-03  Mike Kestner  <mkestner@novell.com>
4558
4559         * ListView.cs : use is_visible instead of Visible to check if 
4560         scrollbars should be placed/sized.  Also some max_wrap_width
4561         love for LargeIcon view.  [Fixes #79533]
4562
4563 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
4564
4565         * TextControl.cs :
4566           Make set_TextAlign() do actually update the align. Fixed #78403.
4567
4568 2006-10-03  Chris Toshok  <toshok@ximian.com>
4569
4570         * DataGrid.cs: fix a crash when switching datasources if the
4571         vertical scrollbar is at someplace other than Value = 0.  Also,
4572         reduce the number of recalculation passes we do in SetDataSource
4573         from 2 to 1.
4574
4575 2006-10-03  Jackson Harper  <jackson@ximian.com>
4576
4577         * TextBoxBase.cs: Move the if value the same bail check up, we
4578         don't want to empty the document if it is already empty, this
4579         seems to severly mess up the caret.  TODO: I should probably fix
4580         the empty statement to update teh caret somehow.
4581
4582 2006-10-03  Chris Toshok  <toshok@ximian.com>
4583
4584         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
4585         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
4586         reflection, an internal row type, properties on said type, etc.)
4587         will work with our datagrid.  Fixes #79531.
4588
4589 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4590
4591         * FileDialog.cs: Don't crash if a path is not accessible
4592           (System.UnauthorizedAccessException). Fixes #79569.
4593         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
4594           a ':' too. Return unknown icon for those paths/files.
4595
4596 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
4597
4598         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
4599         GetContainerControl returns null.
4600
4601 2006-10-02  Chris Toshok  <toshok@ximian.com>
4602
4603         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
4604         call to XGetWindowAttributes instead of "handle".  fixes an X
4605         error using notifyicon after the NotifyIconWindow to Form base
4606         class switch.
4607
4608 2006-10-02  Chris Toshok  <toshok@ximian.com>
4609
4610         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
4611         server grab and looping we need to do to get down to the most
4612         deeply nested child window.
4613         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
4614         QueryPointer again after the WarpPointer so we can generate a
4615         proper (fake) MotionNotify event to be enqueued in the destination
4616         window's queue.
4617         (GetCursorPos): call QueryPointer.
4618
4619         Fixes #79556.
4620
4621 2006-10-02  Jackson Harper  <jackson@ximian.com>
4622
4623         * NotifyIcon.cs: Derive the notify icon from a form, so things
4624         like FindForm work on it.
4625         - Swallow the WM_CONTEXTMENU message, since that is generated on
4626         mouse down, and context menu is a mouse up kinda guy.  I believe
4627         the correct fix here is probably to make the notify icon entirely
4628         NC area, but this seems to work fine for anyone not manipulating
4629         WndProc.
4630
4631 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
4632
4633         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
4634           ToolStripItemCollection.cs, ToolStripLabel.cs,
4635           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
4636           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
4637           Initial implementation.
4638         * TextRenderer.cs: Provide padding to MeasureText.
4639
4640 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
4641
4642         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
4643         of ButtonBaseAccessibleObject. Fix bug #79552.
4644
4645 2006-10-02  Jackson Harper  <jackson@ximian.com>
4646
4647         * MdiWindowManager.cs: When maximizing use the containers client
4648         rect, not it's bounds, so nc area is accounted correctly.
4649         - Use the parent form's size for the menu position, since the
4650         client isn't always the full form size.
4651
4652 2006-10-01  Chris Toshok  <toshok@ximian.com>
4653
4654         * ScrollableControl.cs: make sure neither right_edge or
4655         bottom_edge are < 0, since they're used as LargeChange for the
4656         horiz/vert scrollbars respectively.  Fixes #79539.
4657
4658 2006-10-01  Chris Toshok  <toshok@ximian.com>
4659
4660         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
4661         the xplatuix11 code can cause us to destroy/recreate our handle.
4662
4663         * XplatUIX11.cs
4664         (SystrayAdd):
4665         - this code can be invoked many times for the same Hwnd.  Make
4666           sure we only destroy the client window once (the first time this
4667           method is called).  This fixes bug #79544.
4668         - Remove the call to the improperly bound XSync.  why we had two
4669           bindings to this, I will never know, but this call resulted in
4670           events being discarded from the queue(!).
4671         - correct a misunderstanding of _XEMBED_INFO - the second atom is
4672           not our current state but the state we wish to be in.  So, 0 if
4673           we don't want to be mapped.  Change it to 1.
4674         (SystrayRemove): The XEMBED spec makes mention of the fact that
4675         gtk doesn't support the reparent of client windows away from the
4676         embedder.  Looking at gtksocket-x11.c seems to agree with this.
4677         The only avenue we have for removing systray icons is to destroy
4678         them.  We don't want the handle to go away for good, though, so
4679         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
4680         #79545.
4681         
4682 2006-10-01  Chris Toshok  <toshok@ximian.com>
4683
4684         * Form.cs (WndProc): inline the native_enabled variable usage into
4685         the cases in which it's used.  Fixes #79536.
4686
4687 2006-09-29  Mike Kestner  <mkestner@novell.com>
4688
4689         * ListView.cs : toggle the selection state for ctrl clicks in 
4690         multiselect mode. [Fixes #79417]
4691
4692 2006-09-29  Mike Kestner  <mkestner@novell.com>
4693
4694         * ListView.cs : kill CanMultiSelect and refactor the selection
4695         code to support multiselection in the absence of mod keys. Steal
4696         arrow/home/end keys by overriding InternalPreProcessMessage to
4697         restore regressed keynav behavior.
4698         [Fixes #79416]
4699
4700 2006-09-29  Jackson Harper  <jackson@ximian.com>
4701
4702         * MdiClient.cs: Repaint the titlebars when the active window is
4703         changed.
4704
4705 2006-09-29  Chris Toshok  <toshok@ximian.com>
4706
4707         * Application.cs: when entering a runloop with a modal, make sure
4708         the hwnd is enabled.  Fixes #79480.
4709
4710 2006-09-29  Chris Toshok  <toshok@ximian.com>
4711
4712         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
4713         when ListManager.CanAddRows == false, bump us back one.
4714
4715         * DataGridColumnStyle.cs (ParentReadOnly): remove the
4716         listmanager.CanAddRows check.  This makes ArrayLists uneditable
4717         using a datagrid, which is not right.
4718         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
4719         is an IEditable, but call property_descriptor.SetValue regardless.
4720         fixes #79435.
4721
4722 2006-09-29  Chris Toshok  <toshok@ximian.com>
4723
4724         * DataGridBoolColumn.cs: we need to test equality in the face of
4725         possible null values (as is the case with the default NullValue).
4726         This patch keeps us from crashing in that case.
4727
4728 2006-09-29  Jackson Harper  <jackson@ximian.com>
4729
4730         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
4731         here, since it will get called for every node collection in the
4732         tree. This is now done in the treeview once the sorting is
4733         finished.
4734         * TreeView.cs: Recalculate the visible order, and update the
4735         scrollbars after sorting, set the top nope to the root so that the
4736         recalc actually works.
4737
4738 2006-09-29  Chris Toshok  <toshok@ximian.com>
4739
4740         * LinkLabel.cs: more handling of the default link collection in
4741         the face of LinkArea manipulation.  The default link collection
4742         contains 1 element (start=0,length=-1).  If the user sets LinkArea
4743         to anything and the links collection is the default, clear it.
4744         Then only add the link if its nonempty.  Fixes #79518.
4745
4746 2006-09-29  Chris Toshok  <toshok@ximian.com>
4747
4748         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
4749         piece correctly when we hit a '\n'.  Fixes #79517.
4750
4751 2006-09-29  Chris Toshok  <toshok@ximian.com>
4752
4753         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
4754         change the binding of gdk_init_check to take two IntPtr's, and
4755         pass IntPtr.Zero for both of them.  Fixes #79520.
4756
4757 2006-09-29  Mike Kestner  <mkestner@novell.com>
4758
4759         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
4760         [Fixes #78779]
4761
4762 2006-09-28  Jackson Harper  <jackson@ximian.com>
4763
4764         * XplatUIX11.cs: When translating NC messages make sure we go from
4765         whole window to screen, not client window to screen.
4766         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
4767         method doesn't exist
4768         - Skip over controls that aren't forms when arranging.
4769
4770 2006-09-28  Jackson Harper  <jackson@ximian.com>
4771
4772         * XplatUIWin32.cs: Clip the rect to the parent window.
4773         * XplatUIStructs.cs: Add clipping modes struct.
4774         * InternalWindowManager.cs: New private method that factors title
4775         bar heights in when calculating the pos of an NC mouse message.
4776         - Use SendMessage to force a paint when the form's size is changed
4777         instead of painting the decorations immediately.
4778         - Don't let the NC button click messages get to DefWndProc,
4779         because they will attempt to handle windowing themself, and this
4780         messes up z-order (it will put them in front of the scrollbars).
4781         * XplatUIX11.cs: Make sure that we don't reset window managers if
4782         we already have one (ie the window is an MDI window).
4783
4784 2006-09-28  Chris Toshok  <toshok@ximian.com>
4785
4786         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
4787         menu code really needs going over.
4788
4789 2006-09-27  Chris Toshok  <toshok@ximian.com>
4790
4791         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
4792         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
4793         window is maximizable.  So, we need to make sure that even if we
4794         clear the border/wm frame of those functions, they're still
4795         available (basically, we remove the decoration without removing
4796         the function).  Half the fix for #79338.
4797
4798 2006-09-27  Chris Toshok  <toshok@ximian.com>
4799
4800         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
4801         Fixes bug #79515.
4802
4803 2006-09-27  Chris Toshok  <toshok@ximian.com>
4804
4805         * Splitter.cs: reorder things a bit so that we don't actually
4806         draw/move the splitter until after calling OnSplitterMoving.  This
4807         lets users cancel/disallow the movement by explicitly setting
4808         event.SplitX/SplitY.  Fixes #79372.
4809
4810 2006-09-27  Jackson Harper  <jackson@ximian.com>
4811
4812         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
4813         because it is most likely on a window being destroyed, and that
4814         will give us an X11 error.
4815
4816 2006-09-27  Chris Toshok  <toshok@ximian.com>
4817
4818         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
4819         the dropdown button now toggles between showing and hiding the
4820         dropdown.  Also, get rid of dropdown_form_showing and just use
4821         dropdown_form.Visible.  We still don't do a grab, but I'll leave
4822         that part to someone who has handled Capture-fu before.
4823
4824 2006-09-27  Chris Toshok  <toshok@ximian.com>
4825
4826         * DataGrid.cs: return false if alt isn't pressed when '0' is
4827         pressed.  this keeps the '0' key from being swallowed, and fixes
4828         bug #79350.
4829
4830 2006-09-27  Chris Toshok  <toshok@ximian.com>
4831
4832         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
4833         Calling Refresh (in response to a scrollbar event) screws up the
4834         scrollbar painting.  Fixes bug #78923.
4835
4836 2006-09-27  Chris Toshok  <toshok@ximian.com>
4837
4838         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
4839         then insert into hashtable" blocks threadsafe.
4840
4841 2006-09-27  Chris Toshok  <toshok@ximian.com>
4842
4843         * MessageBox.cs (CreateParams): the styles should be |'ed with our
4844         baseclass's, since otherwise the
4845         ControlBox/MinimizeBox/MaximizeBox assignments above have no
4846         effect.  This gets the close button back in messageboxes.
4847
4848 2006-09-27  Chris Toshok  <toshok@ximian.com>
4849
4850         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
4851         flag, not just != 0.  this makes flags that are actually multiple
4852         bits (like WS_CAPTION) work.  fixes bug #79508.
4853
4854 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
4855
4856         * PageSetupDialog.cs: add support for getting and settings the 
4857         paper size, source and orientation.
4858
4859 2006-09-26  Chris Toshok  <toshok@ximian.com>
4860
4861         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
4862         and caption == "", we need to remove the resize handles as well as
4863         the title bar.
4864
4865         * Control.cs (set_Text): turns out that setting Text on a form
4866         should change the WM styles on the window, since if ControlBox ==
4867         false, the only way to get a window border is to have a non-""
4868         Text property.  check winforms/forms/text.cs for an example.  so,
4869         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
4870         update both window styles and title.  This fixes a lot of dialogs
4871         (including the preferences dialog in MonoCalendar.)
4872
4873 2006-09-26  Chris Toshok  <toshok@ximian.com>
4874
4875         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
4876         control isn't a Form), call Win32ShowWindow to hide the window,
4877         but don't update the control Visible property.  When we reparent
4878         back to a parent control, call SetVisible in order for the
4879         window's visibility to be reinstated.
4880
4881         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
4882         the FosterParent.
4883
4884         * Control.cs (ControlCollection.Remove): remove that value.Hide()
4885         call for good, since it breaks MonoCalendar (and other things I'm
4886         sure.) Also, set all_controls to null *after* the owner calls,
4887         which end up regenerating it.
4888         (ChangeParent): allow new_parent to be == null, passing
4889         IntPtr.Zero down to XplatUI.
4890
4891         this fixes #79294 the right way.
4892
4893 2006-09-26  Mike Kestner  <mkestner@novell.com>
4894
4895         * GridEntry.cs : internal SetParent method.
4896         * PropertyGrid.cs : attach to property changed on the proper
4897         target if we have a hierarchical grid with subobjects. Setup
4898         GridItem.Parent for hierarchical items.
4899         * PropertyGridView.cs : Set value on the correct target for
4900         hierarchical grids. [Fixes #78903]
4901
4902 2006-09-26  Chris Toshok  <toshok@ximian.com>
4903
4904         * Control.cs (ChildNeedsRecreating): this should return true if
4905         either we're being recreated and the child is in our list, or our
4906         parent is waiting for our recreation.
4907
4908 2006-09-26  Chris Toshok  <toshok@ximian.com>
4909
4910         * Control.cs (ControlCollection.Remove): reinstate the
4911         value.Hide() call as suggested in bug #79294.
4912
4913 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
4914
4915         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
4916         coordinates (versus a relative move).
4917
4918 2006-09-26  Chris Toshok  <toshok@ximian.com>
4919
4920         * Control.cs: rework child recreation a little bit.  It turns out
4921         that we race between the DestroyNotify the WM_DESTROY message.  If
4922         the parent gets its DestroyNotify before the child gets the
4923         WM_DESTROY message, the child ends up not recreating (since the
4924         parent finishes its recreation on DestroyNotify, and the child
4925         checks ParentIsRecreating.)
4926
4927         So, instead we store off a list of all the child controls which
4928         need to be recreated when the parent control starts to recreate
4929         itself.  Then, when child controls get their WM_DESTROY message we
4930         check to see if they're in the parent's pending recreation list,
4931         and if so, we recreate.  This removes all dependency on ordering
4932         from the code and fixes the initial MonoCalendar upgrade dialog.
4933         
4934 2006-09-26  Jackson Harper  <jackson@ximian.com>
4935
4936         * TextControl.cs: Use the Line to get the length of the line,
4937         since soft line breaks can change the end line.
4938
4939 2006-09-26  Chris Toshok  <toshok@ximian.com>
4940
4941         * Control.cs (ControlCollection.AddImplicit): don't add the
4942         control again if it's already in one of our lists.  This keeps us
4943         from adding controls over and over again for comboboxes when their
4944         handle gets recreated (as the combobox adds implicit controls in
4945         OnHandleCreated).  Fixes the X11 errors in bug #79480.
4946
4947 2006-09-26  Jackson Harper  <jackson@ximian.com>
4948
4949         * TextControl.cs: When deleting characters make sure that any
4950         orphaned zero lengthed tags get deleted.
4951         - Fix ToString for zero lengthed tags.
4952
4953 2006-09-25  Jackson Harper  <jackson@ximian.com>
4954
4955         * TextControl.cs: When getting a tag at the location there can be
4956         multiple tags at the same spot, these are 0-lengthed tags that
4957         appear when extra formatting has been stuck in a location.  We
4958         need to pull out the last of these 0 lengthed tags.
4959
4960 2006-09-25  Jackson Harper  <jackson@ximian.com>
4961
4962         * TextControl.cs: Fix print out in debug method.
4963         * TextBoxBase.cs: When text is set bail if we are setting to the
4964         previous value.
4965         
4966 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
4967
4968         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
4969           It is now possible to change the selected index in a FontXXXListBox
4970           with the up and down arrow keys from the FontXXXTextBoxes.
4971           Also, send the FontXXXTextBox mouse wheel event to the corresponding
4972           FontXXXListBoxes to match ms.
4973
4974 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
4975
4976         * SystemInformation.cs: Return a clone of the theme's MenuFont because
4977         anyone can dispose it, anytime. All other properties returns enums, 
4978         structs or basic types so they don't need such tricks.
4979
4980 2006-09-22  Jackson Harper  <jackson@ximian.com>
4981
4982         * XplatUI.cs:
4983         * XplatUIWin32.cs:
4984         * Clipboard.cs:
4985         * DataFormats.cs:
4986         * XplatUIOSX.cs:
4987         * XplatUIDriver.cs: Update interface to add a primary selection
4988         flag, so the driver can use the primary selection buffer if
4989         needed.
4990         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
4991
4992         * RichTextBox.cs: We need to supply the data object to paste now
4993         (so we can choose to supply CLIPBOARD or PRIMARY).
4994         * TextBoxBase.cs: Supply data object to paste (see above).
4995         - Middle click uses the primary selection data object.
4996         
4997 2006-09-21  Chris Toshok  <toshok@ximian.com>
4998
4999         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
5000         of SetWMStyles.  It's still a rat's nest and is largely
5001         order-dependent which I dislike immensely.  This also fixes the X
5002         button disappearing from toplevel forms.
5003
5004 2006-09-21  Mike Kestner <mkestner@novell.com>
5005
5006         * ListBox.cs: move Jordi's click/dblclick raising code to the
5007         mouse up handler.
5008
5009 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
5010
5011         * ListBox.cs: Fixes 79450
5012
5013 2006-09-21  Mike Kestner <mkestner@novell.com>
5014
5015         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
5016         to deal with people updating the TreeNodeCollection after the tree
5017         is disposed.  "Fixes" 79330.
5018
5019 2006-09-20  Jackson Harper <jackson@ximian.com>
5020
5021         * TextControl.cs: Push the cursor record onto the undo stack
5022         before the delete action. This fixes 78651.
5023
5024 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
5025
5026         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
5027         CreateParams. Fixes 79329.
5028
5029 2006-09-19  Chris Toshok  <toshok@ximian.com>
5030
5031         * XplatUIX11.cs: a couple of blanket code massage passes to clean
5032         things up a bit.  First, get rid of the NetAtoms array (and the NA
5033         enum), and just embed the atoms as static fields.  Also, add a
5034         couple of functions (StyleSet and ExStyleSet) to clean up all the
5035         bitmask testing of styles.
5036
5037         * X11Structs.cs: remove the NA enum, not needed anymore.
5038         
5039 2006-09-19  Chris Toshok  <toshok@ximian.com>
5040
5041         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
5042         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
5043         added cleanup to get MessageBox titles appearing again, which were
5044         broken by my earlier fix for caption-less/ControlBox-less windows.
5045
5046 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
5047
5048         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
5049           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
5050           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
5051           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
5052           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
5053           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
5054           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
5055           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
5056           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
5057           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
5058           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
5059             Inital import.
5060         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
5061           ToolStripButton.cs: Stubs needed for above.
5062         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
5063
5064 2006-09-15  Chris Toshok  <toshok@ximian.com>
5065
5066         * XplatUIX11.cs:
5067         - make the MessageQueues hashtable Synchronized.
5068         
5069         - SendMessage: if the Hwnd is owned by a different thread, use the
5070         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
5071         thread.  Fixes bug #79201.
5072
5073 2006-09-15  Chris Toshok  <toshok@ximian.com>
5074
5075         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
5076         ControlBox == false, we disallow maximize/minimize/close.  If the
5077         form Caption is "" we also disallow move (and get rid of the Title
5078         decoration).  Unfortunately, regardless of how things are set,
5079         we're stuck with the Title and WM menu.
5080
5081 2006-09-15  Chris Toshok  <toshok@ximian.com>
5082
5083         * Application.cs: add locking around the static message_filters
5084         ArrayList, part of #79196.
5085
5086 2006-09-15  Chris Toshok  <toshok@ximian.com>
5087
5088         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
5089         Form.ControlBox == false, the window has no titlebar nor resize
5090         handles.  fixes bug #79368.
5091
5092 2006-09-15  Chris Toshok  <toshok@ximian.com>
5093
5094         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
5095         >= 0.  Fixes bug #79370.
5096
5097 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
5098         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
5099         * Control.cs:
5100             Add properties: LayoutEngine, Margin, DefaultMargin.
5101             Add method: GetPreferredSize.
5102             Move layout logic from PerformLayout to layout engines. 
5103
5104 2006-09-13  Chris Toshok  <toshok@ximian.com>
5105
5106         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
5107         fix for #79326 broke #78718, so this change addresses that.
5108
5109         - in SendWMDestroyMessages remove the call to
5110         CleanupCachedWindows, since we might be recreating the control and
5111         need to maintain the references to right Hwnd handles.  Also, set
5112         the zombie flag to true for each of the children in the hierarchy
5113         instead of calling hwnd.Dispose.  This will cause GetMessage to
5114         ignore all events for the window except for DestroyNotify.
5115
5116         - In GetMessage, ignore messages except for DestroyNotify for
5117         zombie hwnds.
5118         
5119         * Control.cs: revert the is_recreating fix from the last
5120         ChangeLog.  It's definitely "right", but it breaks switching from
5121         an MDI form to a non-MDI form.  Will need to revisit that.
5122
5123         * Hwnd.cs: add a zombie flag, which means "the
5124         client_window/whole_window handles are invalid, but we're waiting
5125         for the DestroyNotify event to come in for them".  Set the flag to
5126         false explicitly if setting WholeWindow/ClientWindow, and also
5127         when Disposing.
5128         
5129 2006-09-13  Chris Toshok  <toshok@ximian.com>
5130
5131         * XplatUIX11.cs: rework window destruction slightly.
5132
5133         - when destroying the windows associated with a control, we don't
5134         need 2 separate XDestroyWindow calls.  Just the one for the
5135         whole_window (or for client_window if whole_window is somehow
5136         IntPtr.Zero -- can this happen?) is enough.
5137
5138         - reworked SendWMDestroyMessages slightly, so we always dispose
5139         the child control hwnd's after sending the messages.
5140         
5141         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
5142         the two places it was used (one was even using hwnd.Handle and the
5143         other hwnd.client_window.  ugh), adding another call in
5144         SendWMDestroyMessages.  We need this new call because now the
5145         DestroyNotify events in the queue will be ignored for the child
5146         controls (as their hwnd's were disposed, and the window id's
5147         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
5148
5149         - this fixes bug #79326.
5150
5151 2006-09-13  Chris Toshok  <toshok@ximian.com>
5152
5153         * Control.cs: don't always set is_recreating to false at the end
5154         of RecreateHandle, since sometimes we're not done (and won't be
5155         until WndProc handles the WM_DESTROY message).  Also, set
5156         is_recreating to false in the WM_DESTROY handling code.  Part of
5157         the fix for bug #79326.
5158
5159 2006-09-13  Miguel de Icaza  <miguel@novell.com>
5160
5161         * X11DesktopColors.cs: Start the droppage of debugging messages.
5162
5163         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
5164
5165 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
5166
5167         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
5168
5169 2006-09-12  Chris Toshok  <toshok@ximian.com>
5170
5171         * DataGrid.cs (get_ListManager): if the list_manager is null, try
5172         to create it using SetDataSource.  Fixes bug #79151.
5173
5174 2006-09-11  Chris Toshok  <toshok@ximian.com>
5175
5176         * XEventQueue.cs: add a DispatchIdle property.
5177
5178         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
5179         either the queue is null, or the queue has DispatchIdle set to
5180         true.
5181         (DoEvents): set queue.DispatchIdle to false around the
5182         peek/translate/dispatch message loop in this method.  This keeps
5183         Application.Doevents from emitting idle events.  Part of the fix
5184         for #78823.
5185
5186 2006-09-11  Chris Toshok  <toshok@ximian.com>
5187
5188         * DataGrid.cs (set_DataSource): make this work for both the
5189         winforms/datagrid test and ReportBuilder.  It seems as though when
5190         we've created a ListManager (or maybe it's if we have a
5191         BindingContext?), when we set the DataSource it clears the
5192         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
5193         #79333.
5194
5195 2006-09-11  Chris Toshok  <toshok@ximian.com>
5196
5197         * XplatUIX11.cs: deal with queue being null, which happens in all
5198         the Clipboard functions.  Fixes one of the two problems mentioned
5199         in #78612.
5200
5201 2006-09-11  Chris Toshok  <toshok@ximian.com>
5202
5203         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
5204         button on various spots (including outside the menu) works closer
5205         to MS, and doesn't crash.  Fixes #79343.
5206
5207 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
5208
5209         * ListView.cs: Do not initialize item_sorter in init. To match MS,
5210         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
5211         and the internal comparer is set. When a new ListViewItemSorter is set,
5212         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
5213         was specified. No further processing is necessary if SortOrder is set
5214         to it's current value. If Sorting is modified to None, and View is
5215         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
5216         (either custom or our internal ItemComparer) to null, on 1.0 profile
5217         only set item_sorter to null if its our internal IComparer. If Sorting
5218         is modified to Ascending or Descending, then use our internal IComparer
5219         if none is set, and if the current IComparer is our internal one then:
5220         on 2.0 profile always replace it with one for new Sorting, and on 1.0
5221         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
5222         Enum.IsDefined to verify whether a valid View value is specified in
5223         its setter. Automatically sort listview items when listview is
5224         created. In Sort, do nothing if ListView is not yet created, or if
5225         no item_sorter is set (no Sorting was set, Sorting was explicitly set
5226         to None or ListViewItemSorter was set to null). Added Sort overload
5227         taking a bool to indicate whether the ListView should be redrawn when
5228         items are sorted (we use this in ListViewItemCollection to avoid double
5229         redraws). Modified our internal IComparer to take the sort order into
5230         account. In Add and AddRange methods of ListViewItemCollection, also
5231         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
5232         view), but use overload with noredraw option to avoid double redraw.
5233         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
5234         true when View is Tile, and do the same when attempting to set View to
5235         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
5236         for selected/checked indices, as it involves overhead when sorting is
5237         done while these collections are not used all that often. Instead
5238         we'll build the indices on demand. Modified IList implementation of
5239         CheckedIndexCollection to use public methods if object is int.
5240         Modified CheckedListViewItemCollection to hide checked items if
5241         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
5242         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
5243         IList implementation in SelectedIndexCollection to use public methods
5244         if object is int. Modified SelectedListViewItemCollection to hide
5245         selected items if listview is not yet created.
5246         * ListViewItem.cs: CheckedIndices list no longer needs to be
5247         maintained separately (see ListView changes). Also clone font, fixes
5248         test failure.
5249
5250 2006-09-11  Mike Kestner  <mkestner@novell.com>
5251
5252         * ComboBox.cs: if we are updating the contents of the currently
5253         selected index, refresh the control or the textbox selection.
5254         [Fixes #79066]
5255
5256 2006-09-11  Mike Kestner  <mkestner@novell.com>
5257
5258         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
5259         the 'specified' logic has been moved there.  This seems like a bug 
5260         in Control.cs, since our current SetBoundsCore completely ignores 
5261         the specified parameter.  Peter's commit seems to indicate that is 
5262         the way the MS control implementation works.  [Fixes #79325]
5263
5264 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
5265
5266         * XplatUI.cs: Set default_class_name to be composed
5267         of current domain id. This allows MWF to be loaded in multiple
5268         domains on Win32.
5269
5270 2006-09-09  Miguel de Icaza  <miguel@novell.com>
5271
5272         * X11Keyboard.cs: If we are unable to obtain the input method, do
5273         not call CreateXic to create the input context.   Should fix
5274         #78944/79276.
5275
5276 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
5277
5278         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
5279           Simplified gnome support by adding more pinvokes to get the
5280           icon for a file or mime type.
5281
5282 2006-09-08  Jackson Harper  <jackson@ximian.com>
5283
5284         * MenuAPI.cs: Deslect popup context menu items before closing the
5285         window, so that you don't see the previously selected item
5286         selected when you reopen the menu.
5287         * TextControl.cs: Update the cursor position even if we don't have
5288         focus.  This fixes typing in things like the ComboBox.  I'm not
5289         totally sure we should always set the visibility if we don't have
5290         focus, but couldn't find any corner cases where the cursor showed
5291         up when it shouldn't.
5292
5293 2006-09-08  Chris Toshok  <toshok@ximian.com>
5294
5295         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
5296         our arrays are length 256.  & 0xff before indexing.  Fixes the
5297         crash in bug #78077.
5298         
5299 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5300
5301         * ThemeWin32Classic.cs: 
5302         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
5303         is true. Handle that check box too.
5304
5305 2006-09-07  Chris Toshok  <toshok@ximian.com>
5306
5307         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
5308         79244.
5309
5310 2006-09-07  Chris Toshok  <toshok@ximian.com>
5311
5312         * Control.cs: in set_BackColor only do the work if
5313         background_color != value.
5314
5315         * XplatUIX11.cs: move the clearing of invalid areas (both client
5316         and nc) to the same block of code where we set (nc_)expose_pending
5317         to false.  That is, move it from PaintEventEnd to PaintEventStart,
5318         so things that cause invalidates from within OnPaint will trigger
5319         another call to OnPaint.  Fixes bug #79262.
5320
5321 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
5322
5323         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
5324         * FileDialog.cs: Fix typo
5325
5326 2006-09-07  Jackson Harper  <jackson@ximian.com>
5327
5328         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
5329         for tab pages if they have any.
5330
5331 2006-09-06  Mike Kestner  <mkestner@novell.com>
5332
5333         * Splitter.cs: use the "current" rect when finishing drag handle
5334         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
5335
5336 2006-09-06  Mike Kestner  <mkestner@novell.com>
5337
5338         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
5339         support offset splitters. [Fixes #79298]
5340
5341 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
5342
5343         * Mime.cs: Fixed a bug that could override the global mime type
5344           result.
5345
5346 2006-09-05  Jackson Harper  <jackson@ximian.com>
5347
5348         * TabControl.cs: Better calculation method for setting the slider
5349         pos. Prevents crashes on really wide tabs.
5350         - Draw Image on tab pages if an image list is used.
5351
5352 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5353
5354         * MonthCalendar.cs: When Font changes, the Size should be
5355         updated to fit the new font's space requirements.
5356
5357 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
5358
5359         * ListBox.cs: If the items are cleared with Items.Clear set
5360           top_index to 0.
5361
5362 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5363
5364         * MonthCalendar.cs: Handle arrow keys as input keys. Also
5365         fire DateChanged event instead of DateSelected event when
5366         the date was changed by keyboard interaction.
5367
5368 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5369
5370         * DateTimePicker.cs: Handle DateChanged for the associated
5371         month_calendar control, and set month_calendar.Font from 
5372         OnFontChanged method, as well as resize the height of the
5373         control when needed. Make PreferredHeight proportional.
5374
5375 2006-09-01  Chris Toshok  <toshok@ximian.com>
5376
5377         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
5378         properties.
5379
5380         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
5381
5382 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
5383
5384         * FileDialog.cs: Set ClientSize instead of window size, to allow space
5385           for decorations (Fixes #79219)
5386
5387 2006-09-01  Mike Kestner  <mkestner@novell.com>
5388
5389         * ComboBox.cs: first stab at sorting plus some selection handling
5390         fixes to bring us more in line with MS behavior.  Also switches back
5391         to index based selection.  Alternative patches for index-based 
5392         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
5393         and latency@gmx.de on bug 78848.  I assume they were similar to this
5394         code I've had simmering in my tree forever.
5395         [Fixes #78848]
5396
5397 2006-09-01  Chris Toshok  <toshok@ximian.com>
5398
5399         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
5400         when setting list position guard against ending up with a -1 index
5401         (the other part of the fix for #78812).  Should probably make sure
5402         we don't need the analogous fix in the ItemDeleted case.
5403
5404         * DataGrid.cs:
5405         - in SetDataSource, work around the fact that the way
5406         OnBindingContextChanged is invoked will cause us to re-enter this
5407         method.  I'll remove the hack once I investigate
5408         OnBindingContextChanged.
5409
5410         - fix the logic in set_DataSource and set_DataMember (basically
5411         what to do if the other of the two is null.)
5412         
5413         - in OnListManagerItemChanged, we need to take into account the
5414         edit row when deciding whether or not to call RecreateDataGridRows
5415         (part of the fix for #78812).
5416
5417 2006-09-01  Jackson Harper  <jackson@ximian.com>
5418
5419         * Splitter.cs: Don't do anything if there is no control to affect
5420         (prevents us from crashing in weird tet cases).
5421         * TreeView.cs: Bounding box for the mouse movement reverting
5422         focus/selection back to previously selected node.  This matches
5423         MS, and makes the tree a lot more useable.
5424         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
5425         use clipping so they are not drawn.  This fixes when the control
5426         is set to have a transparent background, or if it was over an
5427         image.
5428
5429 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
5430
5431         * MimeIcon.cs: Improved handling for reading default icons when
5432           using gnome (2.16 made it necessary). Check and read svg icons
5433           first, then 48x48 and then 32x32 icons.
5434
5435 2006-08-31  Chris Toshok  <toshok@ximian.com>
5436
5437         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
5438         visible.
5439
5440         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
5441         ProcessKeyPreview.  Fixes part of #77806.
5442
5443         * DataGrid.cs: big patch.
5444
5445         - revert the queueing up of DataSource/DataMember if inside
5446         BeginInit/EndInit calls.  That's not the way the datagrid achieves
5447         its delayed databinding.  Instead, call SetDataSource in
5448         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
5449         #78811.
5450
5451         - Also, it wasn't mentioned in #78811, but the test case exhibits
5452         behavior that was lacking in our datagrid implementation - Columns
5453         that have mapping names that don't exist in the datasource's
5454         properties aren't shown.  Yuck.  To fix this I added the bound
5455         field to the column style, and basically any calculation to figure
5456         out anything about columns uses a loop to find the bound columns.
5457         still need to investigate if I can cache an array of the bound
5458         columns or if the indices must be the same.
5459
5460         - When setting CurrentCell, we no longer abort if the cell being
5461         edited was in the add row.  This fixes the other part of #77806.
5462
5463         - The new code also fixes #78807.
5464         
5465         * ThemeWin32Classic.cs: perpetrate the same disgusting
5466         column.bound field hack, and only render bound fields.
5467
5468 2006-08-31  Chris Toshok  <toshok@ximian.com>
5469
5470         * DataGridColumnStyle.cs: add bound field.  this field is true if
5471         the datasource has a property corresponding to the mapping name.
5472
5473         * DataGridTableStyle.cs: set the bound field on the column styles
5474         depending on whether or not we have a column for that property.
5475
5476 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
5477
5478         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
5479           splitter control (fixes #79228)
5480
5481 2006-08-31  Chris Toshok  <toshok@ximian.com>
5482
5483         * DataGridColumnStyle.cs: we need to delay the assignment of
5484         property descriptor until the last possible moment due to the lazy
5485         databinding stuff in the datagrid.  Also, fix the exceptions
5486         thrown by CheckValidDataSource to match MS.
5487
5488 2006-08-31  Jackson Harper  <jackson@ximian.com>
5489
5490         * Form.cs: When activated select the active control, if there is
5491         no active control, we select the first control.
5492         * XplatUIX11.cs: If there is no focus control when we get a
5493         FocusIn event, find the toplevel form and activate it.  This
5494         occurs when you popup a window, it becomes the focus window, then
5495         you close that window, giving focus back to the main window.
5496
5497 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5498
5499         * MonthCalendar.cs: 
5500         * ThemeWin32Classic.cs: Cache Font in bold style, as well
5501         as StringFormat with Center alignments in MonthCalendar,
5502         instead of creating new ones when drawing the control. 
5503         Also, draw the month name in bold style.
5504
5505 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
5506
5507         * Control.cs:
5508           - PerformLayout(): It would seem MS performs the fill even if the 
5509             control is not visible (part of #79218 fix)
5510           - ResetBackColor(): Use the setter to reset the color, to allow
5511             overriders to catch the change.
5512         * Form.cs:
5513           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
5514           - CreateHandle(): dito (part of $79218 fix)
5515           - Don't set an icon if we have a dialog
5516         * ScrollableControl.cs:
5517           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
5518           - ScrollIntoView(): No need to scroll if control is already visible
5519             (resolves fixme and fixes #79218)
5520
5521 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5522
5523         * MonthCalendar.cs: Change proportions in SingleMonthSize
5524         to match the aspect of the original control.
5525
5526 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
5527
5528         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
5529           get updated when they get maximized.
5530
5531 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
5532
5533         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
5534
5535 2006-08-29  Chris Toshok  <toshok@ximian.com>
5536
5537         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
5538
5539 2006-08-29  Jackson Harper  <jackson@ximian.com>
5540
5541         * TreeView.cs: Need to track selected node and highlighted node,
5542         they aren't always the same thing, when the mouse is down on a
5543         node it is hilighted, but not selected yet.
5544         - Do the HideSelection stuff right
5545         - Need to focus on rbutton mouse down. And redraw selection when
5546         right click is mouse upped.
5547
5548 2006-08-29  Mike Kestner  <mkestner@novell.com>
5549
5550         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
5551         when SubItems.Count < Columns.Count.  [Fixes #79167]
5552
5553 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
5554
5555         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
5556
5557 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
5558
5559         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
5560           from X. Only send based on ConfigureNotify if we don't have the
5561           correct location in hwnd (if the window manager moved us)
5562
5563 2006-08-28  Mike Kestner  <mkestner@novell.com>
5564
5565         * ListView.cs: remove a TODO. 
5566         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
5567         [Fixes ListView part of #79166]
5568
5569 2006-08-28  Mike Kestner  <mkestner@novell.com>
5570
5571         * ListView.cs: move wheel handler to parent since it is focused
5572         instead of the item_control now.  [Fixes #79177]
5573
5574 2006-08-28  Mike Kestner  <mkestner@novell.com>
5575
5576         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
5577         when the control is focused. [Fixes #79171]
5578
5579 2006-08-28  Mike Kestner  <mkestner@novell.com>
5580
5581         * ListView.cs: size the item and header controls for empty and
5582         unscrollable views.
5583         * ThemeWin32Classic.cs: draw disabled backgrounds.
5584         [Fixes #79187]
5585
5586 2006-08-28  Chris Toshok  <toshok@ximian.com>
5587
5588         * Form.cs: remove unused "active_form" static field.
5589
5590         * Hwnd.cs: lock around accesses to static windows collection.
5591
5592         * Application.cs: lock threads in Exit ().
5593
5594 2006-08-28  Chris Toshok  <toshok@ximian.com>
5595
5596         * NativeWindow.cs: lock around accesses to window_collection.
5597         
5598 2006-08-28  Chris Toshok  <toshok@ximian.com>
5599
5600         * Control.cs: err, fix this the right way, by locking on controls
5601         when using it.  not by making it synchronized.
5602
5603 2006-08-28  Chris Toshok  <toshok@ximian.com>
5604
5605         * Control.cs: make the static "controls" field synchronized, as it
5606         gets updated from multiple threads.
5607
5608 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5609
5610         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
5611           Prevent other threads from exiting when calling thread sets quit state.
5612         * XEventQueue.cs: Added PostQuitState property
5613
5614 2006-08-27  Chris Toshok  <toshok@ximian.com>
5615
5616         * AsyncMethodData.cs: add a slot for the window handle.
5617
5618         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
5619         window (the destination control's window, not the foster window).
5620
5621         * Control.cs (BeginInvokeInternal): store the window's handle in
5622         the AsyncMethodData.
5623         
5624
5625 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5626
5627         * XplatUIX11.cs:
5628           - PostQuitMessage: Removed resetting S.D display handle, we might have
5629             another loop started after calling PostQuitMessage (Fixes #79119)
5630           - Created destructor to reset S.D handle
5631
5632 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
5633
5634         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
5635
5636 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5637
5638         * TextControl.cs (Insert): Update the caret position even if we don't
5639           have a handle yet, just don't call the driver in that case.
5640         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
5641           to the end of the new selection text (Fixes #79184)
5642
5643 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5644
5645         * Form.cs (Activate): Only activate if the handle is created)
5646         * Control.c:
5647           - Mark window as invisible when it's disposed
5648           - Check if window handle is created when setting window visible, 
5649             instead of relying just on the is_created variable
5650           - Check if object is disposed when creating the control (Fixes #79155)
5651
5652 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5653
5654         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
5655           when allowing layout again. Otherwise we re-generate the anchoring 
5656           distance to the border again and actually alter what the user wanted
5657           This is ugly, it'd be better if we used DisplayRectangle instead of
5658           ClientRectangle for Control.UpdateDistances, but that causes us to
5659           have other problems (initial anchoring positons would be wrong)
5660           (Fixes #78835)
5661
5662 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5663
5664         * Control.cs:
5665           - The size and location setters shouldn't go directly to 
5666             SetBoundsCore, but to SetBounds, which triggers layout on the
5667             parent, then calls SetBoundsCore. (Related to fix for #78835)
5668           - SetBounds: Moved actual location update code into this function
5669             from SetBoundsCore, to match MS. Added call to PerformLayout if
5670             we have a parent (to trigger resizing of anchored parents if the 
5671             child size has changed (see testcase for #78835) 
5672         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
5673           new control code
5674         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
5675
5676 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5677
5678         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
5679           System.Drawing when a toplevel window gets closed; there might
5680           be other toplevel windows belonging to the same app (Fixes #78052)
5681
5682 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
5683
5684         * FileDialog.cs: After reading FileDialog settings from mwf_config
5685           use Desktop prefix only if a real folder doesn't exist anymore.
5686         * FontDialog.cs: Added char sets.
5687           It is now possible to select the font, size or style with the
5688           textboxes.
5689
5690 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
5691
5692         * PrintPreviewDialog.cs: Use assembly name constants.
5693
5694 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5695
5696         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
5697           scrollbar from whacking it's buttons)
5698
5699 2006-08-24  Chris Toshok  <toshok@ximian.com>
5700
5701         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
5702         in this patch (aggregating setting Left/Top/Width/Height to
5703         setting Bounds on the scrollbars), but the crux of the fix is in
5704         Recalculate, where we scroll by the remaining scroll_position if
5705         we're hiding a scrollbar.  The 2*$5 reward in the comment is
5706         serious.
5707
5708 2006-08-24  Jackson Harper  <jackson@ximian.com>
5709
5710         * MdiClient.cs:
5711         * MdiWindowManager.cs: If the form is made a non-mdi window we
5712         need to remove the form closed event so that closing forms works
5713         correctly.
5714
5715 2006-08-24  Jackson Harper  <jackson@ximian.com>
5716
5717         * Control.cs: Make IsRecreating internal so that the driver can
5718         check it
5719         - Temporarily remove the Hide when controls are removed, its
5720         making a whole bunch of things not work because visibility isn't
5721         getting reset elsewhere correctly
5722         * Form.cs: Need to do a full handle recreation when the mdi parent
5723         is set.
5724         * XplatUIX11.cs: If we are recreating handles don't dispose the
5725         HWNDs.  What was happening is the handles were being recreated in
5726         SendWMDestroyMessages, but then flow continued on in that method
5727         and destroyed the new handles.
5728
5729 2006-08-23  Jackson Harper  <jackson@ximian.com>
5730
5731         * Form.cs: MdiClient is always at the back of the bus
5732         * Control.cs: When the order of items in the collection is changed
5733         we need to reset the all_controls array
5734         - do the same sorta setup thats done when adding a control when a
5735         control is set on the collection.
5736
5737 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5738
5739         * TextBoxBase.cs (get_Text): Return an empty array if our document
5740           is empty (fixes #79052)
5741
5742 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5743
5744         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
5745           on WM_SYSCHAR messages (fixes #79053)
5746
5747 2006-08-23  Chris Toshok  <toshok@ximian.com>
5748
5749         * DataGrid.cs: fix flickering when scrolling vertically.
5750
5751 2006-08-23  Chris Toshok  <toshok@ximian.com>
5752
5753         * DataGrid.cs (EndEdit): only invalidate the row header when we
5754         need to.
5755
5756 2006-08-23  Chris Toshok  <toshok@ximian.com>
5757
5758         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
5759         methods.  fixes the flicker when scrolling around.
5760
5761 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5762
5763         * FileDialog.cs: Making sure the control is created before we get a 
5764           chance to use it with BeginInvoke (Fixes #79096)
5765
5766 2006-08-23  Chris Toshok  <toshok@ximian.com>
5767
5768         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
5769         width to use when painting the rows.
5770
5771 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5772
5773         * TextBoxBase.cs:
5774           - Throw ArgumentException if a negative value is passed to SelectionLength
5775           - Update the selection end if start is moved. end needs to be always
5776             after start. (Fixes #79095)
5777           - Track selection length; MS keeps the selection length even if start
5778             is changed; reset on all other operations affection selection
5779
5780 2006-08-22  Jackson Harper  <jackson@ximian.com>
5781
5782         * TreeView.cs: Make sure both scrollbars get displayed and sized
5783         correctly when the other bar is visible.
5784         - Use the original clip rectangle for checking if the area between
5785         the two scrollbars is visible, not the viewport adjusted clipping
5786         rectangle.
5787
5788 2006-08-22  Jackson Harper  <jackson@ximian.com>
5789
5790         * Binding.cs: We don't use IsBinding because it requires the
5791         control to be created, which really shouldn't be necessary just to
5792         set a property on the control.
5793
5794 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5795
5796         * ComboBox.cs: Some CB.ObjectCollection methods must throw
5797         ArgumentNullReferenceException when the argument is null.
5798
5799 2006-08-21  Jackson Harper  <jackson@ximian.com>
5800
5801         * Timer.cs: Track the thread that the timer is started in (NOT
5802         CREATED), this way messages for it will only be triggered on its
5803         queue.
5804         * XEventQueue.cs: Track the timers here, this makes timers per
5805         thread, like MS.
5806         * XplatUIX11.cs: The timers are moved to the XEventQueue.
5807
5808 2006-08-19  Chris Toshok  <toshok@ximian.com>
5809
5810         * XplatUIX11.cs: after further communication with pdb, we get the
5811         best of both worlds.  SetZOrder working for un-Mapped windows, and
5812         no X errors for un-mapped windows.
5813
5814 2006-08-19  Chris Toshok  <toshok@ximian.com>
5815
5816         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
5817         as it was causing pdn toolbars to not have the correct stacking.
5818
5819 2006-08-18  Mike Kestner  <mkestner@novell.com> 
5820
5821         * ListView.cs : guard against negative ClientArea.Width in scrollbar
5822         calculation.  Not sure why control should ever be setting a negative
5823         width though.  Fixes #78931.
5824
5825 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5826
5827         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
5828         null items in ObjectCollection class.
5829         * ListBox.cs.: Likewise.
5830
5831 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
5832
5833         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
5834           as the base method in ThemeWin32Classic should work fine.
5835           Fixed bug #78607.
5836
5837 2006-08-18  Jackson Harper  <jackson@ximian.com>
5838
5839         * Binding.cs: When validating if the value entered doesn't convert
5840         properly reset to the old value.
5841         * RadioButton.cs: Don't fire click when we get focus.
5842
5843 2006-08-18  Jackson Harper  <jackson@ximian.com>
5844
5845         * FileDialog.cs: Paint the selection on the directory combobox the
5846         same way as on MS. 
5847
5848 2006-08-17  Jackson Harper  <jackson@ximian.com>
5849
5850         * ErrorProvider.cs: Don't allow the error control to be selected.
5851         * Control.cs: Don't send the SetFocus messages, the control
5852         activation will do this, and if we do it blindly here validation
5853         does not work.
5854
5855 2006-08-17  Jackson Harper  <jackson@ximian.com>
5856
5857         * Control.cs:
5858         * ContainerControl.cs: Make validation events fire in the correct
5859         order.  TODO: For some reason the first validation event is not
5860         getting fired.
5861
5862 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5863
5864         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
5865
5866 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5867
5868         * ComboBox.cs : implement scroll wheel support for popped-down
5869         state. Fixes #78945. 
5870
5871 2006-08-17  Jackson Harper  <jackson@ximian.com>
5872
5873         * TreeView.cs: Specify treeview actions (old patch that didn't get
5874         committed for some reason).
5875         - Don't let the mouse wheel scroll us too far.  Just want to make
5876         the bottom node visible, not scroll it all the ways to the top.
5877
5878 2006-08-17  Jackson Harper  <jackson@ximian.com>
5879
5880         * XplatUIX11.cs: Mouse wheel events go to the focused window.
5881
5882 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5883
5884         * ComboBox.cs : don't do mouseover selection in simple mode.
5885
5886 2006-08-16  Jackson Harper  <jackson@ximian.com>
5887
5888         * Form.cs: Fire the closing events for all the mdi child windows
5889         when a window is closed.  If the cancel args are set to true, the
5890         main window still gets the event fired, but it doesn't not close.
5891         * MdiWindowManager.cs: Do this closing cleanup in a Closed
5892         handler, instead of when the button is clicked, so cancelling the
5893         close works correctly.
5894         * ComboBox.cs: Send the mouse down to the scrollbar.
5895
5896 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5897
5898         * ListBox.cs: When passing 'null' to SelectedItem,
5899         set SelectedIndex to -1, to unselect items. This is the
5900         observed behaviour in .Net.
5901
5902 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
5903
5904         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
5905           MS flags saying there won't be any. (fixes #78800)
5906         * Control.cs (HandleClick): Made virtual
5907
5908 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5909
5910         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
5911           cultures. Fixed bug #78399.
5912
5913 2006-08-16  Jackson Harper  <jackson@ximian.com>
5914
5915         * Form.cs: Use the MdiClients MdiChildren property to access
5916         MdiChildren instead of creating the array from the child controls.
5917         * MdiClient.cs: Maintain a separate array of the mdi children, so
5918         that insertion order is maintained when the Z-order is changed.
5919
5920 2006-08-16  Mike Kestner  <mkestner@novell.com> 
5921
5922         * ListView.cs : add an ItemComparer and default to it for sorting.
5923         Fixes #79076, but sorting needs a complete overhaul to be compat with
5924         MS.
5925
5926 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5927
5928         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
5929
5930 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5931
5932         * Hwnd.cs (Mapped): Properly traverse the tree
5933
5934 2006-08-15  Chris Toshok  <toshok@ximian.com>
5935
5936         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
5937         pass manager.Current.GetType() to ParseData.  It has to be the
5938         property type.  So, hold off doing the ParseData until we're in
5939         SetPropertyValue where we know the type.  This fixes the crash in
5940         #78821 but the textbox is still empty.
5941
5942 2006-08-15  Chris Toshok  <toshok@ximian.com>
5943
5944         * DataGrid.cs:
5945         - when we're scrolling, only call Edit() again if the
5946         current cell is still unobscured. Fixes bug #78927.
5947         - when handling mousedown on a cell, ensure the cell is visible
5948         before calling Edit.
5949         - remove the properties from DataGridRow, and remove the
5950         DataGridParentRow class altogether.
5951         
5952
5953 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5954
5955         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
5956           fire OnTextChanged by ourselves. There's no point calling base,
5957           we don't set the base value anywhere else. Fixes #78773.
5958
5959 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5960
5961         * ListBox.cs: Call CollectionChanged when modifying
5962         an item from Items indexer, to update the actual items
5963         in the list box.
5964
5965 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5966
5967         * PrintDialog.cs: Small fixes for focus and a pair of checks,
5968         to match .Net behaviour.
5969
5970 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5971
5972         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
5973
5974 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5975
5976         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
5977
5978 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5979
5980         * MessageBox.cs: Prevent potential NRE exception.
5981         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
5982
5983 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5984
5985         * MessageBox.cs: Calculate the owner of a messagebox, also make
5986           it topmost. Fixes #78753
5987
5988 2006-08-14  Chris Toshok  <toshok@ximian.com>
5989
5990         * XplatUIX11.cs: A couple of fixes so that metacity will let us
5991         programmatically move windows.  first, set the PPosition hint as
5992         well as the USPosition hint.  Second include some code from pdb
5993         that sets the window type to NORMAL when we set the transient for
5994         hint.  This is because, in the absence of a window type, metacity
5995         thinks any window with TransientFor set is a dialog, and refuses
5996         to let us move it programmatically.  fascists.
5997
5998 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5999
6000         * XplatUIX11.cs: When setting normal hints, take into consideration
6001           an different hints previously set so we don't delete them (fixes #78866)
6002
6003 2006-08-12  Chris Toshok  <toshok@ximian.com>
6004
6005         * ToolBarButton.cs: make Layout return a boolean, if something to
6006         do with the button's layout changed.
6007
6008         * ToolBar.cs:
6009         - add another parameter to Redraw, @force, which all existing
6010           calls set to true.
6011         - make the Layout function return a boolean which is true if the
6012           layout has actually changed.  Redraw now uses this (and @force)
6013           to determine when to invalidate.  At present the only place
6014           where @force can be false is the call from OnResize, when
6015           background_image == null.  So, resizing a toolbar when the
6016           layout doesn't change results in no drawing.
6017
6018 2006-08-12  Chris Toshok  <toshok@ximian.com>
6019
6020         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
6021         the VScrollBar and HScrollbar reversed.  oops.
6022
6023         * DataGrid.cs: fix the logic that assigns sizes to the implicit
6024         scrollbars.  we were assigning them twice (once in
6025         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
6026         therefore causing two scrollbar resizes (and redraws?) to happen
6027         per grid resize.
6028
6029 2006-08-12  Chris Toshok  <toshok@ximian.com>
6030
6031         * ToolBarButton.cs: redraw the entire button if the theme tells us
6032         to.
6033
6034         * Theme.cs: add ToolBarInvalidateEntireButton.
6035
6036         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
6037         buttons, just the border.
6038
6039         * ThemeNice.cs: redraw the entire toolbar button since we need to
6040         draw the highlight image.
6041
6042         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
6043         we need to redraw the entire button (not just the border).
6044
6045 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6046
6047         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
6048           for vertical bars. Fixes the mismatches shown by #78513
6049
6050 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
6051
6052         * FileDialog.cs: If a saved/remembered path doesn't exist
6053           anymore, fall back to "Desktop".
6054
6055 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6056
6057         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
6058           parent. It's apparently legal to not have one
6059         * XplatUIX11.cs:
6060           - SetZOrder: Don't try to set Z-Order on an unmapped window
6061           - CreateWindow: 0,0 are legal coordinates for a window. don't move
6062             it unless the coordinates are negative
6063
6064 2006-08-10  Mike Kestner  <mkestner@novell.com>
6065
6066         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
6067         when setting to null per msdn docs.  Fixes #78854.
6068
6069 2006-08-10  Chris Toshok  <toshok@ximian.com>
6070
6071         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
6072         flickering by setting a clip rectangle on the Graphics when we
6073         need to redraw just a particular menuitem.  Also, rename "OnClick"
6074         to "OnMouseDown" to reflect what it actually is.
6075         
6076         * Form.cs: track the OnMouseDown change.
6077
6078 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
6079
6080         * CommonDialog.cs: Properly inherit the CreateParams from the form
6081           and only change what we need. Fixes #78865
6082
6083 2006-08-10  Chris Toshok  <toshok@ximian.com>
6084
6085         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
6086         flickering in flat mode (and most of the flickering in general) by
6087         only invalidating the button border (and not the entire rectangle)
6088         when the state changes.  A couple of cases still flicker:
6089         ToggleButtons, and the dropdown arrow case when the user mouse
6090         ups.
6091
6092 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
6093
6094         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
6095           for german keyboards. Numlock state shouldn't affect the behaviour
6096           of the Del key. Fixes bug #78291.
6097
6098 2006-08-10  Chris Toshok  <toshok@ximian.com>
6099
6100         * ListControl.cs: remove the items.Clear line from BindDataItems,
6101         as this is the first thing done by both subclasses in their
6102         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
6103         passed -1, refresh the list.  This gets databinding working when
6104         the datasource is set on the list before the datasource is
6105         populated (as in wf-apps/ReportBuilder.)
6106
6107         * ComboBox.cs: remove the argument to BindDataItems.  This call
6108         should really go away, and be initiated by the ListControl code.
6109
6110         * ListBox.cs: same.
6111
6112 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6113
6114         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
6115           if no data is in the document when the control is displayed
6116
6117 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
6118
6119         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
6120           yes (fixes #78806)
6121         * TextControl.cs: 
6122           - PositionCaret: Allow positioning of caret but don't call methods 
6123             requiring a handle if the window isn't created yet
6124           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
6125           - owner_HandleCreated: Don't position the caret, just update it's 
6126             location. User might have already set a different position
6127
6128 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6129
6130         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
6131           windows. Screws up the returned coordinates for child windows. 
6132           Fixes #78825. I'm hoping this doesn't break something, since the
6133           code was explicitly put in 8 months ago, but no bug was attached.
6134           Menus still seem to work properly.
6135
6136 2006-08-08  Chris Toshok  <toshok@ximian.com>
6137
6138         * DataGrid.cs: make BeginInit/EndInit actually do what they're
6139         supposed to do - delay data binding until the EndInit call.  Also,
6140         make the table style collection's CollectionChangeAction.Refresh
6141         work properly.
6142
6143         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
6144         (with action = Refresh) when a consituent table's MappingName is
6145         changed.
6146
6147 2006-08-08  Chris Toshok  <toshok@ximian.com>
6148
6149         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
6150         Invalidate, since changing the text can change the size of the all
6151         toolbar buttons.
6152
6153 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6154
6155         * Form.cs (AddOwnedForm): Still need to add the form to our listif
6156           we don't have it yet
6157
6158 2006-08-08  Chris Toshok  <toshok@ximian.com>
6159
6160         * PrintControllerWithStatusDialog.cs: don't .Close() the status
6161         dialog, as this causes X errors later on, since we actually
6162         destroy the window.  Instead, .Hide() it.
6163
6164 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6165
6166         * ComboBox.cs: Added focus reflection for popup window
6167         * XplatUIX11.cs: 
6168           - Removed transient setting for non-app windows for now, not sure it
6169             was needed
6170           - Fixed logic checking if we have captions when deciding 
6171             override_redirect, WS_CAPTION is two bits and a 0 check was not
6172             sufficient
6173           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
6174             complicated
6175         * Form.cs: 
6176           - AddOwnedForm: Don't just add the form to the list, call the property
6177             to ensure the driver is informed about the ownership as well
6178           - CreateHandle: Set the TopMost status in the driver if we have an owner
6179         * XplatUI.cs: Fixed debug statement
6180
6181 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
6182         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6183           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
6184           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
6185           TrackBarRenderer.cs: Make constructor private.
6186         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
6187         * ProfessionalColorTable.cs: Make properties virtual.
6188
6189 2006-08-06  Duncan Mak  <duncan@novell.com>
6190
6191         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
6192         is not changing.
6193
6194 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6195         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6196           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
6197           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
6198           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
6199           Initial import of new 2.0 classes.
6200
6201 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6202         * Application.cs: Add 2.0 VisualStyles properties.
6203
6204 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6205         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
6206           XplatUIX11.cs: Create property to allow access to existing private
6207           variable "themes_enabled"
6208
6209 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6210
6211         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
6212         file size, as otherwise our class libraries fail using windows. Fixes
6213         bug #78759.
6214
6215 2006-08-04  Jackson Harper  <jackson@ximian.com>
6216
6217         * Form.cs:
6218         * XplatUIX11.cs: Move the toolwindow window manager creation into
6219         the X11 driver, this way on win32 we can let windows create/handle
6220         the toolwindows.
6221
6222 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6223
6224         * PrintDialog.cs: Remove some redundant checks, add some others,
6225         clean some code, and move the focus to the text boxes when the
6226         values are incorrect.
6227
6228 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
6229
6230         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
6231
6232 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6233
6234         * NumericUpDown.cs: Setting the Minimum and Maximum is now
6235           handled correctly. Fixes bug #79001.
6236
6237 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6238
6239         * PrintDialog.cs: The "Copies" numeric up down must have
6240         set the Minimum property to 1; only if the value is bigger
6241         than 1, activate "Collate" check box. This is the behaviour of .Net.
6242         Also modify the Document elements only if it is not null.
6243
6244 2006-08-03  Jackson Harper  <jackson@ximian.com>
6245
6246         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
6247         length. (We have a larger array then actual node count).
6248                 
6249 2006-08-03  Jackson Harper  <jackson@ximian.com>
6250
6251         * ComboBox.cs: Don't show selection by default.
6252         - The SelectAll isn't needed here, since the focus code should do
6253         that
6254         - DDL style lists to manual selection drawing, so when they
6255         get/lose focus they have to invalidate.
6256
6257 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
6258
6259         * TextBoxBase.cs: Don't always show all selections by default.
6260
6261 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
6262         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
6263           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
6264           Fixed various typos.
6265
6266 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6267
6268         * Control.cs: Removing the controls in a ControlCollection with
6269           Clear now hides the controls as expected. Fixes bug #78804. 
6270
6271 2006-08-03  Jackson Harper  <jackson@ximian.com>
6272
6273         * Control.cs: Revert previous focus patch, it breaks reflector.
6274
6275 2006-08-03  Jackson Harper  <jackson@ximian.com>
6276
6277         * ComboBox.cs: Cleanup selection and focus with the combobox.
6278         This also eliminates some duplicated keyboard code, since now
6279         everything is handled by the main class.
6280         - Make list selection work on mouse up instead of down, to match
6281         MS.
6282
6283 2006-08-02  Jackson Harper  <jackson@ximian.com>
6284
6285         * Control.cs: Setting focus needs to go through the whole
6286         selection mechanism.
6287
6288 2006-08-02  Chris Toshok  <toshok@ximian.com>
6289
6290         * PrintPreviewDialog.cs: change MinimumSize to use
6291         base.MinimumSize so it works.
6292
6293 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
6294
6295         * TextControl.cs:
6296           - UpdateCaret: Added sanity check in case caret isn't defined yet
6297           - Line.Delete: Now updating selection and caret markers if we're
6298             transfering a node (Properly fixes #78323)
6299           - SetSelectionEnd: Added sanity check
6300         * TextBoxBase.cs: Removed broken attempt to fix #78323
6301
6302 2006-08-01  Chris Toshok  <toshok@ximian.com>
6303
6304         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
6305         Close() call is handled in Form, not here.
6306
6307 2006-08-01  Chris Toshok  <toshok@ximian.com>
6308
6309         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
6310         layout/rendering.
6311
6312         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
6313         for sizes < 100% zoom.  The code now aggressively attempts to keep
6314         from calling document.Print (), and tries not to use the scaling
6315         g.DrawImage whenever possible (it still does if you scale to >
6316         100%, since usually that involves huge images).
6317
6318         * PrintPreviewControl.cs: hook up the close button.
6319
6320 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
6321         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
6322           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
6323           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
6324           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
6325           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
6326           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
6327           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
6328           Removed [Serializable] for 2.0 Event Handlers.
6329
6330 2006-07-31  Jackson Harper  <jackson@ximian.com>
6331
6332         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
6333         * TextControl.cs: Uncomment out the body of this method.
6334
6335 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
6336
6337         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
6338           standard cursors.
6339
6340 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6341
6342         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
6343           that embed TextBox and need selections visible even if textbox is not
6344           focused to enforce that behaviour.
6345         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
6346           selection drawing
6347
6348 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6349
6350         * TextControl.cs:
6351           - Added new SetSelectionStart/SetSelectionEnd overloads
6352           - Fixed viewport width assignment to be accurate
6353           - Adjusted alignment line shift calculations to allow cursor on right
6354             aligned lines to be always visible at the right border (like MS)
6355         * TextBoxBase.cs:
6356           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
6357           - TextBoxBase_SizeChanged: recalculating canvas on size changes
6358           - CalculateScrollBars: Use ViewPort size instead of window size, to
6359             properly consider space occupied by the border and scrollbars 
6360             (Fixes #78661)
6361           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
6362             calculations; no longer leaves artifacts
6363           - CaretMoved: Adjusted window scrolling to match MS and fixed several
6364             calculation bugs (Still missing right/center align calculations)
6365
6366 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
6367
6368         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
6369           use of both scroll rect and clip rect, as they do the same.
6370
6371 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6372
6373         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
6374           in the event handler (fixes #78912)
6375
6376 2006-07-31  Chris Toshok  <toshok@ximian.com>
6377
6378         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
6379         grid.ListManager.Count, since grid.ListManager might be null.
6380         This of course begs the question "why are we drawing rows for a
6381         grid with no list manager (and therefor no rows)?"  Fixes the
6382         crash in bug #78929.
6383
6384 2006-07-31  Chris Toshok  <toshok@ximian.com>
6385
6386         * RelatedPropertyManager.cs: Don't always chain up to the parent
6387         ctor.  instead, call SetDataSource if the parent's position is !=
6388         -1.  Fixes the crash in #78822.
6389
6390 2006-07-31  Chris Toshok  <toshok@ximian.com>
6391
6392         * DataGrid.cs (get_ListManager): use field instead of property
6393         accessors for datasource and datamember.
6394         (RowsCount): make internal again.
6395         (OnMouseDown): end edits before resizing columns/rows.
6396         (OnMouseUp): restart edits after resizing columns/rows.
6397
6398 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
6399
6400         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
6401           This fixes the situation where the last set cursor is displayed
6402           whenever the mouse is over scrollbars.
6403
6404 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6405
6406         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
6407         Document properties, as well as initial values.
6408
6409 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
6410
6411         * XplatUIWin32.cs (SetBorderStyle): Setting both border
6412           and ClientEdge results in a 3-pixel border, which is
6413           wrong.
6414
6415 2006-07-28  Jackson Harper  <jackson@ximian.com>
6416
6417         * TreeNodeCollection.cs: Fix the clear method.
6418         - Fix the Shrink also
6419
6420 2006-07-27  Jackson Harper  <jackson@ximian.com>
6421
6422         * TreeView.cs: Make sure the visible order is computed when we
6423         attempt to size the scrollbars (for trees that mess with the
6424         scrolling when they shouldn't.
6425         - Make sure to give the scrollbars valid values.
6426
6427 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6428
6429         * XplatUIX11.cs: Move motion compression code to where it
6430           has less performance impact
6431
6432 2006-07-26  Jackson Harper  <jackson@ximian.com>
6433
6434         * UpDownBase.cs: When the control is selected make the child
6435         controls non selectable, so that a click on them won't do a
6436         focus/unfocus cycle.
6437         - Don't give focus to the text box when the spinner is selected.
6438         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
6439
6440 2006-07-26  Chris Toshok  <toshok@ximian.com>
6441
6442         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
6443         satisfied with this solution.  If the bitmaps are small, we should
6444         just cache them in the PrintPreviewDialog and draw them here.
6445         Also, the layout is broken for the 2-up and 3-up cases.
6446
6447         * Theme.cs: add PrintPReviewControlPaint.
6448
6449         * PrintPreviewDialog.cs: first pass implementation.
6450
6451         * PrintPreviewControl.cs: first pass implementation.  No
6452         scrollbars yet.
6453
6454         * PrintDialog.cs: only validate fields if that particular portion
6455         of the UI is enabled.  Also, set the document's controller to a
6456         PrintControllerWithStatusDialog wrapping the document's print
6457         controller.
6458
6459         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
6460         bring up a SaveFileDialog (i hope we don't want to match the
6461         behavior of the crappy windows file entry) and set the
6462         PrinterSettings.PrintFileName accordingly.
6463
6464 2006-07-26  Jackson Harper  <jackson@ximian.com>
6465
6466         * ContainerControl.cs: Add a field that disables auto selecting
6467         the next control in a container when the container is activated.
6468         * UpDownBase.cs: Don't select the text box when the up down is
6469         selected.
6470
6471 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6472
6473         * XEventQueue.cs: Added methods for peeking (used for compression
6474           of successive events)
6475         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
6476           mouse move events (fixes #78732)
6477
6478 2006-07-25  Jackson Harper  <jackson@ximian.com>
6479
6480         * UpDownBase.cs: Use an internal class for the textbox so that we
6481         can control focus.  the updown control should always have focus,
6482         if either the text area or the buttons are clicked.
6483         - Send the key messages to the textbox, since it never actually
6484         has focus
6485         - Activate and decativate the textbox caret.
6486
6487 2006-07-24  Jackson Harper  <jackson@ximian.com>
6488
6489         * Control.cs: Use the directed select when selecting a control,
6490         this way the container controls override will get called and the
6491         whole ActiveControl chain will get triggered.  TODO: probably need
6492         to make sure this gets done everywhere instead of the old
6493         Select(Control).
6494         * ContainerControl.cs: Implement the directed Select method to
6495         find and activate the correct child control.    
6496         
6497 2006-07-22  Mike Kestner  <mkestner@novell.com>
6498
6499         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
6500         menu handling code so that clicks without a grab work too.
6501         [Fixes #78914]
6502
6503 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
6504
6505         * FileDialog.cs: Enable the BackButton when dirstack has one element.
6506           Added some small optimizations.
6507
6508 2006-07-21  Matt Hargett  <matt@use.net>
6509
6510         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
6511
6512 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
6513
6514         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
6515           tests pass and match MS in some strange border cases.
6516
6517 2006-07-21  Chris Toshok  <toshok@ximian.com>
6518
6519         * ThemeWin32Classic.cs: handle drawing of the relation links and
6520         parent row buttons.
6521
6522         * Theme.cs: change args to DataGridPaintParentRow.
6523
6524         * DataGrid.cs: Don't use controls for the relation links and
6525         parent buttons, so we have to handle all their interactions in
6526         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
6527         when we're navigating through child tables, so we can reinstate
6528         selection, expanded state, current cell, etc.
6529
6530 2006-07-20  Chris Toshok  <toshok@ximian.com>
6531
6532         * ToolBar.cs: When we redraw a button, for whatever reason,
6533         there's no reason to redraw the entire toolbar.  Also, don't call
6534         Control.Refresh from within Redraw, as it's much heavier than
6535         Invalidate (which is really what we want).
6536
6537 2006-07-20  Chris Toshok  <toshok@ximian.com>
6538
6539         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
6540         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
6541         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
6542         traces from within a debug IBindingList datasource
6543         (in mono/winforms/datagrid) for *days*, I've finally gotten things
6544         to work in a similar fashion.
6545
6546 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6547
6548         * ListBox.cs: Don't call Sort () when setting 
6549         the Sorted property to false (avoid an unnecessary sort).
6550
6551 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6552
6553         * ListControl.cs: DataSource should throw an ArgumentException
6554         instead of a normal exception when the argument is not of the 
6555         correct type.
6556
6557 2006-07-20  Mike Kestner  <mkestner@novell.com>
6558
6559         * Control.cs: add InternalPreProcessMessage to allow us to steal
6560         key events before MWF gets its paws on them.  Adapted from a
6561         suggestion by eno.
6562         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
6563         up/down/left/right navigation. Override the new internal control
6564         method to steal the events since they never make it to WndProc.
6565         * ToolBarButton.cs: don't worry about pushed when setting hilight
6566         since the drawing code prefers pushed to hilight. Invalidate on 
6567         Hilight changes. Fixes #78547 and #78525.
6568
6569 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6570
6571         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
6572           the canvas size. Fixes #78868
6573
6574 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
6575
6576         * Splitter.cs: Track requested split position until first layout
6577           is performed. Fixes #78871
6578
6579 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6580
6581         * Application.cs: Removed code that forces 1.x for the version
6582           number if the version started with 0. Not sure why that code was
6583           there and I couldn't find any bugs that indicated we needed it.
6584           Fixes #78869
6585
6586 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
6587
6588         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
6589           ResetDefaults(), just write some output to the console until it's
6590           implemented. Fixes bug #78907 for now. Eliminated two warnings.
6591
6592 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
6593
6594         * PropertyGridView.cs: set StartPosition of drop down forms
6595         so they appear in correct initial spot.  Fixes #78190.
6596
6597 2006-07-19  Mike Kestner  <mkestner@novell.com>
6598
6599         * ThemeWin32Classic.cs: use parent background color when drawing
6600         flat toolbars.  Restructure the conditionals to make sure non-flat
6601         non-Divider toolbars are filled too.  Fixes #78837.
6602
6603 2006-07-19  Mike Kestner  <mkestner@novell.com>
6604
6605         * ListBox.cs: Sort on collection changes even if the handle
6606         isn't created yet.  Fixes #78813.
6607
6608 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6609
6610         * ListControl.cs: DisplayMember should never be null,
6611         and now we assign String.Empty when null is passed to it (this
6612         is the .Net way).
6613
6614 2006-07-17  Mike Kestner  <mkestner@novell.com>
6615
6616         * ListViewItem.cs: restructure Font and subitem Font handling 
6617         to hold a specific font and refer back to owner on null.
6618         Fixes #78761.
6619
6620 2006-07-17  Mike Kestner  <mkestner@novell.com>
6621
6622         * ToolBar.cs: bandaid for side-effect of previous patch which was
6623         discarding explicit heights for non-AutoSize toolbars.  Need to
6624         extend my format tester to deal with AutoSize=false. Fixes #78864.
6625
6626 2006-07-15  Jackson Harper  <jackson@ximian.com>
6627
6628         * LabelEditTextBox.cs:
6629         * TreeView.cs: Use a new LabelEdit class for node editing, this
6630         class automatically 'closes' itself when it gets the enter key or
6631         loses focus.
6632         - Use the client rectangle when setting the trees scrollbars, so
6633         border style is taken into account.
6634         
6635 2006-07-14  Jackson Harper  <jackson@ximian.com>
6636
6637         * TreeNode.cs:
6638         * TreeView.cs: Make the editing work similar to MSs, firing the
6639         events correctly and ending edits correctly.
6640
6641 2006-07-14  Mike Kestner  <mkestner@novell.com>
6642
6643         * ToolBarButton.cs:
6644         * ToolBar.cs: layout restructuring and redraw enhancements to support
6645         formatting changes gracefully, like setting TextAlign, ImageList, 
6646         ButtonSize, and Appearance.  Handles explicit button sizing quirks
6647         of the MS controls.  Things like flat toolbars ignoring button size
6648         but becoming constant sized at the largest button's size.  Normal
6649         toolbars with an image set cannot be shrunk smaller than the image,
6650         but text can be clipped/ignored.
6651         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
6652         is zero.  Seems like DrawString should be smart enough to not put
6653         anything on screen though. Also trim labels and ellipsize at the char
6654         boundary, not word.
6655         Fixes #78711 and #78483.
6656
6657 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6658
6659         * FolderBrowserDialog.cs: Disable "New Folder" button and
6660           "New Folder" contextmenu menuitem if a folder like "My Computer"
6661           is selected.
6662
6663 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6664
6665         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
6666         * FolderBrowserDialog.cs:
6667           - Use MWFConfig to store and read size and position settings
6668           - Added code to create a new folder (button or context menu).
6669             Use TreeView labeledit to change the name of the new folder.
6670
6671 2006-07-14  Jackson Harper  <jackson@ximian.com>
6672
6673         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
6674         when the tree is scrolled we end editing.
6675
6676 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6677
6678         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
6679           Down arrows
6680
6681 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
6682
6683         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
6684         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
6685         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
6686         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
6687         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
6688         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
6689         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
6690         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
6691         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
6692         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
6693         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
6694         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
6695         ListViewItemSelectionChangedEventHandler.cs,
6696         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
6697         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
6698         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
6699         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
6700         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
6701         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
6702         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
6703         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
6704         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
6705         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
6706         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
6707         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
6708         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
6709         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
6710         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
6711         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
6712         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
6713         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
6714         WebBrowserNavigatingEventHandler.cs, 
6715         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
6716
6717 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
6718
6719         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
6720         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
6721         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
6722         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
6723         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
6724         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
6725         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
6726         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
6727         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
6728         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
6729         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
6730         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
6731         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
6732         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
6733         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
6734         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
6735         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
6736         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
6737         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
6738         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
6739         ListViewItemStates.cs, MaskFormat.cs: Added
6740
6741 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
6742
6743         * PropertyGridView.cs: Fix keyboard navigation of drop down.
6744         Patch from eno for bug 78558.
6745         
6746 2006-07-13  Jackson Harper  <jackson@ximian.com>
6747
6748         * TreeView.cs: When an edit is finished make sure that the
6749         selected node is visible.
6750         - When setting the top/bottom use the scrollbars is_visible, so
6751         everything will be set correctly even if the tree isn't visible
6752         yet.
6753
6754 2006-07-13  Jackson Harper  <jackson@ximian.com>
6755
6756         * ComboBox.cs: Revert the item->index part of my previous patch.
6757         * TreeView.cs: Use LostFocus instead of Leave for detecting when
6758         the edit box has lost focus (duh).
6759         - Just make the edit box not visible when we get return, that will
6760         take the focus, which will call EndEdit
6761         * TreeNode.cs When we start editing, notify the treeview.
6762
6763 2006-07-12  Jackson Harper  <jackson@ximian.com>
6764
6765         * ComboBox.cs: Clear out old items before setting the item list.
6766         This prevents databound controls from having their items added
6767         twice.
6768         - Switch the combobox to use indices whereever possible instead of
6769         using Item's.  This allows usto navigate through lists that have
6770         more then one item with the same string value (ie a, b, b, a).
6771         - Scroll the listboxes scrollbar when a non visible item is
6772         highlighted
6773         - Allow keypress to cycle through all the possible values. For
6774         example if you have b1, b2, b3 and hold down the B key all the
6775         values will be cycled through.
6776         
6777 2006-07-12  Jackson Harper  <jackson@ximian.com>
6778
6779         * TextBoxBase.cs:
6780         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
6781         this using the internal methods.
6782         * Control.cs: Add OnGotFocusInternal.  A new method that allows
6783         controls to "override" OnGotFocus and change focus behavior if
6784         needed.
6785         - Same thing for LostFocus
6786         * ComboBox.cs: Pass off focus to the text control properly.
6787
6788 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
6789
6790         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
6791         * FolderBrowserDialog.cs: Almost a complete rewrite.
6792           - Better support for Environment.Specialfolders
6793           - Added support for MWFVFS
6794           - Made setting SelectedPath work
6795
6796 2006-07-12  Jackson Harper  <jackson@ximian.com>
6797
6798         * Control.cs: Optimze getting all the controls.
6799
6800 2006-07-11  Jackson Harper  <jackson@ximian.com>
6801
6802         * ContainerControl.cs: Override SETFOCUS in the container control,
6803         so that it is not selected on mouse click.
6804
6805 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
6806
6807         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
6808           Hopefully we will have a better way once all of focus is complete.
6809
6810 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
6811
6812         * ThemeWin32Classic.cs: Commented out some debug code and fixed
6813           a compile error with csc.
6814
6815 2006-07-11  Jackson Harper  <jackson@ximian.com>
6816
6817         * Control.cs: When hiding a control only select the next control
6818         if the current control was focused.
6819         - Don't handle enter/leave when setting/killing focus, this is
6820         done by the container control.
6821         - Remove is_selected, it's not needed anymore.
6822         - Add utility methods for selecting a child control, and for
6823         firing the Enter/Leave events.
6824         * ContainerControl.cs: When a control is activated fire the
6825         enter/leave events.
6826         - Don't wrap when processing the tab key, so that focus can be
6827         moved outside of the container.
6828         - Use the correct active control
6829
6830 2006-07-11  Jackson Harper  <jackson@ximian.com>
6831
6832         * ComboBox.cs: Remove some debug code that was blinding me.
6833         * UpDownBase.cs: These controls actually aren't implicit, they are
6834         visible to the user.
6835
6836 2006-07-10  Chris Toshok  <toshok@ximian.com>
6837
6838         * DataGrid.cs: move back to the is_adding boolean field.  god i
6839         hate this is_editing/is_adding/is_changing stuff.
6840
6841 2006-07-10  Chris Toshok  <toshok@ximian.com>
6842
6843         * DataGridTableStyle.cs: just check if the property type is bool.
6844         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
6845         Don't use CanRenderType.
6846
6847         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
6848         if our text == NullText.  Remove CanRenderType.
6849
6850         * DataGridBoolColumn.cs: nuke CanRenderType.
6851
6852         * DataGrid.cs: reenable some code to end the current edit inside
6853         of set_CurrentCell.  This fixes the other 1.1.16 regression.
6854         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
6855         Also, remove the visible_row_count arg from CalcRowHeaders, since
6856         we don't need to worry about the actual height of the area.
6857
6858 2006-07-10  Chris Toshok  <toshok@ximian.com>
6859
6860         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
6861         mode, just return.
6862
6863         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
6864         the real sense of the IsInEditOrNavigateMode property (true =
6865         navigate, false = edit).  Also, update OnKeyPress to reflect this.
6866
6867         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
6868         column style exists, we still need to set its property descriptor
6869         to match up with our list manager.
6870
6871 2006-07-10  Chris Toshok  <toshok@ximian.com>
6872
6873         * ThemeWin32Classic.cs: implement the new row/header painting
6874         approach.  The parent row painting will likely go away and
6875         replaced with label controls, but the rest seems to work ok (and
6876         efficiently).
6877
6878         * Theme.cs: change the way we draw datagrid rows.  we don't draw
6879         the row headers as a block now.  Instead we draw them in the
6880         normal draw-row loop.  Add some calls for drawing parent rows and
6881         relation rows.
6882
6883         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
6884         a default table style.  Set the defaults from ThemeEngine.Current,
6885         not SystemColors.  Fix lots of misc issues with property setters.
6886
6887         * DataGrid.cs: move loads of style information out of this class
6888         as it's being duplicated with DataGridTableStyle.  keep track of a
6889         special DataGridTableStyle for the properties we used to mirror
6890         here.  Switch all the style properties to access this table style
6891         instead of instance fields of this class.  Also add a internal
6892         class to represent parent rows (more needs to be stored here, like
6893         the selection state from the parent table, as well as the
6894         expansion state.)  Also, for datasources with relations, do the
6895         right thing for collapse/expand, and add support for the
6896         navigation/parent row buttons.
6897
6898         Lastly, fix the crash in the 1.1.16 build.
6899
6900         * GridTableStylesCollection.cs: make the explicit interface
6901         implementations call the class's methods as opposed to duplicating
6902         them.
6903
6904         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
6905         0 so the text doesn't jump around when we move the cursor.
6906
6907 2006-07-10  Jackson Harper  <jackson@ximian.com>
6908
6909         * TextBoxBase.cs:
6910         * ListBox.cs: Match MS's ToString (this makes debugging focus
6911         stuff infinitely easier).
6912
6913 2006-07-10  Jackson Harper  <jackson@ximian.com>
6914
6915         * Control.cs (SelectNextControl): When checking the control's
6916         parent use this instead of ctrl.parent so that null can be passed
6917         to SelectNextControl. (I have unit tests for this).
6918         - Remove unused var.
6919
6920 2006-07-10  Chris Toshok  <toshok@ximian.com>
6921
6922         * CurrencyManager.cs: correct one regression, the removal of the
6923         finalType field.  Also, add a MonoTODO on CanAddRows, implement
6924         Refresh() correctly, and fix some event emission in
6925         ListChangedHandler.
6926
6927 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6928
6929         * FileDialog.cs: Don't use brackets for new folders if they exist
6930           under *nix. Instead use -(number of existing folders +1).
6931
6932 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6933
6934         * FileDialog.cs:
6935           - Fixed really nasty bug #78771
6936           - Don't block the whole GUI when reading directories with a lot of
6937             entries. Use an other thread instead and call BeginInvoke to
6938             update the ListView in MWFFileView
6939
6940 2006-07-07  Chris Toshok  <toshok@ximian.com>
6941
6942         * Control.cs (Dispose): release any Capture when disposing.
6943
6944 2006-07-07  Chris Toshok  <toshok@ximian.com>
6945
6946         * LinkLabel.cs (Select): if we chain up to the parent, set
6947         focused_index to -1 so we'll search for the first available link
6948         the next time the user tabs into us.  Also, if the direction is
6949         backward and focused_index == -1, start the search from the last
6950         element.
6951
6952 2006-07-07  Chris Toshok  <toshok@ximian.com>
6953
6954         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
6955         is beyond the end of the text, don't do anything.
6956         (CreateLinkPieces): set our ControlStyles.Selectable based on
6957         whether or not we have any links.
6958         (Link.Invalidate): use a loop instead of foreach.
6959         (Link.set_Start): null out owner.sorted_links so it'll be
6960         recreated by CreateLinkPieces.
6961
6962 2006-07-06  Chris Toshok  <toshok@ximian.com>
6963
6964         * LinkLabel.cs: revert the SetStyle change.
6965
6966 2006-07-06  Chris Toshok  <toshok@ximian.com>
6967
6968         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
6969         (OnEnableChanged): s/Refresh/Invalidate
6970         (OnGotFocus): if we have a focused index already, refocus it (so
6971         if we mouse out/in to the window it'll focus the right link).
6972         (OnKeyDown): move the tab handling out of here.
6973         (OnLostFocus): don't set focused_index to -1, so we can refocus it
6974         when we lose focus.
6975         (OnMouseDown): don't Capture here - Control handles it.  Also,
6976         focus the active link.
6977         (OnMouseUp): don't deal with Capture.
6978         (OnPaintBackgroundInternal): remove.
6979         (OnTextAlignChanged): CreateLinkPieces before calling the
6980         superclass's method.
6981         (OnTextChanged): call CreateLinkPieces before calling superclass's
6982         method.
6983         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
6984         move around.
6985         (Select): implement this, moving the selection between different
6986         links, and call parent.SelectNextControl if we don't have another
6987         link to focus in the given direction.
6988         (CreateLinkPieces): call Invalidate instead of Refresh.
6989         
6990 2006-07-06  Chris Toshok  <toshok@ximian.com>
6991
6992         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
6993         new LinkLabel internals.
6994
6995         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
6996         over pieces looking for active/focused/etc links.  also, deal with
6997         runs of text (and links) with embedded \n's in them, and use
6998         MeasureCharacterRanges instead of MeasureString to figure out the
6999         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
7000         two-step.
7001
7002 2006-07-04  Jackson Harper  <jackson@ximian.com>
7003
7004         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
7005         XKB or key auto repeat, do it manually.  Without key auto repeat,
7006         when a key is held down we get key press, key release, key press,
7007         key release, ... with auto repeat we get key press, key press, key
7008         press ..., and then a release when the key is actually released.
7009
7010 2006-07-03  Jackson Harper  <jackson@ximian.com>
7011
7012         * TabControl.cs:
7013         * ThemeWin32Classic.cs: Tabs do not obey normal background color
7014         rules, they are always control color regardless of the background
7015         color.
7016
7017 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
7018
7019         * FileDialog.cs: Added internal class MWFConfig.
7020           Removed Registry support and replaced it with support for the new
7021           MWFConfig class. See MWFConfig comments for more information.
7022
7023 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
7024
7025         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
7026           rectangle. Added some patches from eno from bug #78490 and fixed
7027           the arrow position for small up and down CPDrawScrollButtons.
7028
7029 2006-06-30  Jackson Harper  <jackson@ximian.com>
7030
7031         * InternalWindowManager.cs: Remove some debug code.
7032         * Form.cs: When an MdiParent is set to null, the window is
7033         "detatched" and becomes a normal window.
7034         * MdiClient.cs: Don't bring the new child form to the front until
7035         it is activated (setting it as active does this), this makes the
7036         previously active forms titlebar get redrawn as inactive.
7037
7038 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
7039
7040         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
7041           with later controls
7042
7043 2006-06-29  Mike Kestner  <mkestner@novell.com>
7044
7045         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
7046         arrow in keynav state.  Fixes #78682.
7047
7048 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7049
7050         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
7051           order (fixes #78393)
7052
7053 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
7054
7055         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
7056           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
7057           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
7058           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
7059           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
7060           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
7061           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
7062           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
7063           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
7064           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
7065           enumerations (FlagsAttribute, SerializableAttribute, added/removed
7066           values)
7067
7068 2006-06-28  Mike Kestner  <mkestner@novell.com>
7069
7070         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
7071
7072 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7073
7074         * PropertyGrid.cs,
7075           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
7076           item lines from other area (It also makes BackColor consistent and
7077           compatible with .NET). Fixed bug #78564.
7078
7079 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
7080
7081         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
7082         Patch from Eno for #78555.
7083
7084 2006-06-27  Chris Toshok  <toshok@ximian.com>
7085
7086         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
7087
7088         * DataGridColumnStyle.cs: same.
7089
7090         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
7091         
7092         * DataGridDrawingLogic.cs: nuke.
7093
7094 2006-06-27  Chris Toshok  <toshok@ximian.com>
7095
7096         * DataGridTableStyle.cs: clean up the constructors, and build the
7097         list of child relations for this table.  I have no idea if this is
7098         where we should be doing it (it probably isn't), but since we're
7099         already iterating over the properties..
7100
7101         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
7102         struct and array for keeping track of row information, similar to
7103         what's shown in a hack on
7104         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
7105
7106         * Theme.cs: be consistent about the naming of DataGrid methods,
7107         prefering ColumnWidths and RowHeights over columnsWidths and
7108         RowsHeights.
7109
7110         * ThemeWin32Classic.cs: same, and also add support for variable
7111         sized rows (and the +/- expansion icons for related rows).
7112
7113 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7114
7115         * TextBoxBase.cs: Applied Eno's patch from #78660
7116
7117 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7118
7119         * Form.cs (ScaleCore): We don't want to scale our form if it's
7120           state is minimized or maximized, but we still need to scale our
7121           child windows. Also, added try/finally block to ensure layout
7122           gets reset (Fixes #78697)
7123
7124 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7125
7126         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
7127
7128 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7129
7130         * Form.cs: Fixed c+p error and added check to resize form if minimum
7131           size is bigger than current size (Fixes #78709)
7132
7133 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
7134
7135         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
7136
7137 2006-06-26  Mike Kestner  <mkestner@novell.com>
7138
7139         * ComboBox.cs: only do Keypress handling in the combo when there  
7140         are items in the collection. Fixes #78710.
7141
7142 2006-06-26  Chris Toshok  <toshok@ximian.com>
7143
7144         * Binding.cs: make this work bi-directionally.  also, clear up
7145         other mixups between Push/Pull Data (e.g. we're supposed to pull
7146         data when validating).
7147
7148         * BindingManagerBase.cs: trim some fully qualified collection
7149         types.
7150
7151         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
7152
7153 2006-06-23  Chris Toshok  <toshok@ximian.com>
7154
7155         * PropertyManager.cs: It appears (according to the unit tests)
7156         that PropertyManager doesn't use
7157         PropertyDescriptor.AddValueChanged to track propery value changes
7158         in its datasource, but uses the same scheme as Binding, where it
7159         looks for a <Property>Changed event and binds to it.
7160
7161         Also, according to the docs, IsSuspended always returns false for
7162         a property manager with a non-null datasource.
7163
7164 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
7165
7166         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
7167           need to update the actual DialogResult. (Fixes #78613)
7168
7169 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
7170
7171         * Form.cs (ShowDialog): Release any captures before running the
7172           new message pump (fixes #78680)
7173
7174 2006-06-22  Mike Kestner  <mkestner@novell.com>
7175
7176         * ListView.cs: Layout column widths properly in details mode even 
7177         if HeaderStyle.None is set.  Fixes #78691.
7178
7179 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
7180
7181         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
7182
7183 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
7184
7185         * Control.cs (ContainsFocus): Using new driver method to get focused
7186           window, instead of trying to use internal tracking var, which can
7187           recursion issues (Fixes #78685)
7188         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
7189           XplatUIWin32.cs: Added GetFocus method to return focused window
7190
7191 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7192
7193         * ColorDialog.cs: when the mouse button is pressed inside the color
7194         matrix, don't let the cursor move out of it until the button is
7195         released, which is the behavior on windows. Changed 'colours' by
7196         'colors' to use the same word consistently.
7197
7198 2006-06-21  Chris Toshok  <toshok@ximian.com>
7199
7200         * DataGrid.cs: add in some basic navigation stuff (navigating to a
7201         child relation and back, using a stack).  Also, remove
7202         GetDataSource and the code that calls it - it's not needed.  Also,
7203         track CurrencyManager.ListName's removal.
7204
7205 2006-06-21  Chris Toshok  <toshok@ximian.com>
7206
7207         * CurrencyManager.cs: push some of the original type checking from
7208         BindingContext.CreateBindingManager to here, and remove some of
7209         the finalType stuff.  Need more tests to make sure I've got the
7210         ListName part right, and we might need more in SetDataSource.
7211
7212         * PropertyManager.cs: add a ctor that takes just the datasource,
7213         and no property name.  Make SetDataSource work with a null
7214         property_name, and make Current return the data_source if the
7215         property descriptor is null.  this makes 'string foo = "hi";
7216         BindingContext[foo].Current' return "hi" as it should.
7217
7218         * RelatedCurrencyManager.cs: make this code more generic - there's
7219         no reason the parent manager has to be CurrencyManager, and
7220         there's no reason to pass the DataRelation.  It suffices to use a
7221         BindingManagerBase and PropetyDescriptor.
7222
7223         * RelatedPropertyManager.cs: make a similar change here.
7224         
7225         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
7226         flower I knew it could be.
7227
7228 2006-06-20  Chris Toshok  <toshok@ximian.com>
7229
7230         * PropertyManager.cs: the PropertyChangedHandler is invoked when
7231         data in the source has changed and we need to update the control,
7232         so s/PullData/PushData.
7233
7234         * CurrencyManager.cs: Refresh is meant to update the control from
7235         data in the datasource.  So, s/PullData/PushData.
7236
7237         * BindingContext.cs: add more ugliness (we weren't handling the
7238         case where data_source = DataTable and data_member = column_name).
7239
7240         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
7241         from the perspective of the datasource.  PullData pulls from the
7242         control, PushData pushes to the control.
7243
7244 2006-06-20  Chris Toshok  <toshok@ximian.com>
7245
7246         * BindingContext.cs: rewrite the CreateBindingManager code to
7247         handle navigation paths more or less properly.  This could
7248         definitely stand some more work, in particular to push the
7249         recursion up to the toplevel.  But that relies on fixes in other
7250         places (System.Data comes to mind).
7251
7252         Also, move to a flat hashtable (and encode the twolevel nature of
7253         the dictionary into the hash key).  This lets us implement the
7254         IEnumerable.GetEnumerator method.
7255
7256         * RelatedCurrencyManager.cs: new class.  Update our view based on
7257         our relation and our parent CurrencyManager's position.
7258
7259         * CurrencyManager.cs: split out some logic from the ctor into
7260         SetView, so it can be called from the new RelatedCurrencyManager
7261         subclass.
7262
7263         * RelatedPropertyManager.cs: new class.  Update our datasource
7264         based on the position of our parent CurrencyManager.
7265
7266         * PropertyManager.cs: split out some logic from the ctor into
7267         SetDataSource, so it can be called from the new RelatedDataSource
7268         subclass.  Also, make the Current getter return the value
7269         of the PropertyDescriptor, not the data_source.
7270
7271         * Binding.cs: no need to duplicate the string splitting code here.
7272
7273 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7274
7275         * Control.cs:
7276           - set_Enabled: OnEnabledChanged is not called if the inherited state 
7277             of the control is not altered, even though  we might be changing the
7278             internal state of the control (#78458)
7279           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
7280             OnEnabledChanged, to allow easy altering of any child window state
7281           - OnEnabledChanged: Added code to enable/disable driver window state
7282           - OnParentEnabledChanged: Instead of firing the event, call 
7283             OnEnabledChanged, which will fire the event and also a) set driver
7284             window state and pass the enabled state to any grandchildren (#78458)
7285
7286 2006-06-19  Jackson Harper  <jackson@ximian.com>
7287
7288         * InternalWindowManager.cs: We don't set the cursor explicitly
7289         thats done via the response to NCHITTESTs.
7290         - Don't need to adjust for titlebar heights anymore, the
7291         coordinates are coming in the correct coordinates now (see peters
7292         last patch).
7293
7294
7295 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7296
7297         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
7298           being translated relative to whole window, instead of client window.
7299           That caused broken offsets on mouseclick (and caused gas for our
7300           InternalWindowManager)
7301
7302 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7303
7304         * TextControl.cs:
7305           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
7306           - Undo(): Added replay of cursor move on DeleteChars action; added
7307             calling Undo() again if a recorded cursor move is invalid (to
7308             ensure that some action is performed on Undo)
7309         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
7310
7311 2006-06-16  Jackson Harper  <jackson@ximian.com>
7312
7313         * MdiClient.cs: Instead of just sizing maximized windows when
7314         there is a resize we also have to adjust the Y of minimized
7315         windows, so they stay pinned to the bottom of the mdi container.
7316         - Eliminate separate tracking of the active control, we can just
7317         get this from the controls collection.
7318         - Paint the decorations for the newly activated titlebar so we get
7319         a pretty blue bar.
7320         * InternalWindowManager.cs:
7321         * ThemeWin32Classic.cs: Minimized windows get all three buttons
7322         even if they are a tool window.
7323         
7324 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7325
7326         * TextControl.cs (Undo): Handle non-existent cursor locations in the
7327           undo buffer, these can happen when text was deleted and the cursor
7328           was recorded first. Since we will also have a recorded cursor
7329           after the delete this is not an issue. (Fixes #78651)
7330
7331 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
7332
7333         * AccessibleObject.cs: Remove dependence on Control.is_selected;
7334           instead properly track control states internally (allows us to
7335           remove is_selected from Control)
7336
7337 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7338
7339         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
7340         whose width is not a multiple of 8.
7341
7342 2006-06-13  Jackson Harper  <jackson@ximian.com>
7343
7344         * MdiClient.cs:  Only maximize the next child if the current one
7345         is maximized.
7346
7347 2006-06-13  Chris Toshok  <toshok@ximian.com>
7348
7349         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
7350         modified.  Also, guard against grid or grid_drawing being null in
7351         Invalidate.
7352
7353         * DataGrid.cs: Reformat tons of getters/setters.  In the
7354         DataMember setter, just call SetNewDataSource instead of
7355         duplicating some of its functionality.  In SetNewDataSource, don't
7356         check ListManager for null, since the property getter creates the
7357         object if needed.
7358
7359         * DataGridTableStyle.cs: don't set TableStyle or call
7360         SetDataGridInternal on the column here, it's done in
7361         GridColumnStylesCollection.Add.
7362
7363         * GridColumnStylesCollection.cs: fix all the explicit interface
7364         implementations to just call our methods.  Nuke AddInternal() and
7365         move the body of it to Add().  Also, add a call to
7366         column.SetDataGridInternal to Add().
7367
7368         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
7369         base()+duplicate code.  Also, use the Format property instead of
7370         format to generate an Invalidate ala MS.  Lastly, create the
7371         textbox here, unconditionally.
7372         (set_Format): call Invalidate.
7373         (get_TextBox): no need to call EnsureTextBox.
7374         (Commit): remove the message box.
7375         (Edit) remove the call to EnsureTextBox.
7376         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
7377         (EnterNullValue): no need to check textbox for null.
7378         (HideEditBox): no need to check textbox for null.
7379         (SetDataGridInColumn): add the textbox to the grid's controls.
7380         (EnsureTextBox): nuke.
7381         
7382 2006-06-13  Jackson Harper  <jackson@ximian.com>
7383
7384         * MdiWindowManager.cs: Hook up to the maximized menus paint event
7385         and redraw the buttons when needed. Unhook when the window is
7386         unmaximized.
7387         * MainMenu.cs: Add an internal Paint event, the mdi window manager
7388         needs this so that it can redraw its buttons when the menu is
7389         repainted.
7390         * InternalWindowManager.cs:
7391         * Form.cs: The method order has changed for DrawMaximizedButtons,
7392         so that it can be a PaintEventHandler.
7393         
7394 2006-06-13  Jackson Harper  <jackson@ximian.com>
7395
7396         * MdiClient.cs: When we close a maximized mdi window, the next mdi
7397         window is activated and maximized, even if it wasn't before.
7398         - When  a new window is activated repaint the decorations of the
7399         old one, so that it no longer has the Active "look" (the blue
7400         titlebar).
7401         * InternalWindowManager.cs: Open up CreateButtons to base classes
7402         so they can recreate the buttons on state changes.
7403         - If a window is maximized give it all three buttons
7404         * MdiWindowManager.cs: Create the titlebar buttons when the state
7405         is changed, this is needed because a toolwindow will not have all
7406         three buttons until it is maximized.
7407
7408 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
7409
7410         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
7411           Fixed bug #78609.
7412
7413 2006-06-12  Jackson Harper  <jackson@ximian.com>
7414
7415         * KeysConverter.cs: Make sure we handle the Ctrl special case
7416         if its the only key.
7417         
7418 2006-06-12  Jackson Harper  <jackson@ximian.com>
7419
7420         * Theme.cs: Add a method to get the size of a managed window
7421         toolbar button.
7422         * InternalWindowManager.cs: Remove the ButtonSize property, this
7423         should be retrieved from the theme.
7424         * MdiWindowManager.cs: Get the button size from the theme
7425         * ThemeWin32Classic.cs: Make the method to get the managed window
7426         titlebar button size public.
7427         - Handle the different button sizes of maximized toolwindows
7428         (should match any maximized window).
7429         - Get the titlebar height from the theme, not the WM (which gets
7430         it from the theme).
7431
7432 2006-06-12  Jackson Harper  <jackson@ximian.com>
7433
7434         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
7435         event down to the mdi window manager.
7436         - Expose some extra stuff to base classes
7437         - Make sure to end the Capture on an NC Mouse up, so that we can
7438         get double clicks properly, and the sizing doens't stick.
7439         - When doing PointToClient contain it in the workable desktop
7440         area, this prevents windows from changing size when the cursor is
7441         pulled outside of the working area while sizing.
7442         * MdiWindowManager.cs: When we get a double click maximize the
7443         window.
7444         - Reset the cursor after handling mode changes.
7445
7446 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
7447
7448         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
7449           current desktop, instead of just assuming a 0, 0 origin. This
7450           is needed for our internal window manager, to know the top
7451           margin of the desktop
7452
7453 2006-06-12  Chris Toshok  <toshok@ximian.com>
7454
7455         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
7456         we need this to get rid of the selected background in the bool
7457         column.
7458         (CancelEditing): move the ConcedeFocus call to above the Abort
7459         call.  Also, set is_changing to false and invalidate the row
7460         header if we were changing before.
7461         (ProcessKeyPreviewInternal): remove, since noone outside this
7462         class calls it anymore.  Roll the code into ProcessKeyPreview.
7463         (EndEdit): remove the internal version.
7464         (InvalidateCurrentRowHeader): make private.
7465
7466         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
7467         Keys.Escape handling (and with it the last call to
7468         DataGrid.EndEdit from outside the class.)
7469
7470
7471 2006-06-12  Chris Toshok  <toshok@ximian.com>
7472
7473         * DataGridTextBox.cs (.ctor): isedit defaults to false.
7474         (OnKeyPress): set isedit to true.
7475         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
7476         already handled by the grid.
7477
7478         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
7479         right.  ugh.
7480         (set_DataSource): SetDataSource always returns true, so stop
7481         putting it in an if statement.
7482         (EndEdit): get rid of some {}'s
7483         (ProcessGridKey): return true in case Keys.Escape.
7484         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
7485         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
7486         PositionChanged, stopped connecting to CurrentChanged.
7487         (GetDataSource): simplify this a bunch.
7488         (SetDataSource): change return type from bool to void.
7489         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
7490         to this, and make sure we don't set ListManager.Position inside
7491         set_CurrentCell.
7492         (OnListManagerItemChanged): if we're passed an actual index,
7493         redraw that row.
7494
7495         * CurrencyManager.cs (set_Position): don't call PullData here.
7496
7497 2006-06-09  Jackson Harper  <jackson@ximian.com>
7498
7499         * TreeNode.cs:  Recalculate the visible order before doing the
7500         Expand/Collapse Below calls, because those calls generate an
7501         expose.
7502         - Reduce calls to the TreeView property, which is mildly expensive
7503         by using a local var.
7504         * Form.cs: Layout the MDI child windows when creating the parent
7505         form.
7506         - Don't use the internal constructor anymore
7507         * MdiClient.cs: use the parent form width/height (if available)
7508         when laying out the child windows, we do this because the
7509         mdiclient isn't docked yet when the initial layout is done.
7510         - Don't need an internal constructor anymore.
7511
7512 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7513
7514         * FileDialog.cs: handle access errors when trying to create a folder
7515         or changing to a directory. No need to initialize out parameters.
7516
7517 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7518
7519         * FileDialog.cs: Append a number when creating a new folder if the
7520           folder already exists (use parenthesis instead of square brackets)
7521
7522 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7523
7524         * FileDialog.cs:
7525           - Disabled registry support for windows and added better registry
7526             error checking for other systems (need to investigate why it
7527             works perfectly on my system)
7528           - If a folder already exist show an error MessageBox instead of
7529             trying to create an indexed name.
7530           - Fixed a non intentional typo.
7531
7532 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7533
7534         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
7535
7536 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7537
7538         * FileDialog.cs: When creating a new folder don't crash if the
7539           folder already exists.
7540
7541 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7542
7543         * FileDialog.cs: Allmost a complete rewrite.
7544           - added a "virtual" file system that handles the differences
7545             between unix and windows file systems (especially the directory
7546             structure). Moved most of the directory and file handling code
7547             into the vfs.
7548             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
7549             UnixFileSystem and FSEntry.
7550           - Recently used folder/directory, size, location and used file names
7551             (file name ComboBox) are now stored in the registry and get read
7552             before the dialog shows up (fixes part 6 of bug #78446).
7553           - Creation of new folders/directories is now possible (context menu
7554             or ToolBar). Added TextEntryDialog for this that fills in the gap
7555             until ListView.LabelEdit works.
7556           - Fixed cursor handling (bug #78527) and focus handling for
7557             PopupButtonPanel
7558           - Various "Search in" ComboBox enhancements. The content of the
7559             dropdown listbox now almost matches ms.
7560           - Changed the behaviour when the user switches to SpecialFolder
7561             Recent to show the ListView in View.Details.
7562           - Beside using the ToolBar to change the View property of the
7563             file ListView it is now possible to use the context menu too.
7564
7565 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7566
7567         * ComboBox.cs: Don't create a new ObjectCollection when an item
7568           gets inserted. Just insert the item in the existing object_items
7569           ArrayList.
7570
7571 2006-06-08  Jackson Harper  <jackson@ximian.com>
7572
7573         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
7574         that the treeview and root node checks are done also, this fixes a
7575         regression i caused in the unit tests.
7576
7577 2006-06-07  Wade Berrier <wberrier@novell.com> 
7578
7579         * RichTextBox.cs: More ISO8859-1 -> unicode
7580
7581 2006-06-07  Mike Kestner  <mkestner@novell.com>
7582
7583         * ComboBox.cs : use items to hold highlight/selection so that
7584         collection insertions don't require synchronization.
7585
7586 2006-06-07  Jackson Harper  <jackson@ximian.com>
7587
7588         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
7589         routine.  We now always keep the sized edge at the cursor instead
7590         of computing movement and adjusting rects.  There is one buglet
7591         with this method though when the cursor is moved over area that
7592         the window can not expand too (such as the toolbars on the desktop).
7593
7594 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7595
7596         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
7597         here. Fixes crash on startup in AlbumSurfer.
7598
7599 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
7600
7601         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
7602           values
7603
7604 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7605
7606         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
7607         statement to avoid calling XNextEvent which will block if another thread
7608         took the event that we were expecting. Fixes bug #78605.
7609
7610 2006-06-07  Mike Kestner  <mkestner@novell.com>
7611
7612         * ListView.cs : isolated checkbox clicking from the selection logic.
7613         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
7614
7615 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7616
7617         * Form.cs: Check that the value passed to Form.DialogResult
7618         is a valid enum value.
7619
7620 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7621
7622         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
7623         Computer'. Clicking it in the network view goes to 'My Computer'.
7624         Added CIFS filesystem type. Display the mount point of filesystems.
7625         Avoid duplicate mount points (happens for me with CIFS);
7626
7627 2006-06-06  Jackson Harper  <jackson@ximian.com>
7628
7629         * InternalWindowManager.cs: Draw the maximized windows buttons
7630         when resizing.
7631
7632 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7633
7634         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
7635         all other dialogs. Fixes bug #78585.
7636
7637 2006-06-06  Mike Kestner  <mkestner@novell.com>
7638
7639         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
7640         Only invalidate checkbox on checkstate changes to avoid flicker.
7641         * ListBox.cs : avoid unselect/select when clicking selected item.
7642         avoid reselection flicker for already multiselected items.
7643         Fixes #78382.
7644
7645 2006-06-06  Jackson Harper  <jackson@ximian.com>
7646
7647         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
7648         the parent form so that the menu is removed if needed.
7649
7650 2006-06-06  Mike Kestner  <mkestner@novell.com>
7651
7652         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
7653         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
7654
7655 2006-06-06  Mike Kestner  <mkestner@novell.com>
7656
7657         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
7658
7659
7660 2006-06-06  Jackson Harper  <jackson@ximian.com>
7661
7662         * Control.cs: Use the property (instead of the field) to get the
7663         default cursor so it is instantiated correctly.
7664         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
7665         resizes so we need to manually repaint the window decorations here.
7666         - Set the titlebar button locations as soon as they are created,
7667         otherwise they are not set correctly on win32.
7668         
7669 2006-06-06  Chris Toshok  <toshok@ximian.com>
7670
7671         * CurrencyManager.cs (set_Position): call PullData before
7672         OnCurrentChanged.
7673         (AddNew): after calling IBindingList.AddNew, update our
7674         listposition, and call OnCurrentChanged/OnPositionChanged (without
7675         calling PullData).
7676         (OnCurrentChanged): remove the call to PullData from here.
7677         (OnItemChanged): remove the call to PushData from here.
7678         (OnPositionChanged): change the test from == null to != null to
7679         match the other methods.
7680         (ListChangedHandler): the grossest part of the patch.  Implement
7681         this such that it passes the unit tests in CurrencyManagerTest and
7682         the output more or less matches that of MS's implementation.
7683  
7684 2006-06-06  Mike Kestner  <mkestner@novell.com>
7685
7686         * ListView.cs : only update check state on single click.
7687         * ThemeWin32Classic.cs : fix focus drawing for details view without
7688         fullrowselect.  Fixes #78454.
7689         * XplatUIX11.cs : fix for double click emission.
7690
7691 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
7692
7693         * PropertyGridView.cs : Applied Atsushi's patch to fix
7694         font dialog bug  (#78197).
7695
7696 2006-06-05  Jackson Harper  <jackson@ximian.com>
7697
7698         * TreeNode.cs: Compute the next node for expanding/collapsing
7699         correctly. We now factor in nodes without a NextNode
7700         correctly. (Fixes somes cases in nunit-gui).
7701         * InternalWindowManager.cs: Set the bounds when updating the
7702         virtual position of a tool window.
7703         
7704 2006-06-05  Chris Toshok  <toshok@ximian.com>
7705
7706         * DataGrid.cs: rename cached_currencymgr to list_manager.
7707         (set_CurrentCell): move SetCurrentCell code here, and clean it up
7708         some.
7709         (CurrentRow, CurrentColumn): single accessors so we can make the
7710         cursor movement code a lot easier to understand.
7711         (CurrentRowIndex): implement this in terms of CurrentRow.
7712         (BeginEdit): clean this up a bit.
7713         (CancelEditing): sort out the is_editing/is_changing/is_adding
7714         stuff a little.
7715         (EndEdit): minor changes.
7716         (OnKeyDown): add a comment about a (most likely) unnecessary
7717         check.
7718         (OnMouseDown): cancel editing when we click on a row header.  And
7719         use the CurrentRow setter, not CurrentCell.
7720         (ProcessDialogKey): directly call ProcessGridKey.
7721         (UpdateSelectionAfterCursorMove): factor out this common block of
7722         code (it's used everywhere that we move the cursor by updating row
7723         or column).
7724         (ProcessGridKey): pretty substantial overhaul.  Use the
7725         CurrentRow/CurrentColumn properties to make the code a lot more
7726         readable.  Only use the CurrentCell property when we have to
7727         modify both row and column at once.  Tab behavior is still broken,
7728         and Delete is untested.
7729         (Select): if we have no selected rows, set selection_start to
7730         @row.
7731         (EditCurrentCell): rename EditCell this.  It was only ever invoked
7732         with CurrentCell as the arg, so drop the arg and rename it.
7733
7734         * DataGridColumnStyle.cs: clean up the constructors a little, and
7735         drop CommonConstructor().
7736
7737         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
7738         actually get notified when the user hits it.
7739         (ProcessKeyMessage): *substantially* simplify this method.
7740         There's no reason (that I can see) for the textbox to be making
7741         calls into the datagrid at all.  Remove all of them but the ones
7742         for Enter handling.  those will take some more work.
7743
7744         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
7745         calling HideEditBox.
7746         (HideEditBox): if we have an active textbox, render it invisible
7747         without causing a re-layout of the datagrid.
7748
7749 2006-06-05  Mike Kestner  <mkestner@novell.com>
7750
7751         * ListView.cs : fix NRE crasher when focuseditem is cleared by
7752         collection changes by resetting it to Items[0].  Fixes #78587.
7753
7754 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7755
7756         * MessageBox.cs: if the height of the text is larger than the icon_size,
7757         use that. Fixes bug #78575.
7758
7759 2006-06-05  Jackson Harper  <jackson@ximian.com>
7760
7761         * TreeView.cs: Fix line drawing when scrolling.  To do this each
7762         node is basically responsible for drawing its entire horizontal
7763         area.  When drawing a node it draws its parent node lines if
7764         needed.
7765         - Adjust the clip area to the viewport rectangle
7766         - Fix Left/Right key handling to match MS. (It expand/collapses
7767         and moves to parents/first child but does not move selection to
7768         sibling nodes).
7769         - Fix SetTop to work with new bound calculation code
7770         - When scrollbars are no longer needed we need to reset scrolling
7771         vars and recalculate the visible order so the redraw is correct
7772         * TreeNode.cs: We can't expand/collapse nodes with no children.
7773
7774 2006-06-03  John Luke  <john.luke@gmail.com> 
7775
7776         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
7777         so the colors work without dev packages
7778         
7779 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
7780
7781         * Control.cs 
7782           - Select: Implemented to just use activate. Seems to match MS 
7783             behaviour closest. Documented to only do actual control walking 
7784             based on it's parameters if in a container control so I moved 
7785             the code there.
7786           - Removed selection check logic from our internal Select() method
7787         * ContainerControl.cs:
7788           - Select: Moved selection logic from Control here, since MS documents
7789             that containers obey the bool arguments. No longer calling base
7790
7791 2006-06-02  Jackson Harper  <jackson@ximian.com>
7792
7793         * TreeView.cs: If the selected node isn't changed when we get
7794         focus update the previously selected node so that we see the
7795         selection box.
7796
7797 2006-06-02  Mike Kestner  <mkestner@novell.com>
7798
7799         * ComboBox.cs: restructure grab and general mouse event handling.
7800         Make the composite control raise mouse events like it was a single
7801         control for leaves/enters/motion/up/down events.  fix dropdown list
7802         coordinate mangling and refactor it into the scrollbar subclass to
7803         reduce code duplication.  Fixes #78282 #78361 and #78457.
7804
7805 2006-06-02  Mike Kestner  <mkestner@novell.com>
7806
7807         * ScrollBar.cs: remove Capture setting/clearing, as it happens
7808         automatically in the Control.WndProc.
7809
7810 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7811
7812         * FileDialog.cs: fix crash when running SharpChess, which sets the
7813         FilterIndex to 2 with only one Filter.
7814
7815 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7816
7817         * ToolBar.cs: add SizeSpecified property.
7818         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
7819         try to figure out our real size, otherwise fallback to what the
7820         container says.
7821
7822 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7823
7824         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
7825         * Control.cs (WndProc): MS always calls the DefWndProc to pass
7826           up the event
7827
7828 2006-06-01  Mike Kestner  <mkestner@novell.com>
7829
7830         * ListView.cs: revamp the focus management in ListView.  It still
7831         causes churn of LostFocus/GotFocus emissions on clicks, but it's
7832         better than not handling focus at all.  Will revisit when pdb feels
7833         the general focus handling is solid.  Fixes #78526.
7834
7835 2006-06-01  Jackson Harper  <jackson@ximian.com>
7836
7837         * TreeView.cs: Set the default border style in the constructor.
7838         - Move painting to use OnPaintInternal instead of capturing
7839         WM_PAINT, this is the correct way of doing things
7840         - UpdateBelow shouldn't invalidate the scrollbar area
7841         - Cap the top on update below in case the node was above the top
7842         of the viewport rectangle.
7843         - ExpandBelow and Collapse below need to obey Begin/End Update.
7844         * TreeNode.cs: Make is_expanded internal so the treenode
7845         collection can change it without firing the whole event chain.
7846         * TreeNodeCollection.cs: When clearing all the child nodes make
7847         sure to recalc the visible order.
7848         - Improve algo for remove the top node
7849
7850 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7851
7852         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
7853           SendMessage directly calling window procedures, which in turn might
7854           call SetFocus()
7855
7856 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
7857
7858         * Control.cs: Don't handle WM_SETFOCUS if the same window already
7859           has focus (works around X11 sending a FocusIn after our SetFocus)
7860         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
7861
7862 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
7863
7864         * Mime.cs: Fix for the NET_2_0 build.
7865           NameValueCollection needs StringComparer now.
7866
7867 2006-05-31  Chris Toshok  <toshok@ximian.com>
7868
7869         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
7870         return (via an out parameter) the starting X of the column.
7871         (UpdateVisibleColumn): track change to FromPixelToColumn.
7872         (HitTest): add a ColumnResize case here.
7873         (DrawResizeLine): new function, probably poorly named.
7874
7875         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
7876         only need to keep one reference.
7877         (set_ListManager): same.
7878         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
7879         Also, add support for HitTestType.ColumnResize.
7880         (OnMouseMove): add column resize behavior here, and change the
7881         cursor to the correct one as we move around the datagrid.
7882         (OnMouseUp): terminate the column resize if we're resizing.
7883         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
7884         for the current cell.
7885         (ConnectListManagerEvents): use cached_currencymgr.
7886         (DisconnectListManagerEvents): fill this in, using
7887         cached_currencymgr.
7888         (SetCurrentCell): remove cached_currencymgr_events handling.
7889         (SetDataMember): only call DisconnectListManagerEvents if
7890         cached_currencymgr is != null.
7891         (SetDataSource): same.
7892         (OnListManagerCurrentChanged): cached_currencymgr_events ->
7893         cached_currencymgr.
7894
7895 2006-05-31  Jackson Harper  <jackson@ximian.com>
7896
7897         * BindingManagerBase.cs: Remove somedebug code that creeped into
7898         SVN.
7899         * TreeNode.cs: We get the indent level dynamically right now, so
7900         don't track it as a member.
7901         * TreeNodeCollection.cs: Make sure all nodes added to the list
7902         have parents, treeviews/topnodes setup properly.
7903         - Don't attempt to track indent level.
7904
7905 2006-05-30  Jackson Harper  <jackson@ximian.com>
7906
7907         * BindingContext.cs: Create the currency manager tables here.
7908         This allows us to more easily create null tables (when bad data
7909         members are used), and more easily create related currency
7910         managers.
7911         * CurrencyManager.cs: All the table creation stuff is done by the
7912         binding context now.
7913         - Current should throw an exception if listposition is -1.
7914         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
7915         been bound yet.
7916
7917 2006-05-30  Mike Kestner  <mkestner@novell.com>
7918
7919         * ListView.cs: allow reexpansion of zero-width column headers.
7920         Fixes #78528.
7921
7922 2006-05-28  Chris Toshok  <toshok@ximian.com>
7923
7924         * CurrencyManager.cs (get_Current): after the late binding
7925         listposition = -1 fix, we need to guard against it here and return
7926         null, otherwise we raise an exception (which is swallowed
7927         elsewhere, and breaks datagrid databinding.)
7928
7929 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7930
7931         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
7932           than WM_SYSKEY, don't throw if get something unexpected (#78507)
7933
7934 2006-05-26  Jackson Harper  <jackson@ximian.com>
7935
7936         * ControlPaint.cs:
7937         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
7938         values, it's faster and it's all we care about (we don't care if
7939         the names aren't equal).
7940         * KeyboardLayouts.cs: Eliminate some dead code.
7941         - Lazy init things
7942         * X11Keyboard.cs: Lazy init keyboard detection.
7943         - Cleanup access modifiers a little.
7944
7945 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7946
7947         * XplatUIX11.cs: Once again, attempting to get layout just right.
7948
7949 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
7950
7951         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
7952           the sizes of each link section, that will result in sizes that
7953           match DrawString's layout (Fixes #78391)
7954
7955 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
7956
7957         * FileDialog.cs: If AddExtension property is true autocomplete the
7958           extensions in SaveFileDialog correctly. Fixes bug #78453.
7959           Set MyNetwork and MyComputer to "C:\" for windows. This should
7960           fix part 8 of bug #78446 for now.
7961
7962 2006-05-26  Chris Toshok  <toshok@ximian.com>
7963
7964         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
7965         invalidate the current row header if we need to, but presumably
7966         we'll invalidate the row corrsponding to the bounds or
7967         editingControl.
7968         (GridHScrolled): switch back to this method, as it's part of the
7969         public api.  *sigh*.
7970         (GridVScrolled): same.
7971         (OnMouseWheel): hack up something that more or less works.  Call
7972         GridHScrolled/GridVScrolled directly, instead of duplicating much
7973         of their code here.
7974         (EnsureCellVisibility): reinstate a bunch of this code, since we
7975         can't just set the scrollbar Value and expect to do all the work
7976         in the ValueChanged handler.  Also, Call Update() after scrolling
7977         in one direction so the other XplatX11.ScrollWindow call has the
7978         proper stuff in the proper places.
7979         (EditCell): set is_editing to true before calling .Edit.
7980
7981         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
7982         don't bother comparing first.
7983         (OnKeyPress): call grid.ColumnStartedEditing before calling
7984         base.OnKeyPress.  this will set is_changing and invalidate the row
7985         header if necessary.
7986         (ProcessKeyMessage): for WM_CHAR messages, call
7987         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
7988         and WM_KEYDOWN.
7989         
7990         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
7991         it's done in the DataGrid.
7992         (NextState): call grid.ColumnStartedEditing, which takes care of
7993         invalidating the row header (and setting is_changing).
7994
7995         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
7996         here.  it's done in the DataGrid.
7997
7998 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7999
8000         * Control.cs: allow changing the cursor when the mouse position is
8001         out of bounds but Capture is set.
8002         * LinkLabel.cs: handle the case when the mouse button is pressed on the
8003         linklabel but released somewhere else.
8004
8005 2006-05-25  Jackson Harper  <jackson@ximian.com>
8006
8007         * TreeView.cs: When we get focus if there is no selected node make
8008         it the top node
8009         - Remove some uneeded setup code from Draw.
8010         * TreeNodeCollection.cs: If the tree doesn't have a top node when
8011         a new node is inserted make the new node the top.
8012         * XplatUIX11.cs:
8013         * Timer.cs: Use Utc time so that no local time zone stuff needs to
8014         be used (should be faster).
8015         
8016 2006-05-25  Chris Toshok  <toshok@ximian.com>
8017
8018         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
8019         problem with the last commit.
8020
8021 2006-05-25  Chris Toshok  <toshok@ximian.com>
8022
8023         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
8024         need the invalidate call here, while scrolling right-to-left via
8025         the left arrow key (i.e. moving the editing cell while scrolling).
8026
8027         * DataGrid.cs (.ctor): remove the initialization of
8028         ctrl_pressed/shift_pressed.  We no longer track them using key
8029         up/down handlers, but by using Control.ModifierKeys.  Also, switch
8030         to using ValueChanged handlers on the scrollbars instead of
8031         Scrolled event handlers.  This simplifies a bunch of the scrolling
8032         code.
8033         (GridHValueChanged): rename from GridHScrolled, and change it to
8034         work with the new event args.
8035         (GridVValueChanged): same.
8036         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
8037         (OnMouseWheel): actually scroll the datagrid.  Don't change the
8038         selected cell.
8039         (ProcessGridKey): correct all the keyboard navigation stuff I
8040         could find.  Ctrl up/down/left/right/home/end work now.
8041         (EnsureCellVisibility): correct method name spelling.  Also,
8042         simplify this a touch by not explicitly calling the
8043         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
8044         scrollbar value.
8045         (OnKeyUpDG): no need for this method now.
8046         
8047 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8048
8049         * LinkLabel.cs: display the OverrideCursor when hovering the label.
8050         Fixes bug #78392.
8051
8052 2006-05-25  Chris Toshok  <toshok@ximian.com>
8053
8054         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
8055         r61019.
8056
8057 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8058
8059         * Application.cs: Moved setting of is_modal and closing to before
8060           we create the control, to allow the event handlers called as a
8061           result of creation affect closing. Also removed Gonzalo's previous
8062           change to setting DialogResult, the behaviour has been moved to 
8063           Form.ShowDialog()
8064         * Form.cs: 
8065           - ShowDialog(): Removed explicit creation of the form, let RunLoop
8066             handle it instead
8067           - ShowDialog(): If no dialog result is set, we need to return Cancel
8068           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
8069             the close is cancelled
8070
8071 2006-05-25  Jackson Harper  <jackson@ximian.com>
8072
8073         * StatusBar.cs: We only need to update the sizes of the other
8074         panels when we have auto size contents.  Also we are only updating
8075         the contents of the panel, not the borders, so compensate for the
8076         border width (TODO: get this width from the theme somehow).
8077         * TreeView.cs: Scrollable is true by default
8078         - Use invalidate instead of refresh where needed
8079         - Factor the scrollable value into scrollbar updating
8080         - Update the scrollbars if the Scrollable property is altered
8081         - Update the selected node if its ImageIndex is changed
8082         - Handle null nodes in UpdateNode (mainly so we don't have to
8083         check if selected is null when updating it
8084         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
8085         are factored into the visible count
8086         - Use VisibleCount for clarity in the code
8087         - When the font is changed we need to recurse through all the
8088         nodes and invalidate their sizes
8089         
8090 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8091
8092         * Application.cs: set the DialogResult to fixed when the main form is
8093         hidden or destroyed while being modal.
8094
8095 2006-05-25  Miguel de Icaza  <miguel@novell.com>
8096
8097         * Theme.cs: Use Tangoified messagebox icons. 
8098
8099         (GetSizedResourceImage): Also cope with width = 0 and do not
8100         trigger a warning in that case (0 means "give me your icon from
8101         the resouce, no special size needed).
8102
8103 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8104
8105         * Application.cs: Leave runloop if the the main modal form is 
8106           hidden (fixes #78484)
8107
8108 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8109
8110         * BindingContext.cs : reject null datasource in Contains() and
8111           Item[].
8112         * CurrencyManager.cs : check data_member validity when data_source
8113           is dataset. When it is late binding, the initial position is -1.
8114
8115 2006-05-24  Jackson Harper  <jackson@ximian.com>
8116
8117         * TreeNodeCollection.cs: Dont't recalculate the visible order on
8118         inserted nodes that aren't visible.  This changes the
8119         max_visible_order which confuses scrollbar settings.
8120         - Use the enumerator to get the prev node instead of duplicating
8121         code.
8122         * TreeView.cs: Use new method for setting scrollbar values
8123         - Don't set the bounds every time the scrollbar is updated
8124         - When updating below the root node use an invalidate instead of a
8125         refresh to prevent the child controls (scrollbars) from being
8126         refreshed. (UpdateBelow still needs to be reworked anyways).
8127         - Reenable SetBottom now that visible orders are set correctly,
8128         added some debug code incase we ever get bad values there again.
8129         - Set the scrollbar max to 2 less then the max value, this
8130         compensates for the max value being one above the node count, and
8131         for scrollbars adding one extra "notch".
8132         - When drawing image nodes if there is an imagelist we draw the
8133         first image in the list if the supplied image index is out of the
8134         image list's bounds.
8135         
8136 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8137
8138         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
8139           we receive a size change from the WM (Fixes #78503)
8140
8141 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
8142
8143         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
8144           rectangle (Fixes #78501)
8145
8146 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8147
8148         * ButtonBase.cs: 
8149           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
8150             as a bitfield.
8151           - Fixed MouseMove to no longer switch pressed state unless the left
8152             mouse button is pressed. Atsushi provided the original patch (#78485)
8153           
8154 2006-05-24  Jackson Harper  <jackson@ximian.com>
8155
8156         * ScrollBar.cs: New internal methods that allow us to change a
8157         couple values on the scrollbar (the most common case is maximum
8158         and large change) without getting multiple invalidates.
8159
8160 2006-05-24  Chris Toshok  <toshok@ximian.com>
8161
8162         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
8163         (Edit): save off the original state in oldState, and set
8164         grid.is_editing to true.
8165         (OnKeyDown): abort editing if escape is pressed.  also, call
8166         NextState if space is pressed.
8167         (OnMouseDown): call NextState.
8168         (NextState): factor out shared code from OnKeyDown and OnMouseDown
8169         here.  Also, only invalidate the row header once (on the initial
8170         is_changing switch) to save on redraws.
8171
8172 2006-05-24  Chris Toshok  <toshok@ximian.com>
8173
8174         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
8175         if the value in the cell is different than it was before.  This
8176         keeps us from triggering a layout when we move around a datarid
8177         with a highlighted cell.
8178         (Edit): suspend layout when creating/positining the text box, and
8179         resume passing false so we don't ever actually re-layout.
8180         (ReleaseHostedControl): same.
8181         (EnsureTextBox): reformat slightly, and set WordWrap to false.
8182
8183         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
8184         control-key sequences should go to the datagrid - remove that
8185         lock.  Also, modify the conditions under which we move between
8186         cells when moving the cursor within a cell, and remove the "this"
8187         and "base" from field accesses.  We weren't even consistent, given
8188         they all were in the base class.
8189
8190 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
8191
8192         * Binding.cs : (.ctor)
8193           An obvious NRE fix for BindingTest.CtorNullTest().
8194
8195 2006-05-23  Chris Toshok  <toshok@ximian.com>
8196
8197         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
8198         them between lines.  This fixes some quirks editing cells in the
8199         datagrid.
8200
8201 2006-05-23  Jackson Harper  <jackson@ximian.com>
8202
8203         * TreeView.cs: Use begin/end update when doing expand/collapse all
8204         so that we don't get flicker on the scrollbar.
8205
8206 2006-05-23  Jackson Harper  <jackson@ximian.com>
8207
8208         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
8209         treenode calculations to be independant of the painting code. To
8210         do this nodes track a visible order which is calculated by the
8211         treeview.
8212         - Call new methods for expanding/collapsing nodes.  These methods
8213         use scrollwindow so we don't have to update everything below the
8214         node.
8215         * TreeView.cs: Refactored drawing and scrolling code.  We don't
8216         need to update nodes when drawing anymore or calculate scrollbar
8217         stuff.
8218         - Added new methods for expanding/collapsing nodes. These methods
8219         use ScrollWindow so as to not have to redraw all the nodes below.
8220         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
8221         we add/remove nodes or sort.
8222         - Handle removing the selected and the top node properly.
8223
8224 2006-05-23  Chris Toshok  <toshok@ximian.com>
8225
8226         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
8227         maybe this should actually happen in the datagrid code?
8228         (EndEdit): no need to invalidate anything, given that
8229         ReleaseHostedControl causes the datagrid to relayout, which
8230         invalidates everything anyway.
8231
8232         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
8233         in SetCurrentCell).
8234         (set_SelectionBackColor): call InvalidateSelection instead of
8235         Refresh.
8236         (set_SelectionForeColor): same.
8237         (BeginEdit): Flesh this out a bit.
8238         (CancelEditing): only do any of this if we're editing/adding.
8239         (EndEdit): same.
8240         (OnMouseDown): there's no need to cancel editing here, it's done
8241         in SetCurrentCell.
8242         (SetCurrentCell): only invalidate the current row header if it's a
8243         different row than the new one.
8244         (ShiftSelection): fix this to work like MS does.
8245         (ResetSelection): factor out the invalidation of selected_rows to
8246         InvalidateSelection.
8247         (SetDataSource): cancel any editing that's going on.
8248
8249         * DataGridColumnStyle.cs
8250         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
8251         call the non-interface version.
8252
8253         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
8254         header rectangle with the clip rectangle so we don't redraw the
8255         entire header for just a small area.  Gets rid of the last flicker
8256         when horizontally scrolling.
8257         (DataGridPaintRow): same.
8258
8259 2006-05-23  Mike Kestner  <mkestner@novell.com>
8260
8261         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
8262         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
8263         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
8264         Critical bug report.
8265
8266 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8267
8268         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
8269           and this fixes #78493
8270
8271 2006-05-23  Miguel de Icaza  <miguel@novell.com>
8272
8273         * Theme.cs (GetSizedResourceImage): Scale images if the proper
8274         size is not found.  
8275         
8276         * FileDialog.cs: Do not change the background for the side bar as
8277         it wont work nicely with the theme, and also reduces the artifacts
8278         in rendering the icons (which I want to fix too).
8279
8280         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
8281         resources, not resgen resources. 
8282
8283         (PlatformDefaultHandler): Pull images using the new API.
8284
8285 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8286
8287         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
8288           a reference to the hwnd and will not remove it unless there are
8289           no pending exposures (fixes #78341)
8290         * XplatUI.cs: Improved debug
8291
8292 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
8293
8294         * MenuAPI.cs : don't handle OnClick event when it was not the left
8295           button. Fixed bug #78487.
8296
8297 2006-05-23  Mike Kestner  <mkestner@novell.com>
8298
8299         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
8300         prefer submenus to the top menu for item lookup, to avoid popping down
8301         top-row items.
8302
8303 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
8304
8305         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
8306           Graphics.FillRectangle as the visual results are really bad (even
8307           on win). We now draw perfect arrows (and perfect shadows when the
8308           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
8309           Pen.DashPattern to draw the dots of each line.
8310
8311 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
8312
8313         * FileDialog.cs: Update the filename combobox when navigating through
8314           the ListView with the cursor keys. Fixes part 7 of bug #78446.
8315
8316 2006-05-22  Mike Kestner  <mkestner@novell.com>
8317
8318         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
8319         Fixes #78463.
8320
8321 2006-05-22  Mike Kestner  <mkestner@novell.com>
8322
8323         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
8324         requests. Fix a misspelled parameter and a copy paste exception error
8325         in Select.
8326
8327 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
8328
8329         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
8330           to get the same width/height (5/13) on X11 as the default font has on
8331           win32. This means that our DefaultFont emSize is smaller than the 
8332           the MS SWF equivalent (even thought the width/height stays the same)
8333
8334 2006-05-20  Jackson Harper  <jackson@ximian.com>
8335
8336         * MdiClient.cs:
8337         * MdiWindowManager.cs:
8338         * InternalWindowManager.cs: Make sure to use the border width from
8339         the theme.
8340
8341 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
8342
8343         * PrintDialog.cs: Implements printer details
8344
8345 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
8346
8347         * FileDialog.cs: Added focus handling for PopupButtonPanel.
8348           Fixes part 1 and 2 of bug #78446
8349
8350 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
8351
8352         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
8353           instead of sticking to the first ever calculated value
8354
8355 2006-05-19  Mike Kestner  <mkestner@novell.com>
8356
8357         * ComboBox.cs: fix mouse motion selection to use MousePosition and
8358         PointToClient, since Capture is set. Fixes #78344.
8359
8360 2006-05-19  Mike Kestner  <mkestner@novell.com>
8361
8362         * ListView.cs: match MS behavior in Details view where items are not
8363         drawn if Columns.Count == 0. 
8364         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
8365         Use a separate pen to draw the check, since changing the width affects
8366         the box as well.  Fixes #78454.
8367
8368 2006-05-18  Miguel de Icaza  <miguel@novell.com>
8369
8370         * ListView.cs: ArgumentOutOfRangeException, single versions of the
8371         exception should throw the name of the invalid argument.
8372
8373         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
8374         there are no files listed. 
8375
8376 2006-05-18  Jackson Harper  <jackson@ximian.com>
8377
8378         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
8379         up.
8380
8381 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8382
8383         * Control.cs: Brought back our old UpdateZOrder method as a private
8384           function and switched our calls from UpdateZOrder to the new one.
8385           This fixes the Paint.Net canvas disappearing bug.
8386
8387 2006-05-18  Jackson Harper  <jackson@ximian.com>
8388
8389         * Theme.cs:
8390         * ThemeWin32Classic.cs:
8391         * InternalWindowManager.cs: Move the drawing into the theme,
8392         expose everything the theme should need from the window manager.
8393
8394 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8395
8396         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
8397           from the call to NativeWindow to avoid walking up the parent chain
8398           further than needed (speeds up setting cursors and avoids setting
8399           the wrong cursor if a parent has another cursor defined)
8400         * Cursor.cs: When loading an icon as cursor, MS uses the center of
8401           the icon as hotspot, not what's contained as hotspot in the icon
8402           file. This fixes the perceived drawing offset seen with Paint.Net
8403         
8404 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8405
8406         * XplatUIX11.cs: 
8407           - Store the calculated rectangle in Hwnd object and use it when 
8408             setting the client size
8409           - Force Toolwindows to always be type Dock, to ensure they're on top
8410
8411 2006-05-18  Mike Kestner  <mkestner@novell.com>
8412
8413         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
8414         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
8415         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
8416         Substantial refactoring to remove confusing nested classes. Coding
8417         standard and Get+Set->property refactorings.  Shift to index based
8418         highlighting in ComboListBox instead of constantly using IndexOf and
8419         Items[]. Add invalidations on resize for DropDownList to fix ugliness
8420         in FileDialog growth.  Draw borders manually since Simple mode needs
8421         to look like two independent controls.  Make listbox border
8422         conditional to DropDownStyle.  Improved OwnerDraw support.
8423
8424 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
8425
8426         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
8427         Don't set the disposed graphics to null, so we can throw the "right"
8428         exception if the graphics is reused later (added a flag to avoid 
8429         double disposing). Some behaviours are different under 2.0 and are
8430         filled under bug #78448.
8431
8432 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8433
8434         * Control.cs: When double-buffering is enabled, we need to reset
8435           our graphics context between paint calls. Otherwise, any 
8436           transformations and other alterations on the context will 
8437           become cumulative (#77734)
8438
8439 2006-05-18  Mike Kestner  <mkestner@novell.com>
8440
8441         * ListView.cs: do focused item selection like MS on clicks. 
8442         Rework focus handling for ItemControl so LostFocus invalidates as
8443         well.
8444         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
8445         the ListView ItemControl has focus.
8446
8447 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
8448
8449         * XplatUIX11.cs: If client_window ends up being width or height zero
8450           due to border settings, move it off window inside whole_window (#78433)
8451
8452 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8453
8454         * Mime.cs: Shrink the mime file cache correctly.
8455
8456 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8457
8458         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
8459
8460 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8461
8462         * XplatUIX11.cs (AddExpose): More sanity checks
8463
8464 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8465
8466         * XplatUIX11.cs:
8467           - AddExpose: Don't add expose ranges outside the size of our
8468             window
8469           - Cast opacity values to Int32 to avoid crashes with certain
8470             values
8471           - Added disabled code paths that protect against illegal cross-
8472             thread painting (Developers.exe)
8473
8474 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8475
8476         * ProgressBar.cs: Invalidate the control when it's resized
8477           since block size is based on control size. (#78388)
8478
8479 2006-05-16  Miguel de Icaza  <miguel@novell.com>
8480
8481         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
8482         of setting the incoming argument to the "reset" value, we set the
8483         this.datamember to string.empty (before we were invalidating the
8484         incoming data).   
8485
8486         Fixes 78420
8487
8488 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8489
8490         * Form.cs: Only apply transparency settings after the form
8491           is created. (Fixes #77800)
8492
8493 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8494
8495         * ApplicationContext.cs: Grab the HandleDestroyed event so
8496           we know when to fire OnMainFormClosed 
8497
8498 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8499
8500         * Application.cs: Introduced sub-class to allow tracking of
8501           threads and centralized triggering of the event mess for
8502           ThreadExit, AppExit, etc..  (#76156)
8503
8504 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
8505
8506         * MimeIcon.cs:
8507           - Do not return a null icon index value for a mime subclass.
8508             Instead try the main mime type class too.
8509           - Seems that some newer distributions don't have a link to some
8510             gnome default icons anymore. So check the default gnome dir too.
8511           
8512
8513 2006-05-16  Jackson Harper  <jackson@ximian.com>
8514
8515         * MdiClient.cs: Don't paint the parent background image if we have
8516         our own background image.
8517
8518 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8519
8520         * Control.cs:
8521           - PerformLayout: Do not shrink space filled by DockStyle.Fill
8522             controls, all filled controls are supposed to overlap (#78080)
8523           - UpdateZOrder is supposed to update the control's z-order in the
8524             parent's z-order chain. Fixed to behave like that
8525           - BringToFront: Removed obsolete code
8526           - SendToBack: Simplyfied
8527           - SetChildIndex: Trigger layout calculations when Z-order changes
8528             since layout is done by z-order
8529
8530 2006-05-16  Chris Toshok  <toshok@ximian.com>
8531
8532         [ fixes bug #78410 ]
8533         * DataGrid.cs (set_AlternatingBackColor): use
8534         grid_drawing.InvalidateCells instead of Refresh().
8535         (set_BackColor): call grid_drawing.InvalidateCells.
8536         (set_BackgroundColor): use Invalidate instead of Refresh.
8537
8538         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
8539         invalidate the cell area.
8540
8541 2006-05-15  Chris Toshok  <toshok@ximian.com>
8542
8543         [ fixes bug #78011 ]
8544         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
8545         on to DataGridPaintRow.
8546         (DataGridPaintRow): take a clip argument, and only draw the cells
8547         which intersect it.  same with the not_usedarea.
8548
8549         * Theme.cs (DataGridPaintRow) add @clip parameter.
8550
8551         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
8552         XplatUI.ScrollWindow.
8553         (ScrollToRow): same.
8554
8555         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
8556         with last column which was causing a gray swath to appear with the
8557         XplatUI.ScrollWindow code.
8558
8559 2006-05-15  Chris Toshok  <toshok@ximian.com>
8560
8561         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
8562         use XplatUI.ScrollWindow.
8563         (VerticalScrollEvent): use XplatUI.ScrollWindow.
8564
8565 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
8566
8567         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
8568
8569 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8570
8571         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
8572           file since there are no equivalent X11 cursors
8573
8574 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8575
8576         * MonthCalendar.cs : DateTimePicker should reflect selected date
8577           on mouse*up*, not mouse*down*. Fixed originally reported part of
8578           bug #76474.
8579
8580 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8581
8582         * TabControl.cs : When argument index is equal or more than tab
8583           count, just ignore. Fixed bug #78395.
8584
8585 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8586
8587         * Control.cs: Dispose all child controls when control is diposed (#78394)
8588
8589 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8590
8591         * ColorDialog.cs: Finally it is possible to select the color with
8592           the text boxes
8593
8594 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8595
8596         * PrintDialog.cs: Fix typo
8597
8598 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8599
8600         * PrintDialog.cs: PrintDialog is not resizable
8601         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
8602           color. Made some ToolBar drawing methods protected virtual.
8603
8604 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
8605
8606         * PrintDialog.cs: Implementation of the PrintDialog
8607
8608 2006-05-12  Chris Toshok  <toshok@ximian.com>
8609
8610         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
8611         thumb, instead use MoveThumb.  This has the side effect of making
8612         most of the other thumb moving machinery use MoveThumb as well.
8613         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
8614         need to actually invalidate the rectangle where the new thumb will
8615         go.
8616         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
8617         We force an Update() after, so it's not as fast as it could be,
8618         but at least there's zero flicker and no droppings.
8619         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
8620         (UpdateThumbPos): add another argument (dirty), which says whether
8621         or not to calculate/add dirty regions which we later invalidate.
8622         For cases where we know we're going to use MoveThumb, we pass
8623         false for this.  Otherwise, pass true.
8624
8625 2006-05-12  Jackson Harper  <jackson@ximian.com>
8626
8627         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
8628         the status bar.
8629         
8630 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
8631
8632         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
8633           and GetClipRegion methods and UserClipWontExposeParent property.
8634         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
8635           overriding UserClipWontExposeParent property, setting to false, since
8636           Win32 handles the required expose messages to draw our clipped parent
8637           areas internally
8638         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
8639           PaintEventStart to set the user clip region if set.
8640         * Control.cs: 
8641           - Now internally tracking the Region for the control since we need to
8642             store it if the handle is not yet created and only set it when it
8643             becomes created. Before setting the region forced handle creation
8644           - Added code to draw the parents underneath a user-clipped region
8645         * Hwnd.cs: Added UserClip property
8646
8647 2006-05-12  Chris Toshok  <toshok@ximian.com>
8648
8649         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
8650         (set_Maximum): same.
8651         (set_Minimum): same.
8652         (set_SmallChange): same.
8653         (OnMouseUpSB): remove the call to refresh when releasing the
8654         thumb.  We shouldn't need it.
8655         
8656 2006-05-12  Miguel de Icaza  <miguel@novell.com>
8657
8658         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
8659         AutoSize set to None, we do not need to relayout everything, we
8660         just need to invalidate the current region.
8661
8662         (Draw): Do not draw the entire ClientArea, just redraw the
8663         clip area being passed.
8664
8665         * MdiClient.cs: Make MdiClient constructor with the Form argument
8666         internal. 
8667
8668 2006-05-12  Jackson Harper  <jackson@ximian.com>
8669
8670         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
8671         parents background image,  but strangely not their own.
8672         - (DrawStatusBarPanel): Take into account horizontal alignment
8673         when drawing the strings and icons.
8674
8675 2006-05-12  Mike Kestner  <mkestner@novell.com>
8676
8677         * ListBox.cs: avoid invalidations for focus when the collection is
8678         empty. 
8679
8680 2006-05-12  Chris Toshok  <toshok@ximian.com>
8681
8682         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
8683         invalidate the entire thumb area.  Call InvalidateDirty which
8684         limits the redraw to the thumb itself and surrounding pixels.
8685
8686         * XplatUIX11.cs (ScrollWindow): optimize copying.
8687         
8688 2006-05-12  Chris Toshok  <toshok@ximian.com>
8689
8690         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
8691         Figure out the positioning/layout in a single pass instead of
8692         multiple recursive invocations.  Speeds up the initial display of
8693         the data grid.  Also, make many things private that were
8694         originally public but unused outside this class.
8695
8696 2006-05-11  Jackson Harper  <jackson@ximian.com>
8697
8698         * MdiClient.cs: Improved layout code.
8699
8700 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
8701
8702         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
8703           not SelectedObject.
8704
8705 2006-05-11  Chris Toshok  <toshok@ximian.com>
8706
8707         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
8708         union of that will always be {0,0,width,height}.
8709
8710 2006-05-11  Jackson Harper  <jackson@ximian.com>
8711
8712         * Form.cs: Match MS's DefaultSize for forms (they must have
8713         changed the size in sp2).
8714
8715 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8716
8717         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
8718
8719 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8720
8721         * TextControl.cs : Fixed bug #78109. This incorrect position
8722           comparison caused crash on automatic line split.
8723         * TextBoxBase.cs : reduce duplicate code.
8724
8725 2006-05-10  Jackson Harper  <jackson@ximian.com>
8726
8727         * MdiClient.cs: Active form is only sent to the back when using
8728         the Next form functionality, when a form is clicked the current
8729         active shouldn't be sent to the back.
8730         - Layout the mdi windows when the container is first made visible.
8731         * Form.cs: Give the MdiClient a ref to the containing form when we
8732         create it.
8733         
8734 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8735
8736         * LinkLabel.cs : link_font could be uninitialized, so populate one
8737           before actual use. Fixed bug #78340.
8738
8739 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8740
8741         * XplatUIX11.cs : clipboard format native value is IntPtr.
8742           Fixed bug #78283.
8743
8744 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8745
8746         * Control.cs: 
8747           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
8748             which is passed up the parent chain by DefWndProc
8749           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
8750             to DefWndProc (#77956)
8751         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
8752
8753 2006-05-10  Jackson Harper  <jackson@ximian.com>
8754
8755         * MdiClient.cs: We need to remove the controls from the mdi
8756         collection, when we close the window.
8757         * MdiWindowManager.cs: Special handling of closing mdi windows.
8758         * InternalWindowManager.cs: Make the close method virtual so the
8759         mdi window manager can handle it specially.
8760
8761 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
8762
8763         * DataGrid.cs:
8764           - Recalculate grid when the data source has changed
8765           - Matches styles provided by user from all data sources types
8766         * DataGridTableStyle.cs: For columns that provided by the user set the
8767         with the preferred value is there was unassigned.
8768         * CurrencyManager.cs: throw OnItemChanged event
8769
8770 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
8771
8772         * PictureBox.cs: Don't animate until handle is created. Start animation
8773           when handle is created.
8774
8775 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8776
8777         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
8778           current codebase.
8779         * XEventQueue.cs: We don't need to provide the extra info
8780
8781 2006-05-10  Jackson Harper  <jackson@ximian.com>
8782
8783         * MdiClient.cs: If the mdi clients parent form has a background
8784         image set, we draw that background image for the mdi area's
8785         background.
8786
8787 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8788
8789         * TextBoxBase.cs: Set IBeam cursor (#78347)
8790
8791 2006-05-10  Mike Kestner  <mkestner@novell.com>
8792
8793         * ToolBar.cs: fix some text padding issues with ButtonSize
8794         calculation. Update the default size to match MS documentation.
8795         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
8796         button size. Fixes #78296.
8797
8798 2006-05-10  Mike Kestner  <mkestner@novell.com>
8799
8800         * ListBox.cs: use is_visible for scrollbar positioning in case the
8801         control isn't on screen yet.  Fix off by one with Right vs Width
8802         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
8803         
8804 2006-05-10  Jackson Harper  <jackson@ximian.com>
8805
8806         * X11Dnd.cs: Drop to a control with another control on top of it.
8807         * ToolBar.cs: Work on a copy of the buttons list, so that it can
8808         be modified in click handlers. TODO: Look for similar problems in
8809         other controls.
8810
8811 2006-05-09  Jackson Harper  <jackson@ximian.com>
8812
8813         * Form.cs: Window managers need the old window state when setting
8814         window state now.
8815         * InternalWindowManager.cs: Allow the base mdi window manager to
8816         handle more of the MDI only stuff (like maximize buttons).
8817         * MdiWindowManager.cs: Fix some snafus in changing the window
8818         state.  Add all the menu functionality, for both popup and
8819         maximized menus.
8820         * MdiClient.cs: When a new form is selected the currently
8821         activated form is sent to the back, this matches MS.
8822         - Implement a new method to activate the next mdi child window.
8823
8824 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
8825
8826         * Control.cs: 
8827           - Added new InternalCapture method to allow controls to prevent
8828             the capture behaviour on the click handlers
8829           - Switched to use InternalCapture
8830         * ComboBox.cs:
8831           - Using InternalCapture to prevent mouse captures from being released
8832             on mouse button release (Fixes #78100)
8833         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
8834           returns Form borders if a caption is present. (Fixes #78310)
8835
8836 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
8837
8838         * TreeNode.cs: Changed serialization .ctor to not require every field
8839           to be present. (#78265)
8840         * OwnerDrawPropertyBag.cs: Added serialization .ctor
8841
8842 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
8843
8844         * MimeIcon.cs: for is faster than foreach for strings.
8845
8846 2006-05-05  Mike Kestner  <mkestner@novell.com>
8847
8848         * CheckedListBox.cs: update check handling code to not use selected.
8849         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
8850         behavior for visual feedback, motion response, shift/ctrl handling,
8851         and properly deal with all 4 selection modes. Updates to bounds
8852         handling logic.  Add scroll wheel support. [Fixes #77842]
8853
8854 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8855
8856         * ListView.cs:
8857           - Moved adding of Implicit controls into .ctor. That way, subsequent
8858             creation of the controls will not cause them to think they are 
8859             toplevel windows (fixes #78200 header problem)
8860           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
8861           - Switched visibility setting of header control to use internal field
8862             to avoid triggering handle creation
8863           - Now checking if handle is created before causing a refresh when items
8864             are added (This makes us now match handle creation time with MS)
8865         * Splitter.cs: Removed loading of private splitter cursor, switched to
8866           Cursors version now that that is loading the right ones
8867         * Cursors.cs: Load proper splitter cursors from resources
8868         * Cursor.cs: Added second method of loading resource cursors for the 
8869           VS.Net users amongst us
8870
8871 2006-05-05  Mike Kestner  <mkestner@novell.com>
8872
8873         * ListView.cs: give header_control a minimum size based on the
8874         ListView size.
8875
8876 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8877
8878         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
8879           window seems to do that with metacity, so set that type. (#78120)
8880
8881 2006-05-05  Mike Kestner  <mkestner@novell.com>
8882
8883         * ListViewItem.cs: fix Details mode checkbox layout bug.
8884         * ThemeWin32Classic.cs: draw a ListView column header for unused space
8885         at the end of the header, if it exists. [Fixes for #78200]
8886
8887 2006-05-04  Jackson Harper  <jackson@ximian.com>
8888
8889         * MdiClient.cs: Add a helper property to get the container form.
8890         * MdiWindowManager.cs: We have to make sure to use the menu origin
8891         when drawing the icons and buttons, this fixes maximized window
8892         icons/buttons on win32.
8893         * InternalWindowManager.cs: Reset the restore captions when a
8894         window goes from Maximized to Minimized and vice versa. Move the
8895         DrawMaximizedButtons into the MdiWindowManager source, tool
8896         windows can't be maximized. NOTE: This could use a little
8897         refactoring if time ever permits.
8898         
8899 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8900
8901         * TextBox.cs: Add MWFCategoryAttributes
8902         * TextBoxBase.cs: Add MWFCategoryAttributes
8903         * Form.cs: Add MWFCategoryAttributes
8904
8905 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8906
8907         * Control.cs: Add MWFCategoryAttributes
8908         * ScrollableControl.cs: Add MWFCategoryAttributes
8909
8910 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
8911
8912         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
8913           Divider is true. Fix a little glitch in PropertyToolBar
8914           drawing code
8915
8916 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
8917
8918         * Control.cs:
8919           - Dispose: Call base.Dispose, this causes the disposed event
8920             to be fired (and probably other, more important stuff)
8921           - SetVisibleCore: Set is_visible to true after creating the
8922             window so that the window still gets created invisible (if
8923             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
8924             to generate a WM_ACTIVE message
8925         * Form.cs: Call Dispose when we want to destroy the window, instead of
8926           just destroying the handle (Dispose will do that for us)
8927         * XplatUIX11.cs:
8928           - RootWindow also needs a queue, so we can properly process the
8929             property change events from RootWindow (like Activate)
8930           - Generatic synthetic WM_ACTIVE message when the active window is
8931             being destroyed
8932
8933 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8934
8935         * LinkLabel.cs: Trigger a recalc of our label dimensions when
8936           bounds are changed
8937
8938 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
8939
8940         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
8941           for determining width and height (image might not be assigned if
8942           we're drawing an imagelist)
8943
8944 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8945
8946         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
8947         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
8948           height from system
8949         * Theme.cs: No longer returns hardcoded menu height, instead calls
8950           new driver method
8951         * Form.cs (OnLoad): Scaling happens before triggering Load events 
8952           on MS (# 78257)
8953
8954 2006-05-01  Mike Kestner  <mkestner@novell.com>
8955
8956         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
8957
8958 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
8959
8960         * TextBoxBase.cs: Removed Fixme
8961         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
8962
8963 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
8964
8965         * XplatUIX11.cs:
8966           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
8967             the rectangle relative to the parent, considering borders. We
8968             don't really want that.
8969           - ScrollWindow: Fixed warning to be more understandable
8970         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
8971           scrollbars and scroll only the visible area
8972         * RichTextBox.cs: Removed debug output
8973
8974 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8975
8976         * NumericUpDown.cs (Text): Just use base
8977         * UpDownBase.cs: Ensure txtView is created before using it
8978
8979 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8980
8981         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
8982           casting to IntPtr to avoid 64bit overflow errors
8983
8984 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8985
8986         * Control.cs:
8987           - AllowDrop: Don't force handle creation.
8988           - CreateHandle: Added call to tell driver if we're allowed to drop
8989
8990 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8991
8992         * FileDialog.cs: Remember the last directory not only for the
8993           current instance but also for new FileDialog instances.
8994
8995 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8996         
8997         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
8998           broke sending async messages
8999
9000 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9001
9002         * XplatUIX11.cs:
9003           - ScrollWindow: Fixed method. We finally generate expose events again
9004             for scrolled areas. This was causing 'garbage' when scrolling
9005             textbox and other controls that used ScrollWindow
9006           - Switched from using the regular queue for paint events to the MS 
9007             model of 'generating' paint events when the queue is empty.
9008             We use the new XQueueEvent.Paint subclass to store which windows
9009             need painting.
9010           - AddExpose now takes the x/y/width/height of the exposed area
9011             and inserts the window into the paint queue if not already there
9012           - InvalidateWholeWindow: Switched to use new AddExpose method
9013           - UpdateMessageQueue: Added which queue to monitor for paint events
9014           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
9015             the unlikely case nothing above handles it. We reset the expose
9016             pending states to get them off the queue.
9017           - GetMessage: Now pulls a paint event if no other events are in the
9018             queue
9019           - Invalidate: Switched to new AddExpose method
9020           - PeekMessage: Updated to understand pending paint events
9021           - UpdateWindow: Fixed logic bug. We were only updating if the window
9022             didn't need updating. Also switched to sending WM_PAINT directly,
9023             like MS does.
9024         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
9025           and random access Remove(). The random access is needed to handle
9026           UpdateWindow() where a WM_PAINT is sent directly without accessing
9027           the queue.
9028         * ScrollBar.cs: Added Update() calls to cause immediate updates to
9029           allow for better feedback when scrolling. Scrollbars are small and
9030           the immediate update should make it 'feel' more responsive without
9031           slowing things down. ScrollBar still needs it's invaliate logic
9032           updated to not always invalidate the whole bar on certain changes.
9033
9034 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9035
9036         * Control.cs:
9037         (BackColor): if the control does not support a transparent background,
9038         return the default backcolor when the parent backcolor is transparent.
9039
9040 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
9041
9042         * Application.cs: Updated to new StartLoop/GetMessage API
9043         * RichTextBox.cs: Provide some output on RTF parsing errors
9044         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
9045           new queue_id argument to GetMessage and PeekMessage to allow faster
9046           handling of per-thread queues in drivers.
9047         * Hwnd.cs: Added Queue tracking and property
9048         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
9049         * XEventQueue.cs: Added thread trackingA
9050         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
9051         * XplatUIX11.cs:
9052           - Implemented new per-thread queue
9053           - GetMessage: Fixed return/break behaviour on several cases. We were
9054             returning stale messages in some cases, instead of just processing
9055             the next message
9056
9057 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9058
9059         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
9060
9061 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
9062
9063         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
9064           fixed off-by-one comparisons between Width/Height and Right/Bottom.
9065
9066 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9067
9068         * PropertyGridView.cs: Fix drop down width.
9069
9070 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9071
9072         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
9073           a mess in DrawToolBar, so I removed one of them.
9074
9075 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9076
9077         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
9078           needed (clip). Otherwise we get artifacts.
9079
9080 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9081
9082         * FixedSizeTextBox.cs: Added constructor to allow specifying which
9083           dimension is fixed
9084         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
9085           and switched FixedSizeTextBox to only be fixed vertical (#78116)
9086         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
9087           if it matches the scale base font (avoids unneeded scaling)
9088
9089 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9090
9091         * X11DesktopColors.cs: One gtk_init_check should be enough
9092
9093 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
9094
9095         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
9096           match MS behaviour
9097
9098 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9099
9100         * TextBoxBase.cs: 
9101           - Generate OnTextChanged for Backspace even if we're only deleting
9102             the current selection
9103           - When setting the Text property, only select all text if the
9104             control does not have focus when it is being set. Otherwise
9105             just place the cursor at the beginning of the control
9106
9107 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9108
9109         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
9110           Added a little helper to draw PropertyGrid ToolBar with a different
9111           border and a different BackColor.
9112         * PropertyGrid.cs: Some background parts didn't get painted with the
9113           correct background color. Added a class that helps us to draw the
9114           correct border for PropertyGridView and a class that helps us to
9115           draw ToolBars with a different backcolor
9116         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
9117
9118 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
9119
9120         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
9121         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
9122
9123 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9124
9125         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
9126           into the palette entries. Also, since we're working on a copy
9127           we needed to copy the palette back onto the bitmap.
9128         * Cursor.cs: Same fix as XplatUIWin32.cs.
9129
9130 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
9131
9132         * ImageListStreamer.cs: Need to read the var (or we're off)
9133
9134 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9135
9136         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
9137           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
9138           TextBoxBase.cs: Unused var fixes
9139         * AxHost.cs: Small 2.0 fix
9140         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
9141           as it seems that is what at least Metacity expects. This will make
9142           icons show up on 64bit platforms. We still have some 64bit size
9143           issues, though, since the startup app window size still won't match.
9144
9145 2006-04-25  Mike Kestner  <mkestner@novell.com>
9146
9147         * *.cs: cleanup newly reported exception var unused warnings.
9148
9149 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9150
9151         * ThemeWin32Classic.cs: Button image alignment now matches exactly
9152           ms
9153
9154 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9155
9156         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
9157           image. The image position is always the same, no matter if the
9158           button is pressed or not.
9159
9160 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9161
9162         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
9163           selection and set the correct filename for SaveFileDialog.
9164           Patch by Emery Conrad.
9165
9166 2006-04-24  Mike Kestner  <mkestner@novell.com>
9167
9168         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
9169         check for item.X outside the ClientRect instead of item.Y. Fixes
9170         #78151.
9171
9172 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9173
9174         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
9175         trust that value blindly and do some sanity check. Fixes bug #77814.
9176
9177 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9178
9179         * ImageListStreamer.cs: save the mask as a 1bpp image.
9180
9181 2006-04-21  Mike Kestner  <mkestner@novell.com>
9182
9183         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
9184         pass Checked and Indeterminate to the Theme Engine. Improve
9185         encapsulation with ListBox.
9186         * ListBox.cs: Keep a StringFormat instead of calculating it every item
9187         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
9188         nested types.  Move all CheckState functionality to CheckedListBox.
9189         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
9190         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
9191         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
9192         single base list. Fix scrollbar sizing and placement to mirror MS.
9193         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
9194         used.
9195         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
9196         for CheckedListBox by using new DrawItemState info.  Center the
9197         checkboxes on the items. Use new StringFormat property.
9198
9199 2006-04-18  Jackson Harper  <jackson@ximian.com>
9200
9201         * Form.cs: MdiChildren don't do default locations the same way as
9202         regular forms.  This prevents a crash when trying to position the
9203         mdi windows.
9204
9205 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
9206
9207         * PropertyGridTextBox.cs: Formatting, copyright
9208         * PropertiesTab.cs: Formatting
9209         * PropertyGrid.cs: Formatting
9210         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
9211           click toggling of values
9212           
9213 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
9214
9215         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
9216         * Control.cs (.ctor): verify_thread_handle is static, don't reset
9217           every time a control is created
9218         * Application.cs: Removed obsolete EnableRTLMirroring method
9219
9220 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
9221
9222         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
9223         SelectedIndex to -1. Fixes bug #78121.
9224
9225 2006-04-17  Jackson Harper  <jackson@ximian.com>
9226
9227         * Binding.cs: Handle null values for Current and BindingContext.
9228         This occurs when binding is a little delayed.
9229         * CurrencyManager.cs: return null for Current when there are no
9230         items in the list.
9231         - Hookup to the listchanged event on the DataView and update
9232         bindings when the list is changed.  This fixes late binding of
9233         controls.
9234
9235 2006-04-17  Jackson Harper  <jackson@ximian.com>
9236
9237         * X11Dnd.cs:
9238         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
9239         Ringenbach.
9240
9241 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
9242
9243         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
9244           place
9245         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
9246           with the correct ButtonState
9247
9248 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
9249
9250         * XplatUIX11.cs: Improved distinguishing between window types to
9251           tell the WM a type closer to what the app wants (Fixes #78107)
9252
9253 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9254
9255         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
9256           GrabHandle
9257
9258 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9259
9260         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
9261           drawing code to reflect the size grip changes
9262
9263 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9264
9265         * ImageListStreamer.cs: fix handling of the mask that follows the main
9266         bitmap when deserializing and serialize it properly. The generated mask
9267         should better be a 1bpp image, but I'll do that later.
9268
9269 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9270
9271         * FileDialog.cs: Show something in the DirComboBox on *nix if the
9272           path doesn't fit into some of our Current.Places
9273
9274 2006-04-13  Jackson Harper  <jackson@ximian.com>
9275
9276         * ComboBox.cs: Use borders instead of drawing our own decorations,
9277         try to obey correct rules for heights.
9278         * Theme.cs:
9279         * ThemeNice.cs:
9280         * ThemeClearLooks.cs:
9281         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
9282         this is now handled by borders.
9283         - Remove unused DrawListBoxDecorationSize method.
9284         
9285 2006-04-13  Mike Kestner  <mkestner@novell.com>
9286
9287         * MenuAPI.cs: null guarding for the disbled click check fixes crash
9288         reported by Alex.
9289
9290 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9291
9292         * ThemeWin32Classic.cs: 
9293           - Fixed CPDrawStringDisabled
9294           - Corrected drawing of disabled menu items
9295           - Fixed drawing of disabled radio buttons (bug #78095)
9296           - Draw check in a disabled CheckBox with color ControlDark 
9297
9298 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9299
9300         * Form.cs: Use the provided width when calculating the menu size;
9301           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
9302           and ClientSize.Width won't be updated yet
9303         * Application.cs: Use Visible instead of Show() to make form visible,
9304           this way we create the handle later and menusize is considered
9305
9306 2006-04-12  Mike Kestner  <mkestner@novell.com>
9307
9308         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
9309         reporting.
9310
9311 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9312
9313         * TextBox.cs: Implemented context menu
9314
9315 2006-04-12  Mike Kestner  <mkestner@novell.com>
9316
9317         * ListView.cs: implement box selection. fixes #77838.
9318         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
9319
9320 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9321
9322         * XplatUIX11.cs: Added setting of window type when transient window
9323           is created (metacity would move it otherwise)
9324         * X11Structs.cs: Added WINDOW_TYPE atoms
9325         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
9326           background (the control is Opaque but still wants transparent
9327           backgrounds)
9328
9329 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9330
9331         * Control.cs: Added OnPaintBackgroundInternal to allow controls
9332           that set Opaque but don't mean it (like all ButtonBase-derived
9333           controls) to still draw their background
9334         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
9335           the background
9336
9337 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9338
9339         * Control.cs (PaintControlBackground): Set the graphics object
9340           on our PaintEvent to null to prevent it from being disposed
9341           when the PaintEvent gets disposed
9342
9343 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
9344
9345         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
9346         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
9347
9348 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9349
9350         * Control.cs: 
9351           - Added transparency check to BackColor property. Transparent
9352             backgrounds are only allowed if the control styles permit it
9353           - Added recursive painting of parent control background and
9354             foreground if a control with a transparent backcolor is drawn
9355             (Thanks to Tim Ringenback for providing his 'hack' as a base
9356              for this patch) Fixes #77985 and #78026.
9357           - Added Opaque style check before calling OnPaintBackground, no
9358             need to draw the background if the control is opaque
9359           - Removed ControlAccessibleObject owner variable (inherited from
9360             base, no need to define again)
9361           - Added some documentation links explaining the drawing events
9362             and styles
9363
9364 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9365
9366         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
9367           that the affected control is the located at the left border of our
9368           parent (Fixes #77936)
9369
9370 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9371
9372         * TextBoxBase.cs: When rendering disabled or readonly controls,
9373           draw the background with 'Control' instead of 'Window' color as
9374           long as the user hasn't specifically set a color
9375
9376 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9377
9378         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
9379           since that won't be updated if the user types text (only if it's
9380           programatically set)
9381
9382 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9383
9384         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
9385           layout changes do to app-triggered resizes will have the proper
9386           display rectangle for layout
9387
9388 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
9389
9390         * ThemeWin32Classic.cs:
9391           - Make use of the SystemBrushes and SystemPens wherever possible
9392           - Corrected some highlight colors
9393           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
9394             drawing
9395         * Theme.cs: Added Empty field to CPColor struct
9396
9397 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9398
9399         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
9400           is displayed when calculating the display rectangle. Thanks to Mike
9401           for teaching me the err of my ways.
9402
9403 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
9404
9405         * ScrollableControl.cs:
9406           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
9407             (instead of 0,0) and we now return the real width/height instead of
9408             just the clientrectangle, adjusted for padding. The rectangle is
9409             now cached and created by the new CalculateDisplayRectangle method.
9410           - Created new CalculateDisplayRectange method, which basically does
9411             what get_DisplayRectangle() did originally, but now using the 
9412             right edge instead of DisplayRectangle to determine the size of
9413             our scrollbars
9414           - get_Canvas(): Fixed it to properly calculate canvas for 
9415             right/bottom controls which seem to be placed to the right/bottom
9416             of any controls that have a fixed location
9417           - Removed TODO that's taken care of
9418           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
9419             and SetDisplayRectLocation according to new MSDN2 docs
9420           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
9421             event when that is called, this is added for compatibility
9422           - ScrollControlIntoView(): Implemented.
9423           - Switched scrollbars to be implicit, they shouldn't be selectable
9424         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
9425           call it when the active control is set/changed
9426         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
9427         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
9428           implicit_control variable (used for native Win32 message generation)
9429         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
9430           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
9431         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
9432         * XplatUIStructs.cs: Added ScrollBarCommands enum
9433
9434 2006-04-10  Jackson Harper  <jackson@ximian.com>
9435
9436         * ButtonBase.cs:
9437         * CheckedListBox.cs:
9438         * ComboBox.cs:
9439         * DataGrid.cs:
9440         * DataGridView.cs:
9441         * Form.cs:
9442         * GroupBox.cs:
9443         * ListBox.cs:
9444         * PrintPreviewControl.cs:
9445         * ProgressBar.cs:
9446         * PropertyGrid.cs:
9447         * Splitter.cs:
9448         * StatusBar.cs:
9449         * TrackBar.cs:
9450         * UpDownBase.cs: Fixup base event overrides.
9451         
9452 2006-04-06  Mike Kestner  <mkestner@novell.com>
9453
9454         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
9455         all user-initiated value changes to min <= value <= max-thumbsz+1.
9456         (set_Value): check for vert/horiz when calculating new thumb position.
9457         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
9458         like MS does.
9459         (OnMouseMoveSB): refactor the thumb dragging code and refine
9460         invalidation logic to reduce flicker.
9461         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
9462         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
9463         (UpdateThumbPosition): small code readability cleanup
9464
9465 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
9466
9467         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
9468           different
9469
9470 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9471
9472         * ThemeNice.cs: Use a better graphics effect when a button is pressed
9473
9474 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9475
9476         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
9477         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
9478           This dramatically reduces the number of Pen.Dispose calls. 
9479           Where possible call ResPool methods only once instead of calling it
9480           over and over again (for example for the same color).
9481
9482 2006-04-06  Mike Kestner  <mkestner@novell.com>
9483
9484         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
9485         Also remove an unused private field on the collection. Fixes #77972.
9486
9487 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9488
9489         * ThemeNice.cs: Added ToolBar drawing code
9490
9491 2006-04-06  Mike Kestner  <mkestner@novell.com>
9492
9493         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
9494         I'm assuming that means we need to look up the toplevel for the
9495         provided control. Fixes the crash trace in #77911 but exposes another
9496         crash in some strange reflection usage in NDocGui.
9497
9498 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9499
9500         * ThemeNice.cs: Gave it a little silver touch and added Images
9501           method
9502         * FontDialog.cs: FontDialog is not resizable
9503         * FileDialg.cs: Added SizeGripStyle.Show
9504
9505 2006-04-05  Jackson Harper  <jackson@ximian.com>
9506
9507         * KeyboardLayouts.cs: Remove warning.
9508
9509 2006-04-05  Jackson Harper  <jackson@ximian.com>
9510
9511         * Control.cs: Enable OnPaintInternal so we can use it for drawing
9512         all of our controls instead of Paint +=.
9513         * ListBox.cs:
9514         * ListView.cs:
9515         * MenuAPI.cs:
9516         * MessageBox.cs:
9517         * NotifyIcon.cs:
9518         * ProgressBar.cs:
9519         * ScrollBar.cs:
9520         * Splitter.cs:
9521         * StatusBar.cs:
9522         * TabControl.cs:
9523         * TextBoxBase.cs:
9524         * ToolBar.cs:
9525         * TrackBar.cs:
9526         * UpDownBase.cs:
9527         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
9528         use OnPaintInternal. Remove Width/Height and Visible checks in
9529         paint handler, this is done at a higher level now.
9530         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
9531         * PaintEventArgs.cs: Add a handled flag so controls that don't
9532         want anymore painting after OnPaintInternal can make sure OnPaint
9533         isn't called.
9534
9535 2006-04-05  Mike Kestner  <mkestner@novell.com>
9536
9537         * Form.cs: fix the menu WndProc hacks to respect the native enabled
9538         state of the form, so that we don't process events when Modal dialogs
9539         are up. Fixes #77922.
9540
9541 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
9542
9543         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
9544           checking is done.
9545
9546 2006-04-05  Mike Kestner  <mkestner@novell.com>
9547
9548         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
9549
9550 2006-04-05  Mike Kestner  <mkestner@novell.com>
9551
9552         * ListView.cs (HeaderMouseMove): null guarding for the over column
9553         when setting up the drag_to_index.  Fixes #78015.
9554
9555 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
9556
9557         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
9558           in the taskbar. Transient windows seem to accomplish that.
9559
9560 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
9561
9562         * Form.cs:
9563           - Re-enabled CreateParams.X/Y code for FormStartPosition
9564           - Added code for manual placement when creating the Control
9565           - Incomplete patch to treat MDI forms differently when
9566             setting the ClientSizeCore. (Still need to figure out handling
9567             x/y coords there)
9568         * XplatUIX11.cs:
9569           - When we're explicitly setting the X/Y position of a non-Child
9570             window, let the WM know. Metacity really wants this.
9571
9572 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9573
9574         * ThemeNice.cs: Added CPDrawButton
9575
9576 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9577
9578         * ThemeNice.cs: Changed the color for focused buttons and activated
9579           the arrows for small scroll buttons.
9580
9581 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9582
9583         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
9584           anymore. Changed some method modifiers to protected (virtual)
9585         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
9586           changes
9587         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
9588           Updated drawing of menus, buttons and progressbars; added
9589           CPDrawBorder3D 
9590
9591 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9592
9593         * ImageListStreamer.cs: implemented serialization/deserialization
9594         of the images.
9595
9596 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
9597
9598         * ThemeWin32Classic.cs:
9599           - Removed all the DrawFrameControl stuff; CPDrawButton,
9600             CPDrawCheckBox and CPDrawRadioButton are now handled directly
9601             inside the methods
9602           - Updated and corrected the drawing code of CPDrawButton,
9603             CPDrawCheckBox and CPDrawRadioButton to better match ms
9604           - Updated theme checkbox and radiobutton code to use the CP*
9605             methods
9606
9607 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9608
9609         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
9610           bug is fixed
9611
9612 2006-03-31  Jackson Harper  <jackson@ximian.com>
9613
9614         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
9615         sometimes.
9616         * UpDownBase.cs: Don't CreateGraphics manually, use a
9617         Refresh. Ideally we would invalidate the correct areas here.
9618
9619 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9620
9621         * XplatUIX11.cs: 
9622           - We now track the mapping state of windows. If a window (or 
9623             one of it's parents) is not mapped we no longer permit
9624             WM_PAINT messages to be generated since we'd otherwise get 
9625             lots of BadMatch X errors. Jackson did all the work figuring
9626             out the problem.
9627           - Destroying the caret if the window it's contained in is 
9628             destroyed. Can't use regular DestroyCaret method since it
9629             might fall into a drawing function (trying to remove the
9630             caret) and with that generate new BadMatch errors. Again,
9631             Jackson tracked this down.
9632           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
9633             make sure we send the messages to all windows. (The old code
9634             would send the WM_DESTROY to the window, and then all child
9635             windows would be 'gone' because the WM_DESTROY handle lookup
9636             would no longer find the destroyed window)
9637         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
9638         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
9639
9640 2006-03-31  Jackson Harper  <jackson@ximian.com>
9641
9642         * ScrollableControl.cs: Dont recalc if we are not visible.
9643
9644 2006-03-31  Mike Kestner  <mkestner@novell.com>
9645
9646         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
9647         the visibility branch.
9648
9649 2006-03-31  Jackson Harper  <jackson@ximian.com>
9650
9651         * ScrollBar.cs: Cap values when incrementing/decrementing.
9652
9653 2006-03-31  Mike Kestner  <mkestner@novell.com>
9654
9655         * MenuAPI.cs: setup menu.tracker for popup/context menus.
9656         * ToolTip.cs: guard against timer expirations with no active control.
9657         Not sure why it happened.
9658
9659 2006-03-31  Mike Kestner  <mkestner@novell.com>
9660
9661         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
9662         text.
9663         * ToolTip.cs: Position the tooltip based on where the cursor is at
9664         popup time, not at MouseEnter time.  Add a Down state so that we don't
9665         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
9666         positioning offset. Lookup DisplaySize at positioning time, since it
9667         can theoretically change during invocation.
9668         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
9669         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
9670
9671 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9672
9673         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
9674           Fixes behaviour when the Text property of the box is String.Empty
9675
9676 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
9677
9678         * XplatUIX11.cs: Only send mouseleave for our client windows, not
9679           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
9680           a window)
9681
9682 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9683
9684         * FileDialog.cs: Visual enhancement for the popup buttons in 
9685           PopupButtonPanel
9686
9687 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9688
9689         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
9690           code
9691
9692 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
9693
9694         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
9695           highlighted menu items to match ms
9696
9697 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
9698
9699         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
9700
9701 2006-03-30  Mike Kestner  <mkestner@novell.com>
9702
9703         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
9704         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
9705         go active to account for HotLight to Selected transition.
9706         * MenuItem.cs: add internal Selected prop. Fill out the Status
9707         property by calculating it from item info. Add HotLight,
9708         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
9709
9710 2006-03-30  Mike Kestner  <mkestner@novell.com>
9711
9712         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
9713
9714 2006-03-29  Jackson Harper  <jackson@ximian.com>
9715
9716         * Form.cs: Implement TODO.
9717
9718 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
9719
9720         * PrintPreviewDialog.cs: Implemented missing methods and events; still
9721           missing proper dialog setup in the constructor
9722
9723 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
9724
9725         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
9726         * Control.cs:
9727           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
9728           - Fixed ResetBindings and removed TODO
9729           - Added check for cross-thread calls to get_Handle()
9730           - Added Marshaller attribute for set_Font to satisfy class status
9731         * FontDialog.cs: Removed TODOs that seemed implemented
9732         * UpDownBase.cs: Removed unneeded TODO and Fixme
9733         * MessageBox.cs: Implemented support for Default button and removed TODO
9734         * FileDialog.cs: Removed obsolete TODO
9735         * DomainUpDown.cs: Removed obsolete TODO
9736         * ButtonBase.cs: Removed obsolete TODO
9737         * XplatUIWin32.cs: Removed obsolete TODO
9738         * Form.cs:
9739           - Removed obsolete TODO
9740           - Calling CheckAcceptButton when the acceptbutton is changed to allow
9741             internal status updates
9742           - Making sure the active control is selected when the control is created
9743         * CurrencyManager.cs: Removed obsolete TODO
9744
9745 2006-03-29  Mike Kestner  <mkestner@novell.com>
9746
9747         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
9748         of PrintPreviewDialog and RichTextBox.
9749
9750 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9751
9752         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
9753           DarkDark, Light and LightLight colors for a specific color
9754         * ThemeWin32Classic.cs:
9755           - Use Button drawing code to draw RadioButtons and CheckBoxes with
9756             Appearance = Button 
9757           - Make use of the new ResPool helper CPColor
9758           - Draw ProgressBar and StatusBar with correct 3D borders
9759
9760 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9761
9762         * ColorDialog.cs: Return selected color. Fixes bug #77940.
9763
9764 2006-03-28  Mike Kestner  <mkestner@novell.com>
9765
9766         * ListView.cs: fix Icon layout to plan for scrollbar widths when
9767         calculating col/row counts.
9768
9769 2006-03-28  Mike Kestner  <mkestner@novell.com>
9770
9771         * ColumnHeader.cs:
9772         * ListView.cs:
9773         * ListViewItem.cs:
9774         * Menu.cs: 
9775         switch to explicit interface method implementation for some methods
9776         corcompare identifies as inconsistent with MS.
9777
9778 2006-03-28  Mike Kestner  <mkestner@novell.com>
9779
9780         * MainMenu.cs: 
9781         * Menu.cs:
9782         add a few missing methods from the class status output.
9783
9784 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
9785
9786         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
9787           correct.
9788
9789 2006-03-28  Mike Kestner  <mkestner@novell.com>
9790
9791         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
9792
9793 2006-03-27  Mike Kestner  <mkestner@novell.com>
9794
9795         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
9796         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
9797
9798 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
9799
9800         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
9801
9802 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9803
9804         * ThemeWin32Classic.cs:
9805           - GroupBox: Inserted a little gap between the text and the lines
9806             on the right side
9807           - Made the code in CPDrawBorder3D more readable
9808           - Corrected the drawing location of the up and down arrows in 
9809             CPDrawScrollButton
9810
9811 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9812
9813         * ControlPaint.cs: Corrected line widths in DrawBorder for
9814           ButtonBorderStyle Inset and Outset
9815
9816 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9817
9818         * ThemeWin32Classic.cs:
9819           - Rewrote the totally broken CPDrawBorder3D method. That was
9820             one of the main problems for the terrific ThemeWin32Classic
9821             look
9822           - Updated and corrected Button drawing
9823           - Correct the dimensions of the SizeGrip to match ms ones
9824           - Removed a small drawing glitch in DrawComboBoxEditDecorations
9825         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
9826           Border3DStyle.Sunken to match ms.
9827
9828 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9829
9830         * ThemeWin32Classic.cs: First small part of the "de-uglify
9831           ThemeWin32Classic" effort, SizeGrip
9832
9833 2006-03-24  Jackson Harper  <jackson@ximian.com>
9834
9835         * XplatUIX11.cs: Give a max idle time of one second, this matches
9836         MS and forces an Idle event every second when there are no other
9837         events in the queue.
9838
9839 2006-03-24  Mike Kestner  <mkestner@novell.com>
9840
9841         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
9842         * ListView.Item.cs: fix layout issues with null image lists and images
9843         smaller than checkbox size.
9844         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
9845         mode like MS does.  It's weird, but consistent.  ;-)
9846         Fixes #77890.
9847
9848 2006-03-24  Mike Kestner  <mkestner@novell.com>
9849
9850         * ListView.cs: Scroll wheel support for the item control.  Fixes
9851         #77839.
9852
9853 2006-03-23  Jackson Harper  <jackson@ximian.com>
9854
9855         * ScrollableControl.cs: Special case negative sized areas, not
9856         zero.
9857         * MonthCalendar.cs: Save the rect of the clicked date so we can
9858         use it for invalidation.
9859         - Try to cut down on the number of invalidates
9860         - Invalidate the rect the mouse is over and was over when moving
9861         the mouse, so we get the focus box following the cursor.
9862
9863 2006-03-23  Mike Kestner  <mkestner@novell.com>
9864
9865         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
9866         focus rectangle drawing. Fixes #77835.
9867
9868 2006-03-23  Mike Kestner  <mkestner@novell.com>
9869
9870         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
9871         the if and else if and reverting back to the original == check on the
9872         None conditional.
9873
9874 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9875
9876         * FontDialog.cs: Update the example panel if the selected index of
9877           the fontListBox changes.
9878
9879 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9880
9881         * FileDialog.cs: Make FileDialog remember which directory it was in
9882           last in the same execution.
9883
9884 2006-03-22  Mike Kestner  <mkestner@novell.com>
9885
9886         * FileDialog.cs: make the DropDownMenu on the toolbar display
9887         RadioChecks since they are mutually exclusive and that's what MS does.
9888
9889 2006-03-22  Mike Kestner  <mkestner@novell.com>
9890
9891         * Theme.cs: add Color param to CPDrawMenuGlyph.
9892         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
9893         checks and radio marks and arrows are visible on highlighted items.
9894         * ControlPaint.cs: update to use new Theme signature.
9895
9896 2006-03-22  Mike Kestner  <mkestner@novell.com>
9897
9898         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
9899         is active. Fixes #77870.
9900
9901 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9902
9903         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
9904           to be focused/selected after startup
9905
9906 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9907
9908         * ColorDialog.cs: 
9909           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
9910             CustomColors and ShowHelp properties
9911           - Some internal rewrites to get better results when using the
9912             ColorMatrix
9913
9914 2006-03-22  Mike Kestner  <mkestner@novell.com>
9915
9916         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
9917         HoverSelection.  Fixes #77836.
9918
9919 2006-03-22  Mike Kestner  <mkestner@novell.com>
9920
9921         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
9922         ToggleButtons.  (De)Sensitize the Back button around a stack count of
9923         1, not 0.  Update ButtonSize based on a pixel count of the win32
9924         control.  Adjust the toolbar size/location for new button size.
9925
9926 2006-03-22  Jackson Harper  <jackson@ximian.com>
9927
9928         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
9929         true.
9930         * ScrollBar.cs: When doing increments and decrements we need to
9931         set the Value property so that ValueChanged gets raised. A
9932         possible optimization here would be to make an internal SetValue
9933         that doesn't invalidate immediately.
9934         * ToolTip.cs: Tooltips get added to their container (when
9935         supplied) so they get disposed when the container is disposed.
9936         - Don't create tooltips for String.Empty. This prevents all these
9937         little 2-3 pixel windows from showing up when running nunit-gui
9938         and driving me mad.
9939         * Form.cs: Don't set topmost when setting the owner if the handles
9940         haven't been created yet.  The topmost set will happen when the
9941         handles are created.
9942
9943 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
9944
9945         * XplatUIX11.cs:
9946           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
9947           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
9948             visible (to allow them to recalculate their sizes)
9949
9950 2006-03-21  Mike Kestner  <mkestner@novell.com>
9951
9952         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
9953         methods. Removed a ton of redundant code.  Still not really happy with
9954         the border rendering, but I think that's mainly because of the
9955         ControlDarkDark being black instead of a dark grey. Depending on how 
9956         close we want to be, we might want to revisit those color choices.
9957         Among the new features added during the refactor were DropDownArrow
9958         pressed rendering, Disabled image rendering.  Proper flat appearance
9959         boundary rendering.  Removed the Divider and Wrapping dividers since I
9960         can't figure out any combination of themes and conditions to make the
9961         MS control draw a horizontal line on a toolbar despite what the
9962         Divider property docs indicate.
9963         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
9964         conditions and incorrect layout.  Updated to coding standard.
9965         * ToolBarButton.cs: refactored layout and positioning code from
9966         ToolBar to here.  Invalidate wherever possible instead of forcing
9967         redraws of the whole toolbar. 
9968         (Known remaining issues: explicit ButtonSize smaller than provided
9969         images.)
9970
9971 2006-03-21  Mike Kestner  <mkestner@novell.com>
9972
9973         * ContextMenu.cs (Show): use the position parameter instead of just
9974         showing at the MousePosition.
9975
9976 2006-03-21  Jackson Harper  <jackson@ximian.com>
9977
9978         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
9979         control handle this.
9980         * TreeNodeCollection.cs: If we are clearing the root node we need
9981         to reset top_node so calcs can still happen.
9982         * ThemeWin32Classic.cs: This is a Flags so we need to check
9983         properly.
9984         
9985 2006-03-21  Jackson Harper  <jackson@ximian.com>
9986
9987         * DataGrid.cs: Create columns when the binding context has been
9988         changed.
9989         * X11Structs.cs: Keysyms are uints.
9990         - Add size to fix build.
9991
9992 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
9993
9994         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9995           XplatUIOSX.cs: 
9996           - Added ResetMouseHover method to allow controls to retrigger
9997             hovering if they need it more than once
9998           - Implemented MouseHoverTime and MouseHoverSize properties
9999         * Timer.cs: Start() must reset the interval
10000         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
10001           properties
10002
10003 2006-03-21  Jackson Harper  <jackson@ximian.com>
10004
10005         * X11Keyboard.cs: improved layout detection. Move the nonchar
10006         tables into this file.
10007         * KeyboardLayouts.cs: Move the tables into resource files.
10008
10009 2006-03-21  Mike Kestner  <mkestner@novell.com>
10010
10011         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
10012
10013 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
10014
10015         * Mime.cs: Various speed optimizations. Looking up mime types
10016           is now 2 times faster than before
10017
10018 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
10019
10020         * CreateParams.cs: Added internal menu field
10021         * Control.cs: 
10022           - Switched call order for UpdateBounds; now we always call
10023             the one that also takes ClientSize, and we're calculating the 
10024             client size via driver method in the others. The previous
10025             method of tracking client size by difference wasn't working
10026             for forms where even the starting client size wouldn't match
10027             the overall form size (due to borders) (Part of fix for #77729)
10028           - CreateParams(): Do not use parent.Handle unless the handle is
10029             already created. Causes havoc with Nexxia and throws off our
10030             creation of controls
10031         * XplatUIX11.cs:
10032           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
10033           - Switched handling of ConfigureNotify over to new PerformNCCalc 
10034             method (consolidates code)
10035           - Changed RequestNCRecalc to use new PerformNCCalc method
10036           - Added calls to RequestNCRecalc when menus and borders are changed
10037             to allow app to set NC size. (Part of fix for #77729) This matches
10038             when MS send a WM_NCRECALC on Win32 windows.
10039           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
10040             (Part of fix for #77729). This matches what MS does, they also
10041             send that message when the form is made visible.
10042           - XException.GetMessage: Improved usability of X errors by including
10043             a translation of the window into Hwnd and Control class
10044           - Improved debug info for window creation, reparenting and destruction
10045           - Created helper method WindowIsMapped() [Currently not used]
10046         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
10047         * Form.cs:
10048           - CreateParams: Now setting our menu on the new internal menu field
10049           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
10050             avoid calculating the same property twice
10051         * Hwnd.cs:
10052           - Improved usability of ToString() for debugging purposes
10053           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
10054             determine the height of the menu, instead of just the font. This
10055             required to also create a graphics context and to keep a bmp 
10056             around (for performance reasons)
10057
10058 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
10059
10060         * MenuAPI.cs: Added OnMouseUp method
10061         * Form.cs:
10062           - Now remembering the requested client size, avoids size errors
10063           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
10064             instead of base if the menu is active. This is required due to
10065             control now capturing and releasing on down/up and it would
10066             prematurely release our menu capture
10067
10068 2006-03-17  Jackson Harper  <jackson@ximian.com>
10069
10070         * KeyboardLayouts.cs: Add the czech layouts.
10071
10072 2006-03-16  Jackson Harper  <jackson@ximian.com>
10073
10074         * Control.cs: Use the viewport space when sizing not the controls
10075         client size, so things like ScrollableControl that effect the
10076         viewport size (when scrollbars are added) are computed correctly.
10077         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
10078         of ManagerEntrys.
10079         - Handle creating BindingManagers for null data sources.
10080         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
10081         source, otherwise when rows are added they are added to the 'fake'
10082         datasource and we will crash when trying to set the position in
10083         those rows.
10084         - Use Implicit scrollbars on the datagrid so they arent
10085         selectable.
10086         
10087 2006-03-16  Jackson Harper  <jackson@ximian.com>
10088
10089         * Binding.cs:
10090         * InternalWindowManager.cs:
10091         * MdiWindowManager.cs:
10092         * X11Keyboard.cs: I really want Mike to love me again (fix
10093         compiler warnings).
10094
10095 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
10096
10097         * DataGrid.cs:
10098           - OnMouseDown: Switch to editing mode when clicking on the cell
10099                          even if we're clicking on the cell that's currently 
10100                          selected
10101           - ProcessGridKey: Left/Right now wrap like MS.Net does
10102           - ProcessGridKey: Tab now knows to add a new row when tab is
10103                             pressed in the cell of the last column of the 
10104                             last row
10105           - ProcessGridKey: Enter now adds another row  if pressed in the last
10106                             row and selectes the new row, same column cell
10107           - ProcessGridKey: Home/End navigate columns, not rows, like 
10108                             originally implemented
10109           - Broke ProcessKeyPreview code out into an extra Internal method
10110             so it can be called from the edit code
10111         * DataGridTextBox.cs (ProcessKeyMessage):
10112           - Switched to accept Tab keypresses
10113           - Added F2 handling to allow jumping to the end of the edited cell
10114           - Added logic to allow moving caret left/right inside edited cell
10115             and making the edited cell jump when the caret hits cell borders
10116           - Tab and Enter are now passed to the datagrid after being handled
10117         * TextBoxBase.cs:
10118           - Removed capture code now that Control handles it
10119           - set_SelectionStart now ensures caret is visible
10120
10121 2006-03-16  Jackson Harper  <jackson@ximian.com>
10122
10123         * TrackBar.cs: Debackwards the increment/decrement for handling
10124         mouse clicks on the bar with vertical trackbars.
10125         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
10126         bottom to match MS.
10127
10128 2006-03-16  Mike Kestner  <mkestner@novell.com>
10129
10130         * ListView.cs: make shift/ctrl keyboard and mouse selection 
10131         consistent with the MS control. Fix a bug in
10132         SelectedListViewItemCollection.Clear that was pissing me off for the
10133         better part of a day because the collection was being altered
10134         underneath us as we walked the list.
10135
10136 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
10137
10138         * Control.cs: Not sure how we could miss this so long, but it seems
10139           that MS.Net has Capture set all the way from before calling 
10140           OnMouseDown through sending the mouse events until after
10141           OnMouseUp. This will fix DataGrid's selection being set to end
10142           at the location of the MouseUp.
10143
10144 2006-03-15  Jackson Harper  <jackson@ximian.com>
10145
10146         * BindingContext.cs: Check the binding after its added so that it
10147           can initialize the binding managers and hookup to events.
10148         * Binding.cs: Data members seem to sometimes include rows/cols in
10149           the format Row.Column we now take this into account.
10150           - Hookup to the position changed event so we can update the
10151           control when the position has changed in the data set.
10152         * CurrencyManager.cs: Take into account the row/col naming
10153           convention when creating dataset tables.
10154         * BindingContext.cs: Using a newer better way of storing
10155           datasource/datamember pairs.  Hopefully this better matches MS for
10156           looking up binding managers.
10157
10158
10159 2006-03-15  Jackson Harper  <jackson@ximian.com>
10160
10161         * BindingContext.cs: The currency manager needs the data member
10162         name, if the member is a data set we use the name to find the
10163         correct table.
10164         * CurrencyManager.cs: When creating the list prefer an IList over
10165         an IListSource.
10166         - Attempt to create a DataTable from a DataSet (TODO: might need
10167         some better error checking here, although MS doesn't seem to have much)
10168         - If we have a DataTable create a view and use it as our list.
10169
10170 2006-03-15  Mike Kestner  <mkestner@novell.com>
10171
10172         * ListView.cs: keep a matrix of the icon mode layout to facilitate
10173         keyboard navigation. Support Up/Down/Left/Right selection correctly
10174         for all 4 View modes.
10175         * ListViewItem.cs: add internal row/col fields for icon layouts.
10176
10177 2006-03-15  Jackson Harper  <jackson@ximian.com>
10178
10179         * TabControl.cs: Redraw the tabs when we resize so their newly
10180         calculated sizes are drawn on screen.
10181         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
10182         composite characters.
10183         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
10184         - filter events so that composite characters can be created
10185         patches by peter
10186         * X11Structs.cs: Add XIMProperties enum.
10187
10188 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10189
10190         * Control.cs (BringToFront, SendToBack): Don't use window or handle
10191           unless it's created
10192
10193 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10194
10195         * Control.cs (PerformLayout): We don't need to consider visiblity
10196           for anchoring, only for docking. This fixes 'whacky' alignment
10197           in listbox and other controls that use implicit scrollbars after
10198           the previous PerformLayout patch
10199         * ListBox.cs: Switched to use implicit scrollbars
10200           
10201 2006-03-14  Mike Kestner  <mkestner@novell.com>
10202
10203         * ToolBar.cs: 
10204         * VScrollBar.cs:
10205         - chain up the "new event" overrides to base and use
10206         OnEvent to raise them.  Part of fix for bug #76509.
10207
10208 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
10209
10210         * FileDialog.cs: Do not select an item in the parent directory
10211           on backspace
10212
10213 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10214
10215         * Control.cs (PerformLayout): It would seem that we considered
10216           invisible windows for our layout. Not quite the right thing
10217           to do. Now we don't any longer, thereby fixing bug #76889.
10218
10219 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10220
10221         * Control.cs (CanFocus): I goofed. A control can have focus 
10222           even though it's not selectable. Made it match MS docs.
10223
10224 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10225
10226         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
10227           center by default (fixes #76895)
10228         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
10229           all uses of Border3DSides.All with the explicit ORd together
10230           Left|Right|Top|Bottom because I assume that nobody was aware 
10231           that All also implies a center fill. Most places I checked had
10232           a fill right above.
10233         * ProgressBarStyle.cs: Added
10234
10235 2006-03-13  Mike Kestner  <mkestner@novell.com>
10236
10237         * ListView.cs: fix breakage in drag shadow header positioning 
10238         from Peter's csc compilation fix.
10239
10240 2006-03-13  Mike Kestner  <mkestner@novell.com>
10241
10242         * ListView.cs: fix NRE produced by backspacing twice in a focused
10243         FileDialog.
10244
10245 2006-03-13  Mike Kestner  <mkestner@novell.com>
10246
10247         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
10248
10249 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10250
10251         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
10252           be changed
10253         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
10254           the allowed size before making programmatic size changes
10255
10256 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
10257
10258         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
10259           set, metacity is broken and will still use the emty sizes in 
10260           the struct. (Fix for #77089)
10261
10262 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10263
10264         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
10265           WindowExStyles and marked both enums as Flags
10266         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
10267           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
10268           to match WindowStyles split
10269         * XplatUIX11.cs:
10270           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
10271           - Updated to match WindowStyles split
10272         * XplatUIWin32.cs:
10273           - Fixed FosterParent creation, was using ExStyle on the Style field
10274             (This should help with Popup focus issues)
10275           - Updated to match WindowStyles split
10276
10277 2006-03-13  Jackson Harper  <jackson@ximian.com>
10278
10279         * MdiWindowManager.cs: Use the system menu height. Fixes some
10280         strange sizing issues.
10281
10282 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10283
10284         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
10285         * TextBoxBase.cs:
10286           - Scroll to caret after inserting text (#77672)
10287           - Make scroll range one pixel higher, fixes off-by-one error (and
10288             makes underlines visible on the last line)
10289
10290 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
10291
10292         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
10293           the keyboard state from being stuck with keys in 'pressed' state when
10294           focus is switched away via keyboard
10295         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
10296           reset the keyboard if no X11 KeyUp events are expected to come
10297         * X11Structs.cs: Switched type of Visible to bool to match driver
10298
10299 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10300
10301         * TextControl.cs:
10302           - Switched caret to be just 1 pixel wide, matches MS and looks less
10303             clunky
10304           - Moved caret display 1 pixel down from the top of the control
10305             to improve view
10306           - InsertCharAtCharet: Update the selection start if moving the caret
10307             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
10308           - No longer always creating the caret when the caret methods are
10309             called. Only the actual ShowCaret/HideCaret will do that now
10310           - Only setting caret visible if the owner control has focus
10311           - UpdateView: Added invalidation-shortcut logic for center and right 
10312             aligned text. Previously we'd update all according to the left
10313             logic which caused drawing errors. Also fixed height of invalidated
10314             areas, now properly invalidating the whole area (was off-by-one)
10315           - owner_HandleCreated: Always generate the document when the
10316             handle is created; this ensures that 
10317         * TextBoxBase.cs:
10318           - Fixed situation where caret would disappear under the right
10319             window border, also improved scrolling behaviour on left-
10320             aligned textboxes
10321           - Fixed right-aligned textboxes to have a border to the
10322             right instead of the caret being under the right border
10323         * XplatUIX11.cs:
10324           - Switched from 'nested' to simple visible/not visible tracking 
10325             for caret (part of fix for #77671)
10326           - No longer passing through translated FocusIn/FocusOut messages
10327             since we were notifying too often and the wrong windows. Instead
10328             we just notify our focussed window of receiving or loosing focus
10329         * XplatUIWin32.cs: Switched from 'nested' show/hide 
10330           counting for caret to simple visible yes/no behaviour (part of 
10331           fix for #77671)
10332
10333 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10334
10335         * Mime.cs: Remove debug code...
10336
10337 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10338
10339         * MimeGenerated.cs: Removed
10340         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
10341           and subclasses) from /usr/(local/)share/mime and
10342           $HOME/.local/share/mime.
10343
10344 2006-03-10  Jackson Harper  <jackson@ximian.com>
10345
10346         * MdiWindowManager.cs: Recalc the NC area when a window is
10347         maximized/restored so that the menu area is drawn on forms that
10348         don't have a menu.
10349
10350 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10351
10352         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10353           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
10354           us to force a WM_NCCALCRESIZE message being sent. This is needed
10355           for MDI maximizing.
10356
10357 2006-03-10  Jackson Harper  <jackson@ximian.com>
10358
10359         * Form.cs: We need to use the ActiveMenu when calculating menu
10360         height.
10361         - Fix nullref when the window manager hasn't been created yet.
10362         * Control.cs: Fix nullref when we try to bring a control to the
10363         front that has no parent.
10364         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
10365         height.
10366         - Add a dummy item to the maximized menu so it always has the
10367         correct height. Otherwise when there are no menus we don't get our
10368         icon and buttons.
10369         
10370
10371 2006-03-10  Jackson Harper  <jackson@ximian.com>
10372
10373         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
10374         stuff.
10375         * Form.cs: Make the window_state internal so the window managers
10376         can track it.
10377         - When an MDI child is maximized let its window manager create the
10378         main menu (so it can add its icon).
10379         - Notify the window managers of state changes
10380         - Let the window manager paint its buttons and handle button
10381         clicks on the menu when it is maximized.
10382         * InternalWindowManager.cs: Move the prev_bounds into the mdi
10383         window manager, since tool windows don't use it, only mdi windows.
10384         - Tell the main form that we don't want it to handle NCPAINT
10385         itself to avoid extra painting.
10386         - Handle clicks on a maximized windows menu.
10387         - Handle window state changes
10388         - Handle minimize/maximize clicks correctly by setting the window state.
10389         * MdiWindowManager.cs: Add an icon menu that (the menu you get
10390         when clicking on the forms icon).
10391         - New method to create a forms maximized menu. This is its normal
10392         menu + an icon.
10393         - Handle window state changes.
10394         - Handle sizing of maximized windows.  Maximized windows are just
10395         drawn bigger then the parent visible area. All controls are still
10396         there, they are just outside the visible area (this matches windows).
10397         * MdiClient.cs: No scrollbars when a child window is maximized.
10398         - Let the children windows figure out how big they should be when
10399         sizing maximized windows.
10400         - Implement a version of ArrangeIconicWindows somewhat similar to
10401         Windows version.  There are some little differences, but I don't
10402         think any app will rely on the layout of minimized mdi windows.
10403
10404 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10405
10406         * Padding.cs: Several fixes to allow compiling with csc 2.0
10407
10408 2006-03-09  Jackson Harper  <jackson@ximian.com>
10409
10410         * Menu.cs:
10411         * MenuItem.cs: Cheap hack so we can add items to the list without
10412         the events being raised.  This allows adding mdi items during
10413         drawing. TODO: Should probably find a better time to add the items.
10414
10415 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10416
10417         * ThemeWin32Classic.cs:
10418           - CheckBox_DrawText: Added logic to not wrap if not enough space
10419             is available (Fix for bug #77727)
10420           - RadioButton_DrawText: Added logic not to wrap if not enough
10421             space is available (Fix for bug #77727). Also removed some
10422             duplicate code, DrawString always drawing the regular text
10423             before hitting the if statement.
10424
10425 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
10426
10427         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
10428
10429 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10430
10431         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
10432         * ContainerControl.cs: Partial implementation of some 2.0 scaling
10433           methods. Moved the new 2.0 properties into alphabetical order with
10434           other properties and added MonoTODO tags
10435
10436 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10437
10438         * AutoScaleMode.cs: Added. Fix build.
10439
10440 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10441
10442         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10443           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
10444           and was requiring premature handle creation for calls from above
10445         * Form.cs, Control.cs: Removed handle arguments from calls to
10446           CalculateClientRect()
10447
10448 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10449
10450         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
10451           drag_column.column_rect is MarshalByRef and can't be used that way
10452
10453 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10454
10455         * AxHost.cs: Added deserialization constructor for 
10456           AxHost+State (fixes 77743)
10457
10458 2006-03-09  Mike Kestner  <mkestner@novell.com>
10459
10460         * ListView.cs: 
10461         - Added column drag reordering for details view.
10462         - fixed behavior when mouse is dragged off column and
10463         AllowColumnReorder is false.
10464         * ColumnHeader.cs: clone the format too in Clone.
10465         * Theme.cs: add DrawListViewHeaderDragDetails method.
10466         * ThemeWin32Classic.cs:
10467         - impl new method for drawing drag column shadows and targets.
10468         - support column offset for details mode in DrawListViewItem.
10469
10470 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10471
10472         * TextControl.cs: Reset the char_count when the document is cleared
10473           (Fixes bug reported on mono-winforms mailing list)
10474
10475 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10476
10477         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
10478           of calling base we simply process the key ourselves, since both
10479           DefWindowProc and the handled method would set m.Result. 
10480           (Fixes #77732)
10481
10482 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10483
10484         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
10485           method also moves the window; instead implemented a copy of
10486           Control.ScaleCore (Part of fix for #77456)
10487         * TextBoxBase.cs: 
10488           - Created new CreateGraphicsInternal method to allow providing
10489             a graphics context when no handle is created without triggering
10490             handle creation. (Part of fix for #77456)
10491           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10492         * TextControl.cs: 
10493           - Switched Constructor to require TextBoxBase instead of Control (to
10494             allow uncast access to CreateGraphicsInternal)
10495           - Safeguarded use of owner.Handle property. No longer accessing it
10496             unless the handle is already created.
10497           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10498           - Now triggering a recalc when owning control becomes visible
10499         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
10500           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
10501           premature handle creation (Part of fix for #77456)
10502         * Control.cs:
10503           - We now only destroy our double-buffering buffers when the
10504             control is resized or disposed, but not when visibility
10505             changes. (The code even re-created them twice every time)
10506           - Now requiring a redraw of the buffer on visibility changes
10507             (fixes bug 77654 part 2)
10508           - Not passing OnParentVisibleChanged up unless the control
10509             is visible
10510           - CanFocus: Fixed to match MS documentation
10511           - Focus: Fixed to return actual focus state and to check if
10512             setting focus is legal before setting it
10513
10514 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
10515
10516         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
10517           when to draw focus rectangle by looking at parent focus and
10518           selected state instead. This fixes TabPages on Linux sometimes
10519           having none or multiple focus rectangles.
10520         * XplatUIX11.cs (SetFocus): 
10521           - Don't set the focus if the same window already has focus
10522           - Use SendMessage instead of PostMessage (like it's Win32
10523             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
10524             to match MS behaviour
10525         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
10526           are not selectable.
10527
10528 2006-03-07  Jackson Harper  <jackson@ximian.com>
10529
10530         * PictureBox.cs: Revert line I accidently committed last week.
10531
10532 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10533
10534         * Control.cs: 
10535           - Added new IsRecreating and ParentIsRecreating properties to
10536             allow testing if RecreateHandle has been called on ourselves
10537             or one of our parents
10538           - WndProc(WM_DESTROY): If our control handle is being recreated
10539             we immediately need to create the handle when receiving the
10540             destroy, that way our child windows find a valid parent handle
10541             when they themselves are being recreated upon WM_DESTROY receipt
10542             (fix for bug #77654 part 1)
10543         * XplatUIX11.cs:
10544           - DestroyWindow: WM_DESTROY must be sent to our own window before
10545             notifying any child windows. MS documents that child windows
10546             are still valid when WM_DESTROY is received. (Control now relies on
10547             this behaviour)
10548           - Added some fine-grain debug options
10549
10550 2006-03-06  Jackson Harper  <jackson@ximian.com>
10551
10552         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
10553         box and base calculations off this.
10554         * MdiChildContext.cs:
10555         * MdiWindowManager.cs: Don't need to ensure scrollbars here
10556         anymore.
10557         
10558 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
10559
10560         * Splitter.cs: In situations where the affected control is added
10561           to the parent's control list after the splitter, we would not
10562           populate affected. Now we try populating it on mousedown, if
10563           it's not already set, and force it to be re-set whenever our
10564           parent changes.
10565
10566 2006-03-03  Matt Hargett  <matt@use.net>
10567
10568         * Control.cs: implement Control.Padding
10569         * Padding.cs: -Padding.All returns -1 when constructing with the
10570         implicit default ctor
10571         -Padding.ToString() matches MS.NET
10572         * ContainerControl.cs: implement
10573         ContainerControl.AutoScaleDimensions
10574         * ListControl.cs: implement ListControl.FormattingEnabled
10575         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
10576         * ButtonBase.cs:
10577         * TabPage.cs: Implement UseVisualStyleBackColor.
10578         * PictureBox.cs: Implement PictureBox.InitialImage.
10579
10580 2006-03-03  Mike Kestner  <mkestner@novell.com>
10581
10582         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
10583         event declarations to proxy to base event.
10584         * ListViewItem.cs: update to use ItemControl.
10585         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
10586         * ThemeWin32Classic.cs: update to new ListView theme API and fix
10587         column header label rendering for 0 width columns.
10588
10589 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
10590
10591         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
10592           that causes the control to be created. Fixes #77476.
10593
10594 2006-03-02  Jackson Harper  <jackson@ximian.com>
10595
10596         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
10597         expose_pending.
10598
10599 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
10600
10601         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
10602           passed in for the EventArgs (fixes #77690)
10603
10604 2006-03-01  Jackson Harper  <jackson@ximian.com>
10605
10606         * ScrollBar.cs: Refresh afterbeing resized.
10607
10608 2006-02-28  Mike Kestner  <mkestner@novell.com>
10609
10610         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
10611         Clean up a tracker compile warning.
10612         * MenuItem.cs: add internal PerformPopup method.
10613         [Fixes #77457]
10614
10615 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10616
10617         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
10618           implicit expose) when the text is set to null
10619
10620 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
10621
10622         * RichTextBox.cs (FlushText): When newline is true, we always
10623           need to split the line, even if no text is on it and we may
10624           never eat newlines. (Fixes #77669)
10625
10626 2006-02-28  Mike Kestner  <mkestner@novell.com>
10627
10628         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
10629         and set Selected instead.
10630         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
10631         collections.
10632
10633 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10634
10635         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
10636
10637 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
10638
10639         * FontDialog.cs:
10640           - Got rid of the panel. All controls are now directly added to
10641             the dialog form
10642           - It is now possible to set a font with the Font property
10643           - MinSize and MaxSize property do now what they should
10644           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
10645           - Searching and selecting a font with the font textbox works now,
10646             the same applies to the style and size textbox
10647           - Draw the correct 3D border in the example panel
10648           - Fixed a little mem leak (unused fonts didn't get disposed)
10649           - Many other internal updates/rewrites...
10650           - Fix typo
10651
10652 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10653
10654         * TextControl.cs: 
10655           - InsertRTFFromStream: Added 'number of characters inserted' argument
10656           - set_SelectedRTF: Now using the number of characters to calculate
10657             the new location for the selection and cursor (x/y cannot be used
10658             due to potentially already wrapped text)
10659
10660 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
10661
10662         * TextControl.cs: Added property and implemented means to allow 
10663           disabling recalculation of a document (can be used to speed up
10664           multiple inserts and is needed to make RTF inserts predictable, see
10665           bug #77659)
10666         * RichTextBox.cs: Using the new NoRecalc property of Document to
10667           keep x/y insert locations predictable. Also makes it faster inserting
10668           large chunks of RTF
10669
10670 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10671
10672         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
10673           it's easier for a child control to handle the other messages without
10674           having to duplicate the special functionality
10675         * TextBoxBase.cs
10676           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
10677             code to handle processing the key ourselves, in order to get 
10678             access to the result of KeyEventArgs.Handled. We now only call 
10679             ProcessKey if they key hasn't been handled already. Fixes #77526.
10680           - set_Text: If null or empty string is given, just clear the 
10681             document. Fixes part of #77526
10682
10683 2006-02-27  Jackson Harper  <jackson@ximian.com>
10684
10685         * SizeGrip.cs: Paint the background color before painting the grip
10686         so things look right.
10687         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
10688
10689 2006-02-27  Mike Kestner  <mkestner@novell.com>
10690
10691         * ListView.cs:
10692           - Restructure layout and invalidation model to remove a ton of
10693           flicker from the control and speed up performance in general.
10694           - Add manual column resize, flickers like crazy, but I already have
10695           some ideas on how I'll fix that. (#76822)
10696           - Merge the three Icon-based views into a single layout method.
10697           - Move item selection interaction logic from the item since 
10698           interaction with the collections is more appropriate to the view.
10699           - Deselection on non-item clicks.
10700         * ListViewItem.cs:
10701           - Encapsulate most of the layout. Add some internal props to trigger
10702           layout.  Move to a model where Items invalidate themselves instead
10703           of just invalidating the whole control every time something changes.
10704           - Invalidate on Text/Caption changes.
10705           - switch to an offset based layout model to avoid having to absolute
10706           position every element on item moves.
10707           - correct checkbox layout to conform to MS layout.
10708         * ThemeWin32Classic.cs:
10709           - refactor some column header drawing code.
10710           - fix string justification for column headers (#76821)
10711           - make SmallIcon labels top justified for compat with MS impl.
10712         * ThemeClearlooks.cs:
10713           - adjust to new ListViewItem internal checkbox bounds api.
10714
10715 2006-02-27  Jackson Harper  <jackson@ximian.com>
10716
10717         * Control.cs:  Change where implicit controls fall in the zorder.
10718         They are now on top of all children.
10719         - Synced AddImplicit code with Add
10720         - Removed unused enumerator.
10721         * SizeGrip.cs: Remove the TODO as its been TODONE.
10722
10723 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
10724
10725         * TextControl.cs(Insert): Combine the last lines unless the insertion
10726           string ends with \n\n, otherwise we leave one line too many (Fixes
10727           something I noticed with the testapp for #77526; the bug itself was
10728           already fixed in the previous checkin)
10729
10730 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
10731
10732         * RichTextBox.cs:
10733           - SelectionColor and SelectionFont methods no longer set absolute
10734             styles. Instead, the keep font or color respectively (This 
10735             resolves a long-standing FIXME in the code)
10736           - When flushing RTF text, the insert code now considers text trailing
10737             behind the insertion point (Fixes the bug where when replacing
10738             the selected text via SelectedRTF the remainder of the line behind 
10739             the selection would stay on the first insertion line)
10740         * TextBoxBase.cs:
10741           - AppendText now updates the selection points after inserting text
10742           - AppendText now ensures that the last tag (sometimes 0-length) of
10743             the document is used for the style information (Fixes part of 
10744             bug #77220)
10745         * TextControl.cs:
10746           - Created new FontDefiniton class to allow describing partial style
10747             changes
10748           - StreamLine() now takes a lines argument, to allow it to decide
10749             whether an encountered zero-length tag is the last in the document
10750             (which must be kept to not loose the font/color contained in it,
10751             for later appends)
10752           - Created Combine() and Split() methods for Marker structs, to 
10753             support marker updates due to reformatted documents (soft line
10754             wraps)
10755           - Implemented Document.CaretTag setter
10756           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
10757             of the last line (Not the cause, but also exposed by bug #77220)
10758           - Added LineTag argument to InsertString method, to allow callers
10759             to force a certain tag to be used (required to force use of the
10760             trailing zero-length tag of a document)
10761           - Now updating markers in Combine(), to avoid stale tag markers
10762           - Added some method descriptions to aid maintenance
10763           - Implemented new FormatText concept, allowing additive/subtractive
10764             formatting by only specifying the components that are to be 
10765             changed. This was needed for resolving the RTB.SelectedColor/
10766             RTB.SelectedFont fixmes
10767           - Added Break() support method to allow breaking up linetags (used
10768             for partial formatting)
10769           - Added GenerateTextFormat() method. It is used for partial 
10770             formatting and allows to generate a full font/color from given
10771             attributes and an existing tag.
10772
10773 2006-02-26  Jackson Harper  <jackson@ximian.com>
10774
10775         * XplatUIX11.cs:  Use the correct caption height.
10776         - Translate hittest coordinates to screen coords to match MS.
10777         * XplatUIWin32.cs: When we create MDI windows we need to reset
10778         some of the style flags, so we get a nice blank window, and can
10779         draw all the decorations ourselves.
10780         - Set a clipping rectangle on the non client paint event, the
10781         window manager drawing code needs one.
10782         * Form.cs: The window manager needs to know when the window state
10783         has been updated.
10784         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
10785         don't need to factor in border and title sizes in these
10786         methods. TODO: Remove the args and fix the call points.
10787         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
10788         properly.
10789         - Let the driver set the cursors.
10790         - Improve active window handling
10791         - Correct sizes for title bars and buttons.
10792         - Match MS drawing better
10793         * MdiWindowManager.cs: We don't need to handle border style
10794         updates specially anymore.
10795         - Check for scrollbars when windows are done moving
10796         - Handle Active properly.
10797         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
10798         correctly. I am spewing the exception though, so we don't hide the
10799         bugs.
10800         
10801 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
10802
10803         * DataGridViewRowPostPaintEventArgs.cs,
10804           DataGridViewCellPaintingEventArgs.cs,
10805           DataGridViewRowCollection.cs,
10806           DataGridViewRowPrePaintEventArgs.cs,
10807           DataGridViewCell.cs: Clear a few warnings and implement a few
10808           exceptions that should be thrown.
10809
10810 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10811
10812         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
10813           'inheriting' our parent's (non-default) cursor. (Part of
10814            the fix for #77479)
10815
10816 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
10817
10818         * XplatUIX11.cs: Fixed cast to make csc happy
10819
10820 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10821
10822         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
10823           it's for the client area (part of fix for #77479 and needed
10824           for MDI window cursor handling)
10825         * XplatUIX11.cs
10826           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
10827             the appropriate default cursors and also passing the message
10828             up the parent chain 
10829           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
10830             for non-client areas
10831
10832 2006-02-15  Jackson Harper  <jackson@ximian.com>
10833
10834         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
10835         is a real MDI window
10836
10837 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
10838
10839         * X11DesktopColors.cs: Instead of checking the desktop session
10840           string for "KDE" check if it starts with "KDE"
10841
10842 2006-02-10  Jackson Harper  <jackson@ximian.com>
10843
10844         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
10845         systems).
10846
10847 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10848
10849         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
10850           errors
10851         * ColorDialog.cs:
10852           - Got rid of the panel. All controls are now directly added to
10853             the dialog form
10854           - Changed to mono coding style
10855
10856 2006-02-10  Jackson Harper  <jackson@ximian.com>
10857
10858         * InternalWindowManager.cs: We don't need the set visibility to
10859         false hack anymore now that peter has written beautiful shutdown
10860         code.
10861
10862 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
10863
10864         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
10865           where already explicitly destroyed
10866
10867 2006-02-10  Jackson Harper  <jackson@ximian.com>
10868
10869         * MdiClient.cs: Handle the case where windows are too high or to
10870         the left and we need scrollbars.
10871
10872 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10873
10874         * MimeIcon.cs: Added some icons
10875         * FileDialog.cs:
10876           - Fixed bug #77477
10877           - Got rid of the panel. All controls are now directly added to
10878             the dialog form
10879           - Changed to mono coding style
10880           - On Linux "My Computer" and "My Network" will now show some
10881             more usefull information. A new class, MasterMount, gathers
10882             this information from /proc/mount. Updated MWFFileView to make
10883             use of this information
10884           - Fixed a bug that caused FileDialog to crash when
10885             ".recently_used" file had a zero size
10886           - FilterIndex does now what it should
10887           - Some Refactoring
10888         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
10889             FileDialog changes
10890
10891 2006-02-09  Jackson Harper  <jackson@ximian.com>
10892
10893         * ComboBox.cs: Don't touch if null.
10894
10895 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
10896
10897         * Cursor.cs: 64bit safeness fix
10898         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
10899
10900 2006-02-09  Jackson Harper  <jackson@ximian.com>
10901
10902         * Form.cs: If a form is made into an MDI form update the styles so
10903         all the props can get set correctly.
10904         - Kill the mdi_container when we dont need it anymore.
10905         * InternalWindowManager.cs: Add missing NOT
10906
10907 2006-02-08  Jackson Harper  <jackson@ximian.com>
10908
10909         * InternalWindowManager.cs: Respek clipping when drawing MDi
10910         decorations.
10911
10912 2006-02-08  Jackson Harper  <jackson@ximian.com>
10913
10914         * Hwnd.cs: Add bits to track non client expose events.
10915         * XplatUIX11.cs: Track non client expose events on the hwnd. This
10916         gives us a proper invalid rect and will allow for some nice
10917         optimizations with NC client drawing
10918         - MDI windows are children windows, so move their style handling
10919         into the child window block.
10920         * InternalWindowManager.cs: Remove a state reset that was
10921         getting invoked at the wrong time. Fixes managed windows getting
10922         into a 'stuck' captured state.
10923
10924 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10925
10926         * TextControl.cs (Document.ctor): Now initializing 
10927           selection_anchor. Fixes #77493
10928
10929 2006-02-07  Jackson Harper  <jackson@ximian.com>
10930
10931         * TrackBar.cs: The increment/decrements were backwards.
10932
10933 2006-02-07  Mike Kestner  <mkestner@novell.com>
10934
10935         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
10936         to the instance itself.
10937
10938 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10939
10940         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
10941           on ulongs and pointers, the size differs between 32bit and 64bit
10942           systems. 
10943
10944 2006-02-07  Mike Kestner  <mkestner@novell.com>
10945
10946         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
10947         for 64 bit platforms to work around a metacity bug. 
10948
10949 2006-02-07  Jackson Harper  <jackson@ximian.com>
10950
10951         * TrackBar.cs: Process the input keys we need, and hookup to
10952         KeyDown instead of using WndProc, so we get key messages.
10953
10954 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
10955
10956         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
10957           machine we're on. 
10958         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
10959           we need to translate the XdndVersion atoms array before sending it
10960
10961 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
10962
10963         * XplatUIX11.cs: 
10964           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
10965             number of bits for the property, not the number of bytes. The
10966             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
10967             but would not crash since it specified 8 bits instead of 4 bits)
10968           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
10969             defined as XID -> long in the C headers)
10970           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
10971             references since those are now IntPtr to begin with
10972           - Switched all Atom.XXX 'int' casts to IntPtr casts
10973           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
10974           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
10975           - Added XChangeActivePointerGrab DllImport (for X11DnD)
10976         * X11Structs.cs:
10977           - Changed 'int' type for Atoms in XEvent structures to IntPtr
10978           - Changed atom in HoverStruct to be IntPtr
10979         * X11DnD.cs:
10980           - Removed local DllImports, switched code to use those from XplatUIX11
10981           - Removed/fixed casts related to the switch of Atom to be a IntPtr
10982
10983 2006-02-06  Mike Kestner  <mkestner@novell.com>
10984
10985         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
10986         method signatures in the import region.  There may still be some
10987         lingering struct marshaling issues, as I didn't drill down into those.
10988         Yet.
10989
10990 2006-02-06  Jackson Harper  <jackson@ximian.com>
10991
10992         * ComboBox.cs: Dont manually set the top_item, this is computed
10993         when the scrollbar position is set.
10994
10995 2006-02-06  Mike Kestner  <mkestner@novell.com>
10996
10997         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
10998         startup crashes on amd64.  There's other fixes needed.  All pinvoke
10999         usage of Atom needs to be mapped to IntPtr for example.  And there are
11000         likely other int/long issues to be addressed.
11001
11002 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
11003
11004         * FileDialog.cs: One more...
11005
11006 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11007
11008         * FileDialog.cs: Next try
11009
11010 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11011
11012         * FileDialog.cs: First part of fix for #77464
11013
11014 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11015
11016         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
11017           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
11018           AcceptButton border drawing.
11019
11020 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
11021
11022         * Form.cs: Moved positioning of form after auto scaling is applied,
11023           otherwise it would possibly use wrong form size.
11024
11025 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
11026
11027         * Control.cs (RecreateHandle): No need to re-create any child
11028           controls, the child windows will get destroyed automatically by
11029           the windowing system or driver, and re-created when the handle
11030           is being accessed the first time. Fixes #77456
11031         * Form.cs: No longer setting the form to closing if the handle is 
11032           being recreated. This seems like the right thing to do, don't
11033           have a bug or testcase for this, though.
11034
11035 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11036
11037         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
11038           controls to avoid unwanted side effects
11039
11040 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
11041
11042         * Control.cs: 
11043           - ScaleCore needs to scale the bounds, not the ClientSize of the 
11044             control. Fixes #77416.
11045           - DefaultSize is 0,0 for control
11046         * TextBoxBase.cs: 
11047           - DefaultSize is 100, 20
11048           - SetBoundsCore: Now enforcing the height, no matter if the provided
11049             height is more or less than the preferred one, as long as AutoSize
11050             is on
11051         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
11052
11053 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11054
11055         * Control.cs:
11056           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
11057             call unless both performLayout is true *and* we have a pending
11058             layout change
11059           - ResumeLayout: MS does not completely nest Suspend and Resume,
11060             they bottom out at 0, fixed our code to match that.
11061           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
11062             SetBoundsCore, we were updating even when we shouldn't. This fixes
11063             swf-anchors mis-anchoring when resizing the app fast and lots.
11064           - UpdateDistances: Now only setting the left and top distance if 
11065             we have a parent and are not suspended, this is based on
11066             a suggestion by Don Edvaldson in bug #77355.
11067           - OnVisibleChanged: Fixed logic when to create the control. We may
11068             not create the control if we have no parent or if it's not visible;
11069             switched to using Visible property instead of is_visible field 
11070             since the property also considers parent states. This fixes a bug
11071             when starting Paint.Net
11072
11073 2006-02-02  Jackson Harper  <jackson@ximian.com>
11074
11075         * Form.cs: If the forms handle hasn't been created yet don't call
11076         into xplatui to make it top most, just set the topmost flag on the
11077         form in CreateParams
11078         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
11079
11080 2006-02-01  Jackson Harper  <jackson@ximian.com>
11081
11082         * ScrollableControl.cs: Refactored the Recalculate method a
11083         little, this wasn't handling all the variants of bottom and right
11084         bars needed to be added and added/removed based on their
11085         counterparts being added/removed (which changes the drawable
11086         size). Also we special case client widths and heights of 0 and
11087         don't add the scrollbar for those.
11088
11089 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
11090
11091         * XplatUIX11.cs: 
11092           - Added method to get AbsoluteGeometry(); currently unused, but might
11093             be used in the future, if we try again to figure out toplevel
11094             coordinates with some more crappy window managers
11095           - Added FrameExtents() method to retrieve the WM set decoration size
11096           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
11097             to deal with at least KDE, FVWM and metacity (Fixes #77092)
11098         * Hwnd.cs: 
11099           - Added whacky_wm tracking var for metacity
11100           - Added logic to have default menu height if the actual menu height
11101             has not yet been calculated (part of fix for #77426)
11102         * Form.cs: Keep track whether client size has been set and re-set 
11103           it if a menu is added/removed afterwards (Fixes #77426)
11104
11105 2006-01-31  Jackson Harper  <jackson@ximian.com>
11106
11107         * Control.cs: When a new Site is set on the component attempt to
11108         pull the AmbientProperties from it.
11109
11110 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
11111
11112         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
11113           in the background of the owning form. Fixes #77332
11114
11115 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11116
11117         * MimeIcon.cs: Fix for #77409
11118
11119 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11120
11121         * XplatUIX11GTK.cs: Initial import
11122
11123 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
11124
11125         * FixedSizeTextBox: fixes class signature
11126
11127 2006-01-30  Jackson Harper  <jackson@ximian.com>
11128
11129         * FixedSizeTextBox.cs: New internal class that represents a
11130         textBox that will not be scaled.
11131         * TreeView.cs:
11132         * ComboBox.cs:
11133         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
11134         standard TextBox.
11135                 
11136 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
11137
11138         * XplatUIX11.cs: Retrieve default screen number instead of
11139           assuming 0. Attempted fix for #77318
11140
11141 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
11142
11143         * XplatUIWin32.cs: 
11144           - GetWindowPos: When a window is parented by FosterParent, use 
11145             the desktop instead of FosterParent as the base to get coordinates
11146           - CreateWindow: Don't make FosterParent the parent window for Popups
11147             if we don't want a taskbar entry, Popups automatically don't get one
11148         * Hwnd.cs: Need to call remove to actually remove the key from the
11149           hash table
11150
11151 2006-01-30  Mike Kestner  <mkestner@novell.com>
11152
11153         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
11154
11155 2006-01-30  Jackson Harper  <jackson@ximian.com>
11156
11157         * TreeView.cs:
11158         * TreeNode.cs: Raise events no matter how the treenode is
11159         checked. Patch by Don Edvalson.
11160
11161 2006-01-30  Jackson Harper  <jackson@ximian.com>
11162
11163         * TreeNode.cs: Signature fix.
11164
11165 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
11166
11167         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
11168
11169 2006-01-20  Mike Kestner  <mkestner@novell.com>
11170
11171         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
11172         event forwarding when menus are active.
11173         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
11174         Most of the patch is pdb's with a little rework.
11175
11176 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11177
11178         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
11179           Removed GetMenuDC and ReleaseMenuDC methods; replaced
11180           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
11181         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
11182         * InternalWindowManager.cs: Added use of PaintEventStart/End to
11183           handling of WM_NCPAINT message, now passing the PaintEventArgs to
11184           the PaintWindowDecorations method
11185         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
11186         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
11187         * MenuAPI.cs: Made tracker window invisible
11188         * XplatUIWin32.cs:
11189           - Removed GetMenuDC and ReleaseMenuDC methods
11190           - Implemented the client=false path for PaintEventStart and
11191             PaintEventEnd
11192
11193 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11194
11195         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
11196         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
11197           styles
11198         * Form.cs: 
11199           - MaximizeBox, MinimizeBox: Recreate the handle when setting
11200             the style
11201           - CreateParams: Reworked the styles to match MS look'n'feel,
11202             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
11203             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
11204
11205 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11206
11207         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
11208           window is not mapped, since otherwise every form that's being 
11209           created is considered minimized, which is wrong.
11210         * Form.cs: Catching the exception and returning our internal value
11211           instead
11212
11213 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11214
11215         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
11216           SetWindowMinMax() to have means to tell the driver about the minimum,
11217           maximum and maximized state window sizes. (Part of the fix for #76485)
11218         * Form.cs:
11219           - Implemented tracking of minimum and maximum window size, now calling
11220             new SetWindowMinMax() driver method to tell the driver (Part of the
11221             fix for #76485)
11222           - Finished handling of WM_GETMINMAXINFO method, now setting all values
11223             (Completes fix for #76485)
11224           - Calling new SetWindowMinMax driver method when the handle for a 
11225             form is created, to make sure the driver knows about it even if
11226             the values have been set before the window was created
11227           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
11228             to avoid messing up our anchoring calculations (partial fix
11229             for #77355)
11230         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
11231         * XplatUIX11.cs:
11232           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
11233           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
11234             (and presumably other freedesktop.org compliant WMs). Left the
11235             assumption unmapped=minimized, needed for SetVisible to work.
11236           - Now setting the window state when creating windows
11237           - Fixed SetVisible to consider/set the window state when mapping
11238             a Form. We cannot set the state before it's mapped, and we cannot
11239             use Form.WindowState once it's mapped (since it would ask the
11240             driver and get 'normal'. Therefore, we grab the state before
11241             mapping, map, and then set state.
11242           - Implmemented SetWindowMinMax method; Metacity does not seem to
11243             honor the ZoomHints, though.
11244         * XplatUIWin32.cs:
11245           - Removed MINMAXINFO (moved to XplatUIStructs)
11246           - Added SetWindowMinMax stub (on Win32 the only way to set that
11247             information is in response to the WM_GETMINMAXINFO message, which
11248             is handled in Form.cs)
11249           - Added logic to SetVisible to set the proper window state when a 
11250             form is made visible (fixes #75720)
11251
11252 2006-01-26  Jackson Harper  <jackson@ximian.com>
11253
11254         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
11255         same way we handle them with Invoke.
11256
11257 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
11258
11259         * Form.cs:
11260           - Added tracking of window state so CreateParams can return
11261             the appropriate style
11262           - Moved setting of WS_CAPTION style in CreateParams to allow
11263             styles without caption
11264         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
11265           control if the TextBox property is accessed. Fixes #77345
11266         * Control.cs:
11267           - get_Created: now uses is_disposed and is_created to determine
11268             return value (suggested by Jackson)
11269           - CreateHandle: No longer exits if the handle is being recreated
11270           - RecreateHandle: If the handle is not yet created call the 
11271             appropriate method to create either control or handle. If the
11272             control is already created CreateHandle will simply exit instead
11273             of just creating the handle
11274         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
11275           now SendMessage WM_DESTROY directly to the control when DestroyWindow
11276           is called.
11277         * XplatUIX11.cs: 
11278           - When DestroyWindow is called, instead of waiting for the 
11279             DestroyNotification from X11, we directly post it to the WndProc
11280             and immediately dispose the hwnd object.
11281             Same applies to DestroyChildWindows, and this obsoletes the
11282             expose_pending tracking. Contrary to Win32 behaviour we destroy our
11283             child windows before our own, to avoid X11 errors.
11284           - Removed the direct sending of WM_PAINT on UpdateWindow
11285         * XplatUIWin32.cs:
11286           - Reworked DoEvents and GetMessage to allow access to internal queue
11287             even when trying non-blocking access to the queue.  Fixes #77335. 
11288             Based on a patch suggestion by Don Edvalson. The new private
11289             GetMessage can now also be used as a backend for a PeekMessage
11290             frontend version.
11291         * XplatUI.cs: Improved debug output for CreateWindow
11292
11293 2006-01-25  Jackson Harper  <jackson@ximian.com>
11294
11295         * Help.cs: Allow param to be null. Patch by Don Edvalson.
11296
11297 2006-01-24  Jackson Harper  <jackson@ximian.com>
11298
11299         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
11300         when we have a MaxDropItems lower then the selected index.
11301
11302 2006-01-24  Jackson Harper  <jackson@ximian.com>
11303
11304         * Control.cs: Don't allow selection of non visible controls, allow
11305         selection of controls without parents.
11306
11307 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11308
11309         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
11310         * DataGridDrawingLogic.cs: Add editing row only when is necessary
11311
11312 2006-01-23  Jackson Harper  <jackson@ximian.com>
11313
11314         * UpDownBase.cs: Make the textbox handle all the selection and
11315         tabbing. This fixes tabing to updown controls.
11316
11317 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11318
11319         * TextBoxBase.cs: fixes exception thown the object was null
11320
11321 2006-01-23  Jackson Harper  <jackson@ximian.com>
11322
11323         * ButtonBase.cs: Just use the base CreateParams. They set
11324         visibility and enabled correctly.
11325         * ComboBox.cs:
11326         * TrackBar.cs:
11327         * MonthCalendar.cs: Lets let the base set as much of the
11328         createparams as possible so we don't have duplicate code all over
11329         the place.
11330
11331 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
11332
11333         * ThemeGtk.cs: Added TrackBar and some experimental code to
11334           get double buffering back
11335
11336 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
11337
11338         * DataGrid.cs: Allows row number set internally higher than the last
11339         when creating a new row. Restores the editing functionality.
11340
11341 2006-01-20  Mike Kestner  <mkestner@novell.com>
11342
11343         * MimeIcon.cs: delay Image creation until the icons are accessed
11344         instead of creating 190 scaled images on GnomeHandler startup.
11345
11346 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
11347
11348         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
11349           first call base before processing the event. Fixes #77279
11350
11351 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
11352
11353         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
11354           that the stride for the GDI bitmap would match the stride of
11355           a DIB or a Cursor.
11356
11357 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
11358
11359         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
11360
11361 2006-01-19  Jackson Harper  <jackson@ximian.com>
11362
11363         * ComboBox.cs: Hookup the text controls keydown event so we get
11364         those when the text control has the focus.
11365
11366 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11367
11368         * Label.cs: Now using the base events instead of defining new ones;
11369           this allows us to just call the base properties without having to
11370           duplicate all base property logic 
11371
11372 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11373
11374         * Label.cs: A label by default is not a tabstop (Fixes one of our
11375           failing nunit tests)
11376
11377 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11378
11379         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
11380         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
11381
11382 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11383
11384         * Cursor.cs: Reimplemented creating cursor bitmaps without using
11385           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
11386           This fixes #77218
11387         * XplatUIWin32.cs: 
11388           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
11389             constructor creates images that can't be saved. Part of the fix
11390             for #76103
11391           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
11392           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
11393             bug fix for handling window state in forms properly)
11394
11395 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11396
11397         * ThemeGtk.cs: Simplify ScrollBar drawing
11398
11399 2006-01-18  Jackson Harper  <jackson@ximian.com>
11400
11401         * Splitter.cs: Set the default dock style for the splitter control
11402         in the constructor.
11403
11404 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11405
11406         * ThemeGtk.cs: Corrected StateType and ShadowType for
11407           gtk_paint_box
11408
11409 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11410
11411         * Control.cs: Make use of Theme.DoubleBufferingSupported
11412         * ThemeGtk.cs:
11413           - Added drawing for flat style buttons
11414           - Added ScrollBar drawing
11415
11416 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11417
11418         * ThemeClearlooks.cs: Removed some unneeded code.
11419         * ThemeGtk.cs: First part of ThemeGtk enhancements.
11420
11421 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11422
11423         * LinkLabel.cs: We need to update the hover drawing when
11424           leaving the control as well.
11425
11426 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
11427
11428         * DataGrid.cs: Clicking on non empty areas in the columns
11429            area was giving an exception
11430
11431 2006-01-17  Jackson Harper  <jackson@ximian.com>
11432
11433         * ThemeWin32Classic.cs:
11434         * ListView.cs: Do not draw/clip the headers when the header style
11435         is None.
11436
11437 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11438
11439         * DataGrid.cs: Fixes 77260
11440         
11441 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11442
11443         * DataGrid.cs: Clicking on a column on a empty grid was giving
11444           an exception
11445
11446 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11447
11448         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
11449           or any keypress will crash the grid.
11450
11451 2006-01-17  Mike Kestner  <mkestner@novell.com>
11452
11453         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
11454         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
11455         invisible/previously-visible items.
11456         [Fixes #76909]
11457
11458 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
11459
11460         * ThemeClearlooks.cs:
11461         - Added CL_Draw_Button method; now other theme controls that are 
11462           not derived from button or do not have a button can draw buttons
11463           too
11464         - Updated ComboBox drawing
11465         - Beautified RadioButton drawing
11466         - Corrected drawing of bottom and left tabs
11467         - Beautified DateTimePicker and MonthCalendar
11468         - Added CPDrawButton and CPDrawRadioButton
11469
11470 2006-01-16  Jackson Harper  <jackson@ximian.com>
11471
11472         * ComboBox.cs: Set the initial value of the scrollbar to the
11473         current index. Reduce the numbers of refreshs and IndexOfs called.
11474
11475 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
11476
11477         * FileDialog.cs: When the file listview is focused hitting the
11478           backspace key moves the fileview to the parent directory
11479
11480 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11481
11482         * Form.cs: 
11483           - Added RecreateHandle call when changing taskbar visibility to 
11484             trigger reparenting in Win32 driver (Fixes #75719)
11485           - If a window has minimize or maximize buttons, it cannot have
11486             a help button
11487         * XplatUIWin32.cs:
11488           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
11489             the toplevel form with FosterParent (A toolwindow not on the
11490             taskbar) (Fixes #75719)
11491           - Made FosterParent a toolwindow
11492
11493 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11494
11495         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
11496
11497 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11498
11499         * ToolTip.cs: If SetToolTip is called from a control and the mouse
11500           is currently over that control, make sure that tooltip_window.Text
11501           gets updated
11502
11503 2006-01-13  Mike Kestner  <mkestner@novell.com>
11504
11505         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
11506
11507 2006-01-13  Jackson Harper  <jackson@ximian.com>
11508
11509         * TreeView.cs: On MS GetNodeAt never actually factors in the X
11510         value passed.  Also redraw the selected node when we recieve
11511         focus, so tabbing between trees works correctly.
11512
11513 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11514
11515         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
11516           ~/.gconf/%gconf-tree.xml, so use
11517           .gconf/desktop/gnome/interface/%gconf.xml
11518
11519 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11520
11521         * TextControl.cs: Draw text in gray if control is disabled
11522
11523 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11524
11525         * TreeView.cs: Draw the focus rectangle outside the highlight, to
11526           make sure it's always visible. Fixes #76680.
11527
11528 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11529
11530         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
11531
11532 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
11533
11534         * PageSetupDialog.cs: Added.
11535         * PrintDialog.cs: Attributes.
11536         * PrintPreviewControl.cs: Updates.
11537         * PrintPreviewDialog.cs: Updates.
11538         
11539 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11540
11541         * Control.cs: Undid my selection check fix, since it's not needed
11542         * TextBoxBase.cs:
11543           - Now considering the presence of hscroll/vscroll when sizing
11544             vscroll/hscroll respectively. Fixed bug #77077
11545           - Added Left/Up/Down/Right to IsInputKey list to prevent
11546             ContainerControl from stealing them. This fixes what I broke
11547             with my last checkin.
11548
11549 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
11550
11551         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
11552           I finally understand how the property can be set without a setter :-)
11553
11554 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11555
11556         * Application.cs:
11557           - Switched RunLoop to use static Message.Create to create a 
11558             Message object
11559           - Added PreProcessMessage call in runloop for keyboard events; this
11560             is part of the fix for #77219, I overlooked this originally in the
11561             MSDN doc for PreProcessMessage
11562         * Control.cs:
11563           - Removed call to PreProcessMessage from handling of keyboard 
11564             messages; it's supposed to be done in the message pump
11565           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
11566             per MSDN documentation.
11567           - IsInputChar: All chars are input chars by default; removed the 
11568             parent calling chain, MS does not document that
11569           - PreProcessMessage: If IsInputChar is true, we want to return false
11570             to allow dispatching of the message
11571           - When selecting the next control, now also check that we're not
11572             selecting ourselves again and therefore return a false positive.
11573         * TextBoxBase.cs:
11574           - Tried to match return values for IsInputKey and ProcessDialogKey
11575             to what MS returns; moved processing of our special keys outside
11576             ProcessDialogKey since MS does not seem to return true on those.
11577           - Moved code that previously was in ProcessDialogKey into new private
11578             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
11579           - Reworked handling of WM_CHAR to not have to duplicate code from
11580             Control.cs anymore, instead we simply call down to base.
11581            
11582 2006-01-12  Jackson Harper  <jackson@ximian.com>
11583
11584         * ComboBox.cs: We always need to refresh the text area when
11585         EndUpdate is called. Fixes the combobox in the file dialog.
11586         * Control.cs: Don't create the creator_thread until the controls
11587         handle is created.  Also in InvokeRequired we check if the
11588         creator_thread is null. This gives the effect of InvokeRequired
11589         returning true if the controls handle is not created yet, and
11590         matches MS.
11591
11592 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11593
11594         * XplatUI.cs:
11595           - Added StartLoop() driver method. This is used to allow drivers to
11596             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
11597             loop for a particular thread
11598           - Added EndLoop() driver method. This is called once the message
11599             pump for the thread is shut down
11600           - Added SupportsTransparency method to allow the driver to indicate
11601             opacity support for windows
11602         * Form.cs:
11603           - Removed TODO attribute, completed AllowTransparency property
11604           - Added documented logic to Opacity
11605         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
11606           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
11607           versions of CompatibleTextRendering
11608         * X11Structs.cs: Added opacity atom to our atom enumeration
11609         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
11610           of a form might be set before it's reparented by the WM, and we need
11611           the opacity value without calling up to Form)
11612         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
11613           SupportsTransparency() driver methods
11614         * Application.cs: Now calling StartLoop and EndLoop driver methods
11615         * XplatUIX11.cs:
11616           - Added opacity atom registration
11617           - Added StartLoop()/EndLoop() methods. They're empty right now but
11618             will need to get implemented when we switch to a per-thread queue
11619           - Implemented SupportsTransparency() method
11620           - Implemented SetWindowTransparency() method
11621           - Added support for setting the opacity value when a window is
11622             reparented (since the opacity needs to be set on the WM frame)
11623         * XplatUIOSX.cs, XplatUIWin32.cs:
11624           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
11625
11626 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11627
11628         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
11629
11630 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11631
11632         * FileDialog.cs: Added ToolTip for MWFFileView
11633         * MimeIcon.cs: Rewrote GnomeHandler.
11634           - Get currently used gnome icon theme from
11635             ($HOME)/.gconf/%gconf-tree.xml
11636           - Make use of inherited icon themes
11637           - Support SVG icon themes like Tango via librsvg
11638
11639 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11640
11641         Revert's Jackson's revert which broke 2.0 builds.   Fix both
11642         builds. 
11643         
11644         * Application.cs: Move the use_compatible_text_rendering outside
11645         the NET_2_0 define.  If we ever need to use the
11646         use_compatible_text_rendering on the individual controls they will
11647         access the variable from the common shared code paths.
11648
11649 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11650
11651         * XplatUI.cs:
11652           - Added more granular debug options
11653           - Added method to print both window text and id
11654           - Switched debug output to use new Window() debug method
11655           - Added IsEnabled() driver method
11656           - Added EnableWindow() driver method
11657         * Form.cs:
11658           - Removed end_modal; no longer needed, new loop handles termination
11659             via 'closing' variable
11660           - If form is modal, setting DialogResult will now initiate loop
11661             termination via 'closing' variable
11662           - Added support for is_enabled/WS_DISABLED to CreateParams
11663           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
11664             does all the work
11665           - Removed code that's now in RunLoop from ShowDialog()
11666           - Added various documented sanity checks to ShowDialog()
11667           - Added handling of WM_DESTROY message; we set 'closing' on getting
11668             the message to indicate the message pump to terminate
11669           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
11670             send by the Application.ExitThread method. (We send the message
11671             to destroy the window after all other events have been
11672             processed through the queue, instead of destroying the handle 
11673             directly)
11674           - Moved code from Close() method to WM_CLOSE handler; added logic
11675             to only send close-related events if the form is not displayed
11676             modal
11677         * Splitter.cs (..ctor): Fixed typo in resource name
11678         * Control.cs:
11679           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
11680             brush now
11681           - set_Cursor: Now only setting calling into XplatUI if the handle for
11682             the control is already created; this avoids implict handle creation
11683             or crashes if it's not created
11684           - set_Enabled: Now setting the enabled state via the new driver method
11685             instead of just tracking it
11686           - CreateParams: Added logic to set WS_DISABLED based on enabled state
11687           - CreateControl: Reordered event firing and method calls to more
11688             closely fire events in the order MS does. Now setting the
11689             enabled state in the driver when creating the control.
11690           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
11691             match MS order
11692         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
11693           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
11694         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
11695         * Hwnd.cs:
11696           - Added tracking of window enabled state (get_Enabled/set_Enabled)
11697           - Added EnabledHwnd property to easily allow a driver to find the
11698             handle of the first enabled window in the parent chain (this is
11699             used by drivers to pass up input events of disabled windows)
11700         * XplatUIDriver.cs: Added IsEnabled() method
11701         * Application.cs:
11702           - Removed crude and obsolete exiting tracking variable
11703           - Removed internal ModalRun(); replaced by RunLoop()
11704           - Implemented private CloseForms() method to allow closing all 
11705             windows owned by a particular (or all) threads
11706           - Exit() now properly closes all windows without forcing the message
11707             pump to quit
11708           - Removed obsolete InternalExit() method
11709           - Changed Run() methods to use new RunLoop() message pump
11710           - Implemented new RunLoop() method for both modal and non-modal forms
11711         * CommonDialog.cs:
11712           - get_CreateParams: Added setting of WS_DISABLED
11713           - Simplified ShowDialog(); now all the work is done in RunLoop(),
11714             invoked via Form.ShowDialog()
11715         * NativeWindow.cs: We don't remove the window from the collection when
11716           the handle is destroyed; there might still be messages for it in the
11717           queue (mainly the resulting WM_DESTROY); instead it will be removed
11718           when Control calls InvalidateHandle in the WM_DESTROY handler
11719         * XplatUIX11.cs:
11720           - CreateWindow: Added logic to handle the WS_DISABLED window style
11721           - EnableWindow: Implemented based on Hwnd.Enabled
11722           - GetMessage: Reset PostQuitState so the method can be called again
11723           - Implemented support for disabled windows (passing messages to the
11724             first enabled parent) in handling all input messages
11725           - Added optimizations for handling Expose events
11726           - Implemeted new driver method IsEnabled()
11727           - Now always resetting paint pending tracking vars when we start paint
11728           - Re-implemented UpdateWindow via just sending a WM_PAINT message
11729         * XplatUIOSX.cs: Added IsEnabled method stub
11730         * XplatUIWin32.cs: Implemented new IsEnabled() method
11731
11732 2006-01-11  Jackson Harper  <jackson@ximian.com>
11733
11734         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11735         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
11736         variables a little.
11737         * ColorDialog.cs: Clear out the old form before adding the new
11738         panel.  
11739
11740 2006-01-11  Jackson Harper  <jackson@ximian.com>
11741
11742         * X11Dnd.cs: Make sure to add all the text formats when adding
11743         strings to the data object.
11744         * TreeNodeCollection.cs: When adding to a sorted tree we need to
11745         do some redrawing too.  Also change the UpdateNode to an
11746         UpdateBelow so the newly added node gets painted.
11747         
11748 2006-01-11  Miguel de Icaza  <miguel@novell.com>
11749
11750         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11751         LinkLabel.cs, PropertyGrid.cs: Implement the
11752         UseCompatibleTextRendering property for 2.x
11753
11754         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
11755
11756 2006-01-11  Jackson Harper  <jackson@ximian.com>
11757
11758         * TreeView.cs: Use the property for setting the selected node so
11759         the correct events get raised.
11760         * TreeNode.cs: Update the tree when the fore/back colours of a
11761         node are set.
11762
11763 2006-01-10  Jackson Harper  <jackson@ximian.com>
11764
11765         * TreeView.cs: Allow setting SelectedNode to null.
11766
11767 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11768
11769         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
11770
11771 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11772
11773         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
11774
11775 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11776
11777         * PrintDialog.cs: Added attributes and set default property values.
11778
11779 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11780
11781         * PrintControllerWithStatusDialog.cs: 
11782         Added PrintControllerWithStatusDialog.
11783
11784 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11785
11786         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11787         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
11788
11789 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11790
11791         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
11792
11793 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11794
11795         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
11796         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
11797
11798 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11799
11800         * MimeIcon.cs: Added internal class SVGUtil.
11801
11802 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11803
11804         * FileDialog.cs: Don't crash if there are two files with the
11805           same name but different locations.
11806
11807 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
11808
11809         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
11810         dates across multiple month grids. Used to not highlight entire 
11811         month, but does now.
11812         
11813 2006-01-06  Jackson Harper  <jackson@ximian.com>
11814
11815         * MonthCalendar.cs: Removed DoEvents call to prevent a running
11816         message loop. Change timer intervals to numbers that seem more
11817         natural.
11818
11819 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
11820
11821         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
11822           object for location info since screen object is now implemented.
11823
11824 2006-01-05  Jackson Harper  <jackson@ximian.com>
11825
11826         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
11827         * AsyncMethodResult.cs: We no longer use a WeakReference for the
11828         AsyncMethodResult, this is because we ALWAYS want the
11829         ManualResetEvent to get set.
11830         * Control.cs: When disposing use an async invoke to call shutdown
11831         code, so that thigns don't block on the finalizer thread.  Also
11832         check if we even have a message loop before trying to send
11833         messages, if we don't then don't bother sending messages.
11834         - No more weak references for async methods
11835         * XplatUIDriver.cs: No more weak references for async methods.
11836
11837 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11838
11839         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
11840           returns two FontFamily with the same name
11841
11842 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11843
11844         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
11845           drawing disabled text. Instead using the ColorGrayText color
11846
11847 2006-01-04  Jackson Harper  <jackson@ximian.com>
11848
11849         * TreeNode.cs: redraw the node when its image index is changed.
11850
11851 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11852
11853         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
11854           time I checked there are no others like it.
11855
11856 2006-01-04  Jackson Harper  <jackson@ximian.com>
11857
11858         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
11859         this gives the behavoir I was looking for.
11860         * Control.cs: Special case Invoking EventHandlers, this matches MS
11861         and fixes part of bug #76326.
11862
11863 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11864
11865         * ThemeClearlooks.cs, FileDialog.cs:
11866           - Reflect the latest Theme class changes
11867           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
11868             with DateTime
11869             
11870 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11871
11872         * Theme.cs: Cache UI resource images and resize them if needed
11873
11874 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11875
11876         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
11877           is called. This fixes the crash in Nexxia when setting the font
11878           attributes in the chat. [However, RTF needs a look-over to make sure
11879           that all SelectionXXX methods handle the special case that selection
11880           is empty and therefore the change must be applied to all text starting
11881           at the cursor/selection start]
11882
11883 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
11884
11885         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11886           XplatUIOSX.cs: Added SendMessage and PostMessage methods
11887         * X11Keyboard.cs: Switched to new way of calling PostMessage
11888
11889 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11890
11891         * Theme.cs: Added theme interface for images to allow the theme to
11892           control what images are used for things like FileDialog, MessageBox
11893           icons, etc.
11894         * MessageBox.cs: Now uses the new Theme icon/image interfaces
11895
11896 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
11897
11898         * FileDialog.cs:
11899           - Removed some dead code
11900           - Opening a recently used file does work now
11901           - Small UI enhancements
11902           - Refactoring
11903
11904 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11905
11906         * FileDialog.cs: Forgot too add __MonoCS__
11907
11908 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11909
11910         * FileDialog.cs: We are able to read recently used files now let's
11911           go on and write them.
11912
11913 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
11914
11915         * FileDialog.cs: Breathe some life into "last open"/"recently used"
11916           button
11917         * MimeIcon.cs: Do a check for the top level media type also
11918
11919 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11920
11921         * ThemeClearlooks.cs:
11922           - Added CPDrawStringDisabled
11923           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
11924             some chars if the text doesn't fit into text_rect
11925           - DrawListViewItem: If View = View.LargeIcon center the image;
11926             rewrote the drawing of ListViewItem.Text if View = 
11927             View.LargeIcon
11928
11929 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11930
11931         * MimeIcon.cs: Use default KDE icon theme if there is no
11932           "48x48" directory for the current icon theme, fixes #77114
11933         * Mime.cs: Disable not working and actually not used code. 
11934         * ThemeWin32Classic.cs:
11935           - Replace "new SolidBrush" in GetControlBackBrush and
11936             GetControlForeBrush with ResPool.GetSolidBrush
11937           - Changed DrawListViewItem from private to protected virtual
11938         * FileDialog.cs:
11939           - Added form.MaximizeBox = true
11940           - Don't throw an exception if there is a broken symbolic link
11941
11942 2005-12-23  Jackson Harper  <jackson@ximian.com>
11943
11944         * TabControl.cs: Give the panels focus, keyboard navigation is
11945         fixed so this works correctly now.
11946         - We need these key events also.
11947         * ToolBar.cs: Remove some of the poor mans double buffering.
11948         
11949 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
11950
11951         * ComboBox.cs: The internal TextBox now returns the focus.
11952
11953 2005-12-23  Jackson Harper  <jackson@ximian.com>
11954
11955         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
11956
11957 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11958
11959         * Control.cs: Removed debug code
11960         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
11961           implicit children
11962
11963 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
11964
11965         * Control.cs: When creating the control, update the Z-order after
11966           all it's children are created, too. (Fixes nexxia not showing
11967           picturebox bug)
11968
11969 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11970
11971         * Control.cs: Do not update the anchoring distances if layout is
11972           suspended, instead do it once layout is resumed
11973
11974 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
11975
11976         * Control.cs: 
11977           - After many hours of debugging, for both Jackson and
11978             myself, it turns out that it helps to set the parent of a control
11979             if you want to actually see it onscreen. In the spirit of that
11980             discovery, we're now setting the parent of the control and
11981             it's children when the control's handle is created. This fix
11982             will make Lutz Roeder's Reflector run happily. 
11983           - now just creating the handle instead of the whole control when
11984             getting a graphics context for the control.
11985
11986 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11987
11988         * ScrollableControl.cs: When calculating the canvas, don't consider
11989           the scrollbar widths. Instead, predict if horizontal scrollbar
11990           will affect canvas when deciding on vertical display and vice versa.
11991
11992 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11993
11994         * RichTextBox.cs: Set default RTF font for documents that don't
11995           have a font table (Fixes #77076)
11996
11997 2005-12-22  Jackson Harper  <jackson@ximian.com>
11998
11999         * TextBoxBase.cs: It's difficult to do, but you can have an empty
12000         clipboard. This prevents a NullRef in that case.
12001         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
12002         clipboard. PRIMARY is for the currently selected text only. (We
12003         should implement PRIMARY at some point.
12004
12005 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12006
12007         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
12008           a Unicode function with a structure that was defined in Ansi way.
12009           This fixes #76942.
12010
12011 2005-12-21  Jackson Harper  <jackson@ximian.com>
12012
12013         * StatusBar.cs: Statusbar handles its fore/back colours on it's
12014         on. Because thats how it rolls. (and this avoids it using ambient
12015         colours).
12016         * ThemeWin32Classic.cs: Use the proper back color for filling.
12017         * Menu.cs: Use the system menu bar color for drawing menu
12018         bars. Using the window back color will bring ambient colours into
12019         the picture.
12020
12021 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
12022
12023         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
12024           Bitmaps were created and not disposed.
12025
12026 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12027
12028         * Control.cs (CreateControl): Don't do anything if the control is
12029           already created, otherwise we'd fire the OnCreated event more than
12030           once
12031
12032 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12033
12034         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
12035           will always match. Instead return -1. Fixes #76464.
12036
12037 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12038
12039         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
12040           neither the beginning nor the end of the line (Fixes bug #76479)
12041
12042 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12043
12044         * Control.cs:
12045           - ControlNativeWindow.ControlFromHandle(): Now handling situation
12046             where handle is invalid
12047           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
12048             instead of slower linear search
12049         * NativeWindow.cs: Don't remove the window from the hashtable until
12050           after the driver has destroyed it (since the driver might use
12051           Control.FromHandle to lookup the control object
12052         * Hwnd.cs: Added DestroyPending property to track if a window is 
12053           already destroyed as far as the driver is concerned and only hasn't
12054           yet notified the control
12055         * XplatUIX11.cs:
12056           - Activate(): Check if the window is still valid before using the 
12057             handle
12058           - Implemented DestroyChildWindow() method to mark child windows as
12059             destroyed when a window is destroyed. This prevents situations 
12060             where we might call an X method based on queued events for a
12061             window that already has been destroyed but we haven't yet pulled
12062             the destroy method from the queue.
12063           - Added a call to the new DestroyChildWindow() method to the drivers
12064             DestroyWindow code. Also now marking the destroyed window itself
12065             as pending
12066
12067 2005-12-20  Jackson Harper  <jackson@ximian.com>
12068
12069         * StatusBar.cs:
12070         * StatusBarPanel.cs: Don't calculate panel sizes on draw
12071         anymore. Just do them when needed, also track the rects of panels
12072         so that we can optimize refreshing more in the future.
12073
12074 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
12075
12076         * ColorDialog.cs: Fixed focus drawing in small color controls
12077
12078 2005-12-19  Jackson Harper  <jackson@ximian.com>
12079
12080         * InternalWindowManager.cs:
12081         * MdiWindowManager.cs: Cleanup some coordinate system changes so
12082         moving windows works properly.
12083
12084 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
12085
12086         * Control.cs: 
12087           - Removed call to InitLayout() from SetBoundsCore(); doc says
12088             it's only called when a control is added to a container
12089           - Split InitLayout logic, moved to separate UpdateDistances() method
12090             since we need to perform those calculations more often than just
12091             when adding the control to a container. (Needed to fix #77022)
12092           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
12093           - Reduced the OnBindingContextChanged events count, don't send them
12094             unless the control is created, we still aren't totally matching
12095             MS, but I can't quite figure out some of their rules
12096
12097 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12098
12099         * ThemeClearlooks.cs: Corrected distance between ProgressBar
12100           stripes
12101
12102 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12103
12104         * ThemeClearlooks.cs:
12105           - Updated ProgressBar drawing
12106           - Corrected drawing of ScrollBars and scroll buttons
12107           - Some temporary fixes for minor pixel artefacts
12108
12109 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
12110
12111         * Control.cs:
12112           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
12113             cause events to be sent in the same order as MS does.
12114           - Added ChangeParent() method to trigger various OnXXXChanged events
12115             that need to be fired when a parent changes (This is a reworking
12116             of the patch from r54254, with the X11 errors fixed)
12117           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
12118             since on MS we get OnLayoutChanged events when calling Clear()
12119           - Changed Enabled property to consider parent state as well, if a
12120             parent is not enabled, the control will not be either
12121           - Changed Parent property to simply call Controls.Add() since that
12122             now does all the work required, this way we avoid code duplication
12123           - Threw in a few OnBindingsContextChanged calls to try and match
12124             when MS sends them. We seem to send a few too many, though.
12125           - Added call to CreateControl when adding the control to a parent.
12126             We were never calling CreateControl. Still needs some work, in
12127             some places we treat HandleCreated and ControlCreated as equal, 
12128             which is wrong
12129           - Removed obsolete commented out code from UpdateZOrder()
12130
12131 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12132
12133         * ThemeClearlooks.cs: Updated TrackBar drawing.
12134
12135 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12136
12137         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
12138
12139 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12140
12141         * FileDialog.cs: Add the Help button and the open readonly
12142           checkbox only if needed
12143
12144 2005-12-16  Jackson Harper  <jackson@ximian.com>
12145
12146         * Control.cs: Make sure we have an active menu before trying to
12147         process commands on it. Prevents menu-less forms from crashing
12148         when Alt is pressed.
12149         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
12150         Dieter Bremes.
12151         * RichTextBox.cs: Expand statement to help out gmcs and fix the
12152         2.0 build.
12153
12154 2005-12-16  Jackson Harper  <jackson@ximian.com>
12155
12156         * InternalWindowManager.cs: Don't translate tool windows screen
12157         coordinates. This fixes windows 'bouncing' around when being moved.
12158
12159 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12160
12161         * TextBoxBase.cs:
12162           - MaxLength now treats 2^31-1 equal to unlimited length (this is
12163             not quite MS compatible, MS uses that number only for single line
12164             and 2^32-1 for multi-line, but I figure it won't hurt keeping
12165             the limit at 2GB)
12166           - Now enforcing the MaxLength limit when entering characters
12167           - Added argument to internal Paste() method to track if it's called
12168             from programatically or via keyboard, since keyboard driven pastes
12169             need to enforce max-length
12170           - Added logic to Paste to only paste as many chars as MaxLength 
12171             allows
12172         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
12173         * TextControl.cs:
12174           - Added Length property to return number of characters in document
12175           - Added private CharCount property which only tracks actual chars
12176             in the document (no linefeeds) and fires event when CharCount
12177             changes
12178           - Added tracking of character count to all methods that alter it
12179           - Added LengthChanged event to allow applications to subscribe
12180             to any changes to the document
12181
12182 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12183
12184         * TextBox.cs: 
12185           - Removed local password_char field (moved to TextBoxBase)
12186           - Now setting the document's password var when password is
12187             set
12188         * TextBoxBase.cs:
12189           - Added password_char field (needed here so MultiLine can
12190             access it)
12191           - Added logic to MultiLine property setter to set the document's
12192             variable when password display is allowed
12193           - Removed debug code and made some debug code conditional
12194         * TextControl.cs:
12195           - Added RecalculatePasswordLine() method to handle special password
12196             char only lines
12197           - Added PasswordChar property, also added related tracking vars
12198           - Draw() method now uses local text var for grabbing text to draw,
12199             this var is set to line.text unless we're doing password display,
12200             then it is set to the pre-generated all-password-chars line
12201           - Added calling RecalculatePasswordLine() method for password lines
12202
12203 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12204
12205         * Hwnd.cs: 
12206           - Added Reparented property to allow tracking of Window Manager
12207             reparenting actions (which affect X/Y calculations of toplevel 
12208             windows)
12209           - Made ToString() print window handles in hex
12210         * XplatUIX11.cs:
12211           - AddConfigureNotify(): Now uses reparented state off Hwnd to
12212             determine if X/Y needs offsetting
12213           - AddConfigureNotify(): Fixed offset calculations
12214           - Now adds ReparentNotify messages into the queue
12215           - Now processes ReparentNotify messages and causes a 
12216             WM_WINDOWPOSCHANGED message to be sent upstream if a window
12217             is reparented (as most likely it's X/Y coordinates are changed
12218             due to that)
12219
12220 2005-12-14  Jackson Harper  <jackson@ximian.com>
12221
12222         * XplatUIX11.cs: Tool windows still need to respek focus.
12223
12224 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12225
12226         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
12227           have a working release
12228
12229 2005-12-13  Jackson Harper  <jackson@ximian.com>
12230
12231         * Form.cs: Update styles after setting the border style regardless
12232         of whether or not the window is using a window manager.
12233
12234 2005-12-13  Jackson Harper  <jackson@ximian.com>
12235
12236         * Form.cs: We now hook into an internal window manager instead of just an
12237         MDI subsystem, this is so we can have properly behaving tool windows.
12238         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
12239         * InternalWindowManager.cs: New internal class that acts as a
12240         window manager for tool windows and as a base for mdi windows.
12241         * MdiWindowManager.cs: New class that acts as a window manager for
12242         mdi windows.
12243
12244 2005-12-12  Jackson Harper  <jackson@ximian.com>
12245
12246         * Control.cs: Updates so we match behavoir for for implicit
12247         controls. Fixes explosions in MDI.
12248
12249 2005-12-12  Jackson Harper  <jackson@ximian.com>
12250
12251         * Control.cs: Implement Invalidate (Region).
12252
12253 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
12254
12255         * Control.cs: 
12256           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
12257             the same events as MS does. MS fires events for each property 
12258             except, for unknown reasons, Cursor, when the control is reparented. 
12259             I can't seem to totally match add/remove since MS also fires some 
12260             VisibleChanged events, which makes no sense. Consolidated the
12261             parenting code into a separate method so it can be called from
12262             both Add and Remove. set_Parent no longer needs any special logic
12263             as it calls the parent's add method which implicitly fires
12264             all events
12265           - Removed some obsolete code and debug output
12266           - Enabled state is inherited from parents, if this is enabled
12267
12268 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
12269
12270         * Form.cs: Removed commented out code
12271
12272 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
12273
12274         * Control.cs:
12275           - Added internal version of Invoke, with additional argument 
12276             indicating if we're calling it from a Dispose() handler. That
12277             way we can avoid BeginInvoke throwing an exception if we're
12278             calling for an already destroyed window.
12279           - Added a dispose argument to BeginInvokeInternal, and made the
12280             check if a valid window handle chain exists conditional on
12281             it not being a dispose call
12282           - Removed code in DestroyHandle to destroy our children. Since we
12283             now handle the WM_DESTROY message we will catch all our children
12284             being destroyed.
12285           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
12286         * Form.cs:
12287           - Added a field to track the application context of the form.
12288           - No need to set closing variable as response to WM_CLOSE, instead
12289             we destroy the window. We also call PostQuitMessage if the form
12290             has an application context (which makes it the main app form,
12291             which, when closed terminates the app)
12292         * XplatUI.cs:
12293           - Dropped Exit() method, it's naming was confusing
12294           - Added PostQuitMessage() which causes GetMessage to return false
12295             once the message queue is empty
12296         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
12297           PostQuitMessage()
12298         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
12299           no longer a valid XplatUI method, but left it in since it's used
12300           internally. Added empty PostQuitMessage() method.
12301         * MenuAPI.cs: Replaced call to Exit() with call to
12302           PostQuitMessage, even though this is probably no longer needed.
12303         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
12304         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
12305         * Application.cs:
12306           - Replaced call to XplatUI.Exit() with PostQuitMessage()
12307           - Removed old debug code that would call XplatUI for exception
12308             display, enabled standard exception handling (Still not enabled
12309             though, until NativeWindow's ExternalExceptionHandler define
12310             is removed
12311         * NativeWindow.cs:
12312           - Added internal method to allow control to update NativeWindow
12313             after a window has been destroyed
12314           - Added handling of already destroyed windows when calling i
12315             DestroyWindow
12316           - Added removal of handle from list on ReleaseHandle
12317         * XplatUIX11.cs:
12318           - Dropped GetMessageResult var and related code
12319           - Added PostQuitState to field to track if PostQuitMessage has been
12320             called
12321           - Dropped Exit() method
12322           - Added PostQuitMessage() method
12323           - GetMessage now will return false if PostQuitState is set and no
12324             more messages are in the queue.
12325           - Expose handler will no longer generate WM_PAINT messages if we are
12326             in PostQuitState since it's very likely any windows have already
12327             been destroyed, and since Hwnd won't get updated until we have
12328             processed the DestroyNotify we'd be causing X errors.
12329         
12330 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12331
12332         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
12333           Thanks to Mike for pointing out the err of my ways.
12334
12335 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12336
12337         * Control.cs(PreProcessMessage): Moved menu handling back, but
12338           after all other key handling, to match MS (who handles Menu in
12339           DefWndProc)
12340         * Menu.cs (WndProc): Removed my brainfart
12341
12342 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12343
12344         * Control.cs(PreProcessMessage): Removed special menu handling 
12345         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
12346
12347 2005-12-07  Mike Kestner  <mkestner@novell.com>
12348
12349         * Control.cs : special case SYSKEYUP so that we can adjust keynav
12350         state according in tracker.
12351         * Menu.cs : promote tracker field to base class and provide a tracker
12352         lookup capability.  Add/Remove shortcuts dynamically if the top menu
12353         has a tracker. Unparent items that are removed from the collection.
12354         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
12355         * Theme*.cs: add always_show_hotkeys field to support configurability
12356         of mnemonic display.  win32 doesn't show mnemonics until Alt is
12357         pressed.
12358
12359 2005-12-07  Jackson Harper  <jackson@ximian.com>
12360
12361         * MdiChildContext.cs: Use Control.ResetCursor.
12362         * Control.cs: ResetCursor needs to set the property so that the
12363         correct XplatUI call gets made.
12364
12365 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12366
12367         * Control.cs: More fixes to make our key events match MS. We
12368           were not setting the modifier state on KeyData, and we were
12369           not generating any events when Alt was pressed with a key
12370           since handling of WM_SYSxxx was missing for the OnKey methods.
12371
12372 2005-12-07  Jackson Harper  <jackson@ximian.com>
12373
12374         * MdiChildContext.cs: reenable the sizing code.
12375         - When the mouse leaves a window reset its cursor.
12376
12377 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12378
12379         * ThemeClearlooks.cs: Reflect latest Hwnd changes
12380
12381 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12382
12383         * Hwnd.cs: Now using the theme 3d bordersize to calculate
12384           widths of Fixed3D borders
12385
12386 2005-12-07  Jackson Harper  <jackson@ximian.com>
12387
12388         * MdiClient.cs: Fix warnings. Earn Mike's love.
12389
12390 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12391
12392         * ThemeClearlooks.cs:
12393           - Adjusted mouse over button color
12394           - Added first parts of CheckBox drawing
12395           - Added correct color for selected text background
12396           - Fixed ComboBox drawing
12397           - Added CPDrawBorder3D and CPDrawBorder
12398
12399 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12400
12401         * XplatUIX11.cs: Added call to XBell for AudibleAlert
12402
12403 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
12404
12405         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12406           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
12407           alert users via sound. We could add an enum arg with different
12408           types of alerts in the future
12409
12410 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12411
12412         * Control.cs: Fix behaviour problems pointed out by Mike
12413
12414 2005-12-05  Mike Kestner  <mkestner@novell.com>
12415
12416         * StatusBarPanel.cs: add Invalidate method and hook it into all the
12417         prop setters.  Calls parent.Refresh for now, but could be maybe be
12418         optimized with an internal method on StatusBar at some point.
12419         [Fixes #76513]
12420
12421 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
12422
12423         * RichTextBox.cs: Implemented get_SelectionColor
12424
12425 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
12426
12427         * ThemeClearlooks.cs:
12428           - Removed dead code
12429           - Draw black button border only if button is Form.AcceptButton
12430           - Draw correct button color for pressed RadioButton if the mouse 
12431             has entered the button
12432           - Updated ProgressBar drawing!
12433           - Updated CPDrawSizeGrip drawing
12434           - Updated StatusBarPanel drawing
12435
12436 2005-12-05  Mike Kestner  <mkestner@novell.com>
12437
12438         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
12439         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
12440
12441 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
12442
12443         * ThemeClearlooks.cs: Initial check-in, activate with
12444           export MONO_THEME=clearlooks
12445         * ThemeEngine.cs: Added ThemeClearlooks
12446
12447 2005-12-03  Mike Kestner  <mkestner@novell.com>
12448
12449         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
12450         [Fixes #76897]
12451
12452 2005-12-02  Jackson Harper  <jackson@ximian.com>
12453
12454         * Form.cs: If the child form has no menu the default main menu is
12455         used as the active menu.
12456
12457 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
12458
12459         * ListBox.cs: Check if any items exist before trying to resolve 
12460           coordinates into items
12461
12462 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12463
12464         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
12465           as the second color for the background hatch
12466
12467 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12468
12469         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
12470         * RichTextBox.cs: FormatText position arguments are 1-based, now making
12471           sure that what we pass to FormatText is always 1-based. Fixes #76885
12472
12473 2005-11-29  Miguel de Icaza  <miguel@novell.com>
12474
12475         * NumericUpDown.cs (EndInit): When we are done initializing,
12476         reflect any updates on the UI.
12477
12478 2005-12-02  Jackson Harper  <jackson@ximian.com>
12479
12480         * ImplicitHScrollBar.cs:
12481         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
12482         their container controls.
12483         * TreeView.cs: Use the new implicit scrollbars.
12484
12485 2005-12-02  Jackson Harper  <jackson@ximian.com>
12486
12487         * TreeView.cs: Make top_node internal so the TreeNodeCollections
12488         can play with it.
12489         * TreeNodeCollection.cs: If we remove the topnode we need to
12490         update topnode to the next node in line.
12491         - When clearing nodes go through the same process as removing
12492         them, so they get depareneted and checked if they are top node.
12493
12494 2005-12-01  Jackson Harper  <jackson@ximian.com>
12495
12496         * TreeView.cs: When imagelists are used the image area is
12497         selectable as well as the text.
12498         - If there are no selected nodes select the first one.
12499         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
12500         so don't do it more then we need to.
12501
12502 2005-12-01  Jackson Harper  <jackson@ximian.com>
12503
12504         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
12505         that arrows can be scaled.
12506
12507 2005-12-01  Jackson Harper  <jackson@ximian.com>
12508
12509         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
12510         fail. Patch by Dieter Bremes
12511
12512 2005-11-30  Jackson Harper  <jackson@ximian.com>
12513
12514         * Form.cs: Property is 2.0 only
12515         * PrintDialog.cs: Signature fix.
12516
12517 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12518
12519         * TextControl.cs: 
12520           - No longer artificially moves text 2 pixels down (now that we have
12521             borders this is no longer needed)
12522           - Added calcs for left, hanging and right indent
12523
12524 2005-11-23  Mike Kestner  <mkestner@novell.com>
12525
12526         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
12527
12528 2005-11-30  Jackson Harper  <jackson@ximian.com>
12529
12530         * MdiChildContext.cs: Set the cloned menus forms, as these don't
12531         get cloned as part of CloneMenu ().
12532         * Menu.cs: Make sure the parent of the items get set correctly
12533         when they are added.  And the owners are notified of the changes.
12534         * Form.cs: Create an ActiveMenu property, so that when MDI is used
12535         we can change the menu being displayed/handled by the form without
12536         changing the menu assosciated with the form.
12537         - Don't let Mdi children draw/handle menus.
12538         
12539 2005-11-30  Jackson Harper  <jackson@ximian.com>
12540
12541         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
12542         a MenuChanged event. Just to make the API a little more
12543         consistent.
12544         * MainMenu.cs:
12545         * MenuItem.cs: Use the new OnMenuChanged
12546         * MdiChildContext.cs: Handle menu merging.
12547         * Form.cs: Implement MergedMenu.
12548         
12549 2005-11-30  Jackson Harper  <jackson@ximian.com>
12550
12551         * Menu.cs: We were misusing Add. Add goes behind the specified
12552         index according to the docs, and does not replace the specified
12553         index. So I added an Insert method.
12554
12555 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12556
12557         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
12558           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
12559           is for Jackson
12560         * RichTextBox.cs: Added calls to base for DnD events
12561
12562 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
12563
12564         * TextControl.cs:
12565           - Fixed drag-selection related crash; style fixes
12566           - Implemented undo class
12567             o Implemented method to capture document state for specified
12568               range in document tree
12569             o Implemented method to restore captured document state
12570             o Implemented cursor tracking
12571             o Implemented basic undo stack
12572           - Added undo cursor tracking to methods altering cursor location
12573           - Added undo tracking to selection deletion (still missing
12574             other text-altering hookups)
12575         * RichTextBox.cs:
12576           - Added SelectionLength property
12577           - Implemented CanPaste()
12578           - Implemented Paste()
12579           - Added missing protected methods
12580           - Fixed RTF->Document conversion; now uses font index 0 and color 
12581             index 0 as the default font for the parsed text
12582           - Fixed RTF<->Document font size translation
12583           - Fixed RTF generation, now properly handles cross-tag boundaries
12584             for single line selection
12585           - No longer always appends blank line to generated RTF
12586           - Removed TODOs
12587           - Added missing attributes
12588           - Hooked up undo-related methods
12589         * TextBoxBase.cs:
12590           - Implemented Copy()
12591           - Implemented Paste()
12592           - Implemented Cut()
12593           - Fixed caret mis-behaviour on backspace across line-boundaries
12594
12595 2005-11-29  Jackson Harper  <jackson@ximian.com>
12596
12597         * MdiClient.cs: Add a method for activating mdi children. Very
12598         basic right now. I imagine someday it might need more girth.
12599         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
12600         children windows names are added to the menu item.
12601         * ThemeWin32Classic.cs: Draw the arrow if the item is an
12602         mdilist. This happens regardless of whether or not there are any
12603         mdi windows to see in the list, and according to my tests happens
12604         before the items are even added. Also happens if there isn't even
12605         an mdi client to get windows from.
12606
12607 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
12608
12609         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
12610         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
12611
12612 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
12613
12614         * DataGridTableStyle.cs:
12615           - Create always the styles for the missing columns even if they are
12616             provided by the user (not default table style)
12617         * DataGrid.cs:
12618           - Fixes bug 76770
12619           - Fixes SetDataBinding (always re-attach source)
12620           - Fixes SetNewDataSource (only clear styles if they are not for 
12621             this source)
12622          -  Expands OnTableStylesCollectionChanged to handle style refresh 
12623             and remove properly
12624
12625 2005-11-29  Jackson Harper  <jackson@ximian.com>
12626
12627         * FileDialog.cs: Implement missing bits, remove some dead
12628         code.
12629         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
12630         creation of the panel so that the options set on the dialog are
12631         seen when the panel is created.
12632         * TreeView.cs: raise a click when items are clicked.
12633         
12634 2005-11-29  Jackson Harper  <jackson@ximian.com>
12635
12636         * MdiClient.cs: Pass some signature methods through to base.
12637
12638 2005-11-28  Jackson Harper  <jackson@ximian.com>
12639
12640         * ListView.cs: Raise the click event when items are clicked.
12641
12642 2005-11-28  Jackson Harper  <jackson@ximian.com>
12643
12644         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
12645         a nullref.
12646
12647 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
12648
12649         * ThemeNice.cs: - Removed 1 pixel bitmaps
12650           - Use SmoothingMode.AntiAlias where it makes sense
12651             (ScrollButton arrow for example)
12652           - Enhanced Button focus drawing
12653           - Fixed ComboBox drawing (no artefacts anymore, focus
12654             rectangle is back again, reduced size of ComboButton, etc.)
12655           - Fixed RadioButton focus drawing for Appearence.Button
12656           - Slight ScrollButton redesign
12657           - Some LinearGradientBrush size fixes
12658           - GroupBoxes have now rounded edges
12659           - Fixed StatusBar drawing
12660
12661 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
12662
12663         * ThemeNice.cs: - Remove dead code
12664           - use correct background colors for menus, etc.
12665           - Fake pixel drawing with 1 pixel bitmaps
12666
12667 2005-11-24  Jackson Harper  <jackson@ximian.com>
12668
12669         * MdiClient.cs: Size the scrollbars when resizing the window.
12670         - Resize the maximized windows when the client is resized
12671         * Form.cs: Make the child context available
12672         
12673 2005-11-23  Jackson Harper  <jackson@ximian.com>
12674
12675         * MdiChildContext.cs: Don't size windows if they are maximized.
12676
12677 2005-11-23  Mike Kestner  <mkestner@novell.com>
12678
12679         * ContextMenu.cs: use MenuTracker.
12680         * Control.cs: remove menu handle usage.
12681         * Form.cs: remove menu handle usage.
12682         * Hwnd.cs: remove menu handle usage.
12683         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
12684         motion and clicks to the new Tracker handlers.
12685         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
12686         and handle usage.
12687         * MenuAPI.cs: refactored to combine popup and menubar event handling.
12688         Killed the MENU and MENUITEM data types and associated collections
12689         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
12690         MenuTracker class that exposes the leftovers from the old MenuAPI
12691         static methods. Restructured Capture handling so that only one grab is
12692         done for the entire menu hierarchy instead of handing off grabs to
12693         submenus. Tracker now has an invisible control to Capture when active.
12694         * MenuItem.cs: add sizing accessors, kill Create
12695         and handle usage.
12696         * Theme.cs: remove menu handle and MENU(ITEM) usage.
12697         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
12698         MENU(ITEM). remove menu handle usage, use Menu directly.
12699         * XplatUIDriver.cs: remove menu handle usage.
12700         * XplatUIOSX.cs: remove menu handle usage.
12701         * XplatUIWin32.cs: remove menu handle usage.
12702         * XplatUIX11.cs: remove menu handle usage.
12703
12704 2005-11-22  Jackson Harper  <jackson@ximian.com>
12705
12706         * Hwnd.cs: Don't compute the menu size for
12707         DefaultClientRectangle.
12708         - Reenable menu sizes being computed for GetClienRectangle.
12709         * Form.cs: Remove comment of trechery
12710         
12711 2005-11-22  Jackson Harper  <jackson@ximian.com>
12712
12713         * Hwnd.cs: The adjustments for the menu bar are made when it is
12714         attached to the form.
12715
12716 2005-11-19  Jackson Harper  <jackson@ximian.com>
12717
12718         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
12719         (just like on windows).
12720
12721 2005-11-19  Jackson Harper  <jackson@ximian.com>
12722
12723         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
12724         use real buttons anymore because they are in non client area. The
12725         one TODO here is that I need to somehow invalidate a section of
12726         the non client area.
12727
12728 2005-11-18  Jackson Harper  <jackson@ximian.com>
12729
12730         * Control.cs: Put the enum check back in now that MDI doesnt have
12731         to use this to set border styles.
12732         * Form.cs: Only set mdi child windows borders if the handle has
12733         been created.
12734         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
12735         this directly on to the driver.
12736         - Get the move start position before adjusting for the titlebar
12737         height, this fixes the windows "skipping" when they are first
12738         moved.
12739
12740 2005-11-18  Jackson Harper  <jackson@ximian.com>
12741
12742         * XplatUIX11.cs: Just compute the mdi borders separately as they
12743         don't totally match up with normal form borders.
12744
12745 2005-11-18  Jackson Harper  <jackson@ximian.com>
12746
12747         * Control.cs: Set WS_ styles for borders, so that the driver does
12748         not have to retrieve the control instance to figure out what kind
12749         of borders it should have.
12750         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
12751         driver can know its an mdi child easily.
12752         * XplatUIX11.cs: Get the border styles and whether the window is
12753         MDI from the Styles and ExStyles params instead of having to get a
12754         control. This prevents a chicken and egg problem.       
12755
12756 2005-11-18  Jackson Harper  <jackson@ximian.com>
12757
12758         * MdiClient.cs: Fix typo so scrollbars show up correctly.
12759
12760 2005-11-18  Jackson Harper  <jackson@ximian.com>
12761
12762         * MdiClient.cs: Calculate when to add and remove scrollbars
12763         correctly.
12764         * MdiChildContext.cs: Adjust the y position to take the titlebar
12765         into account.
12766         - No height for FormBorderStyle.None
12767
12768 2005-11-18  Jackson Harper  <jackson@ximian.com>
12769
12770         * Control.cs: Allow non enum values to be used for
12771         InternalBorderStyle.  MDI does this to set a special border style.
12772         - New utility methods for converting points to/from client coords
12773         - Add the newly created control to the Controls collection before
12774         updating its style. This way UpdateStyle can walk the control
12775         heirarchy to find the control if needed.
12776         so I don't need to create a new Point object all the time.
12777         * Form.cs: Let MDI windows handle their border styles.
12778         - Set styles on MDI windows so the correct title style is derived.
12779         * MdiChildContext.cs: Move all the painting and window handling
12780         into the non client area.
12781         - Use correct sizing and put correct buttons on frames based on
12782         the FormBorderStyle.
12783         - Notify the mdi client about scrolling
12784         - Need to handle the buttons ourselves now, because they are all
12785         in non client areas and we can't add controls there.
12786         * MdiClient.cs: Halfway to scrolling, this implementation is
12787         somewhat broken though, we need to check to make sure other
12788         windows aren't causing scrolling before removing the bars. Also
12789         the bars need to be drawn on top, maybe I can switch implicit
12790         controls to be on top.
12791         * Hwnd.cs: caption_height and tool_caption_height are now
12792         properties of an hwnd, this way they can be set by the driver
12793         based on the type of window they are.  In X11 the window manager
12794         handles the decorations so caption_height is zero unless its an
12795         MDI window.
12796         - Add 3 pixel borders for MDI windows (0xFFFF).
12797         - Get rid of some code duplication, have DefaultClientRectanle
12798         just call GetClientRectangle.
12799         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
12800         Hwnd now.
12801         - Set border styles differently for mdi windows.
12802         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
12803         Hwnd now.
12804         
12805 2005-11-15  Mike Kestner  <mkestner@novell.com>
12806
12807         * Menu.cs: when adding an item to the collection, if item is already 
12808         parented, remove it from the parent.
12809
12810 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
12811
12812         * X11DesktopColors.cs: Added KDE support
12813
12814 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
12815
12816         * XplatUIWin32.cs: 
12817           - Clipboard methods now can translate Rtf format
12818           - No longer removes clipboard contents whenever a new format is added
12819             to allow placing multiple formats on the clipboard
12820         * Clipboard.cs: Clipboard now supports getting a IDataObject and
12821           will place all formats contained in it onto the clipboard. Also
12822           now cleans the clipboard before placing a new object onto it
12823         * RichTextBox.cs:
12824           - Implemented set_Rtf
12825           - Implemented set_SelectedRtf
12826           - Created InsertRTFFromStream() method to allow single code base
12827             for all properties and methods that insert RTF into document
12828           - Removed debug output
12829         * TextControl.cs:
12830           - Fixed Delete(int) to fix up line numbers
12831           - Fixed ReplaceSelection to combine start and end line
12832           - Fixed serious DeleteChars bug that would leave the document tree
12833             broken
12834           - Improved DumpTree with several logic checks to detect broken
12835             document trees
12836           - Removed debug lines
12837           - Fixed Caret.WordForward/WordBack moving code, now always also 
12838             updates caret.tag (fixes crash when word-selecting across tag
12839             boundaries via keyboard)
12840           - Added Insert() method for inserting multiline text into documents
12841           - Fixed DeleteChars() calculation errors that would cause a broken
12842             tag chain with multiple tag lines
12843           - DeleteChars() no longer crashes on multi-tag lines if not all tags
12844           - Split() no longer moves caret if split is at caret location
12845           - ReplaceSelection() now updates the cursor and re-displays it
12846           - ReplaceSelection() now uses new Insert() method to avoid code
12847             duplication
12848           - FormatText() can now handle formatting partial lines
12849         * TextBoxBase.cs:
12850           - Append now uses new TextControl.Insert() method (this avoids 
12851             duplicate code)
12852           - Implemented Ctrl-X (Cut) (
12853           - Implemented Ctrl-C (Copy)
12854           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
12855             regeneration when pasting text; roundtripping Copy&Paste within
12856             edit control still fails due to some calculation bugs in GenerateRTF)
12857           - The Delete key will now remove the current selection if it is visible
12858         * TextBox.cs: Removed debug lines
12859         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
12860           driver to be initialized and can't therefore be done via a static ctor)
12861
12862 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
12863
12864         * TextControl.cs: Added backend code for finding char arrays and strings
12865         * TextBoxBase.cs:
12866           - Added mouse wheel scroll support
12867           - Added support for VScroll and HScroll events
12868         * RichTextBox.cs:
12869           - Implemented all seven Find() variants
12870           - Implemented GetCharFromPosition()
12871           - Implemented GetCharIndexFromPosition()
12872           - Implemented GetLineFromIndex()
12873           - Implemented GetPositionFromCharIndex();
12874           - Implemented SaveFile for PlainText and UnicodeText
12875           - Fixed set_Font, now setting a new font applies that font to
12876             the whole document
12877           - Implemented generic Document to RTF converter
12878           - Implemented SaveFile for RichText format (still missing unicode
12879             conversion for non-ansi chars)
12880           - Implemented get_Rtf
12881           - Implemented get_SelectedRtf
12882
12883 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
12884
12885         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
12886           to allow any captures to be released before triggering OnClick. This
12887           way a click handler may capture the mouse without interference.
12888         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
12889           This way we send them even though X may not allow a grab (if the window
12890           isn't visible, for example)
12891
12892 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
12893
12894         * DataGridViewRowEventArgs.cs: DataGridView implementation
12895         * DataGridViewElement.cs: DataGridView implementation
12896         * DataGridViewComboBoxCell.cs: DataGridView implementation
12897         * DataGridViewDataErrorContexts.cs: DataGridView implementation
12898         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
12899         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
12900         * ImageLayout.cs: DataGridView implementation
12901         * DataGridViewComboBoxColumn.cs: DataGridView implementation
12902         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
12903         * DataGridViewSelectionMode.cs: DataGridView implementation
12904         * IDataGridViewEditingControl.cs: DataGridView implementation
12905         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
12906         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
12907         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
12908         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
12909         * DataGridViewColumnSortMode.cs: DataGridView implementation
12910         * DataGridView.cs: DataGridView implementation
12911         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
12912         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
12913         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
12914         * Padding.cs: DataGridView implementation
12915         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
12916         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
12917         * DataGridViewRowEventHandler.cs: DataGridView implementation
12918         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
12919         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
12920         * DataGridViewButtonCell.cs: DataGridView implementation
12921         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
12922         * DataGridViewEditMode.cs: DataGridView implementation
12923         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
12924         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
12925         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
12926         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
12927         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
12928         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
12929         * DataGridViewCellEventHandler.cs: DataGridView implementation
12930         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
12931         * DataGridViewCellStyleConverter.cs: DataGridView implementation
12932         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
12933         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
12934         * DataGridViewColumnEventArgs.cs: DataGridView implementation
12935         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
12936         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
12937         * QuestionEventArgs.cs: DataGridView implementation
12938         * IDataGridViewEditingCell.cs: DataGridView implementation
12939         * DataGridViewTriState.cs: DataGridView implementation
12940         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
12941         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
12942         * DataGridViewColumnCollection.cs: DataGridView implementation
12943         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
12944         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
12945         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
12946         * DataGridViewColumn.cs: DataGridView implementation
12947         * DataGridViewCellBorderStyle.cs: DataGridView implementation
12948         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
12949         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
12950         * DataGridViewRow.cs: DataGridView implementation
12951         * DataGridViewImageCellLayout.cs: DataGridView implementation
12952         * DataGridViewImageCell.cs: DataGridView implementation
12953         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
12954         * DataGridViewCheckBoxCell.cs: DataGridView implementation
12955         * DataGridViewHeaderCell.cs: DataGridView implementation
12956         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
12957         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
12958         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
12959         * DataGridViewTextBoxColumn.cs: DataGridView implementation
12960         * QuestionEventHandler.cs: DataGridView implementation
12961         * DataGridViewCellStyleScopes.cs: DataGridView implementation
12962         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
12963         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
12964         * DataGridViewCell.cs: DataGridView implementation
12965         * DataGridViewCellEventArgs.cs: DataGridView implementation
12966         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
12967         * DataGridViewCellStyle.cs: DataGridView implementation
12968         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
12969         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
12970         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
12971         * TextFormatFlags.cs: DataGridView implementation
12972         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
12973         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
12974         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
12975         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
12976         * DataGridViewButtonColumn.cs: DataGridView implementation
12977         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
12978         * HandledMouseEventArgs.cs: DataGridView implementation
12979         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
12980         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
12981         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
12982         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
12983         * DataGridViewRowCollection.cs: DataGridView implementation
12984         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
12985         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
12986         * DataGridViewHitTestType.cs: DataGridView implementation
12987         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
12988         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
12989         * DataGridViewColumnEventHandler.cs: DataGridView implementation
12990         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
12991         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
12992         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
12993         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
12994         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
12995         * DataGridViewContentAlignment.cs: DataGridView implementation
12996         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
12997         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
12998         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
12999         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
13000         * DataGridViewPaintParts.cs: DataGridView implementation
13001         * DataGridViewCellCollection.cs: DataGridView implementation
13002         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
13003         * DataGridViewImageColumn.cs: DataGridView implementation
13004         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
13005         * DataGridViewElementStates.cs: DataGridView implementation
13006         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
13007         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
13008         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
13009         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
13010         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
13011         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
13012         * DataGridViewRowHeaderCell.cs: DataGridView implementation
13013         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
13014         * DataGridViewTextBoxCell.cs: DataGridView implementation
13015         * DataGridViewBand.cs: DataGridView implementation
13016         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
13017         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
13018         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
13019         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
13020         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
13021         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
13022         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
13023         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
13024         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
13025         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
13026         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
13027
13028 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
13029
13030         * ThemeWin32Classic.cs: 
13031           - Draw the outside focus rectangle around buttons
13032           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
13033             doesn't use end caps for every dash of a line anymore. This
13034             workaround ignores the forecolor.
13035
13036 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
13037
13038         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
13039           endian safe.
13040
13041 2005-11-07  Jackson Harper  <jackson@ximian.com>
13042
13043         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
13044
13045 2005-11-07  Jackson Harper  <jackson@ximian.com>
13046
13047         * ScrollableControl.cs: Calculate the maximum and change vars
13048         (more) correctly so that scrollbars appear as a sensible size.
13049
13050 2005-11-04  Jackson Harper  <jackson@ximian.com>
13051
13052         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
13053         collection.
13054         * TreeView.cs: When the tree is sorted null out the top_node so
13055         that it is recalculated.
13056         - Use dotted lines instead of dashed lines to match MS better.
13057
13058 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
13059
13060         * ListView.cs: 
13061           - Implements key search for items. Useful when browsing files with FileDialog
13062           - When changing view mode or when clear the items reset scrollbar positions
13063
13064 2005-11-04  Jackson Harper  <jackson@ximian.com>
13065
13066         * CurrencyManager.cs: Implement the MetaDataChanged event, the
13067         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
13068         as to what the method may do as there is no real way of creating a
13069         derived CurrencyManager and calling the method. 
13070
13071 2005-11-03  Jackson Harper  <jackson@ximian.com>
13072
13073         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
13074         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
13075         method which seems to just be used internally to refresh the tabs.
13076
13077 2005-11-03  Jackson Harper  <jackson@ximian.com>
13078
13079         * TabControl.cs: Implement the remove method. Fix some broken
13080         comments.
13081
13082 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13083
13084         * DateTimePicker.cs:
13085           - Added missing DateTimePickerAccessibleObject class
13086           - Added missing events
13087           - Added OnFontChanged method
13088         * Form.cs: Added missing attributes
13089         * TreeView.cs: Added missing attributes
13090
13091 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
13092
13093         * GridItemCollection.cs: Fix signatures
13094
13095 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13096
13097         * XplatUI.cs: Updated build rev/date
13098         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
13099           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
13100         * Application.cs: Trigger context-specific ExitThread events
13101
13102 2005-11-03  Jackson Harper  <jackson@ximian.com>
13103
13104         * Menu.cs:
13105         * MainMenu.cs:
13106         * GridTableStylesCollection.cs:
13107         * Timer.cs:
13108         * TabPage.cs:
13109         * HelpProvider.cs:
13110         * StatusBar.cs:
13111         * MonthCalendar.cs: Signature fixes
13112
13113 2005-11-03  Jackson Harper  <jackson@ximian.com>
13114
13115         * TreeNodeCollection.cs: Remove should not be virtual.
13116         * TreeView.cs: Implement the last of the missing methods.
13117
13118 2005-11-03  Jackson Harper  <jackson@ximian.com>
13119
13120         * TreeNodeConverter.cs: Implement to get off my class-status back.
13121
13122 2005-11-03  Jackson Harper  <jackson@ximian.com>
13123
13124         * TreeView.cs: Hookup the bits for drag and drop.
13125         * TreeNode.cs: Don't cache the tree_view or index anymore, now
13126         that nodes can be moved from tree to tree easily this just causes
13127         all sorts of problems.
13128         * TreeNodeCollection: Don't need to give treenodes an index and
13129         treeview anymore when they are added, these are computed on the
13130         fly. Also make sure to remove a node before its added.
13131
13132 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13133
13134         * TextControl.cs:
13135           - Added CaretSelection enum
13136           - Added comparison methods to Marker struct, makes selection code
13137             more readable
13138           - Added SelectionStart and SelectionEnd as 'moveable' location for
13139             the CaretDirection enum and handler
13140           - Added selection_prev variable to track optimized invalidation for
13141             word and line selection
13142           - Added SelectionVisible property (returns true if there is a valid 
13143             selection)
13144           - Switched CaretHasFocus to only display the caret if there is no
13145             visible selection
13146           - Avoiding StringBuilder.ToString to retrieve a single char, instead
13147             using the direct character index; should be much faster
13148           - Added various conditional debug statements
13149           - Fixed invalidation calculation for selection ranges
13150           - Added ExpandSelection() method to support word and line selection
13151           - Switched SetSelectionToCaret to use new Marker compare overloads
13152           - Added central IsWordSeparator() method to determine word 
13153             separators/whitespace and FindWordSeparator() to streamline common
13154             usage of IsWordSeparator()
13155         * TextBoxBase.cs:
13156           - Removed unneeded grabbed variable, it was just mirroring
13157             Control.Capture
13158           - No longer firing OnTextChanged event when Text setter is called,
13159             since the base will fire the event for us
13160           - Added handling of Ctrl-Up/Down selection
13161           - Added handling of Shift-Cursorkey selection
13162           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
13163             words
13164           - Added handling of Shift and Ctrl-Shift-Home/End selection
13165           - Removed some debug output
13166           - Added handling for single/double/tripple-click to place caret/
13167             select word/select line respectively (Fixes bug #76031)
13168           - Added support for drag expansion of word/line selection
13169         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
13170           current selection
13171
13172 2005-11-02  Jackson Harper  <jackson@ximian.com>
13173
13174         * X11Dnd.cs: If the drag is going to and from a MWF window just
13175         copy the data instead of sending it out through the X Selection
13176         mechanism.
13177
13178 2005-11-02  Jackson Harper  <jackson@ximian.com>
13179
13180         * X11Dnd.cs:
13181         * XplatUIX11.cs: When in a drag we don't want motion notify
13182         messages to get passed on to the other controls. This prevents
13183         mouse move messages from showing up in the drag source.
13184
13185 2005-11-02  Jackson Harper  <jackson@ximian.com>
13186
13187         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
13188         the correct button is release to end a drag.
13189         * XplatUIX11.cs: Make the button state internal so the drag system
13190         can access it.  Dragging needs to know about all button releases,
13191         not just left button.
13192
13193 2005-11-02  Miguel de Icaza  <miguel@novell.com>
13194
13195         * Form.cs (Icon): If the icon is null, reset the icon to the
13196         default value. 
13197
13198         * Cursor.cs: When writing the AND-mask bitmap do not include the
13199         number of colors, but hardcode those to two (black and white),
13200         fixes the loading of color cursors (Paint Dot Net).
13201
13202         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
13203         turn off autoscaling.
13204
13205         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
13206
13207 2005-11-02  Jackson Harper  <jackson@ximian.com>
13208
13209         * X11Dnd.cs: Make sure to send a status message if the pointer
13210         enters a control that can not accept a drop, otherwise the cursor
13211         isn't updated correctly. Also tried to compress the lines of code
13212         a bit.
13213
13214 2005-11-02  Jackson Harper  <jackson@ximian.com>
13215
13216         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
13217         set actions correctly.  This isn't perfect as XDND and win32 have
13218         some differences on how you allow actions. I'll clear this up by
13219         adding a path for drag from MWF to MWF windows.
13220         * XplatUIX11.cs: Hook into the dnd system.
13221
13222 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
13223
13224         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
13225         previously shown but they are no longer need it. Very obvious when 
13226         browsing files with FileDialog.
13227
13228 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
13229
13230         * Control.cs: We always need to call OnPaintBackground. We pretty much
13231           ignore AllPaintingInWmPaint and always do the painting there, whether 
13232           it's set or not, since we always ignore the WM_ERASEBKGND message 
13233           (which we don't generate on X11). This fixes #76616.
13234         * Panel.cs: Removed unneeded background painting. This happens properly
13235           in Control.cs already
13236
13237 2005-10-31  Mike Kestner  <mkestner@novell.com>
13238
13239         * Menu.cs: Add items to collection before setting their index.
13240         * MenuItem.cs : add range checking with ArgumentException like MS.
13241         [Fixes #76510]
13242
13243 2005-10-31  Jackson Harper  <jackson@ximian.com>
13244
13245         * ListBox.cs: Invalidate if the area is visible at all not just
13246         contained in the visible rect. Fixes unselection of semi visible
13247         items.
13248
13249 2005-10-31  Jackson Harper  <jackson@ximian.com>
13250
13251         * Control.cs: Consistently name the dnd methods. Make them
13252         internal so we can override them to match some MS behavoir
13253         internally.
13254         * Win32DnD.cs: Use the new consistent names.
13255
13256 2005-10-31  Jackson Harper  <jackson@ximian.com>
13257
13258         * TreeView.cs: Don't draw the selected node when we lose focus.
13259
13260 2005-10-31  Jackson Harper  <jackson@ximian.com>
13261
13262         * X11Dnd.cs: We still need to reset the state even though a full
13263         reset isn't being done, otherwise status's still get sent all over
13264         the place.
13265
13266 2005-10-31  Jackson Harper  <jackson@ximian.com>
13267
13268         * Control.cs: Make the dnd_aware flag internal so the dnd
13269         subsystem can check it. Catch exceptions thrown in dnd handlers to
13270         match MS behavoir.
13271         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
13272         * X11Dnd.cs: Handle null data in the converters. Set the XDND
13273         version when sending a XdndEnter. Use the control/hwnd dnd_aware
13274         flags to reduce the number of dnd enters/status's sent.
13275
13276 2005-10-31  Jackson Harper  <jackson@ximian.com>
13277
13278         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
13279
13280 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
13281
13282         * PictureBox.cs: Fixes 76512
13283
13284 2005-10-28  Jackson Harper  <jackson@ximian.com>
13285
13286         * X11Dnd.cs: Early implementation to support winforms being a drag
13287         source for data on X11. Also restructured the converters so they
13288         can go both ways now.
13289         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
13290         
13291 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
13292
13293         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
13294           clipboard requests
13295
13296 2005-10-27  Jackson Harper  <jackson@ximian.com>
13297
13298         * TreeNode.cs: Implement serialization so my DnD examples will work.
13299
13300 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
13301
13302         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
13303           TreeView.cs: Don't dispose objects that are not owned.
13304           
13305 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
13306
13307         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
13308           should retrieve the current cursor and report that, but XplatUI
13309           doesn't (yet) have an interface for that (and I'm not sure I even
13310           can, on X11)
13311         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
13312           until any message loop processing is done (and the WM_SETCURSOR
13313           replaces the cursor to the proper one)
13314         * XplatUIX11.cs: 
13315           - Fixed override behaviour, we can't set the cursor globally on X11, 
13316             just for our windows.
13317           - Invalidating the System.Drawing X11 display handle when we are
13318             shutting down
13319         * Control.cs: Fix to make csc happy
13320
13321 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
13322
13323         * TextBoxBase.cs: 
13324           - get_Text: Add last line (without trailing newline) to returned
13325             value (Fixes 76212)
13326           - get_TextLength: Count last line in returned length
13327           - ToString: Call Text property instead of duplicating code
13328
13329 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
13330
13331         * ImageList.cs: Dispose ImageAttributes objects.
13332
13333 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13334
13335         * ImageList.cs: Use attribute constructors with less arguments where
13336           possible.
13337
13338 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13339
13340         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
13341           Use typeof instead of strings when assembly is referenced. Added
13342           some more comments.
13343
13344 2005-10-21  Jackson Harper  <jackson@ximian.com>
13345
13346         * ListView.cs: Raise a double click event. Also tried to somewhat
13347         fix when the selectedindexchanged event is raised. Its still
13348         broken though.
13349
13350 2005-10-21  Jackson Harper  <jackson@ximian.com>
13351
13352         * TreeView.cs: New method to invalidate the plus minus area of a
13353         node without invalidating the whole node (maybe this can be used
13354         in some more places).
13355         * TreeNodeCollection.cs: When adding to an empty node we need to
13356         invalidate its plus minus area so the little block shows up.
13357         
13358 2005-10-21  Jackson Harper  <jackson@ximian.com>
13359
13360         * TreeView.cs: Make sure that when we invalidate a node the bounds
13361         are big enough to cover the selected box and the focus
13362         rectangle. Use a different colour for the lines connecting nodes
13363         so they show up with all themes.
13364
13365 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13366
13367         * NativeWindow.cs: Don't call anything that could call into the driver,
13368           we might be on a different thread.
13369
13370 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
13371
13372         * Control.cs(Dispose): Since Dispose might run on a different thread,
13373           make sure that we call methods that could call into the driver via
13374           invoke, to avoid thread issues
13375
13376 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13377
13378         * XplatUI.cs: Removed finalizer
13379         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
13380           not allowing to be called on the finalizer thread.
13381
13382 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
13383
13384         * ImageList.cs:
13385           - Reverted r51889 and r51891.
13386           - Added ImageListItem class that stores unmodified image items and image
13387             properties required to create list images until handle is created.
13388           - Added AddItem and moved image creation logic to AddItemInternal.
13389           - Added CreateHandle method that creates images based on unmodified items.
13390           - Added DestroyHandle that changes state to store unmodified items.
13391           - Add and AddStrip methods no more create handle.
13392           - ReduceColorDepth has no return value.
13393           - Dispose destroys handle.
13394           - Modified other methods to reflect the above changes.
13395           - Implemented key support.
13396           - Added profile 2.0 members and attributes.
13397           - Added private Reset and ShouldSerialize methods that provide the same
13398             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
13399             them as they are private.
13400           - Added some more comments about implementation details.
13401
13402 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13403
13404         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
13405
13406 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13407
13408         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
13409
13410 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13411
13412         * DataGridDrawingLogic.cs: Fixes column hit calcultation
13413         * DataGridColumnStyle.cs: Remove debug message
13414
13415 2005-10-20  Jackson Harper  <jackson@ximian.com>
13416
13417         * TreeView.cs: We can always get input keys regardless of whether
13418         or not editing is enabled. They are used for navigation.
13419
13420 2005-10-20  Jackson Harper  <jackson@ximian.com>
13421
13422         * TreeNode.cs: Use the viewport rect for determining if a node
13423         needs to be moved for visibility. Don't use Begin/End edit. This
13424         calls a full refresh when its done.
13425         * TreeView.cs: New SetBottom works correctly.  Make the viewport
13426         rect property internal so the treenodes can see it. When clicking
13427         on a node we need to ensure that its visible because it might just
13428         be partly visible when clicked.
13429
13430 2005-10-20  Jackson Harper  <jackson@ximian.com>
13431
13432         * TreeNodeCollection.cs: Remove debug code.
13433
13434 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13435
13436         * Datagrid.cs: Implements column sorting in Datagrid
13437         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
13438
13439 2005-10-20  Jackson Harper  <jackson@ximian.com>
13440
13441         * TreeNodeCollection.cs: Remove items properly. Update the correct
13442         area after removing them.
13443
13444 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13445
13446         * Datagrid.cs: Should not call base.OnPaintBackground
13447
13448 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13449
13450         * XplatUIX11.cs (GetMessage):
13451           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
13452             window instead of client window
13453           - Now properly calculates NC_xBUTTONUP message coordinates
13454           - ScreenToMenu now properly calculates it's coordinates of whole 
13455             window, since menus are in the whole window, not in the client
13456             window
13457           - Added WholeToScreen coordinate translation method
13458
13459 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
13460
13461         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
13462           want to return a message, loop back to the beginning of the function
13463           and grab the next real message to process instead.
13464
13465 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13466
13467         * Splitter.cs: Properly set limits if no filler control is used
13468
13469 2005-10-19  Jackson Harper  <jackson@ximian.com>
13470
13471         * ColorDialog.cs: Don't show the help button if it is not enabled
13472         instead of disabling it (this is what MS does). Don't create the
13473         panel until the dialog is run, otherwise the vars (such as
13474         ShowHelp) are not set yet.
13475
13476 2005-10-19  Jackson Harper  <jackson@ximian.com>
13477
13478         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
13479         are reduced when adding nodes.
13480         * TreeNode.cs:
13481         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
13482         tree.
13483         
13484 2005-10-19  Jackson Harper  <jackson@ximian.com>
13485
13486         * FolderBrowserDialog.cs: End editing our treeview so the window
13487         actually gets refreshed.
13488
13489 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13490
13491         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
13492           Obsoleted handling of WM_ERASEBKGND, now always draws our background
13493           inside of WM_PAINT
13494
13495 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13496
13497         * MenuAPI.cs: Returns after Hidding window
13498         * XplatUIX11.cs: Added TODO found while debugging menu issues
13499
13500 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13501
13502         * XplatUIX11.cs: Do not re-map the whole window when it's size
13503           becomes non-zero unless it's supposed to be actually visible
13504
13505 2005-10-18  Jackson Harper  <jackson@ximian.com>
13506
13507         * TreeView.cs: We don't need to keep a count anymore.
13508         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
13509         use the Grow method.
13510
13511 2005-10-18  Jackson Harper  <jackson@ximian.com>
13512
13513         * TreeNodeCollection.cs: Insert is not supported on arrays, so
13514         implement it manually here.
13515
13516 2005-10-18  Jackson Harper  <jackson@ximian.com>
13517
13518         * ImageList.cs: Dont kill the list when the colour depth is
13519         changed, just change the colour depth of all the images.
13520         - Same goes for setting the image size. Just resize them all
13521         instead of killing the list softly.
13522
13523 2005-10-18  Jackson Harper  <jackson@ximian.com>
13524
13525         * Control.cs: Don't invalidate empty rectangles.
13526
13527 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13528
13529         * ListViewItem.cs:
13530           - Adds checked item to the Checked/Item lists (where empty before)
13531           - Do not add items to the Selected lists if they are already present
13532         * ListView.cs:
13533           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
13534           - When deleting items make sure that we delete them for the Selected
13535           and Checked list also.
13536
13537 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13538
13539         * Label.cs: Dispose objects no longer used
13540         * ThemeWin32Classic.cs: Dispose objects no longer used
13541
13542 2005-10-18  Jackson Harper  <jackson@ximian.com>
13543
13544         * TabControl.cs: Don't refresh the whole control when the tabs are
13545         scrolled, we just need to refresh the tab area.
13546
13547 2005-10-17  Jackson Harper  <jackson@ximian.com>
13548
13549         * XplatUIX11.cs: Compress code a little bit. Only calculate the
13550         after handle when we need it.
13551
13552 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13553
13554         * Control.cs: When the parent size changes, recalculate anchor 
13555           positions. Partial fix for #76462
13556
13557 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13558
13559         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
13560           drawn. Fixes #76462
13561
13562 2005-10-17  Jackson Harper  <jackson@ximian.com>
13563
13564         * MonthCalendar.cs: Don't create the numeric up down until our
13565         handle is created. Otherwise our handle is created in the
13566         constructor and we don't know if we are a WS_CHILD or WS_POPUP
13567         yet.
13568
13569 2005-10-17  Jackson Harper  <jackson@ximian.com>
13570
13571         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
13572         correctly.
13573
13574 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13575         * TreeNode.cs : small logical fix (was using local var instead of field)
13576         
13577 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13578
13579         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
13580
13581 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13582
13583         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
13584
13585 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
13586
13587         * Control.cs: 
13588           - Re-implemented anchoring code. My first version was really broken.
13589             This fixes bug #76033. Unlike the previous implementation we will
13590             no longer have round errors since all numbers are calculated from
13591             scratch every time. Removed various anchor-related obsolete vars.
13592           - InitLayout no longer causes layout event firing and layout to be 
13593             performed
13594
13595 2005-10-16  Jackson Harper  <jackson@ximian.com>
13596
13597         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
13598         which was broken).
13599
13600 2005-10-16  Jackson Harper  <jackson@ximian.com>
13601
13602         * TabControl.cs: Remove debug code.
13603
13604 2005-10-16  Jackson Harper  <jackson@ximian.com>
13605
13606         * XEventQueue.cs: Increase the default queue size (very simple
13607         apps needed to grow the queue).
13608         * Hwnd.cs: No finalizer so we don't need to suppress
13609         finalization. Compute the invalid area manually so a new rectangle
13610         does not newto be created.
13611         * ScrollableControl.cs: Don't set any params (otherwise visibility
13612         isn't set correctly).
13613         * MdiChildContext.cs: New constructor takes the mdi parent so it
13614         doesn't have to be computed and avoids a crash on windows. Draw
13615         the window icon properly, and allow the text to be seen.
13616         * Form.cs: Use new MdiChildContext constructor. Make sure the
13617         child context isn't null in wndproc.
13618         * TabControl.cs: Don't set focus, this is muddling keyboard
13619         behavoir. Expand the tab rows when a window size increase will
13620         allow extra tabs to be seen. Don't allow tabs smaller than the
13621         width of a window to be scrolled out of view.
13622         * TreeNode.cs:
13623         * TreeView.cs: Use measure string to calculate a nodes width, the
13624         width is cached and only updated when the text or the font is
13625         changed. Don't check for expand/collapse clicks on the first level
13626         nodes if root lines are disabled.
13627         
13628 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
13629
13630         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
13631
13632 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13633
13634         * DataGridBoolColumn.cs: fixes warning
13635
13636 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13637
13638         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
13639         to match more to match more precisely the MS Net behavior
13640
13641 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13642
13643         * Hwnd.cs: Added field to track if window is mapped
13644         * XplatUIX11.cs: 
13645           - Unmap windows if they become 0-size, re-map when 
13646             they are >0 again; fixes #76035
13647           - Re-set our error handler after initializing X11Desktop
13648             to override any error handlers Gtk or whatever was called
13649             may have set.
13650
13651 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13652
13653         * CheckedListBox.cs: Removed unused vars
13654         * ListView.cs: Fixed signatures
13655         * RichTextBox.cs: Removed unused vars
13656         * TextBoxBase.cs: Removed unused vars
13657         * XplatUIWin32.cs: Removed unused vars
13658         * XplatUIX11.cs: Removed unused vars
13659         * XplatUI.cs: Updated version and date to latest published
13660
13661 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13662
13663         * Cursor.cs: Added private .ctor to work around a bug in
13664           resourceset (Thanks to Geoff Norton for the help on this)
13665         * SplitterEventArgs.cs: Made fields accessible so we don't
13666           waste boatloads of objects and can reuse the same one
13667           in Splitter
13668         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
13669           any captions and borders when generating screen coordinates
13670         * Splitter.cs: Reimplemented control, now fully complete, uses
13671           rubberband drawing, supports and obeys all properties, has
13672           proper cursors
13673
13674 2005-10-13  Miguel de Icaza  <miguel@novell.com>
13675
13676         * Form.cs (Form): Setup default values for autoscale and
13677         autoscale_base_size;  Make these instance variables, not static
13678         variables. 
13679
13680         (OnLoad): on the first load, adjust the size of the form.
13681
13682 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13683
13684         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
13685           width argument to DrawReversibleRectangle()
13686         * XplatUIWin32.cs, XplatUIX11.cs: 
13687           - Implemented width for DrawReversibleRectangle()
13688           - Added logic to DrawReversibleRectangle that recognizes a zero
13689             width or height and only draws a line in that situation
13690         
13691 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
13692
13693         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
13694         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
13695         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
13696           method (it uses our FosterParent window to get a graphics context)
13697
13698 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
13699
13700         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
13701           and SetWindowBackground methods
13702         * Control.cs:
13703           - Setting proper ControlStyles
13704           - We no longer call XplatUI.SetWindowBackground and XplatUI.
13705             EraseWindowBackground, instead we draw the window background
13706             ourselves in PaintControlBackground. This behaviour is
13707             required to match MS, where, when OnPaintBackground is not
13708             called, the background is not drawn.
13709           - Removed unneeded Refresh() in set_Text
13710         * Hwnd.cs: Dropped the ErasePending support. No longer needed
13711         * XplatUIX11.cs:
13712           - Created DeriveStyles method to translate from CreateParams to
13713             FormBorderStyle and TitleStyle, also handles BorderStyle (which
13714             matches FormBorderStyle enum values)
13715           - Consolidated SetHwndStyles and CalculateWindowRect border/title
13716             style calculations into single DeriveStyles method
13717           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
13718             from redrawing the whole window on any resize or expose.
13719           - Fixed CreateWindow usage of SetWindowValuemask. Before not
13720             all styles were applied to our whole/client window appropriately
13721           - Removed EraseWindowBackground() and SetWindowBackground() methods
13722           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
13723             no longer clear/redraw the background through X
13724           - Removed handling of erase_pending bit, we have no use for it (or
13725             so it seems)
13726         * XplatUIOSX.cs:
13727           - Removed generation and handling of WM_ERASEBKGND message
13728           - Removed EraseWindowBackground() and SetWindowBackground() methods
13729           - Removed handling of hwnd.ErasePending flag
13730         * XplatUIWin32.cs:
13731           - Removed EraseWindowBackground() and SetWindowBackground() methods
13732           - We no longer call EraseWindowBackground on PaintEventStart, we 
13733             ignore the fErase flag, erasing is handled in Control in the
13734             background handler
13735         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
13736           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
13737           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
13738           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
13739           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
13740           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
13741           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
13742
13743 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
13744
13745         * PropertyGrids.cs: Get sub properties
13746         * PropertyGridView.cs: Fix drawing code
13747
13748 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13749
13750         * ListBox.cs: Fixes 76383
13751
13752 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13753
13754         * DataGridTextBoxColumn.cs: Sets location and size before attachment
13755         * ThemeWin32Classic.cs: Fixes border drawing and calculations
13756         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
13757
13758
13759 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13760
13761         * ComboBox.cs: Fixes border drawing
13762
13763 2005-10-10  Miguel de Icaza  <miguel@novell.com>
13764
13765         * MimeIcon.cs: Ignore errors if the file can not be read.
13766
13767 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13768
13769         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
13770          - Fixed border calculations
13771          - Fixed horizontal scrolling in single column listboxes
13772          - Fixed drawing issues
13773
13774 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
13775
13776         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
13777           FormBorderStyle enum
13778         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
13779           code to determine FormBorderStyles from CreateParams
13780         * Form.cs:
13781           - Fixed bug where we'd set the wrong window styles if we were
13782             not creating an MDI window
13783           - Added call to XplatUI.SetBorderStyle when form borders are set
13784         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
13785         * Hwnd.cs:
13786           - Removed obsolete edge style
13787           - Switched from BorderStyle to FormBorderStyle
13788         
13789 2005-10-10  Jackson Harper  <jackson@ximian.com>
13790
13791         * Form.cs: Use the property to get the window handle instead of
13792         accessing it directly. Prevents a null reference exception.
13793
13794 2005-10-10  Jackson Harper  <jackson@ximian.com>
13795
13796         * TreeView.cs: Don't adjust the rect given to DrawString now that
13797         our libgdiplus draws correctly.
13798
13799 2005-10-08  Jackson Harper  <jackson@ximian.com>
13800
13801         * TreeView.cs: Don't try to find the clicked on node if there are
13802         no nodes in the tree.
13803
13804 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13805
13806         * RichTextBox.cs:
13807
13808           restore
13809
13810 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13811
13812         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
13813           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
13814           ErrorProvider.cs:
13815           Use ResPool for brushes and dispose System.Drawing objects that
13816           are not used anymore.
13817
13818 2005-10-07  Jackson Harper  <jackson@ximian.com>
13819
13820         * MdiChildContext.cs: Use the new borders instead of drawing them
13821         ourselves.
13822
13823 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13824
13825         * Calling UpdateBounds after changing the window's BorderStyle 
13826         since the style can change the ClientSize
13827
13828 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13829
13830         * Control.cs: Made PaintControlBackground virtual
13831         * Panel.cs: Overriding PaintControlBackground instead of using paint
13832           event; paint event method was interfering with 'real' users of the
13833           event.
13834
13835 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13836
13837         * ThemeWin32Classic.cs: remove border drawing since it is handled
13838         by the base control class now and was causing double border drawing.
13839
13840 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13841
13842         * Panel.cs: Redraw our background on paint. Not a pretty solution,
13843           but it does seem to match MS behaviour. This fixes bug #75324
13844
13845 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13846
13847         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
13848           somewhat hackish looking
13849
13850 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13851
13852         * TextBoxBase.cs:
13853           - We now accept Enter even if AcceptEnter is false, if the containing
13854             form does not have an AcceptButton configured (fixes bug #76355)
13855           - Calculations are now fixed to no longer use Width/Height, but
13856             ClientSize.Width/Height, since we now support borders (this was
13857             a result of fixing borders and therefore bug #76166)
13858           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
13859             true (fixes bug #76354)
13860         
13861 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13862
13863         * Control.cs: 
13864           - Defaulting BorderStyle and setting it in XplatUI when our window 
13865             is created
13866           - Added enum check to InternalBorderStyle setter
13867         * XplatUIX11.cs: 
13868           - Added drawing of window borders
13869           - Now properly calculates WM decorations offset for toplevel 
13870             windows (fixes bug #74763)
13871         * XplatUIWin32.cs: 
13872           - Implemented BorderStyles for windows (we're letting win32 draw 
13873             the border for us)
13874           - Fixed the signature for SetWindowLong
13875         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
13876           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
13877           setting borders
13878         * UpDownBase.cs: Remove drawing of borders, this is handled by
13879           the driver, outside the client area
13880         * ListView.cs: Removed bogus border calculations. The control should
13881           be oblivious to borders, since those are not part of the client
13882           area. 
13883         * X11DesktopColors.cs: Commented out (currently) unneeded variables
13884         * ThemeWin32Classic.cs: Removed border calculations from ListView 
13885           drawing code
13886
13887 2005-10-06  Jackson Harper  <jackson@ximian.com>
13888
13889         * MdiChildContext.cs: Clear out the old virtual position remove
13890         all the unneeded calls to CreateGraphics.
13891
13892 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13893
13894         * TextControl.cs: Use proper color for highlighted text; fixes #76350
13895
13896 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13897
13898         * Form.cs: 
13899           - Added loading and setting of our new default icon
13900           - Only set icon if window is already created
13901
13902 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13903
13904         * Label.cs:
13905           - Do not explicitly set the foreground and background colors, to
13906             allow inheriting from parents (fixes #76302)
13907           - Use Control's InternalBorderStyle property to deal with borders
13908
13909 2005-10-06  Jackson Harper  <jackson@ximian.com>
13910
13911         * MdiChildContext.cs: Use the new xplatui function to draw a
13912         reversible rect.
13913
13914 2005-10-06  Jackson Harper  <jackson@ximian.com>
13915
13916         * Form.cs: Add the parent before creating the child context cause
13917         we need the parent when setting up the child.
13918
13919 2005-10-06  Jackson Harper  <jackson@ximian.com>
13920
13921         * FolderBrowserDialog.cs: redo the tree population code so a
13922         second thread isn't used. Should be a lot faster and more stable
13923         now.
13924
13925 2005-10-05  Jackson Harper  <jackson@ximian.com>
13926
13927         * TreeView.cs: There are no expand/collapse boxes if the node has
13928         no children.
13929
13930 2005-10-05  Jackson Harper  <jackson@ximian.com>
13931
13932         * X11DesktopColors.cs: Get menu colours for the gtk theme.
13933
13934 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
13935
13936         * FileDialog.cs: Fix InitialDirectory
13937
13938 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13939
13940         * ComboBox.cs:
13941                 - Fixes changing between styles
13942                 - Fixes simple mode
13943                 - Fixes last item crashing when navigating with keyboard
13944
13945 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13946
13947         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
13948
13949 2005-10-05  Jackson Harper  <jackson@ximian.com>
13950
13951         * TreeView.cs: If updating the root node do a full refresh.
13952         * TreeNode.cs: The root node should be expanded by default. Also
13953         added a utility prop to tell if we are the root node.
13954         * TreeNodeCollection.cs: Only refresh if the node we are being
13955         added to is expanded. Also added a comment on a potential
13956         optimization.
13957         
13958 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
13959
13960         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
13961           in dispose method. Fixes #76330
13962
13963 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
13964
13965         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
13966
13967                 - Implements vertical and horizontal scrolling using XplatUI
13968                 - Fixes keyboard navagation
13969                 - Fixes EnsureVisible
13970                 - Drawing fixes
13971                 - Handles and draws focus properly
13972
13973
13974 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
13975
13976         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
13977           Create handle. NET_2_0: Destroy handle when value is null.
13978
13979 2005-10-03  Jackson Harper  <jackson@ximian.com>
13980
13981         * ScrollBar.cs: My last scrollbar patch was broken. This is a
13982         revert and a new patch to prevent the thumb from refreshing so
13983         much.
13984
13985 2005-10-02  Jackson Harper  <jackson@ximian.com>
13986
13987         * ScrollBar.cs: Don't update position if it hasn't actually
13988         changed. This occurs when you hold down the increment/decrement
13989         buttons and the thumb gets to the max/min.
13990
13991 2005-10-01  Jackson Harper  <jackson@ximian.com>
13992
13993         * Form.cs:
13994         * MdiChildContext.cs:
13995         * MdiClient.cs: Implement ActiveMdiChild in Form.
13996
13997 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
13998
13999         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
14000
14001 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
14002
14003         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
14004           be found
14005
14006 2005-09-30  Jackson Harper  <jackson@ximian.com>
14007
14008         * ListBox.cs: Don't do a full refresh unless some data has
14009         actually changed.
14010
14011 2005-09-30  Jackson Harper  <jackson@ximian.com>
14012
14013         * TreeView.cs: Make sure that the checkboxes size is factored in
14014         even when not visible.
14015
14016 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14017
14018         * FileDialog.cs: Fix Jordi's build break
14019
14020 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14021
14022         * FileDialog.cs: 
14023                 - Use standard the Windows colours for the combobox as espected
14024                 - Dispose objects that use resouces when no longer need them
14025
14026 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14027
14028         * X11DesktopColors.cs: Initial incomplete implementation
14029         * XplatUIX11.cs: Added call to initialize X11DesktopColors
14030
14031 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
14032
14033         * Theme.cs: 
14034           - Switched Theme color names to match the names defined in 
14035             System.Drawing.KnownColors. Life's hard enough, no need to make 
14036             it harder.
14037           - Added setters to all theme color properties so themes can set
14038             their color schemes. The setters also propagate the color changes
14039             to System.Drawing.KnownColors via reflection
14040         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
14041           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
14042           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
14043           use the new, more logical theme color names
14044         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
14045           post-NT colors
14046         * ThemeWin32Classic.cs:
14047           - Removed code to set the old classic Windows colors. Instead it
14048             now relies on the colors returned by System.Drawing.KnownColors
14049             which will be either modern static colors (Unix) or colors
14050             read from the user's configuration (Win32)
14051           - Updated to use the new, more logical theme color names
14052           - Switched DataGrid drawing code to use only Theme colors instead of
14053             a mix of System.Drawing.KnownColors and Theme colors
14054           - DrawFrameControl(): Removed code that fills the button area, the
14055             fill would overwrite any previous fill done by a control. This
14056             fixes bug #75338 
14057           - Added DrawReversibleRectangle() stub
14058         * ScrollableControl.cs: Set visible state to false when scrollbars
14059           are removed (pdn fix)
14060         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
14061           DrawReversibleRectangle() method to allow drawing primitive 
14062           'rubber bands'
14063         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
14064
14065 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14066
14067         * ImageList.cs: Add(Icon): Create handle.
14068
14069 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14070
14071         * ListView.cs:
14072         * ThemeWin32Classic.cs:
14073                 - Fixes detail mode
14074                 - Sets clippings
14075                 - Issues with drawing
14076
14077 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14078
14079         * ImageList.cs: Moved RecreateHandle back to ImageList as event
14080           source has to be the ImageList.
14081
14082 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14083
14084         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
14085
14086 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14087
14088         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
14089
14090 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14091
14092         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
14093
14094 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
14095         * GridItem.cs: Fixed TODOs
14096         * GridItemCollection.cs: Added ICollection interface
14097
14098 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14099
14100         * ImageList.cs: Resize icons when needed.
14101
14102 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
14103
14104         * ListViewItem.cs
14105                 - Fixes GetBounds and returns on screen rects
14106         * ListView.cs:
14107                 - Fixes vertical and horzintal scrolling of items
14108         * ThemeWin32Classic.cs:
14109                 - Fixes drawing
14110                 
14111 2005-09-29  Raja R Harinath  <harinath@gmail.com>
14112
14113         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
14114
14115 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
14116
14117         * ImageList.cs: Added comments about handle creation. Moved Handle,
14118           HandleCreated and OnRecreateHandle implementations to ImageCollection.
14119           Handle is created in Add methods.
14120
14121 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14122          
14123         * DataGridDrawingLogic.cs: 
14124                 - Takes rows into account on Colum calculations
14125                 - Returns the column when clickig
14126         * DataGrid.cs:
14127                 - Fixes default HitTestInfo values
14128                 - Fixes HitTestInfo.ToString
14129                 - Fixes ResetBackColor          
14130         
14131 2005-09-28  Jackson Harper  <jackson@ximian.com>
14132
14133         * MdiChildContext.cs: Obey rules for fixed sized windows (no
14134         sizing or cursor changes). Also added some temp code to draw the
14135         titlebars text (Makes dev a little easier).
14136
14137 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14138
14139         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
14140
14141 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14142          
14143         * ListBox.cs: Fixes bug 76253
14144
14145 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14146
14147         * ImageList.cs: Added comments about the current implementation. Added
14148           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
14149           Format32bppArgb to preserve transparency and can use Graphics.FromImage
14150           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
14151           with Bitmap.LockBits for better performance. Revised the whole file to
14152           match MS.NET behaviour and provide better performance. Non-public
14153           interface members are calling public members even when they throw
14154           NotSupportedException for better maintainability. Moved ColorDepth,
14155           ImageSize, ImageStream and TransparentColor implementations to
14156           ImageCollection for better performance as these properties are not used
14157           by ImageList.
14158         * ImageListStreamer.cs: Added a new internal constructor that takes an
14159           ImageList.ImageCollection and serializes Images based on
14160           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
14161           match ImageList property name.
14162
14163 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
14164
14165         * ListBox.cs: Fixes IndexFromPoint for last item
14166
14167 2005-09-27  Jackson Harper  <jackson@ximian.com>
14168
14169         * Form.cs: Set the position of new mdi children correctly.
14170
14171 2005-09-27  Jackson Harper  <jackson@ximian.com>
14172
14173         * MdiClient.cs: New mdi children need to be added to the back of
14174         the controls collection so the zorder is set correctly. Also add a
14175         count of all the child windows that have been created.
14176
14177 2005-09-27  Jackson Harper  <jackson@ximian.com>
14178
14179         * Form.cs (CreateParams): Setup MDI forms correctly.
14180
14181 2005-09-27  Jackson Harper  <jackson@ximian.com>
14182
14183         * MdiChildContext.cs:
14184         * MonthCalendar.cs:
14185         * UpDownBase.cs:
14186         * ListBox.cs:
14187         * ListView.cs:
14188         * TextBoxBase.cs:
14189         * TreeView.cs:
14190         * ScrollableControl.cs:
14191         * ComboBox.cs: Add implicit controls using the new implict control
14192         functionality in ControlCollection. Also try to block multiple
14193         control add in a suspend/resume layout to save some cycles.
14194         
14195 2005-09-27  Jackson Harper  <jackson@ximian.com>
14196
14197         * Control.cs: Add functionality to the controls collection to add
14198         'implicit controls' these are controls that are created by the
14199         containing control but should not be exposed to the user. Such as
14200         scrollbars in the treeview.
14201         * Form.cs: The list var of the ControlsCollection is no longer
14202         available because of the potential of implicit controls getting
14203         ignored by someone accessing the list directly.
14204
14205 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
14206
14207         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
14208           loose it's parent. (Fixed bug introduced in r49103 when we added
14209           setting the child parent to null on Remove)
14210
14211 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
14212
14213         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
14214         * Splitter.cs: Added missing attributes for BorderStyle property.
14215         * TextBoxBase.cs: Marked Calculate* methods internal.
14216         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
14217         MS.NET.
14218
14219 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
14220          
14221         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
14222
14223 2005-09-25  Jackson Harper  <jackson@ximian.com>
14224
14225         * TreeView.cs: Update the node bounds correctly regardless of
14226         whether the node is visible.
14227
14228 2005-09-25  Jackson Harper  <jackson@ximian.com>
14229
14230         * ImageList.cs: Don't dispose the image after it is added to the
14231         image list. Only reformat images that need to be resized.
14232
14233 2005-09-25  Jackson Harper  <jackson@ximian.com>
14234
14235         * ImageList.cs: Don't set the format when changing the image.
14236
14237 2005-09-25  Jackson Harper  <jackson@ximian.com>
14238
14239         * TreeView.cs: We can't just assume the node has a font. Use the
14240         treeviews font if no node font is available.
14241
14242 2005-09-25  Jackson Harper  <jackson@ximian.com>
14243
14244         * TreeView.cs: Allow the scrollbars to be reset with negative
14245         values.
14246         - Don't add scrollbars to negative sized windows.
14247
14248 2005-09-23  Jackson Harper  <jackson@ximian.com>
14249
14250         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
14251         old Mono.Posix. Also remove some stray code that shouldn't have
14252         been committed.
14253
14254 2005-09-23  Jackson Harper  <jackson@ximian.com>
14255
14256         * TreeView.cs: Attempt at proper sizing of the horizontal
14257         scrollbar. Also don't resize the scrollbars unless they are
14258         visible.
14259
14260 2005-09-23  Jackson Harper  <jackson@ximian.com>
14261
14262         * TreeView.cs: We don't need to expand the invalid area when the
14263         selection changes, as this is all drawn in the node's bounding
14264         box. The area needs to be expanded (previous typo was contracting
14265         it) when the focus rect moves.
14266
14267 2005-09-23  Jackson Harper  <jackson@ximian.com>
14268
14269         * TreeView.cs: Display the selection box under the correct
14270         circumstances. We were rendering white text with no selection box
14271         before.
14272
14273 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
14274
14275         * TextControl.cs(Split): Now updates selection start/end if it points 
14276           into a line that's being split. Fixes a FIXME and bug #75258
14277
14278 2005-09-23  Jackson Harper  <jackson@ximian.com>
14279
14280         * Binding.cs:
14281         * ListControl.cs: Don't use the path when retrieving binding
14282         managers from the binding context. My bat sense tells me that the
14283         path is only used on insertion.
14284
14285 2005-09-22  Jackson Harper  <jackson@ximian.com>
14286
14287         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
14288
14289 2005-09-22  Jackson Harper  <jackson@ximian.com>
14290
14291         * Splitter.cs: There are special cursors used for splitting.
14292         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
14293
14294 2005-09-22  Jackson Harper  <jackson@ximian.com>
14295
14296         * Splitter.cs: Change the cursor appropriately when the splitter
14297         is moused over, so the user actually knows there is a splitter
14298         there.
14299
14300 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14301
14302        * Label.cs : Fix ToString method to give same output as MS.NET
14303
14304 2005-09-22  Jackson Harper  <jackson@ximian.com>
14305
14306         * TreeView.cs: Create the scrollbars when the handle is created
14307         and add them right away, just make them invisble. Also account for
14308         the window being shrunk vertically to the point that the vert
14309         scrollbar needs to be added.
14310         - Remove some 0.5 adjustments to get around anti aliasing issues.
14311         
14312 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
14313          
14314         * MainMenu.cs: Fixes default value
14315         * MenuItem.cs: Fixes default value
14316
14317 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
14318
14319         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
14320
14321 2005-09-21  Jackson Harper  <jackson@ximian.com>
14322
14323         * Control.cs: Don't try to set the border style on the window if
14324         it hasn't been created. When the window is created the border
14325         style will be used.
14326
14327 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14328
14329         * Control.cs (Update): Don't call XplatUI if we don't have a
14330           window handle yet
14331
14332 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14333
14334         * ContainerControl.cs: Instead of throwing an exception, print
14335           a one-time warning about Validate not being implemented
14336         * XplatUIWin32.cs: Removed debug output
14337
14338 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14339
14340         * Control.cs: Only set XplatUI background if we expect the windowing
14341           system to handle the background. This stops controls that draw their
14342           own background from flickering
14343
14344         * XplatUIX11.cs: Support custom visuals and colormaps for window 
14345           creation. This allows, amongst other things, using MWF X11 windows 
14346           with OpenGL.
14347
14348 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14349
14350         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
14351           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
14352           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
14353           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
14354           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
14355           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
14356           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
14357           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
14358           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
14359           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
14360           GridColumnStylesCollection.cs, 
14361           IDataGridColumnStyleEditingNotificationService.cs,
14362           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
14363           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
14364           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
14365           TreeNodeCollection.cs, AmbientProperties.cs, 
14366           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14367           DataObject.cs, ErrorProvider.cs, Splitter.cs,
14368           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
14369           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
14370           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
14371           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
14372           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
14373           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
14374           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
14375           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
14376           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
14377           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
14378           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
14379           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
14380           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
14381           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
14382           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
14383           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
14384           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
14385           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
14386           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
14387           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
14388           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
14389           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
14390           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
14391           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
14392           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
14393           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
14394           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
14395           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
14396           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
14397           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
14398           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
14399           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
14400           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
14401           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
14402           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
14403
14404 2005-09-21  Jackson Harper  <jackson@ximian.com>
14405
14406         * TreeNode.cs: Call Before/After Expand not Collapse when
14407         expanding.
14408
14409 2005-09-20  Jackson Harper  <jackson@ximian.com>
14410         
14411         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
14412
14413 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14414          
14415         * ListViewItem.cs:
14416                 - Fixes bug 76120
14417                 - Fixes proper storing of subitems
14418                 - Fixes not updated items
14419
14420 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
14421
14422         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
14423           things if our window handle isn't created yet. Also disabled 
14424           debug for TextBoxBase
14425
14426 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
14427
14428         * MenuAPI.cs: Remove filtering of events to allow menu usage
14429
14430 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14431
14432         * Cursor.cs: Allow null to be passed to Cursor.Current.
14433
14434 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
14435
14436         * ThemeWin32Classic.cs:
14437           - Change some private methods/fields to protected virtual so that 
14438             they can be accessed and overriden in derived classes
14439           - First refactoring of some methods. Derived themes now don't 
14440             need to duplicate the complete code from ThemeWin32Classic
14441         * ThemeNice.cs:
14442           - Added nice StatusBar
14443           - Derive from ThemeWin32Classic and not Theme
14444           - Removed duplicate ThemeWin32Classic code
14445
14446 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14447
14448         * Control.cs (ControlCollection.Add): If the value null is passed
14449         the control is ignored. 
14450
14451         Optimize this loop.
14452
14453 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
14454
14455         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
14456           PostQuitMessage state.
14457         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
14458
14459 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
14460
14461         * Application.cs: Our constructor will never get called, move 
14462           initialization to fields; fixes bug #75933
14463
14464 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14465
14466         * FileDialog.cs :
14467                 - Allow files to be selected properly using file name
14468                 combo box.
14469                 - Add ability to change diretory (absolute / relative)
14470                 using file name combo box.
14471
14472 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14473          
14474         * ListBox.cs: 
14475                 - Fixes Multicolumn listboxes item wrong calculations
14476                 - Allows to click when only one item is in the listbox
14477                 - Fixes crash when no items using keyboard navigation
14478
14479 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
14480
14481         * ComboBox.cs: Reverted almost everything from the latest patch which
14482           broke ComboBox
14483
14484 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
14485         
14486         * ToolTip.cs:
14487                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
14488         * ComboBox.cs:
14489                 - When DropDownStyle is Simple, it does not show scrollbar 
14490                 to the last item of the list.
14491                 - When DropDownStyle is Simple, it crashed when the list was 
14492                 scrolled down with the down cursor key.
14493                 - Fixed a bug that when DropDownStyle is DropDownList, the 
14494                 selected item was not shown.
14495                 - The position of the selected item was not preserved when 
14496                 the next dropdown happened.
14497         * ThemeWin32Classic.cs:
14498                 - Items were wrapped at the right end.
14499         * CheckedListBox.cs:
14500                 - Fixed Add method
14501         * ListBox.cs:
14502                 - Items should be fully shown.
14503                 - When resizing and vertical scrollbar disappeared, the item 
14504                 of index 0 should be on the top of the list.
14505                 - GetItemRectangle should consider the size of ver. scrollbar
14506         * StatusBar.cs:
14507                 - SizingGrip area should not be allocated when it is not 
14508                 displayed.
14509                 - Now it reflects MinWidth of the containing panel and 
14510                 fixed a crash that happens when its width becomes so small.
14511
14512 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14513
14514         * CheckedListBox.cs: Fixes bug 76028
14515         * ListBox.cs: Fixes bug 76028
14516
14517 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14518
14519         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
14520         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
14521
14522 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
14523
14524         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
14525
14526 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14527
14528         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
14529
14530 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14531
14532         * IRootGridEntry.cs: Added
14533         * PropertyGridCommands.cs: Added
14534         * PropertiesTab.cs: Added missing methods and property
14535         * PropertyGridView.cs: Made class internal
14536         * PropertyGridTextBox.cs: Made class internal
14537
14538 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14539
14540         * MimeIcon.cs: Try to check some other environment variables
14541           if "DESKTOP_SESSION" returns "default"
14542
14543 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14544
14545         * ThemeNice.cs: Corrected background colors (e.g. menus)
14546         * ColorDialog.cs: Use correct background colors for controls
14547
14548 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14549
14550         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
14551
14552 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
14553
14554         * RichTextBox.cs: Added initial implementation
14555         * lang.cs: Removed. Was accidentally checked in long time ago
14556         * TODO: Removed. Contents were obsolete
14557
14558 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14559                                                                                 
14560         * PropertiesTab.cs : Added
14561
14562 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14563                                                                                 
14564         * PropertyGrid.cs : Update
14565         * PropertyGridView.cs : Update
14566         * System.Windows.Forms.resx : Added images and strings
14567
14568 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
14569
14570         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
14571  
14572 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
14573
14574         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
14575           a busy loop right after the Ungrab the X11 display is otherwise 
14576           blocked
14577
14578 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
14579
14580         * ThemeWin32Classic.cs: Optimise the use of clipping
14581
14582 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
14583
14584         * DataGrid.cs: fixes recursion bug
14585
14586 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
14587
14588         * ThemeNice.cs: 
14589           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
14590           - Cleanup
14591
14592 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
14593
14594         * ThemeNice.cs: Draw nice ProgressBars
14595
14596 2005-09-01  Miguel de Icaza  <miguel@novell.com>
14597
14598         * VScrollBar.cs: Another buglet found by Aaron's tool. 
14599
14600         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
14601         bug finder.
14602
14603 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
14604
14605         * ThemeNice.cs:
14606           - Added nicer menu drawing
14607           - Updated DrawTab
14608           - some refactoring
14609
14610 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14611
14612         * CreateParams.cs (ToString): Made output match MS
14613         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
14614             handle is already created (to avoid forcing window creation)
14615         * XplatUIX11.cs: Set window text to caption after creating window,
14616           in case Text was set before window was created
14617         * Form.cs: Use this.Text instead of a static string as caption
14618
14619 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14620
14621         * NotifyIcon.cs: Don't set the window to visible; this screws
14622           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
14623           OnPaint without a bitmap)
14624         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
14625           happen very often anyway; we could add the check to the WM_PAINT 
14626           event generation code
14627
14628 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14629
14630         * NotifyIcon.cs: Fill the icon area with a background color, to 
14631           avoid 'residue' when transparent icons are drawn
14632         * XplatUIX11.cs:
14633           - Handle whole_window == client_window when destroying windows
14634           - SystrayAdd(): Set client_window to whole_window value to
14635             get mouse and other events passed to NotifyIcon
14636
14637 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14638
14639         * Form.cs: Set proper default for Opacity property
14640         * NotifyIcon.cs:
14641           - ShowSystray(): Don't bother creating telling the OS
14642             about the systray item if no icon is provided
14643           - Now handles WM_NCPAINT message to deal with whole/client window
14644             split
14645           - Create window as visible to not get caught by Expose optimization
14646         * Hwnd.cs: Removed debug message
14647         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
14648           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
14649             PaintEventStart/End to use new client argument
14650         * TextBoxBase.cs:
14651           - Commented out debug messages
14652           - Switched PaintEventStart/End to use new client argument
14653         * XplatUI.cs: Added client window bool to PaintEventStart()/
14654           PaintEventEnd() calls, to support drawing in non-client areas
14655         * XplatUIDriver.cs: 
14656           - Added client window bool to PaintEventStart()/PaintEventEnd() 
14657             calls, to support drawing in non-client areas
14658           - Added conditional compile to allow using MWF BeginInvoke 
14659             on MS runtime
14660         * XplatUIX11.cs:
14661           - Added some conditional debug output
14662           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
14663             whole/client window split
14664           - Implemented handling of client argument to PaintEventStart()/End()
14665         * Control.cs:
14666           - Throw exception if BeginInvoke() is called and the window handle
14667             or one of the window's parent handles is not created
14668           - Added conditional compile to allow using MWF BeginInvoke on
14669             MS runtime
14670           - get_Parent(): Only sets parent if handle is created. This avoids
14671             forcing window handle creation when parent is set.
14672           - Now fires Layout and Parent changed events in proper order
14673           - Switched to use Handle instead of window.Handle for Z-Order setting,
14674             the get_Parent() patch above causes us to possibly get null for 'window'
14675           - Implemented handling of client argument to PaintEventStart()/End()
14676           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
14677             default handling)
14678           - Now sends a Refresh() to all child windows when Refresh() is called
14679
14680 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14681
14682         * Form.cs: Added (non-functional) Opacity property
14683         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
14684
14685 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
14686         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
14687           use export MONO_THEME=nice to activate it.
14688           Currently supported controls:
14689           - Button
14690           - ComboBox
14691           - ScrollBar
14692           - TabControl (TabAlignment.Top only, other will follow)
14693         * ThemeEngine.cs: Add theme nice
14694         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
14695           if enabled
14696
14697 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
14698
14699         * Splitter.cs: Resize docked control and its neighbor.
14700
14701 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14702         -- Making Windows with Menus layout correctly --
14703         * Form.cs : The first leg of the fix
14704                 Menu setter - adjust Client Size as needed to make space for the menu
14705                 SetClientSizeCore - doesn't call base version to be able to pass the 
14706                         menu handle to XplatUI.CalculateWindowRect
14707         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
14708         * XplatUIX11.cs: The critical second leg of the fix
14709                 GetWindowPos needs to use a recalculated client_rect
14710                 so that resizing the window doesn't break layout of child controls. 
14711                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
14712                 Lots of \t\n killed
14713
14714 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14715
14716         * Label.cs: Now properly recalculates width and height on Font and Text
14717           changes if AutoSize is set
14718
14719 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14720         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
14721
14722 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
14723
14724         * ImageList.cs: Makes ToString method compatible with MS
14725
14726 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
14727
14728         * MenuAPI.cs: fixes bug 75716
14729
14730 2005-08-11 Umadevi S <sumadevi@novell.com>
14731         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
14732
14733 2005-08-11 Umadevi S <sumadevi@novell.com>
14734         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
14735
14736 2005-08-10  Umadevi S <sumadevi@novell.com>
14737         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
14738
14739 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
14740
14741         * Menu.cs: fixes bug 75700
14742         * MenuAPI.cs: fixes navigation issues
14743
14744 2005-08-09  Umadevi S <sumadevi@novell.com>
14745         * CheckedListBox.cs - simple fix for GetItemChecked.
14746
14747 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
14748
14749         * ComboBox.cs: Serveral fixes
14750         * ListBox.cs: Serveral fixes
14751
14752 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14753
14754         * ComboBox.cs: Fixes FindString methods and GetItemHeight
14755         * ListBox.cs: Fixes FindString methods
14756
14757 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14758
14759         * DataGrid.cs: fixes bugs exposed by new tests
14760
14761 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
14762
14763         * Mime.cs: Compile Mono assembly references only if compiling
14764           with Mono (Allows to build with VS.Net again)
14765
14766 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
14767
14768         * Control.cs (PaintControlBackground): Draw background image
14769         corrrectly.
14770         (CheckForIllegalCrossThreadCalls): Stubbed.
14771         
14772         * Form.cs (OnCreateControl): Center when should be centered.
14773         
14774         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
14775
14776 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
14777
14778         * Binding.cs: Binding to properties should be case unsensitive
14779
14780 2005-07-18 vlindos@nucleusys.com
14781
14782         * DataGrid.cs: fixes setmember order
14783
14784 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
14785
14786         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
14787         * FileDialog.cs: FileDialog is now resizable and uses the new
14788           MimeIconEngine
14789
14790 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
14791
14792         * DataGridTextBoxColumn.cs: default value
14793         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
14794         * GridTableStylesCollection.cs: fixes checking MappingName
14795         * DataGridDrawingLogic.cs: fixes drawing logic issues
14796         * DataSourceHelper.cs: rewritten to make compatible with more data sources
14797         * DataGrid.cs: fixes    
14798
14799 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
14800
14801         * MimeGenerated.cs: Use case sensitive comparer for
14802           NameValueCollections
14803
14804 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
14805
14806         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
14807         * ThemeWin32Classic.cs: bug fixes, code refactoring
14808         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
14809         * DataGrid.cs: bug fixes, code refactoring
14810         * DataGridTextBox.cs: bug fixes, code refactoring
14811         * DataGridColumnStyle.cs:  bug fixes, code refactoring
14812         * Theme.cs:  bug fixes, code refactoring
14813
14814 2005-07-01  Peter Bartok  <pbartok@novell.com> 
14815
14816         * TextControl.cs: Quick fix for the reported crash on ColorDialog
14817           and other text box usage
14818
14819 2005-07-01  Jackson Harper  <jackson@ximian.com>
14820
14821         * TabControl.cs: Make sure the bottom of the tab covers the pages
14822         border.
14823
14824 2005-06-30  Peter Bartok  <pbartok@novell.com> 
14825
14826         * Form.cs (ShowDialog): Assign owner of the dialog
14827         * TextBoxBase.cs: Always refresh caret size when deleting, caret
14828           might have been moved to a tag with different height
14829
14830 2005-06-30  Jackson Harper  <jackson@ximian.com>
14831
14832         * Form.cs: Don't create an infinite loop when setting focus
14833         * MenuItem.cs: Don't dirty the parents if we don't have any
14834
14835 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
14836
14837         * LibSupport.cs: Rename
14838
14839 2005-06-29  Peter Bartok  <pbartok@novell.com>
14840
14841         * TextBoxBase.cs: Re-align caret after deleting a character
14842         * TextControl.cs:
14843           - DeleteChars(): Ensure that tag covers the provided position
14844           - StreamLine(): Drop reference for dropped tag
14845
14846 2005-06-29  Peter Bartok  <pbartok@novell.com> 
14847
14848         * TextControl.cs: 
14849           - Selections now work properly, anchoring at the initial location
14850             and properly extending in either direction (SetSelectionToCaret(),
14851             SetSelectionStart() and SetSelectionEnd())
14852           - No longer redraws the whole control on selection change, now
14853             calculates delta between previous and new selection and only
14854             invalidates/redraws that area
14855           - Fixed FindPos() math off-by-one errors
14856           - Changed DeleteChars() to verify the provided tag covers the
14857             provided position, selections may have a tag that doesn't cover
14858             the position if the selection is at a tag border
14859           - Fixed off-by-one errors in DeleteChars()
14860           - Added missing streamlining check in DeleteChars() to remove
14861             zero-length tags
14862           - Implemented Invalidate() method, now properly calculates exposures
14863             between two given lines/positions
14864           - Implemented SetSelection()
14865           - Obsoleted and removed FixupSelection()
14866           - Improved RecalculateDocument() logic, removing code duplication
14867
14868 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14869
14870         * LibSupport.cs: changes to match different input/output arguments.
14871
14872 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14873
14874         * LibSupport.cs: added libsupport.so init routine.
14875
14876 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
14877         
14878         * ControlBindingsCollection.cs
14879                 - Throws an exception on null datasource when adding
14880                 - Checks for duplicated bindings when adding
14881
14882 2005-06-28  Jackson Harper  <jackson@ximian.com>
14883
14884         * TreeView.cs (OnKeyDown): Support left and right properly
14885         (navigates as well as expanding and collapsing.
14886         - Add support for Multiply, this expands all the selected nodes
14887         children.
14888         - Fix some tabbing.
14889
14890 2005-06-28  Jackson Harper  <jackson@ximian.com>
14891
14892         * TreeView.cs: Implement keyboard navigation, currently supports,
14893         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
14894         support for toggling checkboxes with the space bar.
14895
14896 2005-06-28  Jackson Harper  <jackson@ximian.com>
14897
14898         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
14899         tree.
14900
14901 2005-06-28  Jackson Harper  <jackson@ximian.com>
14902
14903         * TreeView.cs: Add missing event.
14904
14905 2005-06-27  Peter Bartok  <pbartok@novell.com> 
14906
14907         * TextControl.cs:
14908           - Made line ending size configurable (now allows for counting 
14909             lineendings as \n or \r\n)
14910           - Added margin to viewport to keep caret visible on right side
14911           - Fixed translation routines for line/pos to documentpos to consider
14912             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
14913           - Fixed some line-endings to be unix style
14914           - Fixed Document.FormatText to perform it's calculations 1-based
14915           - Added descriptions for a few methods that might otherwise get 
14916             used wrong
14917           - Added NOTE section with some basic conventions to remember at 
14918             the top of the file
14919           - Major fixup for RichTextBox selection drawing:
14920             * Fixed crashes when multiple tags on a single line were selected
14921             * fixed selection box drawing not overlaying text
14922             * fixed bogus offset calculation for tags not starting at index 1
14923             * Switched behaviour from using multiple Substrings of a 
14924               StringBuilder.ToString() to using multiple 
14925               StringBuilder.ToString(start, length) statements, hoping this is
14926               faster (kept original version commented out in the code, in case
14927               original version was faster)
14928         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
14929           alignment != Left
14930         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
14931           call it as well
14932
14933 2005-06-27  Jackson Harper  <jackson@ximian.com>
14934
14935         * TabControl.cs: Move to the left and right with the arrow
14936         keys. These keys don't cycle beyond first and last like
14937         tab. Refresh all the tabs when scrolling them to the left or
14938         right.
14939
14940 2005-06-27  Jackson Harper  <jackson@ximian.com>
14941
14942         * TabControl.cs:
14943           - ToString: Added method
14944           - CreateParams: Remove TODO and comment
14945           - OnKeyDown: Cycle through bounds properly.
14946           - SelectedIndex: Scroll to the right or left if we need to
14947           display the newly selected tab.
14948
14949 2005-06-23  Jackson Harper  <jackson@ximian.com>
14950
14951         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
14952         set.
14953
14954 2005-06-23  Jackson Harper  <jackson@ximian.com>
14955
14956         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
14957         CTRL-SHIFT-TAB, and HOME, END are there any others?
14958
14959 2005-06-23  Jackson Harper  <jackson@ximian.com>
14960
14961         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
14962
14963 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14964         
14965         * DataGridTextBoxColumn.cs: fixes and enhancements
14966         * ThemeWin32Classic.cs: fixes and enhancements
14967         * DataGridBoolColumn.cs:  fixes and enhancements
14968         * DataGridDrawingLogic.cs:  fixes and enhancements
14969         * CurrencyManager.cs: fixes and enhancements
14970         * DataGrid.cs: fixes and enhancements
14971         * DataGridColumnStyle.cs:  fixes and enhancements
14972
14973 2005-06-22  Jackson Harper  <jackson@ximian.com>
14974
14975         * TabControl.cs: Add some missing methods that just call into the
14976         base. Make the TabPageCollection's IList interface behave in the
14977         same manner as the MS implementation.
14978
14979 2005-06-22  Peter Bartok  <pbartok@novell.com> 
14980
14981         * TextControl.cs: Added sanity check
14982         * TextBoxBase.cs: 
14983           - Fixed wrapping behaviour, don't set wrap on single line controls
14984             (this fixes the breakage of colordialog introduced in an earlier
14985              checkin)
14986           - Added rudimentary support for autoscrolling right-aligned controls
14987             (still needs fixing, also, center alignment scroll is missing)
14988
14989 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14990         
14991         * ScrollBar.cs: Fixes thumbpos on Maximum values
14992
14993 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
14994         
14995         * PropertyGridView.cs: Pass context information to UITypeEditors 
14996
14997 2005-06-21  Peter Bartok  <pbartok@novell.com> 
14998
14999         * TextBoxBase.cs:
15000           - Now calling PositionCaret with absolute space coordinates
15001           - Enabled vertical scrolling
15002           - Better tracking of scrollbar changes, tied into WidthChange
15003             event
15004           - Improved cursor tracking
15005           - Removed debug output
15006         * TextControl.cs:
15007           - PositionCaret coordinates are now works in absolute space, not 
15008             the canvas
15009           - Improved tracking of document size
15010           - Added events for width and height changes
15011
15012 2005-06-21  Peter Bartok  <pbartok@novell.com>
15013
15014         * Form.cs: Set focus to active control when form is activated
15015         * TextControl.cs: 
15016           - Added word-wrap functionality to RecalculateLine() 
15017           - Added some short function descriptions for VS.Net to aid in
15018             writing dependent controls
15019           - Added Caret property, returning the current coords of the caret
15020           - Added ViewPortWidth and ViewPortHeight properties
15021           - Added Wrap property
15022           - Added CaretMoved event
15023           - Removed some old debug code
15024           - Split() can now create soft splits
15025           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
15026           - Added method to format existing text
15027           - Fixed size/alignment calculations to use viewport
15028           - RecalculateDocument now can handle changing line-numbers while
15029             calculating lines
15030
15031         * TextBox.cs:
15032           - Added some wrap logic, we don't wrap if alignment is not left
15033           - Added casts for scrollbar var, base class switched types to
15034             also support RichTextBoxA
15035           - Implemented handling of scrollbar visibility flags
15036
15037         * TextBoxBase.cs:
15038           - Switched scrollbars type to RichTextBoxScrollBars to support
15039             RichTextBox
15040           - Added tracking of canvas width/height
15041           - Switched scrollbars to be not selectable (to keep focus on text)
15042           - Added central CalculateDocument() method to handle all redraw
15043             requirements
15044           - Added ReadOnly support
15045           - Added WordWrap support
15046           - Fixed handling of Enter key (we now treat it as a DialogKey)
15047           - Fixed caret positioning when h or v scroll is not zero
15048           - Fixed placing/generation of vertical scrollbar
15049           - Added CalculateScrollBars() method to allow updating scrollbar
15050             limits and visibility
15051           - Fixed handling of horizontal scroll
15052           - Added handling of vertical scroll
15053           - Implemented auto-'jump' when caret moves to close to a left or
15054             right border and there is text to be scrolled into view (currently
15055             there's the potential for a stack overflow, until a bug in
15056             scrollbar is fixed)
15057
15058 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
15059         
15060         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
15061
15062 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
15063
15064         * Mime.cs:
15065         - added inodes.
15066         - return application/x-zerosize for files with size zero
15067           (if no extension pattern matches).
15068         - check matches collection for strings too.
15069         - return only the first mime type if the name value
15070           collection has more than one mime type.
15071
15072 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
15073         
15074         * PropertyGrid.cs: Cleaned up some TODOs
15075         * PropertyGridView.cs: Added support for UITypeEditors
15076
15077 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15078         
15079         * DataGrid.cs: clears cached value
15080
15081 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15082
15083         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
15084         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
15085         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
15086         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
15087         
15088 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
15089
15090         * ThemeWin32Classic.cs: fixes colour
15091
15092 2005-06-15  Peter Bartok  <pbartok@novell.com>
15093
15094         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
15095         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
15096         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
15097         * Control.cs: Added some MWFCategory and MWFDescription attributes
15098         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
15099
15100 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
15101
15102         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
15103         usage
15104
15105 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
15106
15107         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
15108         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
15109         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
15110         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
15111         * DataGrid.cs: default datagrid settings for Default Styles, fixes
15112         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
15113
15114 2005-06-13  Jackson Harper  <jackson@ximian.com>
15115
15116         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
15117         isn't printed when the user enables dropping. (X11 does accept
15118         drops).
15119         
15120 2005-06-13  Jackson Harper  <jackson@ximian.com>
15121
15122         * TreeView.cs: Remove some TODOS.
15123
15124 2005-06-13  Jackson Harper  <jackson@ximian.com>
15125
15126         * Form.cs: Hook into the mdi framework.
15127         * MdiClient.cs: Use the base control collections add method so
15128         parents get setup correctly. Set the default back colour and dock
15129         style.
15130         * MdiChildContext.cs: New class, this bad actor handles an
15131         instance of an MDI window. Right now there is only basic
15132         support. You can drag, close, and resize windows. Minimize and
15133         Maximize are partially implemented.
15134
15135 2005-06-13  Jackson Harper  <jackson@ximian.com>
15136
15137         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
15138         freaky when both vals are negative. NOTE: There are probably other
15139         places in XplatUIX11 that this needs to be done.
15140
15141 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
15142
15143         * DataGrid.cs: implement missing methods, move KeyboardNavigation
15144         * DataGridColumnStyle.cs: fixes signature
15145
15146 2005-06-12  Jackson Harper  <jackson@ximian.com>
15147
15148         * XplatUIX11.cs: Use sizing cursors similar to the ones on
15149         windows.
15150
15151 2005-06-11  Jackson Harper  <jackson@ximian.com>
15152
15153         * StatusBarPanel.cs: Signature cleanups. Implement
15154         BeginInit/EndInit.
15155
15156 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
15157
15158         * DataGridTextBoxColumn.cs: Honors aligment
15159         * GridColumnStylesCollection.cs: Contains is case unsensitive
15160         * GridTableStylesCollection.cs: several fixes
15161         * DataGridTableStyle.cs: default column creation
15162         * DataGridDrawingLogic.cs: fixes
15163         * CurrencyManager.cs: ListName property
15164         * DataGrid.cs: multiple styles support
15165         * DataGridColumnStyle.cs: fixes
15166         
15167
15168 2005-06-10  Peter Bartok  <pbartok@novell.com>
15169
15170         * Control.cs(Select): Moved SetFocus call to avoid potential
15171           loops if controls change the active control when getting focus
15172         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
15173           the up/down buttons
15174
15175 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
15176
15177         * ImageListConverter.cs: Implemented
15178
15179 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15180
15181         * MonthCalendar.cs: Wired in NumericUpDown control for year
15182
15183 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15184
15185         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
15186           DoubleClick events, since they are not meant to be fired.
15187
15188 2005-06-09  Peter Bartok  <pbartok@novell.com>
15189
15190         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
15191           Jonathan's standalone controls into MWF, implemented missing
15192           events, attributes and methods; added xxxAccessible classes
15193         * AccessibleObject.cs: Made fields internal so other classes
15194           can change them if needed
15195
15196 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
15197
15198         * UpDownBase.cs: Complete implementation
15199         * NumericUpDown.cs: Complete implementation
15200         * DomainUpDown.cs: Complete implementation
15201
15202 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
15203
15204         * DataGridTextBoxColumn.cs: drawing fixes
15205         * DataGridCell.cs: fixes ToString method to match MSNet
15206         * DataGridTableStyle.cs: fixes
15207         * DataGridBoolColumn.cs: fixes, drawing
15208         * DataGridDrawingLogic.cs: fixes, new methods
15209         * DataGridTextBox.cs: Keyboard and fixes
15210         * DataGrid.cs:
15211                 - Keyboard navigation
15212                 - Scrolling fixes
15213                 - Row selection (single, multiple, deletion, etc)
15214                 - Lots of fixes
15215         
15216 2005-06-07  Jackson Harper  <jackson@ximian.com>
15217
15218         * ThemeWin32Classic.cs: Clear the background area when drawing
15219         buttons.
15220
15221 2005-06-06  Peter Bartok  <pbartok@novell.com>
15222
15223         * ImageListStreamer.cs: Fixed signature for GetData
15224         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
15225         * ComboBox.cs:
15226           - Added missing ChildAccessibleObject class
15227           - Added missing OnXXXFocus overrides, switched to using those
15228             instead of the event handler
15229         * Control.cs:
15230           - Added Parent property for ControlAccessibleObject
15231           - Fixed signatures
15232           - Fixed attributes
15233           - Added ResetBindings()
15234         * ListBindingConverter.cs: Implemented some methods
15235         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
15236         * ImageList.cs: Implemented basic handle scheme, removed TODOs
15237         * ContainerControl.cs: Fixed signature, now subscribing to the
15238           ControlRemoved event instead of overriding the handler, LAMESPEC
15239         * CurrencyManager.cs: Added missing attribute
15240         * MonthCalendar.cs: Added missing properties
15241
15242 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15243
15244         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
15245         
15246 2005-06-06  Gaurav Vaish and Ankit Jain
15247
15248         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
15249         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
15250         
15251 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15252
15253         * Control.cs: fixes CreateParams Width / Height.
15254
15255 2005-06-05  Peter Bartok  <pbartok@novell.com>
15256
15257         * Win32DnD.cs: Removed compilation warnings
15258
15259 2005-06-05  Peter Bartok  <pbartok@novell.com>
15260
15261         * Control.cs (CreateParams): Since we don't know if one of the
15262           properties we use is overridden, lets make sure if we fail accessing
15263           we continue with a backup plan
15264
15265 2005-06-05  Peter Bartok  <pbartok@novell.com>
15266
15267         * Win32DnD.cs:
15268           - Removed debug output
15269           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
15270             struct
15271           - Plugged resource leak
15272         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
15273           MS size
15274
15275 2005-06-05  Peter Bartok  <pbartok@novell.com>
15276
15277         * XplatUIWin32.cs: Removed DnD code
15278         * Win32DnD.cs: Implemented drop source and drop target functionality
15279
15280 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15281
15282         * UpDownBase.cs: remove duplicate addition of event, enable some code
15283         that was commented out.
15284         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
15285         Validate input when a key is pressed. It works fine now for every
15286         combination of Hexadecimal. Only missing some drawing love when sharing
15287         space with other controls.
15288
15289 2005-06-04  Peter Bartok  <pbartok@novell.com>
15290
15291         * Control.cs:
15292           - We need to pass a window for DragDrop, so enable callback events
15293           - Added DnD callback events when being a DragSource
15294         * XplatUI.cs (StartDrag): Added window handle argument
15295         * XplatUIDriver.cs (StartDrag): Added window handle argument
15296         * QueryContinueDragEventArgs: Made fields internally accessible so
15297           drivers can set them
15298         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
15299           can set them
15300
15301 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
15302
15303         * DataGridTextBoxColumn.cs: column text editing
15304         * DataGridTableStyle.cs: Respect columns styles created by the user
15305         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
15306         * DataGridBoolColumn.cs: bool column editing
15307         * DataGrid.cs: fixes to scrolling, properties, etc
15308         * DataGridTextBox.cs: handle keyboard
15309         * DataGridColumnStyle.cs: fixes
15310
15311 2005-06-02  Jackson Harper  <jackson@ximian.com>
15312
15313         * ImageListStreamer.cs: Somewhat broken implementation of
15314         GetObjectData. The RLE needs some work to match MS properly.
15315
15316 2005-06-02  Jackson Harper  <jackson@ximian.com>
15317
15318         * X11Dnd.cs: Attempting to keep at least one file in MWF
15319         monostyled.
15320
15321 2005-06-02  Peter Bartok  <pbartok@novell.com>
15322
15323         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
15324           that way
15325
15326 2005-06-02  Peter Bartok  <pbartok@novell.com>
15327
15328         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
15329         * XplatUI.cs: Added DoDragDrop() method
15330         * XplatUIDriver.cs: Added DoDragDrop() method
15331
15332 2005-06-02  Jackson Harper  <jackson@ximian.com>
15333
15334         * Splitter.cs: Implement BorderStyle.
15335
15336 2005-06-02  Jackson Harper  <jackson@ximian.com>
15337
15338         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
15339         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
15340         X11 using XDND.
15341
15342 2005-06-02  Peter Bartok  <pbartok@novell.com>
15343
15344         * DataObject.cs:
15345           - Added Data setter
15346           - Fixed broken insertion code for SetData, now also
15347             overwrites any existing entry of the same format name
15348         * Hwnd.cs: Added list of pointers that automatically gets
15349           freed when the window is disposed
15350         * XplatUI.cs: Call driver initialization method when loading
15351           a driver
15352         * Control.cs:
15353           - OnDragLeave takes EventArgs, not DragEventArgs
15354           - Added setting of WS_EX_ACCEPTFILES style when dropping is
15355             supported
15356           - Forces style update when drop state changes
15357         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
15358           not perfect since we cannot (yet) call the IDataObject.GetData()
15359           method, we keep getting 0x80004005 error, dunno why)
15360
15361 2005-06-02  Peter Bartok  <pbartok@novell.com>
15362
15363         * DragEventArgs.cs: Make fields internal so we can cache the
15364           object and re-set the fields from XplatUI
15365
15366 2005-06-02  Jackson Harper  <jackson@ximian.com>
15367
15368         * Control.cs: Add some internal methods so the DnD subsystem can
15369         raise DnD events. Also call into the driver when AllowDrop is set.
15370         * XplatUI.cs:
15371         * XplatUIDriver.cs: New method for setting whether or not a window
15372         is allowed to accept drag and drop messages.
15373                 
15374 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
15375         
15376         * ScrollBar.cs: Make sure that values sent in Scroll events
15377         are always between Maximum and Minimum.
15378
15379 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
15380
15381         * Menu.cs: Call MenuChanged when menuitem visibility has been
15382         changed.
15383         * MenuItem.cs: Rebuild menu when item is (not) visible.
15384         * MainMenu.cs: MainMenu has special MenuChanged.
15385         * Theme.cs: Caption and FrameBorderSize are not fixed.
15386         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
15387         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
15388         * XplatUIX11.cs,
15389         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
15390         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
15391
15392 2005-05-30  Jackson Harper  <jackson@ximian.com>
15393
15394         * DataFormat.cs: We can't statically initialize this stuff because
15395         it calls into the xplatui and could create a loop. So we lazy init
15396         it.
15397
15398 2005-05-28  Jackson Harper  <jackson@ximian.com>
15399
15400         * Control.cs: Proper implementation of Product(Name/Version).
15401
15402 2005-05-27  Jackson Harper  <jackson@ximian.com>
15403
15404         * DataObject.cs: Dont crash if no data is found.
15405
15406 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
15407         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
15408                 as per status page, guessing it should be set to true
15409
15410 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
15411
15412         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
15413         * DataGridTableStyle.cs: set proper formatting text, def header text
15414         * ThemeWin32Classic.cs: new themable paramaters
15415         * DataGridBoolColumn.cs: paint check box, get data, fixes
15416         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
15417         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
15418         * DataGridColumnStyle.cs: fixes
15419         * Theme.cs: new themable paramaters
15420                 
15421 2005-05-26  Peter Bartok  <pbartok@novell.com>
15422
15423         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
15424
15425 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15426         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
15427
15428 2005-05-24  Peter Bartok  <pbartok@novell.com>
15429
15430         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
15431           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
15432           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
15433           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
15434           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
15435           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
15436           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
15437           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
15438           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
15439           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
15440           missing attributes, etc
15441         * DataGridPreferredColumnWidthTypeConverter.cs: Added
15442
15443 2005-05-24  Peter Bartok  <pbartok@novell.com>
15444
15445         * Help.cs: Added, implemented trivial functions, throws up MessageBox
15446           when user tries to get help
15447         * DataObject.cs, DataFormats.cs, LinkArea.cs,
15448           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
15449           to suppress warnings
15450         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
15451           avoid unreachable code warning
15452
15453 2005-05-20  Peter Bartok  <pbartok@novell.com>
15454
15455         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
15456
15457 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15458
15459         * DataGridTextBoxColumn.cs: Basic painting methods
15460         * DataGridTableStyle.cs: Set table style in the column
15461         * ThemeWin32Classic.cs: Use Theme for colors
15462         * DataGridDrawingLogic.cs: Implement more drawing
15463         * DataGrid.cs: drawing, theming, enhacements, fixes
15464         * DataGridColumnStyle.cs: fixes, drawing
15465         * Theme.cs: theming for Datagrid
15466
15467 2005-05-20  Peter Bartok  <pbartok@novell.com>
15468
15469         * Cursor.cs: Implemented GetObjectData() method
15470
15471 2005-05-20  Peter Bartok  <pbartok@novell.com>
15472
15473         * Cursors.cs: Added setting of cursor name
15474         * Cursor.cs:
15475           - Implemented constructors
15476           - Implemented Draw and DrawStretched
15477           - Implemented Current property
15478           - Implemented == and != operators
15479           - Implemented Dispose()
15480           - Implemented ToString
15481           - Added missing attributes
15482         * XplatUIX11.cs:
15483           - Added missing reset for OverrideCursor when DoEvents is called
15484           - Fixed creation of cursor, logic was wrong
15485         * XplatUIWin32.cs:
15486           - Added missing reset for OverrideCursor when DoEvents is called
15487           - Fixed creation of cursor, bit arrays were swapped
15488         * Clipboard.cs: Removed obsolete MonoTODO attribute
15489
15490 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15491
15492         * ComboBox.cs: fixes OnSelectedItemChanged
15493         * ControlBindingsCollection.cs: fixes item range check
15494
15495 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15496
15497         * UpDownBase.cs:
15498                 - Calc preferred height properly
15499                 - Implement missing properties
15500                 
15501         * NumericUpDown.cs: Implement missing events
15502
15503 2005-05-19  Jackson Harper  <jackson@ximian.com>
15504
15505         * TabControl.cs: New method that resizes the tab pages before
15506         redrawing them. This as needed as the control is double buffered
15507         and sizing will not be recalculated unless ResizeTabPages is
15508         called.
15509         * TabPage.cs: Set base.Text instead of Text in the constructor so
15510         that UpdateOwner does not get called. Use the new Redraw method of
15511         TabControl instead of Refresh so the sizing is recalculated.
15512         * ThemeWin32Classic.cs: Draw the text for button tabs.
15513
15514 2005-05-19  Jackson Harper  <jackson@ximian.com>
15515
15516         * Control.cs: Paint control background images. Fix typo where
15517         PaintControlBackground was not getting called correctly.
15518
15519 2005-05-19  Peter Bartok  <pbartok@novell.com>
15520
15521         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
15522           I can investigate, apparently I broke FileDialog
15523
15524 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
15525
15526         * AxHost.cs: Some simple properties.
15527         * Control.cs: window must be accessible after ctor.
15528         * Form.cs: Added TransparencyKey property.
15529         * TextBoxBase.cs: Implemented Clear. Text property can be null.
15530         * XplatUIWin32.cs: SetBorderStyle implemented.
15531
15532 2005-05-18  Peter Bartok  <pbartok@novell.com>
15533
15534         * DataObject.cs: Entries are not global but particular to the
15535           DataObject, now it behaves that way
15536         * XplatUIWin32.cs: Implemented Clipboard methods
15537         * Clipboard.cs: Implemented
15538         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
15539         * XplatUIOSX.cs: Updated to final clipboard prototypes
15540         * XplatUIX11.cs: Implemented Clipboard methods
15541         * XplatUIDriver.cs: Updated to final clipboard prototypes
15542         * XplatUIStructs.cs:
15543           - Added BITMAPINFOHEADER struct
15544           - Added ClipboardFormats enum
15545         * X11Structs.cs:
15546           - Added ClipboardStruct
15547           - Added Atom enum items for clipboard types
15548           - Fixed atom types for Selection event structures
15549         * DataFormats.cs:
15550           - Added internal properties and methods for drivers to enumerate
15551             all known formats
15552           - Switched initialization method to allow drivers to assign their
15553             own IDs even for the MS predefined clipboard IDs
15554         * XplatUI.cs: Updated to final clipboard interface
15555
15556 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15557         * PropertyGridView.cs: Fixed compiler warnings.
15558
15559 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15560         * PropertyGrid.cs: Added some event calls
15561         * PropertyGridView.cs: Change drawing code to use double buffering
15562         * PropertyGridTextBox.cs: Changed Text property name
15563         * GridItem.cs: Added Bounds property.
15564         * GridEntry.cs: Added Bounds property.
15565
15566 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
15567
15568         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
15569         since GetType() may not return the correct type if the object is
15570         a remoting proxy.
15571
15572 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
15573
15574         * TreeNodeCollection.cs: fixes get/set item ranges
15575         
15576 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15577
15578         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
15579                 
15580 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15581
15582         * ComboBox.cs: Fix item range comparation
15583         * ListView.cs: Fix item range comparation
15584
15585 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15586
15587         * FontDialog.cs:
15588           - Clear example panel when OnPaint is called
15589           - Better solution for displaying the example panel text
15590           - Select default indexes in the ListBoxes
15591
15592 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15593
15594         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
15595
15596 2005-05-11  Peter Bartok  <pbartok@novell.com>
15597
15598         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
15599         * SelectionRangeConverter.cs: Implemented
15600         * PropertyGrid.cs: Fixed attribute value
15601         * Control.cs:
15602           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
15603           - Added Sebastien Pouliot's CAS Stack Propagation fixes
15604         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
15605           that's common to all drivers. First methods to go there are
15606           Sebastien Pouliot's CAS Stack Propagation helper methods
15607         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
15608           Sebastien Pouliot for CAS Stack Propagation
15609
15610 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15611
15612         * OSXStructs.cs:
15613           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
15614
15615 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
15616
15617         * DataGridTextBoxColumn.cs: fixed some members
15618         * GridColumnStylesCollection.cs: indexed column is case insensitive
15619         * DataGridTableStyle.cs: fixes
15620         * ThemeWin32Classic.cs: add new theme parameter
15621         * Theme.cs: add new theme parameter
15622         * DataGridDrawingLogic.cs: Datagrid's drawing logic
15623         * DataGrid.cs: fixes, new internal properties, etc.
15624         * DataGridColumnStyle.cs: allows to set grid value
15625         *
15626
15627 2005-05-10  Peter Bartok  <pbartok@novell.com>
15628
15629         * AccessibleObject.cs:
15630           - Removed MonoTODO attribute on help, method is correct
15631           - Fixed Bounds property
15632         * AxHost.cs: Moved MonoTODO
15633         * ButtonBase.cs: Now setting AccessibleObject properties
15634         * RadioButton.cs: Setting proper AccessibleObject role
15635         * CheckBox.cs: Setting proper AccessibleObject role
15636         * ControlBindingsCollection.cs: Added properties, methods and attributes
15637         * DataFormats.cs: Fixed awkward internal API, and changed to enable
15638           userdefined DataFormats.Format items as well
15639         * ListControl.cs: Removed data_member from the public eye
15640         * OpenFileDialog.cs:
15641           - Made class sealed
15642           - Added missing attributes
15643         * SaveFileDialog.cs: Added missing attributes
15644         * ImageListStreamer.cs: Fixed code that caused warnings
15645         * LinkLabel.cs: Removed unreachable code
15646         * TreeView.cs: Fixed code that caused warnings
15647         * PropertyGridView.cs: Fixed code that caused warnings
15648         * GridColumnStylesCollection.cs: Added missing attributes
15649         * GridTableStylesCollection: Added missing attribute
15650         * PropertyManager: Added .ctor
15651         * SecurityIDType: Added
15652         * DataObject.cs: Implemented class
15653         * LinkArea.cs: Added missing attribute
15654
15655 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
15656
15657         * RadioButton.cs: call base method to allow to fire OnClick event
15658         * UpDownBase.cs: OnMouseUp call base method
15659         * CheckedListBox.cs: call base method before returning
15660         * TrackBar.cs: call base method before returning
15661         
15662
15663 2005-05-10  Peter Bartok  <pbartok@novell.com>
15664
15665         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
15666           for messages
15667
15668 2005-05-10  Peter Bartok  <pbartok@novell.com>
15669
15670         * DataFormats.cs: Implemented
15671         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
15672           XplatUIX11.cs: Added Clipboard APIs
15673         * XplatUIWin32.cs: Implemented Clipboard APIs
15674         * FolderBrowserDialog.cs: Added missing event, attributes
15675
15676 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
15677
15678         * CheckBox.cs: call base method to allow to fire OnClick event
15679
15680 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
15681
15682         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
15683
15684 2005-05-06  Peter Bartok  <pbartok@novell.com>
15685
15686         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
15687         * Screen.cs: Implemented
15688         * HelpNavigator.cs: Added
15689         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
15690           property
15691         * HelpProvider.cs: Implemented all we can do until we have a CHM
15692           help library (which means that "What's This" does work now)
15693
15694 2005-05-06  Jackson Harper  <jackson@ximian.com>
15695
15696         * XplatUIX11.cs: Fix waking up the main loop.
15697                 
15698 2005-05-05  Peter Bartok  <pbartok@novell.com>
15699
15700         * XplatUI.cs: Updated revision
15701         * Form.cs: Removed enless loop
15702         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
15703         * Label.cs (OnPaint): Added call to base.OnPaint()
15704         * ToolTip.cs: Made ToolTipWindow reusable for other controls
15705         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
15706         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
15707         * AxHost.cs: Added
15708         * ButtonBase.cs: Moved base.OnPaint() call to end of method
15709         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
15710           to ToolTip.ToolTipWindow for drawing and size methods; this allows
15711           reuse of ToolTipWindow by other controls
15712         * SizeGrip.cs: Moved base.OnPaint() call to end of method
15713         * XplatUIX11.cs: Now clipping drawing area (experimental)
15714         * PictureBox.cs: Moved base.OnPaint() call to end of method
15715         * Theme.cs: Fixed ToolTip abstracts to match new format
15716         * ErrorProvider.cs: Implemented
15717
15718 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
15719
15720         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
15721         * LinkLabel.cs:
15722                 - Adds cursors
15723                 - Handles focus
15724                 - Implements LinkBehavior
15725                 - Fixes many issues
15726
15727 2005-05-03  Jackson Harper  <jackson@ximian.com>
15728
15729         * ListView.cs: Calculate the scrollbar positioning on resize and
15730         paint, so they get put in the correct place.
15731
15732 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15733
15734         * ColorDialogs.cs: The small color panels are now handled by
15735           SmallColorControl. This fixes drawing of the focus rectangle
15736           and adds a 3D border.
15737
15738 2005-05-03  Peter Bartok  <pbartok@novell.com>
15739
15740         * Control.cs: Modified version of Jonathan Chamber's fix for
15741           double-buffering
15742
15743 2005-05-03  Jackson Harper  <jackson@ximian.com>
15744
15745         * ListView.cs: Remove redraw variable. Control now handles whether
15746         or not a redraw needs to be done, and will only raise the paint
15747         event if redrawing is needed.
15748
15749 2005-05-03  Jackson Harper  <jackson@ximian.com>
15750
15751         * Splitter.cs: No decorations for the splitter form. Cache the
15752         hatch brush.
15753
15754 2005-05-03  Jackson Harper  <jackson@ximian.com>
15755
15756         * TreeView.cs: Use dashed lines to connect nodes. Use the
15757         ControlPaint method for drawing the focus rect instead of doing
15758         that in treeview.
15759
15760 2005-05-02  Peter Bartok  <pbartok@novell.com>
15761
15762         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
15763
15764 2005-04-29  Jackson Harper  <jackson@ximian.com>
15765
15766         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
15767         entire image buffer. Just clear the clipping rectangle.
15768
15769 2005-04-29  Jackson Harper  <jackson@ximian.com>
15770
15771         * ThemeWin32Classic.cs: Don't draw list view items that are
15772         outside the clipping rectangle.
15773
15774 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
15775
15776         * ListBox.cs: added horizontal item scroll
15777
15778 2005-04-29  Jackson Harper  <jackson@ximian.com>
15779
15780         * ThemeWin32Classic.cs: Remove some old debug code that was
15781         causing flicker with the new double buffering code.
15782
15783 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
15784
15785         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
15786         behave like combobox and comboboxlist (still not sure if this is
15787         correct though).
15788
15789 2005-04-28  Jackson Harper  <jackson@ximian.com>
15790
15791         * ThemeWin32Classic.cs: Don't fill the middle of progress
15792         bars. This fills areas outside of the clip bounds that don't need
15793         to be filled.
15794
15795 2005-04-28  Jackson Harper  <jackson@ximian.com>
15796
15797         * Control.cs: Don't expose functionality to touch the image buffers.
15798         * ProgressBar.cs:
15799         * ListView.cs: We do not need to (and no longer can) manipulate
15800         the image buffers directly. All of this is handled by Control.
15801
15802 2005-04-28  Peter Bartok  <pbartok@novell.com>
15803
15804         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15805           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
15806           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
15807
15808 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15809
15810         * Combobox:
15811                 - Adjust control's height for non-simple comboboxes (bug fix)
15812                 - Remove dead code
15813         * MenuAPI.cs: remove unused var
15814         * ScrollBar.cs: remove unsed var
15815                  
15816         * ListBox.cs: unselect items when clearing
15817
15818 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15819
15820         * ListControl.cs: honors OnPositionChanged and default Selected Item
15821         * ListBox.cs: unselect items when clearing
15822
15823 2005-04-27  Jackson Harper  <jackson@ximian.com>
15824
15825         * X11Keyboard.cs: Initialize a default keyboard and give a warning
15826         if a "correct" keyboard is not found. This will make us not crash,
15827         but might give some users bad keyboard layouts...seems to be the
15828         same thing rewind does.
15829
15830 2005-04-27  Jackson Harper  <jackson@ximian.com>
15831
15832         * BindingManagerBase.cs: Attach the current/position changed
15833         handlers to their respective events.
15834
15835 2005-04-27  Jackson Harper  <jackson@ximian.com>
15836
15837         * Control.cs: Make sure that the first WM_PAINT does a full draw,
15838         not just a blit.
15839         * ThemeWin32Classic.cs: Don't fill the background for picture
15840         boxes. This could overright user drawing.
15841         * ComboBox.cs: Just fill the clipping rect not the entire client
15842         rect when drawing the background. This prevents pieces of the
15843         image buffer from getting overwritten and is theoretically faster.
15844
15845 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
15846
15847         * ComboBox.cs: Databinding support fixes, fire missing events
15848         * ListControl.cs: implement missing methods and properties, fixes
15849         * ThemeWin32Classic.cs: Databiding support on Drawing
15850         * CheckedListBox.cs: Databinding support fixes, fire missing events
15851         * ListBox.cs: Databinding support fixes, fire missing events
15852         
15853 2005-04-25  Peter Bartok  <pbartok@novell.com>
15854
15855         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
15856
15857 2005-04-25  Jackson Harper  <jackson@ximian.com>
15858
15859         * TreeView.cs: Use the horizontal scrollbars height not width when
15860         determining how much of the client area is available.
15861
15862 2005-04-25  Jackson Harper  <jackson@ximian.com>
15863
15864         * Control.cs: Double buffering is handled differently now. As per
15865         the spec, the extra buffer is created in the WM_PAINT message and
15866         passed down to the control's drawing code.
15867         * GroupBox.cs:
15868         * Label.cs:
15869         * CheckBox.cs:
15870         * ProgressBar.cs:
15871         * RadioButton.cs:
15872         * ColorDialog.cs:
15873         * ComboBox.cs:
15874         * PropertyGridView.cs:
15875         * UpDownBase.cs:
15876         * MessageBox.cs:
15877         * MenuAPI.cs:
15878         * ListView.cs:
15879         * ButtonBase.cs:
15880         * SizeGrip.cs:
15881         * ScrollBar.cs:
15882         * ListBox.cs:
15883         * TrackBar.cs:
15884         * ToolBar.cs:
15885         * PictureBox.cs:
15886         * DateTimePicker.cs:
15887         * StatusBar.cs:
15888         * TreeView.cs: Update to new double buffering system.
15889         * MonthCalendar.cs: Uncomment block, as Capture is now
15890         working. Update to new double buffering
15891         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
15892         * PaintEventArgs.cs: New internal method allows us to set the
15893         graphics object. This is used for double buffering.
15894         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
15895         rectangle. The internal paint_area var has been removed from
15896         StatusBar. The clipping rect should be used instead.
15897         * Theme.cs: Give the PictureBox drawing method a clipping rect.
15898         * TabPage.cs: The RefreshTabs method was removed, so just call the
15899         tab controls Refresh method now.
15900         * TabControl.cs: Update to new double buffering. Make sure the
15901         handle is created before sizing the tab pages, otherwise we will
15902         get stuck in a loop.
15903
15904 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
15905
15906         * LinkLabel.cs: Fix typo, bug #74719; patch
15907           from Borja Sanchez Zamorano
15908
15909 2005-04-22  Jackson Harper  <jackson@ximian.com>
15910
15911         * TreeNode.cs: Implement Handle stuff.
15912         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
15913
15914 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
15915
15916         * DataGridTextBoxColumn.cs: call base constructors, fixes
15917         * GridColumnStylesCollection.cs: missing events, methods, and functionality
15918         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
15919         * DataGridTableStyle.cs: implements create default column styles
15920         * DataGridBoolColumn.cs: which types can handle
15921         * DataGrid.cs: missing methods, fixes, new functionality
15922         * DataGridColumnStyle.cs: fixes
15923
15924 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
15925         * FolderBrowserDialog.cs:
15926         - Use a thread to fill the TreeView
15927         - Adjusted some sizes
15928
15929 2005-04-19  Peter Bartok  <pbartok@novell.com>
15930
15931         * LinkLabel.cs: (Re-)create the pieces when setting the Text
15932           property. Fixes #74360.
15933
15934 2005-04-19  Jackson Harper  <jackson@ximian.com>
15935
15936         * XEventQueue.cs: Lock when getting the lockqueue size.
15937         * PictureBox.cs: Call base OnPaint
15938         
15939 2005-04-19  Peter Bartok  <pbartok@novell.com>
15940
15941         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
15942           messages were no longer being processed (this broke BeginInvoke)
15943
15944           
15945 2005-04-18  Jackson Harper  <jackson@ximian.com>
15946
15947         * TreeView.cs: buglet that caused node images to get drawn
15948         regardless of whether or not they were in the clipping rectangle.
15949
15950 2005-04-18  Jackson Harper  <jackson@ximian.com>
15951
15952         * CurrencyManager.cs: There are four rules for GetItemProperties:
15953         - If the type is an array use the element type of the array
15954         - If the type is a typed list, use the type
15955         - If the list contains an Item property that is not an object, use
15956         that property
15957         - use the first element of the list if there are any elements in
15958         the list.
15959         
15960 2005-04-17  Jackson Harper  <jackson@ximian.oom>
15961
15962         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
15963         click. This handles offsets for scrolling properly and reduces
15964         memory. Also fixed GetNode to not offset now that TopNode works
15965         properly.
15966         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
15967         
15968 2005-04-17  Jackson Harper  <jackson@ximian.com>
15969
15970         * CursorConverter.cs: Initial implementation.
15971
15972 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15973
15974         * ListControl.cs: work towards complex data binding support on ListControl
15975         * CurrencyManager.cs: work towards complex data binding support on ListControl
15976         * ListBox.cs: work towards complex data binding support on ListControl
15977
15978
15979 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15980
15981         * GridTableStylesCollection.cs: fixes name and constructor
15982         * DataGridTableStyle.cs: fixes
15983         * DataGridBoolColumn.cs: fixes names and constructors
15984         * DataGrid.cs: define methods and properties. Some init implementations
15985         * DataGridCell.cs: define methods and properties. Some init implementations
15986         * GridTablesFactory.cs: Define methods and properties
15987
15988 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
15989
15990         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
15991         graphics port changes.  We still want the coordinates in global screen
15992         coordinates.
15993
15994 2005-04-14  Jackson Harper  <jackson@ximian.com>
15995
15996         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
15997         check plus minus or checkbox clicks unless those features are enabled.
15998
15999 2005-04-14  Jackson Harper  <jackson@ximian.com>
16000
16001         * TreeView.cs: Add methods for setting the top and bottom visible
16002         nodes. TreeNode::EnsureVisible uses these methods.
16003         * TreeNode.cs: Implement EnsureVisible
16004
16005 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
16006
16007         * Form.cs: Pospone menu assignation if the window has not been created yet
16008         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
16009         size and position
16010
16011 2005-04-12  Jackson Harper  <jackson@ximian.com>
16012
16013         * TreeView.cs: Set the TopNode properly when scrolling
16014         occurs. This has the added benifit of reducing the amount of
16015         walking that needs to be done when drawing. Also removed an old
16016         misleading TODO.
16017         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
16018         
16019 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
16020
16021         * Timer.cs: fixes interval setting when the timer is already enabled
16022         
16023 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
16024
16025         * FolderBrowserDialog.cs: First approach
16026
16027 2005-04-09  Peter Bartok  <pbartok@novell.com>
16028
16029         * FolderBrowserDialog: Added
16030
16031 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
16032
16033         * LinkLabel.cs: move drawing code into the theme
16034         * ThemeWin32Classic.cs: drawing code and painting background bugfix
16035         * Theme.cs: define DrawLinkLabel method
16036
16037 2005-04-05  Jackson Harper  <jackson@ximian.com>
16038
16039         * BindingContext.cs: Use weak references so these bad actors don't
16040         stay alive longer then they need to.
16041
16042 2005-04-05  Jackson Harper  <jackson@ximian.com>
16043
16044         * ListControl.cs: Basic implementation of complex databinding.
16045         * ComboBox.cs:
16046         * ListBox.cs: Add calls to ListControl databinding methods.
16047
16048 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
16049
16050         * FileDialog.cs:
16051           - Don't change PopupButtonState to Normal when the
16052             PopupButton gets pressed several times.
16053           - Renamed ButtonPanel to PopupButtonPanel
16054
16055 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
16056
16057         * ColorDialog.cs: Use cached objects instead of creating them
16058         * LinkLabel.cs: Use cached objects instead of creating them
16059         * Splitter.cs: Use cached objects instead of creating them
16060         * FontDialog.cs: Use cached objects instead of creating them
16061         * PropertyGridView.cs: Use cached objects instead of creating them
16062         * MessageBox.cs: Use cached objects instead of creating them
16063         * FileDialog.cs: Use cached objects instead of creating them
16064         * ThemeWin32Classic.cs: Use cached objects instead of creating them
16065         * TreeView.cs: Use cached objects instead of creating them
16066         
16067 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
16068
16069         * Control.cs: use Equals to compare the font since no == op
16070         * ScrollBar.cs: use Equals to compare the font since no == op
16071
16072 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
16073
16074         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
16075
16076 2005-04-01  Jackson Harper  <jackson@ximian.com>
16077
16078         * Binding.cs: Implement IsBinding.
16079         * BindingManagerBase.cs:
16080         * PropertyManager.cs:
16081         * CurrencyManager.cs: Add IsSuspended property.
16082
16083 2005-04-01  Jackson Harper  <jackson@ximian.com>
16084
16085         * Binding.cs: Had some IsAssignableFrom calls backwards.
16086
16087 2005-04-01  Jackson Harper  <jackson@ximian.com>
16088
16089         * Binding.cs: Handle null data members when pulling data.
16090         * PropertyManager.cs: Handle the data member being a property that
16091         does not exist.
16092
16093 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16094
16095         * DataGridTextBoxColumn.cs: fixes signature
16096         * DataGrid.cs: calls right constructor
16097
16098 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16099
16100         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
16101         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
16102         * GridTableStylesCollection.cs: implements GridTableStylesCollection
16103         * DataGridTableStyle.cs: implements DataGridTableStyle
16104         * DataGridBoolColumn.cs: implements DataGridBoolColumn
16105         * DataGridTextBox.cs: implements DataGridTextBox
16106         * DataGridColumnStyle.cs: implements DataGridColumnStyle
16107
16108 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
16109
16110         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
16111
16112 2005-03-29  Peter Bartok  <pbartok@novell.com>
16113
16114         * Application.cs:
16115           - Properly implemented CompanyName property
16116           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
16117             returns a path that includes CompanyName, ProductName and
16118             Version (fixes bug #70330)
16119
16120 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
16121
16122         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
16123           fixes bug #72588.
16124
16125 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16126
16127         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
16128         
16129           - Added ReadOnly CheckBox
16130           - Further refactoring: moved some code from Open-/SaveFileDialog
16131             to FileDialog
16132
16133 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16134
16135         * OpenFileDialog.cs: Fixed CheckFileExists
16136         * FileDialog.cs:
16137           Moved FileView and DirComboBox outside FileDialog class.
16138           They can now be used outside FileDialog
16139
16140 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16141
16142         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
16143         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
16144
16145 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16146
16147         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16148           - Added missing CreatePrompt property in SaveDialog
16149           - Overall SaveDialog handling should be better now
16150           - Added non standard ShowHiddenFiles property
16151           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
16152           - Added InitialDirectory and RestoreDirectory support
16153
16154 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
16155
16156         * FileDialog.cs: Made dirComboBox usable
16157
16158 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
16159
16160         * FileDialog.cs: Added Filter support (case sensitiv)
16161
16162 2005-03-24  Jackson Harper  <jackson@ximian.com>
16163
16164         * TabControl.cs: Need a couple more pixels for the lines.
16165
16166 2005-03-23  Jackson Harper  <jackson@ximian.com>
16167
16168         * TabControl.cs: Give the tab page focus when it is selected.
16169
16170 2005-03-23  Jackson Harper  <jackson@ximian.com>
16171
16172         * TabControl.cs: Account for the drawing of tabs borders when
16173         invalidating. If the slider was clicked dont do click detection on
16174         the tabs.
16175
16176 2005-03-23  Jackson Harper  <jackson@ximian.com>
16177
16178         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
16179
16180 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
16181
16182         * CategoryGridEntry.cs: Added
16183         * GridItem.cs: Added helper properties
16184         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
16185         * GridEntry.cs: Updated code for collection
16186         * PropertyGrid.cs: Cleaned up some formatting
16187         * PropertyGridView.cs: Added drop down functionality for enums.
16188         * GridItemCollection.cs: Added enumerator logic
16189         * PropertyGridEntry.cs: Added
16190
16191 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16192
16193         * FileDialog.cs:
16194           - Removed unnecessary commented code
16195           - Fixed handling for entering the filename manually in the combobox
16196
16197 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16198
16199         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
16200
16201 2005-03-18  Peter Bartok  <pbartok@novell.com>
16202
16203         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
16204           them being touching the border
16205
16206 2005-03-18  Peter Bartok  <pbartok@novell.com>
16207
16208         * TextControl.cs: Quick hack to center text better
16209
16210 2005-03-18  Peter Bartok  <pbartok@novell.com>
16211
16212         * ControlPaint.cs:
16213           - Don't throw NotImplemented exceptions, just print a notice once
16214             instead (requested by Miguel). This makes running existing SWF
16215             apps a bit easier
16216         * Control.cs:
16217           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
16218           - Added context menu trigger on right click
16219         * Panel.cs: Trigger invalidate on resize
16220         * StatusBar.cs:
16221           - Removed old double-buffer drawing
16222           - Added ResizeRedraw style to force proper update of statusbar
16223         * ListView.cs:
16224           - Removed debug output
16225         * ThemeWin32Classic.cs:
16226           - Fixed drawing of status bar, now draws Text property if there
16227             are no defined panels
16228
16229 2005-03-18  Jackson Harper  <jackson@ximian.com>
16230
16231         * ImageList.cs: When the image stream is set pull all the images
16232         from it.
16233         * ImageListStreamer.cs: Implement reading image list streams.
16234
16235 2005-03-18  Peter Bartok  <pbartok@novell.com>
16236
16237         * ThemeWin32Classic.cs (DrawPictureBox):
16238           - Fixed calculations for centered drawing
16239           - Fixed drawing for normal mode, not scaling the image on normal
16240
16241 2005-03-18  Peter Bartok  <pbartok@novell.com>
16242
16243         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
16244           textbox
16245         * FileDialog.cs:
16246           - Made Open/Save button the accept button for FileDialog
16247           - Tied the cancel button to the IButtonControl cancel button
16248           - Save/Open now properly builds the pathname
16249           - Now handles user-entered text
16250           - Preventing crash on right-click if no item is selected
16251           - Fixed Text property, now uses contents of textbox
16252           - Fixed SelectedText property, now just returns the text part that
16253             is selected in the text box
16254
16255 2005-03-18  Jackson Harper  <jackson@ximian.com>
16256
16257         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
16258         rect, make sure to de-adjust the interior rect after drawing the
16259         tab text.
16260
16261 2005-03-18  Peter Bartok  <pbartok@novell.com>
16262
16263         * MenuAPI.cs: Remove menu *before* executing selected action to
16264           prevent the menu from 'hanging around'
16265           
16266 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
16267
16268         * XplatUIOSX.cs: Implemented WorkingArea property
16269
16270 2005-03-17  Peter Bartok  <pbartok@novell.com>
16271
16272         * XplatUIX11.cs: Fixed menu coord calculations
16273         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
16274           for calculating offsets
16275
16276 2005-03-17  Peter Bartok  <pbartok@novell.com>
16277
16278         * Hwnd.cs: Do not consider menu presence for default client
16279           rectangle location/size
16280         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
16281           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
16282           translation functions
16283         * FileDialog.cs: Fixed (what I presume is a) typo
16284
16285 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
16286
16287         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
16288           X access (avoids X-Async errors)
16289
16290 2005-03-16  Jackson Harper  <jackson@ximian.com>
16291
16292         * TabControl.cs: Raise the SelectedIndexChanged event.
16293
16294 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
16295
16296         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16297           - Removed vertical ToolBar and replaced it with a custom panel
16298             (desktop and home button already work)
16299           - Added Help button (some controls get resized or relocated then)
16300           - Draw correct text depending on Open or Save.
16301           - Fixed some typos...
16302
16303 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
16304
16305         * ScrollBar.cs:
16306           - Only change Maximum and Minimum when need it (bug fix)
16307
16308 2005-03-15  Peter Bartok  <pbartok@novell.com>
16309
16310         * Form.cs: Use Handle for icon, to trigger creation if
16311           the window does not yet exist
16312         * Control.cs:
16313           - CanSelect: Slight performance improvement
16314           - Focus(): Preventing possible recursion
16315           - Invalidate(): Removed ControlStyle based clear flag setting
16316           - WM_PAINT: fixed logic for calling OnPaintBackground
16317           - WM_ERASEBKGND: Fixed logic, added call to new driver method
16318             EraseWindowBackground if the control doesn't paint background
16319         * XplatUIWin32.cs:
16320           - Moved EraseWindowBackground() method to internal methods
16321           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
16322             is sent via SendMessage on BeginPaint call on Win32
16323         * XplatUIX11.cs:
16324           - Added EraseWindowBackground() method
16325           - No longer sends WM_ERASEBKGND on .Expose, but on call to
16326             PaintEventStart, which more closely matches Win32 behaviour
16327           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
16328           - Fixed SetFocus() to properly deal with client and whole windows
16329         * Hwnd.cs: Added ErasePending property
16330         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
16331         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
16332
16333 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
16334
16335         * XplatUIOSX.cs:
16336           - Fix hard loop when timers exist.
16337           - Fix bugs with middle and right click for 3 button mice.
16338
16339 2005-03-11  Peter Bartok  <pbartok@novell.com>
16340
16341         * XplatUIX11.cs:
16342           - get_WorkingArea: Need to call X directly, GetWindowPos only
16343             returns cached data now
16344           - Added sanity check to GetWindowPos hwnd usage
16345
16346 2005-03-11  Jackson Harper  <jackson@ximian.com>
16347
16348         * BindingManagerBase.cs: This method isn't used anymore as
16349         PullData now updates the data in the control.
16350
16351 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
16352
16353         * Form.cs: fixes menu drawing on X11
16354         * MenuAPI.cs:  fixes menu drawing on X11
16355
16356 2005-03-11  Peter Bartok  <pbartok@novell.com>
16357
16358         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
16359           from Jonathan Gilbert; should fix bug #73606
16360         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
16361           in Screen coordinates. Thanks, Jordi.
16362         * Form.cs: Added missing attribute
16363
16364 2005-03-11  Peter Bartok  <pbartok@novell.com>
16365
16366         * Form.cs:
16367           - Rudimentary Mdi support
16368           - Removed outdated FormParent code
16369           - Implemented lots of missing properties and methods, still missing
16370             transparency support
16371           - Added missing attributes
16372           - Implemented support for MaximumBounds
16373           - Added firing of various events
16374         * XplatUI.cs: Added SetIcon() method
16375         * XplatUIDriver.cs: Added SetIcon() abstract
16376         * XplatUIOSX.cs: Stubbed out SetIcon() method
16377         * XplatUIX11.cs:
16378           - Implemented SetIcon() support
16379           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
16380           - Switched to unix line endings
16381         * XplatUIWin32.cs:
16382           - Made POINT internal so for can access it as part of MINMAX
16383           - Implemented SetIcon() support
16384           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
16385             native Mdi support again, might have to go managed)
16386         * Control.cs: Now fires the StyleChanged event
16387         * MdiClient.cs: Added; still mostly empty
16388
16389 2005-03-10  Peter Bartok  <pbartok@novell.com>
16390
16391         * SaveFileDialog.cs: Added emtpy file
16392
16393 2005-03-08  Peter Bartok  <pbartok@novell.com>
16394
16395         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
16396           in turn triggers OnCreateContro) when creating a handle for the
16397           first time.
16398         * TextControl.cs: Fixed endless loop in certain cases when
16399           replacing the current selection
16400
16401 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
16402
16403         * ScrollBar.cs:
16404           - Honors NewValue changes in Scroll events allowing apps to change it
16405           - Adds First and Last Scroll events
16406           - Fixes Thumb events
16407
16408 2005-03-07  Peter Bartok  <pbartok@novell.com>
16409
16410         * Hwnd.cs: Added DefaultClientRectangle property
16411         * XplatUI.cs: Now using the X11 driver Where() method, which provides
16412           more detailed debug information
16413         * XplatUIX11.cs:
16414           - Fixed size-change feedback loop, where we would pull an old size
16415             off the queue and mistakenly change our window's size to an
16416             earlier value
16417           - Now compressing ConfigureNotify events, to reduce looping and
16418             redraw issues
16419         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
16420           is called
16421
16422 2005-03-07  Jackson Harper  <jackson@ximian.com>
16423
16424         * Binding.cs: Push data pushes from data -> property. Check if the
16425         property is readonly when attempting to set it.
16426
16427 2005-03-07  Jackson Harper  <jackson@ximian.com>
16428
16429         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
16430         instead of IsSubclassOf. Pulling data now sets the value on the
16431         control.
16432         * PropertyManager.cs:
16433         * CurrencyManager.cs: Just need to pull data when updating now,
16434         because PullData will set the value on the control.
16435
16436 2005-03-04  Jackson Harper  <jackson@ximian.com>
16437
16438         * Binding.cs: Implement data type parsing and converting on pulled
16439         data. TODO: Are there more ways the data can be converted?
16440
16441 2005-03-04  Jackson Harper  <jackson@ximian.com>
16442
16443         * Binding.cs: Support <Property>IsNull checks. Also bind to the
16444         controls Validating method so we can repull the data when the
16445         control loses focus.
16446
16447 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
16448
16449         * ColumnHeader.cs:
16450           - Fixes null string format
16451           
16452         * ListView.cs:
16453           - Adds enum type checks
16454           - Fixes redrawing and recalc need after changing some properties
16455           - Fixes on focus_item set after the event
16456           - Fixes adding columns after the control has been created
16457           
16458         * ThemeWin32Classic.cs:
16459           - Fixes CheckBox focus rectangle
16460           - Fixes ColumnHeader drawing
16461
16462
16463 2005-03-03  Jackson Harper  <jackson@ximian.com>
16464
16465         * Binding.cs: Bind to <Property>Changed events so we can detect
16466         when properties are changed and update the data.
16467
16468 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
16469
16470         * ImageList.cs:
16471           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
16472           - Fixes ImageList constructor with ImageList container
16473           - Fixes image scaling (wrong parameters at DrawImage)
16474
16475 2005-02-02  Jackson Harper  <jackson@ximian.com>
16476
16477         * Binding.cs: Make property searches case-insensitive. Eliminate
16478         some duplicated code.
16479
16480 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
16481
16482         * ComboBox.cs:
16483                 - Handle focus event
16484                 - Fix scrollbar events
16485                 - Discard highlighted item if remove it
16486                 - Fixes SelectedItem with strings
16487
16488 2005-03-01  Peter Bartok  <pbartok@novell.com>
16489
16490         * Control.cs:
16491           - Fixed Visible property, now follows (once again) parent chain
16492             to return false if any control in the chain is visible=false
16493           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
16494           - Fixed several places where is_visible instead of Visible was used
16495           - Implemented FIXME related to focus selection when setting focused
16496             control to be invisible
16497
16498         * XplatUIWin32.cs: Now using proper method to find out if window is
16499           visible. Thanks to Jordi for pointing it out
16500
16501 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
16502
16503         * ComboBox.cs: show/hide scrollbar instead of creating it
16504
16505 2005-02-27  Jackson Harper  <jackson@ximian.com>
16506
16507         * CurrencyManager.cs: Add PositionChanged stuff.
16508
16509 2005-02-27  Peter Bartok  <pbartok@novell.com>
16510
16511         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
16512         * XplatUIOSX.cs: Added GetMenuOrigin() stub
16513         * XplatUIWin32.cs: Implemented GetMenuOrigin()
16514         * XplatUIX11.cs:
16515           - Implemented GetMenuDC()
16516           - Implemented GetMenuOrigin()
16517           - Implemented ReleaseMenuDC()
16518           - Implemented generation of WM_NCPAINT message
16519           - Implemented generation and handling of WM_NCCALCSIZE message
16520         * Form.cs: Added debug helper message for Jordi's menu work
16521         * Hwnd.cs:
16522           - Modified ClientRect property; added setter, fixed getter to handle
16523             setting of ClientRect
16524           - Added MenuOrigin property
16525
16526 2005-02-26  Peter Bartok  <pbartok@novell.com>
16527
16528         * XplatUIX11.cs:
16529           - Destroys the caret if a window that's being destroyed contains it
16530           - Ignores expose events coming from the X11 queue for windows that
16531             already are destroyed
16532           - Now uses the proper variable for handling DestroyNotify, before we
16533             marked the wrong window as destroyed
16534           - Improved/added some debug output
16535
16536 2005-02-26  Peter Bartok  <pbartok@novell.com>
16537
16538         * X11Keyboard.cs: Fixes to work on 64bit systems
16539
16540 2005-02-26  Peter Bartok  <pbartok@novell.com>
16541
16542         * Control.cs:
16543           - Now calling OnHandleDestroyed from DestroyHandle()
16544             instead of Dispose()
16545           - Removed bogus call to controls.Remove() from DestroyHandle()
16546
16547 2005-02-26  Peter Bartok  <pbartok@novell.com>
16548
16549         * Control.cs: Properly destroy child windows when our handle is
16550           destroyed
16551
16552 2005-02-25  Peter Bartok  <pbartok@novell.com>
16553
16554         * XplatUI.cs:
16555           - Added 'DriverDebug' define to allow tracing XplatUI API calls
16556           - Alphabetized Static Methods and Subclasses
16557
16558         * XplatUIX11.cs:
16559           - Added XException class to allow custom handling of X11 exceptions
16560           - Created custom X11 error handler, tied into XException class
16561           - Added support for MONO_XEXCEPTIONS env var to allow the user
16562             to either throw an exception on X errors or continue running
16563             after displaying the error
16564           - Added handling of DestroyNotify message
16565           - Added handler for CreateNotify message (still disabled)
16566           - Improved (tried to at least) Where method to provide file and lineno
16567         * X11Structs.cs:
16568           - Added XErrorHandler delegate
16569           - Added XRequest enumeration (to suppor translation of errors)
16570
16571 2005-02-25  Jackson Harper  <jackson@ximian.com>
16572
16573         * PropertyManager.cs: Implement editing features
16574         * CurrencyManager.cs:
16575         * Binding.cs: First attempt at UpdateIsBinding
16576         * BindingManagerBase.cs: Call UpdateIsBinding before
16577         pushing/pulling data.
16578
16579 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
16580
16581         * MenuAPI.cs: Respect disabled items
16582         * ThemeWin32Classic.cs
16583                 - Caches ImageAttributes creation for DrawImageDisabled
16584                 - Fixes vertical menu line drawing
16585                 - Draws disabled arrows in disable menu items
16586
16587 2005-02-24  Peter Bartok  <pbartok@novell.com>
16588
16589         * Hwnd.cs:
16590           - Added UserData property to allow associating arbitrary objects
16591             with the handle
16592           - Fixed leak; now removing Hwnd references from static windows array
16593         * XplatUIWin32.cs:
16594           - Fixed Graphics leak in PaintEventEnd
16595           - Removed usage of HandleData, switched over to Hwnd class
16596         * HandleData.cs: Removed, obsoleted by Hwnd.cs
16597
16598 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16599
16600         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
16601         * ScrollBar.cs: Fixes bug
16602         * TrackBar.cs: removes death code, clipping, mimize refreshes,
16603          keyboard navigation enhancements
16604
16605 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16606
16607         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
16608         * GroupBox.cs: Add control styles
16609         * Label.cs: Add control styles
16610         * UpDownBase.cs: Add control styles
16611         * ListBox.cs: Add control styles
16612         * XplatUIWin32.cs: Fixes wrong parameter order
16613
16614
16615 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
16616
16617         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
16618
16619 2005-02-23  Jackson Harper  <jackson@ximian.com>
16620
16621         * PropertyManager.cs: Implement property binding. This doesn't
16622         seem to work yet though as (I think) there are some bugs in
16623         System.ComponentModel.PropertyDescriptor.
16624         * BindingContext.cs: Use new PropertyManager constructor.
16625
16626 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
16627
16628         * ProgressBar.cs: use clip region in ProgressBar
16629         * ThemeWin32Classic.cs: use clip region in ProgressBar
16630
16631 2004-02-22  Jackson Harper  <jackson@ximian.com>
16632
16633         * BindingsCollection.cs: Remove some debug code.
16634
16635 2005-02-22  Jackson Harper  <jackson@ximian.com>
16636
16637         * BindingContext.cs:
16638         * ControlBindingsCollection.cs:
16639         * CurrencyManager.cs:
16640         * Binding.cs:
16641         * BindingManagerBase.cs: Initial implementation
16642         * BindingsCollection.cs: Add an internal contains method that the
16643         BindingManagerBase uses to ensure bindings aren't added twice to
16644         the collection.
16645         * PropertyManager.cs: Stubbed out.
16646         * Control.cs:
16647         * ContainerControl.cs: Hook up databinding
16648         
16649 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
16650
16651         * XplatUIOSX.cs:
16652           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
16653           Fixed Invalidate/Update chain.
16654           Fixed tons of other minor bugs (this is almost a complete rewrite).
16655
16656 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
16657
16658         * ComboBox.cs: do subcontrol creation when the control is created
16659
16660 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16661
16662         * Label.cs: fixes image drawing (image and imagelist)
16663         * ThemeWin32Classic.cs: cache brushes
16664         
16665 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16666
16667         * Form.cs: Move menu drawing code to Theme class
16668         * ComboBox.cs: Move ComboBox drawing code to Theme class
16669         * MenuItem.cs: Move menu drawing code to Theme class
16670         * MenuAPI.cs: Move menu drawing code to Theme class
16671         * ThemeWin32Classic.cs: New methods
16672         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
16673         * ListBox.cs: Move Listbox drawing code to Theme class
16674         * Theme.cs: New methods
16675
16676 2005-02-20  Peter Bartok  <pbartok@novell.com>
16677
16678         * Control.cs:
16679           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
16680             only process mnemonics on those)
16681           - Fixed event sequence for key handling; first calling
16682             ProcessKeyEventArgs now
16683         * TextBoxBase.cs:
16684           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
16685             for processing non-character keys
16686           - Fixed WM_CHAR to generate proper event sequence before processing
16687         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
16688           generation
16689
16690 2005-02-19  Peter Bartok  <pbartok@novell.com>
16691
16692         * UserControl.cs: Added TextChanged event; added attributes
16693         * SizeGrip.cs: Implemented resizing and optional display of grip
16694         * Form.cs: Fixed attribute
16695         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16696           Changed meaning of ScrollWindow bool argument; instead of the
16697           clear attribute (which will be true usually anyway), it gives the
16698           option of moving child controls as well.
16699         * XplatUIX11.cs:
16700           - Changed to match new ScrollWindow argument
16701           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
16702             now handles the implicit parent window a WM puts around us
16703         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
16704           to work)
16705         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
16706         * TreeView.cs: Adjusted to new ScrollWindow arguments
16707
16708 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16709
16710         * Form.cs: Menu integration with non-client area
16711         * MenuItem.cs: Menu integration with non-client area
16712         * MenuAPI.cs: Menu integration with non-client area
16713
16714 2005-02-18  Peter Bartok  <pbartok@novell.com>
16715
16716         * MethodInvoker.cs: Added
16717         * MdiLayout.cs: Added
16718         * SendKeys.cs: Started implementation
16719         * ErrorIconAlignment.cs: Added
16720
16721 2005-02-18  Peter Bartok  <pbartok@novell.com>
16722
16723         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
16724         * Form.cs: Added handling for Menu-related Non-client messages
16725
16726 2005-02-17  Peter Bartok  <pbartok@novell.com>
16727
16728         * UpDownBase.cs: Fixed typo, compilation errors
16729         * DomainUpDown.cs: Fixed attribute value
16730
16731 2005-02-16  Miguel de Icaza  <miguel@novell.com>
16732
16733         * UpDownBase.cs: Attach entry events.
16734         Propagate events.
16735         Add ForeColor property, Focused, InterceptArrowKeys (interception
16736         does not work yet).
16737
16738 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
16739
16740         * Form.cs:
16741                 - Redraw non client are on Setmenu
16742                 - Calc proper menu starting point
16743
16744 2005-02-17  Peter Bartok  <pbartok@novell.com>
16745
16746         * Application.cs: Fixed message_filter check
16747
16748 2005-02-17  Peter Bartok  <pbartok@novell.com>
16749
16750         * Application.cs: Now calls registered message filters
16751         * DockStyle.cs: Fixed attribute
16752         * Form.cs: Fixed attribute
16753         * Menu.cs: Fixed attribute
16754         * ToolTip.cs: Fixed attribute
16755         * TreeNode.cs: Added missing attributes and arranged in regions
16756         * PropertyGrid.cs: Fixed signatures
16757         * TreeNodeCollection.cs: Added attributes
16758         * Splitter.cs: Added missing attributes; arranged into regions
16759         * TabPage.cs: Added missing attributes; arranged into regions
16760         * TextBoxBase.cs: Added missing attributes
16761         * TextBox.cs: Added missing attributes
16762         * ArrangeDirection.cs: Added missing attributes
16763         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
16764         * ToolBarButton.cs: Fixed attributes
16765         * AnchorStyles.cs: Fixed attribute
16766         * TrackBar.cs: Fixed attributes
16767         * TabControl.cs: Added missing attributes and arranged into regions
16768         * ToolBar.cs: Fixed attribute
16769         * StatusBar.cs: Fixed signature, organized into regions and added
16770           attributes
16771         * StatusBarPanel.cs: Fixed attributes
16772         * ContentsResizedEventArgs.cs: Implemented
16773         * ContentsResizedEventHandler.cs: Implemented
16774         * DateBoldEventArgs.cs: Implemented
16775         * DateBoldEventHandler.cs: Implemented
16776         * UpDownEventArgs.cs: Implemented
16777         * UpDownEventHandler.cs: Implemented
16778         
16779 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
16780
16781         * Form.cs: first Menu NC refactoring
16782         * MenuAPI.cs: first Menu NC refactoring
16783         
16784 2005-02-16  Peter Bartok  <pbartok@novell.com>
16785
16786         * ImeMode.cs: Added missing attributes
16787         * Menu.cs: Fixed attribute
16788         * GroupBox.cs: Fixed attribute
16789         * Label.cs: Fixed attribute
16790         * ColorDialog.cs (RunDialog): Removed TODO attribute
16791         * ComboBox.cs: Fixed attributes
16792         * ListControl.cs: Added missing attributes
16793         * PropertyGrid.cs: Fixed attributes
16794         * Control.cs: Fixed attributes
16795         * ListViewItem.cs: Added TypeConverter attribute
16796         * NotifyIcon.cs: Fixed attributes
16797         * ListView.cs: Fixed attributes
16798         * ButtonBase.cs: Fixed attribute
16799         * ImageList.cs: Added missing attributes
16800         * ContainerControl.cs: Fixed signature
16801         * CheckedListBox.cs: Fixed attribute; added missing attributes
16802         * Panel.cs: Fixed attributes
16803         * PropertyTabChangedEventArgs.cs: Added missing attribute
16804         * PropertyValueChangedEventArgs.cs: Added missing attribute
16805         * Binding.cs: Fixed attribute
16806         * ListViewItemConverter: Implemented ListViewSubItemConverter class
16807         * ListBox.cs: Fixed attribute; added missing attributes;
16808         * ScrollableControl.cs: Added missing attributes
16809         * PictureBox.cs: Added missing attributes; implemented missing property
16810         * DateTimePicker.cs: Added missing attributes
16811         * Theme.cs (ToolWindowCaptionHeight): Fixed type
16812         * MonthCalendar.cs: Fixed attributes
16813         * StatusBarPanel.cs: Added missing attributes
16814         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
16815
16816 2005-02-16  Peter Bartok  <pbartok@novell.com>
16817
16818         * TextBoxBase.cs: The previous method to enforce height yet remember
16819           the requested high was less than ideal, this is an attempt to do
16820           it better.
16821         * Control.cs: Added comment about possible problem
16822         * Copyright: Updated format
16823         * GridItemType.cs: Fixed swapped values
16824
16825 2005-02-15  Jackson Harper  <jackson@ximian.com>
16826
16827         * BaseCollection.cs: Use property so we never access an
16828         uninitialized list. Also initialize the list in the property.
16829
16830 2005-02-15  Peter Bartok  <pbartok@novell.com>
16831
16832         * GroupBox.cs (ProcessMnemonic): Implemented
16833         * Label.cs (ProcessMnemonic): Implemented
16834         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
16835           hotkeys
16836
16837 2005-02-15  Peter Bartok  <pbartok@novell.com>
16838
16839         * RadioButton.cs (ProcessMnemonic): Implemented
16840         * CheckBox.cs (ProcessMnemonic): Implemented
16841         * Control.cs:
16842           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
16843             handling
16844           - Added internal method to allow calling ProcessMnemonic from other
16845             controls
16846         * ContainerControl.cs:
16847           - Started support for handling validation chain handling
16848           - Implemented ProcessMnemonic support
16849           - Added Select() call to Active, to make sure the active control
16850             receives focus
16851         * Form.cs: Setting toplevel flag for Forms (this was lost in the
16852           FormParent rewrite)
16853         * ThemeWin32Classic.cs:
16854           - DrawCheckBox(): Fixed stringformat to show hotkeys
16855           - DrawRadioButton(): Fixed stringformat to show hotkeys
16856         * CommonDialog.cs: Removed WndProc override, not needed
16857
16858 2005-02-14  Peter Bartok  <pbartok@novell.com>
16859
16860         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
16861           missed those in the rewrite
16862
16863 2005-02-14  Miguel de Icaza  <miguel@novell.com>
16864
16865         * NumericUpDown.cs (Increment, ToString): Add.
16866         (DecimalPlaces): implement.
16867         
16868         Add attributes.
16869         
16870         * UpDownBase.cs: Add the designer attributes.
16871
16872 2005-02-13  Peter Bartok  <pbartok@novell.com>
16873
16874         * Panel.cs: Removed border_style, now in Control
16875         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
16876           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
16877
16878 2005-02-13  Peter Bartok  <pbartok@novell.com>
16879
16880         * MouseButtons.cs: Added missing attributes
16881         * XplatUIStructs.cs: Added enumeration for title styles
16882         * LeftRightAlignment.cs: Added missing attributes
16883         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
16884           it compatible with Graphics.FromHwnd()
16885         * SelectedGridItemChangedEventArgs.cs: Fixed property type
16886         * Keys.cs: Added missing attributes
16887         * SelectionRange.cs: Added missing attributes
16888         * SelectionRangeConverter.cs: Added
16889         * XplatUI.cs:
16890           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
16891             ReleaseMenuDC methods
16892           - Renamed ReleaseWindow to UngrabWindow
16893           - Added proper startup notice to allow version identification
16894         * Form.cs:
16895           - Added missing attributes
16896           - Removed FormParent concept
16897         * Label.cs: Removed border_style field, now in Control
16898         * RadioButton.cs: Now properly selects RadioButton when focus is
16899           received
16900         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
16901         * Control.cs:
16902           - Added missing attributes
16903           - Added borderstyle handling
16904           - Removed FormParent concept support
16905           - Fixed calls to XplatUI to match changed APIs
16906           - Fixed bug that would case us to use disposed Graphics objects
16907           - Removed unneeded internal methods
16908           - PerformLayout(): Fixed to handle DockStyle.Fill properly
16909           - SelectNextControl(): Fixed to properly check common parents
16910         * TextBoxBase.cs: Removed border_style field (now in Control)
16911         * MessageBox.cs:
16912           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
16913             fixed calculations for form size
16914           - Added support for localized strings and icons
16915           - Improved form size calculations, added border
16916         * ListView.cs: Removed border_style field (now in Control)
16917         * X11Structs.cs: Moved several structs from X11 driver here
16918         * X11Keyboard.cs: Changed debug message
16919         * Application.cs: Removed FormParent concept support
16920         * CommonDialog.cs:
16921           - Resetting end_modal flag
16922           - Removed FormParent concept support
16923         * NativeWindow.cs: Removed FormParent concept support
16924         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
16925           Client area and Non-Client whole window to allow support for WM_NC
16926           messages
16927         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
16928           prevent using it until it supports Hwnd as per Geoff Norton's request
16929         * ToolBar.cs: Fixed drawing, was not doing proper drawing
16930         * PictureBox.cs: Removed border_style field, now in Control
16931         * XplatUIWin32.cs: Added new driver methods
16932
16933 2005-02-12  Peter Bartok  <pbartok@novell.com>
16934
16935         * OpacityConverter.cs: Implemented
16936         * Hwnd.cs: Internal class to support drivers that need to emulate
16937           client area/non-client area window behaviour
16938
16939 2005-02-11  Peter Bartok  <pbartok@novell.com>
16940
16941         * KeysConverter.cs: Implemented
16942
16943 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
16944
16945         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
16946         * LinkLabel: Added missing attributes
16947         * MainMenu.cs: fixes ToString
16948         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
16949         * ListBox.cs: fixes event position
16950         * TrackBar.cs: adds missing attributes and events
16951         
16952 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
16953
16954         * MenuItem.cs: Use SystemInformation and bug fixes
16955         * MenuAPI.cs: Use SystemInformation and bug fixes
16956
16957 2005-02-09  Jackson Harper  <jackson@ximian.com>
16958
16959         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
16960         their keystate otherwise things like VK_MENU get stuck "on".
16961
16962 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
16963
16964         * ListBox.cs: Fixes AddRange bug
16965         
16966 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
16967
16968         * ProgressBar.cs
16969                 - Add missing attributes
16970                 - Add missing method
16971                 
16972         * CheckedListBox.cs: Added missing attributes
16973                 - Add missing attributes
16974                 - Remove extra method
16975         
16976         * ComboBox.cs: Added missing attributes
16977         * VScrollBar.cs: Added missing attributes
16978         * ScrollBar.cs:  Added missing attributes
16979         * ListBox.cs: Fixes signature, add missing consts
16980         * LinkArea.cs:   Added missing attributes
16981         
16982
16983 2005-02-08  Peter Bartok  <pbartok@novell.com>
16984
16985         * Menu.cs: Added missing attributes
16986         * MainMenu.cs: Added missing attributes
16987         * GroupBox.cs: Added missing attributes
16988         * Label.cs: Added missing attributes
16989         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
16990         * ColorDialog.cs:
16991           - Added Instance and Options properties
16992           - Added missing attributes
16993         * Cursor.cs: Made Serializable
16994         * NotifyIcon: Added missing attributes
16995         * MenuItem.cs: Added missing attributes
16996         * TextBoxBase.cs: Implemented AppendText() and Select() methods
16997         * Panel.cs: Added Missing attributes
16998         * MonthCalendar.cs: Fixed CreateParams
16999
17000 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17001         
17002         * LinkLabel.cs:
17003                 - Fixes signature
17004                 - Fixes issues with links
17005                 - Adds the class attributes
17006
17007 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17008         
17009         * ComboBox.cs:
17010                 - Fixes button when no items available in dropdown
17011                 - Fixes repainting problems
17012                 - Adds the class attributes
17013                 
17014 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17015
17016         * XplatUIOSX.cs: Detect the menu bar and title bar height from
17017         the current theme.  Cache these on startup.
17018
17019 2005-02-07  Jackson Harper  <jackson@ximian.com>
17020
17021         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
17022         the scrollbar buttons when they are depressed.
17023
17024 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17025
17026         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
17027         Get the display size from the main displayid.  We currently dont
17028         support multiple display configurations.
17029
17030 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17031
17032         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
17033
17034 2005-02-07  Miguel de Icaza  <miguel@novell.com>
17035
17036         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
17037
17038 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17039
17040         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
17041
17042 2005-02-04  Jackson Harper  <jackson@ximian.com>
17043
17044         * ThemeWin32Classic.cs: Respect the clipping rect when
17045         drawing. Only fill the intersection of clips and rects so there
17046         isn't a lot of large fills.
17047         * ScrollBar.cs: Pass the correct clipping rect to the theme
17048         engine. Remove some debug code.
17049
17050 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
17051         
17052         * DateTimePicker.cs:
17053                 - Fixed crash on DateTime.Parse, use Constructor instead
17054
17055 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17056         
17057         * MenuItem.cs:
17058         * MenuAPI.cs:
17059                 - Owner draw support (MeasureItem and DrawItem)
17060
17061 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17062         
17063         *  Menu.cs:
17064                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
17065                 - Fixes MenuItems.Add range
17066         * MenuItem.cs:
17067                 - MergeMenu and Clone and CloneMenu functions
17068
17069 2005-02-03  Jackson Harper  <jackson@ximian.com>
17070
17071         * ScrollBar.cs: Make abstract
17072         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
17073         is abstract.
17074
17075 2005-02-03  Jackson Harper  <jackson@ximian.com>
17076
17077         * ScrollBar.cs: First part of my scrollbar fixups. This removes
17078         all the unneeded refreshes and uses invalidates with properly
17079         computed rects.
17080
17081 2005-02-03  Peter Bartok  <pbartok@novell.com>
17082
17083         * ComponentModel.cs: Added
17084         * IDataGridEditingService.cs: Added
17085         * Timer.cs: Added missing attributes
17086         * ToolTip.cs: Added missing attributes
17087
17088 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17089
17090         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
17091
17092 2005-02-03  Peter Bartok  <pbartok@novell.com>
17093
17094         * ListBox.cs: Added missing attributes
17095
17096 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
17097         
17098         * ListBox.cs:
17099                 - Fixes font height after font change
17100                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
17101                 
17102 2005-02-02  Peter Bartok  <pbartok@novell.com>
17103
17104         * HandleData.cs: Introduced static methods to allow class
17105           to be more self-contained and track it's own HandleData objects
17106         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
17107           HandleData to use new static methods
17108
17109 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
17110
17111         * Combobox.cs:
17112                 - Fixes default size and PreferredHeight
17113                 - Missing events
17114                 - ObjectCollection.Insert implementation
17115                 
17116         * ListControl.cs
17117                 - Fixes signature
17118         * ListBox.cs:
17119                 - Several fixes
17120                 - ObjectCollection.Insert implementation
17121                 - No selection after clean
17122                 - Small fixes
17123
17124 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17125
17126         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
17127
17128 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
17129
17130         * Combobox.cs:
17131                 - Caches ItemHeight calculation for OwnerDrawVariable
17132                 - Handles dropdown properly
17133                 - Fixes several minor bugs
17134
17135 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17136
17137         * ListBox.cs:
17138                 - Fixes 71946 and 71950
17139                 - Fixes changing Multicolumn on the fly
17140                 - Fixes keyboard navigation on Multicolumn listboxes
17141
17142 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17143         
17144         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
17145         crash reporter log.
17146
17147 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17148
17149         * XplatUIOSX.cs: Allow applications to actually exit.
17150
17151 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17152
17153         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
17154         their parent at creation time rather than lazily later.  Fixes a major
17155         regression we were experiencing.
17156
17157 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17158
17159         * ThemeWin32Classic.cs: more date time picker painting fixes
17160         * DateTimePicker.cs: more monthcalendar drop down fixes
17161         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
17162
17163 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17164
17165         * ScrollBar.cs:
17166                 - When moving the thumb going outside the control should stop the moving
17167                 - Adds the firing of missing events
17168                 - Fixes no button show if Size is not specified
17169                 - End / Home keys for keyboard navigation
17170
17171 2005-01-30  Peter Bartok  <pbartok@novell.com>
17172
17173         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
17174           sanity check to prevent theoretical loop
17175         * XplatUIWin32.cs (SetVisible): Removed debug output
17176         * XplatUIX11.cs (SystrayChange): Added sanity check
17177         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
17178         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
17179           behaviour, valid until the X11 client window rewrite is done
17180         * TextBox.cs (ctor): Setting proper default foreground and background
17181           colors
17182
17183 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
17184
17185         * Theme: Added DrawDateTimePicker to interface
17186         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
17187         * DateTimePicker.cs: Created (still needs keys and painting code)
17188         * DateTimePickerFormat.cs: added
17189         * MonthCalendar.cs: fixed CreateParams for popup window mode
17190           
17191 2005-01-29  Peter Bartok  <pbartok@novell.com>
17192
17193         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
17194           this should also the calculations for ligher/darker
17195         * Theme.cs: Fixed defaults for ScrollBar widths/heights
17196
17197 2005-01-29  Peter Bartok  <pbartok@novell.com>
17198
17199         * ArrangeDirection.cs: Added
17200         * ArrangeStartingPositon.cs: Added
17201         * SystemInformation.cs: Implemented
17202         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17203           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
17204           used by SystemInformation class
17205         * X11Strucs.cs: Added XSizeHints structure
17206         * MenuAPI.cs:
17207           - Fixed CreateParams to make sure the menu window is always visible
17208           - TrackPopupMenu: Added check to make sure we don't draw the
17209             menu offscreen
17210
17211 2005-01-29  Peter Bartok  <pbartok@novell.com>
17212
17213         * HandleData.cs: Added method for altering invalid area
17214         * TextBoxBase.cs: Implemented TextLength
17215
17216 2005-01-28  Peter Bartok  <pbartok@novell.com>
17217
17218         * XplatUIX11.cs: Improvement over last patch, not sending
17219           the WM_PAINT directly anymore, instead we scroll any pending
17220           exposed areas and let the system pick out the WM_PAINT later
17221
17222 2005-01-28  Peter Bartok  <pbartok@novell.com>
17223
17224         * SWF.csproj: Deleted, no longer used. Instead,
17225           Managed.Windows.Forms/SWF.csproj should be used
17226         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
17227           directly, to avoid a potential race condition with the next
17228           scroll
17229
17230 2005-01-28  Peter Bartok  <pbartok@novell.com>
17231
17232         * XplatUI.cs: Made class internal
17233
17234 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
17235
17236         * CheckedListBox.cs:
17237                 - Draw focus
17238                 - Fixed Drawing
17239                 - Missing methods and events
17240
17241 2005-01-27  Peter Bartok  <pbartok@novell.com>
17242
17243         * Application.cs (Run): Don't use form if we don't have one
17244
17245 2005-01-27  Peter Bartok  <pbartok@novell.com>
17246
17247         * TextBoxBase.cs (get_Lines): Fixed index off by one error
17248
17249 2005-01-27  Peter Bartok  <pbartok@novell.com>
17250
17251         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
17252         * GridItem.cs: Added; Patch by Jonathan S. Chambers
17253         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
17254         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
17255         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
17256         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
17257         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17258         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17259         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17260         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17261         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17262         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17263
17264 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17265
17266         * Combobox.cs:
17267                 - Draw focus on Simple Combobox
17268                 - Fixes drawing issues
17269                 - fixes 71834
17270
17271 2005-01-27  Peter Bartok  <pbartok@novell.com>
17272
17273         * Form.cs:
17274           - Place window in default location, instead of hardcoded 0/0
17275           - Send initial LocationChanged event
17276         * Control.cs:
17277           - UpdateBounds after creation to find out where the WM placed us
17278           - Make sure that if the ParentForm changes location the Form
17279             is notified
17280         * XplatUIX11.cs: XGetGeometry will not return the coords relative
17281             to the root, but to whatever the WM placed around us.
17282             Translate to root coordinates before returning toplevel
17283             coordinates
17284         * XplatUIWin32.cs: Removed debug output
17285         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
17286           flag to GetWindowPos, to allow translation of coordinates on X11
17287
17288 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17289
17290         * ListBox.cs: connect LostFocus Event
17291
17292 2005-01-27  Peter Bartok  <pbartok@novell.com>
17293
17294         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17295           XplatUIX11.cs: Extended the Systray API
17296         * Form.cs: Removed debug output
17297         * Application.cs: Fixed focus assignment, always need to call
17298           XplatUI.Activate() since Form.Activate() has rules that may
17299           prevent activation
17300         * NotifyIcon.cs: Should be complete now
17301         * ToolTip.cs: Worked around possible timer bug
17302
17303 2005-01-27  Jackson Harper  <jackson@ximian.com>
17304
17305         * TabControl.cs:
17306         - Only invalidate the effected tabs when the
17307         selected index changes. This reduces drawing and gets rid of some
17308         flicker.
17309         - Only refresh if the tabs need to be shifted, otherwise only
17310         invalidate the slider button.
17311         - On windows the tabs are not filled to right if the slider is
17312         visible.
17313         
17314 2005-01-27  Jackson Harper  <jackson@ximian.com>
17315
17316         * TabControl.cs: Only refresh on mouseup if we are showing the
17317         slider. Also only invalidate the button whose state has changed.
17318
17319 2005-01-26  Peter Bartok  <pbartok@novell.com>
17320
17321         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
17322         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
17323           and SystrayRemove() methods
17324         * XplatUIOSX.cs: Stubbed Systray methods
17325         * XplatUIX11.cs:
17326           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
17327             methods
17328           - Fixed broken XChangeProperty calls (marshalling messed up things)
17329         * X11Structs.cs: Added enums and structs required for Size hinting
17330         * NotifyIcon.cs: Added & implemented
17331
17332 2005-01-26  Jackson Harper  <jackson@ximian.com>
17333
17334         * TabControl.cs: Space vertically layed out tabs properly.
17335
17336 2005-01-26  Peter Bartok  <pbartok@novell.com>
17337
17338         * Form.cs (CreateClientParams): Always set the location to 0,0
17339           since we're a child window.
17340
17341         * Control.cs (SetVisibleCore): Always explicitly setting the location
17342           of a toplevel window, apparently X11 doesn't like to move windows
17343           while they're not mapped.
17344
17345 2005-01-26  Jackson Harper  <jackson@ximian.com>
17346
17347         * TabControl.cs: Implement FillToRight size mode with vertically
17348         rendered tabs.
17349
17350 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17351
17352         * ControlPaint.cs, ThemeWin32Classic.cs
17353                 - Fixes DrawFocusRectangle
17354
17355 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17356
17357         * MenuAPI.cs:
17358                 - MenuBar tracking only starts when item is first clicked
17359                 - Fixes menu hidding for multiple subitems
17360                 - Unselect item in MenuBar when item Executed
17361                 - Fixes bug 71495
17362
17363 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
17364
17365         * ListControl.cs:
17366                 - IsInputKey for ListBox
17367         * ListBox.cs:
17368                 - Focus item
17369                 - Shift and Control item selection
17370                 - Implement SelectionMode.MultiExtended
17371                 - Fixes RightToLeft
17372         * ComboBox.cs:
17373                 - IsInputKey implemented
17374                 - Do not generate OnTextChangedEdit on internal txt changes
17375                 
17376 2005-01-23  Peter Bartok  <pbartok@novell.com>
17377
17378         * AccessibleObject.cs: Partially implemented Select()
17379         * MonthCalendar.cs: Added missing attributes and events
17380         * Form.cs: Fixed CreateParams behaviour, now controls derived from
17381           form can properly override CreateParams.
17382         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17383           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
17384           Control performs Invalidate & Update
17385         * NativeWindow (CreateHandle): Added special handling for Form
17386           and Form.FormParent classes to allow overriding of From.CreateParams
17387         * Control.cs:
17388           - ControlNativeWindow: Renamed 'control' variable to more intuitive
17389             name 'owner'
17390           - ControlNativeWindow: Added Owner property
17391           - Removed usage of Refresh() on property changes, changed into
17392             Invalidate(), we need to wait until the queue is processed for
17393             updates, direct calls might cause problems if not all vars for
17394             Paint are initialized
17395           - Added call to UpdateStyles() when creating the window, to set any
17396             styles that CreateWindow might have ignored.
17397           - Added support for Form CreateParent overrides to UpdateStyles()
17398         * MessageBox.cs: Removed no longer needed FormParent override stuff,
17399           CreateParams are now properly overridable
17400         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
17401           CreateParams are now properly overridable
17402
17403 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
17404
17405         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
17406         OnTextBoxChanged.
17407
17408         Capture LostFocus and OnTextBoxChanged.  The later introduces a
17409         recursive invocation that I have not figured out yet.
17410
17411         Reset the timer when not using (it was accumulating).
17412
17413
17414         (OnTextBoxChanged): Set UserEdit to true here to track whether the
17415         user has made changes that require validation.
17416
17417         Reset changing to avoid loops.
17418
17419 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
17420
17421         * NumericUpDown.cs: Display value at startup.
17422
17423         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
17424         ValidateEditText.
17425
17426         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
17427         filled in.  Added some basic parsing of text.
17428
17429         Still missing the OnXXX method overrides, and figuring out the
17430         events that must be emitted.
17431
17432         * UpDownBase.cs: Handle UserEdit on the Text property.
17433         
17434 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
17435
17436         * ComboBox.cs:
17437           - Fixes IntegralHeight
17438           - ToString method
17439
17440 2005-01-21  Jackson Harper  <jackson@ximian.com>
17441
17442         * TabControl.cs: Set the SelectedIndex property when SelectedTab
17443         is set so that the page visibility is updated and the tabs are
17444         sized correctly.
17445
17446 2005-01-21  Jackson Harper  <jackson@ximian.com>
17447
17448         * TabControl.cs: Use cliping rectangle for blitting. Give the
17449         theme the clipping rect so we can do clipping while
17450         drawing. Remove some debug code.
17451
17452 2005-01-21  Jackson Harper  <jackson@ximian.com>
17453
17454         * TabPage.cs: Add a new method so tab pages can force the tab
17455         control to recalculate the tab page sizes.
17456         * TabControl.cs: UpdateOwner needs to make the tab control recalc
17457         sizes.
17458
17459 2005-01-20  Jackson Harper  <jackson@ximian.com>
17460
17461         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
17462
17463 2005-01-20  Jackson Harper  <jackson@ximian.com>
17464
17465         * TreeView.cs: Set the bounds for nodes properly. They were
17466         getting screwed up when checkboxes were not enabled, but images
17467         were.
17468
17469 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
17470
17471         * ListBox.cs:
17472                 - Owner draw support
17473                 - Fixes
17474                 
17475 2005-01-20  Jackson Harper  <jackson@ximian.com>
17476
17477         * XplatUIStructs.cs: More misc keys
17478         * X11Keyboard.cs: Ignore some control keys.
17479
17480 2005-01-20  Jackson Harper  <jackson@ximian.com>
17481
17482         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
17483         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
17484
17485 2005-01-19  Peter Bartok  <pbartok@novell.com>
17486
17487         * Control.cs: Un-selecting the control when it is loosing focus
17488
17489 2005-01-19  Jackson Harper  <jackson@ximian.com>
17490
17491         * TreeView.cs: Hook up to the text controls leave event so we can
17492         end editing when the users clicks outside the text box.
17493         
17494 2005-01-19  Jackson Harper  <jackson@ximian.com>
17495
17496         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
17497         get set in the conversion array.
17498
17499 2005-01-19  Peter Bartok  <pbartok@novell.com>
17500
17501         * Application.cs (ModalRun): Added a call to CreateControl to ensure
17502           focus is properly set
17503         * Button.cs:
17504           - Added missing attributes
17505           - removed styles, those are already set in the base class
17506         * ButtonBase.cs:
17507           - Added missing attributes
17508           - Added clip window styles
17509         * CheckBox.cs: Added missing attributes
17510         * CommonDialog.cs:
17511           - FormParentWindow.CreateParams: Added required clip styles
17512         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
17513           also filters modifier keys
17514         * MessageBox.cs:
17515           - Added assignment of Accept and Cancel button to enable Enter
17516             and Esc keys in MessageBox dialogs
17517           - FormParentWindow.CreateParams: Added required clip styles
17518         * RadioButton.cs: Added missing attributes
17519         * TextControl.cs: No longer draws selection if control does not
17520           have focus
17521         * TextBoxBase.cs:
17522           - Now draws simple rectangle around test area to make it obvious
17523             there's a control. This is a hack until we properly support borders
17524           - A few simple fixes to support selections better, now erases selected
17525             text when typing, and resets selection when using movement keys
17526
17527 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
17528
17529         * UpDownBase.cs: Added some new properties.
17530
17531         * DomainUpDown.cs: Implement a lot to get my test working.
17532
17533 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17534
17535         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
17536
17537 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17538
17539         * OSXStructs (WindowAttributes): Fixed csc complaints
17540
17541 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17542
17543         * XplayUIOSX.cs:
17544           OSXStructs.cs: Initial refactor to move enums and consts into
17545           OSXStructs and use them in the driver for greater readability.
17546
17547 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17548
17549         * XplatUIOSX.cs: Initial support for Standard Cursors.
17550         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
17551
17552 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
17553
17554         * ComboBox.cs: ability to change style when the ctrl is already
17555         created, missing methods and events, bug fixes, signature fixes
17556
17557 2005-01-19  Peter Bartok  <pbartok@novell.com>
17558
17559         * Cursors.cs (ctor): Added ctor to fix signature
17560
17561 2005-01-18  Peter Bartok  <pbartok@novell.com>
17562
17563         * Button.cs: Implemented DoubleClick event
17564         * ButtonBase.cs:
17565           - Fixed keyboard handling to behave like MS, where the press of
17566             Spacebar is equivalent to a mousedown, and the key release is
17567             equivalent to mouseup. Now a spacebar push will give the same
17568             visual feedback like a mouse click.
17569           - Added missing attributes
17570           - Added ImeModeChanged event
17571           - Added support for generating DoubleClick event for derived classes
17572         * CheckBox.cs:
17573           - Implemented DoubleClick event
17574           - Added missing attributes
17575         * CommonDialog.cs: Added missing attribute
17576         * ContextMenu.cs: Added missing attributes
17577         * RadioButton.cs:
17578           - AutoChecked buttons do not allow to be unselected when clicked
17579             (otherwise we might end up with no selected buttons in a group)
17580           - Added missing attributes
17581           - Implemented DoubleClickEvent
17582         * ThreadExceptionDialog.cs: Enabled TextBox code
17583
17584 2005-01-18  Peter Bartok  <pbartok@novell.com>
17585
17586         * Form.cs: Removed debug output
17587         * Button.cs: Added support for DoubleClick method
17588
17589 2005-01-18  Peter Bartok  <pbartok@novell.com>
17590
17591         * Form.cs:
17592           - Added method to parent window that allows triggering size
17593             calculations when a menu is added/removed
17594           - set_Menu: Cleaned up mess from early days of Form and Control,
17595             now properly triggers a recalc when a menu is added/removed
17596           - Added case to select form itself as focused form if no child
17597             controls exist
17598           - Added PerformLayout call when showing dialog, to ensure properly
17599             placed controls
17600         * Control.cs:
17601           - Select(): Made internal so Form can access it
17602           - Focus(): Only call Xplat layer if required (avoids loop), and sets
17603             status
17604         * Application.cs (Run): Removed hack and calls PerformLayout instead
17605           to trigger calculation when Form becomes visible
17606
17607 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
17608
17609         * ComboBox.cs: fixes for ownerdraw
17610
17611 2005-01-18  Peter Bartok  <pbartok@novell.com>
17612
17613         * TextControl.cs:
17614           - Sentinel is no longer static, each Document gets it's own, this
17615             avoids locking or alternatively overwrite problems when more
17616             than one text control is used simultaneously.
17617           - Switched to use Hilight and HilightText brushes for text selection
17618
17619         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
17620
17621 2005-01-18  Peter Bartok  <pbartok@novell.com>
17622
17623         * Control.cs:
17624           - Hooked up the following events:
17625                 o ControlAdded
17626                 o ControlRemoved
17627                 o HandleDestroyed
17628                 o ImeModeChanged
17629                 o ParentChanged
17630                 o TabStopChanged
17631                 o Invalidated
17632                 o SystemColorsChanged
17633                 o ParentFontChanged
17634                 o Move
17635           - Removed debug output
17636           - Added a call to the current theme's ResetDefaults when a color change
17637             is detected
17638         * Form.cs: Now setting the proper ImeMode
17639         * Theme.cs: Defined a method to force recreation of cached resources
17640           and rereading of system defaults (ResetDefaults())
17641         * ThemeWin32Classic.cs: Added ResetDefaults() stub
17642
17643 2005-01-17  Peter Bartok  <pbartok@novell.com>
17644
17645         * Control.cs: Added missing attributes
17646
17647 2005-01-17  Jackson Harper  <jackson@ximian.com>
17648
17649         * TreeNode.cs: Implement editing. Add missing properties selected
17650         and visible.
17651         * TreeView.cs: Implement node editing. Also some fixes to use
17652         Invalidate (invalid area) instead of Refresh when selecting.
17653
17654 2005-01-17  Peter Bartok  <pbartok@novell.com>
17655
17656         * Control.cs:
17657           - Implemented InvokeGotFocus() method
17658           - Implemented InvokeLostFocus() method
17659           - Implemented InvokePaint() method
17660           - Implemented InvokePaintBackground() method
17661           - Implemented InvokeClick() method
17662           - Implemented FindForm() method
17663           - Implemented RectangleToClient() method
17664           - Implemented ClientToRectangle() method
17665           - Implemented ResetBackColor() method
17666           - Implemented ResetCursor() method
17667           - Implemented ResetFont() method
17668           - Implemented ResteForeColor() method
17669           - Implemented ResetImeMode() method
17670           - Implemented ResetLeftToRight() method
17671           - Implemented ResetText() method
17672           - Implemented Scale() methods
17673           - Implemented ScaleCore() method
17674           - Implemented Update() method
17675           - Removed unused variables
17676           - Stubbed AccessibilityNotifyClients and
17677             ControlAccessibleObject.NotifyClients() methods (dunno what to do
17678             with those yet)
17679           - Now setting proper default for RightToLeft property
17680           - Fixed bug in SetClientSizeCore that would cause windows to get
17681             really big
17682           - Now sending Click/DoubleClick events
17683           - Now selecting controls when left mouse button is clicked on
17684             selectable control
17685         * AccessibleEvents.cs: Added
17686         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
17687         * XplatUIOSX.cs: Stubbed UpdateWindow() method
17688         * XplatUIWin32.cs: Implemented UpdateWindow() method
17689         * XplatUIX11.cs: Implemented UpdateWindow() method
17690         * Form.cs: Removed stray semicolon causing CS0162 warning
17691         * ThemeWin32Classic.cs: Fixed unused variable warnings
17692         * ScrollableControl.cs: Now calls base method for ScaleCore
17693         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
17694           style to avoid interference with internal click handler (which is
17695           different than standard Control click handling)
17696         * RadioButton.cs:
17697           - Now unchecks all sibling radio buttons when control is
17698             selected (Fixes #68756)
17699           - Removed internal tabstop variable, using the one inherited from
17700             Control
17701
17702 2005-01-17  Jackson Harper  <jackson@ximian.com>
17703
17704         * NavigateEventArgs.cs: Fix base type.
17705         * LinkLabel.cs: Sig fix
17706         
17707 2005-01-17  Jackson Harper  <jackson@ximian.com>
17708
17709         * TreeView.cs: Only invalidate the effected nodes bounds when
17710         selecting nodes.
17711
17712 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17713
17714         * XplatUIWin32.cs: fixes Win32 marshaling
17715         * XplatUIX11.cs: fixes method signature
17716
17717 2005-01-17  Peter Bartok  <pbartok@novell.com>
17718
17719         * XplatUIX11.cs: Clean up resources when we no longer need them
17720
17721 2005-01-17  Peter Bartok  <pbartok@novell.com>
17722
17723         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
17724           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
17725           and DestroyCursor() methods.
17726         * Cursor.cs: Partially implemented, now supports standard cursors;
17727           still contains some debug code
17728         * Cursors.cs: Implemented class
17729         * Control.cs:
17730           - WndProc(): Added handling of WM_SETCURSOR message, setting the
17731             appropriate cursor
17732           - Implemented Cursor property
17733           - Replaced break; with return; more straightforwar and possibly
17734             faster
17735           - Now properly setting the result for WM_HELP
17736         * X11Structs.cs: Added CursorFontShape enum
17737         * XplatUIStructs.cs:
17738           - Added StdCursor enum (to support DefineStdCursor() method)
17739           - Added HitTest enum (to support sending WM_SETCURSOR message)
17740         * XplatUIX11.cs:
17741           - Now sends the WM_SETCURSOR message
17742           - Implemented new cursor methods
17743         * XplatUIOSX.cs: Stubbed new cursor methods
17744         * XplatUIWin32.cs:
17745           - Implemented new cursor methods
17746           - Added GetSystemMetrics function and associated enumeration
17747
17748 2005-01-15  Peter Bartok  <pbartok@novell.com>
17749
17750         * Control.cs:
17751           - WndProc(): Now handles EnableNotifyMessage
17752           - SelectNextControl(): Fixed bug where if no child or sibling
17753             controls exist we looped endlessly
17754
17755 2005-01-14  Jackson Harper  <jackson@ximian.com>
17756
17757         * TreeView.cs: Recalculate the tab pages when a new one is added
17758         so that the proper bounding rects are created.
17759
17760 2005-01-14  Jackson Harper  <jackson@ximian.com>
17761
17762         * TreeView.cs: Draw a gray box instead of a grip in the lower
17763         right hand corner when there are both horizontal and vertical
17764         scroll bars.
17765
17766 2005-01-14  Jackson Harper  <jackson@ximian.com>
17767
17768         * Control.cs: When erasing backgrounds use FromHwnd instead of
17769         FromHdc when there is a NULL wparam. This occurs on the X driver.
17770         * XplatUIX11.cs: Set the wparam to NULL.
17771
17772 2005-01-13  Jackson Harper  <jackson@ximian.com>
17773
17774         * PictureBox.cs: Implement missing methods (except ToString, need
17775         to test that on windows) and events. When visibility is changed we
17776         need to redraw the image because the buffers are killed. When size
17777         is changed refresh if the sizemode needs it.
17778
17779 2005-01-13  Peter Bartok  <pbartok@novell.com>
17780
17781         * Control.cs (SelectNextControl): Was using wrong method to select
17782           a control
17783
17784 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17785
17786         * ComboBox.cs: fixes dropstyle
17787
17788 2005-01-13  Peter Bartok  <pbartok@novell.com>
17789
17790         * Form.cs:
17791           - Implemented Select() override
17792           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
17793           - Now sets keyboard focus on startup
17794         * Control.cs (SelectNextControl): Now properly handles directed=true
17795         * TextBoxBase.cs:
17796           - WndProc: Now passes tab key on to base if AcceptTabChar=false
17797           - Added (really bad) focus rectangle (mostly for testing)
17798         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
17799           to enforce redraw on focus changes
17800         * ContainerControl.cs:
17801           - Fixed detection of Shift-Tab key presses
17802           - Fixed traversal with arrow keys
17803         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
17804           gonna keep this or if it's complete yet
17805         
17806 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17807
17808         * ComboBox.cs: missing properties, fixes
17809
17810 2005-01-13  Peter Bartok  <pbartok@novell.com>
17811
17812         * Panel.cs (ctor): Setting Selectable window style to off
17813         * Splitter.cs (ctor): Setting Selectable window style to off
17814         * GroupBox.cs (ctor): Setting Selectable window style to off
17815         * Label.cs (ctor): Setting Selectable window style to off
17816
17817 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
17818
17819         * UpDownBase.cs (InitTimer): If the timer has been already
17820         created, enable it.
17821
17822         Use a TextBox instead of a Label.
17823
17824 2005-01-12  Jackson Harper  <jackson@ximian.com>
17825
17826         * TreeView.cs: Refresh the tree after sorting the nodes. Always
17827         draw the connecting node lines (when ShowLines is true).
17828         * TreeNode.cs: The nodes index can now be updated. This is used
17829         when a node collection is sorted.
17830         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
17831         insert or an existing unsorted node collection can be sorted.
17832         
17833 2005-01-12  Peter Bartok  <pbartok@novell.com>
17834
17835         * ContainerControl.cs: Implemented ProcessDialogKeys()
17836
17837 2005-01-12  Peter Bartok  <pbartok@novell.com>
17838
17839         * Control.cs:
17840           - Implemented SelectNextControl() method
17841           - Several focus related bug fixes
17842           - Fixed Docking calculations to match MS documentation and
17843             behaviour
17844
17845 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
17846
17847         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
17848         bug fixes
17849
17850 2005-01-12  Peter Bartok  <pbartok@novell.com>
17851
17852         * Control.cs:
17853           - Fixed broken Contains() method
17854           - Implemented GetNextControl() method. Finally. This is the pre-
17855             requisite for focus handling.
17856
17857 2005-01-12  Peter Bartok  <pbartok@novell.com>
17858
17859         * OSXStrucs.cs: Added
17860
17861 2005-01-12  Peter Bartok  <pbartok@novell.com>
17862
17863         * XplatUIWin32.cs:
17864           - Removed PeekMessageFlags
17865           - Implemented SetWindowStyle() method
17866         * XplatUIStructs.cs: Added PeekMessageFlags
17867         * X11Structs: Added missing border_width field to XWindowChanges struct
17868         * XplatUIX11.cs:
17869           - PeekMessage: Now throws exception if flags which are not yet
17870             supported are passed
17871           - Implemented SetWindowStyle() method
17872           - Fixed SetZOrder to handle AfterHwnd properly
17873         * XplatUI.cs: Added SetWindowStyle() method
17874         * XplatUIDriver.cs: Added SetWindowStyle() abstract
17875         * Control.cs:
17876           - Implemented UpdateStyles() method
17877           - Implemented UpdateZOrder() method
17878         * XplatUIOSX.cs: Added SetWindowStyle() stub
17879
17880 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
17881
17882         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
17883         button mouse).
17884
17885
17886 2005-01-11  Jackson Harper  <jackson@ximian.com>
17887
17888         * TreeView.cs: Still need to draw lines to siblings even if out of
17889         the current node is out of the clip.
17890
17891 2005-01-11  Jackson Harper  <jackson@ximian.com>
17892
17893         * TreeView.cs: When setting the hbar/vbar/grip position use
17894         SetBounds so that perform layout is only called once. Also suspend
17895         and resume layout so layout is only done once for all controls.
17896         - Removed some debug fluff
17897         * SizeGrip.cs: Call base implmentation in overriding methods.
17898         - When visibility is changed the drawing buffers are killed so we
17899         need to redraw.
17900
17901 2005-01-11  Jackson Harper  <jackson@ximian.com>
17902
17903         * TreeView.cs: Calculate the open node count while drawing. This
17904         saves us an entire tree traversal for every paint operation. Use
17905         a member var for the open node count so less vars are passed around.
17906
17907 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
17908
17909         * MonthCalendar.cs:
17910         - fixed selection to use mousemove, not mouse polling on timer
17911         * ThemeWin32Classic.cs
17912         - removed redundant unused variable "no_more_content"
17913         
17914 2005-01-11  Peter Bartok  <pbartok@novell.com>
17915
17916         * XplatUIX11.cs (DoEvents): Needs to return when no more events
17917           are pending, so it now calls PeekMessage instead of GetMessage;
17918           implemented a incomplete version of PeekMessage
17919         
17920 2005-01-11  Peter Bartok  <pbartok@novell.com>
17921
17922         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
17923           I18n issues
17924         * TextBoxBase.cs: Added sending of TextChanged event
17925
17926 2005-01-10  Jackson Harper  <jackson@ximian.com>
17927
17928         * TreeView.cs: Try not to draw outside the clipping rectangle on
17929         each node element.
17930
17931 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
17932
17933         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
17934
17935 2005-01-10  Jackson Harper  <jackson@ximian.com>
17936
17937         * TreeView.cs:
17938         - Implement fast scrolling. Now only the newly
17939         exposed nodes are drawn and the old image is moved using the
17940         XplatUI::ScrollWindow method.
17941         - Factor in height of nodes when calculating whether or not the
17942         node is in the clipping rect.
17943
17944 2005-01-10  Jackson Harper  <jackson@ximian.com>
17945
17946         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
17947
17948 2005-01-10  Peter Bartok  <pbartok@novell.com>
17949
17950         * Application.cs: Added temporary hack to resolve all our resize
17951           required issues on startup. This will get fixed properly at
17952           some point in the future
17953
17954 2005-01-10  Jackson Harper  <jackson@ximian.com>
17955
17956         * SizeGrip.cs: New internal class that is used as a sizing
17957         grip control...hence the name.
17958
17959 2005-01-10  Peter Bartok  <pbartok@novell.com>
17960
17961         * Control.cs: Implemented proper TabIndex handling, now assigning
17962           a tabindex when a control is added to a container
17963         * GroupBox.cs (ctor): Now sets the Container style bit, required
17964           for Control.GetNextControl()
17965
17966 2005-01-09  Jackson Harper  <jackson@ximian.com>
17967
17968         * TextBoxBase.cs: Clear window when scrolling (fixes build).
17969
17970 2005-01-09  Peter Bartok <pbartok@novell.com>
17971
17972         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17973           XplatUIX11.cs: Added ability to control ScrollWindow expose and
17974           an overload for ScrollWindow to allow only scrolling a rectangle
17975
17976 2005-01-09  Peter Bartok <pbartok@novell.com>
17977
17978         * Form.cs:
17979           - Implemented SetDesktopBounds method
17980           - Implemented SetDesktopLocation method
17981
17982 2005-01-08  Jackson Harper  <jackson@ximian.com>
17983
17984         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
17985         the node count has changed, this removes to VScroll::Refresh calls
17986         when drawing.
17987
17988 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
17989
17990         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
17991
17992 2005-01-07  Jackson Harper  <jackson@ximian.com>
17993
17994         * TreeNode.cs: Just update the single node when it is
17995         checked. Don't refresh after toggling, the Expand/Collapse already
17996         handles this.
17997         * TreeView.cs: Respect clipping a little more when drawing. Try
17998         not to redraw things that don't need to be redrawn. Just hide the
17999         scrollbars when they are no longer needed instead of removing
18000         them, so they don't have to be created again and again.
18001         
18002 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
18003
18004         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
18005         coordinates to window space to place the caret properly, FIXED.
18006         Implement GetWindowState & SetWindowState
18007
18008 2005-01-06  Peter Bartok <pbartok@novell.com>
18009
18010         * Form.cs:
18011           - Implemented ClientSize property
18012           - Implemented DesktopBounds property
18013           - Implemented DesktopLocation property
18014           - Implemented IsRestrictedWindow property
18015           - Implemented Size property
18016           - Implemented TopLevel property
18017           - Implemented FormWindowState property
18018         * Control.cs:
18019           - Implemented GetTopLevel() method
18020           - Implemented SetTopLevel() method
18021         * X11Structs.cs (Atom):
18022           - Added AnyPropertyType definition
18023           - Added MapState definiton and updated XWindowAttribute struct
18024         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
18025         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
18026         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
18027         * XplatUIWin32.cs:
18028           - Implemented GetWindowState() and SetWindowState() methods
18029           - Fixed Win32GetWindowLong return type
18030         * XplatUIX11.cs:
18031           - Introduced central function for sending NET_WM messages
18032           - Implemented GetWindowState() and SetWindowState() methods
18033         * TextBoxBase.cs (set_Lines):
18034           - Now uses Foreground color for text added via Text property (Duh!)
18035           - Added code to remember programmatically requested size (fixes
18036             behaviour when Multiline is set after Size)
18037           - Added AutoSize logic
18038
18039 2005-01-06  Jackson Harper  <jackson@ximian.com>
18040
18041         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
18042
18043 2005-01-06  Jackson Harper  <jackson@ximian.com>
18044
18045         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
18046         set to less then 0.
18047
18048 2005-01-06  Jackson Harper  <jackson@ximian.com>
18049
18050         * ScrollableControl.cs: Lazy init the scrollbars.
18051         
18052 2005-01-06  Jackson Harper  <jackson@ximian.com>
18053
18054         * Theme.cs: Speed up getting pens and solid brushes, by using
18055         their ARGB as a hash instead of tostring and not calling Contains.
18056
18057 2005-01-06  Peter Bartok <pbartok@novell.com>
18058
18059         * Form.cs:
18060           - Implemented OnActivated and OnDeactivate event trigger
18061           - Implemented Activate() method
18062           - Fixed ShowDialog() to activate the form that was active before
18063             the dialog was shown
18064         * XplatUIX11.cs:
18065           - Added global active_window var that tracks the currently active
18066             X11 window
18067           - Now always grabs Property changes from the root window to always
18068             catch changes on the active window property
18069           - Added code to PropertyNotify handler to send Active/Inactive
18070             messages when state changes. This puts X11 and Win32 en par on
18071             WM_ACTIVATE notifications (except for double notifications when
18072             the user clicks away from our modal window to another one of our
18073             windows)
18074
18075 2005-01-05  Jackson Harper  <jackson@ximian.com>
18076
18077         * ImageList.cs: Implment ctor
18078
18079 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18080
18081         * XplatUIOSX.cs: Implement Activate/SetTopmost
18082
18083 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18084
18085         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
18086
18087 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18088
18089         * XplatUIOSX.cs: Implement GetActive/SetFocus.
18090
18091 2005-01-05  Peter Bartok <pbartok@novell.com>
18092
18093         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
18094           XplatUIOSX.cs: Added GetActive method to return the currently
18095           active window for the application (or null, if none is active)
18096         * Form.cs:
18097           - Implemented ActiveForm
18098           - Commented out owner assignment for modal dialogs (causes problems
18099             on Win32, since the owner will be disabled)
18100           - Reworked some Active/Focus handling (still incomplete)
18101         * CommonDialog.cs: Commented out owner assignment for modal dialogs
18102           (causes problems on Win32, since the owner will be disabled)
18103         * IWin32Window: Added ComVisible attribute
18104
18105 2005-01-05  Peter Bartok <pbartok@novell.com>
18106
18107         * ToolTip.cs (WndProc): Enable setting focus now that we have the
18108           required XplatUI functions.
18109
18110 2005-01-05  Peter Bartok <pbartok@novell.com>
18111
18112         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
18113           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
18114           to implement focus and activation handling; still incomplete and
18115           with debug output
18116
18117 2005-01-04  Peter Bartok <pbartok@novell.com>
18118
18119         * TextBoxBase.cs: Changed access level for Document property to
18120           match switch to internal for TextControl
18121
18122 2005-01-04  Peter Bartok <pbartok@novell.com>
18123
18124         * AccessibleObject: Added ComVisible attribute
18125
18126 2005-01-04  Jackson Harper  <jackson@ximian.com>
18127
18128         * X11Keyboard.cs: Remove unneeded var.
18129
18130 2005-01-04  Jackson Harper  <jackson@ximian.com>
18131
18132         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
18133         but PAINT.
18134         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
18135         ClientMessage. This makes apps exit cleanly (more often).
18136         
18137 2005-01-04  Jackson Harper  <jackson@ximian.com>
18138
18139         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
18140         handling focus, return correct colors and fonts,
18141         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
18142         handle selection, horizontal scrolling, and mouse interaction.
18143
18144 2005-01-04  Peter Bartok <pbartok@novell.com>
18145
18146         * ICommandExecutor.cs: Added
18147         * IDataGridColumnStyleEditingNotificationService.cs: Added
18148         * IFeatureSupport.cs: Added
18149         * IFileReaderService.cs: Added
18150         * IDataObject.cs: Added ComVisible attribute
18151         * AmbientProperties.cs: Added
18152         * BaseCollection.cs: Added missing attributes
18153         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
18154         * BaseCollection.cs: Added missing attributes
18155         * Binding.cs: Added TypeConverter attribute
18156         * BindingContext.cs: Added DefaultEvent attribute
18157         * BindingsCollection.cs: Added DefaultEvent attribute
18158         * Button.cs: Added DefaultValue attribute
18159         * DragEventArgs.cs: Added ComVisible attribute
18160         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
18161         * KeyEventArgs.cs: Added ComVisible attribute
18162         * KeyPressEventArgs.cs: Added ComVisible attribute
18163         * MouseEventArgs.cs: Added ComVisible attribute
18164         * NavigateEventArgs.cs: Added
18165         * NavigateEventHandler.cs: Added
18166         * FeatureSupport.cs: Added
18167         * OSFeature.cs: Added
18168         * Theme.cs: Added abstract Version property to support OSFeature
18169         * ThemeWin32Classic.cs: Added Version property to
18170           support OSFeature.Themes
18171         * ProgressBar.cs: Removed OnPaintBackground override, not required since
18172           the proper styles to avoid background drawing are set, also doesn't
18173           match MS signature
18174         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
18175         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
18176         * ScrollEventArgs.cs: Added ComVisible attribute
18177         * SplitterEventArgs.cs: Added ComVisible attribute
18178         * AccessibleSelection.cs: Added Flags attribute
18179         * Appearance.cs: Added ComVisible attribute
18180         * Border3DSide.cs: Added ComVisible attribute
18181         * Border3DStyle.cs: Added ComVisible attribute
18182         * BorderStyle.cs: Added ComVisible attribute
18183         * DragAction.cs: Added ComVisible attribute
18184         * ErrorBlinkStyle.cs: Added
18185         * ScrollEventType.cs: Added ComVisible attribute
18186         * AnchorStyles.cs: Added Editor attribute
18187         * DockStyle.cs: Added Editor attribute
18188         * HorizontalAlignment.cs: Added ComVisible attribute
18189         * HelpEventArgs.cs: Added ComVisible attribute
18190         * PaintEventArgs.cs: Added IDisposable
18191
18192 2005-01-04  Peter Bartok <pbartok@novell.com>
18193
18194         * TextControl.cs: Switched Line, LineTag and Document classes to
18195           internal
18196
18197 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18198
18199         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
18200         Simple mode, fixes, IntegralHeight, etc.
18201
18202 2005-01-04  Peter Bartok <pbartok@novell.com>
18203
18204         * TextBoxBase.cs: Using proper font variable now
18205
18206 2005-01-04  Peter Bartok <pbartok@novell.com>
18207
18208         * Form.cs (ShowDialog): Set parent to owner, if provided
18209         * GroupBox.cs: Removed unused vars
18210         * TextControl.cs:
18211           - Added GetHashCode() for Document and LineTag classes
18212           - Removed unused variables
18213           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
18214             to allow translation between continuous char position and line/pos
18215         * CheckBox.cs: Removed vars that are provided by base class
18216         * RadioButton.cs: Removed vars that are provided by base class, added
18217           new keyword where required
18218         * LinkLabel.cs: Added new keyword where required
18219         * Control.cs (WndProc): Removed unused variable
18220         * TextBoxBase.cs:
18221           - Finished SelectionLength property
18222           - Implemented SelectionStart property
18223           - Implemented Text property
18224           - Removed unused vars
18225         * MessageBox.cs: Added new keyword where required
18226         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
18227           WndProc signature
18228         * MenuAPI.cs: Added new keyword where required
18229         * ButtonBase.cs: Removed vars that are provided by base class, added
18230           new keyword where required
18231         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
18232           argument to double, to allow compiling with csc 2.0 (Atsushi ran
18233           into this)
18234         * Application.cs (Run): Now triggers the ThreadExit event
18235         * CommonDialog.cs: Added new keyword where required; now properly sets
18236           parent (owner) for dialog
18237         * XplatUIX11.cs: Commented out unused vars
18238         * StatusBar.cs: Fixed signature for Text property
18239         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
18240
18241 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18242
18243         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
18244         TrackBar.cs, MonthCalendar.cs: remove unused vars
18245
18246 2005-01-03  Jackson Harper  <jackson@ximian.com>
18247
18248         * ThemeWin32Classic.cs:
18249         * X11Keyboard.cs: Remove unused vars.
18250
18251 2005-01-03  Peter Bartok  <pbartok@novell.com>
18252
18253         * TextBox.cs:
18254           - set_Text: Tied into TextControl
18255           - set_TextAlignment: Tied into TextControl
18256         * TextControl.cs:
18257           - Added alignment properties and implemented alignment handling
18258             and drawing (still has a bug, not generating proper expose events)
18259           - Added new Line() constructor to allow passing the line alignment
18260           - Fixed selection setting, properly handling end<start now
18261           - Added aligment considerations to RecalculateDocument()
18262         * TextBoxBase.cs:
18263           - Now properly enforces control height for single line controls
18264           - Added support for CharacterCasing
18265           - Added IsInputKey override
18266           - Fixed Keys.Enter logic
18267           - Added SetBoundsCore override
18268           - Fixed mouse selection handling
18269
18270 2005-01-03  Jackson Harper  <jackson@ximian.com>
18271
18272         * TreeView.cs:
18273           - Collapse and uncheck all nodes when CheckBoxes is disabled.
18274           - Checkboxes are always aligned to the bottom of the node,
18275           regardless of item height.
18276           - Use the node bounds to draw the text so we can center it when
18277           the item height is greater then the font height.
18278           - Node::Bounds are only the text part of the node.
18279         * TreeNode.cs: New method to combine collapsing and unchecking all
18280           nodes recursively.
18281
18282 2005-01-02  Jackson Harper  <jackson@ximian.com>
18283
18284         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
18285         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
18286         tree when a check is changed. TODO: Only refresh the checked node.
18287
18288 2004-12-30  Jackson Harper  <jackson@ximian.com>
18289
18290         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
18291         * TreeNode.cs: When collapsing make sure to never collapse the
18292         root node.
18293
18294 2004-12-29  Jackson Harper  <jackson@ximian.com>
18295
18296         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
18297         
18298 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
18299
18300         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
18301
18302 2004-12-28  Peter Bartok  <pbartok@novell.com>
18303
18304         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
18305           not yet assigned
18306
18307 2004-12-28  Peter Bartok  <pbartok@novell.com>
18308
18309         * Control.cs (WndProc): Added WM_HELP handler, now generates
18310           HelpRequested event
18311         * Form.cs: Added HelpButton property and required support code
18312         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
18313
18314 2004-12-28  Peter Bartok  <pbartok@novell.com>
18315
18316         * CommonDialog.cs:
18317           - Made DialogForm.owner variable internal
18318           - Added check to ensure owner form is set before setting
18319             owner properties in CreateParams
18320
18321 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
18322
18323         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
18324           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
18325           GetCursorPos.  Fix major visibility issues.  Rework the windowing
18326           system to support borderless/titleless windows (implements menus).
18327           Fix GetWindowPos.  Implement initial background color support for
18328           views.
18329
18330 2004-12-28  Peter Bartok  <pbartok@novell.com>
18331
18332         * Form.cs (get_CreateParams): Make sure we have an owner before using
18333           the owner variable. Implement proper default if no owner exists
18334
18335 2004-12-28  Peter Bartok  <pbartok@novell.com>
18336
18337         * In preparation for making Managed.Windows.Forms the default build target
18338           for System.Windows.Forms, the following stubbed files were added.
18339           Dialogs are currently being implemented by contributors and are only
18340           short-term place holders.
18341         * ColorDialog.cs: Initial check-in (minmal stub)
18342         * DataGrid.cs: Initial check-in (minimal stub)
18343         * DataGridLineStyle.cs: Initial check-in (minimal stub)
18344         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
18345         * DataGridTableStyle.cs: Initial check-in (minimal stub)
18346         * FontDialog.cs: Initial check-in (minimal stub)
18347         * FileDialog.cs: Initial check-in (minimal stub)
18348         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
18349         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
18350         * OpenFileDialog: Initial check-in (minimal stub)
18351         * IComponentEditorPageSite.cs: Initial check-in
18352         * Splitter.cs: Initial check-in (for Jackson)
18353         * SplitterEventArgs.cs: Initial check-in (for Jackson)
18354         * SplitterEventHandler.cs: Initial check-in (for Jackson)
18355         * TextBox.cs: Initial check-in; still needs some wiring to
18356           TextControl backend
18357         * Form.cs: Implemented ControlBox property
18358         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
18359         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
18360         * TextControl.cs: Added selection functionality; added todo header
18361         * TextBoxBase.cs:
18362           - Implemented Lines property
18363           - Implemented TextHeight property
18364           - Implemented SelectedText property
18365           - Implemented SelectionLength property
18366           - Implemented SelectAll method
18367           - Implemented ToString method
18368           - Removed and cleaned up some debug code
18369           - Implemented (still buggy) mouse text selection
18370
18371 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
18372
18373         * ComboBox.cs: Complete DropDownList implementation, fixes.
18374
18375 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
18376
18377         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
18378         * ComboBoxStyle.cs: ComboBoxStyle enum
18379         * ComboBox.cs: Initial work on ComboBox control
18380
18381 2004-12-21  Peter Bartok  <pbartok@novell.com>
18382
18383         * Control.cs (ctor, CreateParams): Moved setting of is_visible
18384           forward so that anything that creates a window gets the default,
18385           also no longer uses Visible property in CreateParams to avoid
18386           walking up the parent chain and possibly get the wrong visible
18387           status. Fixed IsVisible to no longer walk up to the parent.
18388
18389 2004-12-21  Peter Bartok  <pbartok@novell.com>
18390
18391         * Form.cs (ShowDialog): Unset modality for the proper window
18392  
18393 2004-12-20  Peter Bartok  <pbartok@novell.com>
18394
18395         * CommonDialog.cs: Initial check-in
18396
18397 2004-12-20  Peter Bartok  <pbartok@novell.com>
18398
18399         * Control.cs (Visible): Now uses the parent window instead of the
18400           client area window for the property
18401
18402         * Form.cs
18403           - ShowDialog(): Now uses the proper window for modality
18404           - The default visibility state for the form parent is now false. This
18405             will prevent the user from seeing all the changes to the form and
18406             its controls before the application hits Application.Run()
18407           - Removed some stale commented out code
18408
18409         * NativeWindow.cs:
18410           - Added FindWindow() method to have a method to check for existence
18411             of a window handle
18412           - Added ability to override default exception handling (for example
18413             when debugging with VS.Net; to do this the ExternalExceptionHandler
18414             define must be set
18415           - Removed some useless debug output
18416
18417         * XplatUIX11.cs:
18418           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
18419             not working as expected
18420           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
18421             property to allow switching back to the modal window if focus is
18422             given to another one of our windows (Application Modal)
18423           - Now only sets override_redirect if we create a window
18424             without WS_CAPTION
18425           - Moved EventMask selection before mapping of newly created window
18426             so we can catch the map event as well
18427           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
18428           - Added various Atom related DllImports
18429           - Implemented Exit() method
18430           - .ctor() : No longer shows window if WS_VISIBLE is not defined
18431             in the CreateParams
18432
18433         * MessageBox.cs: Now properly deals with the FormParent window by
18434           providing an override the FormParent CreateParams property to
18435           set as POPUP instead of OVERLAPPED window.
18436
18437 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18438
18439         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
18440         Minor code cleanup.
18441
18442 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18443         
18444         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
18445
18446 2004-12-18  Peter Bartok  <pbartok@novell.com>
18447
18448         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
18449           implementing SetModal() method
18450
18451 2004-12-18  Peter Bartok  <pbartok@novell.com>
18452
18453         * X11Structs.cs (XGCValues): Fixed type of function element
18454         * XplatUI.cs: Added ScrollWindow() method
18455         * XplatUIDriver.cs: Added ScrollWindow() abstract
18456         * XplatUIWin32.cs: Implemented ScrollWindow() method
18457         * XplatUIX11.cs: Implemented ScrollWindow() method
18458         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
18459
18460 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18461
18462         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
18463         Some more keyboard support (INCOMPLETE)
18464
18465 2004-12-17  Peter Bartok  <pbartok@novell.com>
18466
18467         * TextControl.cs:
18468         - Added color attribute to line tags.
18469         - Added color argument to all functions dealing with tags
18470         - Added color argument support to various functions
18471         - Fixed miss-calculation of baseline/shift in certain circumstances
18472
18473         * TextBoxBase.cs: Added new color option to test code
18474
18475 2004-12-17  Jackson Harper  <jackson@ximian.com>
18476
18477         * TreeNode.cs:
18478         * MonthCalendar.cs: Signature fixes
18479
18480 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18481
18482         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
18483         keyboard event moved it.  Create a new graphics context for each paint resolves this
18484
18485 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18486
18487         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
18488         Make caret exist and go blink blink.  Initial keyboard support.
18489         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
18490         works.
18491
18492 2004-12-17  Jackson Harper  <jackson@ximian.com>
18493
18494         * XplatUIStructs.cs: Updated set of virtual keycodes.
18495         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
18496
18497 2004-12-17  Jackson Harper  <jackson@ximian.com>
18498
18499         * XplatUIX11.cs: Prune old keyboard code.
18500
18501 2004-12-17  Jackson Harper  <jackson@ximian.com>
18502
18503         * XplatUIX11.cs: When generating mouse wparams get the modifier
18504         keys from the ModifierKeys property.
18505
18506 2004-12-17  Jackson Harper  <jackson@ximian.com>
18507
18508         * X11Keyboard.cs: Send up/down input when generating
18509         messages. Remove some unused vars.
18510
18511 2004-12-17  Jackson Harper  <jackson@ximian.com>
18512
18513         * TabControl.cs:
18514         * TreeView.cs: get rid of warnings.
18515
18516 2004-12-17  Jackson Harper  <jackson@ximian.com>
18517
18518         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
18519
18520 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
18521
18522         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
18523           CheckedListBox.cs: Implementation
18524
18525 2004-12-17  Peter Bartok  <pbartok@novell.com>
18526
18527         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
18528
18529 2004-12-16  Peter Bartok  <pbartok@novell.com>
18530
18531         * TextControl.cs:
18532           - InsertCharAtCaret(): Fixed start pos fixup
18533           - CaretLine_get: No longer derives the line from the tag, the tag
18534             could be stale if lines in the document have been added or deleted
18535           - RebalanceAfterDelete(): Fixed bug in balancing code
18536           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
18537           - Line.Streamline(): Now can also elminate leading empty tags
18538           - DumpTree(): Added a few more tests and prevented exception on
18539             uninitialized data
18540           - Added Debug section for Combining lines
18541           - Delete(): Now copies all remaining properties of a line
18542           
18543         * TextBoxBase.cs:
18544           - Left mousebutton now sets the caret (and middle button still acts
18545             as formatting tester, which must go away soon)
18546           - Added Debug section for Deleting/Combining lines
18547           - Fixed calculations for UpdateView after Combining lines
18548
18549 2004-12-16  Peter Bartok  <pbartok@novell.com>
18550
18551         * TextControl.cs: Now properly aligns text on a baseline, using the
18552           new XplatUI.GetFontMetrics() method. Simplified several calculations
18553         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
18554           defined
18555
18556 2004-12-16  Peter Bartok  <pbartok@novell.com>
18557
18558         * XplatUI.cs: Added GetFontMetrics() method
18559         * XplatUIDriver.cs: Added GetFontMetrics() abstract
18560         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
18561           into libgdiplus, our private GetFontMetrics function
18562         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
18563         * XplatUIWin32.cs: Implemented GetFontMetrics() method
18564
18565 2004-12-16  Jackson Harper  <jackson@ximain.com>
18566
18567         * XplatUIStruct.cs: Add enum for dead keys
18568         * X11Keyboard.cs: Map and unmap dead keys.
18569
18570 2004-12-16  Jackson Harper  <jackson@ximian.com>
18571
18572         * X11Keyboard.cs: Detect and use the num lock mask.
18573
18574 2004-12-16  Peter Bartok  <pbartok@novell.com>
18575
18576         * Control.cs (CreateGraphics): Added check to make sure the
18577           handle of the window exists before calling Graphics.FromHwnd()
18578
18579 2004-12-16  Peter Bartok  <pbartok@novell.com>
18580
18581         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
18582           contains a lot of code that's not supposed to be there for the
18583           real thing, but required for developing/testing the textbox
18584           backend.
18585
18586 2004-12-16  Peter Bartok  <pbartok@novell.com>
18587
18588         * TextControl.cs:
18589         - Fixed Streamline method
18590         - Added FindTag method to Line
18591         - Added DumpTree method for debugging
18592         - Added DecrementLines() method for deleting lines
18593         - Fixed UpdateView to update the cursor to end-of-line on single-line
18594           updates
18595         - Added PositionCaret() method
18596         - Fixed MoveCaret(LineDown) to move into the last line, too
18597         - Added InsertChar overload
18598         - Fixed InsertChar tag offset calculations
18599         - Added DeleteChar() method
18600         - Added Combine() method for folding lines
18601         - Fixed Delete() method, no longer allocates wasted Line object and
18602           now copies all properties when swapping nodes
18603         - Delete() method now updates document line counter
18604
18605 2004-12-15  Jackson Harper  <jackson@ximian.com>
18606
18607         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
18608         * X11Keyboard.cs: Expose the currently selected modifier keys
18609         through a property.
18610
18611 2004-12-15  Peter Bartok  <pbartok@novell.com>
18612
18613         * TextControl.cs: Initial check-in. Still incomplete
18614
18615 2004-12-15  Jackson Harper  <jackson@ximian.com>
18616
18617         * TreeNode.cs:
18618         * TreeView.cs: Fix build on csc (second time today ;-))
18619
18620 2004-12-15  Jackson Harper  <jackson@ximian.com>
18621
18622         * TreeView.cs: Store the treenodes plus/minus box bounds when it
18623         is calculated and use this for click testing.
18624         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
18625
18626 2004-12-15  Jackson Harper  <jackson@ximian.com>
18627
18628         * TreeView.cs: Pass the nodes image index to the image list when
18629         drawing that image.
18630
18631 2004-12-15  Jackson Harper  <jackson@ximian.com>
18632
18633         * X11Keyboard.cs: Set messages hwnd.
18634         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
18635         post_message calls.
18636
18637 2004-12-15  Jackson Harper  <jackson@ximian.com>
18638
18639         * X11Keyboard.cs: Fix to compile with csc.
18640         
18641 2004-12-15  Jackson Harper  <jackson@ximian.com>
18642
18643         * X11Structs.cs: Add key mask values
18644         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
18645         * X11Keyboard.cs: New file - Extrapolates and interpolates key
18646         down/up foo into WM_CHAR foo
18647         * KeyboardLayouts.cs: Common keyboard layouts
18648         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
18649         post messages into the main queue.
18650
18651 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
18652
18653         * Button.cs: implement ProcessMnemonic
18654         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
18655           brushes everytime
18656         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
18657         * ButtonBase.cs: Show HotkeyPrefix (not the &)
18658
18659 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
18660         
18661         * MonthCalendar.cs: Implemented click-hold for next/previous month
18662           and date selection
18663           
18664 2004-12-11  Peter Bartok  <pbartok@novell.com>
18665
18666         * X11Structs.cs:
18667           - Added XKeyboardState (moved from XplatUIX11.cs)
18668           - Added XCreateGC related enums and structures
18669           - Added GXFunction for XSetFunction
18670
18671         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
18672
18673         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
18674           CaretVisible() calls
18675
18676         * ToolTip.cs: Added code to prevent stealing focus from app windows
18677
18678         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
18679           DestroyCaret, SetCaretPos and CaretVisible)
18680
18681         * XplatUIX11.cs:
18682           - Added implementation for caret functions
18683           - Moved hover variables into a struct, to make it a bit easier
18684             on the eyes and to debug
18685           - Removed XKeyboardState (moved to XplatUIX11.cs)
18686           - Moved Keyboard properties into the properties region
18687
18688         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
18689           call to get a graphics context for our control
18690
18691         * XplatUIOSX.cs: Added empty overrides for the new caret functions
18692
18693         * TreeView.cs: Fixed bug. No matter what color was set it would always
18694           return SystemColors.Window
18695
18696         * XplatUIWin32.cs: Implemented caret overrides
18697
18698 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
18699
18700         * ListBox.cs: fire events, implement missing methods and properties,
18701         sorting.
18702
18703 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
18704
18705         * MonthCalendar.cs: invalidation bug fixing
18706         * ThemeWin32Classic.cs: paint fixing
18707
18708 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
18709
18710         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
18711         prepare the CGContextRef there now.
18712
18713 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
18714
18715         * MonthCalendar.cs:
18716           - optimisationL only invalidate areas that have changed
18717         * ThemeWin32Classic.cs:
18718           - only paint parts that intersect with clip_area
18719
18720 2004-12-09  Peter Bartok  <pbartok@novell.com>
18721
18722         * Application.cs: Undid changes from r37004 which cause problems
18723         on X11
18724
18725 2004-12-09  Ravindra  <rkumar@novell.com>
18726
18727         * ToolBar.cs: Added support for displaying ContextMenu
18728         attached to a button on ToolBar.
18729         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
18730         property.
18731
18732 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18733
18734         * Label.cs: autosize works in text change and removes unnecessary
18735         invalidate
18736
18737 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18738
18739         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18740         remove warnings
18741
18742 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
18743
18744         * XplatUIOSX.cs: Added mouse move/click/grab support
18745         Remove some debugging WriteLines not needed anymore.
18746         Add window resizing/positioning.
18747         Fix visibility on reparenting.
18748
18749 2004-12-08  Peter Bartok  <pbartok@novell.com>
18750
18751         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
18752
18753 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
18754
18755         * XplatUIOSX.cs: Initial checkin
18756         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
18757
18758 2004-12-03  Ravindra <rkumar@novell.com>
18759
18760         * ListView.cs: Added some keybindings and fixed scrolling.
18761         ScrollBars listen to ValueChanged event instead of Scroll
18762         Event. This would let us take care of all changes being
18763         done in the scrollbars' values programmatically or manually.
18764         * ListView.cs (CanMultiselect): Added a check for shift key.
18765         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
18766         * ListViewItem.cs (Clone): Fixed. We need to make a copy
18767         of ListViewSubItemCollection as well.
18768
18769 2004-12-06  Peter Bartok <pbartok@novell.com>
18770
18771         * Control.cs (Parent): Added check and exception to prevent
18772         circular parenting
18773
18774 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
18775
18776         * ListBox.cs: implemented clipping, selection single and multiple,
18777         bug fixing
18778
18779 2004-12-03  Ravindra <rkumar@novell.com>
18780
18781         * ListView.cs (ListView_KeyDown):
18782         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
18783         when CTRL key is pressed.
18784         * ListViewItem.cs (Selected): Fixed setting the property.
18785
18786 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18787
18788         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
18789
18790         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
18791         MinimizeBox, ShowInTaskbar, TopMost properties.
18792
18793         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
18794         will be implemented).
18795
18796 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18797
18798         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
18799
18800         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
18801         tests.
18802         
18803         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
18804         
18805         * TreeView.cs: BackColor is Colors.Window.
18806
18807 2004-12-01  Jackson Harper  <jackson@ximian.com>
18808
18809         * TreeView.cs: When resizing the tree if the user is making it
18810         smaller we don't get expose events, so we need to handle adding
18811         the horizontal scrollbar in the size changed handler as well as
18812         the expose handler.
18813
18814 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
18815
18816         * DrawItemState.cs: fixes wrong enum values
18817
18818 2004-12-01  Jackson Harper  <jackson@ximian.com>
18819
18820         * TreeView.cs: Resize the hbar as well as the vbar on resize.
18821
18822 2004-12-01  Jackson Harper  <jackson@ximian.com>
18823
18824         * NodeLabelEditEventArgs.cs:
18825         * NodeLabelEditEventHandler.cs:
18826         * OpenTreeNodeEnumerator.cs:
18827         * TreeNode.cs:
18828         * TreeNodeCollection.cs:
18829         * TreeView.cs:
18830         * TreeViewAction.cs:
18831         * TreeViewCancelEventArgs.cs:
18832         * TreeViewCancelEventHandler.cs:
18833         * TreeViewEventArgs.cs:
18834         * TreeViewEventHandler.cs: Initial implementation.
18835
18836 2004-12-01  Ravindra <rkumar@novell.com>
18837
18838         * ListView.cs (CalculateListView): Fixed scrolling related
18839         calculations. Also, removed some debug statements from other
18840         places.
18841         * ListViewItem.cs: Changed access to 'selected' instance variable
18842         from private to internal.
18843         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
18844
18845 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
18846
18847         * ThemeWin32Classic.cs: remove cache of brush and pens for
18848         specific controls and use the global system, fixes scrollbutton
18849         bugs (for small sizes, disabled, etc)
18850         
18851         * ScrollBar.cs: does not show the thumb for very small controls
18852         (as MS) and allow smaller buttons that the regular size
18853
18854 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
18855
18856         * UpDownBase.cs: Add abstract methods for the interface.
18857         Add new virtual methods (need to be hooked up to TextEntry when it
18858         exists).
18859         Add override methods for most features.
18860         Computes the size, forces the height of the text entry.
18861
18862         * NumericUpDown.cs: Put here the current testing code.
18863
18864         * Set eol-style property on all files that do not have mixed line
18865         endings, to minimize the future problems.  There are still a few
18866         files with mixed endings, and someone should choose whether they
18867         want to move it or not.
18868
18869 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
18870
18871         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
18872         System.Colors
18873         
18874 2004-11-30  Ravindra <rkumar@novell.com>
18875
18876         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
18877         drawing and replaced use of SystemColors by theme colors.
18878         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
18879         * ListView.cs (ListViewItemCollection.Add): Throw exception when
18880         same ListViewItem is being added more than once.
18881
18882 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
18883
18884         * MonthCalendar.cs:
18885           - ControlStyles love to make the control not flicker
18886           
18887 2004-11-30  Peter Bartok  <pbartok@novell.com>
18888
18889         * CharacterCasing.cs: Added
18890
18891 2004-11-29  Peter Bartok  <pbartok@novell.com>
18892
18893         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18894           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
18895           I am removing these files as they conflict with already completed
18896           work. While it is fantastic to get contributions to MWF, I
18897           respectfully ask that everyone please coordinate their contributions
18898           through mono-winforms-list or #mono-winforms at this time. We're
18899           explicitly avoiding stubbing and don't want controls that don't have
18900           their basic functionality implemented in svn. Please also see
18901           http://www.mono-project.com/contributing/winforms.html
18902
18903
18904 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
18905
18906         * Application.cs (ModalRun): Don't hang after exit.
18907
18908         * Theme.cs: New TreeViewDefaultSize property.
18909
18910         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
18911         with less hardcoded SystemColors constant.
18912         Implemented TreeViewDefaultSize.
18913
18914         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18915         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
18916
18917
18918 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
18919
18920         * MonthCalendar.cs:
18921           - Fix NextMonthDate and PrevMonthDate click moving calendar
18922
18923 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18924
18925         * MonthCalendar.cs:
18926           - Fix usage of ScrollChange Property when scrolling months
18927
18928 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
18929
18930         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
18931          - Fixes menu destroying
18932          - Support adding and removing items on already created menus
18933
18934 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18935
18936         * MonthCalendar.cs:
18937           - Re-worked all bolded dates handling to match win32
18938         * ThemeWin32Classic.cs:
18939           - Fixed rendering with bolded dates
18940
18941 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
18942
18943         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
18944         - Horizontal scroolbar
18945         - Multicolumn
18946         - Fixes
18947
18948
18949 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
18950
18951         * MonthCalendar.cs:
18952           - Fix Usage of MaxSelectionCount from SelectionRange
18953           - Fixed Shift + Cursor Selection
18954           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
18955           - Fixed normal cursor selection to be compat with win32
18956           - Fixed Shift + Mouse Click selection
18957
18958 2004-11-24  Peter Bartok <pbartok@novell.com>
18959
18960         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
18961         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
18962         * XplatUIX11.cs:
18963           - CreatedKeyBoardMsg now updates keystate with Alt key
18964           - Added workaround for timer crash to CheckTimers, Jackson will
18965             develop a proper fix and check in later
18966           - Implemented DispatchMessage
18967           - Removed calling the native window proc from GetMessage (call
18968             now moved to DispatchMessage)
18969
18970         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
18971           the keydata (Fixes bug #69831)
18972
18973         * XplatUIWin32.cs:
18974           - (DispatchMessage): Switched to return IntPtr
18975           - Added DllImport for SetFocus
18976
18977 2004-11-24  Ravindra <rkumar@novell.com>
18978
18979         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
18980         background drawing.
18981         * ListViewItem.cs: Fixed various properties, calculations
18982         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
18983         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
18984         and some internal properties. Fixed MouseDown handler and Paint
18985         method.
18986
18987 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18988
18989         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
18990
18991 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18992
18993         * ContainerControl.cs: correct accidental check in of local changes
18994
18995 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18996
18997         * ThemeWin32Classic.cs:
18998                 - Fixed Drawing Last month in grid (sometimes not showing)
18999         * MonthCalendar.cs:
19000                 - Fixed title width calculation bug (makeing title small)
19001
19002 2004-11-23  Peter Bartok <pbartok@novell.com>
19003
19004         * XplatUIX11.cs:
19005           - Added generation of WM_MOUSEHOVER event
19006           - Added missing assignment of async_method atom
19007           - Fixed WM_ERASEBKGND; now only redraws the exposed area
19008
19009 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19010
19011         * ThemeWin32Classic.cs:
19012                 - Fixed Drawing of today circle when showtodaycircle not set
19013                 - fixed drawing of first and last month in the grid (gay dates)
19014         * MonthCalendar.cs:
19015                 - Fixed Drawing of today circle
19016                 - Fixed drawing of grady dates
19017                 - Fixed HitTest for today link when ShowToday set to false
19018                 - Fixed DefaultSize to obey ShowToday
19019
19020 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19021
19022         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
19023         * System.Windows.Forms/Theme.cs
19024         * MonthCalendar.cs: added for MonthCalendar
19025         * SelectionRange.cs: added for MonthCalendar
19026         * Day.cs: added for MonthCalendar: added for MonthCalendar
19027         * DateRangeEventArgs.cs: added for MonthCalendar
19028         * DateRangeEventHandler.cs: added for MonthCalendar
19029
19030 2004-11-22  Ravindra <rkumar@novell.com>
19031
19032         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
19033         property.
19034
19035 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
19036
19037         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
19038         event handler.
19039         
19040         * NumericUpDown.cs: Added new implementation.
19041         * UpDownBase.cs: Added new implementation.
19042
19043         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
19044         implementations.
19045         
19046         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
19047         implementations.
19048
19049         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
19050         methods.
19051
19052 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
19053
19054         * Timer.cs  (Dispose): Should call the base dispose when
19055         overriding.
19056
19057 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19058
19059         * ScrollBar.cs: updates thumb position when max, min or increment
19060         is changed
19061
19062 2004-11-21  Ravindra <rkumar@novell.com>
19063
19064         * ListView.cs: Implemented item selection, activation and
19065         column header style. Fixed properties to do a redraw, if
19066         required. Added support for MouseHover, DoubleClick, KeyDown
19067         and KeyUp event handling and some minor fixes.
19068         * ListViewItem.cs: Fixed constructor.
19069         * ThemeWin32Classic.cs: Improved drawing for ListView.
19070
19071 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19072
19073         * ThemeWin32Classic.cs: initial listbox drawing code
19074         * DrawMode.cs: new enumerator
19075         * ListControl.cs: stubbed class
19076         * ListBox.cs: initial implementation
19077         * Theme.cs: new methods definitions
19078         * SelectionMode.cs: new enumerator
19079
19080 2004-11-17  Peter Bartok  <pbartok@novell.com>
19081
19082         * XplatUIWin32.cs: Added double-click events to the class style
19083         * Control.cs (WndProc):
19084           - Added handling of click-count to MouseDown/ MouseUp events.
19085           - Added handling of middle and right mouse buttons
19086           - Removed old debug code
19087
19088 2004-11-17  Jackson Harper  <jackson@ximian.com>
19089
19090         * XplatUIX11.cs: Use the new Mono.Unix namespace.
19091
19092 2004-11-17  Ravindra <rkumar@novell.com>
19093
19094         * ListView.cs: Added event handling for MouseMove/Up/Down.
19095         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
19096         * ThemeWin32Classic.cs: We need to clear the graphics context and
19097         draw column header in a proper state.
19098
19099
19100 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
19101
19102         *  Menu.cs: fixes signature
19103
19104 2004-11-16  Peter Bartok  <pbartok@novell.com>
19105
19106         * XplatUIX11.cs (GetMessage): Implemented generation of
19107           double click mouse messages
19108
19109 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
19110
19111         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
19112         not by menu
19113
19114 2004-11-11  Peter Bartok  <pbartok@novell.com>
19115
19116         * HandleData.cs: Added Visible property
19117         * XplatUIX11.cs (IsVisible): Now uses Visible property from
19118           HandleData
19119         * XplatUIX11.cs: Removed old debug leftovers
19120         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
19121         * Control.cs (WndProc): Removed old debug leftovers,
19122           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
19123           needed WM_SIZE handling
19124
19125 2004-11-11  Jackson Harper  <jackson@ximian.com>
19126
19127         * OwnerDrawPropertyBag.cs:
19128         * TreeViewImageIndexConverter.cs: Initial implementation
19129
19130 2004-11-10  Jackson Harper  <jackson@ximian.com>
19131
19132         * ThemeWin32Classic.cs:
19133         * TabControl.cs: instead of moving tabs by the slider pos just
19134         start drawing at the tab that is offset by the slider. This way
19135         scrolling always moves by exactly one tab.
19136
19137 2004-11-10  Jackson Harper  <jackson@ximian.com>
19138
19139         * TabControl.cs: You can only scroll left when the slider has
19140         already ben moved right.
19141         
19142 2004-11-10  Jackson Harper  <jackson@ximian.com>
19143
19144         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
19145         the clip area.
19146         
19147 2004-11-10  Jackson Harper  <jackson@ximian.com>
19148
19149         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
19150         clip area.
19151         
19152 2004-11-09  Jackson Harper  <jackson@ximian.com>
19153
19154         * TabControl.cs (CalcXPos): New helper method so we can determine
19155         the proper place to start drawing vertical tabs.
19156         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
19157         
19158 2004-11-09  Jackson Harper  <jackson@ximian.com>
19159
19160         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
19161         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
19162         and Bottom, left and right are illegal values for this and
19163         multiline is enabled when the alignment is set to left or right.
19164         (DrawTab): Each alignment block should draw the text itself now
19165         because Left requires special love. Also add rendering for Left
19166         aligned tabs.
19167         
19168 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
19169
19170         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
19171         does not destroy the windows, removes debugging messages
19172
19173 2004-11-09  jba  <jba-mono@optusnet.com.au>
19174
19175         * ThemeWin32Classic.cs
19176         (DrawButtonBase): Fix verticle text rect clipping in windows
19177         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19178         rendering and incorrect text rect clipping
19179         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19180         rendering and incorrect text rect clipping
19181         
19182 2004-11-08  Jackson Harper  <jackson@ximian.com>
19183
19184         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
19185         bottom when they are bottom aligned so the bottoms of the tabs get
19186         displayed.
19187         * TabControl.cs (DropRow): Move rows up instead of down when the
19188         tab control is bottom aligned.
19189
19190 2004-11-08 13:59  pbartok
19191
19192         * XplatUIX11.cs:
19193           - Added handling for various window styles
19194           - Added handling for popup windows
19195           - Added SetTopmost handling
19196
19197 2004-11-08 13:55  pbartok
19198
19199         * XplatUIWin32.cs:
19200           - Added argument to SetTopmost method
19201           - Fixed broken ClientToScreen function
19202
19203 2004-11-08 13:53  pbartok
19204
19205         * XplatUIStructs.cs:
19206           - Added missing WS_EX styles
19207
19208 2004-11-08 13:53  pbartok
19209
19210         * XplatUI.cs, XplatUIDriver.cs:
19211           - Added argument to SetTopmost
19212
19213 2004-11-08 13:52  pbartok
19214
19215         * X11Structs.cs:
19216           - Added XSetWindowAttributes structure
19217           - Improved XWindowAttributes structure
19218           - Added SetWindowValuemask enum
19219           - Added window creation arguments enum
19220           - Added gravity enum
19221           - Added Motif hints structure
19222           - Added various Motif flags and enums
19223           - Added PropertyMode enum for property functions
19224
19225 2004-11-08 13:50  pbartok
19226
19227         * Form.cs:
19228           - Fixed arguments for updated SetTopmost method
19229
19230 2004-11-08 13:49  pbartok
19231
19232         * ToolTip.cs:
19233           - Fixed arguments for updated SetTopmost function
19234           - Fixed usage of PointToClient
19235
19236 2004-11-08 13:44  pbartok
19237
19238         * MenuAPI.cs:
19239           - Added Clipping of children and siblings
19240
19241 2004-11-08 13:41  pbartok
19242
19243         * MainMenu.cs:
19244           - Removed SetMenuBarWindow call. We do this in Form.cs
19245
19246 2004-11-08 13:40  jackson
19247
19248         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
19249           scrolling jimmi in the correct location with bottom aligned tabs
19250
19251 2004-11-08 13:36  pbartok
19252
19253         * ContainerControl.cs:
19254           - Implemented BindingContext
19255           - Implemented ParentForm
19256
19257 2004-11-08 12:46  jackson
19258
19259         * TabControl.cs: Put bottom rendered tabs in the right location
19260
19261 2004-11-08 07:15  jordi
19262
19263         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
19264           removes dead code
19265
19266 2004-11-05 17:30  jackson
19267
19268         * TabControl.cs: When selected tabs are expanded make sure they
19269           don't go beyond the edges of the tab control
19270
19271 2004-11-05 14:57  jackson
19272
19273         * TabControl.cs: Reset show_slider so if the control is resized to
19274           a size where it is no longer needed it's not displayed anymore
19275
19276 2004-11-05 13:16  jackson
19277
19278         * TabControl.cs: Make tab pages non visible when added to the
19279           control
19280
19281 2004-11-05 12:42  jackson
19282
19283         * TabControl.cs: Implement SizeMode.FillToRight
19284
19285 2004-11-05 12:16  jackson
19286
19287         * Control.cs: Do not call CreateHandle if the handle is already
19288           created
19289
19290 2004-11-05 11:46  jackson
19291
19292         * TabControl.cs: Remove superflous call to CalcTabRows
19293
19294 2004-11-05 09:07  jackson
19295
19296         * XplatUIX11.cs: Update for Mono.Posix changes
19297
19298 2004-11-05 07:00  ravindra
19299
19300         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
19301           scrolling.
19302
19303 2004-11-04 22:47  jba
19304
19305         * ThemeWin32Classic.cs:
19306           - Fix Button rendering for FlatStyle = Flat or Popup
19307           - Fix RadioButton and CheckBox rendering when Appearance = Button
19308             (normal and flatstyle).
19309           - Correct outer rectangle color when drawing focus rectangle
19310           - Adjust button bounds to be 1 px smaller when focused
19311           - Make button not draw sunken 3d border when pushed (windows compat)
19312           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
19313           - Offset the text in RadioButton and Checkbox when being rendered as
19314           a button.
19315           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
19316           radiobuttons
19317           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
19318           - Fixed disabled text rendering for normally rendered radiobuttons
19319
19320 2004-11-04 10:26  jackson
19321
19322         * TabControl.cs: Recalculate tab rows when resizing
19323
19324 2004-11-04 07:47  jordi
19325
19326         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
19327           collection completion, drawing issues, missing features
19328
19329 2004-11-04 05:03  ravindra
19330
19331         * ScrollBar.cs:
19332                 - We need to recalculate the Thumb area when
19333                 LargeChange/maximum/minimum values are changed.
19334           - We set the 'pos' in UpdatePos() method to minimum, if it's less
19335                 than minimum. This is required to handle the case if large_change is
19336                 more than max, and use LargeChange property instead of large_change
19337                 variable.
19338           - We return max+1 when large_change is more than max, like MS does.
19339
19340 2004-11-04 04:29  ravindra
19341
19342         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
19343                 - Changed default value signatures (prefixed all with ListView).
19344                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
19345                 ListView.
19346           - Fixed calculations for ListViewItem and implemented Clone()
19347           method.
19348
19349 2004-11-04 04:26  ravindra
19350
19351         * Theme.cs, ThemeWin32Classic.cs:
19352                 - Changed default ListView values signatures (prefixed all with
19353                 ListView).
19354           - Fixed default size values for VScrollBar and HScrollBar.
19355                 - Fixed DrawListViewItem method.
19356
19357 2004-11-04 04:05  ravindra
19358
19359         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
19360
19361 2004-11-04 04:04  ravindra
19362
19363         * ImageList.cs: Implemented the missing overload for Draw method.
19364
19365 2004-11-03 19:29  jackson
19366
19367         * TabControl.cs: Handle dropping rows on selection properly
19368
19369 2004-11-03 11:59  jackson
19370
19371         * TabControl.cs: remove debug code
19372
19373 2004-11-03 11:52  jackson
19374
19375         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
19376           the scrolly widgerywoo
19377
19378 2004-11-02 13:52  jackson
19379
19380         * TabControl.cs: Resize the tab pages and tabs when the tab control
19381           is resized
19382
19383 2004-11-02 13:40  jackson
19384
19385         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
19386           selected tab to the bottom
19387
19388 2004-11-02 13:39  jackson
19389
19390         * TabPage.cs: Store the tab pages row
19391
19392 2004-11-02 12:33  jordi
19393
19394         * MenuItem.cs: fixes handle creation
19395
19396 2004-11-02 11:42  jackson
19397
19398         * TabControl.cs: signature fix
19399
19400 2004-11-02 08:56  jackson
19401
19402         * TabControl.cs: Calculate whether the tab is on an edge properly.
19403           Remove top secret debugging code
19404
19405 2004-11-01 19:57  jackson
19406
19407         * TabControl.cs: Add click handling, and proper sizing
19408
19409 2004-11-01 19:47  jackson
19410
19411         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
19412           tab controls
19413
19414 2004-11-01 19:39  jackson
19415
19416         * TabPage.cs: add internal property to store the bounds of a tab
19417           page
19418
19419 2004-10-30 04:23  ravindra
19420
19421         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
19422           values.
19423
19424 2004-10-30 04:21  ravindra
19425
19426         * ListView.cs, ListViewItem.cs: Added support for scrolling and
19427           fixed calculations.
19428
19429 2004-10-30 03:06  pbartok
19430
19431         * XplatUIX11.cs:
19432           - Removed extension of DllImported libs
19433
19434 2004-10-29 09:55  jordi
19435
19436         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
19437           navigation, itemcollection completion, menu fixes
19438
19439 2004-10-27 22:58  pbartok
19440
19441         * XplatUIX11.cs:
19442           - Now throws a nice error message when no X display could be opened
19443
19444 2004-10-26 13:51  jordi
19445
19446         * ListView.cs: removes warning
19447
19448 2004-10-26 03:55  ravindra
19449
19450         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
19451           ThemeWin32Classic.cs: Some formatting for my last checkins.
19452
19453 2004-10-26 03:36  ravindra
19454
19455         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
19456           control and default values.
19457
19458 2004-10-26 03:35  ravindra
19459
19460         * Theme.cs: Added some default values for ListView control.
19461
19462 2004-10-26 03:33  ravindra
19463
19464         * ToolBar.cs: ToolBar should use the user specified button size, if
19465           there is any. Added a size_specified flag for the same.
19466
19467 2004-10-26 03:33  ravindra
19468
19469         * ColumnHeader.cs: Added some internal members and calculations for
19470           ColumnHeader.
19471
19472 2004-10-26 03:32  ravindra
19473
19474         * ListViewItem.cs: Calculations for ListViewItem.
19475
19476 2004-10-26 03:31  ravindra
19477
19478         * ListView.cs: Added some internal members and calculations for
19479           ListView.
19480
19481 2004-10-22 13:31  jordi
19482
19483         * MenuAPI.cs: speedup menus drawing
19484
19485 2004-10-22 13:16  jackson
19486
19487         * XplatUIX11.cs: Make sure to update exposed regions when adding an
19488           expose event
19489
19490 2004-10-22 11:49  jackson
19491
19492         * Control.cs: oops
19493
19494 2004-10-22 11:41  jackson
19495
19496         * Control.cs: Check to see if the window should have its background
19497           repainted by X when drawing.
19498
19499 2004-10-22 11:31  jackson
19500
19501         * XplatUIX11.cs: When invalidating areas only use XClearArea if
19502           clear is true, this way we do not get flicker from X repainting the
19503           background
19504
19505 2004-10-22 11:28  jackson
19506
19507         * XEventQueue.cs: Queue properly
19508
19509 2004-10-21 09:38  jackson
19510
19511         * XEventQueue.cs: Fix access modifier
19512
19513 2004-10-21 09:36  jackson
19514
19515         * XEventQueue.cs: Don't loose messages
19516
19517 2004-10-21 09:22  jackson
19518
19519         * XEventQueue.cs: Don't loose messages
19520
19521 2004-10-20 04:15  jordi
19522
19523         * BootMode.cs: enum need it by SystemInfo
19524
19525 2004-10-19 21:58  pbartok
19526
19527         * XplatUIWin32.cs:
19528           - Small sanity check
19529
19530 2004-10-19 21:56  pbartok
19531
19532         * Form.cs:
19533           - Added private FormParentWindow class which acts as the container
19534             for our form and as the non-client area where menus are drawn
19535           - Added/Moved required tie-ins to Jordi's menus
19536           - Fixed/Implemented the FormStartPosition functionality
19537
19538 2004-10-19 21:52  pbartok
19539
19540         * Control.cs:
19541           - Removed unneeded locals
19542           - Added code to all size and location properties to understand and
19543             deal with the parent container of Form
19544
19545 2004-10-19 21:33  pbartok
19546
19547         * Application.cs:
19548           - Fixed to deal with new Form subclasses for menus
19549
19550 2004-10-19 17:48  jackson
19551
19552         * XEventQueue.cs: commit correct version of file
19553
19554 2004-10-19 16:50  jackson
19555
19556         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
19557
19558 2004-10-19 16:15  jordi
19559
19560         * MenuAPI.cs: MenuBarCalcSize returns the height
19561
19562 2004-10-19 08:31  pbartok
19563
19564         * Control.cs:
19565           - Added missing call to PreProcessMessage before calling OnXXXKey
19566           methods
19567
19568 2004-10-19 00:04  ravindra
19569
19570         * ToolTip.cs: Fixed constructor.
19571
19572 2004-10-18 09:31  jordi
19573
19574         * MenuAPI.cs: menuitems in menubars do not have shortcuts
19575
19576 2004-10-18 09:26  jordi
19577
19578         * MenuItem.cs: fixes MenuItem class signature
19579
19580 2004-10-18 08:56  jordi
19581
19582         * MenuAPI.cs: prevents windows from showing in the taskbar
19583
19584 2004-10-18 00:28  ravindra
19585
19586         * ToolTip.cs: Suppressed a warning message.
19587
19588 2004-10-18 00:27  ravindra
19589
19590         * Control.cs: Default value of visible property must be true.
19591
19592 2004-10-17 23:19  pbartok
19593
19594         * ToolTip.cs:
19595           - Complete implementation
19596
19597 2004-10-17 23:19  pbartok
19598
19599         * XplatUIX11.cs:
19600           - Added EnableWindow method
19601           - Added SetModal stub
19602           - Added generation of WM_ACTIVATE message (still needs testing)
19603           - Added SetTopMost stub
19604           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
19605
19606 2004-10-17 23:17  pbartok
19607
19608         * XplatUIWin32.cs:
19609           - Removed VirtualKeys to XplatUIStructs
19610           - Implemented SetTopMost method
19611           - Implemented EnableWindow method
19612           - Bugfix in ScreenToClient()
19613           - Bugfixes in ClientToScreen()
19614
19615 2004-10-17 22:51  pbartok
19616
19617         * XplatUIStructs.cs:
19618           - Added WS_EX styles to WindowStyles enumeration
19619
19620 2004-10-17 22:50  pbartok
19621
19622         * XplatUI.cs, XplatUIDriver.cs:
19623           - Added method for enabling/disabling windows
19624           - Added method for setting window modality
19625           - Added method for setting topmost window
19626
19627 2004-10-17 22:49  pbartok
19628
19629         * ThemeWin32Classic.cs:
19630           - Added ToolTip drawing code
19631
19632 2004-10-17 22:49  pbartok
19633
19634         * Theme.cs:
19635           - Added ToolTip abstracts
19636
19637 2004-10-17 22:47  pbartok
19638
19639         * Form.cs:
19640           - Fixed Form.ControlCollection to handle owner relations
19641           - Added Owner/OwnedForms handling
19642           - Implemented Z-Ordering for owned forms
19643           - Removed unneeded private overload of ShowDialog
19644           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
19645             so I hope)
19646           - Fixed Close(), had wrong default
19647           - Added firing of OnLoad event
19648           - Added some commented out debug code for Ownership handling
19649
19650 2004-10-17 22:16  pbartok
19651
19652         * Control.cs:
19653           - Fixed/implemented flat list of controls
19654
19655 2004-10-17 22:14  pbartok
19656
19657         * Application.cs:
19658           - Added code to simulate modal dialogs on Win32
19659
19660 2004-10-17 16:11  jordi
19661
19662         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
19663           mouse event
19664
19665 2004-10-17 13:39  jordi
19666
19667         * MenuAPI.cs: menu drawing fixes
19668
19669 2004-10-15 09:10  ravindra
19670
19671         * StructFormat.cs: General Enum.
19672
19673 2004-10-15 09:09  ravindra
19674
19675         * SizeGripStyle.cs: Enum for Form.
19676
19677 2004-10-15 09:08  ravindra
19678
19679         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
19680           in Theme for ListView.
19681
19682 2004-10-15 09:06  ravindra
19683
19684         * ColumnHeader.cs: Flushing some formatting changes.
19685
19686 2004-10-15 09:05  ravindra
19687
19688         * ListViewItem.cs: Implemented GetBounds method and fixed coding
19689           style.
19690
19691 2004-10-15 09:03  ravindra
19692
19693         * ListView.cs: Implemented Paint method and fixed coding style.
19694
19695 2004-10-15 07:34  jordi
19696
19697         * MenuAPI.cs: fix for X11
19698
19699 2004-10-15 07:32  ravindra
19700
19701         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
19702                 - Renamed Paint() method to Draw() for clarity. Also, moved
19703                 DrawImage() to OnPaint().
19704
19705 2004-10-15 07:25  ravindra
19706
19707         * CheckBox.cs, RadioButton.cs:
19708                 - Removed Redraw (), we get it from ButtonBase.
19709                 - Implemented Paint (), to do class specific painting.
19710
19711 2004-10-15 07:16  ravindra
19712
19713         * ButtonBase.cs:
19714                 - Redraw () is not virtual now.
19715                 - Added an internal virtual method Paint (), so that
19716                 derived classes can do their painting on their own.
19717                 - Modified OnPaint () to call Paint ().
19718
19719 2004-10-15 06:43  jordi
19720
19721         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
19722           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
19723
19724 2004-10-15 00:30  ravindra
19725
19726         * MessageBox.cs:
19727                 - MessageBox on windows does not have min/max buttons.
19728                 This change in CreateParams fixes this on Windows. We
19729                 still need to implement this windowstyle behavior in
19730                 our X11 driver.
19731
19732 2004-10-14 05:14  ravindra
19733
19734         * ToolBar.cs:
19735                 - Changed Redraw () to do a Refresh () always.
19736                 - Fixed the MouseMove event handling when mouse is pressed,
19737                 ie drag event handling.
19738                 - Replaced the usage of ToolBarButton.Pressed property to
19739                 ToolBarButton.pressed internal variable.
19740
19741 2004-10-14 05:10  ravindra
19742
19743         * ToolBarButton.cs:
19744                 - Added an internal member 'inside' to handle mouse move
19745                 with mouse pressed ie mouse drag event.
19746                 - Changed 'Pressed' property to return true only when
19747                 'inside' and 'pressed' are both true.
19748                 - Some coding style love.
19749
19750 2004-10-14 00:17  ravindra
19751
19752         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
19753           public method.
19754
19755 2004-10-14 00:15  ravindra
19756
19757         * ButtonBase.cs: Redraw () related improvements.
19758
19759 2004-10-14 00:14  ravindra
19760
19761         * MessageBox.cs: Moved InitFormSize () out of Paint method and
19762           removed unnecessary calls to Button.Show () method.
19763
19764 2004-10-13 17:50  pbartok
19765
19766         * XplatUIX11.cs:
19767           - Formatting fix
19768           - Removed destroying of window until we solve the problem of X
19769             destroying the window before us on shutdown
19770
19771 2004-10-13 16:32  pbartok
19772
19773         * ButtonBase.cs:
19774           - Now Redraws on MouseUp for FlatStyle Flat and Popup
19775
19776 2004-10-13 14:18  pbartok
19777
19778         * XplatUIX11.cs:
19779           - Added code to destroy the X window
19780
19781 2004-10-13 14:18  pbartok
19782
19783         * XplatUIWin32.cs:
19784           - Added code to destroy a window
19785
19786 2004-10-13 14:12  pbartok
19787
19788         * ButtonBase.cs:
19789           - Added the Redraw on Resize that got dropped in the last rev
19790
19791 2004-10-13 09:06  pbartok
19792
19793         * ThemeWin32Classic.cs:
19794           - Path from John BouAntoun:
19795             * Fix check rendering (centre correctly for normal style, offset
19796               correctly for FlatStyle).
19797             * Fix border color usage (use backcolor) for FlatStyle.Popup
19798             * Use checkbox.Capture instead of checkbox.is_pressed when
19799               rendering flatstyle states.
19800
19801 2004-10-12 21:48  pbartok
19802
19803         * ThemeWin32Classic.cs:
19804           - Removed all occurences of SystemColors and replaced them with the
19805             matching theme color
19806
19807 2004-10-12 21:41  pbartok
19808
19809         * ThemeWin32Classic.cs:
19810           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
19811             him using the function for flatstyle drawing
19812           - Changed functions to use the new version of CPDrawBorder3D
19813
19814 2004-10-12 21:15  pbartok
19815
19816         * ControlPaint.cs:
19817           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
19818             match MS documentation. They need to return defined colors if the
19819             passed color matches the configured control color. Thanks to John
19820             BouAntoun for pointing this out.
19821
19822 2004-10-12 20:57  pbartok
19823
19824         * Control.cs:
19825           - Fix from John BouAntoun: Raise ForeColorChanged event when text
19826             color is changed
19827
19828 2004-10-12 20:46  pbartok
19829
19830         * CheckBox.cs:
19831           - Fix from John BouAntoun: Now properly sets the Appearance property
19832
19833 2004-10-12 20:45  pbartok
19834
19835         * ThemeWin32Classic.cs:
19836           - Fixes from John BouAntoun: now handles forecolors and backcolors
19837             for flatstyle rendered controls much better; It also fixes normal
19838             checkbox rendering when pushed or disabled.
19839
19840 2004-10-08 02:50  jordi
19841
19842         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
19843           work
19844
19845 2004-10-07 08:56  jordi
19846
19847         * ThemeWin32Classic.cs: Removes deletion of cached brushes
19848
19849 2004-10-06 03:59  jordi
19850
19851         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
19852           XplatUIWin32.cs: removes warnings from compilation
19853
19854 2004-10-05 12:23  jackson
19855
19856         * RadioButton.cs: Fix ctor
19857
19858 2004-10-05 11:10  pbartok
19859
19860         * MessageBox.cs:
19861           - Partial implementation by Benjamin Dasnois
19862
19863 2004-10-05 10:15  jackson
19864
19865         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
19866           by John BouAntoun
19867
19868 2004-10-05 03:07  ravindra
19869
19870         * ToolBar.cs:
19871                 - Removed a private method, Draw ().
19872                 - Fixed the ButtonDropDown event handling.
19873                 - Fixed MouseMove event handling.
19874
19875 2004-10-05 03:04  ravindra
19876
19877         * ThemeWin32Classic.cs:
19878                 - Added DrawListView method and ListViewDefaultSize property.
19879                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
19880                 - Changed DOS style CRLF to Unix format (dos2unix).
19881
19882 2004-10-05 03:03  ravindra
19883
19884         * Theme.cs:
19885                 - Added DrawListView method and ListViewDefaultSize property.
19886
19887 2004-10-05 02:42  ravindra
19888
19889         * ToolBarButton.cs: Added an internal member dd_pressed to handle
19890           clicks on DropDown arrow.
19891
19892 2004-10-04 22:56  jackson
19893
19894         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
19895           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
19896           Control handle the buffers, derived classes should not have to
19897           CreateBuffers themselves.
19898
19899 2004-10-04 21:20  jackson
19900
19901         * StatusBar.cs: The control handles resizing the buffers now.
19902
19903 2004-10-04 21:18  jackson
19904
19905         * Control.cs: When resizing the buffers should be invalidated. This
19906           should be handled in Control not in derived classes.
19907
19908 2004-10-04 14:45  jackson
19909
19910         * TabPage.cs: oops
19911
19912 2004-10-04 02:14  pbartok
19913
19914         * LeftRightAlignment.cs:
19915           - Initial check-in
19916
19917 2004-10-04 01:09  jordi
19918
19919         * ThemeWin32Classic.cs: fixes right button position causing right
19920           button not showing on horizontal scrollbars
19921
19922 2004-10-02 13:12  pbartok
19923
19924         * XplatUIX11.cs:
19925           - Simplified the Invalidate method by using an X call instead of
19926             generating the expose ourselves
19927           - Added an expose when the window background is changed
19928           - Implemented ClientToScreen method
19929
19930 2004-10-02 13:08  pbartok
19931
19932         * XplatUIWin32.cs:
19933           - Added Win32EnableWindow method (test for implementing modal
19934           dialogs)
19935           - Added ClientToScreen method and imports
19936
19937 2004-10-02 13:07  pbartok
19938
19939         * XplatUI.cs, XplatUIDriver.cs:
19940           - Added ClientToScreen coordinate translation method
19941
19942 2004-10-02 13:06  pbartok
19943
19944         * KeyPressEventArgs.cs:
19945           - Fixed access level for constructor
19946
19947 2004-10-02 13:06  pbartok
19948
19949         * NativeWindow.cs:
19950           - Changed access level for the window_collection hash table
19951
19952 2004-10-02 13:05  pbartok
19953
19954         * Form.cs:
19955           - Added KeyPreview property
19956           - Added Menu property (still incomplete, pending Jordi's menu work)
19957           - Implemented ProcessCmdKey
19958           - Implemented ProcessDialogKey
19959           - Implemented ProcessKeyPreview
19960
19961 2004-10-02 13:02  pbartok
19962
19963         * Control.cs:
19964           - Added private method to get the Control object from the window
19965           handle
19966           - Implemented ContextMenu property
19967           - Implemented PointToScreen
19968           - Implemented PreProcessMessage
19969           - Implemented IsInputChar
19970           - Implemented IsInputKey
19971           - Implemented ProcessCmdKey
19972           - Completed ProcessKeyEventArgs
19973           - Fixed message loop to call the proper chain of functions on key
19974           events
19975           - Implemented ProcessDialogChar
19976           - Implemented ProcessDialogKey
19977           - Implemented ProcessKeyMessage
19978           - Implemented ProcessKeyPreview
19979           - Added RaiseDragEvent stub (MS internal method)
19980           - Added RaiseKeyEvent stub (MS internal method)
19981           - Added RaiseMouseEvent stub (MS Internal method)
19982           - Added RaisePaintEvent stub (MS Internal method)
19983           - Added ResetMouseEventArgs stub (MS Internal method)
19984           - Implemented RtlTranslateAlignment
19985           - Implemented RtlTranslateContent
19986           - Implemented RtlTranslateHorizontal
19987           - Implemented RtlTranslateLeftRight
19988           - Added generation of KeyPress event
19989
19990 2004-10-02 05:57  ravindra
19991
19992         * ListViewItem.cs: Added attributes.
19993
19994 2004-10-02 05:32  ravindra
19995
19996         * ListView.cs: Added attributes.
19997
19998 2004-10-01 11:53  jackson
19999
20000         * Form.cs: Implement the Close method so work on MessageBox can
20001           continue.
20002
20003 2004-09-30 14:06  pbartok
20004
20005         * XplatUIX11.cs:
20006           - Bug fixes
20007
20008 2004-09-30 11:34  jackson
20009
20010         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
20011
20012 2004-09-30 07:26  ravindra
20013
20014         * ListViewItemConverter.cs: Converter for ListViewItem.
20015
20016 2004-09-30 07:26  ravindra
20017
20018         * SortOrder.cs: Enum for ListView control.
20019
20020 2004-09-30 07:25  ravindra
20021
20022         * ColumnHeader.cs: Supporting class for ListView control.
20023
20024 2004-09-30 07:24  ravindra
20025
20026         * ListView.cs, ListViewItem.cs: Initial implementation.
20027
20028 2004-09-30 07:20  ravindra
20029
20030         * ItemActivation.cs: Enum for ListView Control.
20031
20032 2004-09-29 20:29  pbartok
20033
20034         * XplatUIX11.cs:
20035           - Added lookup of pixel value for background color; tries to get a
20036             color 'close' to the requested color, it avoids having to create a
20037             colormap.  Depending on the display this could mean the used color
20038             is slightly off the desired color. Might have to change it to a more
20039             resource intensive colormap approach, but it will work as a
20040           workaround to avoid red screens.
20041
20042 2004-09-29 14:27  jackson
20043
20044         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
20045
20046 2004-09-28 12:44  pbartok
20047
20048         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
20049           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
20050           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
20051           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
20052           TrackBar.cs, VScrollBar.cs:
20053           - Streamlined Theme interfaces:
20054             * Each DrawXXX method for a control now is passed the object for
20055               the control to be drawn in order to allow accessing any state the
20056               theme might require
20057
20058             * ControlPaint methods for the theme now have a CP prefix to avoid
20059               name clashes with the Draw methods for controls
20060
20061             * Every control now retrieves it's DefaultSize from the current
20062             theme
20063
20064 2004-09-28 12:17  jackson
20065
20066         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
20067           drawing
20068
20069 2004-09-24 14:57  jackson
20070
20071         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
20072           Gives us a nice little performance boost.
20073
20074 2004-09-24 12:02  jackson
20075
20076         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
20077           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
20078           Control and supporting classes. Initial checkin
20079
20080 2004-09-23 13:08  jackson
20081
20082         * Form.cs: Temp build fixage
20083
20084 2004-09-23 01:39  ravindra
20085
20086         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
20087           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
20088           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
20089           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
20090           EventHandlers needed by ListView Control.
20091
20092 2004-09-22 14:12  pbartok
20093
20094         * ScrollableControl.cs:
20095           - Implemented DockPadding property
20096           - Implemented AutoScroll property
20097           - Implemented AutoScrollMargin property
20098           - Implemented AutoScrollMinSize property
20099           - Implemented AutoScrollPosition property
20100           - Implemented DisplayRectangle property (still incomplete)
20101           - Implemented CreateParams property
20102           - Implemented HScroll property
20103           - Implemented VScroll property
20104           - Implemented OnVisibleChanged property
20105
20106 2004-09-22 14:09  pbartok
20107
20108         * Form.cs:
20109           - Added Form.ControllCollection class
20110           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
20111             RemoveOwnedForm (still incomplete, missing on-top and common
20112             minimize/maximize behaviour)
20113           - Added StartPosition property (still incomplete, does not use when
20114             creating the form)
20115           - Added ShowDialog() methods (still incomplete, missing forcing the
20116             dialog modal)
20117
20118 2004-09-22 14:05  pbartok
20119
20120         * Application.cs:
20121           - Added message loop for modal dialogs
20122
20123 2004-09-22 14:02  pbartok
20124
20125         * GroupBox.cs:
20126           - Fixed wrong types for events
20127
20128 2004-09-22 14:00  pbartok
20129
20130         * Shortcut.cs, FormWindowState.cs:
20131           - Fixed wrong values
20132
20133 2004-09-22 12:01  jackson
20134
20135         * Control.cs: Text is never null
20136
20137 2004-09-20 22:14  pbartok
20138
20139         * XplatUIWin32.cs:
20140           - Fixed accessibility level for Idle handler
20141
20142 2004-09-20 18:54  jackson
20143
20144         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20145           XplatUIX11.cs: New message loop that uses poll so we don't get a
20146           busy loop
20147
20148 2004-09-17 10:43  pbartok
20149
20150         * ScrollBar.cs:
20151           - Fixed behaviour of arrow buttons. Now properly behaves like
20152             Buttons (and like Microsoft's scrollbar arrow buttons)
20153
20154 2004-09-17 10:14  pbartok
20155
20156         * ScrollBar.cs:
20157           - Added missing release of keyboard/mouse capture
20158
20159 2004-09-17 06:18  jordi
20160
20161         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
20162           Theme.cs: Very early menu support
20163
20164 2004-09-16 17:45  pbartok
20165
20166         * XplatUIWin32.cs:
20167           - Fixed sending a window to the front
20168           - Added overload for SetWindowPos to avoid casting
20169
20170 2004-09-16 17:44  pbartok
20171
20172         * Control.cs:
20173           - Added SendToBack and BringToFront methods
20174
20175 2004-09-16 07:00  ravindra
20176
20177         * Copyright: Added Novell URL.
20178
20179 2004-09-16 07:00  ravindra
20180
20181         * ToolBar.cs: Invalidate should be done before redrawing.
20182
20183 2004-09-15 21:19  ravindra
20184
20185         * ColumnHeaderStyle.cs: Enum for ListView Control.
20186
20187 2004-09-15 21:18  ravindra
20188
20189         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
20190           ListView Control.
20191
20192 2004-09-13 18:26  jackson
20193
20194         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
20195           properly
20196
20197 2004-09-13 18:13  jackson
20198
20199         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
20200           a second thread and post messages into the main threads message
20201           queue. This makes timing much more consistent. Both win2K and XP
20202           have a minimum timer value of 15 milliseconds, so we now do this
20203           too.
20204
20205 2004-09-13 15:18  pbartok
20206
20207         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20208           XplatUIX11.cs:
20209           - Added Z-Ordering methods
20210
20211 2004-09-13 10:56  pbartok
20212
20213         * Form.cs:
20214           - Fixed #region names
20215           - Moved properties and methods into their proper #regions
20216
20217 2004-09-13 10:51  pbartok
20218
20219         * Form.cs:
20220           - Added Accept and CancelButton properties
20221           - Added ProcessDialogKey() method
20222
20223 2004-09-13 08:18  pbartok
20224
20225         * IWindowTarget.cs:
20226           - Initial check-in
20227
20228 2004-09-10 21:50  pbartok
20229
20230         * Control.cs:
20231           - Added DoDragDrop() [incomplete]
20232           - Properly implemented 'Visible' handling
20233           - Added SetVisibleCore()
20234           - Implemented FindChildAtPoint()
20235           - Implemented GetContainerControl()
20236           - Implemented Hide()
20237
20238 2004-09-10 19:28  pbartok
20239
20240         * Control.cs:
20241           - Moved methods into their appropriate #regions
20242           - Reordered methods within regions alphabetically
20243
20244 2004-09-10 18:57  pbartok
20245
20246         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20247           - Added method to retrieve text from window
20248
20249 2004-09-10 18:56  pbartok
20250
20251         * Control.cs:
20252           - Moved some internal functions into the internal region
20253           - Implemented FontHeight
20254           - Implemented RenderRightToLeft
20255           - Implemented ResizeRedraw
20256           - Implemented ShowFocusCues
20257           - Implemented ShowKeyboardCues
20258           - Implemented FromChildHandle
20259           - Implemented FromHandle
20260           - Implemented IsMnemonic
20261           - Implemented ReflectMessage
20262           - All public and protected Static Methods are now complete
20263
20264 2004-09-10 16:54  pbartok
20265
20266         * Control.cs:
20267           - Implemented remaining missing public instance properties
20268           - Alphabetized some out of order properties
20269
20270 2004-09-10 05:51  ravindra
20271
20272         * PictureBox.cs: Added a check for null image.
20273
20274 2004-09-10 00:59  jordi
20275
20276         * GroupBox.cs: remove cvs tag
20277
20278 2004-09-09 05:25  ravindra
20279
20280         * ToolBar.cs: Make redraw accessible from ToolBarButton.
20281
20282 2004-09-09 05:23  ravindra
20283
20284         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
20285           parent redraw.
20286
20287 2004-09-09 02:28  pbartok
20288
20289         * ThemeWin32Classic.cs:
20290           - Improve disabled string look
20291
20292 2004-09-09 01:15  jordi
20293
20294         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
20295           args and handler
20296
20297 2004-09-08 23:56  ravindra
20298
20299         * ItemBoundsPortion.cs: It's enum, not a class!
20300
20301 2004-09-08 23:47  ravindra
20302
20303         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
20304           Enums for Form.
20305
20306 2004-09-08 21:13  ravindra
20307
20308         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
20309           ListView control.
20310
20311 2004-09-08 21:03  ravindra
20312
20313         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
20314           avoid crash.
20315
20316 2004-09-08 21:01  ravindra
20317
20318         * ScrollableControl.cs: Removed unreachable code.
20319
20320 2004-09-08 06:45  jordi
20321
20322         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
20323
20324 2004-09-08 01:00  jackson
20325
20326         * XplatUIX11.cs: Only run the timers when updating the message
20327           queue. This effectively gives X messages a higher priority then
20328           timer messages. Timers still need love though
20329
20330 2004-09-07 14:01  jackson
20331
20332         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
20333           this for us and the handle is no longer valid.
20334
20335 2004-09-07 13:59  jackson
20336
20337         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
20338           loop that manages to not crash. TODO: Add poll and cleanup timers
20339
20340 2004-09-07 11:12  jordi
20341
20342         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
20343
20344 2004-09-07 03:40  jordi
20345
20346         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
20347           fixes, methods, multiple links
20348
20349 2004-09-06 06:55  jordi
20350
20351         * Control.cs: Caches ClientRectangle rectangle value
20352
20353 2004-09-05 02:03  jordi
20354
20355         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
20356           certain situations
20357
20358 2004-09-04 11:10  jordi
20359
20360         * Label.cs: Refresh when font changed
20361
20362 2004-09-02 16:24  pbartok
20363
20364         * Control.cs:
20365           - Added sanity check to creation of double buffer bitmap
20366
20367 2004-09-02 16:24  pbartok
20368
20369         * ButtonBase.cs:
20370           - Fixed selection of text color
20371           - Fixed handling of resize event; now properly recreates double
20372             buffering bitmap
20373           - Added missing assignment of TextAlignment
20374           - Added proper default for TextAlignment
20375
20376 2004-09-02 14:26  pbartok
20377
20378         * RadioButton.cs:
20379           - Added missing RadioButton.RadioButtonAccessibleObject class
20380
20381 2004-09-02 14:26  pbartok
20382
20383         * Control.cs:
20384           - Added missing Control.ControlAccessibleObject class
20385           - Started to implement Select()ion mechanisms, still very incomplete
20386
20387 2004-09-02 14:25  pbartok
20388
20389         * AccessibleObject.cs:
20390           - Added missing methods
20391
20392 2004-09-02 14:23  pbartok
20393
20394         * AccessibleNavigation.cs, AccessibleSelection.cs:
20395           - Initial check-in
20396
20397 2004-09-02 10:32  jordi
20398
20399         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
20400           pool for pens, brushes, and hatchbruses
20401
20402 2004-09-01 15:30  jackson
20403
20404         * StatusBar.cs: Fix typo
20405
20406 2004-09-01 14:44  pbartok
20407
20408         * RadioButton.cs:
20409           - Fixed state
20410
20411 2004-09-01 14:39  pbartok
20412
20413         * Button.cs, RadioButton.cs:
20414           - Functional initial check-in
20415
20416 2004-09-01 14:01  pbartok
20417
20418         * CheckBox.cs:
20419           - Added missing default
20420           - Added missing region mark
20421
20422 2004-09-01 09:10  jordi
20423
20424         * Label.cs: fixes method signatures, new methods, events, fixes
20425           autosize
20426
20427 2004-09-01 07:19  jordi
20428
20429         * Control.cs: Init string variables with an empty object
20430
20431 2004-09-01 04:20  jordi
20432
20433         * Control.cs: fires OnFontChanged event
20434
20435 2004-08-31 20:07  pbartok
20436
20437         * ButtonBase.cs:
20438           - Enabled display of strings
20439
20440 2004-08-31 20:05  pbartok
20441
20442         * Form.cs:
20443           - Added (partial) implementation of DialogResult; rest needs to be
20444             implemented when the modal loop code is done
20445
20446 2004-08-31 19:55  pbartok
20447
20448         * CheckBox.cs:
20449           - Fixed to match the removal of the needs_redraw concept
20450
20451 2004-08-31 19:55  pbartok
20452
20453         * ButtonBase.cs:
20454           - Removed the rather odd split between 'needs redraw' and redrawing
20455           - Now handles the events that require regeneration (ambient
20456             properties and size)
20457
20458 2004-08-31 19:41  pbartok
20459
20460         * Control.cs:
20461           - Added firing of BackColorChanged event
20462           - Added TopLevelControl property
20463           - Fixed handling of WM_ERASEBKGRND message
20464
20465 2004-08-31 12:49  pbartok
20466
20467         * ButtonBase.cs:
20468           - Removed debug
20469           - Minor fixes
20470
20471 2004-08-31 12:48  pbartok
20472
20473         * CheckBox.cs:
20474           - Finished (famous last words)
20475
20476 2004-08-31 04:35  jordi
20477
20478         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
20479           scrolling bugs, adds new methods
20480
20481 2004-08-30 14:42  pbartok
20482
20483         * CheckBox.cs:
20484           - Implemented CheckBox drawing code
20485
20486 2004-08-30 14:42  pbartok
20487
20488         * ButtonBase.cs:
20489           - Made Redraw() and CheckRedraw() virtual
20490           - Improved mouse up/down/move logic to properly track buttons
20491
20492 2004-08-30 09:44  pbartok
20493
20494         * CheckBox.cs:
20495           - Updated to fix broken build. Not complete yet.
20496
20497 2004-08-30 09:28  pbartok
20498
20499         * CheckState.cs:
20500           - Initial checkin
20501
20502 2004-08-30 09:17  pbartok
20503
20504         * Appearance.cs:
20505           - Initial check-in
20506
20507 2004-08-27 16:12  ravindra
20508
20509         * ToolBarButton.cs: Added TypeConverter attribute.
20510
20511 2004-08-27 16:07  ravindra
20512
20513         * ImageIndexConverter.cs: Implemented.
20514
20515 2004-08-27 14:17  pbartok
20516
20517         * Control.cs:
20518           - Removed unneeded stack vars
20519           - First attempt to fix sizing issues when layout is suspended
20520
20521 2004-08-25 15:35  jordi
20522
20523         * ScrollBar.cs: more fixes to scrollbar
20524
20525 2004-08-25 14:04  ravindra
20526
20527         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
20528           Added the missing divider code and grip for ToolBar Control.
20529
20530 2004-08-25 13:20  pbartok
20531
20532         * Control.cs:
20533           - Control now properly passes the ambient background color to child
20534             controls
20535
20536 2004-08-25 13:20  jordi
20537
20538         * ScrollBar.cs: small bug fix regarding bar position
20539
20540 2004-08-25 12:33  pbartok
20541
20542         * Timer.cs:
20543           - Now only calls SetTimer or KillTimer if the enabled state has
20544           changed
20545
20546 2004-08-25 12:33  pbartok
20547
20548         * XplatUIWin32.cs:
20549           - Fixed timer handling, now seems to work
20550           - Improved error message for window creation
20551
20552 2004-08-25 12:32  pbartok
20553
20554         * Control.cs:
20555           - Fixed generation of MouseUp message
20556
20557 2004-08-25 12:29  jordi
20558
20559         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
20560           and fixes for progressbar
20561
20562 2004-08-24 18:43  ravindra
20563
20564         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
20565           in ToolBar control.
20566
20567 2004-08-24 17:15  pbartok
20568
20569         * Panel.cs:
20570           - Added #region
20571           - Added missing events
20572           - Alphabetized
20573
20574 2004-08-24 17:14  pbartok
20575
20576         * StatusBar.cs, PictureBox.cs:
20577           - Now uses Control's CreateParams
20578
20579 2004-08-24 16:36  pbartok
20580
20581         * XplatUIX11.cs:
20582           - Fixed background color handling
20583           - Fixed sending of enter/leave events on a grab
20584
20585 2004-08-24 16:35  pbartok
20586
20587         * X11Structs.cs:
20588           - Refined definitions for CrossingEvent
20589
20590 2004-08-24 12:37  jordi
20591
20592         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
20593           formmating, methods signature, and adds missing events
20594
20595 2004-08-24 12:24  jordi
20596
20597         * Control.cs: fire OnEnabledChanged event
20598
20599 2004-08-24 11:17  pbartok
20600
20601         * XplatUIWin32.cs:
20602           - Implemented SetTimer() and KillTimer()
20603
20604 2004-08-24 11:16  pbartok
20605
20606         * XplatUIX11.cs:
20607           - Now uses Remove instead of Add to kill the timer
20608
20609 2004-08-24 10:16  jackson
20610
20611         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
20612           picture boxes in the theme now. Draw picture box borders and obey
20613           sizing modes
20614
20615 2004-08-24 05:49  jackson
20616
20617         * Timer.cs: Remove top secret debugging code
20618
20619 2004-08-24 05:34  jackson
20620
20621         * PictureBox.cs: Temp hack to make picture boxes draw their full
20622           image
20623
20624 2004-08-24 05:29  jackson
20625
20626         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20627           XplatUIX11.cs: Move timers to the driver level. On X they are
20628           queued by the driver and checked on idle.
20629
20630 2004-08-24 01:07  jackson
20631
20632         * XplatUIX11.cs: Use a queue for async messages instead of passing
20633           them as ClientMessages since that was totally broken. Also simply
20634           check for events and return an idle message if none are found. This
20635           gives us an idle handler, and prevents deadlocking when no messages
20636           are in the queue.
20637
20638 2004-08-23 18:19  ravindra
20639
20640         * XplatUIWin32.cs: Removed the unwanted destructor.
20641
20642 2004-08-23 17:27  pbartok
20643
20644         * ButtonBase.cs:
20645           - Finishing touches. Works now, just needs some optimizations.
20646
20647 2004-08-23 16:53  jordi
20648
20649         * ScrollBar.cs: small fix
20650
20651 2004-08-23 16:45  pbartok
20652
20653         * Application.cs:
20654           - Removed debug output
20655           - Simplifications
20656
20657 2004-08-23 16:43  jordi
20658
20659         * ScrollBar.cs: [no log message]
20660
20661 2004-08-23 16:10  pbartok
20662
20663         * Form.cs:
20664           - Fixed handling of WM_CLOSE message
20665           - Removed debug output
20666
20667 2004-08-23 16:09  pbartok
20668
20669         * Application.cs:
20670           - Added handling of Idle event
20671           - Added handling of form closing
20672           - Fixed reporting of MessageLoop property
20673           - Removed some unneeded code, should provide a bit of a speedup
20674
20675 2004-08-23 15:22  pbartok
20676
20677         * Control.cs:
20678           - Added InitLayout() method
20679           - Added code to properly perform layout when Anchor or Dock property
20680             is changed
20681           - Changed 'interpretation' of ResumeLayout. MS seems to have a
20682             LAMESPEC, tried to do it in a way that makes sense
20683
20684 2004-08-23 14:10  jordi
20685
20686         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
20687           properties and methods
20688
20689 2004-08-23 13:55  pbartok
20690
20691         * Control.cs:
20692           - Properly fixed Jordi's last fix
20693           - Now uses Cursor's Position property instead of calling XplatUI
20694           directly
20695
20696 2004-08-23 13:44  jordi
20697
20698         * PaintEventHandler.cs: Adding missing attribute
20699
20700 2004-08-23 13:39  pbartok
20701
20702         * Cursor.cs:
20703           - Implemented Position property
20704
20705 2004-08-23 13:39  pbartok
20706
20707         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20708           - Added method to move mouse cursor
20709
20710 2004-08-23 13:39  pbartok
20711
20712         * XplatUIX11.cs:
20713           - Fixed setting of background color
20714           - Added method to move mouse cursor
20715
20716 2004-08-23 13:16  jordi
20717
20718         * Control.cs: avoids null exception
20719
20720 2004-08-22 17:46  jackson
20721
20722         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
20723           PictureBox
20724
20725 2004-08-22 17:40  jackson
20726
20727         * XplatUIX11.cs: Add some missing locks
20728
20729 2004-08-22 15:10  pbartok
20730
20731         * Control.cs, Form.cs:
20732           - Removed OverlappedWindow style from Control, instead it's default
20733             now is child
20734           - Made form windows OverlappedWindow by default
20735
20736 2004-08-22 13:34  jackson
20737
20738         * ScrollBar.cs: Update the position through the Value property so
20739           the OnValueChanged event is raised.
20740
20741 2004-08-22 12:04  pbartok
20742
20743         * SWF.csproj:
20744           - Added Cursor.cs and UserControl.cs
20745
20746 2004-08-22 12:03  pbartok
20747
20748         * Cursor.cs:
20749           - Started implementation, not usable yet
20750
20751 2004-08-22 12:00  pbartok
20752
20753         * UserControl.cs:
20754           - Implemented UserControl (complete)
20755
20756 2004-08-21 19:20  ravindra
20757
20758         * ToolBar.cs: Correcting the formatting mess of VS.NET.
20759
20760 2004-08-21 18:49  ravindra
20761
20762         * ToolBar.cs: Probably this completes the missing attributes in
20763           toolbar control.
20764
20765 2004-08-21 18:03  ravindra
20766
20767         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
20768           Fixed toolbar control signatures.
20769
20770 2004-08-21 16:32  pbartok
20771
20772         * LinkLabel.cs:
20773           - Signature Fixes
20774
20775 2004-08-21 16:30  pbartok
20776
20777         * Label.cs:
20778           - Signature fixes
20779
20780 2004-08-21 16:19  pbartok
20781
20782         * Control.cs, Label.cs:
20783           - Signature fixes
20784
20785 2004-08-21 15:57  pbartok
20786
20787         * ButtonBase.cs:
20788           - Added loads of debug output for development
20789           - Fixed typo in method name
20790
20791 2004-08-21 15:52  pbartok
20792
20793         * ToolBarButtonClickEventArgs.cs:
20794           - Added missing base class
20795
20796 2004-08-21 14:53  pbartok
20797
20798         * Control.cs:
20799           - Updated to match new GrabWindow signature
20800
20801 2004-08-21 14:51  pbartok
20802
20803         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20804           - Added method to get default display size
20805
20806 2004-08-21 14:23  pbartok
20807
20808         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20809           - Added method to query current grab state
20810           - Added argument to allow confining a grab to a window
20811
20812 2004-08-21 14:22  pbartok
20813
20814         * Keys.cs:
20815           - Added [Flags] attribute so that modifiers can be used in bitwise
20816           ops
20817
20818 2004-08-21 14:21  pbartok
20819
20820         * TrackBar.cs, ScrollBar.cs:
20821           - Replaced direct XplatUI calls with their Control counterpart
20822
20823 2004-08-21 13:32  pbartok
20824
20825         * Control.cs:
20826           - Implemented Created property
20827
20828 2004-08-21 13:28  pbartok
20829
20830         * Control.cs:
20831           - Implemented ContainsFocus
20832
20833 2004-08-21 13:26  pbartok
20834
20835         * Control.cs:
20836           - Implemented CausesValidation
20837
20838 2004-08-21 13:21  pbartok
20839
20840         * Control.cs:
20841           - Implemented CanFocus
20842           - Implemented CanSelect
20843           - Implemented Capture
20844
20845 2004-08-21 12:35  pbartok
20846
20847         * XplatUIWin32.cs:
20848           - Fixed bug with Async message handling
20849           - Implemented getting the ModifierKeys
20850
20851 2004-08-21 12:32  jackson
20852
20853         * AsyncMethodResult.cs: Make sure we have the mutex before we
20854           release it. Fixes BeginInvoke on windows
20855
20856 2004-08-21 11:31  pbartok
20857
20858         * XplatUIWin32.cs, XplatUIX11.cs:
20859           - Drivers now return proper mouse state
20860
20861 2004-08-21 10:54  jackson
20862
20863         * Control.cs: Implement EndInvoke
20864
20865 2004-08-21 10:48  jackson
20866
20867         * Timer.cs: Remove unneeded finalizer
20868
20869 2004-08-20 19:52  ravindra
20870
20871         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
20872           in mouse event handling in the ToolBar control.
20873
20874 2004-08-20 19:50  ravindra
20875
20876         * ImageList.cs: Changed draw method to use the arguments passed in
20877           to draw the image.
20878
20879 2004-08-20 18:58  pbartok
20880
20881         * XplatUIStructs.cs:
20882           - Added private message for async communication
20883
20884 2004-08-20 17:38  ravindra
20885
20886         * Control.cs: Made RightToLeft property virtual and removed a
20887           Console.WriteLine.
20888
20889 2004-08-20 14:39  jordi
20890
20891         * ThemeGtk.cs: use style_attach
20892
20893 2004-08-20 14:39  pbartok
20894
20895         * XplatUIWin32.cs:
20896           - Added jackson's Async code from X11 to Win32
20897
20898 2004-08-20 14:09  pbartok
20899
20900         * SWF.csproj:
20901           - Added all new files
20902
20903 2004-08-20 14:09  pbartok
20904
20905         * Control.cs:
20906           - Added call to set window background color
20907
20908 2004-08-20 14:03  pbartok
20909
20910         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20911           - Added method for setting the window background
20912
20913 2004-08-20 14:02  pbartok
20914
20915         * XplatUIWin32.cs:
20916           - Added method for setting the background color
20917           - Added handling for erasing the window background
20918
20919 2004-08-20 13:45  jordi
20920
20921         * TrackBar.cs: fixes timer, new properties and methods
20922
20923 2004-08-20 13:34  jackson
20924
20925         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
20926           correct thread
20927
20928 2004-08-20 13:22  jackson
20929
20930         * Timer.cs: Timer Tick events are now handed through Controls Async
20931           mechanism so the callbacks are executed in the same thread as X
20932
20933 2004-08-20 13:19  jackson
20934
20935         * XplatUIDriver.cs: Expose functionality to send async messages
20936           through the driver
20937
20938 2004-08-20 13:18  jackson
20939
20940         * Control.cs: Implement Begininvoke
20941
20942 2004-08-20 13:14  jackson
20943
20944         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
20945           messages through the driver
20946
20947 2004-08-20 13:12  jackson
20948
20949         * XplatUIX11.cs: Lock before all X operations. Also added Async
20950           method functionality through XSendEvent
20951
20952 2004-08-20 13:11  jackson
20953
20954         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
20955           This will screw up on 64 bit systems)
20956
20957 2004-08-20 13:10  jackson
20958
20959         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
20960           Async messages through X/Win32
20961
20962 2004-08-19 19:39  pbartok
20963
20964         * XplatUIX11.cs:
20965           - Updated code to match new HandleData.DeviceContext type
20966
20967 2004-08-19 19:38  pbartok
20968
20969         * HandleData.cs:
20970           - Made DeviceContext a generic object to allow usage from various
20971           drivers
20972           - Added support for queueing Windows messages
20973
20974 2004-08-19 19:37  pbartok
20975
20976         * XplatUIWin32.cs:
20977           - Added generation of MouseEnter, MouseLeave and MouseHover events
20978           - Added cleanup on EndPaint
20979
20980 2004-08-19 19:17  pbartok
20981
20982         * Control.cs:
20983           - Added handling of WM_MOUSEHOVER
20984           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
20985           code
20986
20987 2004-08-19 18:55  jordi
20988
20989         * ThemeGtk.cs: fixes button order
20990
20991 2004-08-19 18:12  jordi
20992
20993         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
20994
20995 2004-08-19 17:09  pbartok
20996
20997         * Control.cs:
20998           - Added Right property
20999           - Added RightToLeft property
21000
21001 2004-08-19 16:27  jordi
21002
21003         * ThemeGtk.cs: experimental GTK theme support
21004
21005 2004-08-19 16:26  jordi
21006
21007         * ITheme.cs, Theme.cs: move themes from an interface to a class
21008
21009 2004-08-19 16:25  jordi
21010
21011         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
21012           theme enhancaments
21013
21014 2004-08-19 16:04  pbartok
21015
21016         * XplatUIX11.cs:
21017           - Added colormap basics
21018           - Added a way to re-initialize with a different display handle
21019           - Fixed setting of the window background color
21020           - Added various X11 imports related to colors and colormaps
21021
21022 2004-08-19 15:51  pbartok
21023
21024         * X11Structs.cs:
21025           - Removed packing hints (Paolo suggested this a while back)
21026           - fixed colormap type
21027           - Added default Atom types
21028           - Added Screen and color structs and enums
21029
21030 2004-08-19 15:39  pbartok
21031
21032         * ImageList.cs:
21033           - Added missing Draw() method
21034           - Added missing RecreateHandle event
21035
21036 2004-08-19 15:30  pbartok
21037
21038         * Form.cs:
21039           - Added handling of WM_CLOSE
21040
21041 2004-08-18 13:16  jordi
21042
21043         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
21044           a table
21045
21046 2004-08-18 09:56  jordi
21047
21048         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
21049
21050 2004-08-17 15:31  ravindra
21051
21052         * SWF.csproj: Updated project.
21053
21054 2004-08-17 15:25  pbartok
21055
21056         * Control.cs:
21057           - Drawing improvement; don't call UpdateBounds if we are not visible
21058             (or have been minimized)
21059
21060 2004-08-17 15:24  pbartok
21061
21062         * XplatUIWin32.cs:
21063           - Finished IsVisible
21064           - Added Win32GetWindowPlacement
21065
21066 2004-08-17 15:08  jackson
21067
21068         * Panel.cs: Initial checkin of the Panel
21069
21070 2004-08-17 14:25  pbartok
21071
21072         * Control.cs:
21073           - Fixed broken handling of default window sizes
21074
21075 2004-08-17 13:29  jackson
21076
21077         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
21078           has a large startup time.
21079
21080 2004-08-17 10:25  jackson
21081
21082         * HandleData.cs: union areas properly
21083
21084 2004-08-17 10:12  jackson
21085
21086         * HandleData.cs: union areas properly
21087
21088 2004-08-16 20:00  ravindra
21089
21090         * ToolBar.cs, ToolBarButton.cs: Added attributes.
21091
21092 2004-08-16 18:48  ravindra
21093
21094         * ToolBar.cs: Added attributes.
21095
21096 2004-08-16 17:17  ravindra
21097
21098         * SWF.csproj: Updated project.
21099
21100 2004-08-16 17:16  jackson
21101
21102         * XplatUIX11.cs: Check for more expose events before sending a
21103           WM_PAINT so they can all be grouped together. This makes dragging a
21104           window across another window redraw in a sane way.
21105
21106 2004-08-16 15:47  pbartok
21107
21108         * Control.cs:
21109           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
21110             support OnMouseEnter/Leave()
21111           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
21112             exposure handling
21113
21114 2004-08-16 15:46  pbartok
21115
21116         * XplatUIStructs.cs, XplatUIX11.cs:
21117           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
21118           OnMouseEnter/Leave()
21119
21120 2004-08-16 15:34  jackson
21121
21122         * XplatUIX11.cs: Group multiple expose events in HandleData, make
21123           sure messages get the message field set to WM_NULL if they are not
21124           handled.
21125
21126 2004-08-16 15:24  jackson
21127
21128         * HandleData.cs: HandleData is used for storing message information
21129           for window handles
21130
21131 2004-08-15 17:23  ravindra
21132
21133         * ColorDepth.cs: Added attribute.
21134
21135 2004-08-15 17:23  ravindra
21136
21137         * SWF.csproj: Updated project for ToolBar Control.
21138
21139 2004-08-15 17:20  ravindra
21140
21141         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
21142           control and also dos2unix format.
21143
21144 2004-08-15 17:13  ravindra
21145
21146         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
21147           ToolBarButtonClickEventArgs.cs,
21148           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
21149           ToolBarTextAlign.cs: First Implementation of ToolBar control.
21150
21151 2004-08-15 15:31  pbartok
21152
21153         * ButtonBase.cs:
21154           - First (mostly) working version
21155
21156 2004-08-13 16:15  pbartok
21157
21158         * Control.cs:
21159           - Fixed Anchor default
21160
21161 2004-08-13 15:43  pbartok
21162
21163         * Control.cs:
21164           - Changed GetCursorPos signature
21165
21166 2004-08-13 15:42  pbartok
21167
21168         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21169           - Changed signature for GetCursorPos
21170
21171 2004-08-13 15:25  pbartok
21172
21173         * XplatUIX11.cs:
21174           - Cleanup
21175           - Fixed resizing/exposure handling
21176
21177 2004-08-13 15:22  jordi
21178
21179         * ThemeWin32Classic.cs: removes redundant code and fixes issues
21180           with tickposition
21181
21182 2004-08-13 14:55  jordi
21183
21184         * TrackBar.cs: change from wndproc to events
21185
21186 2004-08-13 13:00  jordi
21187
21188         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21189           XplatUIX11.cs: implements PointToClient (ScreenToClient)
21190
21191 2004-08-13 12:53  pbartok
21192
21193         * XplatUIWin32.cs:
21194           - Changed GetWindowPos to also provide client area size
21195           - Fixed broken prototypes for several win32 functions
21196
21197 2004-08-13 12:53  pbartok
21198
21199         * XplatUI.cs, XplatUIDriver.cs:
21200           - Changed GetWindowPos to also provide client area size
21201
21202 2004-08-13 12:52  pbartok
21203
21204         * XplatUIX11.cs:
21205           - Added generation of WM_POSCHANGED
21206           - Changed GetWindowPos to also provide client area size
21207
21208 2004-08-13 12:52  pbartok
21209
21210         * Control.cs:
21211           - Added Dispose() and destructor
21212           - Fixed resizing and bounds calculation
21213           - Fixed Layout
21214           - Added memory savings for invisible windows
21215
21216 2004-08-13 12:46  jordi
21217
21218         * TrackBar.cs: adds timer and grap window
21219
21220 2004-08-13 10:25  jackson
21221
21222         * Timer.cs: SWF Timer
21223
21224 2004-08-12 16:59  pbartok
21225
21226         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21227           - Implemented method to get current mouse position
21228
21229 2004-08-12 14:29  jordi
21230
21231         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
21232           enhancement, fix mouse problems, highli thumb, etc
21233
21234 2004-08-12 13:31  pbartok
21235
21236         * Control.cs:
21237           - Fixed Anchoring bugs
21238
21239 2004-08-12 13:01  jackson
21240
21241         * StatusBar.cs: Don't forget things
21242
21243 2004-08-12 12:54  jackson
21244
21245         * ThemeWin32Classic.cs: Handle owner draw status bars
21246
21247 2004-08-12 12:54  jackson
21248
21249         * StatusBar.cs: Implement missing properties, events, and methods.
21250           Handle mouse clicking
21251
21252 2004-08-12 10:19  jackson
21253
21254         * StatusBarPanelClickEventArgs.cs,
21255           StatusBarPanelClickEventHandler.cs: Classes for handling status
21256           bar panel click events
21257
21258 2004-08-12 10:10  jackson
21259
21260         * Control.cs: Add missing properties
21261
21262 2004-08-12 09:46  pbartok
21263
21264         * BindingsManagerBase.cs:
21265           - Name changed to BindingManagerBase.cs
21266
21267 2004-08-12 09:25  jordi
21268
21269         * ScrollableControl.cs: calls ctrlbase instead of exeception
21270
21271 2004-08-11 16:28  pbartok
21272
21273         * InputLanguageChangingEventArgs.cs:
21274           - Never check in before compiling. Fixes the last check-in
21275
21276 2004-08-11 16:26  pbartok
21277
21278         * InputLanguageChangingEventArgs.cs:
21279           - More signature fixes
21280
21281 2004-08-11 16:20  pbartok
21282
21283         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
21284           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
21285           ImageListStreamer.cs, InputLanguage.cs,
21286           InputLanguageChangedEventArgs.cs,
21287           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
21288           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
21289           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
21290           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21291           - Signature fixes
21292
21293 2004-08-11 16:16  pbartok
21294
21295         * Application.cs:
21296           - Fixed Signature
21297           - Added .Net 1.1 method
21298
21299 2004-08-11 15:25  pbartok
21300
21301         * SWF.csproj:
21302           - Fixed BindingManagerBase.cs filename
21303
21304 2004-08-11 15:22  pbartok
21305
21306         * BindingManagerBase.cs:
21307           - Was checked in with wrong filename
21308
21309 2004-08-11 14:50  pbartok
21310
21311         * SWF.csproj:
21312           - Updated
21313
21314 2004-08-11 13:41  jordi
21315
21316         * XplatUIWin32.cs: Fixes ClientRect
21317
21318 2004-08-11 13:19  pbartok
21319
21320         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21321           XplatUIX11.cs:
21322           - We had SetWindowPos and MoveWindow to set window positions and
21323             size, removed MoveWindow. We have GetWindowPos, so it made sense to
21324             keep SetWindowPos as matching counterpart
21325           - Added some X11 sanity checking
21326
21327 2004-08-11 12:59  pbartok
21328
21329         * Control.cs:
21330           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
21331             (It seems that SetBounds is just a front for SetBoundsCore and
21332              SetBoundsCore updates the underlying window system and
21333              UpdateBounds is responsible for updating the variables associated
21334              with the Control and sending the events)
21335           - Major cleanup of Size handling; we now have two sizes, client_size
21336             and bounds. Bounds defines the window with decorations, client_size
21337             without them.
21338
21339 2004-08-11 12:55  pbartok
21340
21341         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21342           - Added method to calculate difference between decorated window and
21343             raw client area
21344
21345 2004-08-11 12:54  pbartok
21346
21347         * Label.cs:
21348           - Forcing redraw on resize
21349
21350 2004-08-11 11:43  pbartok
21351
21352         * ImageList.cs:
21353           - Removed disposing of the actual images when the list is disposed
21354
21355 2004-08-11 09:13  pbartok
21356
21357         * Control.cs:
21358           - Now properly reparents windows
21359
21360 2004-08-11 08:37  pbartok
21361
21362         * Control.cs:
21363           - Duh!
21364
21365 2004-08-11 07:47  pbartok
21366
21367         * Control.cs:
21368           - Rewrote the collection stuff. Might not be as fast now, not
21369             keeping the number of children around and accessible directly, but
21370             it's more straightforward
21371
21372 2004-08-11 07:44  pbartok
21373
21374         * AccessibleObject.cs:
21375           - Fixed to match ControlCollection rewrite
21376
21377 2004-08-11 07:43  pbartok
21378
21379         * ImageList.cs:
21380           - Added missing creation of the collection list
21381
21382 2004-08-10 20:08  jackson
21383
21384         * StatusBar.cs: Get the paint message from WndProc
21385
21386 2004-08-10 19:31  jackson
21387
21388         * ThemeWin32Classic.cs: Create Brushes as little as possible
21389
21390 2004-08-10 19:20  jackson
21391
21392         * UICues.cs: Add Flags attribute
21393
21394 2004-08-10 19:19  jackson
21395
21396         * StatusBarPanel.cs: Signature cleanup
21397
21398 2004-08-10 19:10  jackson
21399
21400         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
21401           Initial implementation of status bar item drawing
21402
21403 2004-08-10 17:27  jordi
21404
21405         * TrackBar.cs: add missing methods, properties, and restructure to
21406           hide extra ones
21407
21408 2004-08-10 16:24  jackson
21409
21410         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
21411           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
21412           attribute
21413
21414 2004-08-10 13:21  jordi
21415
21416         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
21417           enhancements and standarize on win colors defaults
21418
21419 2004-08-10 12:52  jackson
21420
21421         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
21422           ThemeWin32Classic.cs: Implement DrawItem functionality
21423
21424 2004-08-10 12:47  jordi
21425
21426         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
21427
21428 2004-08-10 12:32  jordi
21429
21430         * Control.cs: throw ontextchange event
21431
21432 2004-08-10 11:43  pbartok
21433
21434         * Control.cs:
21435           - Added more to the still unfinished Dock/Anchor layout code
21436
21437 2004-08-10 11:39  pbartok
21438
21439         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21440           - Added GetWindowPos method
21441
21442 2004-08-10 11:36  pbartok
21443
21444         * XplatUIWin32.cs:
21445           - Implemented several methods
21446
21447 2004-08-10 09:47  jackson
21448
21449         * TrackBar.cs: Allow control to handle buffering
21450
21451 2004-08-10 09:41  jackson
21452
21453         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
21454
21455 2004-08-10 09:24  jackson
21456
21457         * Label.cs, LinkLabel.cs: Let Control handle buffering.
21458
21459 2004-08-10 09:09  jackson
21460
21461         * StatusBar.cs: Let Control handle all the buffering.
21462
21463 2004-08-10 09:08  jackson
21464
21465         * Control.cs: Control will now handle the buffering code, so each
21466           control does not have to implement this.
21467
21468 2004-08-10 08:34  jackson
21469
21470         * XplatUIDriver.cs: Use default colors from the theme
21471
21472 2004-08-09 17:12  pbartok
21473
21474         * ImageList.cs:
21475           - Fixed several bugs Ravindra pointed out
21476
21477 2004-08-09 16:11  pbartok
21478
21479         * Control.cs:
21480           - Added incomplete dock layout code
21481           - Added support for mouse wheel
21482
21483 2004-08-09 16:09  pbartok
21484
21485         * XplatUIX11.cs:
21486           - Added handling for middle and right mousebutton
21487           - Added handling for mouse wheel
21488           - Added handling for key state and mouse state and position
21489           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
21490           messages
21491
21492 2004-08-09 15:40  jackson
21493
21494         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
21495           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
21496           checkin
21497
21498 2004-08-09 15:37  jackson
21499
21500         * StatusBar.cs: Initial implementation of StatusBar
21501
21502 2004-08-09 15:36  jackson
21503
21504         * ITheme.cs: Add support for drawing status bar and getting status
21505           bar item sizes
21506
21507 2004-08-09 15:35  pbartok
21508
21509         * MouseButtons.cs:
21510           - Fixed values
21511
21512 2004-08-09 15:34  jackson
21513
21514         * ThemeWin32Classic.cs: Add support for drawing status bar and get
21515           status bar item sizes
21516
21517 2004-08-09 15:21  jackson
21518
21519         * ThemeWin32Classic.cs: Use known colors for default control
21520           colours
21521
21522 2004-08-09 15:12  jackson
21523
21524         * ThemeWin32Classic.cs: Make the default font static, it is static
21525           in control so this doesn't change functionality and creating fonts
21526           is sloooooow.
21527
21528 2004-08-09 14:56  pbartok
21529
21530         * X11Structs.cs:
21531           - Added GrabMode enum
21532
21533 2004-08-09 14:55  pbartok
21534
21535         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21536           - Removed Run method, was only required for initial development
21537
21538 2004-08-09 14:51  pbartok
21539
21540         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21541           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
21542           capture
21543
21544 2004-08-09 13:48  pbartok
21545
21546         * XplatUIX11.cs:
21547           - Fixed default sizing for child windows
21548
21549 2004-08-09 12:56  pbartok
21550
21551         * XplatUIX11.cs:
21552           - Added generation of WM_DESTROY message
21553           - Added handling of window manager induced shutdown
21554
21555 2004-08-09 11:31  jackson
21556
21557         * ThemeWin32Classic.cs: New names for control properties
21558
21559 2004-08-09 11:25  jackson
21560
21561         * Control.cs: Use new color names
21562
21563 2004-08-09 11:02  jackson
21564
21565         * XplatUI.cs: Get default window properties from the theme
21566
21567 2004-08-09 11:01  jackson
21568
21569         * ITheme.cs: The theme engine now controls default window
21570           properties
21571
21572 2004-08-09 11:00  jackson
21573
21574         * ThemeWin32Classic.cs: Add default window color properties
21575
21576 2004-08-09 10:17  jackson
21577
21578         * ThemeWin32Classic.cs: Use correct default back color
21579
21580 2004-08-09 10:05  jackson
21581
21582         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
21583           the theme now.
21584
21585 2004-08-09 09:56  jackson
21586
21587         * XplatUI.cs: Remove defaults, these are handled by the theme now.
21588
21589 2004-08-09 09:54  jackson
21590
21591         * Control.cs: Get default properties from the theme.
21592
21593 2004-08-09 09:53  jackson
21594
21595         * ITheme.cs: Themes now handle default control properties
21596
21597 2004-08-09 09:53  jackson
21598
21599         * ThemeWin32Classic.cs: Themes now handle default control
21600           properties so coloring will be consistent
21601
21602 2004-08-08 16:54  jordi
21603
21604         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
21605
21606 2004-08-08 15:08  jordi
21607
21608         * XplatUIX11.cs: fixes keyboard crash
21609
21610 2004-08-08 13:47  jordi
21611
21612         * Label.cs: add cvs header info
21613
21614 2004-08-08 12:09  jackson
21615
21616         * ThemeWin32Classic.cs: Add pen_buttonface
21617
21618 2004-08-08 11:52  jordi
21619
21620         * Label.cs, LinkLabel.cs: [no log message]
21621
21622 2004-08-08 11:34  jordi
21623
21624         * ThemeWin32Classic.cs: Use Windows Standard Colours
21625
21626 2004-08-07 17:32  jordi
21627
21628         * TrackBar.cs: throw exceptions of invalid enums values
21629
21630 2004-08-07 17:31  jordi
21631
21632         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
21633           draw method name
21634
21635 2004-08-07 16:56  jackson
21636
21637         * HorizontalAlignment.cs: Initial checkin
21638
21639 2004-08-07 13:16  jordi
21640
21641         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
21642           methods
21643
21644 2004-08-07 13:05  jordi
21645
21646         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
21647           GetSysColor defines
21648
21649 2004-08-06 18:01  pbartok
21650
21651         * ThemeWin32Classic.cs:
21652           - Fixed some rounding issues with float/int
21653
21654 2004-08-06 18:00  jackson
21655
21656         * DockStyle.cs, AnchorStyles.cs:
21657
21658                   Add flags and serializable attributes.
21659
21660 2004-08-06 17:46  pbartok
21661
21662         * XplatUIX11.cs:
21663           - Implemented GetParent
21664
21665 2004-08-06 17:18  pbartok
21666
21667         * TrackBar.cs:
21668           - Fixed some rounding issues with float/int
21669
21670 2004-08-06 17:17  pbartok
21671
21672         * X11Structs.cs, XplatUIX11.cs:
21673           - Fixed Refresh and Invalidate
21674
21675 2004-08-06 15:30  pbartok
21676
21677         * Control.cs, X11Structs.cs, XplatUIX11.cs:
21678           - Fixed recursive loop when resizing
21679           - Improved/fixed redrawing on expose messages
21680
21681 2004-08-06 09:53  jordi
21682
21683         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
21684           keyboard navigation
21685
21686 2004-08-06 08:02  pbartok
21687
21688         * X11Structs.cs, XplatUIX11.cs:
21689           - Fixed reparenting
21690           - Fixed window border creation
21691
21692 2004-08-05 15:38  pbartok
21693
21694         * XplatUIX11.cs:
21695           - Attempted fix for reparenting problems
21696
21697 2004-08-04 15:14  pbartok
21698
21699         * Control.cs:
21700           - Fixed Invalidation bug (calculated wrong client area)
21701           - Added ClientSize setter
21702
21703 2004-08-04 15:13  pbartok
21704
21705         * Form.cs:
21706           - Added AutoScale properties
21707
21708 2004-08-04 15:13  pbartok
21709
21710         * SWF.csproj:
21711           - Added latest files
21712
21713 2004-08-04 14:11  pbartok
21714
21715         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21716           XplatUIX11.cs:
21717           - Added Invalidate handling
21718
21719 2004-08-03 17:09  jordi
21720
21721         * XplatUIDriver.cs: fixes spelling mistake
21722
21723 2004-07-27 09:53  jordi
21724
21725         * TrackBar.cs: fixes trackbar events, def classname, methods
21726           signature
21727
21728 2004-07-27 09:29  jordi
21729
21730         * ScrollBar.cs: fixes scrollbar events
21731
21732 2004-07-27 04:38  jordi
21733
21734         * Control.cs: changes to be able to run winforms samples
21735
21736 2004-07-26 11:42  jordi
21737
21738         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
21739           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
21740
21741 2004-07-26 05:41  jordi
21742
21743         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
21744           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
21745           implementation
21746
21747 2004-07-22 09:22  jordi
21748
21749         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
21750           check link overlapping, implement events, and fixes
21751
21752 2004-07-21 10:28  jordi
21753
21754         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
21755
21756 2004-07-21 10:19  jordi
21757
21758         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
21759           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
21760           LinkLabelLinkClickedEventArgs.cs,
21761           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
21762           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
21763           implementation
21764
21765 2004-07-19 13:09  jordi
21766
21767         * Control.cs, Label.cs: label control re-written: added missing
21768           functionlity, events, and properties
21769
21770 2004-07-19 10:49  jordi
21771
21772         * Control.cs: fixes SetBounds logic
21773
21774 2004-07-19 01:29  jordi
21775
21776         * Control.cs: Call RefreshWindow only if the window has created
21777
21778 2004-07-15 14:05  pbartok
21779
21780         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
21781           - Implemented ImageList and ImageList.ImageCollection classes
21782           - Added ColorDepth enumeration
21783           - Updated SWF VS.Net project
21784
21785 2004-07-15 11:06  jordi
21786
21787         * XplatUIStructs.cs: added MsgButons enum
21788
21789 2004-07-15 11:03  jordi
21790
21791         * Control.cs: added basic mouse handeling events
21792
21793 2004-07-15 03:38  jordi
21794
21795         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
21796           Vertical TrackBar control implementation
21797
21798 2004-07-13 09:33  jordi
21799
21800         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
21801
21802 2004-07-13 09:31  jordi
21803
21804         * Control.cs, Form.cs: commit: new properties and fixes form size
21805           problems
21806
21807 2004-07-09 14:13  miguel
21808
21809         * ProgressBar.cs: Spelling
21810
21811 2004-07-09 11:25  pbartok
21812
21813         * ProgressBar.cs:
21814           - Removed usage of Rectangle for drawing. Miguel pointed out it's
21815           faster
21816
21817 2004-07-09 11:17  miguel
21818
21819         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
21820
21821                 * ProgressBar.cs: Fixed spelling for `block'
21822
21823                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
21824                 style guidelines.
21825
21826                 Avoid using the += on rect.X, that exposed a bug in the compiler.
21827
21828 2004-07-08 23:21  pbartok
21829
21830         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
21831           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
21832           BaseCollection.cs, Binding.cs, BindingContext.cs,
21833           BindingMemberInfo.cs, BindingsCollection.cs,
21834           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
21835           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
21836           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
21837           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
21838           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
21839           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
21840           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
21841           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
21842           FrameStyle.cs, GiveFeedbackEventArgs.cs,
21843           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
21844           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
21845           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
21846           InputLanguageChangedEventArgs.cs,
21847           InputLanguageChangedEventHandler.cs,
21848           InputLanguageChangingEventArgs.cs,
21849           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
21850           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
21851           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
21852           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
21853           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
21854           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
21855           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
21856           QueryAccessibilityHelpEventArgs.cs,
21857           QueryAccessibilityHelpEventHandler.cs,
21858           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
21859           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
21860           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
21861           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
21862           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
21863           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
21864           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
21865           XplatUIX11.cs, lang.cs:
21866           - Initial check-in
21867