2006-12-26 Everaldo Canuto <everaldo@simios.org>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
2
3         * ListView.cs: Call owner.OnMousexx event to propagate events from
4         item to ListView. Fixes #80367.
5
6 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7
8         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
9         if value is less than one. ItemHeight should not be set to a value
10         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
11         Removed extra tabs.
12
13 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
14
15         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
16         * ToolStripStatusLabel.cs: Add Spring for Moma.
17
18 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
19
20         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
21         Fixed code formatting. Removed debug code.
22         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
23
24 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
25
26         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
27         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
28         ArgumentOutOfRangeException if ColumnCount is negative. In 
29         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
30         less than 4 or higher than 32768.
31         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
32         Fixed FormatProvider to return CurrentCulture unless explicitly set.
33         Fixed IsFormatProviderDefault to return true if FormatProvider has
34         not been explicitly set.
35
36 2006-12-25  Chris Toshok  <toshok@ximian.com>
37
38         * Application.cs: add a couple of 2.0 events.
39
40 2006-12-25  Chris Toshok  <toshok@ximian.com>
41
42         * Control.cs: fix compiler warning.
43
44         * AxHost.cs: corcompare fixes.
45
46         * ApplicationContext.cs: corcompare fixes.
47
48 2006-12-25  Chris Toshok  <toshok@ximian.com>
49
50         * Control.cs: only update dist_right/dist_bottom if the
51         width/height is > 0.  this fixes anchored controls being resized
52         smaller until they disappear and then resized larger again.
53
54 2006-12-25  Chris Toshok  <toshok@ximian.com>
55
56         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
57         since they're nothing more than X/Left and Y/Top, respectively.
58
59         Also, move back to a per-control Bitmap/Graphics for
60         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
61         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
62         Height.
63
64 2006-12-25  Miguel de Icaza  <miguel@novell.com>
65
66         * MessageBox.cs: Implemented overload that takes a new "bool
67         displayHelpButton" by adding a new internal field "show_help".
68         When clicked this will raise the HelpRequested on the owner or the
69         main form. 
70
71         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
72         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
73
74         * ListView.cs: Add support ColumnWidthChanged and
75         ColumnWidthChanging. 
76
77         Add support for ColumnReordered event.
78         (ReorderColumn): Add NET_2_0 specific support for cancelling the
79         reorder.
80
81         Very nice codebase!
82
83         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
84
85         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
86
87 2006-12-24  Chris Toshok  <toshok@ximian.com>
88
89         * GridTablesFactory.cs: 2.0 corcompare work.
90
91         * ToolStripContainer.cs: add "override" to
92         ContextMenuStripChanged, and remove the local event object.
93
94         * ToolStripDropDown.cs: same with a couple properties.
95
96         * ToolStripPanel.cs: same with AutoSizeChanged event.
97
98         * TextBoxBase.cs: add "override" to AutoSizeChanged.
99
100         * Form.cs: add the remaining 2.0 events, and do some corcompare
101         attribute work.
102
103         * DateTimePicker.cs: add "new" to padding.
104
105         * ButtonBase.cs: use Control's use_compatible_text_rendering.
106
107         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
108
109         * DataGridView.cs: PaddingChanged is overridden.
110
111 2006-12-24  Chris Toshok  <toshok@ximian.com>
112
113         * Control.cs: corecompare work here too.
114
115         * DataGridViewElement.cs, DataGridView.cs,
116         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
117         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
118         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
119         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
120         work.
121
122 2006-12-24  Miguel de Icaza  <miguel@novell.com>
123
124         * Control.cs: Switched the error message on the console for a
125         todo.  A review of the code will have to cope with this anyways
126         (since its a large feature, it is in our radar) and it was
127         producing too much output when running PDN.
128
129         * ToolStripComboBox.cs: Set the text when the SelectedIndex
130         changes.  Applications depend on this (PDN 2.72)
131
132 2006-12-23  Chris Toshok  <toshok@ximian.com>
133
134         * TableLayoutSettings.cs: finish up the corcompare work for this
135         class.
136
137 2006-12-23  Chris Toshok  <toshok@ximian.com>
138
139         * Control.cs: make SetImplicitBounds internal, do some futzing
140         with LayoutEngine so that it's available in 1.1, and remove the
141         entire duplicated code mess from PerformLayout.  Use
142         System.Windows.Forms.Layout.DefaultLayout instead.
143
144         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
145
146 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
147
148         * Form.cs: Add MainMenuStrip property.
149
150 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
151
152         * Control.cs: Add ContextMenuStrip property and implementation.
153         Fix ContextMenu implementation to show menu centered on control when
154         activated using the keyboard instead of showing at screen (0,0).
155
156         * ToolStripDropDown.cs: Fix needed overload of Show ().
157
158 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
159
160         * Menu.cs: Name property added for 2.0 profile.
161         
162 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
163
164         * Menu.cs: Update information about FindMenuItem, method to be
165         implemented soon.
166
167 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
168
169         * MenuAPI.cs: When deselect items deselect also selected subitems.
170         
171 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
172
173         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
174         FindSubItemByCoord to found itens that is not active, also an
175         cheking added to FindSubItemByCoord to search for items only 
176         in visible popup windows. Fixes #80274.
177
178 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
179
180         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
181         internal property, it be care about change ExStyle. 
182
183 2006-12-22  Andreia Gaita  <avidigal@novell.com>
184
185         * ContainerControl.cs: set activeControl for parent forms up the 
186         tree when the new activecontrol is a container.
187         When validating the active control, if it is a container, also
188         raise up the validation for it's active control. Fixes #80280
189         
190         * Control.cs: Add internal property flag and check to prevent
191         Focus events from getting raised when Select() is called for
192         a ContainerControl. There are still too many focus events being
193         raised at the moment though.
194         Cleaned up the code a bit.
195
196 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
197
198         * Control.cs: Added all missing 2.0 events.and
199         fixed a couple of corcompare issues.
200         * TrackBar.cs: Implemented missing 2.0 bits.
201         * MonthCalendar.cs, 
202         * DateTimePicker.cs, 
203         * MdiClient.cs: Fixed some corcompare issues.
204
205 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
206
207         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
208         SplitterPanel.cs: corecompare work.
209
210 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
211
212         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
213         Clean up warnings for BackgroundImageChanged and PaddingChanged
214         events now that they are implemented in Control.cs.
215
216 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
217
218         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
219         
220         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
221         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
222         of TableLayoutPanel and supporting cast.
223
224 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
225
226         * XplatUIWin32.cs: 
227         - GrabWindow now confines the mouse pointer to the confine window.
228         - Added Win32ClipCursor and Win32GetClipCursor.
229
230         * Control.cs: 
231         - Added CaptureWithConfine to be able to capture and confine 
232         mouse pointer.
233         
234         * InternalWindowManager.cs: 
235         - Call CaptureWithConfine instead of Capture if we're an
236         MdiChild (fixes #79982).
237
238 2006-12-21  Chris Toshok  <toshok@ximian.com>
239
240         * DataGrid.cs: guard against the initial state of selection, where
241         selection_start == -1.  make sure we only select from index >= 0.
242         Fixes bug #80291.
243
244 2006-12-21  Chris Toshok  <toshok@ximian.com>
245
246         * Control.cs: we don't need to be so draconian with
247         UpdateDistances, and we thusly don't need to call it before
248         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
249
250 2006-12-21  Daniel Nauck  <dna@mono-project.de>
251
252         * ComboBox.cs,
253         TextBox.cs: Implemented AutoComplete properties.
254
255 2006-12-20  Chris Toshok  <toshok@ximian.com>
256
257         * DataGridView*.cs: some corecompare work.
258
259 2006-12-20  Jackson Harper  <jackson@ximian.com>
260
261         * XplatUIX11.cs: We need to hide the caret when deleting it,
262         otherwise you get carets left lying around everywhere.
263         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
264         prevents getting some weird half drawn caret tracers when
265         scrolling.
266         * TextControl.cs: Attempt to reduce the number of times we need to
267         recreate the caret.
268
269 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
270
271         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
272
273 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
274
275         * DateTimePicker.cs:
276         - Implemented missing 2.0 bits.
277         - Changed some default values to match MS.
278         
279 2006-12-20  Jackson Harper  <jackson@ximian.com>
280
281         * TextBoxBase.cs: When changing the font across the document we
282         can't recalculate after changing each line, since that will cahnge
283         the line count.
284         - PreferredHeight is a little different than i thought.
285         - When backspacing, move the caret before we do the actual char
286         delete, because when that delete crosses a wrap boundary the
287         positional information will change.
288
289 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
290
291         * Control.cs: Added some missing 2.0 bits: 
292         BackgroundImageLayout, BackgroundImageLayoutChanged, 
293         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
294         add IBindableComponent and IDropTarget implementation.
295         
296         * MonthCalendar.cs: 
297         - Added all missing 2.0 features:
298         BackgroundImageLayout, RightToLeftLayout, 
299         OnHandleDestroyed, RightToLeftLayoutChanged, 
300         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
301         PaddingChanged.
302         - Rewrote all the BoldDate code, it was completely broken.
303         - Fixed all the tests (the tests can now be re-enabled, the
304         problems were not with the tests, but with the control, it was
305         mostly broken).
306         
307         * DateTimePicker.cs: Changed the location where the 
308         MonthCalendar is shown.
309         
310 2006-12-19  Chris Toshok  <toshok@ximian.com>
311
312         * DataGridView.cs: add IDropTarget implementation.
313
314         * ToolStripPanel.cs: add IDropTarget implementation.
315
316 2006-12-19  Jackson Harper  <jackson@ximian.com>
317
318         * TextControl.cs: soft now means something different than what it
319         used to mean, we want to move the caret regardless of whether or
320         not this break was soft (would we really have wanted the caret
321         to not move with the break in the old context?)
322         * TreeView.cs: Make sure we factor in the vert scrollbar when
323         calculating the horizontal scrollbar's maximum.
324
325 2006-12-19  Andreia Gaita  <avidigal@novell.org>
326
327         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
328         check for keywords in alternate casing, close bug #80049.
329
330 2006-12-19  Chris Toshok  <toshok@ximian.com>
331
332         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
333         methods (which all do nothing).
334
335         * IDropTarget.cs: add the 4 missing methods.
336
337 2006-12-19  Chris Toshok  <toshok@ximian.com>
338
339         * TableLayoutRowStyleCollection.cs: corcompare work.
340         
341         * TableLayoutSettings.cs: same.
342
343         * TableLayoutStyle.cs: same.
344
345         * TableLayoutColumnStyleCollection.cs: same.
346
347 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
348
349         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
350         TableLayoutPanel I've had in my local tree for way too long.
351
352 2006-12-19  Miguel de Icaza  <miguel@novell.com>
353
354         * TableLayoutSettings.cs: Finish the public API (still needs all
355         the logic to update on changes). 
356
357         * TableLayoutPanelCellPosition.cs: new file.
358         
359         * TableLayoutRowStyleCollection.cs,
360         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
361         TableLayoutSettings.cs: Track the final 2.0 table api.
362
363 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
364
365         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
366         and Image List 2.0 members for ColummnHeader.
367         * ListView.cs: Add key-related 2.0 methods for
368         ColumnHeaderCollection.
369
370 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
371
372         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
373         ArgumentNullException if items argument is null. Ignore null item in
374         arrays. Removed extra tabs.
375
376 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
377
378         * MonthCalendar.cs: Fixed InvalidCastException.
379
380 2006-12-19  Jackson Harper  <jackson@ximian.com>
381
382         * TextControl.cs: Don't increment the position here.
383         - When calculating char positions only add in the line break size
384         for hard line breaks.
385
386 2006-12-19  Andreia Gaita  <avidigal@novell.org>
387
388         * SendKeys.cs: Changed some things to match ms.net behaviour
389         when parsing shifted capital letters.
390         
391         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
392         Add window handle as parameter to SendInput. X11 needs the 
393         window handle, and the handle being passed      to it in the keys 
394         queue is the active control handle (which windows needs), not 
395         the window handle.
396         
397         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
398         to support SendKeys on X.       
399         
400         * X11Keyboard: Implement helper method to lookup a linux keycode
401         given the virtual keycode. Added table of keycode-2-virtualkey
402         values to support this.
403
404 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
405
406         * ListView.cs: Add support for SelectedIndexCollection
407         and SelectedItemCollection 2.0 methods. Implement support
408         for ImageKey too.
409         * ListViewItem.cs: Add support for ListViewSubItemCollection
410         2.0 methods. Also, fix an incorrect behavior of AddRange method
411         (it shouldn't call Clear).
412         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
413
414 2006-12-19  Jackson Harper  <jackson@ximian.com>
415
416         * RichTextBox.cs: 
417         * TextBoxBase.cs: New args for FormatText
418         * TextControl.cs: Rewrote the main drawing method, this version
419         feels a little easier to understand and debug to me.  Hopefully it
420         does to others also
421         - Fix FormatText to OR in the new formating values.  Added
422         FormatSpecified param, basically this works in the same way as
423         BoundsSpecified in Control.
424         - Set the caret properties when the caret is positioned.
425         - When wrapping text make sure that we calculate the width of the
426         last character
427         - when calculating alignments we might have wrapped down to the
428         next line, so don't search for an individual tag, search for the
429         end of the line
430         - We need to invalidate the selection area when we replace the
431         selection.
432         
433 2006-12-19  Daniel Nauck  <dna@mono-project.de>
434
435         * Application.cs: add Restart () 2.0 support
436
437 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
438
439         * MenuItem.cs: Invalidate menu item rectangle after change Enable
440         property. Fixes #80268.
441         
442 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
443
444         * MenuAPI.cs: Dont trigger select event when closes top menu
445         item. Fixes #80270.
446
447 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
448
449         * MenuAPI.cs: When you click on menuitem only trigger onselect
450         event for top menu itens. Fixes #80271.
451         
452 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
453
454         * MdiWindowManager.cs: Make IconicBounds depend on
455         the bottom of MdiClient, not the top (fixes #80267)
456         
457 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
458
459         * MdiClient.cs: Added missing 2.0 attribute
460
461 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
462
463         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
464         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
465
466 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
467
468         * MenuAPI.cs: Fix click when menuitem is not popup,
469         this regression was caused by last commit (#80272).
470
471 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
472
473         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
474         fire click event or close menu. Fixes #80272.
475
476 2006-12-17  Daniel Nauck  <dna@mono-project.de>
477
478         * ListViewHitTestInfo.cs: add
479
480 2006-12-17  Daniel Nauck  <dna@mono-project.de>
481
482         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
483         * FlatButtonAppearance.cs: add
484         * DockingAttribute.cs: add
485
486 2006-12-17  Chris Toshok  <toshok@ximian.com>
487
488         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
489         and rebind our columns when it does - this way, if you make
490         changes to the DataTable (or set the Table attribute on a DataView
491         after setting it as the DataGrid's DataSource, the changes are
492         made visible.)  Fixes bug #80107.
493
494 2006-12-17  Daniel Nauck  <dna@mono-project.de>
495
496         * ListViewGroup.cs: add internal Location property for layouting.
497         * Theme.cs: add abstract ListViewGroupHeight function.
498         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
499
500 2006-12-16  Andreia Gaita  <avidigal@novell.com>
501
502         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
503         Added reset of selected index to 0 when adding first tab page.
504         Fixes #80264
505         
506         * NumericUpDown.cs: Fix NET_2_0 check
507
508 2006-12-16  Daniel Nauck  <dna@mono-project.de>
509
510         * ListViewGroup.cs: fixed DefaultValueAttribute value
511
512 2006-12-16  Daniel Nauck  <dna@mono-project.de>
513
514         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
515
516 2006-12-15  Miguel de Icaza  <miguel@novell.com>
517
518         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
519         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
520         ScrollableControl.cs: Add a handful of methods that are
521         overwritten in 2.0 
522
523 2006-12-15  Chris Toshok  <toshok@ximian.com>
524
525         * XplatUIWin32.cs: initial implementation of the Reversible
526         drawing functions.  there are some problems.  DrawReversibleFrame
527         doesn't seem to work at all for Dashed FrameStyle, and in the
528         Thick case there are drawing errors at the corners (we probably
529         need to bind Rectangle instead of doing moveto/lineto's.)
530
531 2006-12-16  Andreia Gaita  <avidigal@novell.com>
532         
533         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
534         to send blocks of key messages. Send accumulates keys to send with Flush, 
535         while SendWait sends all keys immediately.
536                 
537         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
538         XplatUIX11.cs,  XplatUIX11-new.cs:
539         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
540         to Win32 SendInput.
541         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
542         
543         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
544         testing for ms.net on this class is very tricky, as the tests run too fast 
545         to allow the hook to release, essentially freezing the keyboard and the 
546         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
547         category :p
548
549 2006-12-16  Daniel Nauck  <dna@mono-project.de>
550
551         * Padding.cs: fixed serialization compability to MS ("_var" field names),
552                         added missing attributes.
553  
554 2006-12-15  Daniel Nauck  <dna@mono-project.de>
555
556         * ListViewGroup.cs: Added missing attributes.
557         * ListViewGroupCollection.cs: Added missing attributes.
558
559 2006-12-15  Daniel Nauck  <dna@mono-project.de>
560
561         * ListViewItem.cs: fixed ListViewSubItem text property.
562
563 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
564         
565         * Control.cs: Added missing 2.0 attributes
566         
567 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
568         
569         * MdiClient.cs: Added missing 2.0 attribute.
570         * MonthCalendar.cs: Added some missing 2.0 attributes 
571         and properties.
572         
573 2006-12-15  Daniel Nauck  <dna@mono-project.de>
574
575         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
576
577 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
578
579         * MainMenu.cs: Add the new 2.0 constructor to help out people
580         using the MainMenu in VS2005.
581
582 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
583         
584         * MdiChildContext.cs: Removed it, no longer used.
585         * MdiClient.cs: Added missing 2.0 attributes.
586         
587 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
588         
589         * InternalWindowManager.cs: Fix a NullRef with previous 
590         changes for toolwindows.
591         
592 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
593
594         * Control.cs: 
595         - Added AfterTopMostControl to allow for certain controls 
596         to always stay on top when normal controls are brought to 
597         front.
598         
599         * XplatUIWin32.cs: 
600         - (DrawInversibleRectangle): Get window rectangle from Win32 
601         in stead of from control, since Win32 doesn't calculate
602         screen coords correctly from control's Location if it 
603         have docked siblings.
604         
605         * MdiWindowManager.cs:
606         - Correct the control menu popup location when clicked on
607         the maximized form icon. (fixes #80223.1)
608         - Don't show moving rectangle if mouse hasn't moved from
609         the original clicked point.
610         - Removed FormGotFocus handler (not used).
611         - Calculate the control buttons location from the main
612         window's size and not client size (fixes #79770).
613         - Form is now closed when the form icon is double-clicked
614         (fixes #79775). 
615         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
616         
617         * InternalWindowManager.cs:
618         - Moved some MDI-only methods to MdiWindowManager.
619         - Removed unused properties and methods.
620         - Unified method naming for methods handling wm messages.
621         - Moved all message handling to seperate methods for
622         each message.
623         
624         * ThemeWin32Classic.cs:
625         - DrawManagedWindowDecorations now draws the title bar 
626         with a gradient brush.
627         - Add a CPDrawButtonInternal that allows us to specify
628         light, normal and dark colors for the buttons (control 
629         buttons for MDI children were drawn with the same light
630         color as the background, therefore loosing the 3D effect).
631         
632         * SizeGrip.cs:
633         - Add a CapturedControl property that is used to 
634         determine the control to resize (defaults to parent). 
635         Needed for MdiClient, since its SizeGrip's parent is
636         MdiClient, but the control to resize is the main form.
637         
638         * MdiClient.cs:
639         - Set SizeGrip's CapturedControl to the main form in order
640         to resize the main form and not the MdiClient.
641         - Override AfterTopMostControl to leave the scrollbars 
642         always on top.
643
644 2006-12-15  Daniel Nauck  <dna@mono-project.de>
645
646         * ListView.cs: fixed ListViewItemCollection AddRange and
647                         implemented ListViewItemCollection AddRange 2.0 support.
648
649 2006-12-15  Daniel Nauck  <dna@mono-project.de>
650
651         * ListViewGroup.cs: Add.
652         * ListViewGroupCollection.cs: Add
653         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
654         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
655                                 stub for ImageKey 2.0 support.
656
657 2006-12-14  Mike Kestner  <mkestner@novell.com>
658
659         * ListView.cs: add text padding to the autocalculation for columns
660         of width -2.  Fixes #80207.
661  
662 2006-12-14  Mike Kestner  <mkestner@novell.com>
663
664         * ListView.cs: add some index guarding for partial row navigation 
665         logic.  Fixes #80250.
666
667 2006-12-14  Mike Kestner  <mkestner@novell.com>
668
669         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
670         are added or inserted to the collection.  Fixes #81099.
671
672 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
673
674         * MenuAPI.cs: Closes menu when right click out side of popup
675         it fix problem in ContextMenu and MainMenu. Fixes #80252.
676
677 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
678
679         * ListViewItem.cs: Fix dumb error.
680
681         * ListView.cs: Add Find and ContainsKey methods in 
682         ListViewItemCollection, and also return true for IsReadOnly
683         and IsFixedSize (changes for 2.0). 
684
685 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
686
687         * Control.cs: Allow Region to be set to null.
688
689 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
690
691         * MdiWindowManager.cs: Remove unused (commented out) code.
692         * Form.cs: When the MdiChild is maximized, the form needs 
693         WM_NCMOUSELEAVE, so request it.
694         * InternalWindowManager.cs: 
695         - Added tooltips to control buttons.
696         - Removed duplicated control button handling code.
697         - Removed unused (commented out) code.
698         
699 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
700
701         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
702         was used because we must set cursor without trigger ChangeCursor event
703         and without change Cursor control property. Fixes #79963.
704
705 2006-12-12  Andreia Gaita  <avidigal@novell.com>
706         
707         * Control.cs: Check if Region setter value is null, and ignore
708
709 2006-12-12  Jackson Harper  <jackson@ximian.com>
710
711         * TextControl.cs: We were almost always drawing one more line then
712         needed, since the GetLineByPixel will return the last line found
713         at that pixel. In most cases though, we were invalidating up to
714         the junction between two lines.
715         - Improve debug code.
716
717 2006-12-12  Chris Toshok  <toshok@ximian.com>
718
719         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
720         and FillReversibleRectangle.
721
722         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
723         and FillReversibleRectangle.
724
725         * XplatUIWin32.cs: add stubs which do nothing for
726         DrawReversibleFrame, DrawReversibleLine, and
727         FillReversibleRectangle.
728
729         * XplatUIOSX.cs: add stubs which raise NIE for
730         DrawReversibleFrame, DrawReversibleLine, and
731         FillReversibleRectangle.
732
733         * XplatUIX11.cs: add working implementation for
734         DrawReversibleFrame, DrawReversibleLine, and
735         FillReversibleRectangle.
736         
737         * ControlPaint.cs: implement DrawReversibleFrame,
738         DrawReversibleLine, and FillReversibleRectangle, by calling into
739         the appropriate XplatUI method.
740
741 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
742
743         * Form.cs: Make MdiClient have the focus even if it's
744         not selectable, since it should receive WM_KEY* and WM_MOUSE 
745         messages. Fixes #79907.
746         
747 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
748
749         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
750         queried after the window is created.
751         
752         * XplatUIX11.cs: Added SendParentNotify to implement 
753         WM_PARENTNOTIFY logic. Fixes #79965.
754         
755         * Control.cs: Added MakeParam.
756         
757 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
758
759         * MdiClient.cs: Resume Layout before setting window
760         states (fixes #80201).
761
762 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
763
764         * MenuAPI.cs: Deselect a menu item after performing
765         the click (fixes #80197).
766
767 2006-12-11  Jackson Harper  <jackson@ximian.com>
768
769         * TextBoxBase.cs: We need to cap this value, since Maximum -
770         ViewPortHeight can be less than zero.
771         - Only do selection with the left mouse button.
772         * TextBox.cs: Don't tell the world that we have a context menu.
773         * Control.cs: New method so that we can control whether or not the
774         context menu is visible outside MWF.
775
776 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
777
778         * ToolBarButton.cs: Fix text positon. 
779
780 2006-12-11  Miguel de Icaza  <miguel@novell.com>
781
782         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
783
784         * Control.cs (DoubleBuffered): Add implementation.
785
786         * Application.cs (OpenForms): Add.
787
788 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
789
790         * Form.cs: Use opacity instead of Opactiy to determine if we need
791         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
792
793 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
794
795         * Control.cs: Fix NRE if Control.Site was set to null.
796
797 2006-12-11  Chris Toshok  <toshok@ximian.com>
798
799         * Control.cs: ControlCollection.Remove should return if the arg is
800         null, and ControlCollection.SetChildIndex should raise a ANE.
801
802 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
803
804         * Control.cs: Verify value set for Dock property. Code formatting
805         updates.
806
807 2006-12-11  Jackson Harper  <jackson@ximian.com>
808
809         * TextControl.cs: Draw the caret and the selection when a flag is
810         set on the owner.
811         * TextBoxBase.cs: We want to draw the caret and the selection for
812         TextBox but not for TextBoxBase.
813         - If the window is resized and scrolling is no longer needed (the
814         whole doc is visible) set the scroll position to zero.
815         - The default SelectWord (the one TextBox uses) should move the
816         caret to the end of the word.
817         - SelectAll moves the caret to the end of the selection.
818         * TextBox.cs: We don't selectall on focus, we just do it when the
819         control is created.
820         
821 2006-12-11  Mike Kestner  <mkestner@novell.com>
822
823         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
824
825 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
826
827         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
828         2.0 support.
829         * ListViewItem.cs: Add Name 2.0 property.
830
831 2006-12-11  Andreia Gaita  <avidigal@novell.com>
832
833         * TabControl.cs: Set visibility on selected or default tab 
834         when tabcontrol handle is created, so that it's contents
835         actually show up (duh). Fixes #80193
836         Don't redraw the control if there is no handle created, as
837         the selected index might be completely invalid. Added some tests
838         to check for this.
839
840 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
841
842         * ToolBar.cs: Uses maximun width and height of all buttons as 
843         button rectangle when ButtonSize specified, it looks strange but
844         is what happens in Win32. Fixes #80189.
845
846 2006-12-11  Jackson Harper  <jackson@ximian.com>
847
848         * TextControl.cs: Need to track undo levels ourself, since
849         compound actions will mess them up.
850
851 2006-12-10  Andreia Gaita  <avidigal@novell.com>
852
853         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
854         SelectedIndex value is changed (even if it's not valid).
855         Reset SelectedIndex to 0 when the handle is created and if
856         the current index is invalid.
857         Fixes SelectdeIndex unit tests and #80128
858
859 2006-12-08  Chris Toshok  <toshok@ximian.com>
860
861         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
862         calls EndEdit, it needs to be called before we set current_cell to
863         its new value.  Otherwise, we end up committing the value in the
864         textbox to the new cell as well.  Fixes bug #80160.
865
866 2006-12-08  Chris Toshok  <toshok@ximian.com>
867
868         * Form.cs (set_CancelButton): if the button's DialogResult is
869         None, set it to Cancel.  Fixes bug 80180.
870
871 2006-12-08  Jackson Harper  <jackson@ximian.com>
872
873         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
874         to watch ourselves when setting the canvas size and setting the
875         scrollbar values.
876
877 2006-12-08  Chris Toshok  <toshok@ximian.com>
878
879         * DataGrid.cs: comment out the two MakeTransparent calls for the
880         time being so people using trunk (and not 1.2.2) on windows can
881         actually use the datagrid.  This deals with bug #80151.
882
883 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
884
885         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
886         Graphics.DrawImage (image, int, int, int, int) overload instead
887         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
888         the dpi difference and was blurring images it drew.
889         [Fixes bug #79960]
890
891 2006-12-08  Chris Toshok  <toshok@ximian.com>
892
893         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
894         rowcnt is 0 (such as with an empty datasource), and make sure we
895         initialize not_usedarea.Y to cells.Y, so we don't draw over the
896         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
897
898 2006-12-08  Chris Toshok  <toshok@ximian.com>
899
900         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
901         grid.
902
903 2006-12-08  Chris Toshok  <toshok@ximian.com>
904
905         [ Fixes bug #80167 ]
906         
907         * ThemeWin32Classic.cs: don't draw the image if the button's flat
908         style is FlatStyle.System.
909
910         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
911         ButtonBase.flat_style private, and switch uses of it to the public
912         property.
913         
914 2006-12-08  Chris Toshok  <toshok@ximian.com>
915
916         [ Fixes bug #80121 ]
917         
918         * ThemeWin32Classic.cs: center the caption text in the datagrid
919         when we draw it.
920
921         * DataGrid.cs: lessen the amount we add to the caption height from
922         6 to 2.  6 was making it huge.
923
924 2006-12-08  Andreia Gaita  <avidigal@novell.com>
925
926         * UpDownBase: Handle MouseWheel call directly instead of capturing
927         the inner textbox's OnMouseWheel. Fixes #80166
928
929 2006-12-08  Jackson Harper  <jackson@ximian.com>
930
931         * TextControl.cs: We need to invalidate the textbox when we empty
932         it (how had this not been discovered before?)
933
934 2006-12-08  Jackson Harper  <jackson@ximian.com>
935
936         * TextBoxBase.cs: Reworked the mouse down code so I could get it
937         to behave like MS, we now ignore the eventargs.Click and just
938         track state ourself, which we were already doing anyways.
939         - Constrain the double click handler to the double click size.
940         
941 2006-12-08  Chris Toshok  <toshok@ximian.com>
942
943         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
944         direction if that scrollbar isn't shown.  fixes bug #80158.
945
946 2006-12-08  Andreia Gaita  <avidigal@novell.com>
947
948         * NumericUpDown.cs: Update value on getter. Fixes #79950
949
950 2006-12-08  Chris Toshok  <toshok@ximian.com>
951
952         * MenuItem.cs: add back in the event cloning code.  I didn't know
953         how to do it in the face of the EventHandlerList work i'd done
954         last week.  Fixes bug #80183.
955
956 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
957
958         * Control.cs: Add an invalidate to the BackgroundImage setter.
959         [Fixes 80184]
960
961 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
962
963         * ToolStrip*: Add some small properties reported by MoMA, fix event
964         firing and default properties based off of unit tests, and add some
965         attributes based off of the class status page.
966
967 2006-12-07  Jackson Harper  <jackson@ximian.com>
968
969         * TextBoxBase.cs: Take HideSelection into account when determining
970         whether or not to show the selection.
971         * RichTextBox.cs: After inserting the RTF into the document move
972         the cursor to the beginning of the document.
973
974 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
975
976         * Control.cs: Remove static ArrayList "controls" which maintained
977         a reference to every control created.
978         * Application.cs: Create a static FormCollection to maintain a reference
979         to every form created.  Use it in places that formerly enumerated through
980         the controls one looking for forms.
981         * Form.cs: Add and remove self from above FormCollection.
982
983 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
984
985         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
986           not libgdk (though it makes me wonder why I didn't have any
987           problems)
988
989 2006-12-07  Chris Toshok  <toshok@ximian.com>
990
991         [ you had to know this was coming after that last commit...]
992         
993         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
994         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
995         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
996         XCopyArea).
997
998 2006-12-07  Chris Toshok  <toshok@ximian.com>
999
1000         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
1001         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
1002         all the behavior we need for double buffering.
1003
1004         * XplatUIDriver.cs: implement the 3 double buffer methods using a
1005         client side Bitmap, just like the old Control-based double buffer
1006         code did.  The methods are virtual, so each XplatUI driver
1007         subclass can replace the implementation to use a faster, platform
1008         specific approach.
1009
1010         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
1011         double buffer code, and clean things up a bit in the process.
1012
1013 2006-12-06  Chris Toshok  <toshok@ximian.com>
1014
1015         * Control.cs: reindent WndProc.
1016
1017 2006-12-06  Chris Toshok  <toshok@ximian.com>
1018
1019         [ I wanna be like BenM when I grow up ]
1020         
1021         * Hwnd.cs: create a single static Graphics object on the static
1022         Bitmap we create.  use this for our text measurements.
1023
1024         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
1025         This was causing us to allocate a backbuffer for every control,
1026         even when it wasn't flagged as double buffered.  Instead use the
1027         single graphics instance.  This might have implications for
1028         multithreaded applications.  If we run into problems we can switch
1029         to creating 1 Graphics per control, on the static Hwnd bitmap.
1030
1031         this change nets us a 7M savings in private dirty mappings when
1032         running FormsTest.exe.
1033
1034 2006-12-06  Chris Toshok  <toshok@ximian.com>
1035
1036         * ListView.cs: the BackgroundImage override is just to set
1037         attributes.  chain up to base.BackgroundImage.
1038
1039         * RichTextBox.cs: same.
1040
1041         * ToolBar.cs: same, but we need to also redraw the toolbar when it
1042         changes, so instead a handler for BackgroundImageChanged.
1043         
1044         * Control.cs: make background_image private.
1045
1046 2006-12-06  Chris Toshok  <toshok@ximian.com>
1047
1048         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
1049         sure we even need this assignment, but roll with it for now.
1050
1051         * Control.cs: make the cursor field private.
1052
1053 2006-12-06  Chris Toshok  <toshok@ximian.com>
1054
1055         * Form.cs: we don't need to explicitly set ImeMode to
1056         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
1057         behavior in the face of ImeMode.Inherit.
1058
1059         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
1060         change the ctor's assignment to use ImeMode instead of ime_mode.
1061
1062         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
1063         ImeModeInherit.  Only check for the parent's imemode (and return
1064         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
1065         This fixes the button unit test, which sets both ImeMode and
1066         DefaultImeMode to ImeMode.Disable.
1067
1068         also make the ime_mode field private.
1069
1070 2006-12-06  Chris Toshok  <toshok@ximian.com>
1071
1072         * Control.cs: make control_style private.
1073
1074         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
1075         setting the styles to true, then setting them to false instead of
1076         reverting to their previous values.
1077
1078         also, call SetStyle on the scrollbars instead of using
1079         control_style directly.
1080
1081 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
1082
1083         * FormCollection.cs: Implement. [2.0]
1084
1085 2006-12-06  Chris Toshok  <toshok@ximian.com>
1086
1087         * Control.cs: make tab_stop private.
1088
1089         * Label.cs: set TabStop, not tab_stop.  reformat some event
1090         add/remove methods to make them more compact.
1091
1092 2006-12-06  Chris Toshok  <toshok@ximian.com>
1093
1094         * RadioButton.cs: fix TabStop handling.
1095
1096 2006-12-06  Chris Toshok  <toshok@ximian.com>
1097
1098         * TextBox.cs: remove the explicit assignments to has_focus.
1099         Control does that.
1100
1101         * ButtonBase.cs: remove the assignment to has_focus.  Control will
1102         manage that.
1103         
1104 2006-12-06  Chris Toshok  <toshok@ximian.com>
1105
1106         * ButtonBase.cs: remove all uses of is_enabled from this code.
1107         it's always true when any of the code containing the checks is
1108         executed.
1109
1110 2006-12-06  Chris Toshok  <toshok@ximian.com>
1111
1112         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
1113         with different semantics (some are present in both 1.1 and 2.0
1114         profiles) so that we match MS's behavior in our unit tests.
1115
1116 2006-12-06  Jackson Harper  <jackson@ximian.com>
1117
1118         * TextControl.cs: Make this operation undoable.
1119         * TextBoxBase.cs: Factor the border width into the preferred
1120         height.
1121         - implement Modified as per the spec.
1122
1123 2006-12-06  Chris Toshok  <toshok@ximian.com>
1124
1125         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
1126
1127 2006-12-06  Chris Toshok  <toshok@ximian.com>
1128
1129         * Control.cs: make right_to_left and context_menu fields private.
1130
1131 2006-12-06  Chris Toshok  <toshok@ximian.com>
1132
1133         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
1134         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
1135         Control.child_controls private.  switch all uses over to
1136         Control.Controls.
1137
1138 2006-12-06  Chris Toshok  <toshok@ximian.com>
1139
1140         * System.Windows.Forms/GroupBox.cs,
1141         System.Windows.Forms/AccessibleObject.cs,
1142         System.Windows.Forms/ErrorProvider.cs,
1143         System.Windows.Forms/Control.cs,
1144         System.Windows.Forms/UpDownBase.cs,
1145         System.Windows.Forms/ScrollBar.cs,
1146         System.Windows.Forms/DateTimePicker.cs,
1147         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
1148         System.Windows.Forms/ToolTip.cs,
1149         System.Windows.Forms/RadioButton.cs,
1150         System.Windows.Forms/LinkLabel.cs,
1151         System.Windows.Forms/Splitter.cs,
1152         System.Windows.Forms/TextBoxBase.cs,
1153         System.Windows.Forms/ToolStripTextBox.cs,
1154         System.Windows.Forms/ContainerControl.cs,
1155         System.Windows.Forms/ThemeWin32Classic.cs,
1156         System.Windows.Forms/SizeGrip.cs,
1157         System.Windows.Forms/ToolStripDropDown.cs,
1158         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
1159         private.  switch all uses over to Control.Parent.
1160
1161 2006-12-06  Chris Toshok  <toshok@ximian.com>
1162
1163         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
1164         Control does this before calling emitting these events.
1165
1166         * TabControl.cs: same.
1167
1168         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
1169         Control.client_rect.
1170
1171         * ButtonBase.cs: use the ClientSize property instead of the
1172         client_size field.
1173
1174         * ScrollableControl.cs: same.
1175
1176         * Control.cs: another pass at making properties private.  also,
1177         move the initialization of tab_stop to the ctor.
1178
1179 2006-12-05  Andreia Gaita <avidigal@novell.com>
1180
1181         * TabControl.cs: Let the selected index be set freely if the 
1182         control handle is not yet created.
1183
1184 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1185
1186         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
1187         internal until I can rewrite DefaultLayout.
1188         * ToolStrip.cs: Fix build error and some general cleaning.
1189         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
1190         Fix build errors caused by making some of Control's fields private.
1191
1192 2006-12-05  Jackson Harper  <jackson@ximian.com>
1193
1194         * TextControl.cs: Redo Insert a little so that it use IndexOf
1195         instead of Split, this prevents it from messing up on things like
1196         \n\n\n. Also more effecient since the split array doesn't need to
1197         be created.
1198         * TextBoxBase.cs: AppendText doesnt handle multiline and non
1199         multiline text differently, this is the first of many fixes that
1200         will make multiline/non-multiline the same thing as far as the
1201         TextBoxBase is concerned.
1202         - Don't split the text and insert lines, this can lose some line
1203         endings (like is the last line a soft or hard break). Instead use
1204         the new Insert.
1205         - Fix an off by one when combining all the lines in the Text
1206         getter.
1207         - Remove separate multiline handling from the Text getter/setter.
1208
1209 2006-12-05  Chris Toshok  <toshok@ximian.com>
1210
1211         * ButtonBase.cs: a few changes:
1212
1213         - don't reinitialize internal Control fields in the ctor when they
1214         have the same values as Control sets them.
1215
1216         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
1217         this before calling those methods.
1218
1219         - we don't need to call Refresh for anything.  use Invalidate
1220         instead.
1221
1222         - OnEnabledChanged doesn't need to redraw at all - Control.cs
1223         calls Refresh in its OnEnabledChanged.
1224         
1225         - several of the events we were registered for in the ctor to
1226         redraw ourselves already include calls to Invalidate in the
1227         property setters that raise the events.  remove the extra
1228         invalidation.
1229
1230         - reformat a switch statement that was 83274658 columns wide.
1231         
1232 2006-12-05  Mike Kestner  <mkestner@novell.com>
1233
1234         * ComboBox.cs: fix a unit test regression from a TextBox
1235         SelectionLength return of -1 when there's no selection.  
1236
1237 2006-12-05  Chris Toshok  <toshok@ximian.com>
1238
1239         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
1240         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
1241         cleaning up some of the internal Control fields being used by
1242         subclasses.
1243
1244 2006-12-05  Mike Kestner  <mkestner@novell.com>
1245
1246         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
1247         listbox after AddImplicit calls since it defaults to hidden. Add a 
1248         hack to preserve requested heights across DropDownStyle changes.
1249
1250 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1251
1252         * PropertyGrid.cs: Hide FindFirstItem method from public API.
1253
1254 2006-12-05  Chris Toshok  <toshok@ximian.com>
1255
1256         * DataGridView.cs: fix compiler warnings.
1257
1258         * PrintControllerWithStatusDialog.cs: same.
1259
1260         * ToolBar.cs: same.
1261
1262         * FolderBrowserDialog.cs: same.
1263
1264         * Splitter.cs: same.
1265
1266         * DataGridViewComboBoxCell.cs: same.
1267
1268         * XplatUIWin32.cs: same.
1269
1270         * PictureBox.cs: same.
1271
1272         * Win32DnD.cs: same.
1273
1274         * PageSetupDialog.cs: same.
1275
1276         * FileDialog.cs: same.
1277
1278         * PrintDialog.cs: same.
1279
1280         * DataGridTextBoxColumn.cs: same.
1281
1282         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
1283
1284 2006-12-05  Chris Toshok  <toshok@ximian.com>
1285
1286         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
1287         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
1288         System.ComponentModel.EventHandlerList work.
1289
1290 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
1291
1292         * DrawTreeNodeEventArgs.cs: Added.
1293
1294 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1295         
1296         * InternalWindowManager.cs: Remove an unused field.
1297         
1298 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1299
1300         * InternalWindowManager.cs:
1301         - Save the point where the title bar is clicked.
1302         
1303         * MdiWindowManager.cs:
1304         - Only allow moving of the window as long as the 
1305         clicked point on the title bar does not get out of
1306         MdiClient's rectangle. Fixes #79982.
1307         
1308         * MdiClient.cs:
1309         - Added Horizontal/VerticalScrollbarVisible.
1310         - Simplified the scrollbar sizing algorithm.
1311         - Cache the difference in scrolled value in
1312         H/VBarValueChanged and move the calculation out
1313         of the for loop.
1314
1315 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1316
1317         * Control.cs: Make the Console.WriteLine in WndProc 
1318         write more info.
1319
1320 2006-12-05  Chris Toshok  <toshok@ximian.com>
1321
1322         * ToolStripManager.cs, ToolStripButton.cs,
1323         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
1324         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
1325         ToolStripSplitButton.cs, ToolStripSeparator.cs,
1326         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
1327         ToolStripProgressBar.cs, ToolStripContainer.cs,
1328         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
1329         to using System.ComponentModel.EventHandlerList.
1330
1331 2006-12-04  Chris Toshok  <toshok@ximian.com>
1332
1333         * LinkLabel.cs: fix up compiler warnings.
1334
1335         * TableLayoutSettings.cs: same.
1336
1337         * TreeView.cs: same.
1338
1339         * ToolBar.cs: same.
1340
1341         * TabControl.cs: same.
1342
1343         * RichTextBox.cs: same.
1344
1345         * ListViewItem.cs: same.
1346
1347         * PropertyGrid.cs: same.
1348
1349         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
1350
1351         * ToolTip.cs same.
1352
1353         * TextRenderer.cs: fix up compiler warnings.
1354
1355         * Label.cs: same.
1356
1357         * Form.cs: corcompare fixes.
1358
1359         * PictureBox.cs: fix up compiler warnings.
1360
1361         * ImageListStreamer.cs: same.
1362
1363         * TrackBar.cs: corcompare fix.
1364
1365         * Control.cs: fix up compiler warnings.
1366
1367         * SplitterPanel.cs: same.
1368
1369         * NumericTextBox.cs: same.
1370
1371         * ImageList.cs: same.
1372
1373         * StatusStrip.cs: same.
1374
1375         * ProgressBar.cs: corcompare fix.
1376
1377         * ToolStripButton.cs: fix up compiler warnings.
1378
1379         * ToolStripStatusLabel.cs: same.
1380
1381         * ToolStripSplitButton.cs: same.
1382
1383         * ToolStripSeparator.cs: same.
1384
1385         * ToolStripProgressBar.cs: same.
1386
1387         * ToolStripDropDownMenu.cs: same
1388
1389         * ToolStripDropDown.cs: same.
1390
1391         * ToolStripDropDownButton.cs: same.
1392
1393         * ToolStrip.cs: same.
1394
1395         * ToolStripControlHost.cs: same.
1396
1397         * ToolStripContentPanel.cs: same.
1398
1399         * ToolStripDropDown.cs: same.
1400
1401         * ToolStripContainer.cs: same.
1402
1403         * ToolStripPanel.cs: same, and add "new" where we need it to work
1404         with the new ArrangedElementCollection.
1405
1406         * ToolStripItemCollection.cs: add "new" where we need it to work
1407         with the new ArrangedElementCollection.
1408
1409 2006-12-04  Andreia Gaita <avidigal@novell.com>
1410
1411         * TabControl.cs: Fix default tab selection to after TabControl
1412         gets focus and not before. Fixes #80128
1413
1414 2006-12-04  Chris Toshok  <toshok@ximian.com>
1415
1416         * DataGridTableStyle.cs: remove the gross calling of
1417         datagrid.Refresh from here.  It's a broken idea and it doesn't
1418         work anyway.
1419
1420         * DataGrid.cs: instead, just register/unregister from the
1421         DataGridTableStyle events in CurrentTableStyle.  we play it
1422         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
1423         even though some would most likely not require it.  Fixes bug
1424         #80115 (and one portion of #80117 as a side effect).
1425
1426 2006-12-04  Chris Toshok  <toshok@ximian.com>
1427
1428         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
1429         so the textbox (if any) goes away.  Fixes bug #80117.
1430
1431 2006-12-04  Chris Toshok  <toshok@ximian.com>
1432
1433         * DataGridColumnStyle.cs: set the column's readonly property
1434         initially based on the property descriptor's IsReadOnly.  Fixes
1435         bug #80044.
1436
1437 2006-12-04  Chris Toshok  <toshok@ximian.com>
1438
1439         * ComboBox.cs: wrap the dropdown style changing work in
1440         SuspendLayout/ResumeLayout.  Fixes bug #79968.
1441
1442 2006-12-04  Jackson Harper  <jackson@ximian.com>
1443
1444         * TextBoxBase.cs: Fix off by one, since these are one-based.
1445         * TextBox.cs: Select all the text when we get focus.  The TextBox
1446         does this but the RTB does not.
1447
1448 2006-12-04  Chris Toshok  <toshok@ximian.com>
1449
1450         * DataGridTextBoxColumn.cs: remove some spew.
1451
1452         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
1453         but some part of me is saying "it shouldn't be here.."  At any
1454         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
1455         setting the value.
1456
1457 2006-12-04  Chris Toshok  <toshok@ximian.com>
1458
1459         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
1460         to reassign the propertydescriptor.
1461
1462 2006-12-04  Jackson Harper  <jackson@ximian.com>
1463
1464         * TextBoxBase.cs:
1465         * TextControl.cs: Remove some unused variables.  Maybe this will
1466         patch things up between mike and I.
1467         - don't split lines less then one char wide, if the viewport is
1468         that small text won't be visible anyways.
1469         
1470 2006-12-04  Jackson Harper  <jackson@ximian.com>
1471
1472         * TextBoxBase.cs: Default selection length is -1, need to do some
1473         more testing on windows to see when this is used for the property.
1474         - Redid the Lines [] property to that we properly remove soft line
1475         breaks
1476         - added support for preserving carriage returns
1477         -  CanUndo is not a variable like 'is undo enabled' it just returns
1478         true if there is undo operations available.
1479         - AppendText doesn't need to grab the last tag itself anymore,
1480         this happens automatically when we move the cursor.
1481         * TextControl.cs: Add CompoundActions to the undo class. This
1482         allows combining the other operations into one big option.  ie a
1483         paste will combine { delete old, insert new, move cursor }
1484         - Add InsertString undo operation
1485         - New method for deleting multiline text
1486         - Add carriage returns to lines. So we can preserve carriage
1487         returns when text is 'roundtripped'
1488
1489 2006-12-04  Chris Toshok  <toshok@ximian.com>
1490
1491         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
1492         minimum 0.  Fixes the scrollbar exception in bug #80136.
1493
1494 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1495
1496         * MdiClient.cs: 
1497         * MdiWindowManager: Removed unused fields and methods.
1498         
1499 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1500         
1501         * StatusBar.cs: Update all panels when a AutoSize=Contents
1502         panel needs updating.
1503         
1504         * StatusBarPanel.cs: Remove twidth and only use initialize.
1505         Fixes #80031.
1506                 
1507 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1508
1509         * Form.cs: When a form's MdiParent is set add it directly
1510         on top of the z-order in stead of relying on MdiClient's
1511         ActivateChild to do it. Fixes #80135.
1512         
1513         * MdiClient.cs: 
1514         - Remove original_order, mdi_child_list is already doing
1515         the same thing.
1516         - Create mdi_child_list on construction in
1517         stead of first use (avoids a few null checks).
1518
1519         * MenuItem.cs: Use an already existing list of mdi children
1520         to get the correct order of children and remove the other
1521         redundant list.
1522
1523 2006-12-04  Chris Toshok  <toshok@ximian.com>
1524
1525         * PropertyGridView.cs: cached_splitter_location is only used in
1526         !DOUBLEBUFFER code.
1527
1528         * PropertyGrid.cs: implement the ComComponentNameChanged event
1529         using Events, hoping that would fix the warning.  Looks like a
1530         compiler bug instead (#80144).
1531
1532         * PropertyManager.cs: remove unused method.
1533
1534 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
1535
1536         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
1537         include parentesis to fix expression evaluation. Fixes #79634.
1538
1539 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1540         
1541         * MenuAPI.cs:
1542         - Changes to fix behavior in Menu control, some reported in #80097
1543         and other detected during behavior refactory like a select event
1544         problems.
1545         - Remove unneded "if's" conditions.
1546         - Created an internal to flag when popup is active in control, we need 
1547         it because in .NET you can have menu active but without popup active
1548         when you active menu using popup without visible items.
1549         - Mimic win32 behavior for Select and Popup events.  
1550         - Dont open popup menu when you dont have visible subitems.
1551         - Do nothing when click on disabled menu item.
1552         - Some small changes to follow the coding style guidelines.
1553         - Unselect menu only when another control gives focus. Fixes #80097.
1554         - Remove unused code.
1555         
1556         * MenuItem.cs: internal VisibleItems method to check if menu
1557         theres visible subitems, it will be usefull to fix some 
1558         behavior in Menu control.
1559         
1560 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1561         
1562         * Timer.cs: Tag property for 2.0 profile.
1563         
1564 2006-12-01  Chris Toshok  <toshok@ximian.com>
1565
1566         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
1567         
1568         * Win32DnD.cs: comment out some unused fields.
1569
1570         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
1571         some unused properties/methods.
1572
1573         * XplatUIX11.cs: fix MousePosition so we override the base class's
1574         property instead of conflicting with it.
1575
1576         * PictureBox.cs: comment out some unused fields
1577
1578         * OSXStructs.cs: make some struct fields public.
1579
1580         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
1581         MousePosition so we override the base class's property instead of
1582         conflicting with it.
1583
1584         * X11Dnd.cs: comment out some unused fields
1585
1586         * X11DesktopColors.cs: fix some struct field visibility to quiet
1587         the compiler.
1588
1589         * X11Dnd.cs: remove some debug code.
1590
1591         * ThemeClearlooks.cs: comment out unused field.
1592
1593         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
1594
1595         * ThemeGtk.cs: comment out some unused pinvokes.
1596
1597         * Timer.cs: remove some unused fields.
1598
1599         * ThemeClearlooks.cs: comment out unused field.
1600
1601         * UpDownBase.cs: comment out unused field.
1602
1603         * DataObject.cs: comment out unused field.
1604
1605         * DataGridBoolColumn.cs: reomve unused field.
1606
1607         * DataGrid.cs: remove unused field.
1608
1609         * Cursor.cs: remove old ToBitmap code.
1610
1611         * ControlPaint.cs: remove unused method.
1612
1613         * ScrollBar.cs: remove unused fields.
1614
1615         * ComboBox.cs: remove unused field, and chain up to
1616         AccessibleObject ctor.
1617
1618         * ListBox.cs: remove unused field.
1619
1620         * ButtonBase.cs: wrap a couple fields in NET_2_0.
1621
1622         * GridEntry.cs: remove unused fields.
1623
1624         * Binding.cs: remove unused fields.
1625
1626         * AxHost.cs: remove unused method.
1627
1628         * ContainerControl.cs: remove unused field.
1629
1630         * ScrollableControl.cs: remove unused fields.
1631
1632 2006-12-01  Chris Toshok  <toshok@ximian.com>
1633
1634         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
1635         the Where/WhereString stuff.  it's easy enough to CWL
1636         Environment.StackTrace.
1637
1638         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
1639         unused private fields.
1640
1641 2006-12-01  Jackson Harper  <jackson@ximian.com>
1642
1643         * TextControl.cs: Do not update the view while inserting multiline
1644         text. If we update the view we might wrap lines, before entering
1645         the new lines, which causes the new line insertion calculations to
1646         be totally fubared.
1647         - Remove an old TODO
1648         - Make debug output a little nicer
1649         
1650 2006-12-01  Chris Toshok  <toshok@ximian.com>
1651
1652         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
1653
1654 2006-12-01  Chris Toshok  <toshok@ximian.com>
1655
1656         [ fix the majority of the CS0108 warnings we've been suppressing ]
1657         
1658         * TreeView.cs: mark BackgroundImageChanged as 'new'.
1659
1660         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
1661         to "LayoutToolBar" to quiet mcs.
1662         
1663         * TabControl.cs: mark our ControlCollection class as 'new'.
1664
1665         * TextBoxBase.cs: mark some events as 'new'.
1666
1667         * Splitter.cs: TabStop is 'new'.
1668
1669         * ControlBindingsCollection.cs: mark a few methods as new since
1670         they change the visibility from protected to public.
1671
1672         * RadioButton.cs: DoubleClick -> base class, and remove unused
1673         HaveDoubleClick.
1674
1675         * MonthCalendar.cs: ImeMode property -> base class, and mark many
1676         events as new.
1677
1678         * NumericUpDown.cs: TextChanged -> base class.
1679
1680         * CheckedListBox.cs: mark our ObjectCollection class as new to
1681         quiet mcs.
1682
1683         * FolderBrowserDialog.cs: make HelpRequest event new and have it
1684         muck with the base class.
1685
1686         * StatusBar.cs: fix some mcs warnings about Update being the same
1687         name as a base class method.
1688
1689         * RichTextBox.cs: mark some events as new, and make them do things
1690         to the base class impl.
1691
1692         * UserControl.cs: mark TextChanged as new, and have it manipulate
1693         base.TextChanged.
1694
1695         * UpDownBase.cs: mark some things new.
1696
1697         * CheckBox.cs: mark DoubleClick "new", and add some text about
1698         what we need to look at.
1699
1700         * Panel.cs: make the events "new", and manipulate the base
1701         version.  these are just here for attributes.
1702
1703         * AccessibleObject.cs: make owner private.
1704
1705         * Control.cs: deal with AccessibleObject.owner being private.
1706         cache our own copy if we need it.
1707
1708         * Button.cs: add "new" to the DoubleClickEvent.
1709
1710         * ListBox.cs: no need to track our own has_focus here.  let
1711         Control.has_focus do it for us.  Also some other work to clear up
1712         warnings about not overriding base class methods of the same name.
1713         
1714         * ComboBox.cs: clear up some warnings about not override base
1715         class methods of the same name.
1716
1717 2006-12-01  Chris Toshok  <toshok@ximian.com>
1718
1719         * Form.cs: flag a few things as "new" to quiet some of the mcs
1720         warnings.
1721
1722         * AxHost.cs: same.
1723
1724         * PrintPreviewDialog.cs: same.
1725
1726         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
1727         now DGV isn't so horrible on the class status page.  also, move
1728         all events to using System.ComponentModel.EventHandlerList.  my
1729         wrists hurt.
1730
1731 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1732
1733         * MdiWindowManager.cs:
1734         - Set form to active mdi child if shown,
1735         and update the active mdi child to the next 
1736         remaining child in the z-order if the form is hidden.
1737
1738         * Form.cs: 
1739         - Track if the form has been visible and if its 
1740         visibility is beeing changed, so that the MdiClient
1741         can properly decide the ActiveMdiChild. The MdiClient 
1742         cannot track this since the form can change visibility 
1743         before MdiClient is created.
1744
1745         * MdiClient.cs:
1746         - Don't activate anything of the parent form is changing
1747         its visibility.
1748         - Rework ActiveMdiChild to only return visible mdi 
1749         children and take into account several other corner 
1750         cases.
1751
1752 2006-12-01  Chris Toshok  <toshok@ximian.com>
1753
1754         * IBindableComponent.cs: new 2.0 interface.
1755
1756 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
1757
1758         * DataGrid.cs: Font for caption area is bold by default.
1759
1760 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
1761
1762         * Menu.cs: Tag property for 2.0.
1763         
1764 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1765
1766         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
1767         
1768 2006-12-01  Chris Toshok  <toshok@ximian.com>
1769
1770         * TreeView.cs: doh, the Begin* events should be
1771         TreeViewCancelEventHandler.
1772
1773 2006-12-01  Chris Toshok  <toshok@ximian.com>
1774
1775         * Form.cs: Form.ControlCollection already stores off the
1776         form_owner field.  don't access the base class's internal "owner"
1777         field.
1778
1779         * Control.cs: make all the fields in Control.ControlCollection
1780         private.  there's no need for any internal fields here.
1781
1782 2006-12-01  Chris Toshok  <toshok@ximian.com>
1783
1784         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
1785         OnHandleCreated.  Fixes bug #80109.
1786
1787 2006-12-01  Chris Toshok  <toshok@ximian.com>
1788
1789         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
1790         SplitContainer.cs, Control.cs, StatusStrip.cs,
1791         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
1792         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
1793         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
1794         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
1795         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
1796         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
1797         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
1798         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
1799         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
1800         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
1801
1802         do most of the work to convert our code over to use
1803         System.ComponentModel.Component.Events for
1804         adding/removing/dispatching events.
1805
1806
1807 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1808
1809         * DataGridView.cs: Fix an ArgumentNullException reported 
1810         twice today in IRC.
1811
1812 2006-11-30  Mike Kestner  <mkestner@novell.com>
1813
1814         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
1815         grabbed listbox.  Fixes #80036 and #80101.
1816
1817 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1818
1819         * Message.cs: Changed ToString() to match MS.
1820         
1821 2006-11-30  Jackson Harper  <jackson@ximian.com>
1822
1823         * TextBoxBase.cs: You can still change the selected text on a read
1824         only textbox.
1825         * TextControl.cs: Lower magic number for wrap calculations. This
1826         lets text get closer to the right (far) edge.
1827
1828 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1829
1830         * Control.cs: Tweak 2.0 layout properties.
1831         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
1832         * TextRenderer.cs: Add a new overload.
1833         * ToolStrip*: Huge amount of changes and new features.
1834
1835 2006-11-30  Mike Kestner  <mkestner@novell.com>
1836
1837         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
1838         scroll range correct.  Fixes #79994.
1839
1840 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1841
1842         * MdiWindowManager.cs: Update main form's text when
1843         a form is closed. (fixes #80038)
1844         
1845 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
1846
1847         * ToolBar.cs:
1848         - Fix an regression in ButtonSize.
1849         - Get ImeMode default value change to "Disable".
1850         - Get ShowTooltips default value change to true, default value is 
1851         "false" but after make a test in .NET we get "true" result as default.
1852         
1853 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
1854
1855         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
1856
1857 2006-11-29  Chris Toshok  <toshok@ximian.com>
1858
1859         * XplatUIWin32.cs (GetWindowTransparency): check return value of
1860         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
1861         SetWindowTransparency hasn't been called.
1862
1863 2006-11-29  Chris Toshok  <toshok@ximian.com>
1864
1865         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
1866         if it's supported.
1867         (set_AllowTransparency): reorder things a little so that the
1868         WS_EX_LAYERED style is removed properly.
1869
1870 2006-11-29  Chris Toshok  <toshok@ximian.com>
1871
1872         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
1873         
1874         * Form.cs: only call the XplatUI transparency method (get/set) if
1875         SupportsTransparency says it's supported. Otherwise fallback to
1876         doing nothing (in the set case) or returning the instance field we
1877         cache (in the get case).
1878
1879         * XplatUIStructs.cs: add TransparencySupport flag enum.
1880         
1881         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
1882         change to SupportsTransparency.
1883
1884         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
1885         TransparencySupport.None from SupportsTransparency.
1886
1887         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
1888         TransparencySupport.Set from SupportsTransparency.
1889
1890         * XplatUIWin32.cs: implement GetWindowTransparency calling
1891         GetLayeredWindowAttributes, and implement SupportsTransparency by
1892         checking whether or not both
1893         GetWindowTransparency/SetWindowTransparency are available
1894         entrypoints.  We need to do this since SetWindowTransparency is
1895         available as of win2k, but GetWindowTransparency requires winxp.
1896         yay win32 api.
1897
1898         * XplatUI.cs: Add GetWindowTransparency, and change
1899         SupportsTransparency to allow for either/both Get/Set.
1900
1901 2006-11-29  Chris Toshok  <toshok@ximian.com>
1902
1903         * DataGrid.cs: keep from going into an infinite loop redrawing a
1904         datagrid that has no datasource.  Fixes bug #80033.
1905
1906 2006-11-29  Chris Toshok  <toshok@ximian.com>
1907
1908         * MenuItem.cs: fix the NRE when we assign text (and therefore call
1909         Invalidate) before the mainmenu has been assigned to a control.
1910
1911 2006-11-29  Chris Toshok  <toshok@ximian.com>
1912
1913         * DataGrid.cs: detect when we should be double the double click
1914         row/column autosize stuff, although that codepath has yet to be
1915         written.  part of the work for bug #79891.
1916
1917 2006-11-29  Chris Toshok  <toshok@ximian.com>
1918
1919         * Binding.cs (SetControl): fix unit test.
1920
1921 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1922
1923         * PageSetupDialog.cs: Validate the margins and set them in
1924         PageSettings. 
1925         * NumericTextBox.cs: New class to mimic the behavior of the
1926         textboxes used in the printing dialogs.
1927
1928 2006-11-29  Andreia Gaita  <avidigal@novell.com>
1929         
1930         * Form.cs: Revert previous change (remove call UpdateBounds
1931         from form constructor), because it messes with the handle creation
1932         order, and that one needs lots and lots of love.
1933         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
1934         for valid printer and throw InvalidPrinterException if document
1935         is set but printer not valid), adding a MonoTODO. Once 
1936         handle creation is done properly, we can put this back in.
1937
1938 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1939
1940         * MenuItem.cs: Create a invalidate method for menu item, to be
1941         calling from set text, it make text changes to imadiate update
1942         on screen. Fixes #80013. 
1943         
1944 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1945
1946         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
1947         fixes bug #80070 and some other problem on toolbar buttons
1948         layout.
1949
1950 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1951
1952         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
1953         with dotted brush.      Fixes #79564
1954         
1955 2006-11-28  Andreia Gaita  <avidigal@novell.com>
1956
1957         * Form.cs: Removed call to UpdateBounds on Form
1958         constructor, it was causing a call to CreateHandle
1959         before it was supposed to.
1960         * PrintControllerWithStatusDialog: Applied patch
1961         by Chris Toshok to hide controller when there are
1962         no printers available.
1963         PrintDialog.cs: initialize printer settings to 
1964         null - correct DefaultValues test #5
1965         * PrintPreviewControl.cs: Move PrintController
1966         initialization to GeneratePreview
1967         * PrintPreviewDialog.cs: 
1968         - Remove Preview generation     from Document_set(). It is 
1969         called on OnPaint
1970         - Throw InvalidPrinterException on CreateHandle if
1971         a Document is set but there are no printers or 
1972         printer is not valid.
1973         * ThemeWin32Classic: don't paint PrintPreviewControl
1974         if there is nothing to paint    
1975
1976 2006-11-28  Miguel de Icaza  <miguel@novell.com>
1977
1978         * Form.cs: Add another popular method.
1979
1980         * TabPage.cs: ditto.
1981
1982 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1983
1984         * MenuItem.cs: Fixed a warning.
1985         * InternalWindowManager: Fixed a warning.
1986
1987 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1988
1989         * MenuItem.cs:
1990         - When cloning a menu also clone MdiList and clone the 
1991           window menu items properly (as the forms and menuitems
1992           are kept in an internal hashtable, these need updating 
1993           as well)
1994         - Rewrote the window menu code, menu items are added in the
1995           order the forms were added to their parent, and they are
1996           updated every time the window menu is shown (before the
1997           list was only generated once, in the current order of the
1998           forms, and would never be updated). A checkmark is shown
1999           next to the item corresponding to the active mdi child.
2000
2001 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2002
2003         * XplatUIStructs.cs: 
2004         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
2005         
2006         * XplatUIWin32.cs: 
2007         - Added TME_NONCLIENT to TMEFlags.
2008         - Handles WM_NCMOUSEMOVE in GetMessage to 
2009           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
2010
2011         * MdiWindowManager:
2012         - Now merges mdi child menu to parent menu when maximized.
2013         - Recalculate NC areas of both mdi child and mdi parent. 
2014           Fixes #79757 (4).
2015           on window state and size changes.Fixes #79844 (3).
2016         - Handle WM_NCCALCSIZE to properly calculate borders.
2017
2018         * Form.cs:
2019         - Add/remove to the mdi containers list of mdi children 
2020           in the order they are added.
2021         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
2022           to the maximized mdi child.
2023         
2024         * InternalWindowManager.cs:
2025         - Only execute a click on the control buttons on the mouse up,
2026           not on the mouse down. Show the state of the button 
2027           (was only showing Normal state, never Pressed state). The
2028           pressed button now follows the mouse (if you click the Close 
2029           button and move the mouse over the Maximize button, the 
2030           Maximize button will be shown as pressed). Since Win32 does
2031           not generate WM_NCLBUTTONUP if you release the button outside
2032           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
2033           it as a mouse up.
2034         
2035         * ThemeWin32Classic.cs:
2036         - Draw a missing border around mdi child forms. Fixes #79844 (2).
2037
2038         * MdiClient.cs:
2039         - Added a list of forms which contains the order the forms are
2040           added to the mdi parent.
2041         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
2042         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
2043         - If the active form changes set the scrollbars to the top
2044           of the Z order, otherwise the form could hide them.
2045         - Scrollbars are now sized according to ClientSize, not 
2046           to Size, and they take into account the other scrollbar
2047           to determine maximum.
2048         
2049 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
2050         
2051         * XplatUI.cs:
2052         * XplatUIDriver.cs:
2053         * XplatUIX11.cs:
2054         * XplatUIWin32.cs:
2055         * XplatUIOSX.cs:
2056         - Added RequestAdditionalWM_NCMessages for windows to 
2057           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
2058           Currently only implemented in XplatUIWin32.
2059
2060 2006-11-27  Chris Toshok  <toshok@ximian.com>
2061
2062         * Hwnd.cs: only add the hwnd to the windows hash in
2063         set_WholeWindow and set_ClientWindow if whole_window/client_window
2064         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
2065
2066 2006-11-27  Mike Kestner  <mkestner@novell.com>
2067
2068         * ComboBox.cs: remove redundant OnDropDown call.  It is called
2069         from the ComboListBox.ShowWindow code. Fixes #79969.
2070
2071 2006-11-27  Chris Toshok  <toshok@ximian.com>
2072
2073         * Hwnd.cs: remove the setters for ExposePending and
2074         NCExposePending - noone uses them.
2075
2076 2006-11-27  Jackson Harper  <jackson@ximian.com>
2077
2078         * TextControl.cs: new param for ReplaceSelection which determines
2079         whether we select the new selection, or set the cursor to the end
2080         of the new selection.
2081         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
2082         pasting, select the new text.
2083         * RichTextBox.cs: Use new param for ReplaceSelection.
2084
2085 2006-11-27  Jackson Harper  <jackson@ximian.com>
2086
2087         * TextBoxBase.cs: Set the selection to the caret after the caret
2088         is moved, otherwise they get out of sync.
2089
2090 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2091
2092         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
2093         it fixes #80015
2094
2095 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2096
2097         * ThemeWin32Classic.cs: 
2098         - Fix toolbar drop down arrow position.
2099         - Fix drop down appearance when ToolBar.Appearance is normal,
2100         it fixes #80018.
2101         
2102 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
2103
2104         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
2105         * Control.cs: Same.
2106         * UpDownBase.cs: Same.
2107         * ButtonBase.cs: Same.
2108         * ScrollBar.cs: Same.
2109         * TrackBar.cs: Same.
2110         * PictureBox.cs: Same.
2111         * UserControl.cs: Same.
2112         * Label.cs: Same.
2113         * ListControl.cs: Same.
2114         * TextBoxBase.cs: Same.
2115         * ListView.cs: Same.
2116         * RichTextBox.cs: Same.
2117         * TreeView.cs: Same.
2118
2119 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
2120
2121         * PrintDialog.cs:
2122         - Text label for where 
2123         - Text label comment was not shown
2124
2125 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
2126
2127         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
2128
2129 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2130
2131         * InternalWindowManager.cs: 
2132         - Handle WM_PARENTNOTIFY to activate the form
2133         if any child control is clicked.
2134         - The form is only sizable if not minimized.
2135
2136         * MdiWindowManager.cs:
2137         - Save the IconicBounds if the form is moved.
2138         - Rework SetWindowState, now the window bounds 
2139         are stored only if the old window state is Normal.
2140         
2141         * MdiClient.cs:
2142         - In SetWindowStates store the old window state if 
2143         the window is maximized and restore window state if
2144         the window looses focus.
2145         - Don't handle any scrollbar value changes if 
2146         initializing the scroll bars. Fixes #79771.
2147         - Reworked ArrangeIconicWindows. Current algorithm
2148         tests bounds agains all other minimized windows, if
2149         any intersections create new bounds (going left to 
2150         right, bottom to top) and then test again. When 
2151         successful the bounds are saved and never computed
2152         again. Fixes #79774.
2153
2154 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2155
2156         * InternalWindowManager.cs: Added HandleTitleBarUp.
2157
2158 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2159
2160         * NumericUpDown.cs: In .NET 1.1, user entered text is still
2161         hexadecimal in ParseUserEdit.
2162
2163         
2164 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2165
2166         * MdiWindowManager.cs: 
2167         - Handle a click on the form's icon to show the 
2168         system menu (when maximized). Fixes #79775.
2169         - Change the existing click handler for the form's
2170         icon when not maximized to show on MouseUp.
2171         Fixes #79776.
2172
2173         * Form.cs: In OnResize only layout the mdi child's
2174         parent if it actually has a parent. Might not if
2175         the window is closing.
2176
2177
2178 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2179
2180         * MdiClient.cs: Ignore active MDI client for text of parent, if
2181         child has no text set.
2182
2183 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2184
2185         * ToolBar.cs: Fixed ToString to match MS.
2186
2187 2006-11-22  Andreia Gaita  <avidigal@novell.com>
2188
2189         * NumericUpDown: 
2190         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
2191         update inner values on set. Fixes #79966.
2192         - Override OnLostFocus to update value on NET 2. Fixes #79950.
2193         - Fix hexadecimal parsing.
2194         
2195         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
2196         parent. Fixes #79957
2197
2198 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2199
2200         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
2201         the actual size has to be queried, since if height /
2202         width is negative Win32 changes it to 0. 
2203         Fixes #79999 on Windows.
2204         
2205         * XplatUIX11.cs: Set height / width to 0 if negative
2206         in SetWindowPos. Fixes #79999 on Linux.
2207         
2208 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2209
2210         * ThemeWin32Classic.cs: Fix text redenring when button is
2211         pressed.
2212
2213 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2214
2215         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
2216         and later navigate by mouse. Fixes #79528.
2217
2218 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2219
2220         * ToolBar.cs: Set default value for TabStop to false in
2221         constructor, it fixes remaining behavior of bug #79863.
2222
2223 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2224
2225         * MdiWindowManager.cs:
2226         * InternalWindowManager.cs:
2227         - Moved a few methods specific to Mdi from 
2228         InternalWindowManager to MdiWindowManager.
2229         Fixes #79996.
2230         
2231 2006-11-21  Chris Toshok  <toshok@ximian.com>
2232
2233         * XplatUIOSX.cs: stub out InvalidateNC.
2234
2235         * XplatUIWin32.cs: implement InvalidateNC using the call I found
2236         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
2237
2238         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
2239
2240         * XplatUIDriver.cs: add InvalidateNC abstract method.
2241
2242         * XplatUI.cs: add InvalidateNC.
2243
2244 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2245
2246         * ToolBar.cs: Invalidate complete button area when pressed status 
2247         was changed.
2248         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
2249         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
2250         by 1 when button is pressed.
2251
2252 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2253
2254         * ToolButton.cs: Invalidate middle of DropDown button when
2255         ToolBar theres DropDownArrows.
2256         * ThemeWin32Classic.cs: Change position of DropDown arrow and
2257         fix DropDown drawing operations.
2258
2259 2006-11-20  Chris Toshok  <toshok@ximian.com>
2260
2261         * NativeWindow.cs: fix the formatting of functions ('{' on the
2262         following line), and enable the thread exception dialog.
2263
2264         * Application.cs: remove the duplicate exception catching from
2265         here.
2266
2267 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2268
2269         * Toolbar.cs: Triggers button click event when click on icon
2270         of dropdown ToolBarButton. Fixes #79912.
2271         
2272 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2273
2274         * Theme.cs:
2275         * ThemeWin32Classic.cs:
2276         - Added a property WindowBorderFont to enable themeing
2277           of mdi child windows' Text.
2278           
2279 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2280
2281         * InternalWindowManager.cs:
2282         * Form.cs:
2283         * MdiClient.cs:
2284         * MdiWindowManager.cs: 
2285         - If mdi child is maximized, set mdi parent's
2286           text to "Parent - [Child]". Fixes #79770.
2287         - If there is any maximized mdi child windows, only the active 
2288           window (and any new windows) is maximized, the rest are normal.
2289         - On a WindowState change only save mdi child's window bounds 
2290           if the old window state was normal. Fixes #79774.
2291         - The scroll bars are now calculated on hopefully all
2292           necessary events. Fixed #79771 / #79844->6 / #79906.
2293         - MdiClient.SizeScrollBars() now takes into account docked 
2294           controls in the parent when calculating available space.
2295         - InternalWindowManager now always repaints the entire title
2296           area. Fixes #79844->1/4/5.
2297         - Added RequestNCRecalc on mdi child windowstate changes.
2298           Fixes #79772.
2299
2300 2006-11-20  Mike Kestner  <mkestner@novell.com>
2301
2302         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
2303         in the MouseUp handler of the listbox and move the return handling
2304         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
2305
2306 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2307
2308         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
2309
2310 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2311
2312         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
2313           working in 1.2.x anymore. So, updated.
2314
2315 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
2316
2317         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
2318         NumberGroupSeparator of current culture instead of assuming en-US.
2319         Fixed bug #79967.
2320
2321 2006-11-17  Mike Kestner  <mkestner@novell.com>
2322
2323         * Control.cs: Add the concept of implicit bounds setting so that
2324         dock/undock round trips preserve explicitly set size/locations.
2325         Fixes #79313.
2326
2327 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2328
2329         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
2330           can't handle those filters. (Fixes bug #79961)
2331
2332 2006-11-17  Chris Toshok  <toshok@ximian.com>
2333
2334         [ fixes the exit/crashes associated with #79835.  it's clearly
2335         suboptimal though, we need to figure out a better way to solve
2336         this. ]
2337         
2338         * PrintPreviewControl.cs: deal with the new invalid printer
2339         exceptions.
2340
2341         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
2342         and return false (so CommonDialog.ShowDialog doesn't actually show
2343         the form.)
2344
2345         * PrintDialog.cs: enable/disable the Ok button depending on
2346         whether or not the printer is valid.
2347
2348         * CommonDialog.cs (ShowDialog): only actually show the form if
2349         RunDialog returns true.
2350
2351 2006-11-17  Jackson Harper  <jackson@ximian.com>
2352
2353         * TextControl.cs: When soft splitting a line, mark it as a soft
2354         split line. Also carry over the current line break to the next
2355         line.
2356
2357 2006-11-17  Chris Toshok  <toshok@ximian.com>
2358
2359         * XplatUIX11.cs: when scrolling a window with an invalid area, we
2360         only want to shift the part of the invalid area that overlaps the
2361         area we're scrolling.  we also don't want to clear the invalid
2362         area unless the invalid area was entirely contained within the
2363         scrolling area.
2364
2365 2006-11-16  Chris Toshok  <toshok@ximian.com>
2366
2367         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
2368         also make sure to free the memory returned by XGetWindowProperty
2369         in GetText().
2370
2371         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
2372
2373 2006-11-16  Chris Toshok  <toshok@ximian.com>
2374
2375         * XplatUI.cs: add a new super secret way to get at the totally
2376         unsupported X11 backend.
2377
2378 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
2379
2380         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
2381
2382 2006-11-16  Jackson Harper  <jackson@ximian.com>
2383
2384         * TreeView.cs: Allow more explicit setting of top node position
2385         for scrollbars. Slower algo, but more accurate.
2386         - CollapseAll should maintain the current top node.
2387         * TextBoxBase.cs: When positioning the caret, use the line, pos
2388         method, since the x, y method does not grab the correct tag, and
2389         the caret height never gets set correctly. (Maybe I should just do
2390         away with the caret having its own height, and always use the
2391         carets current tag for height).
2392
2393 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
2394
2395         [Fixes 79778, 79923]
2396
2397         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
2398         Parent to the FosterParent instead.
2399
2400 2006-11-16  Jackson Harper  <jackson@ximian.com>
2401
2402         * TreeView.cs: Need to recalc the topnode when we expand or
2403         collapse. The scrolling methods can't handle this on their own,
2404         since they use differences between the last scroll position, and
2405         those difference get completely messed up since we are expanding
2406         nodes.  This problem should probably be fixed in the scrolling
2407         methods, so they can figure out exactly where they are, but this
2408         will slow things down a little.
2409         * ThemeWin32Classic.cs: Special case for groupboxes with empty
2410         strings, makes nunit-gui look a lot nicer.
2411
2412 2006-11-16  Chris Toshok  <toshok@ximian.com>
2413
2414         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
2415         the broken multithreaded event handling we have in here.  File
2416         this entry under "Why we should move to the new X11 backend".
2417
2418         Any thread can make it into UpdateMessageQueue, which gets events
2419         from the X socket - some of which could belong to hwnds being
2420         managed by a different thread.  We can also have multiple threads
2421         in UpdateMessageQueue at the same time, with each one reading from
2422         the X socket.  This leads to many problems, with the following
2423         solutions:
2424
2425         We can't use hwnd.Queue.Enqueue anywhere in here and must use
2426         EnqueueLocked.
2427
2428         The MotionNotify compression we do can't work across threads
2429         (without locking the entire queue, perhaps) since we call
2430         hwnd.Queue.Peek, so we just punt and don't compress motion events
2431         unless the owning thread is the one which got the X event.
2432
2433         ConfigureNotify is another fun one, since it modifies the hwnd's
2434         bounds and then enqueues the event.  We add a lock to Hwnd which
2435         is held when setting configure_pending to true (and enqueuing the
2436         event).
2437
2438         There is a race wrt the wake socket.  we need to make sure that
2439         only 1 thread is waiting on that socket, or else a thread could
2440         sleep waiting for data that never comes.  It's difficult (but not
2441         impossible) to make happen, because it seems to require something
2442         like the following:
2443
2444             1. Thread 1 polls on wake_receive
2445         
2446             2. poll returns saying there's data to be read on
2447                wake_receive.
2448         
2449             3. Thread 2 polls on wake_receive and immediately returns
2450                saying there's data to be read.
2451
2452             4. Thread 2 reads the wakeup byte from wake_receive
2453
2454             5. Thread 1 attempts to read the wakeup byte from
2455                wake_receive.
2456
2457             6. Thread 2 exits (due to a form closing, perhaps).
2458
2459             7. Thread 1 blocks forever.
2460         
2461         Fun, eh?
2462
2463         Fixing the Expose handling isn't done yet, and the races inherent
2464         in that piece of code are responsible for the drawing mistakes you
2465         see when generating expose events in a MT app (like NPlot).  This
2466         one is the likely to be the hardest to bandaid, and it doesn't
2467         appear to cause anything but drawing problems.  The other issues
2468         caused apps to exit or hang.
2469
2470         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
2471         called from a different thread than the one that should be calling
2472         these functions.
2473
2474         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
2475
2476 2006-11-15  Chris Toshok  <toshok@ximian.com>
2477
2478         * Application.cs: null out the context's MainForm when we exit
2479         RunLoop.  Fixes a newly checked in unit test as well as the last
2480         ODE from bug #79933.
2481
2482 2006-11-15  Chris Toshok  <toshok@ximian.com>
2483
2484         * Form.cs (set_Owner): allow a null value so we can clear the
2485         form's owner.
2486         (Dispose): set all our owned_form's Owner properties to null, and
2487         clear the owned_forms collection.
2488         (WM_CLOSE): clean up this a little bit.. still not right though.
2489
2490         * ApplicationContext.cs: OnMainFormClosed should only call
2491         ExitThreadCore if the main form isn't recreating.  Fixes unit
2492         test.
2493
2494 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2495
2496         [Fixes 78346]
2497
2498         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
2499
2500 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2501
2502         [Fixes 79433]
2503
2504         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
2505         keep popup window types from stealing focus from the main form
2506         on Windows.
2507
2508         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
2509
2510         * MenuAPI.cs: Set above flag to true.
2511
2512 2006-11-15  Chris Toshok  <toshok@ximian.com>
2513
2514         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
2515         the button being released is not in wParam.
2516
2517 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2518
2519         * Form.cs: Add the released button to MouseEventArgs.Button
2520         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
2521         on Win32.
2522
2523 2006-11-15  Chris Toshok  <toshok@ximian.com>
2524
2525         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
2526         GetText().  untested because it's unused in our implementation.
2527         Control.Text always caches the text, even if
2528         ControlStyles.CacheText is not set.
2529
2530         fixes bug #79939.
2531
2532 2006-11-15  Chris Toshok  <toshok@ximian.com>
2533
2534         [ fixes #79933 ]
2535         
2536         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
2537         message.  no hiding, no disposing.
2538
2539         in the WM_CLOSE handler, hide the form if it's modal.
2540
2541 2006-11-15  Chris Toshok  <toshok@ximian.com>
2542
2543         * XplatUIX11.cs: use AddExpose instead of sending a message.
2544         fixes textbox border drawing.
2545
2546 2006-11-15  Chris Toshok  <toshok@ximian.com>
2547
2548         * PropertyGridView.cs: keep from crashing on mouse move/down when
2549         the property grid is empty.
2550
2551 2006-11-14  Jackson Harper  <jackson@ximian.com>
2552
2553         * TextControl.cs: Make PageUp and PageDown more like the MS
2554         versions.
2555         * TextBoxBase.cs: When we set the text property position the
2556         cursor at the beginning of the document.
2557
2558 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2559
2560         * Form.cs: if a mdi child's WindowState has changed
2561         before it's creation, it would display wrong control
2562         buttons.
2563         
2564 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
2565
2566         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
2567           (Fixes bug #79927)
2568
2569 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2570
2571         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
2572         the window gets to paint its borders even if the window is
2573         getting smaller.
2574         
2575         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
2576         otherwise the old control buttons would still be painted 
2577         if the window gets bigger.
2578         
2579         * PaintEventArgs.cs: add an internal method so that the clip 
2580         rectangle can be changed.
2581         
2582 2006-11-13  Chris Toshok  <toshok@ximian.com>
2583
2584         [ fixes bug #79745 ]
2585         
2586         * NotifyIcon.cs: lots of cleanup.
2587
2588         * X11Structs.cs: add an enum for XEMBED messages.
2589
2590         * XplatUIX11.cs: reindent one of the giant switch statements, it
2591         was taking up an additional tab stop, and this file is already way
2592         too wide for my laptop's screen.
2593
2594         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
2595         we get it, resize the hwnd to the WMNormalHints max_width/height.
2596
2597 2006-11-13  Jackson Harper  <jackson@ximian.com>
2598
2599         * TextBoxBase.cs: Compute the value changes for the mouse wheel
2600         teh simple way.
2601
2602 2006-11-13  Chris Toshok  <toshok@ximian.com>
2603
2604         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
2605         #79898.  force a reference to the Region to stick around so the
2606         unmanaged object isn't collected (rendering our handle in the MSG
2607         stale).
2608
2609 2006-11-13  Chris Toshok  <toshok@ximian.com>
2610
2611         * XplatUIX11.cs: fix #79917 for window managers which support
2612
2613         using XStoreName on the raw utf8, and we need to convert to
2614         COMPOUND_TEXT if it's non-latin1.
2615
2616 2006-11-13  Chris Toshok  <toshok@ximian.com>
2617
2618         * Form.cs (set_DialogResult): we need to set closing to false if
2619         we're setting our result to None.  fixes bug #79908.
2620
2621 2006-11-13  Jackson Harper  <jackson@ximian.com>
2622
2623         * TextControl.cs: When formatting text, compute the adjusted tag
2624         lengths correctly, using FindTag for the end tag instead of trying
2625         to figure it out outselves.
2626         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
2627         the item, ItemHeight doesn't work, because trees with large
2628         imagelists use those for their height
2629         * TreeView.cs: ActualItemHeight factors in the image height
2630         - compute left edge of checkboxes correctly
2631         - when expanding/collapsing move the bottom down one pixel, so we
2632         aren't moving part of the node
2633
2634 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2635
2636         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
2637         stack in PaintEventStart so that it won't get disposed by the gc
2638         before reaching PaintEventEnd.
2639
2640 2006-11-13  Jackson Harper  <jackson@ximian.com>
2641
2642         * TextBoxBase.cs: Don't select the word if we are on a line with
2643         no text.
2644         - We don't need to position the caret on mouse up, since the mouse
2645         move handler should be doing this
2646         - When double clicking a blank line, the caret is advanced to the
2647         next line.
2648
2649 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
2650
2651         * TreeNodeCollection.cs: Avoid duplicating indexer code.
2652
2653 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
2654
2655         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
2656         Fixes part of bug #79910.
2657
2658 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
2659
2660         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
2661           (bug #79903). Some minor string updates to match ms.
2662
2663 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2664
2665         * FileDialog.cs: Don't add an extension if the filename
2666           already ends with that extension.
2667
2668 2006-11-10  Jackson Harper  <jackson@ximian.com>
2669
2670         * TreeView.cs: Use the currently highlighted node for the
2671         BeforeSelect event.
2672         * TextBoxBase.cs: There is no need to expand selection on
2673         MouseMove.
2674         - CanUndo means 'is there any undo operations', not 'is undo
2675         allowed on this textcontrol. Fixed ClearUndo unit test.
2676
2677 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
2678
2679         * Button.cs: only perform click when button is Selectable (so as 
2680         not to activate default buttons when they're disabled)
2681         
2682         * Control.cs: Rewrite of the SelectNextControl and related 
2683         methods. HandleClick now selects next control if the current one
2684         is being disabled.
2685         
2686         * Form.cs: OnActivated selects next active control only if Load 
2687         has already occurred. If Load hasn't run, there's no point in 
2688         selecting here, Load might change the state of controls.
2689         
2690         * FocusTest.cs: Tests marked as working again for these fixes
2691
2692 2006-11-10  Chris Toshok  <toshok@ximian.com>
2693
2694         * XplatUIX11.cs: a couple of fixes.
2695
2696         - use XInternAtoms with almost all the atoms we need to register,
2697         instead of many, many calls to XInternAtom.  should help a bit on
2698         startup time, at the expense of making the code look a little
2699         worse.
2700
2701         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
2702         isn't reparented (which seems to be a clue that we're running fon
2703         compiz) and they have an Owner form.  This fixes the tool windows
2704         in paint.net when running under compiz.
2705
2706         - when setting the opacity of a window, support both the case
2707         where the window has been reparented and also when it hasn't been.
2708         Since compiz/beryl doesn't seem to reparent windows, and these are
2709         the only window managers which support translucency, I'm not sure
2710         why we need the hwnd.reparented case at all.. but leave it in.
2711         now we get translucent windows in paint.net under compiz/beryl.
2712
2713 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2714
2715         * FileDialog.cs: Always return the value for FilterIndex that
2716           was set. Internally convert it to values that make sense.
2717
2718 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2719         
2720         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
2721
2722 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2723
2724         * Toolbar.cs: Change default value of DropDownArrows to true, the 
2725         signature still using false to make it compatible with MS but the 
2726         initial value is true. Fixes #79855.
2727
2728 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2729
2730         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
2731           only available on Linux.
2732
2733 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
2734
2735         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
2736         reduce number of calls to redraw method during toolbar creation.
2737
2738 2006-11-09  Mike Kestner  <mkestner@novell.com>
2739
2740         * ListView.cs : raise SelectedIndexChanged when an item is selected
2741         programmatically via the Item.Selected property.  Gert's nice 
2742         ListViewSelectedIndexChanged test fixture now runs clean.
2743
2744 2006-11-09  Mike Kestner  <mkestner@novell.com>
2745
2746         * ListView.cs : raise SelectedIndexChanged when a selected item is
2747         removed from the item collection using Remove or RemoveAt.
2748
2749 2006-11-09  Mike Kestner  <mkestner@novell.com>
2750
2751         * ListView.cs : raise SelectedIndexChanged once per selected item
2752         for compat with MS.  Fixes #79849+.
2753
2754 2006-11-09  Chris Toshok  <toshok@ximian.com>
2755
2756         * TabControl.cs: initialize row_count to 0, and set it to 1 when
2757         we need to (if we have any tab pages).  Fixes unit test.
2758
2759 2006-11-09  Chris Toshok  <toshok@ximian.com>
2760
2761         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
2762         width is 0, not 3.  Fixes a unit test.
2763
2764 2006-11-09  Mike Kestner  <mkestner@novell.com>
2765
2766         * ListView.cs : use Implicit scrollbars so that focus isn't 
2767         stolen from the listview when they are clicked. Fixes #79850.
2768
2769 2006-11-09  Chris Toshok  <toshok@ximian.com>
2770
2771         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
2772         have a root item.  Fixes #79879.
2773
2774 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
2775
2776         * FileDialog.cs:
2777           - Fix ToString ()
2778           - An ArgumentException is now thrown if a wrong filter
2779             is applied (matches ms). The previous filter doesn't change
2780             anymore if an exception is thrown.
2781           - Changing the FileName property also affects FileNames
2782         * ColorDialog.cs: The length of the CustomColors array is always
2783           16. It doesn't matter if we use a smaller array or null to update
2784           or change the custom colors property.
2785         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
2786           for RootFolder if we get a undefined value.
2787
2788 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2789
2790         * StatusBarPanel.cs: 
2791         - Width is set to MinWidth if Width is smaller than
2792         MinWidth. Fixes #79842.
2793         - MinWidth now always overrides Width (MSDN says MinWidth
2794         is set to Width when AutoSize = None, but they do not 
2795         behave like that).
2796         - Style has now the the correct default value.
2797         
2798 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2799  
2800         * TrackBar.cs: 
2801         - The control is completely invalidated on 
2802         Got/LostFocus to draw the focus rectangle correctly.
2803         - When AutoSize then height is always 45 (width for 
2804         vertical controls).
2805         
2806         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
2807         on the mouse when moved and it doesn't move when grabbed
2808         until the mouse moves as well. Also fixed some wrong 
2809         calculations when clicking on the thumb (control thought
2810         click was outside of thumb and didn't grab it).
2811         Fixes some of the issues in #79718.
2812
2813 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
2814
2815         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
2816
2817 2006-11-08  Chris Toshok  <toshok@ximian.com>
2818
2819         * PropertyGridView.cs: only call ToggleValue if the item is not
2820         readonly.
2821
2822 2006-11-08  Jackson Harper  <jackson@ximian.com>
2823
2824         * TextBoxBase.cs: The RichTextBox and textbox have very different
2825         word selection methods.  Implement the textbox's simple word
2826         selection here, and let the RichTextBox override and provide it's
2827         own.
2828         - Don't do extra selection on mouseup
2829         * RichTextBox.cs: Use the documents word selection algorithm, I
2830         think ideally, this function will be pulled into the
2831         RichTextBox.cs code someday.
2832
2833 2006-11-08  Chris Toshok  <toshok@ximian.com>
2834
2835         * RootGridEntry.cs: new class to represent GridItemType.Root.
2836
2837         * CategoryGridEntry.cs: reformat, and add boilerplate.
2838         
2839         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
2840         returns the UI parent anyway, and we need special handling to
2841         implement the GetTarget method in the face of it.  Also, implement
2842         Select().
2843
2844         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
2845         a root grid item, and use that instead of PropertyGrid.grid_items.
2846         Also, make use of TypeConverters (and add limitted support for
2847         ICustomTypeDescriptors) when initially populating the grid.
2848         Arrays now show up more or less properly.
2849
2850 2006-11-08  Chris Toshok  <toshok@ximian.com>
2851
2852         * Application.cs: set the modal dialog to non modal after we close
2853         it.  Fixes bug #79866.
2854
2855 2006-11-08  Jackson Harper  <jackson@ximian.com>
2856
2857         * TextControl.cs: When combining lines carry over the line end
2858         style from the end line.
2859         - Invalidate the selected area when setting it, if it is visible.
2860         * TextBoxBase.cs: Only rich text box can do full line selects.
2861         - Make sure to set the cursor position when there is a click,
2862         otherwise two clicks in separate areas could cause a large chunk
2863         to be selected.
2864
2865 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2866
2867         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
2868         Fixes #79863.
2869
2870 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2871
2872         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
2873         time. Remove tooltips when ToolButton click events.  Fixes #79856.
2874
2875 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2876
2877         * MenuAPI.cs: Ignore right click for menu actions and fixes
2878         menu border when clicked.  Fixes #79846.
2879
2880 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2881
2882         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
2883         MouseState after create wParam for message, this fixes mouse button 
2884         equal none in mouse up events.
2885         
2886 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
2887
2888         * Control.cs : Focus() now calls Select to set the Container's
2889         Active Control and to give it focus. To avoid infinite recursion
2890         (because ActiveControl also calls Focus at one point), a check 
2891         is made in Focus with the help of a new internal variable
2892         is_focusing.
2893
2894 2006-11-07  Mike Kestner  <mkestner@novell.com>
2895
2896         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
2897         if there's a selection.  Fixes #79849.
2898
2899 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
2900
2901         * PropertyGrid.cs: Avoid fixed height of help description label.
2902         Fixes part of bug #79829.
2903
2904 2006-11-07  Chris Toshok  <toshok@ximian.com>
2905
2906         * XplatUIX11.cs: fix #79790 again, by using the
2907         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
2908
2909 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2910
2911         * ToolBar.cs: Fix left click checking.
2912
2913 2006-11-07  Chris Toshok  <toshok@ximian.com>
2914
2915         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
2916
2917 2006-11-07  Chris Toshok  <toshok@ximian.com>
2918
2919         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
2920         PropertyManager unit tests.
2921
2922         * PropertyManager.cs: make property_name internal.
2923
2924 2006-11-07  Chris Toshok  <toshok@ximian.com>
2925
2926         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
2927         pass a unit test.  Also, don't set image_index to anything in
2928         response to setting the ImageList property.
2929
2930 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2931
2932         * ToolBar.cs: Ignore click events when mouse button is not a
2933         left button, only accepts other button for dropdown menus.  
2934         Fixes #79854.
2935
2936 2006-11-07  Chris Toshok  <toshok@ximian.com>
2937
2938         * DataGrid.cs: make the back and parent row buttons a little less
2939         ugly.
2940
2941 2006-11-07  Jackson Harper  <jackson@ximian.com>
2942
2943         * TextBoxBase.cs: When converting to Text don't put line breaks in
2944         for soft line breaks.
2945         * TextControl.cs: There is an initial "fake" line in the document,
2946         this is now a soft break line, so that an extra line feed doesn't
2947         get added to the end of documents.
2948
2949 2006-11-07  Chris Toshok  <toshok@ximian.com>
2950
2951         [ fix bug #79778 ]
2952         
2953         * CurrencyManager.cs: if the list is readonly, don't bother
2954         checking if IBindingList.AllowNew is true.
2955
2956         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
2957         for non-DataRowView datasources..  or rather, make it not crash.
2958         (DataGridPaintRelationRow): make sure we limit the row painting to
2959         the area not covered by the row header, and make our cell width at
2960         least large enough to cover the relation area.  This allows grids
2961         that have relations but no rows to render correctly.
2962         (DataGridPaintRowContents): same type of changes here.
2963         (SetDataSource): move back to always calling
2964         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
2965         navigating back through relations.
2966         (HitTest): handle the case where we have no cells but have
2967         relations.  Right now we generate a hit in cell 0 of whatever the
2968         row is, not sure if this is strictly correct, but it works for our
2969         purposes.
2970         
2971         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
2972         bother doing anything.
2973
2974 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
2975
2976         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
2977         early version of StatusStrip.  Not responsible for eaten
2978         application or firstborn children.
2979
2980 2006-11-06  Chris Toshok  <toshok@ximian.com>
2981
2982         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
2983         call GetTabRect with a -1 index.  Fixes #79847.
2984
2985 2006-11-06  Jackson Harper  <jackson@ximian.com>
2986
2987         * TreeNodeCollection.cs: Update scrollbars after clearing.
2988
2989 2006-11-06  Chris Toshok  <toshok@ximian.com>
2990
2991         * NumericUpDown.cs: fix the ToString method for some unit test
2992         love.
2993
2994 2006-11-06  Chris Toshok  <toshok@ximian.com>
2995
2996         * PropertyGrid.cs:
2997         - set the initial SelectedGridItem if we can.
2998
2999         - Exclude non-mergable properties only if we're merging > 1
3000         object.  Merging 1 object isn't really merging, obviously.
3001
3002         - Handle PropertySort.NoSort just like Alphabetical, which is
3003         wrong of course, but at least gets things on the screen.
3004         
3005         * PropertyGridView.cs:
3006         - Add method "FindFirstItem" which finds the first property grid
3007         item, so we can select it by default.
3008
3009         - make use of GridEntry.CanResetValue.
3010
3011         - Don't call RedrawBelowItemOnExpansion here anymore, the
3012         individual GridEntry's will do that.
3013
3014         - Remove the ITypeDescriptorContextImpl internal class.
3015         
3016         * GridEntry.cs:
3017         - this class needs to implement ITypeDescriptorContext, as it's
3018         what MS's PropertyDescriptorGridEntry does, which means we can
3019         remove the ITypeDescriptorContextImpl internal class from
3020         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
3021
3022         - keep a reference to our PropertyGridView, and move the call to
3023         RedrawBelowItemOnExpansion here from PGV.  This means
3024         programmaticly setting Expanded actually does something visible.
3025
3026         - add a CanResetValue() function which takes into account our
3027         possibly multiple "selected_objects" in the merged case.  Shifting
3028         PropertyGridView to use this method fixes another unreported
3029         crasher found running the test for #79829.
3030
3031         - when Top or Bounds is updated, make sure the PropertyGridTextBox
3032         is updated to reflect this.
3033
3034         * CategoryGridEntry.cs: the ctor takes the PGV now.
3035         
3036 2006-11-06  Jackson Harper  <jackson@ximian.com>
3037
3038         * TextControl.cs: These are 1 based.
3039         * TextBoxBase.cs: When setting the selected text, don't change the
3040         selected text tags, this is done by ReplaceText, just position the
3041         cursor at the end of the new text.
3042
3043 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3044
3045         * ListView.cs: Allow label edit only when, when LabelEdit is
3046           set to true.
3047
3048 2006-11-06  Jackson Harper  <jackson@ximian.com>
3049
3050         * TextControl.cs: If a suitable wrapping position isn't found,
3051         just wrap right in the middle of a word.
3052
3053 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3054
3055         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
3056           bug #79820.
3057
3058 2006-11-06  Jackson Harper  <jackson@ximian.com>
3059
3060         * TreeView.cs: Can't use the VisibleCount property when setting
3061         scrollbar heights, because this doesn't take into account whether
3062         or not the horz scrollbar just came visible.
3063
3064 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
3065
3066         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
3067         activated.  Fixes #79369, #79832.
3068
3069 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
3070
3071         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
3072           had to remove support for links that point to a directory. FileInfo
3073           returns no usefull information (means, the directory they point to)
3074           for such links. Replaced some empty string ("") with String.Empty.
3075
3076 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3077
3078         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
3079         NullReferenceException when attempting to remove node that is not in
3080         collection. Throw NullReferenceException when null is passed to 
3081         Remove. Allow first element of the collection to be removed. Fixes
3082         bug #79831.  In GetEnumerator ().Current return null if positioned 
3083         before the first element of the collection. In GetEnumerator ().Reset,
3084         position before first element of the collection.
3085
3086 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3087
3088         * PropertyGrid.cs: To match MS, remove default title and description
3089         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
3090         buttons.
3091
3092 2006-11-04  Chris Toshok  <toshok@ximian.com>
3093
3094         * Theme.cs: add a Clamp method, just for kicks.
3095
3096         * ThemeWin32Classic.cs: clamp all color components to [0..255].
3097
3098 2006-11-04  Chris Toshok  <toshok@ximian.com>
3099
3100         * Form.cs: if the form isn't visible, Close() does nothing.
3101
3102 2006-11-03  Chris Toshok  <toshok@ximian.com>
3103
3104         * Form.cs (Close): if the form is modal, don't Dispose of it, only
3105         Hide it.
3106         (WndProc): don't Dispose after handling the WM_CLOSE message.
3107
3108         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
3109         them as such, instead of using casts from Control to Form.  Also,
3110         don't Dispose of the modal dialog when we fall out of the loop -
3111         Close() it instead.
3112
3113         fixes bug #79813.
3114
3115 2006-11-03  Chris Toshok  <toshok@ximian.com>
3116
3117         * Control.cs (Dispose): only go through the dispose thing if we're
3118         @disposing, and we haven't already been disposed.  Fixes bug
3119         #79814.
3120
3121         * Form.cs: no reason to call "base.Dispose()" here instead of
3122         "Dispose()".
3123
3124 2006-11-03  Mike Kestner  <mkestner@novell.com>
3125
3126         * ComboBox.cs : use ToString instead of casts in AddItem for
3127         sorting functionality.  Fixes #79812.
3128
3129 2006-11-03  Chris Toshok  <toshok@ximian.com>
3130
3131         * Application.cs: pave the way for actually using the thread
3132         exception dialog.  it's ifdefed out at the moment.
3133
3134 2006-11-03  Chris Toshok  <toshok@ximian.com>
3135
3136         * ThreadExceptionDialog.cs: until we get a better layout, actually
3137         hide the details textbox and label when we shouldn't see them.
3138
3139 2006-11-03  Jackson Harper  <jackson@ximian.com>
3140
3141         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
3142         multiline textboxes anymore.  This method also determines the
3143         width/height of a textboxes canvas area.
3144         - Sorta a revert of the last patch.  For multiline just position
3145         the controls, then bail.  This way the scrollbar width won't be
3146         altered.
3147
3148 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
3149
3150         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
3151         it dont need.  Fixes #79537.
3152
3153 2006-11-02  Jackson Harper  <jackson@ximian.com>
3154
3155         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
3156         send the status after firing the DndOver event.
3157
3158 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3159
3160         * TrackBar.cs: Now orientation only switches height / width if
3161         the control's handle is created (Win32 does it like this). Also 
3162         fixed a typo in ToString() for a test to pass, changed the 
3163         exception thrown in set_LargeChange and set_SmallChange to 
3164         match Win32 behaviour, and added TrackBar tests to the unit 
3165         tests.
3166
3167 2006-11-02  Chris Toshok  <toshok@ximian.com>
3168
3169         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
3170         not _NET_WM_STATE_NO_TASKBAR.
3171
3172 2006-11-02  Jackson Harper  <jackson@ximian.com>
3173
3174         * TextControl.cs: Increment count by one, since in the update view
3175         count - 1 is used.
3176
3177 2006-11-02  Jackson Harper  <jackson@ximian.com>
3178
3179         * TextBoxBase.cs: Use client rectangle not bounds for checking if
3180         the mouse is in the client rectangle (duh).
3181
3182 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3183         
3184         * TrackBar.cs: Fixed trackbar jumping around when clicking
3185         on it - the trackbar was not detecting correctly at which
3186         side of the thumb the click was done. (fixes #79718)
3187
3188 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
3189
3190         * ListBox.cs: scroll visible area when change SelectedIndex to
3191         a non visible area.  Fixes #79481.
3192
3193 2006-11-01  Jackson Harper  <jackson@ximian.com>
3194
3195         * TextControl.cs: When replacing the selection move the selection
3196         start/end/anchor to the end of the new text.
3197
3198 2006-11-01  Jackson Harper  <jackson@ximian.com>
3199
3200         * XplatUIWin32.cs: When setting the parent change the controls
3201         visibility to it's visibility flag, not to it's old parents
3202         visibility (.Visible walks the parent chain).
3203
3204 2006-11-01  Chris Toshok  <toshok@ximian.com>
3205
3206         * XplatUIX11.cs: revert the #79790 fix, as the simple.
3207         XSetTransientForHint fix breaks paint .net's tool windows.  more
3208         work needed for that one.
3209
3210 2006-11-01  Chris Toshok  <toshok@ximian.com>
3211
3212         * ScrollBar.cs: throw ArgumentException instead of Exception in
3213         LargeChange/SmallChange setters.  fixes unit tests.
3214
3215 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3216
3217         * ContainerControl.cs: reverted rev.67183 (which was itself
3218         a reversion of rev.66853... eh).
3219         
3220         * Control.cs: Fixes Reflector hang by changing Focus() call
3221         to what it was before rev.66643 (calling Select() here sets 
3222         ActiveControl, which in some situations calls back Focus and 
3223         eventually does a stack overflow). Temp fix.    
3224         Changes to GetNextControl() to not look for children to select when
3225         parent cannot be selectable (so it looks for siblings instead)  
3226         
3227 2006-10-31  Mike Kestner  <mkestner@novell.com>
3228
3229         * CheckedListBox.cs : off by one error in returned index from
3230         ObjectCollection.Add.  Fixes #79758.
3231
3232 2006-10-31  Chris Toshok  <toshok@ximian.com>
3233
3234         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
3235         calls for the textbox/spinner, to keep from recursing to the point
3236         where we crash.  Fixes #79760.
3237
3238 2006-10-31  Chris Toshok  <toshok@ximian.com>
3239
3240         * ListControl.cs (set_SelectedValue): don't throw exceptions on
3241         null/"" value, just return.  matches ms's behavior and fixes some
3242         failing tests.
3243
3244 2006-10-31  Chris Toshok  <toshok@ximian.com>
3245
3246         * Control.cs (set_Capture): make a logic a little easier to
3247         follow.
3248
3249         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
3250         if it's being destroyed.  A necessary fix surely, but a bandaid
3251         also, to fix the stuck capture problem in bug #78413.
3252
3253 2006-10-31  Chris Toshok  <toshok@ximian.com>
3254
3255         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
3256         convention of clearing hwnd.ClientRect when we set the
3257         width/height (so it'll be recalculated by Hwnd).
3258
3259 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3260
3261         * ContainerControl.cs: reversed Contains check from
3262         ActiveControl due to hanging problems. This fix
3263         partly regresses #79667 (button does not have
3264         initial focus), so this might be a symptom for 
3265         a larger parenting problem (set_ActiveControl
3266         is being called but the child control does
3267         not have the parent set yet?)   
3268         
3269 2006-10-31  Mike Kestner  <mkestner@novell.com>
3270
3271         * MenuAPI.cs : fix keynav when menu is click activated.
3272
3273 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
3274
3275         * ToolStrip*: Version 0.2.
3276
3277         * MenuStrip.cs: Version 0.1.
3278
3279         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
3280
3281 2006-10-30  Chris Toshok  <toshok@ximian.com>
3282
3283         [ fixes the oversized notify icon issue in bug #79745 ]
3284         
3285         * NotifyIcon.cs: scale the icon down to the size we're given by
3286         the XplatUI layer (this would be faster if we did it once instead
3287         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
3288         since it's never invoked.
3289
3290         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
3291         pixels high by default, so let's hardcode our systray icon to that
3292         size.  The SYSTEM_TRAY protocol should really have a way for
3293         client apps to query for the correct icon size.. but oh well.  A
3294         couple of patches to deal with the screwy client_window ==
3295         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
3296         instance, and also make sure we don't XSelectInput twice).
3297
3298 2006-10-30  Chris Toshok  <toshok@ximian.com>
3299
3300         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
3301         recreating forms.  Control recreation is the bane of my existence.
3302         Fix it in a way that keeps everyone happy.
3303
3304 2006-10-30  Chris Toshok  <toshok@ximian.com>
3305
3306         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
3307         just non-CHILD ones.  otherwise sometimes scrollbars end up with
3308         client_windows not being resized to the proper size (ReportBuilder
3309         shows this extremely well).
3310
3311 2006-10-30  Chris Toshok  <toshok@ximian.com>
3312
3313         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
3314         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
3315         showing up in the gnome taskbar.  Fixes bug #79790.
3316
3317 2006-10-30  Chris Toshok  <toshok@ximian.com>
3318
3319         * ApplicationContext.cs: guard against a NRE.
3320
3321         * Application.cs: null out the old MainForm for the context, so we
3322         don't try to use it again once it's disposed.  Fixes bug #79783.
3323
3324 2006-10-30  Chris Toshok  <toshok@ximian.com>
3325
3326         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
3327         BindingContext, set the data source directly, otherwise do the
3328         lazy approach - the actual ListManager will be created when we get
3329         a BindingContext. Fixes bug #79700.
3330
3331 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3332
3333         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
3334           XplatUIX11.cs: Remove old 2 parameter SetVisible.
3335
3336         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
3337
3338 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3339
3340         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
3341         of SetVisible that allows a window to be shown, but not activated.
3342         This is needed on Windows for MenuStrip, and can probably be used
3343         with MainMenu and ComboBox to fix the focus stealing issues on
3344         Windows.
3345
3346         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
3347
3348 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
3349
3350         * PictureBox.cs: Fix the output of the ToString method.
3351
3352 2006-10-29  Chris Toshok  <toshok@ximian.com>
3353
3354         * Control.cs (get_TopLevelControl): fix bug #79781.
3355
3356 2006-10-29  Chris Toshok  <toshok@ximian.com>
3357
3358         * ListControl.cs (set_DataSource): throw Exception here, not
3359         ArgumentException, to match MS behavior.
3360
3361 2006-10-29  Chris Toshok  <toshok@ximian.com>
3362
3363         * Form.cs: remove the try-catch's around calls to GetWindowState.
3364         We can just check the return value.
3365
3366         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
3367         Instead return -1.
3368
3369         * XplatUI.cs: Add note about additional return value for
3370         GetWindowState.
3371
3372 2006-10-29  Chris Toshok  <toshok@ximian.com>
3373
3374         * Control.cs (CreateHandle): when we create our handle, we also
3375         create the handles of our child controls.  Fixes one of the
3376         Control unit tests (CH11).
3377
3378 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3379
3380         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
3381
3382 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3383
3384         * ThemeClearlooks.cs: A little speedup.
3385
3386 2006-10-27  Chris Toshok  <toshok@ximian.com>
3387
3388         * Control.cs: implement Control.FromChildHandle in a way that
3389         matches the docs (and fixes the failed test.)
3390
3391 2006-10-27  Chris Toshok  <toshok@ximian.com>
3392
3393         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
3394         comments).
3395
3396         * DataGrid.cs: implement ResetForeColor such that the tests
3397         succeed.
3398         
3399 2006-10-27  Chris Toshok  <toshok@ximian.com>
3400
3401         * ToolBarButton.cs: setting text/tooltiptext to null results in it
3402         being set to "".  Fixes bug #79759.
3403
3404 2006-10-27  Jackson Harper  <jackson@ximian.com>
3405
3406         * TextControl.cs: We need to clear the entire selection area when
3407         setting the start, otherwise multiline selections are still
3408         visible.
3409
3410 2006-10-26  Chris Toshok  <toshok@ximian.com>
3411
3412         * PropertyGridView.cs: 
3413
3414         - ifdef all the code specific to the double
3415         buffer case, and provide some alternatives in the non-doublebuffer
3416         code, which makes heavy use of XplatUI.ScrollWindow to move things
3417         around without having to invalidate (and cause flicker).  There
3418         are still some drawing problems in the non-doublebuffered case, so
3419         DOUBLEBUFFER is defined by default.
3420
3421         - Fix the way dropdowns are handled.  now we explicitly watch for
3422         the events which might cause the dropdown to close, and break out
3423         of the nested event loop there.  This gets rid of all Capture
3424         code, at the expense of the Msg special casing.  Seems to work,
3425         though, and fixes bug #79743.
3426
3427 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
3428         * Control.cs: SetIsRecreating now recreates implicitly added
3429         child controls as well. Finally fixes #79629. The flag passed to 
3430         SetIsRecreating has also been removed since it wasn't used.
3431         
3432 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3433
3434         * PageSetupDialog.cs: Clean some code, fix some bits, 
3435         add some checks, and add a printer sub-dialog.
3436
3437 2006-10-26  Chris Toshok  <toshok@ximian.com>
3438
3439         * PropertyGrid.cs: make set_SelectedObject call
3440         set_SelectedObjects, and move the duplicate logic to the
3441         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
3442
3443         * PropertyGridView.cs: hide the textbox when we get a
3444         SelectedObjectsChanged event.
3445
3446         Fixes bug #79748.
3447
3448 2006-10-26  Chris Toshok  <toshok@ximian.com>
3449
3450         * PropertyGridView.cs: deal with the type converter not supporting
3451         GetStandardValues() or GetStandardValues() returning null, which
3452         is does in the default case.  Fixes #79742.
3453
3454 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3455
3456         * CheckedListBox.cs: nunit no longer crashes when selecting 
3457         Project/Edit menu option
3458         
3459 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3460
3461         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
3462         is no menu selected. fixes #79739
3463
3464 2006-10-25  Chris Toshok  <toshok@ximian.com>
3465
3466         * PropertyGridView.cs: factor out the splitter invalidation code
3467         into the SplitterPercent setter, and for kicks implement the
3468         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
3469         amount in either direction.
3470
3471 2006-10-25  Chris Toshok  <toshok@ximian.com>
3472
3473         * PropertyGridView.cs: do some cleanup of the brush used to draw
3474         text - read only fields should be grayed out.  not sure how to do
3475         this with the textbox, though.  but the textbox's should also be
3476         readonly now at least.  Also, hide/show the textbox when resizing
3477         the control.
3478         
3479         * CursorConverter.cs: use System.Reflection when getting the
3480         properties of Cursors, as TypeDescriptor.GetProperties isn't
3481         returning static properties.
3482
3483 2006-10-25  Chris Toshok  <toshok@ximian.com>
3484
3485         * PropertyGridView.cs: factor out the up/down handling, and reuse
3486         it for page up/down.  also add End/Home support.
3487
3488 2006-10-25  Chris Toshok  <toshok@ximian.com>
3489
3490         * PropertyGridView.cs:
3491
3492         - ensure the selected grid item is visible in the scrolled area,
3493         fixes bug #79572.
3494
3495         - fix Keys.Down handling when you're on the last item in the
3496         propertygrid.
3497
3498 2006-10-25  Mike Kestner  <mkestner@novell.com>
3499
3500         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
3501         clicks too.  Fixes #79725.
3502
3503 2006-10-24  Chris Toshok  <toshok@ximian.com>
3504
3505         * PropertyGrid.cs: use property.Converter instead of
3506         TypeDescriptor.GetConverter(property.PropertyType), so we catch
3507         TypeConverters declared on the property as well as on the
3508         PropertyType.  Fixes bug #79678.
3509
3510 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
3511
3512         * MimeIcon.cs, Mime.cs:
3513           Fallback to the default platform handler if no shared mime info
3514           stuff exists (fixes #79693).
3515
3516 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3517         * ContainerControl.cs: Incorrect contains check in ActiveControl 
3518         from previous fix (duh).
3519
3520 2006-10-20  Chris Toshok  <toshok@ximian.com>
3521
3522         * PropertyGridView.cs: the dropdown should be MIN(number of items
3523         in list, 15).  Fixes #79551.
3524
3525 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3526         Fixes #79384, #79394, #79652, #79667
3527         * Application.cs: 
3528         
3529         - Modal windows are now destroyed in the proper order for windows
3530         
3531         * ContainerControl.cs:
3532         
3533         - ActiveControl setter has more conditions on when to return:
3534                 - if we're reselecting the active control, but it actually
3535                 didn't have focus (window hidden or some such), it runs
3536                 - if the active control being selected doesn't actually 
3537                 exist in the container, it returns
3538         
3539         * Form.cs
3540         
3541         - The ShowDialog now gets the current form as the owner when
3542         invoking without parameters, and correctly activates the owner 
3543         when returning
3544         
3545         * MessageBox.cs
3546         
3547         - MessageBox now catches the Escape key to exit
3548
3549 2006-10-20  Chris Toshok  <toshok@ximian.com>
3550
3551         * PropertyGridView.cs: fix a number of issues (bug #78565, and
3552         most of bug #79676):
3553
3554         - you can navigate around the property grid with the arrow keys.
3555
3556         - the dropdown is sized properly when the pg has a vertical
3557         scrollbar.
3558
3559         - fix the indentation for subentries, and properly select the
3560         entire label rect.
3561
3562         - fix the gray bar's drawing (only draw it to the last element,
3563         not for the height of the control.  Also make sure we draw that
3564         last horizontal grid line.
3565
3566         - use the same mechanism the datagrid uses wrt the editing textbox
3567         when scrolling/resizing/etc.  Namely, we hide it first, do the
3568         operation, then show it again (if it's still visible).
3569         
3570         - aggressively remove a lot of unnecessary refreshes (and also
3571         calls to Invalidate(). call more limited variants, and only redraw
3572         what we need.)
3573         
3574         * PropertyGrid.cs:
3575
3576         - when we're populating the merged collection, fill in the UI
3577         parent with either the passed in item, or the category item we
3578         create.
3579
3580         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
3581
3582         * GridItem.cs: drop some fully qualified names.
3583         
3584         * GridEntry.cs: add a "UIParent", which is basically the parent
3585         treenode.
3586
3587         * GridItemCollection.cs: add an IndexOf method.
3588
3589 2006-10-20  Mike Kestner  <mkestner@novell.com>
3590
3591         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
3592         a working win32 NC invalidation mechanism, we can't invalidate
3593         menus.  [Fixes #79705]
3594
3595 2006-10-20  Mike Kestner  <mkestner@novell.com>
3596
3597         * ListBox.cs : don't update the VScrollbar if the list is empty,
3598         just hide it.  [Fixes #79692]
3599
3600 2006-10-20  Jackson Harper  <jackson@ximian.com>
3601
3602         * RichTextBox.cs: Handle some special chars better, and don't skip
3603         the entire group when we encounter a special char that we don't
3604         handle correctly.
3605
3606 2006-10-18  Chris Toshok  <toshok@ximian.com>
3607
3608         * PropertyGridView.cs: address a number of issues from bug #79676,
3609         mostly of the cosmetic variety.
3610
3611         - The highlight rectangle for indented items not extends all the
3612         way to the left.
3613
3614         - Indented items aren't indented so much.
3615
3616         - the dropdown is properly sized width-wise if the pg has a
3617         vertical scrollbar.
3618
3619 2006-10-18  Chris Toshok  <toshok@ximian.com>
3620
3621         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
3622         systray stuff is rather convoluted to begin with.
3623
3624         systray icons are a single window for some reason (that I haven't
3625         figured out yet), and for them, client_window == whole_window.
3626         Given the way the tests are structured elsewhere to determine
3627         which paints are pending (client vs. nc), that situation will
3628         always yield PAINT, not NCPAINT.  So, if we have a pending
3629         nc_expose and no pending expose, remove the hwnd from the paint
3630         queue, and also set nc_expose_pending to false, to keep us from
3631         blocking further expose's adding the hwnd to the paint queue.
3632
3633         phew.  like i said, a rather convoluted change.  Fixes the
3634         notifyicon repaint issues in bug #79645.
3635
3636 2006-10-18  Chris Toshok  <toshok@ximian.com>
3637
3638         * Form.cs: when getting the backcolor of the form, don't get
3639         base.BackColor, as this allows parents to influence the background
3640         color.  This breaks mdi forms.  Instead, if the background_color
3641         is empty, return the default.
3642
3643 2006-10-18  Chris Toshok  <toshok@ximian.com>
3644
3645         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
3646         to being private instead of internal static.
3647
3648         * Control.cs: remove all the stupid ParentWaitingOnRecreation
3649         crap, it wasn't working for more deeply nested controls anyway,
3650         and we already have the is_recreating flag - use that instead.
3651         Before calling DestroyHandle in RecreateHandle, recurse through
3652         the control tree setting it to true.  this returns the recreate
3653         code to much of its original simplicity, while now guaranteeing we
3654         actually recreate everything we're supposed to.  This change gets
3655         fyireporting actually showing mdi children.
3656
3657 2006-10-17  Chris Toshok  <toshok@ximian.com>
3658
3659         * Form.cs: remove some debug spew, and collapse some duplicate
3660         code at the end of SetClientSizeCore.
3661
3662         * XplatUIX11.cs: 
3663         - add some more debug spew here too wrt Destroy handling.
3664         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
3665         in Control's handling of WM_DESTROY.
3666         - Remove the handling of zombie window DestroyNotifies from the
3667         event loop - we don't need it.  Now the only DestroyNotifies we
3668         actually handle are ones generated by X.
3669         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
3670         match gtk's (functioning) handling of this. This keep metacity
3671         from leaving droppings in the form of wm borders with no window
3672         contents all over the place.
3673
3674         * Control.cs:
3675         - add a bunch of debug spew wrt control recreation.
3676         - fix a bug where we weren't tracking Visible properly on
3677         recreated hwnds.
3678         - fixed the WM_PAINT double buffer handling to support re-entrant
3679         calls (yes, i know it's gross, but it's happening to us).
3680
3681 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3682         * ThemeWin32Classic.cs: changed drawing of selected days
3683         to make them look better.
3684
3685 2006-10-16  Chris Toshok  <toshok@ximian.com>
3686
3687         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
3688         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
3689
3690         * XplatUIX11.cs: move away from using hwnd.client_dc and
3691         hwnd.non_client_dc and on to a stack of dc's (and in window's
3692         case, PAINTSTRUCT's), so we can deal with nested Paint calls
3693         without puking or not disposing of Graphics objects.
3694
3695         * XplatUIOSX.cs: same.
3696
3697         * XplatUIWin32.cs: same.
3698
3699 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3700
3701         * FileDialog.cs: Don't call on_directory_changed inside
3702           OnSelectedIndexChanged (it changes the SelectedIndex too).
3703           Instead move it to OnSelectionChangeCommitted.
3704
3705 2006-10-13  Chris Toshok  <toshok@ximian.com>
3706
3707         * XplatUIX11.cs: more Destroy work.  the current code does the
3708         following things, in order:
3709
3710         1. Enumerates all handles of all controls at or below the one
3711         being destroyed, in pre-order.  As it is doing this, it marks the
3712         handles as zombie and clears all references to them.
3713         
3714         2. calls XDestroyWindow on the window passed in.
3715
3716         3. SendMessage's WM_DESTROY to all he handles in the accumulated
3717         list.
3718
3719 2006-10-13  Chris Toshok  <toshok@ximian.com>
3720
3721         * XplatUIX11.cs: set hwnd.zombie to true before calling
3722         SendMessage (WM_DESTROY).  this keeps us from marking the new
3723         window a zombie, and also keeps us from calling sendmessage at
3724         all.
3725
3726 2006-10-13  Jackson Harper  <jackson@ximian.com>
3727
3728         * TextControl.cs: Do not show the caret and selection at the same
3729         time.  Reduces ugliness by 35%.
3730
3731 2006-10-13  Chris Toshok  <toshok@ximian.com>
3732
3733         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
3734         zombie after we do the recursive call, so we actually do call
3735         SendMessage on the children controls.
3736         (GetMessage): if we find a pending paint event for a zombie hwnd,
3737         remove the hwnd from the paint queue, or else it will always be
3738         there (and we'll effectively loop infinitely)
3739
3740 2006-10-13  Mike Kestner  <mkestner@novell.com>
3741
3742         * MenuItem.cs : add Selected format under keynav too.
3743         Fixes #79528.
3744
3745 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
3746
3747         * PropertyGrid.cs: Fixed some NRE's and small difference between our
3748         implementation and that of MS.
3749
3750 2006-10-13  Chris Toshok  <toshok@ximian.com>
3751
3752         * Control.cs (OnInvalidated) only futz with the invalid_region if
3753         the control is double buffered.  this fixes the apparent hang in
3754         the ListView unit tests.  Someone needs to make the
3755         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
3756
3757 2006-10-13  Chris Toshok  <toshok@ximian.com>
3758
3759         * PropertyGridView.cs:
3760
3761         - do a little refactoring so that only one place calls
3762         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
3763         else call that.  Also make it Refresh, since there are redraw bugs
3764         otherwise (we should take a look at that...)
3765
3766         - do a little more refactoring work to share the body of code
3767         involved with the drop down.  it was duplicated in the code
3768         dealing with the listbox handling and in the code dealing with the
3769         UITypeEditors.
3770
3771         - add a Capture to the dropdown form's control once it's
3772         displayed, and add a MouseDown handler that checks to make sure
3773         the position is inside the control.  If it's not, close the
3774         dropdown.  This fixes #78190.
3775
3776         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
3777         if the value is different than the initial value.
3778         
3779 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
3780
3781         * Control.cs: see #78650
3782         - Fixed GetNextControl for several cases:
3783                 - Changed FindFlatForward to return 
3784                 correct sibling control when more than one
3785                 control has same TabIndex as the currently 
3786                 focused one.
3787                 - Changed FindFlatBackward to loop children
3788                 from last to first and apply same logic as in
3789                 FindFlatForward
3790                 - Changed FindControlForward to search for
3791                 children when control is not a container
3792                 but has children, or search for siblings if
3793                 control is a container...
3794                 - Changed FindControlBackward   to continue
3795                 searching for child controls when hitting 
3796                 Panel-like parents
3797                 
3798         - Fixed Focus method to update ActiveControl
3799         (FocusTest.FocusSetsActive failure)
3800         
3801         * TabControl.cs:
3802         - Focus rectangle now refreshes when gaining
3803         or losing focus
3804         - Removed grab for Tab key on IsInputKey that 
3805         was keeping tab navigation from working (#78650)
3806
3807 2006-10-13  Chris Toshok  <toshok@ximian.com>
3808
3809         * PropertyGridView.cs:
3810         - Rewrite SetPropertyValue to loop over SelectedGridItem's
3811         SelectedObjects.
3812
3813         - Deal with GridItem.Value == null a few places.
3814
3815         * PropertyGrid.cs: 
3816         - replace the PopulateGridItemCollection with a pair of methods
3817         which compute the intersection of all the properties in the
3818         SelectedObjects array.  Fixes #79615.
3819
3820         - Throw ArgumentException from set_SelectedObjects if there's a
3821         null in the array.
3822
3823         - Add GetTarget method which can be used to traverse up the
3824         GridItem.Parent chain.  It depends on the assumption that
3825         selected_objects for different GridEntries are always in the same
3826         order (a safe assumption).  Use this method and loop over all the
3827         selected objects in the entry when calling RemoveValueChanged and
3828         AddValueChanged.
3829         
3830         * GridEntry.cs: Make this handle multiple selected objects.
3831         .Value returns null if not all the selected objects share the same
3832         value.
3833
3834 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
3835         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
3836           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
3837           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
3838           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
3839           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
3840         add additional functionality.
3841
3842 2006-10-12  Mike Kestner  <mkestner@novell.com>
3843
3844         * ErrorProvider.cs : new ToolTipWindow ctor sig.
3845         * HelpProvider.cs : new ToolTipWindow ctor sig.
3846         * ToolTip.cs : remove ToolTip param from Window sig since it is
3847         not used.
3848         * ToolBar.cs : add tooltip support.  Fixes #79565.
3849
3850 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3851
3852         * ComboBox.cs: move the events in set_SelectedIndex to 
3853         after the call to HighlightIndex in order to avoid 
3854         possible recursion and subsequent problems with the call
3855         to HighlightIndex and include a range check in 
3856         set_HighlightIndex. Fixes #79588
3857         
3858 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3859
3860         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
3861         to ui thread's settings instead of sunday. 
3862         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
3863
3864 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3865
3866         * DateTimePicker.cs
3867         * MonthCalendar.cs
3868         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
3869         and implement missing functionality (selecting different parts 
3870         of the date and edit them individually with the keyboard).
3871         
3872 2006-10-11  Chris Toshok  <toshok@ximian.com>
3873
3874         * Control.cs (OnInvalidated): fix NRE relating to last change.
3875
3876 2006-10-11  Chris Toshok  <toshok@ximian.com>
3877
3878         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
3879         atoms in _NET_WM_STATE here if the window is maximized.  We need
3880         to do this because we're *replacing* the existing _NET_WM_STATE
3881         property, so those atoms will be lost otherwise, and any further
3882         call to GetWindowState will return Normal for a window which is
3883         actually maximized.  Fixes #79338.
3884
3885 2006-10-11  Jackson Harper  <jackson@ximian.com>
3886
3887         * TextControl.cs: Special case for setting selection end to
3888         selection start, we basically kill the anchor.
3889         - some todo comments.
3890
3891 2006-10-11  Chris Toshok  <toshok@ximian.com>
3892
3893         * Control.cs: switch to using an "invalid_region" to track which
3894         parts of the image buffer need updating.  This is more code than
3895         the simple fix from r66532.  That version just attempted to always
3896         fill the entire buffer on redraw, which turns out to be
3897         inefficient when invalidating small rectangles.  This version
3898         simply adds the invalid rectangle to the invalid region.  When we
3899         get any WM_PAINT message we see if it can be filled using the
3900         image buffer, and if it can't (if the paint event's clip rectangle
3901         is visible in the invalid region) we first fill the image buffer.
3902         So, the image buffer is still a cache, we just fill it lazily.
3903
3904         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
3905         need it any longer.
3906
3907 2006-10-11  Chris Toshok  <toshok@ximian.com>
3908
3909         * XplatUIX11.cs (SetWindowPos): we need to update both position as
3910         well as size after calling XMoveResizeWindow.  This keeps us from
3911         ignoring future SetWindowPos calls.  Fixes the disappearing
3912         DateTimePicker in the ToolBarDockExample from bug #72499.
3913
3914 2006-10-11  Chris Toshok  <toshok@ximian.com>
3915
3916         * TextBoxBase.cs: reorder things a bit when it comes to
3917         resizing-causing-recalculation.  we were recalculating the
3918         document when our position was changed, which shouldn't happen.
3919         We only care about size changes.  Clear up some more redundant
3920         recalculation calls while I'm at it.  This makes the toolbar dock
3921         example snappy when you're just dragging toolbars around (since it
3922         causes a relayout whenever you move one.)
3923
3924 2006-10-11  Chris Toshok  <toshok@ximian.com>
3925
3926         * ToolBarButton.cs (get_Rectangle): this only returns
3927         Rectangle.Empty if Visible == false, or Parent == null.
3928         Parent.Visible doesn't matter.
3929
3930 2006-10-10  Chris Toshok  <toshok@ximian.com>
3931
3932         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
3933         by .net 1.1, so switch to an internal method instead.
3934
3935 2006-10-10  Chris Toshok  <toshok@ximian.com>
3936
3937         * Control.cs (WM_PAINT): when a control is double buffered we draw
3938         initially to the ImageBuffer and then copy from there.  But when a
3939         parent control which has child controls is double buffered, the
3940         initial drawing doesn't encompass the entire ClientRectangle of
3941         the parent control, so we end up with uninitialized bits (this is
3942         easily seen by dragging the top toolbar in
3943         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
3944         manually set the ClipRectangle of the paint_event (only the one we
3945         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
3946         of the nastiness in bug #72499.
3947
3948         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
3949         which we use in Control.cs's WM_PAINT handling.
3950
3951 2006-10-10  Jackson Harper  <jackson@ximian.com>
3952
3953         * TextBoxBase.cs: Finish off the autoscrolling stuff.
3954
3955 2006-10-10  Chris Toshok  <toshok@ximian.com>
3956
3957         * Cursor.cs: Apply a slightly different patch to the one suggested
3958         in #79609.
3959
3960 2006-10-10  Jackson Harper  <jackson@ximian.com>
3961
3962         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
3963         not the parent form.
3964         * TextControl.cs: use difference in old line count vs new count to
3965         calculate how many lines were added, this takes into account soft
3966         line breaks properly.
3967
3968 2006-10-10  Chris Toshok  <toshok@ximian.com>
3969
3970         * LinkLabel.cs: don't call MeasureCharacterRanges against a
3971         rectangle located at 0,0 and the size of the text.  Use
3972         ClientRectangle instead.  This fixes rendering of non-left aligned
3973         link labels.
3974
3975 2006-10-10  Jackson Harper  <jackson@ximian.com>
3976
3977         * TextBoxBase.cs: When we set the selection start position the
3978         caret.
3979         * TextControl.cs: Need to update the caret when we decrement it to
3980         zero.
3981         - Make sure that the selection_visible flag gets reset to false if
3982         the selection isn't visible.  Before this you could get it set to
3983         visible by changing the selection start, then changing the end to
3984         equal the start.
3985
3986 2006-10-09  Jackson Harper  <jackson@ximian.com>
3987
3988         * TreeView.cs: Don't update scrollbars when we aren't visible.
3989         * TreeNodeCollection.cs: Only need to update scrollbars if being
3990         added to an expanded visible node or the root node.
3991
3992 2006-10-09  Chris Toshok  <toshok@ximian.com>
3993
3994         * XplatUIX11.cs (SendMessage): fix NRE.
3995
3996 2006-10-09  Jackson Harper  <jackson@ximian.com>
3997
3998         * TextBoxBase.cs: Implement horizontal autoscrolling.
3999         * TextControl.cs: Add a movement types that allows moving forward
4000         and backwards without wrapping.
4001
4002 2006-10-09  Mike Kestner  <mkestner@novell.com>
4003
4004         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
4005         with focus "expansion" of labels.  Fixes #79532 and then some.
4006         * ThemeWin32Classic.cs : add LineLimit to ListView label format
4007         when wrapping.
4008
4009 2006-10-09  Jackson Harper  <jackson@ximian.com>
4010
4011         * TextBoxBase.cs: Set the default max values to MaxValue since
4012         we use the scrollbar for autoscrolling and the default value is
4013         100.  If we don't do this the caret won't keep up with typing
4014         after about 18 characters.
4015         * TextControl.cs: Make sure the selection is offset by the
4016         viewport x.  This fixes selection when using auto scrolling.
4017
4018 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
4019         
4020         * Form.cs: The active control should be selected after the 
4021         OnLoad so that any child control initialization that affects
4022         the selection is done. Fixes #79406
4023
4024 2006-10-06  Chris Toshok  <toshok@ximian.com>
4025
4026         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
4027         to have no evil effects.
4028
4029         - Stop selecting StructureNotifyMask on non-toplevel windows.
4030
4031           The only way children should be resized is by using the SWF api,
4032           and we already send WM_WINDOWPOSCHANGED messages in those cases.
4033           Toplevel windows can be interacted with via the window manager,
4034           and so we keep the input mask there.
4035
4036           The other event StructureNotifyMask gives us (that we care
4037           about) is DestroyNotify.  The code is already structured such
4038           that it assumes we won't be getting a DestroyNotify event for
4039           the window we pass to XDestroyWindow (which is what
4040           StructureNotifyMask is supposed to guarantee.)  So, that code
4041           shouldn't be affected by this either.
4042
4043         - Stop selecting VisibilityChangeMask altogether.
4044
4045           We weren't doing anything with the resulting events anyway.
4046         
4047         This vastly reduces the number of X requests and events we see
4048         when resizing/laying out a large ui.
4049
4050 2006-10-06  Chris Toshok  <toshok@ximian.com>
4051
4052         * ScrollableControl.cs (DisplayRectangle): we need to take into
4053         account the DockPadding regardless of whether or not auto_scroll
4054         == true.  rework this slightly to this effect, and fix bug #79606,
4055         and part of #72499 (you can now see the drag handles and drag
4056         toolbars around).
4057
4058 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
4059
4060         * ListViewItem.cs: Collections of selected and checked items are now
4061         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
4062         we mark the collection "dirty".
4063         * ListView.cs: Marked collections readonly. Modified UpdateSelection
4064         to only clear SelectedItems when a new item is selected and MultiSelect
4065         is enabled. CheckedItems and SelectedItems now subscribe to Changed
4066         event of ListViewItemCollection, and mark its list dirty whenever
4067         that event is fire. This allows us to return selected/checked items 
4068         in the same order as they are in the Items collection. This matches
4069         the MS behavior.
4070
4071 2006-10-06  Chris Toshok  <toshok@ximian.com>
4072
4073         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
4074         right mouse clicks.  Fixes bug #79593.
4075
4076 2006-10-06  Chris Toshok  <toshok@ximian.com>
4077
4078         * Splitter.cs: doh, fix splitters that don't want to cancel the
4079         movement when you drag them.  Also, impose the limits on the
4080         values we send to the SplitterMovingEvent.  Fixes #79598.
4081
4082 2006-10-06  Jackson Harper  <jackson@ximian.com>
4083
4084         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
4085         since we use this for auto scrolling also.
4086
4087 2006-10-05  Chris Toshok  <toshok@ximian.com>
4088
4089         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
4090         beginning to think that most datagrid column types don't need this
4091         method.  Fixes bug #79392.
4092
4093 2006-10-05  Chris Toshok  <toshok@ximian.com>
4094
4095         * DataGrid.cs: move back to a more lazy scheme for creating the
4096         CurrencyManager, so we aren't updating it every time you set
4097         either DataSource or DataMember.  Also, don't call
4098         RecreateDataGridRows if the currency manager hasn't changed.
4099
4100 2006-10-05  Chris Toshok  <toshok@ximian.com>
4101
4102         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
4103         emitted, SelectedIndex should already be updated.  Fixes bug
4104         #78929.
4105
4106 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
4107
4108         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
4109           ToolStripTextBox.cs: Initial commit.
4110         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
4111
4112 2006-10-05  Jackson Harper  <jackson@ximian.com>
4113
4114         * TabControl.cs: We need to invalidate the tab control area when
4115         new ones are added (duh).
4116
4117 2006-10-03  Chris Toshok  <toshok@ximian.com>
4118
4119         * Form.cs (ProcessDialogKey): if the focused control is in this
4120         form and is a button, call its PerformClick method here.  Fixes
4121         #79534.
4122
4123 2006-10-04  Jackson Harper  <jackson@ximian.com>
4124
4125         * TabPage.cs: Ignore setting of Visible, and add an internal
4126         method for setting the controls visibility.  TabPage's Visible
4127         property is a little strange on MS, this seems to make us
4128         compatible, and fixes cases where people set all the tab pages to
4129         visible.
4130         * TabControl.cs: Use the new internal setting on tab pages
4131         visibility.
4132
4133 2006-10-03  Mike Kestner  <mkestner@novell.com>
4134
4135         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
4136
4137 2006-10-03  Mike Kestner  <mkestner@novell.com>
4138
4139         * ListView.cs : use is_visible instead of Visible to check if 
4140         scrollbars should be placed/sized.  Also some max_wrap_width
4141         love for LargeIcon view.  [Fixes #79533]
4142
4143 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
4144
4145         * TextControl.cs :
4146           Make set_TextAlign() do actually update the align. Fixed #78403.
4147
4148 2006-10-03  Chris Toshok  <toshok@ximian.com>
4149
4150         * DataGrid.cs: fix a crash when switching datasources if the
4151         vertical scrollbar is at someplace other than Value = 0.  Also,
4152         reduce the number of recalculation passes we do in SetDataSource
4153         from 2 to 1.
4154
4155 2006-10-03  Jackson Harper  <jackson@ximian.com>
4156
4157         * TextBoxBase.cs: Move the if value the same bail check up, we
4158         don't want to empty the document if it is already empty, this
4159         seems to severly mess up the caret.  TODO: I should probably fix
4160         the empty statement to update teh caret somehow.
4161
4162 2006-10-03  Chris Toshok  <toshok@ximian.com>
4163
4164         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
4165         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
4166         reflection, an internal row type, properties on said type, etc.)
4167         will work with our datagrid.  Fixes #79531.
4168
4169 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4170
4171         * FileDialog.cs: Don't crash if a path is not accessible
4172           (System.UnauthorizedAccessException). Fixes #79569.
4173         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
4174           a ':' too. Return unknown icon for those paths/files.
4175
4176 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
4177
4178         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
4179         GetContainerControl returns null.
4180
4181 2006-10-02  Chris Toshok  <toshok@ximian.com>
4182
4183         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
4184         call to XGetWindowAttributes instead of "handle".  fixes an X
4185         error using notifyicon after the NotifyIconWindow to Form base
4186         class switch.
4187
4188 2006-10-02  Chris Toshok  <toshok@ximian.com>
4189
4190         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
4191         server grab and looping we need to do to get down to the most
4192         deeply nested child window.
4193         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
4194         QueryPointer again after the WarpPointer so we can generate a
4195         proper (fake) MotionNotify event to be enqueued in the destination
4196         window's queue.
4197         (GetCursorPos): call QueryPointer.
4198
4199         Fixes #79556.
4200
4201 2006-10-02  Jackson Harper  <jackson@ximian.com>
4202
4203         * NotifyIcon.cs: Derive the notify icon from a form, so things
4204         like FindForm work on it.
4205         - Swallow the WM_CONTEXTMENU message, since that is generated on
4206         mouse down, and context menu is a mouse up kinda guy.  I believe
4207         the correct fix here is probably to make the notify icon entirely
4208         NC area, but this seems to work fine for anyone not manipulating
4209         WndProc.
4210
4211 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
4212
4213         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
4214           ToolStripItemCollection.cs, ToolStripLabel.cs,
4215           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
4216           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
4217           Initial implementation.
4218         * TextRenderer.cs: Provide padding to MeasureText.
4219
4220 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
4221
4222         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
4223         of ButtonBaseAccessibleObject. Fix bug #79552.
4224
4225 2006-10-02  Jackson Harper  <jackson@ximian.com>
4226
4227         * MdiWindowManager.cs: When maximizing use the containers client
4228         rect, not it's bounds, so nc area is accounted correctly.
4229         - Use the parent form's size for the menu position, since the
4230         client isn't always the full form size.
4231
4232 2006-10-01  Chris Toshok  <toshok@ximian.com>
4233
4234         * ScrollableControl.cs: make sure neither right_edge or
4235         bottom_edge are < 0, since they're used as LargeChange for the
4236         horiz/vert scrollbars respectively.  Fixes #79539.
4237
4238 2006-10-01  Chris Toshok  <toshok@ximian.com>
4239
4240         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
4241         the xplatuix11 code can cause us to destroy/recreate our handle.
4242
4243         * XplatUIX11.cs
4244         (SystrayAdd):
4245         - this code can be invoked many times for the same Hwnd.  Make
4246           sure we only destroy the client window once (the first time this
4247           method is called).  This fixes bug #79544.
4248         - Remove the call to the improperly bound XSync.  why we had two
4249           bindings to this, I will never know, but this call resulted in
4250           events being discarded from the queue(!).
4251         - correct a misunderstanding of _XEMBED_INFO - the second atom is
4252           not our current state but the state we wish to be in.  So, 0 if
4253           we don't want to be mapped.  Change it to 1.
4254         (SystrayRemove): The XEMBED spec makes mention of the fact that
4255         gtk doesn't support the reparent of client windows away from the
4256         embedder.  Looking at gtksocket-x11.c seems to agree with this.
4257         The only avenue we have for removing systray icons is to destroy
4258         them.  We don't want the handle to go away for good, though, so
4259         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
4260         #79545.
4261         
4262 2006-10-01  Chris Toshok  <toshok@ximian.com>
4263
4264         * Form.cs (WndProc): inline the native_enabled variable usage into
4265         the cases in which it's used.  Fixes #79536.
4266
4267 2006-09-29  Mike Kestner  <mkestner@novell.com>
4268
4269         * ListView.cs : toggle the selection state for ctrl clicks in 
4270         multiselect mode. [Fixes #79417]
4271
4272 2006-09-29  Mike Kestner  <mkestner@novell.com>
4273
4274         * ListView.cs : kill CanMultiSelect and refactor the selection
4275         code to support multiselection in the absence of mod keys. Steal
4276         arrow/home/end keys by overriding InternalPreProcessMessage to
4277         restore regressed keynav behavior.
4278         [Fixes #79416]
4279
4280 2006-09-29  Jackson Harper  <jackson@ximian.com>
4281
4282         * MdiClient.cs: Repaint the titlebars when the active window is
4283         changed.
4284
4285 2006-09-29  Chris Toshok  <toshok@ximian.com>
4286
4287         * Application.cs: when entering a runloop with a modal, make sure
4288         the hwnd is enabled.  Fixes #79480.
4289
4290 2006-09-29  Chris Toshok  <toshok@ximian.com>
4291
4292         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
4293         when ListManager.CanAddRows == false, bump us back one.
4294
4295         * DataGridColumnStyle.cs (ParentReadOnly): remove the
4296         listmanager.CanAddRows check.  This makes ArrayLists uneditable
4297         using a datagrid, which is not right.
4298         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
4299         is an IEditable, but call property_descriptor.SetValue regardless.
4300         fixes #79435.
4301
4302 2006-09-29  Chris Toshok  <toshok@ximian.com>
4303
4304         * DataGridBoolColumn.cs: we need to test equality in the face of
4305         possible null values (as is the case with the default NullValue).
4306         This patch keeps us from crashing in that case.
4307
4308 2006-09-29  Jackson Harper  <jackson@ximian.com>
4309
4310         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
4311         here, since it will get called for every node collection in the
4312         tree. This is now done in the treeview once the sorting is
4313         finished.
4314         * TreeView.cs: Recalculate the visible order, and update the
4315         scrollbars after sorting, set the top nope to the root so that the
4316         recalc actually works.
4317
4318 2006-09-29  Chris Toshok  <toshok@ximian.com>
4319
4320         * LinkLabel.cs: more handling of the default link collection in
4321         the face of LinkArea manipulation.  The default link collection
4322         contains 1 element (start=0,length=-1).  If the user sets LinkArea
4323         to anything and the links collection is the default, clear it.
4324         Then only add the link if its nonempty.  Fixes #79518.
4325
4326 2006-09-29  Chris Toshok  <toshok@ximian.com>
4327
4328         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
4329         piece correctly when we hit a '\n'.  Fixes #79517.
4330
4331 2006-09-29  Chris Toshok  <toshok@ximian.com>
4332
4333         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
4334         change the binding of gdk_init_check to take two IntPtr's, and
4335         pass IntPtr.Zero for both of them.  Fixes #79520.
4336
4337 2006-09-29  Mike Kestner  <mkestner@novell.com>
4338
4339         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
4340         [Fixes #78779]
4341
4342 2006-09-28  Jackson Harper  <jackson@ximian.com>
4343
4344         * XplatUIX11.cs: When translating NC messages make sure we go from
4345         whole window to screen, not client window to screen.
4346         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
4347         method doesn't exist
4348         - Skip over controls that aren't forms when arranging.
4349
4350 2006-09-28  Jackson Harper  <jackson@ximian.com>
4351
4352         * XplatUIWin32.cs: Clip the rect to the parent window.
4353         * XplatUIStructs.cs: Add clipping modes struct.
4354         * InternalWindowManager.cs: New private method that factors title
4355         bar heights in when calculating the pos of an NC mouse message.
4356         - Use SendMessage to force a paint when the form's size is changed
4357         instead of painting the decorations immediately.
4358         - Don't let the NC button click messages get to DefWndProc,
4359         because they will attempt to handle windowing themself, and this
4360         messes up z-order (it will put them in front of the scrollbars).
4361         * XplatUIX11.cs: Make sure that we don't reset window managers if
4362         we already have one (ie the window is an MDI window).
4363
4364 2006-09-28  Chris Toshok  <toshok@ximian.com>
4365
4366         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
4367         menu code really needs going over.
4368
4369 2006-09-27  Chris Toshok  <toshok@ximian.com>
4370
4371         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
4372         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
4373         window is maximizable.  So, we need to make sure that even if we
4374         clear the border/wm frame of those functions, they're still
4375         available (basically, we remove the decoration without removing
4376         the function).  Half the fix for #79338.
4377
4378 2006-09-27  Chris Toshok  <toshok@ximian.com>
4379
4380         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
4381         Fixes bug #79515.
4382
4383 2006-09-27  Chris Toshok  <toshok@ximian.com>
4384
4385         * Splitter.cs: reorder things a bit so that we don't actually
4386         draw/move the splitter until after calling OnSplitterMoving.  This
4387         lets users cancel/disallow the movement by explicitly setting
4388         event.SplitX/SplitY.  Fixes #79372.
4389
4390 2006-09-27  Jackson Harper  <jackson@ximian.com>
4391
4392         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
4393         because it is most likely on a window being destroyed, and that
4394         will give us an X11 error.
4395
4396 2006-09-27  Chris Toshok  <toshok@ximian.com>
4397
4398         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
4399         the dropdown button now toggles between showing and hiding the
4400         dropdown.  Also, get rid of dropdown_form_showing and just use
4401         dropdown_form.Visible.  We still don't do a grab, but I'll leave
4402         that part to someone who has handled Capture-fu before.
4403
4404 2006-09-27  Chris Toshok  <toshok@ximian.com>
4405
4406         * DataGrid.cs: return false if alt isn't pressed when '0' is
4407         pressed.  this keeps the '0' key from being swallowed, and fixes
4408         bug #79350.
4409
4410 2006-09-27  Chris Toshok  <toshok@ximian.com>
4411
4412         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
4413         Calling Refresh (in response to a scrollbar event) screws up the
4414         scrollbar painting.  Fixes bug #78923.
4415
4416 2006-09-27  Chris Toshok  <toshok@ximian.com>
4417
4418         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
4419         then insert into hashtable" blocks threadsafe.
4420
4421 2006-09-27  Chris Toshok  <toshok@ximian.com>
4422
4423         * MessageBox.cs (CreateParams): the styles should be |'ed with our
4424         baseclass's, since otherwise the
4425         ControlBox/MinimizeBox/MaximizeBox assignments above have no
4426         effect.  This gets the close button back in messageboxes.
4427
4428 2006-09-27  Chris Toshok  <toshok@ximian.com>
4429
4430         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
4431         flag, not just != 0.  this makes flags that are actually multiple
4432         bits (like WS_CAPTION) work.  fixes bug #79508.
4433
4434 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
4435
4436         * PageSetupDialog.cs: add support for getting and settings the 
4437         paper size, source and orientation.
4438
4439 2006-09-26  Chris Toshok  <toshok@ximian.com>
4440
4441         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
4442         and caption == "", we need to remove the resize handles as well as
4443         the title bar.
4444
4445         * Control.cs (set_Text): turns out that setting Text on a form
4446         should change the WM styles on the window, since if ControlBox ==
4447         false, the only way to get a window border is to have a non-""
4448         Text property.  check winforms/forms/text.cs for an example.  so,
4449         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
4450         update both window styles and title.  This fixes a lot of dialogs
4451         (including the preferences dialog in MonoCalendar.)
4452
4453 2006-09-26  Chris Toshok  <toshok@ximian.com>
4454
4455         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
4456         control isn't a Form), call Win32ShowWindow to hide the window,
4457         but don't update the control Visible property.  When we reparent
4458         back to a parent control, call SetVisible in order for the
4459         window's visibility to be reinstated.
4460
4461         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
4462         the FosterParent.
4463
4464         * Control.cs (ControlCollection.Remove): remove that value.Hide()
4465         call for good, since it breaks MonoCalendar (and other things I'm
4466         sure.) Also, set all_controls to null *after* the owner calls,
4467         which end up regenerating it.
4468         (ChangeParent): allow new_parent to be == null, passing
4469         IntPtr.Zero down to XplatUI.
4470
4471         this fixes #79294 the right way.
4472
4473 2006-09-26  Mike Kestner  <mkestner@novell.com>
4474
4475         * GridEntry.cs : internal SetParent method.
4476         * PropertyGrid.cs : attach to property changed on the proper
4477         target if we have a hierarchical grid with subobjects. Setup
4478         GridItem.Parent for hierarchical items.
4479         * PropertyGridView.cs : Set value on the correct target for
4480         hierarchical grids. [Fixes #78903]
4481
4482 2006-09-26  Chris Toshok  <toshok@ximian.com>
4483
4484         * Control.cs (ChildNeedsRecreating): this should return true if
4485         either we're being recreated and the child is in our list, or our
4486         parent is waiting for our recreation.
4487
4488 2006-09-26  Chris Toshok  <toshok@ximian.com>
4489
4490         * Control.cs (ControlCollection.Remove): reinstate the
4491         value.Hide() call as suggested in bug #79294.
4492
4493 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
4494
4495         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
4496         coordinates (versus a relative move).
4497
4498 2006-09-26  Chris Toshok  <toshok@ximian.com>
4499
4500         * Control.cs: rework child recreation a little bit.  It turns out
4501         that we race between the DestroyNotify the WM_DESTROY message.  If
4502         the parent gets its DestroyNotify before the child gets the
4503         WM_DESTROY message, the child ends up not recreating (since the
4504         parent finishes its recreation on DestroyNotify, and the child
4505         checks ParentIsRecreating.)
4506
4507         So, instead we store off a list of all the child controls which
4508         need to be recreated when the parent control starts to recreate
4509         itself.  Then, when child controls get their WM_DESTROY message we
4510         check to see if they're in the parent's pending recreation list,
4511         and if so, we recreate.  This removes all dependency on ordering
4512         from the code and fixes the initial MonoCalendar upgrade dialog.
4513         
4514 2006-09-26  Jackson Harper  <jackson@ximian.com>
4515
4516         * TextControl.cs: Use the Line to get the length of the line,
4517         since soft line breaks can change the end line.
4518
4519 2006-09-26  Chris Toshok  <toshok@ximian.com>
4520
4521         * Control.cs (ControlCollection.AddImplicit): don't add the
4522         control again if it's already in one of our lists.  This keeps us
4523         from adding controls over and over again for comboboxes when their
4524         handle gets recreated (as the combobox adds implicit controls in
4525         OnHandleCreated).  Fixes the X11 errors in bug #79480.
4526
4527 2006-09-26  Jackson Harper  <jackson@ximian.com>
4528
4529         * TextControl.cs: When deleting characters make sure that any
4530         orphaned zero lengthed tags get deleted.
4531         - Fix ToString for zero lengthed tags.
4532
4533 2006-09-25  Jackson Harper  <jackson@ximian.com>
4534
4535         * TextControl.cs: When getting a tag at the location there can be
4536         multiple tags at the same spot, these are 0-lengthed tags that
4537         appear when extra formatting has been stuck in a location.  We
4538         need to pull out the last of these 0 lengthed tags.
4539
4540 2006-09-25  Jackson Harper  <jackson@ximian.com>
4541
4542         * TextControl.cs: Fix print out in debug method.
4543         * TextBoxBase.cs: When text is set bail if we are setting to the
4544         previous value.
4545         
4546 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
4547
4548         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
4549           It is now possible to change the selected index in a FontXXXListBox
4550           with the up and down arrow keys from the FontXXXTextBoxes.
4551           Also, send the FontXXXTextBox mouse wheel event to the corresponding
4552           FontXXXListBoxes to match ms.
4553
4554 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
4555
4556         * SystemInformation.cs: Return a clone of the theme's MenuFont because
4557         anyone can dispose it, anytime. All other properties returns enums, 
4558         structs or basic types so they don't need such tricks.
4559
4560 2006-09-22  Jackson Harper  <jackson@ximian.com>
4561
4562         * XplatUI.cs:
4563         * XplatUIWin32.cs:
4564         * Clipboard.cs:
4565         * DataFormats.cs:
4566         * XplatUIOSX.cs:
4567         * XplatUIDriver.cs: Update interface to add a primary selection
4568         flag, so the driver can use the primary selection buffer if
4569         needed.
4570         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
4571
4572         * RichTextBox.cs: We need to supply the data object to paste now
4573         (so we can choose to supply CLIPBOARD or PRIMARY).
4574         * TextBoxBase.cs: Supply data object to paste (see above).
4575         - Middle click uses the primary selection data object.
4576         
4577 2006-09-21  Chris Toshok  <toshok@ximian.com>
4578
4579         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
4580         of SetWMStyles.  It's still a rat's nest and is largely
4581         order-dependent which I dislike immensely.  This also fixes the X
4582         button disappearing from toplevel forms.
4583
4584 2006-09-21  Mike Kestner <mkestner@novell.com>
4585
4586         * ListBox.cs: move Jordi's click/dblclick raising code to the
4587         mouse up handler.
4588
4589 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
4590
4591         * ListBox.cs: Fixes 79450
4592
4593 2006-09-21  Mike Kestner <mkestner@novell.com>
4594
4595         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
4596         to deal with people updating the TreeNodeCollection after the tree
4597         is disposed.  "Fixes" 79330.
4598
4599 2006-09-20  Jackson Harper <jackson@ximian.com>
4600
4601         * TextControl.cs: Push the cursor record onto the undo stack
4602         before the delete action. This fixes 78651.
4603
4604 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
4605
4606         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
4607         CreateParams. Fixes 79329.
4608
4609 2006-09-19  Chris Toshok  <toshok@ximian.com>
4610
4611         * XplatUIX11.cs: a couple of blanket code massage passes to clean
4612         things up a bit.  First, get rid of the NetAtoms array (and the NA
4613         enum), and just embed the atoms as static fields.  Also, add a
4614         couple of functions (StyleSet and ExStyleSet) to clean up all the
4615         bitmask testing of styles.
4616
4617         * X11Structs.cs: remove the NA enum, not needed anymore.
4618         
4619 2006-09-19  Chris Toshok  <toshok@ximian.com>
4620
4621         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
4622         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
4623         added cleanup to get MessageBox titles appearing again, which were
4624         broken by my earlier fix for caption-less/ControlBox-less windows.
4625
4626 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
4627
4628         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
4629           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
4630           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
4631           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
4632           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
4633           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
4634           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
4635           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
4636           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
4637           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
4638           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
4639             Inital import.
4640         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
4641           ToolStripButton.cs: Stubs needed for above.
4642         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
4643
4644 2006-09-15  Chris Toshok  <toshok@ximian.com>
4645
4646         * XplatUIX11.cs:
4647         - make the MessageQueues hashtable Synchronized.
4648         
4649         - SendMessage: if the Hwnd is owned by a different thread, use the
4650         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
4651         thread.  Fixes bug #79201.
4652
4653 2006-09-15  Chris Toshok  <toshok@ximian.com>
4654
4655         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
4656         ControlBox == false, we disallow maximize/minimize/close.  If the
4657         form Caption is "" we also disallow move (and get rid of the Title
4658         decoration).  Unfortunately, regardless of how things are set,
4659         we're stuck with the Title and WM menu.
4660
4661 2006-09-15  Chris Toshok  <toshok@ximian.com>
4662
4663         * Application.cs: add locking around the static message_filters
4664         ArrayList, part of #79196.
4665
4666 2006-09-15  Chris Toshok  <toshok@ximian.com>
4667
4668         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
4669         Form.ControlBox == false, the window has no titlebar nor resize
4670         handles.  fixes bug #79368.
4671
4672 2006-09-15  Chris Toshok  <toshok@ximian.com>
4673
4674         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
4675         >= 0.  Fixes bug #79370.
4676
4677 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
4678         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
4679         * Control.cs:
4680             Add properties: LayoutEngine, Margin, DefaultMargin.
4681             Add method: GetPreferredSize.
4682             Move layout logic from PerformLayout to layout engines. 
4683
4684 2006-09-13  Chris Toshok  <toshok@ximian.com>
4685
4686         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
4687         fix for #79326 broke #78718, so this change addresses that.
4688
4689         - in SendWMDestroyMessages remove the call to
4690         CleanupCachedWindows, since we might be recreating the control and
4691         need to maintain the references to right Hwnd handles.  Also, set
4692         the zombie flag to true for each of the children in the hierarchy
4693         instead of calling hwnd.Dispose.  This will cause GetMessage to
4694         ignore all events for the window except for DestroyNotify.
4695
4696         - In GetMessage, ignore messages except for DestroyNotify for
4697         zombie hwnds.
4698         
4699         * Control.cs: revert the is_recreating fix from the last
4700         ChangeLog.  It's definitely "right", but it breaks switching from
4701         an MDI form to a non-MDI form.  Will need to revisit that.
4702
4703         * Hwnd.cs: add a zombie flag, which means "the
4704         client_window/whole_window handles are invalid, but we're waiting
4705         for the DestroyNotify event to come in for them".  Set the flag to
4706         false explicitly if setting WholeWindow/ClientWindow, and also
4707         when Disposing.
4708         
4709 2006-09-13  Chris Toshok  <toshok@ximian.com>
4710
4711         * XplatUIX11.cs: rework window destruction slightly.
4712
4713         - when destroying the windows associated with a control, we don't
4714         need 2 separate XDestroyWindow calls.  Just the one for the
4715         whole_window (or for client_window if whole_window is somehow
4716         IntPtr.Zero -- can this happen?) is enough.
4717
4718         - reworked SendWMDestroyMessages slightly, so we always dispose
4719         the child control hwnd's after sending the messages.
4720         
4721         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
4722         the two places it was used (one was even using hwnd.Handle and the
4723         other hwnd.client_window.  ugh), adding another call in
4724         SendWMDestroyMessages.  We need this new call because now the
4725         DestroyNotify events in the queue will be ignored for the child
4726         controls (as their hwnd's were disposed, and the window id's
4727         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
4728
4729         - this fixes bug #79326.
4730
4731 2006-09-13  Chris Toshok  <toshok@ximian.com>
4732
4733         * Control.cs: don't always set is_recreating to false at the end
4734         of RecreateHandle, since sometimes we're not done (and won't be
4735         until WndProc handles the WM_DESTROY message).  Also, set
4736         is_recreating to false in the WM_DESTROY handling code.  Part of
4737         the fix for bug #79326.
4738
4739 2006-09-13  Miguel de Icaza  <miguel@novell.com>
4740
4741         * X11DesktopColors.cs: Start the droppage of debugging messages.
4742
4743         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
4744
4745 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
4746
4747         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
4748
4749 2006-09-12  Chris Toshok  <toshok@ximian.com>
4750
4751         * DataGrid.cs (get_ListManager): if the list_manager is null, try
4752         to create it using SetDataSource.  Fixes bug #79151.
4753
4754 2006-09-11  Chris Toshok  <toshok@ximian.com>
4755
4756         * XEventQueue.cs: add a DispatchIdle property.
4757
4758         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
4759         either the queue is null, or the queue has DispatchIdle set to
4760         true.
4761         (DoEvents): set queue.DispatchIdle to false around the
4762         peek/translate/dispatch message loop in this method.  This keeps
4763         Application.Doevents from emitting idle events.  Part of the fix
4764         for #78823.
4765
4766 2006-09-11  Chris Toshok  <toshok@ximian.com>
4767
4768         * DataGrid.cs (set_DataSource): make this work for both the
4769         winforms/datagrid test and ReportBuilder.  It seems as though when
4770         we've created a ListManager (or maybe it's if we have a
4771         BindingContext?), when we set the DataSource it clears the
4772         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
4773         #79333.
4774
4775 2006-09-11  Chris Toshok  <toshok@ximian.com>
4776
4777         * XplatUIX11.cs: deal with queue being null, which happens in all
4778         the Clipboard functions.  Fixes one of the two problems mentioned
4779         in #78612.
4780
4781 2006-09-11  Chris Toshok  <toshok@ximian.com>
4782
4783         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
4784         button on various spots (including outside the menu) works closer
4785         to MS, and doesn't crash.  Fixes #79343.
4786
4787 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
4788
4789         * ListView.cs: Do not initialize item_sorter in init. To match MS,
4790         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
4791         and the internal comparer is set. When a new ListViewItemSorter is set,
4792         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
4793         was specified. No further processing is necessary if SortOrder is set
4794         to it's current value. If Sorting is modified to None, and View is
4795         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
4796         (either custom or our internal ItemComparer) to null, on 1.0 profile
4797         only set item_sorter to null if its our internal IComparer. If Sorting
4798         is modified to Ascending or Descending, then use our internal IComparer
4799         if none is set, and if the current IComparer is our internal one then:
4800         on 2.0 profile always replace it with one for new Sorting, and on 1.0
4801         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
4802         Enum.IsDefined to verify whether a valid View value is specified in
4803         its setter. Automatically sort listview items when listview is
4804         created. In Sort, do nothing if ListView is not yet created, or if
4805         no item_sorter is set (no Sorting was set, Sorting was explicitly set
4806         to None or ListViewItemSorter was set to null). Added Sort overload
4807         taking a bool to indicate whether the ListView should be redrawn when
4808         items are sorted (we use this in ListViewItemCollection to avoid double
4809         redraws). Modified our internal IComparer to take the sort order into
4810         account. In Add and AddRange methods of ListViewItemCollection, also
4811         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
4812         view), but use overload with noredraw option to avoid double redraw.
4813         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
4814         true when View is Tile, and do the same when attempting to set View to
4815         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
4816         for selected/checked indices, as it involves overhead when sorting is
4817         done while these collections are not used all that often. Instead
4818         we'll build the indices on demand. Modified IList implementation of
4819         CheckedIndexCollection to use public methods if object is int.
4820         Modified CheckedListViewItemCollection to hide checked items if
4821         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
4822         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
4823         IList implementation in SelectedIndexCollection to use public methods
4824         if object is int. Modified SelectedListViewItemCollection to hide
4825         selected items if listview is not yet created.
4826         * ListViewItem.cs: CheckedIndices list no longer needs to be
4827         maintained separately (see ListView changes). Also clone font, fixes
4828         test failure.
4829
4830 2006-09-11  Mike Kestner  <mkestner@novell.com>
4831
4832         * ComboBox.cs: if we are updating the contents of the currently
4833         selected index, refresh the control or the textbox selection.
4834         [Fixes #79066]
4835
4836 2006-09-11  Mike Kestner  <mkestner@novell.com>
4837
4838         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
4839         the 'specified' logic has been moved there.  This seems like a bug 
4840         in Control.cs, since our current SetBoundsCore completely ignores 
4841         the specified parameter.  Peter's commit seems to indicate that is 
4842         the way the MS control implementation works.  [Fixes #79325]
4843
4844 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
4845
4846         * XplatUI.cs: Set default_class_name to be composed
4847         of current domain id. This allows MWF to be loaded in multiple
4848         domains on Win32.
4849
4850 2006-09-09  Miguel de Icaza  <miguel@novell.com>
4851
4852         * X11Keyboard.cs: If we are unable to obtain the input method, do
4853         not call CreateXic to create the input context.   Should fix
4854         #78944/79276.
4855
4856 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
4857
4858         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
4859           Simplified gnome support by adding more pinvokes to get the
4860           icon for a file or mime type.
4861
4862 2006-09-08  Jackson Harper  <jackson@ximian.com>
4863
4864         * MenuAPI.cs: Deslect popup context menu items before closing the
4865         window, so that you don't see the previously selected item
4866         selected when you reopen the menu.
4867         * TextControl.cs: Update the cursor position even if we don't have
4868         focus.  This fixes typing in things like the ComboBox.  I'm not
4869         totally sure we should always set the visibility if we don't have
4870         focus, but couldn't find any corner cases where the cursor showed
4871         up when it shouldn't.
4872
4873 2006-09-08  Chris Toshok  <toshok@ximian.com>
4874
4875         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
4876         our arrays are length 256.  & 0xff before indexing.  Fixes the
4877         crash in bug #78077.
4878         
4879 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4880
4881         * ThemeWin32Classic.cs: 
4882         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
4883         is true. Handle that check box too.
4884
4885 2006-09-07  Chris Toshok  <toshok@ximian.com>
4886
4887         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
4888         79244.
4889
4890 2006-09-07  Chris Toshok  <toshok@ximian.com>
4891
4892         * Control.cs: in set_BackColor only do the work if
4893         background_color != value.
4894
4895         * XplatUIX11.cs: move the clearing of invalid areas (both client
4896         and nc) to the same block of code where we set (nc_)expose_pending
4897         to false.  That is, move it from PaintEventEnd to PaintEventStart,
4898         so things that cause invalidates from within OnPaint will trigger
4899         another call to OnPaint.  Fixes bug #79262.
4900
4901 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
4902
4903         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
4904         * FileDialog.cs: Fix typo
4905
4906 2006-09-07  Jackson Harper  <jackson@ximian.com>
4907
4908         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
4909         for tab pages if they have any.
4910
4911 2006-09-06  Mike Kestner  <mkestner@novell.com>
4912
4913         * Splitter.cs: use the "current" rect when finishing drag handle
4914         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
4915
4916 2006-09-06  Mike Kestner  <mkestner@novell.com>
4917
4918         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
4919         support offset splitters. [Fixes #79298]
4920
4921 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
4922
4923         * Mime.cs: Fixed a bug that could override the global mime type
4924           result.
4925
4926 2006-09-05  Jackson Harper  <jackson@ximian.com>
4927
4928         * TabControl.cs: Better calculation method for setting the slider
4929         pos. Prevents crashes on really wide tabs.
4930         - Draw Image on tab pages if an image list is used.
4931
4932 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4933
4934         * MonthCalendar.cs: When Font changes, the Size should be
4935         updated to fit the new font's space requirements.
4936
4937 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
4938
4939         * ListBox.cs: If the items are cleared with Items.Clear set
4940           top_index to 0.
4941
4942 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4943
4944         * MonthCalendar.cs: Handle arrow keys as input keys. Also
4945         fire DateChanged event instead of DateSelected event when
4946         the date was changed by keyboard interaction.
4947
4948 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4949
4950         * DateTimePicker.cs: Handle DateChanged for the associated
4951         month_calendar control, and set month_calendar.Font from 
4952         OnFontChanged method, as well as resize the height of the
4953         control when needed. Make PreferredHeight proportional.
4954
4955 2006-09-01  Chris Toshok  <toshok@ximian.com>
4956
4957         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
4958         properties.
4959
4960         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
4961
4962 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
4963
4964         * FileDialog.cs: Set ClientSize instead of window size, to allow space
4965           for decorations (Fixes #79219)
4966
4967 2006-09-01  Mike Kestner  <mkestner@novell.com>
4968
4969         * ComboBox.cs: first stab at sorting plus some selection handling
4970         fixes to bring us more in line with MS behavior.  Also switches back
4971         to index based selection.  Alternative patches for index-based 
4972         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
4973         and latency@gmx.de on bug 78848.  I assume they were similar to this
4974         code I've had simmering in my tree forever.
4975         [Fixes #78848]
4976
4977 2006-09-01  Chris Toshok  <toshok@ximian.com>
4978
4979         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
4980         when setting list position guard against ending up with a -1 index
4981         (the other part of the fix for #78812).  Should probably make sure
4982         we don't need the analogous fix in the ItemDeleted case.
4983
4984         * DataGrid.cs:
4985         - in SetDataSource, work around the fact that the way
4986         OnBindingContextChanged is invoked will cause us to re-enter this
4987         method.  I'll remove the hack once I investigate
4988         OnBindingContextChanged.
4989
4990         - fix the logic in set_DataSource and set_DataMember (basically
4991         what to do if the other of the two is null.)
4992         
4993         - in OnListManagerItemChanged, we need to take into account the
4994         edit row when deciding whether or not to call RecreateDataGridRows
4995         (part of the fix for #78812).
4996
4997 2006-09-01  Jackson Harper  <jackson@ximian.com>
4998
4999         * Splitter.cs: Don't do anything if there is no control to affect
5000         (prevents us from crashing in weird tet cases).
5001         * TreeView.cs: Bounding box for the mouse movement reverting
5002         focus/selection back to previously selected node.  This matches
5003         MS, and makes the tree a lot more useable.
5004         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
5005         use clipping so they are not drawn.  This fixes when the control
5006         is set to have a transparent background, or if it was over an
5007         image.
5008
5009 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
5010
5011         * MimeIcon.cs: Improved handling for reading default icons when
5012           using gnome (2.16 made it necessary). Check and read svg icons
5013           first, then 48x48 and then 32x32 icons.
5014
5015 2006-08-31  Chris Toshok  <toshok@ximian.com>
5016
5017         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
5018         visible.
5019
5020         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
5021         ProcessKeyPreview.  Fixes part of #77806.
5022
5023         * DataGrid.cs: big patch.
5024
5025         - revert the queueing up of DataSource/DataMember if inside
5026         BeginInit/EndInit calls.  That's not the way the datagrid achieves
5027         its delayed databinding.  Instead, call SetDataSource in
5028         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
5029         #78811.
5030
5031         - Also, it wasn't mentioned in #78811, but the test case exhibits
5032         behavior that was lacking in our datagrid implementation - Columns
5033         that have mapping names that don't exist in the datasource's
5034         properties aren't shown.  Yuck.  To fix this I added the bound
5035         field to the column style, and basically any calculation to figure
5036         out anything about columns uses a loop to find the bound columns.
5037         still need to investigate if I can cache an array of the bound
5038         columns or if the indices must be the same.
5039
5040         - When setting CurrentCell, we no longer abort if the cell being
5041         edited was in the add row.  This fixes the other part of #77806.
5042
5043         - The new code also fixes #78807.
5044         
5045         * ThemeWin32Classic.cs: perpetrate the same disgusting
5046         column.bound field hack, and only render bound fields.
5047
5048 2006-08-31  Chris Toshok  <toshok@ximian.com>
5049
5050         * DataGridColumnStyle.cs: add bound field.  this field is true if
5051         the datasource has a property corresponding to the mapping name.
5052
5053         * DataGridTableStyle.cs: set the bound field on the column styles
5054         depending on whether or not we have a column for that property.
5055
5056 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
5057
5058         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
5059           splitter control (fixes #79228)
5060
5061 2006-08-31  Chris Toshok  <toshok@ximian.com>
5062
5063         * DataGridColumnStyle.cs: we need to delay the assignment of
5064         property descriptor until the last possible moment due to the lazy
5065         databinding stuff in the datagrid.  Also, fix the exceptions
5066         thrown by CheckValidDataSource to match MS.
5067
5068 2006-08-31  Jackson Harper  <jackson@ximian.com>
5069
5070         * Form.cs: When activated select the active control, if there is
5071         no active control, we select the first control.
5072         * XplatUIX11.cs: If there is no focus control when we get a
5073         FocusIn event, find the toplevel form and activate it.  This
5074         occurs when you popup a window, it becomes the focus window, then
5075         you close that window, giving focus back to the main window.
5076
5077 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5078
5079         * MonthCalendar.cs: 
5080         * ThemeWin32Classic.cs: Cache Font in bold style, as well
5081         as StringFormat with Center alignments in MonthCalendar,
5082         instead of creating new ones when drawing the control. 
5083         Also, draw the month name in bold style.
5084
5085 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
5086
5087         * Control.cs:
5088           - PerformLayout(): It would seem MS performs the fill even if the 
5089             control is not visible (part of #79218 fix)
5090           - ResetBackColor(): Use the setter to reset the color, to allow
5091             overriders to catch the change.
5092         * Form.cs:
5093           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
5094           - CreateHandle(): dito (part of $79218 fix)
5095           - Don't set an icon if we have a dialog
5096         * ScrollableControl.cs:
5097           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
5098           - ScrollIntoView(): No need to scroll if control is already visible
5099             (resolves fixme and fixes #79218)
5100
5101 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5102
5103         * MonthCalendar.cs: Change proportions in SingleMonthSize
5104         to match the aspect of the original control.
5105
5106 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
5107
5108         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
5109           get updated when they get maximized.
5110
5111 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
5112
5113         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
5114
5115 2006-08-29  Chris Toshok  <toshok@ximian.com>
5116
5117         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
5118
5119 2006-08-29  Jackson Harper  <jackson@ximian.com>
5120
5121         * TreeView.cs: Need to track selected node and highlighted node,
5122         they aren't always the same thing, when the mouse is down on a
5123         node it is hilighted, but not selected yet.
5124         - Do the HideSelection stuff right
5125         - Need to focus on rbutton mouse down. And redraw selection when
5126         right click is mouse upped.
5127
5128 2006-08-29  Mike Kestner  <mkestner@novell.com>
5129
5130         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
5131         when SubItems.Count < Columns.Count.  [Fixes #79167]
5132
5133 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
5134
5135         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
5136
5137 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
5138
5139         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
5140           from X. Only send based on ConfigureNotify if we don't have the
5141           correct location in hwnd (if the window manager moved us)
5142
5143 2006-08-28  Mike Kestner  <mkestner@novell.com>
5144
5145         * ListView.cs: remove a TODO. 
5146         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
5147         [Fixes ListView part of #79166]
5148
5149 2006-08-28  Mike Kestner  <mkestner@novell.com>
5150
5151         * ListView.cs: move wheel handler to parent since it is focused
5152         instead of the item_control now.  [Fixes #79177]
5153
5154 2006-08-28  Mike Kestner  <mkestner@novell.com>
5155
5156         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
5157         when the control is focused. [Fixes #79171]
5158
5159 2006-08-28  Mike Kestner  <mkestner@novell.com>
5160
5161         * ListView.cs: size the item and header controls for empty and
5162         unscrollable views.
5163         * ThemeWin32Classic.cs: draw disabled backgrounds.
5164         [Fixes #79187]
5165
5166 2006-08-28  Chris Toshok  <toshok@ximian.com>
5167
5168         * Form.cs: remove unused "active_form" static field.
5169
5170         * Hwnd.cs: lock around accesses to static windows collection.
5171
5172         * Application.cs: lock threads in Exit ().
5173
5174 2006-08-28  Chris Toshok  <toshok@ximian.com>
5175
5176         * NativeWindow.cs: lock around accesses to window_collection.
5177         
5178 2006-08-28  Chris Toshok  <toshok@ximian.com>
5179
5180         * Control.cs: err, fix this the right way, by locking on controls
5181         when using it.  not by making it synchronized.
5182
5183 2006-08-28  Chris Toshok  <toshok@ximian.com>
5184
5185         * Control.cs: make the static "controls" field synchronized, as it
5186         gets updated from multiple threads.
5187
5188 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5189
5190         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
5191           Prevent other threads from exiting when calling thread sets quit state.
5192         * XEventQueue.cs: Added PostQuitState property
5193
5194 2006-08-27  Chris Toshok  <toshok@ximian.com>
5195
5196         * AsyncMethodData.cs: add a slot for the window handle.
5197
5198         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
5199         window (the destination control's window, not the foster window).
5200
5201         * Control.cs (BeginInvokeInternal): store the window's handle in
5202         the AsyncMethodData.
5203         
5204
5205 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5206
5207         * XplatUIX11.cs:
5208           - PostQuitMessage: Removed resetting S.D display handle, we might have
5209             another loop started after calling PostQuitMessage (Fixes #79119)
5210           - Created destructor to reset S.D handle
5211
5212 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
5213
5214         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
5215
5216 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5217
5218         * TextControl.cs (Insert): Update the caret position even if we don't
5219           have a handle yet, just don't call the driver in that case.
5220         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
5221           to the end of the new selection text (Fixes #79184)
5222
5223 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5224
5225         * Form.cs (Activate): Only activate if the handle is created)
5226         * Control.c:
5227           - Mark window as invisible when it's disposed
5228           - Check if window handle is created when setting window visible, 
5229             instead of relying just on the is_created variable
5230           - Check if object is disposed when creating the control (Fixes #79155)
5231
5232 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5233
5234         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
5235           when allowing layout again. Otherwise we re-generate the anchoring 
5236           distance to the border again and actually alter what the user wanted
5237           This is ugly, it'd be better if we used DisplayRectangle instead of
5238           ClientRectangle for Control.UpdateDistances, but that causes us to
5239           have other problems (initial anchoring positons would be wrong)
5240           (Fixes #78835)
5241
5242 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5243
5244         * Control.cs:
5245           - The size and location setters shouldn't go directly to 
5246             SetBoundsCore, but to SetBounds, which triggers layout on the
5247             parent, then calls SetBoundsCore. (Related to fix for #78835)
5248           - SetBounds: Moved actual location update code into this function
5249             from SetBoundsCore, to match MS. Added call to PerformLayout if
5250             we have a parent (to trigger resizing of anchored parents if the 
5251             child size has changed (see testcase for #78835) 
5252         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
5253           new control code
5254         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
5255
5256 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5257
5258         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
5259           System.Drawing when a toplevel window gets closed; there might
5260           be other toplevel windows belonging to the same app (Fixes #78052)
5261
5262 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
5263
5264         * FileDialog.cs: After reading FileDialog settings from mwf_config
5265           use Desktop prefix only if a real folder doesn't exist anymore.
5266         * FontDialog.cs: Added char sets.
5267           It is now possible to select the font, size or style with the
5268           textboxes.
5269
5270 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
5271
5272         * PrintPreviewDialog.cs: Use assembly name constants.
5273
5274 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5275
5276         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
5277           scrollbar from whacking it's buttons)
5278
5279 2006-08-24  Chris Toshok  <toshok@ximian.com>
5280
5281         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
5282         in this patch (aggregating setting Left/Top/Width/Height to
5283         setting Bounds on the scrollbars), but the crux of the fix is in
5284         Recalculate, where we scroll by the remaining scroll_position if
5285         we're hiding a scrollbar.  The 2*$5 reward in the comment is
5286         serious.
5287
5288 2006-08-24  Jackson Harper  <jackson@ximian.com>
5289
5290         * MdiClient.cs:
5291         * MdiWindowManager.cs: If the form is made a non-mdi window we
5292         need to remove the form closed event so that closing forms works
5293         correctly.
5294
5295 2006-08-24  Jackson Harper  <jackson@ximian.com>
5296
5297         * Control.cs: Make IsRecreating internal so that the driver can
5298         check it
5299         - Temporarily remove the Hide when controls are removed, its
5300         making a whole bunch of things not work because visibility isn't
5301         getting reset elsewhere correctly
5302         * Form.cs: Need to do a full handle recreation when the mdi parent
5303         is set.
5304         * XplatUIX11.cs: If we are recreating handles don't dispose the
5305         HWNDs.  What was happening is the handles were being recreated in
5306         SendWMDestroyMessages, but then flow continued on in that method
5307         and destroyed the new handles.
5308
5309 2006-08-23  Jackson Harper  <jackson@ximian.com>
5310
5311         * Form.cs: MdiClient is always at the back of the bus
5312         * Control.cs: When the order of items in the collection is changed
5313         we need to reset the all_controls array
5314         - do the same sorta setup thats done when adding a control when a
5315         control is set on the collection.
5316
5317 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5318
5319         * TextBoxBase.cs (get_Text): Return an empty array if our document
5320           is empty (fixes #79052)
5321
5322 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5323
5324         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
5325           on WM_SYSCHAR messages (fixes #79053)
5326
5327 2006-08-23  Chris Toshok  <toshok@ximian.com>
5328
5329         * DataGrid.cs: fix flickering when scrolling vertically.
5330
5331 2006-08-23  Chris Toshok  <toshok@ximian.com>
5332
5333         * DataGrid.cs (EndEdit): only invalidate the row header when we
5334         need to.
5335
5336 2006-08-23  Chris Toshok  <toshok@ximian.com>
5337
5338         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
5339         methods.  fixes the flicker when scrolling around.
5340
5341 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5342
5343         * FileDialog.cs: Making sure the control is created before we get a 
5344           chance to use it with BeginInvoke (Fixes #79096)
5345
5346 2006-08-23  Chris Toshok  <toshok@ximian.com>
5347
5348         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
5349         width to use when painting the rows.
5350
5351 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5352
5353         * TextBoxBase.cs:
5354           - Throw ArgumentException if a negative value is passed to SelectionLength
5355           - Update the selection end if start is moved. end needs to be always
5356             after start. (Fixes #79095)
5357           - Track selection length; MS keeps the selection length even if start
5358             is changed; reset on all other operations affection selection
5359
5360 2006-08-22  Jackson Harper  <jackson@ximian.com>
5361
5362         * TreeView.cs: Make sure both scrollbars get displayed and sized
5363         correctly when the other bar is visible.
5364         - Use the original clip rectangle for checking if the area between
5365         the two scrollbars is visible, not the viewport adjusted clipping
5366         rectangle.
5367
5368 2006-08-22  Jackson Harper  <jackson@ximian.com>
5369
5370         * Binding.cs: We don't use IsBinding because it requires the
5371         control to be created, which really shouldn't be necessary just to
5372         set a property on the control.
5373
5374 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5375
5376         * ComboBox.cs: Some CB.ObjectCollection methods must throw
5377         ArgumentNullReferenceException when the argument is null.
5378
5379 2006-08-21  Jackson Harper  <jackson@ximian.com>
5380
5381         * Timer.cs: Track the thread that the timer is started in (NOT
5382         CREATED), this way messages for it will only be triggered on its
5383         queue.
5384         * XEventQueue.cs: Track the timers here, this makes timers per
5385         thread, like MS.
5386         * XplatUIX11.cs: The timers are moved to the XEventQueue.
5387
5388 2006-08-19  Chris Toshok  <toshok@ximian.com>
5389
5390         * XplatUIX11.cs: after further communication with pdb, we get the
5391         best of both worlds.  SetZOrder working for un-Mapped windows, and
5392         no X errors for un-mapped windows.
5393
5394 2006-08-19  Chris Toshok  <toshok@ximian.com>
5395
5396         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
5397         as it was causing pdn toolbars to not have the correct stacking.
5398
5399 2006-08-18  Mike Kestner  <mkestner@novell.com> 
5400
5401         * ListView.cs : guard against negative ClientArea.Width in scrollbar
5402         calculation.  Not sure why control should ever be setting a negative
5403         width though.  Fixes #78931.
5404
5405 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5406
5407         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
5408         null items in ObjectCollection class.
5409         * ListBox.cs.: Likewise.
5410
5411 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
5412
5413         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
5414           as the base method in ThemeWin32Classic should work fine.
5415           Fixed bug #78607.
5416
5417 2006-08-18  Jackson Harper  <jackson@ximian.com>
5418
5419         * Binding.cs: When validating if the value entered doesn't convert
5420         properly reset to the old value.
5421         * RadioButton.cs: Don't fire click when we get focus.
5422
5423 2006-08-18  Jackson Harper  <jackson@ximian.com>
5424
5425         * FileDialog.cs: Paint the selection on the directory combobox the
5426         same way as on MS. 
5427
5428 2006-08-17  Jackson Harper  <jackson@ximian.com>
5429
5430         * ErrorProvider.cs: Don't allow the error control to be selected.
5431         * Control.cs: Don't send the SetFocus messages, the control
5432         activation will do this, and if we do it blindly here validation
5433         does not work.
5434
5435 2006-08-17  Jackson Harper  <jackson@ximian.com>
5436
5437         * Control.cs:
5438         * ContainerControl.cs: Make validation events fire in the correct
5439         order.  TODO: For some reason the first validation event is not
5440         getting fired.
5441
5442 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5443
5444         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
5445
5446 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5447
5448         * ComboBox.cs : implement scroll wheel support for popped-down
5449         state. Fixes #78945. 
5450
5451 2006-08-17  Jackson Harper  <jackson@ximian.com>
5452
5453         * TreeView.cs: Specify treeview actions (old patch that didn't get
5454         committed for some reason).
5455         - Don't let the mouse wheel scroll us too far.  Just want to make
5456         the bottom node visible, not scroll it all the ways to the top.
5457
5458 2006-08-17  Jackson Harper  <jackson@ximian.com>
5459
5460         * XplatUIX11.cs: Mouse wheel events go to the focused window.
5461
5462 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5463
5464         * ComboBox.cs : don't do mouseover selection in simple mode.
5465
5466 2006-08-16  Jackson Harper  <jackson@ximian.com>
5467
5468         * Form.cs: Fire the closing events for all the mdi child windows
5469         when a window is closed.  If the cancel args are set to true, the
5470         main window still gets the event fired, but it doesn't not close.
5471         * MdiWindowManager.cs: Do this closing cleanup in a Closed
5472         handler, instead of when the button is clicked, so cancelling the
5473         close works correctly.
5474         * ComboBox.cs: Send the mouse down to the scrollbar.
5475
5476 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5477
5478         * ListBox.cs: When passing 'null' to SelectedItem,
5479         set SelectedIndex to -1, to unselect items. This is the
5480         observed behaviour in .Net.
5481
5482 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
5483
5484         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
5485           MS flags saying there won't be any. (fixes #78800)
5486         * Control.cs (HandleClick): Made virtual
5487
5488 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5489
5490         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
5491           cultures. Fixed bug #78399.
5492
5493 2006-08-16  Jackson Harper  <jackson@ximian.com>
5494
5495         * Form.cs: Use the MdiClients MdiChildren property to access
5496         MdiChildren instead of creating the array from the child controls.
5497         * MdiClient.cs: Maintain a separate array of the mdi children, so
5498         that insertion order is maintained when the Z-order is changed.
5499
5500 2006-08-16  Mike Kestner  <mkestner@novell.com> 
5501
5502         * ListView.cs : add an ItemComparer and default to it for sorting.
5503         Fixes #79076, but sorting needs a complete overhaul to be compat with
5504         MS.
5505
5506 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5507
5508         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
5509
5510 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5511
5512         * Hwnd.cs (Mapped): Properly traverse the tree
5513
5514 2006-08-15  Chris Toshok  <toshok@ximian.com>
5515
5516         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
5517         pass manager.Current.GetType() to ParseData.  It has to be the
5518         property type.  So, hold off doing the ParseData until we're in
5519         SetPropertyValue where we know the type.  This fixes the crash in
5520         #78821 but the textbox is still empty.
5521
5522 2006-08-15  Chris Toshok  <toshok@ximian.com>
5523
5524         * DataGrid.cs:
5525         - when we're scrolling, only call Edit() again if the
5526         current cell is still unobscured. Fixes bug #78927.
5527         - when handling mousedown on a cell, ensure the cell is visible
5528         before calling Edit.
5529         - remove the properties from DataGridRow, and remove the
5530         DataGridParentRow class altogether.
5531         
5532
5533 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5534
5535         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
5536           fire OnTextChanged by ourselves. There's no point calling base,
5537           we don't set the base value anywhere else. Fixes #78773.
5538
5539 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5540
5541         * ListBox.cs: Call CollectionChanged when modifying
5542         an item from Items indexer, to update the actual items
5543         in the list box.
5544
5545 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5546
5547         * PrintDialog.cs: Small fixes for focus and a pair of checks,
5548         to match .Net behaviour.
5549
5550 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5551
5552         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
5553
5554 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5555
5556         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
5557
5558 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5559
5560         * MessageBox.cs: Prevent potential NRE exception.
5561         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
5562
5563 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5564
5565         * MessageBox.cs: Calculate the owner of a messagebox, also make
5566           it topmost. Fixes #78753
5567
5568 2006-08-14  Chris Toshok  <toshok@ximian.com>
5569
5570         * XplatUIX11.cs: A couple of fixes so that metacity will let us
5571         programmatically move windows.  first, set the PPosition hint as
5572         well as the USPosition hint.  Second include some code from pdb
5573         that sets the window type to NORMAL when we set the transient for
5574         hint.  This is because, in the absence of a window type, metacity
5575         thinks any window with TransientFor set is a dialog, and refuses
5576         to let us move it programmatically.  fascists.
5577
5578 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5579
5580         * XplatUIX11.cs: When setting normal hints, take into consideration
5581           an different hints previously set so we don't delete them (fixes #78866)
5582
5583 2006-08-12  Chris Toshok  <toshok@ximian.com>
5584
5585         * ToolBarButton.cs: make Layout return a boolean, if something to
5586         do with the button's layout changed.
5587
5588         * ToolBar.cs:
5589         - add another parameter to Redraw, @force, which all existing
5590           calls set to true.
5591         - make the Layout function return a boolean which is true if the
5592           layout has actually changed.  Redraw now uses this (and @force)
5593           to determine when to invalidate.  At present the only place
5594           where @force can be false is the call from OnResize, when
5595           background_image == null.  So, resizing a toolbar when the
5596           layout doesn't change results in no drawing.
5597
5598 2006-08-12  Chris Toshok  <toshok@ximian.com>
5599
5600         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
5601         the VScrollBar and HScrollbar reversed.  oops.
5602
5603         * DataGrid.cs: fix the logic that assigns sizes to the implicit
5604         scrollbars.  we were assigning them twice (once in
5605         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
5606         therefore causing two scrollbar resizes (and redraws?) to happen
5607         per grid resize.
5608
5609 2006-08-12  Chris Toshok  <toshok@ximian.com>
5610
5611         * ToolBarButton.cs: redraw the entire button if the theme tells us
5612         to.
5613
5614         * Theme.cs: add ToolBarInvalidateEntireButton.
5615
5616         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
5617         buttons, just the border.
5618
5619         * ThemeNice.cs: redraw the entire toolbar button since we need to
5620         draw the highlight image.
5621
5622         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
5623         we need to redraw the entire button (not just the border).
5624
5625 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5626
5627         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
5628           for vertical bars. Fixes the mismatches shown by #78513
5629
5630 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
5631
5632         * FileDialog.cs: If a saved/remembered path doesn't exist
5633           anymore, fall back to "Desktop".
5634
5635 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5636
5637         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
5638           parent. It's apparently legal to not have one
5639         * XplatUIX11.cs:
5640           - SetZOrder: Don't try to set Z-Order on an unmapped window
5641           - CreateWindow: 0,0 are legal coordinates for a window. don't move
5642             it unless the coordinates are negative
5643
5644 2006-08-10  Mike Kestner  <mkestner@novell.com>
5645
5646         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
5647         when setting to null per msdn docs.  Fixes #78854.
5648
5649 2006-08-10  Chris Toshok  <toshok@ximian.com>
5650
5651         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
5652         flickering by setting a clip rectangle on the Graphics when we
5653         need to redraw just a particular menuitem.  Also, rename "OnClick"
5654         to "OnMouseDown" to reflect what it actually is.
5655         
5656         * Form.cs: track the OnMouseDown change.
5657
5658 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
5659
5660         * CommonDialog.cs: Properly inherit the CreateParams from the form
5661           and only change what we need. Fixes #78865
5662
5663 2006-08-10  Chris Toshok  <toshok@ximian.com>
5664
5665         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
5666         flickering in flat mode (and most of the flickering in general) by
5667         only invalidating the button border (and not the entire rectangle)
5668         when the state changes.  A couple of cases still flicker:
5669         ToggleButtons, and the dropdown arrow case when the user mouse
5670         ups.
5671
5672 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
5673
5674         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
5675           for german keyboards. Numlock state shouldn't affect the behaviour
5676           of the Del key. Fixes bug #78291.
5677
5678 2006-08-10  Chris Toshok  <toshok@ximian.com>
5679
5680         * ListControl.cs: remove the items.Clear line from BindDataItems,
5681         as this is the first thing done by both subclasses in their
5682         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
5683         passed -1, refresh the list.  This gets databinding working when
5684         the datasource is set on the list before the datasource is
5685         populated (as in wf-apps/ReportBuilder.)
5686
5687         * ComboBox.cs: remove the argument to BindDataItems.  This call
5688         should really go away, and be initiated by the ListControl code.
5689
5690         * ListBox.cs: same.
5691
5692 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5693
5694         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
5695           if no data is in the document when the control is displayed
5696
5697 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
5698
5699         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
5700           yes (fixes #78806)
5701         * TextControl.cs: 
5702           - PositionCaret: Allow positioning of caret but don't call methods 
5703             requiring a handle if the window isn't created yet
5704           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
5705           - owner_HandleCreated: Don't position the caret, just update it's 
5706             location. User might have already set a different position
5707
5708 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5709
5710         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
5711           windows. Screws up the returned coordinates for child windows. 
5712           Fixes #78825. I'm hoping this doesn't break something, since the
5713           code was explicitly put in 8 months ago, but no bug was attached.
5714           Menus still seem to work properly.
5715
5716 2006-08-08  Chris Toshok  <toshok@ximian.com>
5717
5718         * DataGrid.cs: make BeginInit/EndInit actually do what they're
5719         supposed to do - delay data binding until the EndInit call.  Also,
5720         make the table style collection's CollectionChangeAction.Refresh
5721         work properly.
5722
5723         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
5724         (with action = Refresh) when a consituent table's MappingName is
5725         changed.
5726
5727 2006-08-08  Chris Toshok  <toshok@ximian.com>
5728
5729         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
5730         Invalidate, since changing the text can change the size of the all
5731         toolbar buttons.
5732
5733 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5734
5735         * Form.cs (AddOwnedForm): Still need to add the form to our listif
5736           we don't have it yet
5737
5738 2006-08-08  Chris Toshok  <toshok@ximian.com>
5739
5740         * PrintControllerWithStatusDialog.cs: don't .Close() the status
5741         dialog, as this causes X errors later on, since we actually
5742         destroy the window.  Instead, .Hide() it.
5743
5744 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5745
5746         * ComboBox.cs: Added focus reflection for popup window
5747         * XplatUIX11.cs: 
5748           - Removed transient setting for non-app windows for now, not sure it
5749             was needed
5750           - Fixed logic checking if we have captions when deciding 
5751             override_redirect, WS_CAPTION is two bits and a 0 check was not
5752             sufficient
5753           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
5754             complicated
5755         * Form.cs: 
5756           - AddOwnedForm: Don't just add the form to the list, call the property
5757             to ensure the driver is informed about the ownership as well
5758           - CreateHandle: Set the TopMost status in the driver if we have an owner
5759         * XplatUI.cs: Fixed debug statement
5760
5761 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
5762         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5763           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
5764           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
5765           TrackBarRenderer.cs: Make constructor private.
5766         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
5767         * ProfessionalColorTable.cs: Make properties virtual.
5768
5769 2006-08-06  Duncan Mak  <duncan@novell.com>
5770
5771         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
5772         is not changing.
5773
5774 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5775         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5776           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
5777           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
5778           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
5779           Initial import of new 2.0 classes.
5780
5781 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5782         * Application.cs: Add 2.0 VisualStyles properties.
5783
5784 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5785         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
5786           XplatUIX11.cs: Create property to allow access to existing private
5787           variable "themes_enabled"
5788
5789 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5790
5791         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
5792         file size, as otherwise our class libraries fail using windows. Fixes
5793         bug #78759.
5794
5795 2006-08-04  Jackson Harper  <jackson@ximian.com>
5796
5797         * Form.cs:
5798         * XplatUIX11.cs: Move the toolwindow window manager creation into
5799         the X11 driver, this way on win32 we can let windows create/handle
5800         the toolwindows.
5801
5802 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5803
5804         * PrintDialog.cs: Remove some redundant checks, add some others,
5805         clean some code, and move the focus to the text boxes when the
5806         values are incorrect.
5807
5808 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
5809
5810         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
5811
5812 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5813
5814         * NumericUpDown.cs: Setting the Minimum and Maximum is now
5815           handled correctly. Fixes bug #79001.
5816
5817 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5818
5819         * PrintDialog.cs: The "Copies" numeric up down must have
5820         set the Minimum property to 1; only if the value is bigger
5821         than 1, activate "Collate" check box. This is the behaviour of .Net.
5822         Also modify the Document elements only if it is not null.
5823
5824 2006-08-03  Jackson Harper  <jackson@ximian.com>
5825
5826         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
5827         length. (We have a larger array then actual node count).
5828                 
5829 2006-08-03  Jackson Harper  <jackson@ximian.com>
5830
5831         * ComboBox.cs: Don't show selection by default.
5832         - The SelectAll isn't needed here, since the focus code should do
5833         that
5834         - DDL style lists to manual selection drawing, so when they
5835         get/lose focus they have to invalidate.
5836
5837 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
5838
5839         * TextBoxBase.cs: Don't always show all selections by default.
5840
5841 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
5842         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
5843           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
5844           Fixed various typos.
5845
5846 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5847
5848         * Control.cs: Removing the controls in a ControlCollection with
5849           Clear now hides the controls as expected. Fixes bug #78804. 
5850
5851 2006-08-03  Jackson Harper  <jackson@ximian.com>
5852
5853         * Control.cs: Revert previous focus patch, it breaks reflector.
5854
5855 2006-08-03  Jackson Harper  <jackson@ximian.com>
5856
5857         * ComboBox.cs: Cleanup selection and focus with the combobox.
5858         This also eliminates some duplicated keyboard code, since now
5859         everything is handled by the main class.
5860         - Make list selection work on mouse up instead of down, to match
5861         MS.
5862
5863 2006-08-02  Jackson Harper  <jackson@ximian.com>
5864
5865         * Control.cs: Setting focus needs to go through the whole
5866         selection mechanism.
5867
5868 2006-08-02  Chris Toshok  <toshok@ximian.com>
5869
5870         * PrintPreviewDialog.cs: change MinimumSize to use
5871         base.MinimumSize so it works.
5872
5873 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
5874
5875         * TextControl.cs:
5876           - UpdateCaret: Added sanity check in case caret isn't defined yet
5877           - Line.Delete: Now updating selection and caret markers if we're
5878             transfering a node (Properly fixes #78323)
5879           - SetSelectionEnd: Added sanity check
5880         * TextBoxBase.cs: Removed broken attempt to fix #78323
5881
5882 2006-08-01  Chris Toshok  <toshok@ximian.com>
5883
5884         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
5885         Close() call is handled in Form, not here.
5886
5887 2006-08-01  Chris Toshok  <toshok@ximian.com>
5888
5889         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
5890         layout/rendering.
5891
5892         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
5893         for sizes < 100% zoom.  The code now aggressively attempts to keep
5894         from calling document.Print (), and tries not to use the scaling
5895         g.DrawImage whenever possible (it still does if you scale to >
5896         100%, since usually that involves huge images).
5897
5898         * PrintPreviewControl.cs: hook up the close button.
5899
5900 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
5901         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
5902           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
5903           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
5904           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
5905           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
5906           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
5907           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
5908           Removed [Serializable] for 2.0 Event Handlers.
5909
5910 2006-07-31  Jackson Harper  <jackson@ximian.com>
5911
5912         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
5913         * TextControl.cs: Uncomment out the body of this method.
5914
5915 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
5916
5917         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
5918           standard cursors.
5919
5920 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5921
5922         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
5923           that embed TextBox and need selections visible even if textbox is not
5924           focused to enforce that behaviour.
5925         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
5926           selection drawing
5927
5928 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5929
5930         * TextControl.cs:
5931           - Added new SetSelectionStart/SetSelectionEnd overloads
5932           - Fixed viewport width assignment to be accurate
5933           - Adjusted alignment line shift calculations to allow cursor on right
5934             aligned lines to be always visible at the right border (like MS)
5935         * TextBoxBase.cs:
5936           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
5937           - TextBoxBase_SizeChanged: recalculating canvas on size changes
5938           - CalculateScrollBars: Use ViewPort size instead of window size, to
5939             properly consider space occupied by the border and scrollbars 
5940             (Fixes #78661)
5941           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
5942             calculations; no longer leaves artifacts
5943           - CaretMoved: Adjusted window scrolling to match MS and fixed several
5944             calculation bugs (Still missing right/center align calculations)
5945
5946 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
5947
5948         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
5949           use of both scroll rect and clip rect, as they do the same.
5950
5951 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5952
5953         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
5954           in the event handler (fixes #78912)
5955
5956 2006-07-31  Chris Toshok  <toshok@ximian.com>
5957
5958         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
5959         grid.ListManager.Count, since grid.ListManager might be null.
5960         This of course begs the question "why are we drawing rows for a
5961         grid with no list manager (and therefor no rows)?"  Fixes the
5962         crash in bug #78929.
5963
5964 2006-07-31  Chris Toshok  <toshok@ximian.com>
5965
5966         * RelatedPropertyManager.cs: Don't always chain up to the parent
5967         ctor.  instead, call SetDataSource if the parent's position is !=
5968         -1.  Fixes the crash in #78822.
5969
5970 2006-07-31  Chris Toshok  <toshok@ximian.com>
5971
5972         * DataGrid.cs (get_ListManager): use field instead of property
5973         accessors for datasource and datamember.
5974         (RowsCount): make internal again.
5975         (OnMouseDown): end edits before resizing columns/rows.
5976         (OnMouseUp): restart edits after resizing columns/rows.
5977
5978 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
5979
5980         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
5981           This fixes the situation where the last set cursor is displayed
5982           whenever the mouse is over scrollbars.
5983
5984 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5985
5986         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
5987         Document properties, as well as initial values.
5988
5989 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
5990
5991         * XplatUIWin32.cs (SetBorderStyle): Setting both border
5992           and ClientEdge results in a 3-pixel border, which is
5993           wrong.
5994
5995 2006-07-28  Jackson Harper  <jackson@ximian.com>
5996
5997         * TreeNodeCollection.cs: Fix the clear method.
5998         - Fix the Shrink also
5999
6000 2006-07-27  Jackson Harper  <jackson@ximian.com>
6001
6002         * TreeView.cs: Make sure the visible order is computed when we
6003         attempt to size the scrollbars (for trees that mess with the
6004         scrolling when they shouldn't.
6005         - Make sure to give the scrollbars valid values.
6006
6007 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6008
6009         * XplatUIX11.cs: Move motion compression code to where it
6010           has less performance impact
6011
6012 2006-07-26  Jackson Harper  <jackson@ximian.com>
6013
6014         * UpDownBase.cs: When the control is selected make the child
6015         controls non selectable, so that a click on them won't do a
6016         focus/unfocus cycle.
6017         - Don't give focus to the text box when the spinner is selected.
6018         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
6019
6020 2006-07-26  Chris Toshok  <toshok@ximian.com>
6021
6022         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
6023         satisfied with this solution.  If the bitmaps are small, we should
6024         just cache them in the PrintPreviewDialog and draw them here.
6025         Also, the layout is broken for the 2-up and 3-up cases.
6026
6027         * Theme.cs: add PrintPReviewControlPaint.
6028
6029         * PrintPreviewDialog.cs: first pass implementation.
6030
6031         * PrintPreviewControl.cs: first pass implementation.  No
6032         scrollbars yet.
6033
6034         * PrintDialog.cs: only validate fields if that particular portion
6035         of the UI is enabled.  Also, set the document's controller to a
6036         PrintControllerWithStatusDialog wrapping the document's print
6037         controller.
6038
6039         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
6040         bring up a SaveFileDialog (i hope we don't want to match the
6041         behavior of the crappy windows file entry) and set the
6042         PrinterSettings.PrintFileName accordingly.
6043
6044 2006-07-26  Jackson Harper  <jackson@ximian.com>
6045
6046         * ContainerControl.cs: Add a field that disables auto selecting
6047         the next control in a container when the container is activated.
6048         * UpDownBase.cs: Don't select the text box when the up down is
6049         selected.
6050
6051 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6052
6053         * XEventQueue.cs: Added methods for peeking (used for compression
6054           of successive events)
6055         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
6056           mouse move events (fixes #78732)
6057
6058 2006-07-25  Jackson Harper  <jackson@ximian.com>
6059
6060         * UpDownBase.cs: Use an internal class for the textbox so that we
6061         can control focus.  the updown control should always have focus,
6062         if either the text area or the buttons are clicked.
6063         - Send the key messages to the textbox, since it never actually
6064         has focus
6065         - Activate and decativate the textbox caret.
6066
6067 2006-07-24  Jackson Harper  <jackson@ximian.com>
6068
6069         * Control.cs: Use the directed select when selecting a control,
6070         this way the container controls override will get called and the
6071         whole ActiveControl chain will get triggered.  TODO: probably need
6072         to make sure this gets done everywhere instead of the old
6073         Select(Control).
6074         * ContainerControl.cs: Implement the directed Select method to
6075         find and activate the correct child control.    
6076         
6077 2006-07-22  Mike Kestner  <mkestner@novell.com>
6078
6079         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
6080         menu handling code so that clicks without a grab work too.
6081         [Fixes #78914]
6082
6083 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
6084
6085         * FileDialog.cs: Enable the BackButton when dirstack has one element.
6086           Added some small optimizations.
6087
6088 2006-07-21  Matt Hargett  <matt@use.net>
6089
6090         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
6091
6092 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
6093
6094         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
6095           tests pass and match MS in some strange border cases.
6096
6097 2006-07-21  Chris Toshok  <toshok@ximian.com>
6098
6099         * ThemeWin32Classic.cs: handle drawing of the relation links and
6100         parent row buttons.
6101
6102         * Theme.cs: change args to DataGridPaintParentRow.
6103
6104         * DataGrid.cs: Don't use controls for the relation links and
6105         parent buttons, so we have to handle all their interactions in
6106         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
6107         when we're navigating through child tables, so we can reinstate
6108         selection, expanded state, current cell, etc.
6109
6110 2006-07-20  Chris Toshok  <toshok@ximian.com>
6111
6112         * ToolBar.cs: When we redraw a button, for whatever reason,
6113         there's no reason to redraw the entire toolbar.  Also, don't call
6114         Control.Refresh from within Redraw, as it's much heavier than
6115         Invalidate (which is really what we want).
6116
6117 2006-07-20  Chris Toshok  <toshok@ximian.com>
6118
6119         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
6120         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
6121         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
6122         traces from within a debug IBindingList datasource
6123         (in mono/winforms/datagrid) for *days*, I've finally gotten things
6124         to work in a similar fashion.
6125
6126 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6127
6128         * ListBox.cs: Don't call Sort () when setting 
6129         the Sorted property to false (avoid an unnecessary sort).
6130
6131 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6132
6133         * ListControl.cs: DataSource should throw an ArgumentException
6134         instead of a normal exception when the argument is not of the 
6135         correct type.
6136
6137 2006-07-20  Mike Kestner  <mkestner@novell.com>
6138
6139         * Control.cs: add InternalPreProcessMessage to allow us to steal
6140         key events before MWF gets its paws on them.  Adapted from a
6141         suggestion by eno.
6142         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
6143         up/down/left/right navigation. Override the new internal control
6144         method to steal the events since they never make it to WndProc.
6145         * ToolBarButton.cs: don't worry about pushed when setting hilight
6146         since the drawing code prefers pushed to hilight. Invalidate on 
6147         Hilight changes. Fixes #78547 and #78525.
6148
6149 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6150
6151         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
6152           the canvas size. Fixes #78868
6153
6154 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
6155
6156         * Splitter.cs: Track requested split position until first layout
6157           is performed. Fixes #78871
6158
6159 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6160
6161         * Application.cs: Removed code that forces 1.x for the version
6162           number if the version started with 0. Not sure why that code was
6163           there and I couldn't find any bugs that indicated we needed it.
6164           Fixes #78869
6165
6166 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
6167
6168         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
6169           ResetDefaults(), just write some output to the console until it's
6170           implemented. Fixes bug #78907 for now. Eliminated two warnings.
6171
6172 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
6173
6174         * PropertyGridView.cs: set StartPosition of drop down forms
6175         so they appear in correct initial spot.  Fixes #78190.
6176
6177 2006-07-19  Mike Kestner  <mkestner@novell.com>
6178
6179         * ThemeWin32Classic.cs: use parent background color when drawing
6180         flat toolbars.  Restructure the conditionals to make sure non-flat
6181         non-Divider toolbars are filled too.  Fixes #78837.
6182
6183 2006-07-19  Mike Kestner  <mkestner@novell.com>
6184
6185         * ListBox.cs: Sort on collection changes even if the handle
6186         isn't created yet.  Fixes #78813.
6187
6188 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6189
6190         * ListControl.cs: DisplayMember should never be null,
6191         and now we assign String.Empty when null is passed to it (this
6192         is the .Net way).
6193
6194 2006-07-17  Mike Kestner  <mkestner@novell.com>
6195
6196         * ListViewItem.cs: restructure Font and subitem Font handling 
6197         to hold a specific font and refer back to owner on null.
6198         Fixes #78761.
6199
6200 2006-07-17  Mike Kestner  <mkestner@novell.com>
6201
6202         * ToolBar.cs: bandaid for side-effect of previous patch which was
6203         discarding explicit heights for non-AutoSize toolbars.  Need to
6204         extend my format tester to deal with AutoSize=false. Fixes #78864.
6205
6206 2006-07-15  Jackson Harper  <jackson@ximian.com>
6207
6208         * LabelEditTextBox.cs:
6209         * TreeView.cs: Use a new LabelEdit class for node editing, this
6210         class automatically 'closes' itself when it gets the enter key or
6211         loses focus.
6212         - Use the client rectangle when setting the trees scrollbars, so
6213         border style is taken into account.
6214         
6215 2006-07-14  Jackson Harper  <jackson@ximian.com>
6216
6217         * TreeNode.cs:
6218         * TreeView.cs: Make the editing work similar to MSs, firing the
6219         events correctly and ending edits correctly.
6220
6221 2006-07-14  Mike Kestner  <mkestner@novell.com>
6222
6223         * ToolBarButton.cs:
6224         * ToolBar.cs: layout restructuring and redraw enhancements to support
6225         formatting changes gracefully, like setting TextAlign, ImageList, 
6226         ButtonSize, and Appearance.  Handles explicit button sizing quirks
6227         of the MS controls.  Things like flat toolbars ignoring button size
6228         but becoming constant sized at the largest button's size.  Normal
6229         toolbars with an image set cannot be shrunk smaller than the image,
6230         but text can be clipped/ignored.
6231         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
6232         is zero.  Seems like DrawString should be smart enough to not put
6233         anything on screen though. Also trim labels and ellipsize at the char
6234         boundary, not word.
6235         Fixes #78711 and #78483.
6236
6237 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6238
6239         * FolderBrowserDialog.cs: Disable "New Folder" button and
6240           "New Folder" contextmenu menuitem if a folder like "My Computer"
6241           is selected.
6242
6243 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6244
6245         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
6246         * FolderBrowserDialog.cs:
6247           - Use MWFConfig to store and read size and position settings
6248           - Added code to create a new folder (button or context menu).
6249             Use TreeView labeledit to change the name of the new folder.
6250
6251 2006-07-14  Jackson Harper  <jackson@ximian.com>
6252
6253         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
6254         when the tree is scrolled we end editing.
6255
6256 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6257
6258         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
6259           Down arrows
6260
6261 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
6262
6263         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
6264         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
6265         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
6266         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
6267         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
6268         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
6269         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
6270         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
6271         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
6272         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
6273         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
6274         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
6275         ListViewItemSelectionChangedEventHandler.cs,
6276         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
6277         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
6278         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
6279         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
6280         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
6281         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
6282         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
6283         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
6284         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
6285         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
6286         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
6287         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
6288         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
6289         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
6290         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
6291         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
6292         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
6293         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
6294         WebBrowserNavigatingEventHandler.cs, 
6295         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
6296
6297 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
6298
6299         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
6300         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
6301         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
6302         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
6303         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
6304         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
6305         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
6306         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
6307         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
6308         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
6309         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
6310         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
6311         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
6312         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
6313         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
6314         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
6315         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
6316         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
6317         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
6318         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
6319         ListViewItemStates.cs, MaskFormat.cs: Added
6320
6321 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
6322
6323         * PropertyGridView.cs: Fix keyboard navigation of drop down.
6324         Patch from eno for bug 78558.
6325         
6326 2006-07-13  Jackson Harper  <jackson@ximian.com>
6327
6328         * TreeView.cs: When an edit is finished make sure that the
6329         selected node is visible.
6330         - When setting the top/bottom use the scrollbars is_visible, so
6331         everything will be set correctly even if the tree isn't visible
6332         yet.
6333
6334 2006-07-13  Jackson Harper  <jackson@ximian.com>
6335
6336         * ComboBox.cs: Revert the item->index part of my previous patch.
6337         * TreeView.cs: Use LostFocus instead of Leave for detecting when
6338         the edit box has lost focus (duh).
6339         - Just make the edit box not visible when we get return, that will
6340         take the focus, which will call EndEdit
6341         * TreeNode.cs When we start editing, notify the treeview.
6342
6343 2006-07-12  Jackson Harper  <jackson@ximian.com>
6344
6345         * ComboBox.cs: Clear out old items before setting the item list.
6346         This prevents databound controls from having their items added
6347         twice.
6348         - Switch the combobox to use indices whereever possible instead of
6349         using Item's.  This allows usto navigate through lists that have
6350         more then one item with the same string value (ie a, b, b, a).
6351         - Scroll the listboxes scrollbar when a non visible item is
6352         highlighted
6353         - Allow keypress to cycle through all the possible values. For
6354         example if you have b1, b2, b3 and hold down the B key all the
6355         values will be cycled through.
6356         
6357 2006-07-12  Jackson Harper  <jackson@ximian.com>
6358
6359         * TextBoxBase.cs:
6360         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
6361         this using the internal methods.
6362         * Control.cs: Add OnGotFocusInternal.  A new method that allows
6363         controls to "override" OnGotFocus and change focus behavior if
6364         needed.
6365         - Same thing for LostFocus
6366         * ComboBox.cs: Pass off focus to the text control properly.
6367
6368 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
6369
6370         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
6371         * FolderBrowserDialog.cs: Almost a complete rewrite.
6372           - Better support for Environment.Specialfolders
6373           - Added support for MWFVFS
6374           - Made setting SelectedPath work
6375
6376 2006-07-12  Jackson Harper  <jackson@ximian.com>
6377
6378         * Control.cs: Optimze getting all the controls.
6379
6380 2006-07-11  Jackson Harper  <jackson@ximian.com>
6381
6382         * ContainerControl.cs: Override SETFOCUS in the container control,
6383         so that it is not selected on mouse click.
6384
6385 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
6386
6387         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
6388           Hopefully we will have a better way once all of focus is complete.
6389
6390 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
6391
6392         * ThemeWin32Classic.cs: Commented out some debug code and fixed
6393           a compile error with csc.
6394
6395 2006-07-11  Jackson Harper  <jackson@ximian.com>
6396
6397         * Control.cs: When hiding a control only select the next control
6398         if the current control was focused.
6399         - Don't handle enter/leave when setting/killing focus, this is
6400         done by the container control.
6401         - Remove is_selected, it's not needed anymore.
6402         - Add utility methods for selecting a child control, and for
6403         firing the Enter/Leave events.
6404         * ContainerControl.cs: When a control is activated fire the
6405         enter/leave events.
6406         - Don't wrap when processing the tab key, so that focus can be
6407         moved outside of the container.
6408         - Use the correct active control
6409
6410 2006-07-11  Jackson Harper  <jackson@ximian.com>
6411
6412         * ComboBox.cs: Remove some debug code that was blinding me.
6413         * UpDownBase.cs: These controls actually aren't implicit, they are
6414         visible to the user.
6415
6416 2006-07-10  Chris Toshok  <toshok@ximian.com>
6417
6418         * DataGrid.cs: move back to the is_adding boolean field.  god i
6419         hate this is_editing/is_adding/is_changing stuff.
6420
6421 2006-07-10  Chris Toshok  <toshok@ximian.com>
6422
6423         * DataGridTableStyle.cs: just check if the property type is bool.
6424         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
6425         Don't use CanRenderType.
6426
6427         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
6428         if our text == NullText.  Remove CanRenderType.
6429
6430         * DataGridBoolColumn.cs: nuke CanRenderType.
6431
6432         * DataGrid.cs: reenable some code to end the current edit inside
6433         of set_CurrentCell.  This fixes the other 1.1.16 regression.
6434         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
6435         Also, remove the visible_row_count arg from CalcRowHeaders, since
6436         we don't need to worry about the actual height of the area.
6437
6438 2006-07-10  Chris Toshok  <toshok@ximian.com>
6439
6440         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
6441         mode, just return.
6442
6443         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
6444         the real sense of the IsInEditOrNavigateMode property (true =
6445         navigate, false = edit).  Also, update OnKeyPress to reflect this.
6446
6447         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
6448         column style exists, we still need to set its property descriptor
6449         to match up with our list manager.
6450
6451 2006-07-10  Chris Toshok  <toshok@ximian.com>
6452
6453         * ThemeWin32Classic.cs: implement the new row/header painting
6454         approach.  The parent row painting will likely go away and
6455         replaced with label controls, but the rest seems to work ok (and
6456         efficiently).
6457
6458         * Theme.cs: change the way we draw datagrid rows.  we don't draw
6459         the row headers as a block now.  Instead we draw them in the
6460         normal draw-row loop.  Add some calls for drawing parent rows and
6461         relation rows.
6462
6463         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
6464         a default table style.  Set the defaults from ThemeEngine.Current,
6465         not SystemColors.  Fix lots of misc issues with property setters.
6466
6467         * DataGrid.cs: move loads of style information out of this class
6468         as it's being duplicated with DataGridTableStyle.  keep track of a
6469         special DataGridTableStyle for the properties we used to mirror
6470         here.  Switch all the style properties to access this table style
6471         instead of instance fields of this class.  Also add a internal
6472         class to represent parent rows (more needs to be stored here, like
6473         the selection state from the parent table, as well as the
6474         expansion state.)  Also, for datasources with relations, do the
6475         right thing for collapse/expand, and add support for the
6476         navigation/parent row buttons.
6477
6478         Lastly, fix the crash in the 1.1.16 build.
6479
6480         * GridTableStylesCollection.cs: make the explicit interface
6481         implementations call the class's methods as opposed to duplicating
6482         them.
6483
6484         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
6485         0 so the text doesn't jump around when we move the cursor.
6486
6487 2006-07-10  Jackson Harper  <jackson@ximian.com>
6488
6489         * TextBoxBase.cs:
6490         * ListBox.cs: Match MS's ToString (this makes debugging focus
6491         stuff infinitely easier).
6492
6493 2006-07-10  Jackson Harper  <jackson@ximian.com>
6494
6495         * Control.cs (SelectNextControl): When checking the control's
6496         parent use this instead of ctrl.parent so that null can be passed
6497         to SelectNextControl. (I have unit tests for this).
6498         - Remove unused var.
6499
6500 2006-07-10  Chris Toshok  <toshok@ximian.com>
6501
6502         * CurrencyManager.cs: correct one regression, the removal of the
6503         finalType field.  Also, add a MonoTODO on CanAddRows, implement
6504         Refresh() correctly, and fix some event emission in
6505         ListChangedHandler.
6506
6507 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6508
6509         * FileDialog.cs: Don't use brackets for new folders if they exist
6510           under *nix. Instead use -(number of existing folders +1).
6511
6512 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6513
6514         * FileDialog.cs:
6515           - Fixed really nasty bug #78771
6516           - Don't block the whole GUI when reading directories with a lot of
6517             entries. Use an other thread instead and call BeginInvoke to
6518             update the ListView in MWFFileView
6519
6520 2006-07-07  Chris Toshok  <toshok@ximian.com>
6521
6522         * Control.cs (Dispose): release any Capture when disposing.
6523
6524 2006-07-07  Chris Toshok  <toshok@ximian.com>
6525
6526         * LinkLabel.cs (Select): if we chain up to the parent, set
6527         focused_index to -1 so we'll search for the first available link
6528         the next time the user tabs into us.  Also, if the direction is
6529         backward and focused_index == -1, start the search from the last
6530         element.
6531
6532 2006-07-07  Chris Toshok  <toshok@ximian.com>
6533
6534         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
6535         is beyond the end of the text, don't do anything.
6536         (CreateLinkPieces): set our ControlStyles.Selectable based on
6537         whether or not we have any links.
6538         (Link.Invalidate): use a loop instead of foreach.
6539         (Link.set_Start): null out owner.sorted_links so it'll be
6540         recreated by CreateLinkPieces.
6541
6542 2006-07-06  Chris Toshok  <toshok@ximian.com>
6543
6544         * LinkLabel.cs: revert the SetStyle change.
6545
6546 2006-07-06  Chris Toshok  <toshok@ximian.com>
6547
6548         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
6549         (OnEnableChanged): s/Refresh/Invalidate
6550         (OnGotFocus): if we have a focused index already, refocus it (so
6551         if we mouse out/in to the window it'll focus the right link).
6552         (OnKeyDown): move the tab handling out of here.
6553         (OnLostFocus): don't set focused_index to -1, so we can refocus it
6554         when we lose focus.
6555         (OnMouseDown): don't Capture here - Control handles it.  Also,
6556         focus the active link.
6557         (OnMouseUp): don't deal with Capture.
6558         (OnPaintBackgroundInternal): remove.
6559         (OnTextAlignChanged): CreateLinkPieces before calling the
6560         superclass's method.
6561         (OnTextChanged): call CreateLinkPieces before calling superclass's
6562         method.
6563         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
6564         move around.
6565         (Select): implement this, moving the selection between different
6566         links, and call parent.SelectNextControl if we don't have another
6567         link to focus in the given direction.
6568         (CreateLinkPieces): call Invalidate instead of Refresh.
6569         
6570 2006-07-06  Chris Toshok  <toshok@ximian.com>
6571
6572         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
6573         new LinkLabel internals.
6574
6575         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
6576         over pieces looking for active/focused/etc links.  also, deal with
6577         runs of text (and links) with embedded \n's in them, and use
6578         MeasureCharacterRanges instead of MeasureString to figure out the
6579         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
6580         two-step.
6581
6582 2006-07-04  Jackson Harper  <jackson@ximian.com>
6583
6584         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
6585         XKB or key auto repeat, do it manually.  Without key auto repeat,
6586         when a key is held down we get key press, key release, key press,
6587         key release, ... with auto repeat we get key press, key press, key
6588         press ..., and then a release when the key is actually released.
6589
6590 2006-07-03  Jackson Harper  <jackson@ximian.com>
6591
6592         * TabControl.cs:
6593         * ThemeWin32Classic.cs: Tabs do not obey normal background color
6594         rules, they are always control color regardless of the background
6595         color.
6596
6597 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
6598
6599         * FileDialog.cs: Added internal class MWFConfig.
6600           Removed Registry support and replaced it with support for the new
6601           MWFConfig class. See MWFConfig comments for more information.
6602
6603 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
6604
6605         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
6606           rectangle. Added some patches from eno from bug #78490 and fixed
6607           the arrow position for small up and down CPDrawScrollButtons.
6608
6609 2006-06-30  Jackson Harper  <jackson@ximian.com>
6610
6611         * InternalWindowManager.cs: Remove some debug code.
6612         * Form.cs: When an MdiParent is set to null, the window is
6613         "detatched" and becomes a normal window.
6614         * MdiClient.cs: Don't bring the new child form to the front until
6615         it is activated (setting it as active does this), this makes the
6616         previously active forms titlebar get redrawn as inactive.
6617
6618 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
6619
6620         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
6621           with later controls
6622
6623 2006-06-29  Mike Kestner  <mkestner@novell.com>
6624
6625         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
6626         arrow in keynav state.  Fixes #78682.
6627
6628 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6629
6630         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
6631           order (fixes #78393)
6632
6633 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
6634
6635         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
6636           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
6637           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
6638           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
6639           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
6640           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
6641           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
6642           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
6643           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
6644           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
6645           enumerations (FlagsAttribute, SerializableAttribute, added/removed
6646           values)
6647
6648 2006-06-28  Mike Kestner  <mkestner@novell.com>
6649
6650         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
6651
6652 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6653
6654         * PropertyGrid.cs,
6655           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
6656           item lines from other area (It also makes BackColor consistent and
6657           compatible with .NET). Fixed bug #78564.
6658
6659 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
6660
6661         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
6662         Patch from Eno for #78555.
6663
6664 2006-06-27  Chris Toshok  <toshok@ximian.com>
6665
6666         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
6667
6668         * DataGridColumnStyle.cs: same.
6669
6670         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
6671         
6672         * DataGridDrawingLogic.cs: nuke.
6673
6674 2006-06-27  Chris Toshok  <toshok@ximian.com>
6675
6676         * DataGridTableStyle.cs: clean up the constructors, and build the
6677         list of child relations for this table.  I have no idea if this is
6678         where we should be doing it (it probably isn't), but since we're
6679         already iterating over the properties..
6680
6681         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
6682         struct and array for keeping track of row information, similar to
6683         what's shown in a hack on
6684         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
6685
6686         * Theme.cs: be consistent about the naming of DataGrid methods,
6687         prefering ColumnWidths and RowHeights over columnsWidths and
6688         RowsHeights.
6689
6690         * ThemeWin32Classic.cs: same, and also add support for variable
6691         sized rows (and the +/- expansion icons for related rows).
6692
6693 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6694
6695         * TextBoxBase.cs: Applied Eno's patch from #78660
6696
6697 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6698
6699         * Form.cs (ScaleCore): We don't want to scale our form if it's
6700           state is minimized or maximized, but we still need to scale our
6701           child windows. Also, added try/finally block to ensure layout
6702           gets reset (Fixes #78697)
6703
6704 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6705
6706         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
6707
6708 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6709
6710         * Form.cs: Fixed c+p error and added check to resize form if minimum
6711           size is bigger than current size (Fixes #78709)
6712
6713 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
6714
6715         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
6716
6717 2006-06-26  Mike Kestner  <mkestner@novell.com>
6718
6719         * ComboBox.cs: only do Keypress handling in the combo when there  
6720         are items in the collection. Fixes #78710.
6721
6722 2006-06-26  Chris Toshok  <toshok@ximian.com>
6723
6724         * Binding.cs: make this work bi-directionally.  also, clear up
6725         other mixups between Push/Pull Data (e.g. we're supposed to pull
6726         data when validating).
6727
6728         * BindingManagerBase.cs: trim some fully qualified collection
6729         types.
6730
6731         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
6732
6733 2006-06-23  Chris Toshok  <toshok@ximian.com>
6734
6735         * PropertyManager.cs: It appears (according to the unit tests)
6736         that PropertyManager doesn't use
6737         PropertyDescriptor.AddValueChanged to track propery value changes
6738         in its datasource, but uses the same scheme as Binding, where it
6739         looks for a <Property>Changed event and binds to it.
6740
6741         Also, according to the docs, IsSuspended always returns false for
6742         a property manager with a non-null datasource.
6743
6744 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
6745
6746         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
6747           need to update the actual DialogResult. (Fixes #78613)
6748
6749 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
6750
6751         * Form.cs (ShowDialog): Release any captures before running the
6752           new message pump (fixes #78680)
6753
6754 2006-06-22  Mike Kestner  <mkestner@novell.com>
6755
6756         * ListView.cs: Layout column widths properly in details mode even 
6757         if HeaderStyle.None is set.  Fixes #78691.
6758
6759 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
6760
6761         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
6762
6763 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
6764
6765         * Control.cs (ContainsFocus): Using new driver method to get focused
6766           window, instead of trying to use internal tracking var, which can
6767           recursion issues (Fixes #78685)
6768         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
6769           XplatUIWin32.cs: Added GetFocus method to return focused window
6770
6771 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6772
6773         * ColorDialog.cs: when the mouse button is pressed inside the color
6774         matrix, don't let the cursor move out of it until the button is
6775         released, which is the behavior on windows. Changed 'colours' by
6776         'colors' to use the same word consistently.
6777
6778 2006-06-21  Chris Toshok  <toshok@ximian.com>
6779
6780         * DataGrid.cs: add in some basic navigation stuff (navigating to a
6781         child relation and back, using a stack).  Also, remove
6782         GetDataSource and the code that calls it - it's not needed.  Also,
6783         track CurrencyManager.ListName's removal.
6784
6785 2006-06-21  Chris Toshok  <toshok@ximian.com>
6786
6787         * CurrencyManager.cs: push some of the original type checking from
6788         BindingContext.CreateBindingManager to here, and remove some of
6789         the finalType stuff.  Need more tests to make sure I've got the
6790         ListName part right, and we might need more in SetDataSource.
6791
6792         * PropertyManager.cs: add a ctor that takes just the datasource,
6793         and no property name.  Make SetDataSource work with a null
6794         property_name, and make Current return the data_source if the
6795         property descriptor is null.  this makes 'string foo = "hi";
6796         BindingContext[foo].Current' return "hi" as it should.
6797
6798         * RelatedCurrencyManager.cs: make this code more generic - there's
6799         no reason the parent manager has to be CurrencyManager, and
6800         there's no reason to pass the DataRelation.  It suffices to use a
6801         BindingManagerBase and PropetyDescriptor.
6802
6803         * RelatedPropertyManager.cs: make a similar change here.
6804         
6805         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
6806         flower I knew it could be.
6807
6808 2006-06-20  Chris Toshok  <toshok@ximian.com>
6809
6810         * PropertyManager.cs: the PropertyChangedHandler is invoked when
6811         data in the source has changed and we need to update the control,
6812         so s/PullData/PushData.
6813
6814         * CurrencyManager.cs: Refresh is meant to update the control from
6815         data in the datasource.  So, s/PullData/PushData.
6816
6817         * BindingContext.cs: add more ugliness (we weren't handling the
6818         case where data_source = DataTable and data_member = column_name).
6819
6820         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
6821         from the perspective of the datasource.  PullData pulls from the
6822         control, PushData pushes to the control.
6823
6824 2006-06-20  Chris Toshok  <toshok@ximian.com>
6825
6826         * BindingContext.cs: rewrite the CreateBindingManager code to
6827         handle navigation paths more or less properly.  This could
6828         definitely stand some more work, in particular to push the
6829         recursion up to the toplevel.  But that relies on fixes in other
6830         places (System.Data comes to mind).
6831
6832         Also, move to a flat hashtable (and encode the twolevel nature of
6833         the dictionary into the hash key).  This lets us implement the
6834         IEnumerable.GetEnumerator method.
6835
6836         * RelatedCurrencyManager.cs: new class.  Update our view based on
6837         our relation and our parent CurrencyManager's position.
6838
6839         * CurrencyManager.cs: split out some logic from the ctor into
6840         SetView, so it can be called from the new RelatedCurrencyManager
6841         subclass.
6842
6843         * RelatedPropertyManager.cs: new class.  Update our datasource
6844         based on the position of our parent CurrencyManager.
6845
6846         * PropertyManager.cs: split out some logic from the ctor into
6847         SetDataSource, so it can be called from the new RelatedDataSource
6848         subclass.  Also, make the Current getter return the value
6849         of the PropertyDescriptor, not the data_source.
6850
6851         * Binding.cs: no need to duplicate the string splitting code here.
6852
6853 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6854
6855         * Control.cs:
6856           - set_Enabled: OnEnabledChanged is not called if the inherited state 
6857             of the control is not altered, even though  we might be changing the
6858             internal state of the control (#78458)
6859           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
6860             OnEnabledChanged, to allow easy altering of any child window state
6861           - OnEnabledChanged: Added code to enable/disable driver window state
6862           - OnParentEnabledChanged: Instead of firing the event, call 
6863             OnEnabledChanged, which will fire the event and also a) set driver
6864             window state and pass the enabled state to any grandchildren (#78458)
6865
6866 2006-06-19  Jackson Harper  <jackson@ximian.com>
6867
6868         * InternalWindowManager.cs: We don't set the cursor explicitly
6869         thats done via the response to NCHITTESTs.
6870         - Don't need to adjust for titlebar heights anymore, the
6871         coordinates are coming in the correct coordinates now (see peters
6872         last patch).
6873
6874
6875 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6876
6877         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
6878           being translated relative to whole window, instead of client window.
6879           That caused broken offsets on mouseclick (and caused gas for our
6880           InternalWindowManager)
6881
6882 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6883
6884         * TextControl.cs:
6885           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
6886           - Undo(): Added replay of cursor move on DeleteChars action; added
6887             calling Undo() again if a recorded cursor move is invalid (to
6888             ensure that some action is performed on Undo)
6889         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
6890
6891 2006-06-16  Jackson Harper  <jackson@ximian.com>
6892
6893         * MdiClient.cs: Instead of just sizing maximized windows when
6894         there is a resize we also have to adjust the Y of minimized
6895         windows, so they stay pinned to the bottom of the mdi container.
6896         - Eliminate separate tracking of the active control, we can just
6897         get this from the controls collection.
6898         - Paint the decorations for the newly activated titlebar so we get
6899         a pretty blue bar.
6900         * InternalWindowManager.cs:
6901         * ThemeWin32Classic.cs: Minimized windows get all three buttons
6902         even if they are a tool window.
6903         
6904 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6905
6906         * TextControl.cs (Undo): Handle non-existent cursor locations in the
6907           undo buffer, these can happen when text was deleted and the cursor
6908           was recorded first. Since we will also have a recorded cursor
6909           after the delete this is not an issue. (Fixes #78651)
6910
6911 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
6912
6913         * AccessibleObject.cs: Remove dependence on Control.is_selected;
6914           instead properly track control states internally (allows us to
6915           remove is_selected from Control)
6916
6917 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6918
6919         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
6920         whose width is not a multiple of 8.
6921
6922 2006-06-13  Jackson Harper  <jackson@ximian.com>
6923
6924         * MdiClient.cs:  Only maximize the next child if the current one
6925         is maximized.
6926
6927 2006-06-13  Chris Toshok  <toshok@ximian.com>
6928
6929         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
6930         modified.  Also, guard against grid or grid_drawing being null in
6931         Invalidate.
6932
6933         * DataGrid.cs: Reformat tons of getters/setters.  In the
6934         DataMember setter, just call SetNewDataSource instead of
6935         duplicating some of its functionality.  In SetNewDataSource, don't
6936         check ListManager for null, since the property getter creates the
6937         object if needed.
6938
6939         * DataGridTableStyle.cs: don't set TableStyle or call
6940         SetDataGridInternal on the column here, it's done in
6941         GridColumnStylesCollection.Add.
6942
6943         * GridColumnStylesCollection.cs: fix all the explicit interface
6944         implementations to just call our methods.  Nuke AddInternal() and
6945         move the body of it to Add().  Also, add a call to
6946         column.SetDataGridInternal to Add().
6947
6948         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
6949         base()+duplicate code.  Also, use the Format property instead of
6950         format to generate an Invalidate ala MS.  Lastly, create the
6951         textbox here, unconditionally.
6952         (set_Format): call Invalidate.
6953         (get_TextBox): no need to call EnsureTextBox.
6954         (Commit): remove the message box.
6955         (Edit) remove the call to EnsureTextBox.
6956         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
6957         (EnterNullValue): no need to check textbox for null.
6958         (HideEditBox): no need to check textbox for null.
6959         (SetDataGridInColumn): add the textbox to the grid's controls.
6960         (EnsureTextBox): nuke.
6961         
6962 2006-06-13  Jackson Harper  <jackson@ximian.com>
6963
6964         * MdiWindowManager.cs: Hook up to the maximized menus paint event
6965         and redraw the buttons when needed. Unhook when the window is
6966         unmaximized.
6967         * MainMenu.cs: Add an internal Paint event, the mdi window manager
6968         needs this so that it can redraw its buttons when the menu is
6969         repainted.
6970         * InternalWindowManager.cs:
6971         * Form.cs: The method order has changed for DrawMaximizedButtons,
6972         so that it can be a PaintEventHandler.
6973         
6974 2006-06-13  Jackson Harper  <jackson@ximian.com>
6975
6976         * MdiClient.cs: When we close a maximized mdi window, the next mdi
6977         window is activated and maximized, even if it wasn't before.
6978         - When  a new window is activated repaint the decorations of the
6979         old one, so that it no longer has the Active "look" (the blue
6980         titlebar).
6981         * InternalWindowManager.cs: Open up CreateButtons to base classes
6982         so they can recreate the buttons on state changes.
6983         - If a window is maximized give it all three buttons
6984         * MdiWindowManager.cs: Create the titlebar buttons when the state
6985         is changed, this is needed because a toolwindow will not have all
6986         three buttons until it is maximized.
6987
6988 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
6989
6990         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
6991           Fixed bug #78609.
6992
6993 2006-06-12  Jackson Harper  <jackson@ximian.com>
6994
6995         * KeysConverter.cs: Make sure we handle the Ctrl special case
6996         if its the only key.
6997         
6998 2006-06-12  Jackson Harper  <jackson@ximian.com>
6999
7000         * Theme.cs: Add a method to get the size of a managed window
7001         toolbar button.
7002         * InternalWindowManager.cs: Remove the ButtonSize property, this
7003         should be retrieved from the theme.
7004         * MdiWindowManager.cs: Get the button size from the theme
7005         * ThemeWin32Classic.cs: Make the method to get the managed window
7006         titlebar button size public.
7007         - Handle the different button sizes of maximized toolwindows
7008         (should match any maximized window).
7009         - Get the titlebar height from the theme, not the WM (which gets
7010         it from the theme).
7011
7012 2006-06-12  Jackson Harper  <jackson@ximian.com>
7013
7014         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
7015         event down to the mdi window manager.
7016         - Expose some extra stuff to base classes
7017         - Make sure to end the Capture on an NC Mouse up, so that we can
7018         get double clicks properly, and the sizing doens't stick.
7019         - When doing PointToClient contain it in the workable desktop
7020         area, this prevents windows from changing size when the cursor is
7021         pulled outside of the working area while sizing.
7022         * MdiWindowManager.cs: When we get a double click maximize the
7023         window.
7024         - Reset the cursor after handling mode changes.
7025
7026 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
7027
7028         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
7029           current desktop, instead of just assuming a 0, 0 origin. This
7030           is needed for our internal window manager, to know the top
7031           margin of the desktop
7032
7033 2006-06-12  Chris Toshok  <toshok@ximian.com>
7034
7035         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
7036         we need this to get rid of the selected background in the bool
7037         column.
7038         (CancelEditing): move the ConcedeFocus call to above the Abort
7039         call.  Also, set is_changing to false and invalidate the row
7040         header if we were changing before.
7041         (ProcessKeyPreviewInternal): remove, since noone outside this
7042         class calls it anymore.  Roll the code into ProcessKeyPreview.
7043         (EndEdit): remove the internal version.
7044         (InvalidateCurrentRowHeader): make private.
7045
7046         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
7047         Keys.Escape handling (and with it the last call to
7048         DataGrid.EndEdit from outside the class.)
7049
7050
7051 2006-06-12  Chris Toshok  <toshok@ximian.com>
7052
7053         * DataGridTextBox.cs (.ctor): isedit defaults to false.
7054         (OnKeyPress): set isedit to true.
7055         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
7056         already handled by the grid.
7057
7058         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
7059         right.  ugh.
7060         (set_DataSource): SetDataSource always returns true, so stop
7061         putting it in an if statement.
7062         (EndEdit): get rid of some {}'s
7063         (ProcessGridKey): return true in case Keys.Escape.
7064         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
7065         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
7066         PositionChanged, stopped connecting to CurrentChanged.
7067         (GetDataSource): simplify this a bunch.
7068         (SetDataSource): change return type from bool to void.
7069         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
7070         to this, and make sure we don't set ListManager.Position inside
7071         set_CurrentCell.
7072         (OnListManagerItemChanged): if we're passed an actual index,
7073         redraw that row.
7074
7075         * CurrencyManager.cs (set_Position): don't call PullData here.
7076
7077 2006-06-09  Jackson Harper  <jackson@ximian.com>
7078
7079         * TreeNode.cs:  Recalculate the visible order before doing the
7080         Expand/Collapse Below calls, because those calls generate an
7081         expose.
7082         - Reduce calls to the TreeView property, which is mildly expensive
7083         by using a local var.
7084         * Form.cs: Layout the MDI child windows when creating the parent
7085         form.
7086         - Don't use the internal constructor anymore
7087         * MdiClient.cs: use the parent form width/height (if available)
7088         when laying out the child windows, we do this because the
7089         mdiclient isn't docked yet when the initial layout is done.
7090         - Don't need an internal constructor anymore.
7091
7092 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7093
7094         * FileDialog.cs: handle access errors when trying to create a folder
7095         or changing to a directory. No need to initialize out parameters.
7096
7097 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7098
7099         * FileDialog.cs: Append a number when creating a new folder if the
7100           folder already exists (use parenthesis instead of square brackets)
7101
7102 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7103
7104         * FileDialog.cs:
7105           - Disabled registry support for windows and added better registry
7106             error checking for other systems (need to investigate why it
7107             works perfectly on my system)
7108           - If a folder already exist show an error MessageBox instead of
7109             trying to create an indexed name.
7110           - Fixed a non intentional typo.
7111
7112 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7113
7114         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
7115
7116 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7117
7118         * FileDialog.cs: When creating a new folder don't crash if the
7119           folder already exists.
7120
7121 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7122
7123         * FileDialog.cs: Allmost a complete rewrite.
7124           - added a "virtual" file system that handles the differences
7125             between unix and windows file systems (especially the directory
7126             structure). Moved most of the directory and file handling code
7127             into the vfs.
7128             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
7129             UnixFileSystem and FSEntry.
7130           - Recently used folder/directory, size, location and used file names
7131             (file name ComboBox) are now stored in the registry and get read
7132             before the dialog shows up (fixes part 6 of bug #78446).
7133           - Creation of new folders/directories is now possible (context menu
7134             or ToolBar). Added TextEntryDialog for this that fills in the gap
7135             until ListView.LabelEdit works.
7136           - Fixed cursor handling (bug #78527) and focus handling for
7137             PopupButtonPanel
7138           - Various "Search in" ComboBox enhancements. The content of the
7139             dropdown listbox now almost matches ms.
7140           - Changed the behaviour when the user switches to SpecialFolder
7141             Recent to show the ListView in View.Details.
7142           - Beside using the ToolBar to change the View property of the
7143             file ListView it is now possible to use the context menu too.
7144
7145 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7146
7147         * ComboBox.cs: Don't create a new ObjectCollection when an item
7148           gets inserted. Just insert the item in the existing object_items
7149           ArrayList.
7150
7151 2006-06-08  Jackson Harper  <jackson@ximian.com>
7152
7153         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
7154         that the treeview and root node checks are done also, this fixes a
7155         regression i caused in the unit tests.
7156
7157 2006-06-07  Wade Berrier <wberrier@novell.com> 
7158
7159         * RichTextBox.cs: More ISO8859-1 -> unicode
7160
7161 2006-06-07  Mike Kestner  <mkestner@novell.com>
7162
7163         * ComboBox.cs : use items to hold highlight/selection so that
7164         collection insertions don't require synchronization.
7165
7166 2006-06-07  Jackson Harper  <jackson@ximian.com>
7167
7168         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
7169         routine.  We now always keep the sized edge at the cursor instead
7170         of computing movement and adjusting rects.  There is one buglet
7171         with this method though when the cursor is moved over area that
7172         the window can not expand too (such as the toolbars on the desktop).
7173
7174 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7175
7176         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
7177         here. Fixes crash on startup in AlbumSurfer.
7178
7179 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
7180
7181         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
7182           values
7183
7184 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7185
7186         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
7187         statement to avoid calling XNextEvent which will block if another thread
7188         took the event that we were expecting. Fixes bug #78605.
7189
7190 2006-06-07  Mike Kestner  <mkestner@novell.com>
7191
7192         * ListView.cs : isolated checkbox clicking from the selection logic.
7193         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
7194
7195 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7196
7197         * Form.cs: Check that the value passed to Form.DialogResult
7198         is a valid enum value.
7199
7200 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7201
7202         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
7203         Computer'. Clicking it in the network view goes to 'My Computer'.
7204         Added CIFS filesystem type. Display the mount point of filesystems.
7205         Avoid duplicate mount points (happens for me with CIFS);
7206
7207 2006-06-06  Jackson Harper  <jackson@ximian.com>
7208
7209         * InternalWindowManager.cs: Draw the maximized windows buttons
7210         when resizing.
7211
7212 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7213
7214         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
7215         all other dialogs. Fixes bug #78585.
7216
7217 2006-06-06  Mike Kestner  <mkestner@novell.com>
7218
7219         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
7220         Only invalidate checkbox on checkstate changes to avoid flicker.
7221         * ListBox.cs : avoid unselect/select when clicking selected item.
7222         avoid reselection flicker for already multiselected items.
7223         Fixes #78382.
7224
7225 2006-06-06  Jackson Harper  <jackson@ximian.com>
7226
7227         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
7228         the parent form so that the menu is removed if needed.
7229
7230 2006-06-06  Mike Kestner  <mkestner@novell.com>
7231
7232         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
7233         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
7234
7235 2006-06-06  Mike Kestner  <mkestner@novell.com>
7236
7237         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
7238
7239
7240 2006-06-06  Jackson Harper  <jackson@ximian.com>
7241
7242         * Control.cs: Use the property (instead of the field) to get the
7243         default cursor so it is instantiated correctly.
7244         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
7245         resizes so we need to manually repaint the window decorations here.
7246         - Set the titlebar button locations as soon as they are created,
7247         otherwise they are not set correctly on win32.
7248         
7249 2006-06-06  Chris Toshok  <toshok@ximian.com>
7250
7251         * CurrencyManager.cs (set_Position): call PullData before
7252         OnCurrentChanged.
7253         (AddNew): after calling IBindingList.AddNew, update our
7254         listposition, and call OnCurrentChanged/OnPositionChanged (without
7255         calling PullData).
7256         (OnCurrentChanged): remove the call to PullData from here.
7257         (OnItemChanged): remove the call to PushData from here.
7258         (OnPositionChanged): change the test from == null to != null to
7259         match the other methods.
7260         (ListChangedHandler): the grossest part of the patch.  Implement
7261         this such that it passes the unit tests in CurrencyManagerTest and
7262         the output more or less matches that of MS's implementation.
7263  
7264 2006-06-06  Mike Kestner  <mkestner@novell.com>
7265
7266         * ListView.cs : only update check state on single click.
7267         * ThemeWin32Classic.cs : fix focus drawing for details view without
7268         fullrowselect.  Fixes #78454.
7269         * XplatUIX11.cs : fix for double click emission.
7270
7271 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
7272
7273         * PropertyGridView.cs : Applied Atsushi's patch to fix
7274         font dialog bug  (#78197).
7275
7276 2006-06-05  Jackson Harper  <jackson@ximian.com>
7277
7278         * TreeNode.cs: Compute the next node for expanding/collapsing
7279         correctly. We now factor in nodes without a NextNode
7280         correctly. (Fixes somes cases in nunit-gui).
7281         * InternalWindowManager.cs: Set the bounds when updating the
7282         virtual position of a tool window.
7283         
7284 2006-06-05  Chris Toshok  <toshok@ximian.com>
7285
7286         * DataGrid.cs: rename cached_currencymgr to list_manager.
7287         (set_CurrentCell): move SetCurrentCell code here, and clean it up
7288         some.
7289         (CurrentRow, CurrentColumn): single accessors so we can make the
7290         cursor movement code a lot easier to understand.
7291         (CurrentRowIndex): implement this in terms of CurrentRow.
7292         (BeginEdit): clean this up a bit.
7293         (CancelEditing): sort out the is_editing/is_changing/is_adding
7294         stuff a little.
7295         (EndEdit): minor changes.
7296         (OnKeyDown): add a comment about a (most likely) unnecessary
7297         check.
7298         (OnMouseDown): cancel editing when we click on a row header.  And
7299         use the CurrentRow setter, not CurrentCell.
7300         (ProcessDialogKey): directly call ProcessGridKey.
7301         (UpdateSelectionAfterCursorMove): factor out this common block of
7302         code (it's used everywhere that we move the cursor by updating row
7303         or column).
7304         (ProcessGridKey): pretty substantial overhaul.  Use the
7305         CurrentRow/CurrentColumn properties to make the code a lot more
7306         readable.  Only use the CurrentCell property when we have to
7307         modify both row and column at once.  Tab behavior is still broken,
7308         and Delete is untested.
7309         (Select): if we have no selected rows, set selection_start to
7310         @row.
7311         (EditCurrentCell): rename EditCell this.  It was only ever invoked
7312         with CurrentCell as the arg, so drop the arg and rename it.
7313
7314         * DataGridColumnStyle.cs: clean up the constructors a little, and
7315         drop CommonConstructor().
7316
7317         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
7318         actually get notified when the user hits it.
7319         (ProcessKeyMessage): *substantially* simplify this method.
7320         There's no reason (that I can see) for the textbox to be making
7321         calls into the datagrid at all.  Remove all of them but the ones
7322         for Enter handling.  those will take some more work.
7323
7324         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
7325         calling HideEditBox.
7326         (HideEditBox): if we have an active textbox, render it invisible
7327         without causing a re-layout of the datagrid.
7328
7329 2006-06-05  Mike Kestner  <mkestner@novell.com>
7330
7331         * ListView.cs : fix NRE crasher when focuseditem is cleared by
7332         collection changes by resetting it to Items[0].  Fixes #78587.
7333
7334 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7335
7336         * MessageBox.cs: if the height of the text is larger than the icon_size,
7337         use that. Fixes bug #78575.
7338
7339 2006-06-05  Jackson Harper  <jackson@ximian.com>
7340
7341         * TreeView.cs: Fix line drawing when scrolling.  To do this each
7342         node is basically responsible for drawing its entire horizontal
7343         area.  When drawing a node it draws its parent node lines if
7344         needed.
7345         - Adjust the clip area to the viewport rectangle
7346         - Fix Left/Right key handling to match MS. (It expand/collapses
7347         and moves to parents/first child but does not move selection to
7348         sibling nodes).
7349         - Fix SetTop to work with new bound calculation code
7350         - When scrollbars are no longer needed we need to reset scrolling
7351         vars and recalculate the visible order so the redraw is correct
7352         * TreeNode.cs: We can't expand/collapse nodes with no children.
7353
7354 2006-06-03  John Luke  <john.luke@gmail.com> 
7355
7356         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
7357         so the colors work without dev packages
7358         
7359 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
7360
7361         * Control.cs 
7362           - Select: Implemented to just use activate. Seems to match MS 
7363             behaviour closest. Documented to only do actual control walking 
7364             based on it's parameters if in a container control so I moved 
7365             the code there.
7366           - Removed selection check logic from our internal Select() method
7367         * ContainerControl.cs:
7368           - Select: Moved selection logic from Control here, since MS documents
7369             that containers obey the bool arguments. No longer calling base
7370
7371 2006-06-02  Jackson Harper  <jackson@ximian.com>
7372
7373         * TreeView.cs: If the selected node isn't changed when we get
7374         focus update the previously selected node so that we see the
7375         selection box.
7376
7377 2006-06-02  Mike Kestner  <mkestner@novell.com>
7378
7379         * ComboBox.cs: restructure grab and general mouse event handling.
7380         Make the composite control raise mouse events like it was a single
7381         control for leaves/enters/motion/up/down events.  fix dropdown list
7382         coordinate mangling and refactor it into the scrollbar subclass to
7383         reduce code duplication.  Fixes #78282 #78361 and #78457.
7384
7385 2006-06-02  Mike Kestner  <mkestner@novell.com>
7386
7387         * ScrollBar.cs: remove Capture setting/clearing, as it happens
7388         automatically in the Control.WndProc.
7389
7390 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7391
7392         * FileDialog.cs: fix crash when running SharpChess, which sets the
7393         FilterIndex to 2 with only one Filter.
7394
7395 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7396
7397         * ToolBar.cs: add SizeSpecified property.
7398         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
7399         try to figure out our real size, otherwise fallback to what the
7400         container says.
7401
7402 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7403
7404         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
7405         * Control.cs (WndProc): MS always calls the DefWndProc to pass
7406           up the event
7407
7408 2006-06-01  Mike Kestner  <mkestner@novell.com>
7409
7410         * ListView.cs: revamp the focus management in ListView.  It still
7411         causes churn of LostFocus/GotFocus emissions on clicks, but it's
7412         better than not handling focus at all.  Will revisit when pdb feels
7413         the general focus handling is solid.  Fixes #78526.
7414
7415 2006-06-01  Jackson Harper  <jackson@ximian.com>
7416
7417         * TreeView.cs: Set the default border style in the constructor.
7418         - Move painting to use OnPaintInternal instead of capturing
7419         WM_PAINT, this is the correct way of doing things
7420         - UpdateBelow shouldn't invalidate the scrollbar area
7421         - Cap the top on update below in case the node was above the top
7422         of the viewport rectangle.
7423         - ExpandBelow and Collapse below need to obey Begin/End Update.
7424         * TreeNode.cs: Make is_expanded internal so the treenode
7425         collection can change it without firing the whole event chain.
7426         * TreeNodeCollection.cs: When clearing all the child nodes make
7427         sure to recalc the visible order.
7428         - Improve algo for remove the top node
7429
7430 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7431
7432         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
7433           SendMessage directly calling window procedures, which in turn might
7434           call SetFocus()
7435
7436 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
7437
7438         * Control.cs: Don't handle WM_SETFOCUS if the same window already
7439           has focus (works around X11 sending a FocusIn after our SetFocus)
7440         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
7441
7442 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
7443
7444         * Mime.cs: Fix for the NET_2_0 build.
7445           NameValueCollection needs StringComparer now.
7446
7447 2006-05-31  Chris Toshok  <toshok@ximian.com>
7448
7449         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
7450         return (via an out parameter) the starting X of the column.
7451         (UpdateVisibleColumn): track change to FromPixelToColumn.
7452         (HitTest): add a ColumnResize case here.
7453         (DrawResizeLine): new function, probably poorly named.
7454
7455         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
7456         only need to keep one reference.
7457         (set_ListManager): same.
7458         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
7459         Also, add support for HitTestType.ColumnResize.
7460         (OnMouseMove): add column resize behavior here, and change the
7461         cursor to the correct one as we move around the datagrid.
7462         (OnMouseUp): terminate the column resize if we're resizing.
7463         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
7464         for the current cell.
7465         (ConnectListManagerEvents): use cached_currencymgr.
7466         (DisconnectListManagerEvents): fill this in, using
7467         cached_currencymgr.
7468         (SetCurrentCell): remove cached_currencymgr_events handling.
7469         (SetDataMember): only call DisconnectListManagerEvents if
7470         cached_currencymgr is != null.
7471         (SetDataSource): same.
7472         (OnListManagerCurrentChanged): cached_currencymgr_events ->
7473         cached_currencymgr.
7474
7475 2006-05-31  Jackson Harper  <jackson@ximian.com>
7476
7477         * BindingManagerBase.cs: Remove somedebug code that creeped into
7478         SVN.
7479         * TreeNode.cs: We get the indent level dynamically right now, so
7480         don't track it as a member.
7481         * TreeNodeCollection.cs: Make sure all nodes added to the list
7482         have parents, treeviews/topnodes setup properly.
7483         - Don't attempt to track indent level.
7484
7485 2006-05-30  Jackson Harper  <jackson@ximian.com>
7486
7487         * BindingContext.cs: Create the currency manager tables here.
7488         This allows us to more easily create null tables (when bad data
7489         members are used), and more easily create related currency
7490         managers.
7491         * CurrencyManager.cs: All the table creation stuff is done by the
7492         binding context now.
7493         - Current should throw an exception if listposition is -1.
7494         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
7495         been bound yet.
7496
7497 2006-05-30  Mike Kestner  <mkestner@novell.com>
7498
7499         * ListView.cs: allow reexpansion of zero-width column headers.
7500         Fixes #78528.
7501
7502 2006-05-28  Chris Toshok  <toshok@ximian.com>
7503
7504         * CurrencyManager.cs (get_Current): after the late binding
7505         listposition = -1 fix, we need to guard against it here and return
7506         null, otherwise we raise an exception (which is swallowed
7507         elsewhere, and breaks datagrid databinding.)
7508
7509 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7510
7511         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
7512           than WM_SYSKEY, don't throw if get something unexpected (#78507)
7513
7514 2006-05-26  Jackson Harper  <jackson@ximian.com>
7515
7516         * ControlPaint.cs:
7517         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
7518         values, it's faster and it's all we care about (we don't care if
7519         the names aren't equal).
7520         * KeyboardLayouts.cs: Eliminate some dead code.
7521         - Lazy init things
7522         * X11Keyboard.cs: Lazy init keyboard detection.
7523         - Cleanup access modifiers a little.
7524
7525 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7526
7527         * XplatUIX11.cs: Once again, attempting to get layout just right.
7528
7529 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
7530
7531         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
7532           the sizes of each link section, that will result in sizes that
7533           match DrawString's layout (Fixes #78391)
7534
7535 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
7536
7537         * FileDialog.cs: If AddExtension property is true autocomplete the
7538           extensions in SaveFileDialog correctly. Fixes bug #78453.
7539           Set MyNetwork and MyComputer to "C:\" for windows. This should
7540           fix part 8 of bug #78446 for now.
7541
7542 2006-05-26  Chris Toshok  <toshok@ximian.com>
7543
7544         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
7545         invalidate the current row header if we need to, but presumably
7546         we'll invalidate the row corrsponding to the bounds or
7547         editingControl.
7548         (GridHScrolled): switch back to this method, as it's part of the
7549         public api.  *sigh*.
7550         (GridVScrolled): same.
7551         (OnMouseWheel): hack up something that more or less works.  Call
7552         GridHScrolled/GridVScrolled directly, instead of duplicating much
7553         of their code here.
7554         (EnsureCellVisibility): reinstate a bunch of this code, since we
7555         can't just set the scrollbar Value and expect to do all the work
7556         in the ValueChanged handler.  Also, Call Update() after scrolling
7557         in one direction so the other XplatX11.ScrollWindow call has the
7558         proper stuff in the proper places.
7559         (EditCell): set is_editing to true before calling .Edit.
7560
7561         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
7562         don't bother comparing first.
7563         (OnKeyPress): call grid.ColumnStartedEditing before calling
7564         base.OnKeyPress.  this will set is_changing and invalidate the row
7565         header if necessary.
7566         (ProcessKeyMessage): for WM_CHAR messages, call
7567         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
7568         and WM_KEYDOWN.
7569         
7570         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
7571         it's done in the DataGrid.
7572         (NextState): call grid.ColumnStartedEditing, which takes care of
7573         invalidating the row header (and setting is_changing).
7574
7575         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
7576         here.  it's done in the DataGrid.
7577
7578 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7579
7580         * Control.cs: allow changing the cursor when the mouse position is
7581         out of bounds but Capture is set.
7582         * LinkLabel.cs: handle the case when the mouse button is pressed on the
7583         linklabel but released somewhere else.
7584
7585 2006-05-25  Jackson Harper  <jackson@ximian.com>
7586
7587         * TreeView.cs: When we get focus if there is no selected node make
7588         it the top node
7589         - Remove some uneeded setup code from Draw.
7590         * TreeNodeCollection.cs: If the tree doesn't have a top node when
7591         a new node is inserted make the new node the top.
7592         * XplatUIX11.cs:
7593         * Timer.cs: Use Utc time so that no local time zone stuff needs to
7594         be used (should be faster).
7595         
7596 2006-05-25  Chris Toshok  <toshok@ximian.com>
7597
7598         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
7599         problem with the last commit.
7600
7601 2006-05-25  Chris Toshok  <toshok@ximian.com>
7602
7603         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
7604         need the invalidate call here, while scrolling right-to-left via
7605         the left arrow key (i.e. moving the editing cell while scrolling).
7606
7607         * DataGrid.cs (.ctor): remove the initialization of
7608         ctrl_pressed/shift_pressed.  We no longer track them using key
7609         up/down handlers, but by using Control.ModifierKeys.  Also, switch
7610         to using ValueChanged handlers on the scrollbars instead of
7611         Scrolled event handlers.  This simplifies a bunch of the scrolling
7612         code.
7613         (GridHValueChanged): rename from GridHScrolled, and change it to
7614         work with the new event args.
7615         (GridVValueChanged): same.
7616         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
7617         (OnMouseWheel): actually scroll the datagrid.  Don't change the
7618         selected cell.
7619         (ProcessGridKey): correct all the keyboard navigation stuff I
7620         could find.  Ctrl up/down/left/right/home/end work now.
7621         (EnsureCellVisibility): correct method name spelling.  Also,
7622         simplify this a touch by not explicitly calling the
7623         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
7624         scrollbar value.
7625         (OnKeyUpDG): no need for this method now.
7626         
7627 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7628
7629         * LinkLabel.cs: display the OverrideCursor when hovering the label.
7630         Fixes bug #78392.
7631
7632 2006-05-25  Chris Toshok  <toshok@ximian.com>
7633
7634         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
7635         r61019.
7636
7637 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7638
7639         * Application.cs: Moved setting of is_modal and closing to before
7640           we create the control, to allow the event handlers called as a
7641           result of creation affect closing. Also removed Gonzalo's previous
7642           change to setting DialogResult, the behaviour has been moved to 
7643           Form.ShowDialog()
7644         * Form.cs: 
7645           - ShowDialog(): Removed explicit creation of the form, let RunLoop
7646             handle it instead
7647           - ShowDialog(): If no dialog result is set, we need to return Cancel
7648           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
7649             the close is cancelled
7650
7651 2006-05-25  Jackson Harper  <jackson@ximian.com>
7652
7653         * StatusBar.cs: We only need to update the sizes of the other
7654         panels when we have auto size contents.  Also we are only updating
7655         the contents of the panel, not the borders, so compensate for the
7656         border width (TODO: get this width from the theme somehow).
7657         * TreeView.cs: Scrollable is true by default
7658         - Use invalidate instead of refresh where needed
7659         - Factor the scrollable value into scrollbar updating
7660         - Update the scrollbars if the Scrollable property is altered
7661         - Update the selected node if its ImageIndex is changed
7662         - Handle null nodes in UpdateNode (mainly so we don't have to
7663         check if selected is null when updating it
7664         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
7665         are factored into the visible count
7666         - Use VisibleCount for clarity in the code
7667         - When the font is changed we need to recurse through all the
7668         nodes and invalidate their sizes
7669         
7670 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7671
7672         * Application.cs: set the DialogResult to fixed when the main form is
7673         hidden or destroyed while being modal.
7674
7675 2006-05-25  Miguel de Icaza  <miguel@novell.com>
7676
7677         * Theme.cs: Use Tangoified messagebox icons. 
7678
7679         (GetSizedResourceImage): Also cope with width = 0 and do not
7680         trigger a warning in that case (0 means "give me your icon from
7681         the resouce, no special size needed).
7682
7683 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7684
7685         * Application.cs: Leave runloop if the the main modal form is 
7686           hidden (fixes #78484)
7687
7688 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7689
7690         * BindingContext.cs : reject null datasource in Contains() and
7691           Item[].
7692         * CurrencyManager.cs : check data_member validity when data_source
7693           is dataset. When it is late binding, the initial position is -1.
7694
7695 2006-05-24  Jackson Harper  <jackson@ximian.com>
7696
7697         * TreeNodeCollection.cs: Dont't recalculate the visible order on
7698         inserted nodes that aren't visible.  This changes the
7699         max_visible_order which confuses scrollbar settings.
7700         - Use the enumerator to get the prev node instead of duplicating
7701         code.
7702         * TreeView.cs: Use new method for setting scrollbar values
7703         - Don't set the bounds every time the scrollbar is updated
7704         - When updating below the root node use an invalidate instead of a
7705         refresh to prevent the child controls (scrollbars) from being
7706         refreshed. (UpdateBelow still needs to be reworked anyways).
7707         - Reenable SetBottom now that visible orders are set correctly,
7708         added some debug code incase we ever get bad values there again.
7709         - Set the scrollbar max to 2 less then the max value, this
7710         compensates for the max value being one above the node count, and
7711         for scrollbars adding one extra "notch".
7712         - When drawing image nodes if there is an imagelist we draw the
7713         first image in the list if the supplied image index is out of the
7714         image list's bounds.
7715         
7716 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7717
7718         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
7719           we receive a size change from the WM (Fixes #78503)
7720
7721 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
7722
7723         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
7724           rectangle (Fixes #78501)
7725
7726 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7727
7728         * ButtonBase.cs: 
7729           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
7730             as a bitfield.
7731           - Fixed MouseMove to no longer switch pressed state unless the left
7732             mouse button is pressed. Atsushi provided the original patch (#78485)
7733           
7734 2006-05-24  Jackson Harper  <jackson@ximian.com>
7735
7736         * ScrollBar.cs: New internal methods that allow us to change a
7737         couple values on the scrollbar (the most common case is maximum
7738         and large change) without getting multiple invalidates.
7739
7740 2006-05-24  Chris Toshok  <toshok@ximian.com>
7741
7742         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
7743         (Edit): save off the original state in oldState, and set
7744         grid.is_editing to true.
7745         (OnKeyDown): abort editing if escape is pressed.  also, call
7746         NextState if space is pressed.
7747         (OnMouseDown): call NextState.
7748         (NextState): factor out shared code from OnKeyDown and OnMouseDown
7749         here.  Also, only invalidate the row header once (on the initial
7750         is_changing switch) to save on redraws.
7751
7752 2006-05-24  Chris Toshok  <toshok@ximian.com>
7753
7754         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
7755         if the value in the cell is different than it was before.  This
7756         keeps us from triggering a layout when we move around a datarid
7757         with a highlighted cell.
7758         (Edit): suspend layout when creating/positining the text box, and
7759         resume passing false so we don't ever actually re-layout.
7760         (ReleaseHostedControl): same.
7761         (EnsureTextBox): reformat slightly, and set WordWrap to false.
7762
7763         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
7764         control-key sequences should go to the datagrid - remove that
7765         lock.  Also, modify the conditions under which we move between
7766         cells when moving the cursor within a cell, and remove the "this"
7767         and "base" from field accesses.  We weren't even consistent, given
7768         they all were in the base class.
7769
7770 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
7771
7772         * Binding.cs : (.ctor)
7773           An obvious NRE fix for BindingTest.CtorNullTest().
7774
7775 2006-05-23  Chris Toshok  <toshok@ximian.com>
7776
7777         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
7778         them between lines.  This fixes some quirks editing cells in the
7779         datagrid.
7780
7781 2006-05-23  Jackson Harper  <jackson@ximian.com>
7782
7783         * TreeView.cs: Use begin/end update when doing expand/collapse all
7784         so that we don't get flicker on the scrollbar.
7785
7786 2006-05-23  Jackson Harper  <jackson@ximian.com>
7787
7788         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
7789         treenode calculations to be independant of the painting code. To
7790         do this nodes track a visible order which is calculated by the
7791         treeview.
7792         - Call new methods for expanding/collapsing nodes.  These methods
7793         use scrollwindow so we don't have to update everything below the
7794         node.
7795         * TreeView.cs: Refactored drawing and scrolling code.  We don't
7796         need to update nodes when drawing anymore or calculate scrollbar
7797         stuff.
7798         - Added new methods for expanding/collapsing nodes. These methods
7799         use ScrollWindow so as to not have to redraw all the nodes below.
7800         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
7801         we add/remove nodes or sort.
7802         - Handle removing the selected and the top node properly.
7803
7804 2006-05-23  Chris Toshok  <toshok@ximian.com>
7805
7806         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
7807         maybe this should actually happen in the datagrid code?
7808         (EndEdit): no need to invalidate anything, given that
7809         ReleaseHostedControl causes the datagrid to relayout, which
7810         invalidates everything anyway.
7811
7812         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
7813         in SetCurrentCell).
7814         (set_SelectionBackColor): call InvalidateSelection instead of
7815         Refresh.
7816         (set_SelectionForeColor): same.
7817         (BeginEdit): Flesh this out a bit.
7818         (CancelEditing): only do any of this if we're editing/adding.
7819         (EndEdit): same.
7820         (OnMouseDown): there's no need to cancel editing here, it's done
7821         in SetCurrentCell.
7822         (SetCurrentCell): only invalidate the current row header if it's a
7823         different row than the new one.
7824         (ShiftSelection): fix this to work like MS does.
7825         (ResetSelection): factor out the invalidation of selected_rows to
7826         InvalidateSelection.
7827         (SetDataSource): cancel any editing that's going on.
7828
7829         * DataGridColumnStyle.cs
7830         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
7831         call the non-interface version.
7832
7833         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
7834         header rectangle with the clip rectangle so we don't redraw the
7835         entire header for just a small area.  Gets rid of the last flicker
7836         when horizontally scrolling.
7837         (DataGridPaintRow): same.
7838
7839 2006-05-23  Mike Kestner  <mkestner@novell.com>
7840
7841         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
7842         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
7843         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
7844         Critical bug report.
7845
7846 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7847
7848         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
7849           and this fixes #78493
7850
7851 2006-05-23  Miguel de Icaza  <miguel@novell.com>
7852
7853         * Theme.cs (GetSizedResourceImage): Scale images if the proper
7854         size is not found.  
7855         
7856         * FileDialog.cs: Do not change the background for the side bar as
7857         it wont work nicely with the theme, and also reduces the artifacts
7858         in rendering the icons (which I want to fix too).
7859
7860         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
7861         resources, not resgen resources. 
7862
7863         (PlatformDefaultHandler): Pull images using the new API.
7864
7865 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7866
7867         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
7868           a reference to the hwnd and will not remove it unless there are
7869           no pending exposures (fixes #78341)
7870         * XplatUI.cs: Improved debug
7871
7872 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
7873
7874         * MenuAPI.cs : don't handle OnClick event when it was not the left
7875           button. Fixed bug #78487.
7876
7877 2006-05-23  Mike Kestner  <mkestner@novell.com>
7878
7879         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
7880         prefer submenus to the top menu for item lookup, to avoid popping down
7881         top-row items.
7882
7883 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
7884
7885         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
7886           Graphics.FillRectangle as the visual results are really bad (even
7887           on win). We now draw perfect arrows (and perfect shadows when the
7888           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
7889           Pen.DashPattern to draw the dots of each line.
7890
7891 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
7892
7893         * FileDialog.cs: Update the filename combobox when navigating through
7894           the ListView with the cursor keys. Fixes part 7 of bug #78446.
7895
7896 2006-05-22  Mike Kestner  <mkestner@novell.com>
7897
7898         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
7899         Fixes #78463.
7900
7901 2006-05-22  Mike Kestner  <mkestner@novell.com>
7902
7903         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
7904         requests. Fix a misspelled parameter and a copy paste exception error
7905         in Select.
7906
7907 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
7908
7909         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
7910           to get the same width/height (5/13) on X11 as the default font has on
7911           win32. This means that our DefaultFont emSize is smaller than the 
7912           the MS SWF equivalent (even thought the width/height stays the same)
7913
7914 2006-05-20  Jackson Harper  <jackson@ximian.com>
7915
7916         * MdiClient.cs:
7917         * MdiWindowManager.cs:
7918         * InternalWindowManager.cs: Make sure to use the border width from
7919         the theme.
7920
7921 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
7922
7923         * PrintDialog.cs: Implements printer details
7924
7925 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
7926
7927         * FileDialog.cs: Added focus handling for PopupButtonPanel.
7928           Fixes part 1 and 2 of bug #78446
7929
7930 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
7931
7932         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
7933           instead of sticking to the first ever calculated value
7934
7935 2006-05-19  Mike Kestner  <mkestner@novell.com>
7936
7937         * ComboBox.cs: fix mouse motion selection to use MousePosition and
7938         PointToClient, since Capture is set. Fixes #78344.
7939
7940 2006-05-19  Mike Kestner  <mkestner@novell.com>
7941
7942         * ListView.cs: match MS behavior in Details view where items are not
7943         drawn if Columns.Count == 0. 
7944         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
7945         Use a separate pen to draw the check, since changing the width affects
7946         the box as well.  Fixes #78454.
7947
7948 2006-05-18  Miguel de Icaza  <miguel@novell.com>
7949
7950         * ListView.cs: ArgumentOutOfRangeException, single versions of the
7951         exception should throw the name of the invalid argument.
7952
7953         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
7954         there are no files listed. 
7955
7956 2006-05-18  Jackson Harper  <jackson@ximian.com>
7957
7958         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
7959         up.
7960
7961 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7962
7963         * Control.cs: Brought back our old UpdateZOrder method as a private
7964           function and switched our calls from UpdateZOrder to the new one.
7965           This fixes the Paint.Net canvas disappearing bug.
7966
7967 2006-05-18  Jackson Harper  <jackson@ximian.com>
7968
7969         * Theme.cs:
7970         * ThemeWin32Classic.cs:
7971         * InternalWindowManager.cs: Move the drawing into the theme,
7972         expose everything the theme should need from the window manager.
7973
7974 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7975
7976         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
7977           from the call to NativeWindow to avoid walking up the parent chain
7978           further than needed (speeds up setting cursors and avoids setting
7979           the wrong cursor if a parent has another cursor defined)
7980         * Cursor.cs: When loading an icon as cursor, MS uses the center of
7981           the icon as hotspot, not what's contained as hotspot in the icon
7982           file. This fixes the perceived drawing offset seen with Paint.Net
7983         
7984 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7985
7986         * XplatUIX11.cs: 
7987           - Store the calculated rectangle in Hwnd object and use it when 
7988             setting the client size
7989           - Force Toolwindows to always be type Dock, to ensure they're on top
7990
7991 2006-05-18  Mike Kestner  <mkestner@novell.com>
7992
7993         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
7994         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
7995         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
7996         Substantial refactoring to remove confusing nested classes. Coding
7997         standard and Get+Set->property refactorings.  Shift to index based
7998         highlighting in ComboListBox instead of constantly using IndexOf and
7999         Items[]. Add invalidations on resize for DropDownList to fix ugliness
8000         in FileDialog growth.  Draw borders manually since Simple mode needs
8001         to look like two independent controls.  Make listbox border
8002         conditional to DropDownStyle.  Improved OwnerDraw support.
8003
8004 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
8005
8006         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
8007         Don't set the disposed graphics to null, so we can throw the "right"
8008         exception if the graphics is reused later (added a flag to avoid 
8009         double disposing). Some behaviours are different under 2.0 and are
8010         filled under bug #78448.
8011
8012 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8013
8014         * Control.cs: When double-buffering is enabled, we need to reset
8015           our graphics context between paint calls. Otherwise, any 
8016           transformations and other alterations on the context will 
8017           become cumulative (#77734)
8018
8019 2006-05-18  Mike Kestner  <mkestner@novell.com>
8020
8021         * ListView.cs: do focused item selection like MS on clicks. 
8022         Rework focus handling for ItemControl so LostFocus invalidates as
8023         well.
8024         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
8025         the ListView ItemControl has focus.
8026
8027 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
8028
8029         * XplatUIX11.cs: If client_window ends up being width or height zero
8030           due to border settings, move it off window inside whole_window (#78433)
8031
8032 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8033
8034         * Mime.cs: Shrink the mime file cache correctly.
8035
8036 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8037
8038         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
8039
8040 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8041
8042         * XplatUIX11.cs (AddExpose): More sanity checks
8043
8044 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8045
8046         * XplatUIX11.cs:
8047           - AddExpose: Don't add expose ranges outside the size of our
8048             window
8049           - Cast opacity values to Int32 to avoid crashes with certain
8050             values
8051           - Added disabled code paths that protect against illegal cross-
8052             thread painting (Developers.exe)
8053
8054 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8055
8056         * ProgressBar.cs: Invalidate the control when it's resized
8057           since block size is based on control size. (#78388)
8058
8059 2006-05-16  Miguel de Icaza  <miguel@novell.com>
8060
8061         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
8062         of setting the incoming argument to the "reset" value, we set the
8063         this.datamember to string.empty (before we were invalidating the
8064         incoming data).   
8065
8066         Fixes 78420
8067
8068 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8069
8070         * Form.cs: Only apply transparency settings after the form
8071           is created. (Fixes #77800)
8072
8073 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8074
8075         * ApplicationContext.cs: Grab the HandleDestroyed event so
8076           we know when to fire OnMainFormClosed 
8077
8078 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8079
8080         * Application.cs: Introduced sub-class to allow tracking of
8081           threads and centralized triggering of the event mess for
8082           ThreadExit, AppExit, etc..  (#76156)
8083
8084 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
8085
8086         * MimeIcon.cs:
8087           - Do not return a null icon index value for a mime subclass.
8088             Instead try the main mime type class too.
8089           - Seems that some newer distributions don't have a link to some
8090             gnome default icons anymore. So check the default gnome dir too.
8091           
8092
8093 2006-05-16  Jackson Harper  <jackson@ximian.com>
8094
8095         * MdiClient.cs: Don't paint the parent background image if we have
8096         our own background image.
8097
8098 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8099
8100         * Control.cs:
8101           - PerformLayout: Do not shrink space filled by DockStyle.Fill
8102             controls, all filled controls are supposed to overlap (#78080)
8103           - UpdateZOrder is supposed to update the control's z-order in the
8104             parent's z-order chain. Fixed to behave like that
8105           - BringToFront: Removed obsolete code
8106           - SendToBack: Simplyfied
8107           - SetChildIndex: Trigger layout calculations when Z-order changes
8108             since layout is done by z-order
8109
8110 2006-05-16  Chris Toshok  <toshok@ximian.com>
8111
8112         [ fixes bug #78410 ]
8113         * DataGrid.cs (set_AlternatingBackColor): use
8114         grid_drawing.InvalidateCells instead of Refresh().
8115         (set_BackColor): call grid_drawing.InvalidateCells.
8116         (set_BackgroundColor): use Invalidate instead of Refresh.
8117
8118         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
8119         invalidate the cell area.
8120
8121 2006-05-15  Chris Toshok  <toshok@ximian.com>
8122
8123         [ fixes bug #78011 ]
8124         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
8125         on to DataGridPaintRow.
8126         (DataGridPaintRow): take a clip argument, and only draw the cells
8127         which intersect it.  same with the not_usedarea.
8128
8129         * Theme.cs (DataGridPaintRow) add @clip parameter.
8130
8131         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
8132         XplatUI.ScrollWindow.
8133         (ScrollToRow): same.
8134
8135         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
8136         with last column which was causing a gray swath to appear with the
8137         XplatUI.ScrollWindow code.
8138
8139 2006-05-15  Chris Toshok  <toshok@ximian.com>
8140
8141         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
8142         use XplatUI.ScrollWindow.
8143         (VerticalScrollEvent): use XplatUI.ScrollWindow.
8144
8145 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
8146
8147         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
8148
8149 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8150
8151         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
8152           file since there are no equivalent X11 cursors
8153
8154 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8155
8156         * MonthCalendar.cs : DateTimePicker should reflect selected date
8157           on mouse*up*, not mouse*down*. Fixed originally reported part of
8158           bug #76474.
8159
8160 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8161
8162         * TabControl.cs : When argument index is equal or more than tab
8163           count, just ignore. Fixed bug #78395.
8164
8165 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8166
8167         * Control.cs: Dispose all child controls when control is diposed (#78394)
8168
8169 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8170
8171         * ColorDialog.cs: Finally it is possible to select the color with
8172           the text boxes
8173
8174 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8175
8176         * PrintDialog.cs: Fix typo
8177
8178 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8179
8180         * PrintDialog.cs: PrintDialog is not resizable
8181         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
8182           color. Made some ToolBar drawing methods protected virtual.
8183
8184 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
8185
8186         * PrintDialog.cs: Implementation of the PrintDialog
8187
8188 2006-05-12  Chris Toshok  <toshok@ximian.com>
8189
8190         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
8191         thumb, instead use MoveThumb.  This has the side effect of making
8192         most of the other thumb moving machinery use MoveThumb as well.
8193         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
8194         need to actually invalidate the rectangle where the new thumb will
8195         go.
8196         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
8197         We force an Update() after, so it's not as fast as it could be,
8198         but at least there's zero flicker and no droppings.
8199         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
8200         (UpdateThumbPos): add another argument (dirty), which says whether
8201         or not to calculate/add dirty regions which we later invalidate.
8202         For cases where we know we're going to use MoveThumb, we pass
8203         false for this.  Otherwise, pass true.
8204
8205 2006-05-12  Jackson Harper  <jackson@ximian.com>
8206
8207         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
8208         the status bar.
8209         
8210 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
8211
8212         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
8213           and GetClipRegion methods and UserClipWontExposeParent property.
8214         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
8215           overriding UserClipWontExposeParent property, setting to false, since
8216           Win32 handles the required expose messages to draw our clipped parent
8217           areas internally
8218         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
8219           PaintEventStart to set the user clip region if set.
8220         * Control.cs: 
8221           - Now internally tracking the Region for the control since we need to
8222             store it if the handle is not yet created and only set it when it
8223             becomes created. Before setting the region forced handle creation
8224           - Added code to draw the parents underneath a user-clipped region
8225         * Hwnd.cs: Added UserClip property
8226
8227 2006-05-12  Chris Toshok  <toshok@ximian.com>
8228
8229         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
8230         (set_Maximum): same.
8231         (set_Minimum): same.
8232         (set_SmallChange): same.
8233         (OnMouseUpSB): remove the call to refresh when releasing the
8234         thumb.  We shouldn't need it.
8235         
8236 2006-05-12  Miguel de Icaza  <miguel@novell.com>
8237
8238         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
8239         AutoSize set to None, we do not need to relayout everything, we
8240         just need to invalidate the current region.
8241
8242         (Draw): Do not draw the entire ClientArea, just redraw the
8243         clip area being passed.
8244
8245         * MdiClient.cs: Make MdiClient constructor with the Form argument
8246         internal. 
8247
8248 2006-05-12  Jackson Harper  <jackson@ximian.com>
8249
8250         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
8251         parents background image,  but strangely not their own.
8252         - (DrawStatusBarPanel): Take into account horizontal alignment
8253         when drawing the strings and icons.
8254
8255 2006-05-12  Mike Kestner  <mkestner@novell.com>
8256
8257         * ListBox.cs: avoid invalidations for focus when the collection is
8258         empty. 
8259
8260 2006-05-12  Chris Toshok  <toshok@ximian.com>
8261
8262         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
8263         invalidate the entire thumb area.  Call InvalidateDirty which
8264         limits the redraw to the thumb itself and surrounding pixels.
8265
8266         * XplatUIX11.cs (ScrollWindow): optimize copying.
8267         
8268 2006-05-12  Chris Toshok  <toshok@ximian.com>
8269
8270         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
8271         Figure out the positioning/layout in a single pass instead of
8272         multiple recursive invocations.  Speeds up the initial display of
8273         the data grid.  Also, make many things private that were
8274         originally public but unused outside this class.
8275
8276 2006-05-11  Jackson Harper  <jackson@ximian.com>
8277
8278         * MdiClient.cs: Improved layout code.
8279
8280 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
8281
8282         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
8283           not SelectedObject.
8284
8285 2006-05-11  Chris Toshok  <toshok@ximian.com>
8286
8287         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
8288         union of that will always be {0,0,width,height}.
8289
8290 2006-05-11  Jackson Harper  <jackson@ximian.com>
8291
8292         * Form.cs: Match MS's DefaultSize for forms (they must have
8293         changed the size in sp2).
8294
8295 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8296
8297         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
8298
8299 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8300
8301         * TextControl.cs : Fixed bug #78109. This incorrect position
8302           comparison caused crash on automatic line split.
8303         * TextBoxBase.cs : reduce duplicate code.
8304
8305 2006-05-10  Jackson Harper  <jackson@ximian.com>
8306
8307         * MdiClient.cs: Active form is only sent to the back when using
8308         the Next form functionality, when a form is clicked the current
8309         active shouldn't be sent to the back.
8310         - Layout the mdi windows when the container is first made visible.
8311         * Form.cs: Give the MdiClient a ref to the containing form when we
8312         create it.
8313         
8314 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8315
8316         * LinkLabel.cs : link_font could be uninitialized, so populate one
8317           before actual use. Fixed bug #78340.
8318
8319 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8320
8321         * XplatUIX11.cs : clipboard format native value is IntPtr.
8322           Fixed bug #78283.
8323
8324 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8325
8326         * Control.cs: 
8327           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
8328             which is passed up the parent chain by DefWndProc
8329           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
8330             to DefWndProc (#77956)
8331         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
8332
8333 2006-05-10  Jackson Harper  <jackson@ximian.com>
8334
8335         * MdiClient.cs: We need to remove the controls from the mdi
8336         collection, when we close the window.
8337         * MdiWindowManager.cs: Special handling of closing mdi windows.
8338         * InternalWindowManager.cs: Make the close method virtual so the
8339         mdi window manager can handle it specially.
8340
8341 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
8342
8343         * DataGrid.cs:
8344           - Recalculate grid when the data source has changed
8345           - Matches styles provided by user from all data sources types
8346         * DataGridTableStyle.cs: For columns that provided by the user set the
8347         with the preferred value is there was unassigned.
8348         * CurrencyManager.cs: throw OnItemChanged event
8349
8350 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
8351
8352         * PictureBox.cs: Don't animate until handle is created. Start animation
8353           when handle is created.
8354
8355 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8356
8357         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
8358           current codebase.
8359         * XEventQueue.cs: We don't need to provide the extra info
8360
8361 2006-05-10  Jackson Harper  <jackson@ximian.com>
8362
8363         * MdiClient.cs: If the mdi clients parent form has a background
8364         image set, we draw that background image for the mdi area's
8365         background.
8366
8367 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8368
8369         * TextBoxBase.cs: Set IBeam cursor (#78347)
8370
8371 2006-05-10  Mike Kestner  <mkestner@novell.com>
8372
8373         * ToolBar.cs: fix some text padding issues with ButtonSize
8374         calculation. Update the default size to match MS documentation.
8375         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
8376         button size. Fixes #78296.
8377
8378 2006-05-10  Mike Kestner  <mkestner@novell.com>
8379
8380         * ListBox.cs: use is_visible for scrollbar positioning in case the
8381         control isn't on screen yet.  Fix off by one with Right vs Width
8382         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
8383         
8384 2006-05-10  Jackson Harper  <jackson@ximian.com>
8385
8386         * X11Dnd.cs: Drop to a control with another control on top of it.
8387         * ToolBar.cs: Work on a copy of the buttons list, so that it can
8388         be modified in click handlers. TODO: Look for similar problems in
8389         other controls.
8390
8391 2006-05-09  Jackson Harper  <jackson@ximian.com>
8392
8393         * Form.cs: Window managers need the old window state when setting
8394         window state now.
8395         * InternalWindowManager.cs: Allow the base mdi window manager to
8396         handle more of the MDI only stuff (like maximize buttons).
8397         * MdiWindowManager.cs: Fix some snafus in changing the window
8398         state.  Add all the menu functionality, for both popup and
8399         maximized menus.
8400         * MdiClient.cs: When a new form is selected the currently
8401         activated form is sent to the back, this matches MS.
8402         - Implement a new method to activate the next mdi child window.
8403
8404 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
8405
8406         * Control.cs: 
8407           - Added new InternalCapture method to allow controls to prevent
8408             the capture behaviour on the click handlers
8409           - Switched to use InternalCapture
8410         * ComboBox.cs:
8411           - Using InternalCapture to prevent mouse captures from being released
8412             on mouse button release (Fixes #78100)
8413         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
8414           returns Form borders if a caption is present. (Fixes #78310)
8415
8416 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
8417
8418         * TreeNode.cs: Changed serialization .ctor to not require every field
8419           to be present. (#78265)
8420         * OwnerDrawPropertyBag.cs: Added serialization .ctor
8421
8422 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
8423
8424         * MimeIcon.cs: for is faster than foreach for strings.
8425
8426 2006-05-05  Mike Kestner  <mkestner@novell.com>
8427
8428         * CheckedListBox.cs: update check handling code to not use selected.
8429         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
8430         behavior for visual feedback, motion response, shift/ctrl handling,
8431         and properly deal with all 4 selection modes. Updates to bounds
8432         handling logic.  Add scroll wheel support. [Fixes #77842]
8433
8434 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8435
8436         * ListView.cs:
8437           - Moved adding of Implicit controls into .ctor. That way, subsequent
8438             creation of the controls will not cause them to think they are 
8439             toplevel windows (fixes #78200 header problem)
8440           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
8441           - Switched visibility setting of header control to use internal field
8442             to avoid triggering handle creation
8443           - Now checking if handle is created before causing a refresh when items
8444             are added (This makes us now match handle creation time with MS)
8445         * Splitter.cs: Removed loading of private splitter cursor, switched to
8446           Cursors version now that that is loading the right ones
8447         * Cursors.cs: Load proper splitter cursors from resources
8448         * Cursor.cs: Added second method of loading resource cursors for the 
8449           VS.Net users amongst us
8450
8451 2006-05-05  Mike Kestner  <mkestner@novell.com>
8452
8453         * ListView.cs: give header_control a minimum size based on the
8454         ListView size.
8455
8456 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8457
8458         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
8459           window seems to do that with metacity, so set that type. (#78120)
8460
8461 2006-05-05  Mike Kestner  <mkestner@novell.com>
8462
8463         * ListViewItem.cs: fix Details mode checkbox layout bug.
8464         * ThemeWin32Classic.cs: draw a ListView column header for unused space
8465         at the end of the header, if it exists. [Fixes for #78200]
8466
8467 2006-05-04  Jackson Harper  <jackson@ximian.com>
8468
8469         * MdiClient.cs: Add a helper property to get the container form.
8470         * MdiWindowManager.cs: We have to make sure to use the menu origin
8471         when drawing the icons and buttons, this fixes maximized window
8472         icons/buttons on win32.
8473         * InternalWindowManager.cs: Reset the restore captions when a
8474         window goes from Maximized to Minimized and vice versa. Move the
8475         DrawMaximizedButtons into the MdiWindowManager source, tool
8476         windows can't be maximized. NOTE: This could use a little
8477         refactoring if time ever permits.
8478         
8479 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8480
8481         * TextBox.cs: Add MWFCategoryAttributes
8482         * TextBoxBase.cs: Add MWFCategoryAttributes
8483         * Form.cs: Add MWFCategoryAttributes
8484
8485 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8486
8487         * Control.cs: Add MWFCategoryAttributes
8488         * ScrollableControl.cs: Add MWFCategoryAttributes
8489
8490 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
8491
8492         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
8493           Divider is true. Fix a little glitch in PropertyToolBar
8494           drawing code
8495
8496 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
8497
8498         * Control.cs:
8499           - Dispose: Call base.Dispose, this causes the disposed event
8500             to be fired (and probably other, more important stuff)
8501           - SetVisibleCore: Set is_visible to true after creating the
8502             window so that the window still gets created invisible (if
8503             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
8504             to generate a WM_ACTIVE message
8505         * Form.cs: Call Dispose when we want to destroy the window, instead of
8506           just destroying the handle (Dispose will do that for us)
8507         * XplatUIX11.cs:
8508           - RootWindow also needs a queue, so we can properly process the
8509             property change events from RootWindow (like Activate)
8510           - Generatic synthetic WM_ACTIVE message when the active window is
8511             being destroyed
8512
8513 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8514
8515         * LinkLabel.cs: Trigger a recalc of our label dimensions when
8516           bounds are changed
8517
8518 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
8519
8520         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
8521           for determining width and height (image might not be assigned if
8522           we're drawing an imagelist)
8523
8524 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8525
8526         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
8527         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
8528           height from system
8529         * Theme.cs: No longer returns hardcoded menu height, instead calls
8530           new driver method
8531         * Form.cs (OnLoad): Scaling happens before triggering Load events 
8532           on MS (# 78257)
8533
8534 2006-05-01  Mike Kestner  <mkestner@novell.com>
8535
8536         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
8537
8538 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
8539
8540         * TextBoxBase.cs: Removed Fixme
8541         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
8542
8543 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
8544
8545         * XplatUIX11.cs:
8546           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
8547             the rectangle relative to the parent, considering borders. We
8548             don't really want that.
8549           - ScrollWindow: Fixed warning to be more understandable
8550         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
8551           scrollbars and scroll only the visible area
8552         * RichTextBox.cs: Removed debug output
8553
8554 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8555
8556         * NumericUpDown.cs (Text): Just use base
8557         * UpDownBase.cs: Ensure txtView is created before using it
8558
8559 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8560
8561         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
8562           casting to IntPtr to avoid 64bit overflow errors
8563
8564 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8565
8566         * Control.cs:
8567           - AllowDrop: Don't force handle creation.
8568           - CreateHandle: Added call to tell driver if we're allowed to drop
8569
8570 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8571
8572         * FileDialog.cs: Remember the last directory not only for the
8573           current instance but also for new FileDialog instances.
8574
8575 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8576         
8577         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
8578           broke sending async messages
8579
8580 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8581
8582         * XplatUIX11.cs:
8583           - ScrollWindow: Fixed method. We finally generate expose events again
8584             for scrolled areas. This was causing 'garbage' when scrolling
8585             textbox and other controls that used ScrollWindow
8586           - Switched from using the regular queue for paint events to the MS 
8587             model of 'generating' paint events when the queue is empty.
8588             We use the new XQueueEvent.Paint subclass to store which windows
8589             need painting.
8590           - AddExpose now takes the x/y/width/height of the exposed area
8591             and inserts the window into the paint queue if not already there
8592           - InvalidateWholeWindow: Switched to use new AddExpose method
8593           - UpdateMessageQueue: Added which queue to monitor for paint events
8594           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
8595             the unlikely case nothing above handles it. We reset the expose
8596             pending states to get them off the queue.
8597           - GetMessage: Now pulls a paint event if no other events are in the
8598             queue
8599           - Invalidate: Switched to new AddExpose method
8600           - PeekMessage: Updated to understand pending paint events
8601           - UpdateWindow: Fixed logic bug. We were only updating if the window
8602             didn't need updating. Also switched to sending WM_PAINT directly,
8603             like MS does.
8604         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
8605           and random access Remove(). The random access is needed to handle
8606           UpdateWindow() where a WM_PAINT is sent directly without accessing
8607           the queue.
8608         * ScrollBar.cs: Added Update() calls to cause immediate updates to
8609           allow for better feedback when scrolling. Scrollbars are small and
8610           the immediate update should make it 'feel' more responsive without
8611           slowing things down. ScrollBar still needs it's invaliate logic
8612           updated to not always invalidate the whole bar on certain changes.
8613
8614 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8615
8616         * Control.cs:
8617         (BackColor): if the control does not support a transparent background,
8618         return the default backcolor when the parent backcolor is transparent.
8619
8620 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
8621
8622         * Application.cs: Updated to new StartLoop/GetMessage API
8623         * RichTextBox.cs: Provide some output on RTF parsing errors
8624         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
8625           new queue_id argument to GetMessage and PeekMessage to allow faster
8626           handling of per-thread queues in drivers.
8627         * Hwnd.cs: Added Queue tracking and property
8628         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
8629         * XEventQueue.cs: Added thread trackingA
8630         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
8631         * XplatUIX11.cs:
8632           - Implemented new per-thread queue
8633           - GetMessage: Fixed return/break behaviour on several cases. We were
8634             returning stale messages in some cases, instead of just processing
8635             the next message
8636
8637 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8638
8639         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
8640
8641 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
8642
8643         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
8644           fixed off-by-one comparisons between Width/Height and Right/Bottom.
8645
8646 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8647
8648         * PropertyGridView.cs: Fix drop down width.
8649
8650 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8651
8652         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
8653           a mess in DrawToolBar, so I removed one of them.
8654
8655 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8656
8657         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
8658           needed (clip). Otherwise we get artifacts.
8659
8660 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8661
8662         * FixedSizeTextBox.cs: Added constructor to allow specifying which
8663           dimension is fixed
8664         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
8665           and switched FixedSizeTextBox to only be fixed vertical (#78116)
8666         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
8667           if it matches the scale base font (avoids unneeded scaling)
8668
8669 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8670
8671         * X11DesktopColors.cs: One gtk_init_check should be enough
8672
8673 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
8674
8675         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
8676           match MS behaviour
8677
8678 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8679
8680         * TextBoxBase.cs: 
8681           - Generate OnTextChanged for Backspace even if we're only deleting
8682             the current selection
8683           - When setting the Text property, only select all text if the
8684             control does not have focus when it is being set. Otherwise
8685             just place the cursor at the beginning of the control
8686
8687 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8688
8689         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
8690           Added a little helper to draw PropertyGrid ToolBar with a different
8691           border and a different BackColor.
8692         * PropertyGrid.cs: Some background parts didn't get painted with the
8693           correct background color. Added a class that helps us to draw the
8694           correct border for PropertyGridView and a class that helps us to
8695           draw ToolBars with a different backcolor
8696         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
8697
8698 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
8699
8700         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
8701         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
8702
8703 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8704
8705         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
8706           into the palette entries. Also, since we're working on a copy
8707           we needed to copy the palette back onto the bitmap.
8708         * Cursor.cs: Same fix as XplatUIWin32.cs.
8709
8710 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
8711
8712         * ImageListStreamer.cs: Need to read the var (or we're off)
8713
8714 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8715
8716         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
8717           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
8718           TextBoxBase.cs: Unused var fixes
8719         * AxHost.cs: Small 2.0 fix
8720         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
8721           as it seems that is what at least Metacity expects. This will make
8722           icons show up on 64bit platforms. We still have some 64bit size
8723           issues, though, since the startup app window size still won't match.
8724
8725 2006-04-25  Mike Kestner  <mkestner@novell.com>
8726
8727         * *.cs: cleanup newly reported exception var unused warnings.
8728
8729 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8730
8731         * ThemeWin32Classic.cs: Button image alignment now matches exactly
8732           ms
8733
8734 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8735
8736         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
8737           image. The image position is always the same, no matter if the
8738           button is pressed or not.
8739
8740 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8741
8742         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
8743           selection and set the correct filename for SaveFileDialog.
8744           Patch by Emery Conrad.
8745
8746 2006-04-24  Mike Kestner  <mkestner@novell.com>
8747
8748         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
8749         check for item.X outside the ClientRect instead of item.Y. Fixes
8750         #78151.
8751
8752 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8753
8754         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
8755         trust that value blindly and do some sanity check. Fixes bug #77814.
8756
8757 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8758
8759         * ImageListStreamer.cs: save the mask as a 1bpp image.
8760
8761 2006-04-21  Mike Kestner  <mkestner@novell.com>
8762
8763         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
8764         pass Checked and Indeterminate to the Theme Engine. Improve
8765         encapsulation with ListBox.
8766         * ListBox.cs: Keep a StringFormat instead of calculating it every item
8767         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
8768         nested types.  Move all CheckState functionality to CheckedListBox.
8769         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
8770         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
8771         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
8772         single base list. Fix scrollbar sizing and placement to mirror MS.
8773         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
8774         used.
8775         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
8776         for CheckedListBox by using new DrawItemState info.  Center the
8777         checkboxes on the items. Use new StringFormat property.
8778
8779 2006-04-18  Jackson Harper  <jackson@ximian.com>
8780
8781         * Form.cs: MdiChildren don't do default locations the same way as
8782         regular forms.  This prevents a crash when trying to position the
8783         mdi windows.
8784
8785 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
8786
8787         * PropertyGridTextBox.cs: Formatting, copyright
8788         * PropertiesTab.cs: Formatting
8789         * PropertyGrid.cs: Formatting
8790         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
8791           click toggling of values
8792           
8793 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
8794
8795         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
8796         * Control.cs (.ctor): verify_thread_handle is static, don't reset
8797           every time a control is created
8798         * Application.cs: Removed obsolete EnableRTLMirroring method
8799
8800 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
8801
8802         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
8803         SelectedIndex to -1. Fixes bug #78121.
8804
8805 2006-04-17  Jackson Harper  <jackson@ximian.com>
8806
8807         * Binding.cs: Handle null values for Current and BindingContext.
8808         This occurs when binding is a little delayed.
8809         * CurrencyManager.cs: return null for Current when there are no
8810         items in the list.
8811         - Hookup to the listchanged event on the DataView and update
8812         bindings when the list is changed.  This fixes late binding of
8813         controls.
8814
8815 2006-04-17  Jackson Harper  <jackson@ximian.com>
8816
8817         * X11Dnd.cs:
8818         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
8819         Ringenbach.
8820
8821 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
8822
8823         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
8824           place
8825         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
8826           with the correct ButtonState
8827
8828 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
8829
8830         * XplatUIX11.cs: Improved distinguishing between window types to
8831           tell the WM a type closer to what the app wants (Fixes #78107)
8832
8833 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8834
8835         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
8836           GrabHandle
8837
8838 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8839
8840         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
8841           drawing code to reflect the size grip changes
8842
8843 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8844
8845         * ImageListStreamer.cs: fix handling of the mask that follows the main
8846         bitmap when deserializing and serialize it properly. The generated mask
8847         should better be a 1bpp image, but I'll do that later.
8848
8849 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8850
8851         * FileDialog.cs: Show something in the DirComboBox on *nix if the
8852           path doesn't fit into some of our Current.Places
8853
8854 2006-04-13  Jackson Harper  <jackson@ximian.com>
8855
8856         * ComboBox.cs: Use borders instead of drawing our own decorations,
8857         try to obey correct rules for heights.
8858         * Theme.cs:
8859         * ThemeNice.cs:
8860         * ThemeClearLooks.cs:
8861         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
8862         this is now handled by borders.
8863         - Remove unused DrawListBoxDecorationSize method.
8864         
8865 2006-04-13  Mike Kestner  <mkestner@novell.com>
8866
8867         * MenuAPI.cs: null guarding for the disbled click check fixes crash
8868         reported by Alex.
8869
8870 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8871
8872         * ThemeWin32Classic.cs: 
8873           - Fixed CPDrawStringDisabled
8874           - Corrected drawing of disabled menu items
8875           - Fixed drawing of disabled radio buttons (bug #78095)
8876           - Draw check in a disabled CheckBox with color ControlDark 
8877
8878 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8879
8880         * Form.cs: Use the provided width when calculating the menu size;
8881           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
8882           and ClientSize.Width won't be updated yet
8883         * Application.cs: Use Visible instead of Show() to make form visible,
8884           this way we create the handle later and menusize is considered
8885
8886 2006-04-12  Mike Kestner  <mkestner@novell.com>
8887
8888         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
8889         reporting.
8890
8891 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8892
8893         * TextBox.cs: Implemented context menu
8894
8895 2006-04-12  Mike Kestner  <mkestner@novell.com>
8896
8897         * ListView.cs: implement box selection. fixes #77838.
8898         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
8899
8900 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8901
8902         * XplatUIX11.cs: Added setting of window type when transient window
8903           is created (metacity would move it otherwise)
8904         * X11Structs.cs: Added WINDOW_TYPE atoms
8905         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
8906           background (the control is Opaque but still wants transparent
8907           backgrounds)
8908
8909 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8910
8911         * Control.cs: Added OnPaintBackgroundInternal to allow controls
8912           that set Opaque but don't mean it (like all ButtonBase-derived
8913           controls) to still draw their background
8914         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
8915           the background
8916
8917 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8918
8919         * Control.cs (PaintControlBackground): Set the graphics object
8920           on our PaintEvent to null to prevent it from being disposed
8921           when the PaintEvent gets disposed
8922
8923 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
8924
8925         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
8926         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
8927
8928 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8929
8930         * Control.cs: 
8931           - Added transparency check to BackColor property. Transparent
8932             backgrounds are only allowed if the control styles permit it
8933           - Added recursive painting of parent control background and
8934             foreground if a control with a transparent backcolor is drawn
8935             (Thanks to Tim Ringenback for providing his 'hack' as a base
8936              for this patch) Fixes #77985 and #78026.
8937           - Added Opaque style check before calling OnPaintBackground, no
8938             need to draw the background if the control is opaque
8939           - Removed ControlAccessibleObject owner variable (inherited from
8940             base, no need to define again)
8941           - Added some documentation links explaining the drawing events
8942             and styles
8943
8944 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8945
8946         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
8947           that the affected control is the located at the left border of our
8948           parent (Fixes #77936)
8949
8950 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8951
8952         * TextBoxBase.cs: When rendering disabled or readonly controls,
8953           draw the background with 'Control' instead of 'Window' color as
8954           long as the user hasn't specifically set a color
8955
8956 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8957
8958         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
8959           since that won't be updated if the user types text (only if it's
8960           programatically set)
8961
8962 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8963
8964         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
8965           layout changes do to app-triggered resizes will have the proper
8966           display rectangle for layout
8967
8968 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
8969
8970         * ThemeWin32Classic.cs:
8971           - Make use of the SystemBrushes and SystemPens wherever possible
8972           - Corrected some highlight colors
8973           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
8974             drawing
8975         * Theme.cs: Added Empty field to CPColor struct
8976
8977 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8978
8979         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
8980           is displayed when calculating the display rectangle. Thanks to Mike
8981           for teaching me the err of my ways.
8982
8983 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
8984
8985         * ScrollableControl.cs:
8986           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
8987             (instead of 0,0) and we now return the real width/height instead of
8988             just the clientrectangle, adjusted for padding. The rectangle is
8989             now cached and created by the new CalculateDisplayRectangle method.
8990           - Created new CalculateDisplayRectange method, which basically does
8991             what get_DisplayRectangle() did originally, but now using the 
8992             right edge instead of DisplayRectangle to determine the size of
8993             our scrollbars
8994           - get_Canvas(): Fixed it to properly calculate canvas for 
8995             right/bottom controls which seem to be placed to the right/bottom
8996             of any controls that have a fixed location
8997           - Removed TODO that's taken care of
8998           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
8999             and SetDisplayRectLocation according to new MSDN2 docs
9000           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
9001             event when that is called, this is added for compatibility
9002           - ScrollControlIntoView(): Implemented.
9003           - Switched scrollbars to be implicit, they shouldn't be selectable
9004         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
9005           call it when the active control is set/changed
9006         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
9007         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
9008           implicit_control variable (used for native Win32 message generation)
9009         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
9010           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
9011         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
9012         * XplatUIStructs.cs: Added ScrollBarCommands enum
9013
9014 2006-04-10  Jackson Harper  <jackson@ximian.com>
9015
9016         * ButtonBase.cs:
9017         * CheckedListBox.cs:
9018         * ComboBox.cs:
9019         * DataGrid.cs:
9020         * DataGridView.cs:
9021         * Form.cs:
9022         * GroupBox.cs:
9023         * ListBox.cs:
9024         * PrintPreviewControl.cs:
9025         * ProgressBar.cs:
9026         * PropertyGrid.cs:
9027         * Splitter.cs:
9028         * StatusBar.cs:
9029         * TrackBar.cs:
9030         * UpDownBase.cs: Fixup base event overrides.
9031         
9032 2006-04-06  Mike Kestner  <mkestner@novell.com>
9033
9034         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
9035         all user-initiated value changes to min <= value <= max-thumbsz+1.
9036         (set_Value): check for vert/horiz when calculating new thumb position.
9037         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
9038         like MS does.
9039         (OnMouseMoveSB): refactor the thumb dragging code and refine
9040         invalidation logic to reduce flicker.
9041         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
9042         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
9043         (UpdateThumbPosition): small code readability cleanup
9044
9045 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
9046
9047         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
9048           different
9049
9050 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9051
9052         * ThemeNice.cs: Use a better graphics effect when a button is pressed
9053
9054 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9055
9056         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
9057         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
9058           This dramatically reduces the number of Pen.Dispose calls. 
9059           Where possible call ResPool methods only once instead of calling it
9060           over and over again (for example for the same color).
9061
9062 2006-04-06  Mike Kestner  <mkestner@novell.com>
9063
9064         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
9065         Also remove an unused private field on the collection. Fixes #77972.
9066
9067 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9068
9069         * ThemeNice.cs: Added ToolBar drawing code
9070
9071 2006-04-06  Mike Kestner  <mkestner@novell.com>
9072
9073         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
9074         I'm assuming that means we need to look up the toplevel for the
9075         provided control. Fixes the crash trace in #77911 but exposes another
9076         crash in some strange reflection usage in NDocGui.
9077
9078 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9079
9080         * ThemeNice.cs: Gave it a little silver touch and added Images
9081           method
9082         * FontDialog.cs: FontDialog is not resizable
9083         * FileDialg.cs: Added SizeGripStyle.Show
9084
9085 2006-04-05  Jackson Harper  <jackson@ximian.com>
9086
9087         * KeyboardLayouts.cs: Remove warning.
9088
9089 2006-04-05  Jackson Harper  <jackson@ximian.com>
9090
9091         * Control.cs: Enable OnPaintInternal so we can use it for drawing
9092         all of our controls instead of Paint +=.
9093         * ListBox.cs:
9094         * ListView.cs:
9095         * MenuAPI.cs:
9096         * MessageBox.cs:
9097         * NotifyIcon.cs:
9098         * ProgressBar.cs:
9099         * ScrollBar.cs:
9100         * Splitter.cs:
9101         * StatusBar.cs:
9102         * TabControl.cs:
9103         * TextBoxBase.cs:
9104         * ToolBar.cs:
9105         * TrackBar.cs:
9106         * UpDownBase.cs:
9107         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
9108         use OnPaintInternal. Remove Width/Height and Visible checks in
9109         paint handler, this is done at a higher level now.
9110         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
9111         * PaintEventArgs.cs: Add a handled flag so controls that don't
9112         want anymore painting after OnPaintInternal can make sure OnPaint
9113         isn't called.
9114
9115 2006-04-05  Mike Kestner  <mkestner@novell.com>
9116
9117         * Form.cs: fix the menu WndProc hacks to respect the native enabled
9118         state of the form, so that we don't process events when Modal dialogs
9119         are up. Fixes #77922.
9120
9121 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
9122
9123         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
9124           checking is done.
9125
9126 2006-04-05  Mike Kestner  <mkestner@novell.com>
9127
9128         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
9129
9130 2006-04-05  Mike Kestner  <mkestner@novell.com>
9131
9132         * ListView.cs (HeaderMouseMove): null guarding for the over column
9133         when setting up the drag_to_index.  Fixes #78015.
9134
9135 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
9136
9137         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
9138           in the taskbar. Transient windows seem to accomplish that.
9139
9140 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
9141
9142         * Form.cs:
9143           - Re-enabled CreateParams.X/Y code for FormStartPosition
9144           - Added code for manual placement when creating the Control
9145           - Incomplete patch to treat MDI forms differently when
9146             setting the ClientSizeCore. (Still need to figure out handling
9147             x/y coords there)
9148         * XplatUIX11.cs:
9149           - When we're explicitly setting the X/Y position of a non-Child
9150             window, let the WM know. Metacity really wants this.
9151
9152 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9153
9154         * ThemeNice.cs: Added CPDrawButton
9155
9156 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9157
9158         * ThemeNice.cs: Changed the color for focused buttons and activated
9159           the arrows for small scroll buttons.
9160
9161 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9162
9163         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
9164           anymore. Changed some method modifiers to protected (virtual)
9165         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
9166           changes
9167         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
9168           Updated drawing of menus, buttons and progressbars; added
9169           CPDrawBorder3D 
9170
9171 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9172
9173         * ImageListStreamer.cs: implemented serialization/deserialization
9174         of the images.
9175
9176 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
9177
9178         * ThemeWin32Classic.cs:
9179           - Removed all the DrawFrameControl stuff; CPDrawButton,
9180             CPDrawCheckBox and CPDrawRadioButton are now handled directly
9181             inside the methods
9182           - Updated and corrected the drawing code of CPDrawButton,
9183             CPDrawCheckBox and CPDrawRadioButton to better match ms
9184           - Updated theme checkbox and radiobutton code to use the CP*
9185             methods
9186
9187 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9188
9189         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
9190           bug is fixed
9191
9192 2006-03-31  Jackson Harper  <jackson@ximian.com>
9193
9194         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
9195         sometimes.
9196         * UpDownBase.cs: Don't CreateGraphics manually, use a
9197         Refresh. Ideally we would invalidate the correct areas here.
9198
9199 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9200
9201         * XplatUIX11.cs: 
9202           - We now track the mapping state of windows. If a window (or 
9203             one of it's parents) is not mapped we no longer permit
9204             WM_PAINT messages to be generated since we'd otherwise get 
9205             lots of BadMatch X errors. Jackson did all the work figuring
9206             out the problem.
9207           - Destroying the caret if the window it's contained in is 
9208             destroyed. Can't use regular DestroyCaret method since it
9209             might fall into a drawing function (trying to remove the
9210             caret) and with that generate new BadMatch errors. Again,
9211             Jackson tracked this down.
9212           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
9213             make sure we send the messages to all windows. (The old code
9214             would send the WM_DESTROY to the window, and then all child
9215             windows would be 'gone' because the WM_DESTROY handle lookup
9216             would no longer find the destroyed window)
9217         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
9218         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
9219
9220 2006-03-31  Jackson Harper  <jackson@ximian.com>
9221
9222         * ScrollableControl.cs: Dont recalc if we are not visible.
9223
9224 2006-03-31  Mike Kestner  <mkestner@novell.com>
9225
9226         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
9227         the visibility branch.
9228
9229 2006-03-31  Jackson Harper  <jackson@ximian.com>
9230
9231         * ScrollBar.cs: Cap values when incrementing/decrementing.
9232
9233 2006-03-31  Mike Kestner  <mkestner@novell.com>
9234
9235         * MenuAPI.cs: setup menu.tracker for popup/context menus.
9236         * ToolTip.cs: guard against timer expirations with no active control.
9237         Not sure why it happened.
9238
9239 2006-03-31  Mike Kestner  <mkestner@novell.com>
9240
9241         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
9242         text.
9243         * ToolTip.cs: Position the tooltip based on where the cursor is at
9244         popup time, not at MouseEnter time.  Add a Down state so that we don't
9245         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
9246         positioning offset. Lookup DisplaySize at positioning time, since it
9247         can theoretically change during invocation.
9248         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
9249         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
9250
9251 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9252
9253         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
9254           Fixes behaviour when the Text property of the box is String.Empty
9255
9256 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
9257
9258         * XplatUIX11.cs: Only send mouseleave for our client windows, not
9259           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
9260           a window)
9261
9262 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9263
9264         * FileDialog.cs: Visual enhancement for the popup buttons in 
9265           PopupButtonPanel
9266
9267 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9268
9269         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
9270           code
9271
9272 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
9273
9274         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
9275           highlighted menu items to match ms
9276
9277 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
9278
9279         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
9280
9281 2006-03-30  Mike Kestner  <mkestner@novell.com>
9282
9283         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
9284         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
9285         go active to account for HotLight to Selected transition.
9286         * MenuItem.cs: add internal Selected prop. Fill out the Status
9287         property by calculating it from item info. Add HotLight,
9288         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
9289
9290 2006-03-30  Mike Kestner  <mkestner@novell.com>
9291
9292         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
9293
9294 2006-03-29  Jackson Harper  <jackson@ximian.com>
9295
9296         * Form.cs: Implement TODO.
9297
9298 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
9299
9300         * PrintPreviewDialog.cs: Implemented missing methods and events; still
9301           missing proper dialog setup in the constructor
9302
9303 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
9304
9305         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
9306         * Control.cs:
9307           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
9308           - Fixed ResetBindings and removed TODO
9309           - Added check for cross-thread calls to get_Handle()
9310           - Added Marshaller attribute for set_Font to satisfy class status
9311         * FontDialog.cs: Removed TODOs that seemed implemented
9312         * UpDownBase.cs: Removed unneeded TODO and Fixme
9313         * MessageBox.cs: Implemented support for Default button and removed TODO
9314         * FileDialog.cs: Removed obsolete TODO
9315         * DomainUpDown.cs: Removed obsolete TODO
9316         * ButtonBase.cs: Removed obsolete TODO
9317         * XplatUIWin32.cs: Removed obsolete TODO
9318         * Form.cs:
9319           - Removed obsolete TODO
9320           - Calling CheckAcceptButton when the acceptbutton is changed to allow
9321             internal status updates
9322           - Making sure the active control is selected when the control is created
9323         * CurrencyManager.cs: Removed obsolete TODO
9324
9325 2006-03-29  Mike Kestner  <mkestner@novell.com>
9326
9327         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
9328         of PrintPreviewDialog and RichTextBox.
9329
9330 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9331
9332         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
9333           DarkDark, Light and LightLight colors for a specific color
9334         * ThemeWin32Classic.cs:
9335           - Use Button drawing code to draw RadioButtons and CheckBoxes with
9336             Appearance = Button 
9337           - Make use of the new ResPool helper CPColor
9338           - Draw ProgressBar and StatusBar with correct 3D borders
9339
9340 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9341
9342         * ColorDialog.cs: Return selected color. Fixes bug #77940.
9343
9344 2006-03-28  Mike Kestner  <mkestner@novell.com>
9345
9346         * ListView.cs: fix Icon layout to plan for scrollbar widths when
9347         calculating col/row counts.
9348
9349 2006-03-28  Mike Kestner  <mkestner@novell.com>
9350
9351         * ColumnHeader.cs:
9352         * ListView.cs:
9353         * ListViewItem.cs:
9354         * Menu.cs: 
9355         switch to explicit interface method implementation for some methods
9356         corcompare identifies as inconsistent with MS.
9357
9358 2006-03-28  Mike Kestner  <mkestner@novell.com>
9359
9360         * MainMenu.cs: 
9361         * Menu.cs:
9362         add a few missing methods from the class status output.
9363
9364 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
9365
9366         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
9367           correct.
9368
9369 2006-03-28  Mike Kestner  <mkestner@novell.com>
9370
9371         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
9372
9373 2006-03-27  Mike Kestner  <mkestner@novell.com>
9374
9375         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
9376         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
9377
9378 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
9379
9380         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
9381
9382 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9383
9384         * ThemeWin32Classic.cs:
9385           - GroupBox: Inserted a little gap between the text and the lines
9386             on the right side
9387           - Made the code in CPDrawBorder3D more readable
9388           - Corrected the drawing location of the up and down arrows in 
9389             CPDrawScrollButton
9390
9391 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9392
9393         * ControlPaint.cs: Corrected line widths in DrawBorder for
9394           ButtonBorderStyle Inset and Outset
9395
9396 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9397
9398         * ThemeWin32Classic.cs:
9399           - Rewrote the totally broken CPDrawBorder3D method. That was
9400             one of the main problems for the terrific ThemeWin32Classic
9401             look
9402           - Updated and corrected Button drawing
9403           - Correct the dimensions of the SizeGrip to match ms ones
9404           - Removed a small drawing glitch in DrawComboBoxEditDecorations
9405         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
9406           Border3DStyle.Sunken to match ms.
9407
9408 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9409
9410         * ThemeWin32Classic.cs: First small part of the "de-uglify
9411           ThemeWin32Classic" effort, SizeGrip
9412
9413 2006-03-24  Jackson Harper  <jackson@ximian.com>
9414
9415         * XplatUIX11.cs: Give a max idle time of one second, this matches
9416         MS and forces an Idle event every second when there are no other
9417         events in the queue.
9418
9419 2006-03-24  Mike Kestner  <mkestner@novell.com>
9420
9421         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
9422         * ListView.Item.cs: fix layout issues with null image lists and images
9423         smaller than checkbox size.
9424         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
9425         mode like MS does.  It's weird, but consistent.  ;-)
9426         Fixes #77890.
9427
9428 2006-03-24  Mike Kestner  <mkestner@novell.com>
9429
9430         * ListView.cs: Scroll wheel support for the item control.  Fixes
9431         #77839.
9432
9433 2006-03-23  Jackson Harper  <jackson@ximian.com>
9434
9435         * ScrollableControl.cs: Special case negative sized areas, not
9436         zero.
9437         * MonthCalendar.cs: Save the rect of the clicked date so we can
9438         use it for invalidation.
9439         - Try to cut down on the number of invalidates
9440         - Invalidate the rect the mouse is over and was over when moving
9441         the mouse, so we get the focus box following the cursor.
9442
9443 2006-03-23  Mike Kestner  <mkestner@novell.com>
9444
9445         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
9446         focus rectangle drawing. Fixes #77835.
9447
9448 2006-03-23  Mike Kestner  <mkestner@novell.com>
9449
9450         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
9451         the if and else if and reverting back to the original == check on the
9452         None conditional.
9453
9454 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9455
9456         * FontDialog.cs: Update the example panel if the selected index of
9457           the fontListBox changes.
9458
9459 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9460
9461         * FileDialog.cs: Make FileDialog remember which directory it was in
9462           last in the same execution.
9463
9464 2006-03-22  Mike Kestner  <mkestner@novell.com>
9465
9466         * FileDialog.cs: make the DropDownMenu on the toolbar display
9467         RadioChecks since they are mutually exclusive and that's what MS does.
9468
9469 2006-03-22  Mike Kestner  <mkestner@novell.com>
9470
9471         * Theme.cs: add Color param to CPDrawMenuGlyph.
9472         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
9473         checks and radio marks and arrows are visible on highlighted items.
9474         * ControlPaint.cs: update to use new Theme signature.
9475
9476 2006-03-22  Mike Kestner  <mkestner@novell.com>
9477
9478         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
9479         is active. Fixes #77870.
9480
9481 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9482
9483         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
9484           to be focused/selected after startup
9485
9486 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9487
9488         * ColorDialog.cs: 
9489           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
9490             CustomColors and ShowHelp properties
9491           - Some internal rewrites to get better results when using the
9492             ColorMatrix
9493
9494 2006-03-22  Mike Kestner  <mkestner@novell.com>
9495
9496         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
9497         HoverSelection.  Fixes #77836.
9498
9499 2006-03-22  Mike Kestner  <mkestner@novell.com>
9500
9501         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
9502         ToggleButtons.  (De)Sensitize the Back button around a stack count of
9503         1, not 0.  Update ButtonSize based on a pixel count of the win32
9504         control.  Adjust the toolbar size/location for new button size.
9505
9506 2006-03-22  Jackson Harper  <jackson@ximian.com>
9507
9508         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
9509         true.
9510         * ScrollBar.cs: When doing increments and decrements we need to
9511         set the Value property so that ValueChanged gets raised. A
9512         possible optimization here would be to make an internal SetValue
9513         that doesn't invalidate immediately.
9514         * ToolTip.cs: Tooltips get added to their container (when
9515         supplied) so they get disposed when the container is disposed.
9516         - Don't create tooltips for String.Empty. This prevents all these
9517         little 2-3 pixel windows from showing up when running nunit-gui
9518         and driving me mad.
9519         * Form.cs: Don't set topmost when setting the owner if the handles
9520         haven't been created yet.  The topmost set will happen when the
9521         handles are created.
9522
9523 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
9524
9525         * XplatUIX11.cs:
9526           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
9527           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
9528             visible (to allow them to recalculate their sizes)
9529
9530 2006-03-21  Mike Kestner  <mkestner@novell.com>
9531
9532         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
9533         methods. Removed a ton of redundant code.  Still not really happy with
9534         the border rendering, but I think that's mainly because of the
9535         ControlDarkDark being black instead of a dark grey. Depending on how 
9536         close we want to be, we might want to revisit those color choices.
9537         Among the new features added during the refactor were DropDownArrow
9538         pressed rendering, Disabled image rendering.  Proper flat appearance
9539         boundary rendering.  Removed the Divider and Wrapping dividers since I
9540         can't figure out any combination of themes and conditions to make the
9541         MS control draw a horizontal line on a toolbar despite what the
9542         Divider property docs indicate.
9543         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
9544         conditions and incorrect layout.  Updated to coding standard.
9545         * ToolBarButton.cs: refactored layout and positioning code from
9546         ToolBar to here.  Invalidate wherever possible instead of forcing
9547         redraws of the whole toolbar. 
9548         (Known remaining issues: explicit ButtonSize smaller than provided
9549         images.)
9550
9551 2006-03-21  Mike Kestner  <mkestner@novell.com>
9552
9553         * ContextMenu.cs (Show): use the position parameter instead of just
9554         showing at the MousePosition.
9555
9556 2006-03-21  Jackson Harper  <jackson@ximian.com>
9557
9558         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
9559         control handle this.
9560         * TreeNodeCollection.cs: If we are clearing the root node we need
9561         to reset top_node so calcs can still happen.
9562         * ThemeWin32Classic.cs: This is a Flags so we need to check
9563         properly.
9564         
9565 2006-03-21  Jackson Harper  <jackson@ximian.com>
9566
9567         * DataGrid.cs: Create columns when the binding context has been
9568         changed.
9569         * X11Structs.cs: Keysyms are uints.
9570         - Add size to fix build.
9571
9572 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
9573
9574         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9575           XplatUIOSX.cs: 
9576           - Added ResetMouseHover method to allow controls to retrigger
9577             hovering if they need it more than once
9578           - Implemented MouseHoverTime and MouseHoverSize properties
9579         * Timer.cs: Start() must reset the interval
9580         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
9581           properties
9582
9583 2006-03-21  Jackson Harper  <jackson@ximian.com>
9584
9585         * X11Keyboard.cs: improved layout detection. Move the nonchar
9586         tables into this file.
9587         * KeyboardLayouts.cs: Move the tables into resource files.
9588
9589 2006-03-21  Mike Kestner  <mkestner@novell.com>
9590
9591         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
9592
9593 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
9594
9595         * Mime.cs: Various speed optimizations. Looking up mime types
9596           is now 2 times faster than before
9597
9598 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
9599
9600         * CreateParams.cs: Added internal menu field
9601         * Control.cs: 
9602           - Switched call order for UpdateBounds; now we always call
9603             the one that also takes ClientSize, and we're calculating the 
9604             client size via driver method in the others. The previous
9605             method of tracking client size by difference wasn't working
9606             for forms where even the starting client size wouldn't match
9607             the overall form size (due to borders) (Part of fix for #77729)
9608           - CreateParams(): Do not use parent.Handle unless the handle is
9609             already created. Causes havoc with Nexxia and throws off our
9610             creation of controls
9611         * XplatUIX11.cs:
9612           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
9613           - Switched handling of ConfigureNotify over to new PerformNCCalc 
9614             method (consolidates code)
9615           - Changed RequestNCRecalc to use new PerformNCCalc method
9616           - Added calls to RequestNCRecalc when menus and borders are changed
9617             to allow app to set NC size. (Part of fix for #77729) This matches
9618             when MS send a WM_NCRECALC on Win32 windows.
9619           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
9620             (Part of fix for #77729). This matches what MS does, they also
9621             send that message when the form is made visible.
9622           - XException.GetMessage: Improved usability of X errors by including
9623             a translation of the window into Hwnd and Control class
9624           - Improved debug info for window creation, reparenting and destruction
9625           - Created helper method WindowIsMapped() [Currently not used]
9626         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
9627         * Form.cs:
9628           - CreateParams: Now setting our menu on the new internal menu field
9629           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
9630             avoid calculating the same property twice
9631         * Hwnd.cs:
9632           - Improved usability of ToString() for debugging purposes
9633           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
9634             determine the height of the menu, instead of just the font. This
9635             required to also create a graphics context and to keep a bmp 
9636             around (for performance reasons)
9637
9638 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
9639
9640         * MenuAPI.cs: Added OnMouseUp method
9641         * Form.cs:
9642           - Now remembering the requested client size, avoids size errors
9643           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
9644             instead of base if the menu is active. This is required due to
9645             control now capturing and releasing on down/up and it would
9646             prematurely release our menu capture
9647
9648 2006-03-17  Jackson Harper  <jackson@ximian.com>
9649
9650         * KeyboardLayouts.cs: Add the czech layouts.
9651
9652 2006-03-16  Jackson Harper  <jackson@ximian.com>
9653
9654         * Control.cs: Use the viewport space when sizing not the controls
9655         client size, so things like ScrollableControl that effect the
9656         viewport size (when scrollbars are added) are computed correctly.
9657         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
9658         of ManagerEntrys.
9659         - Handle creating BindingManagers for null data sources.
9660         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
9661         source, otherwise when rows are added they are added to the 'fake'
9662         datasource and we will crash when trying to set the position in
9663         those rows.
9664         - Use Implicit scrollbars on the datagrid so they arent
9665         selectable.
9666         
9667 2006-03-16  Jackson Harper  <jackson@ximian.com>
9668
9669         * Binding.cs:
9670         * InternalWindowManager.cs:
9671         * MdiWindowManager.cs:
9672         * X11Keyboard.cs: I really want Mike to love me again (fix
9673         compiler warnings).
9674
9675 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
9676
9677         * DataGrid.cs:
9678           - OnMouseDown: Switch to editing mode when clicking on the cell
9679                          even if we're clicking on the cell that's currently 
9680                          selected
9681           - ProcessGridKey: Left/Right now wrap like MS.Net does
9682           - ProcessGridKey: Tab now knows to add a new row when tab is
9683                             pressed in the cell of the last column of the 
9684                             last row
9685           - ProcessGridKey: Enter now adds another row  if pressed in the last
9686                             row and selectes the new row, same column cell
9687           - ProcessGridKey: Home/End navigate columns, not rows, like 
9688                             originally implemented
9689           - Broke ProcessKeyPreview code out into an extra Internal method
9690             so it can be called from the edit code
9691         * DataGridTextBox.cs (ProcessKeyMessage):
9692           - Switched to accept Tab keypresses
9693           - Added F2 handling to allow jumping to the end of the edited cell
9694           - Added logic to allow moving caret left/right inside edited cell
9695             and making the edited cell jump when the caret hits cell borders
9696           - Tab and Enter are now passed to the datagrid after being handled
9697         * TextBoxBase.cs:
9698           - Removed capture code now that Control handles it
9699           - set_SelectionStart now ensures caret is visible
9700
9701 2006-03-16  Jackson Harper  <jackson@ximian.com>
9702
9703         * TrackBar.cs: Debackwards the increment/decrement for handling
9704         mouse clicks on the bar with vertical trackbars.
9705         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
9706         bottom to match MS.
9707
9708 2006-03-16  Mike Kestner  <mkestner@novell.com>
9709
9710         * ListView.cs: make shift/ctrl keyboard and mouse selection 
9711         consistent with the MS control. Fix a bug in
9712         SelectedListViewItemCollection.Clear that was pissing me off for the
9713         better part of a day because the collection was being altered
9714         underneath us as we walked the list.
9715
9716 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
9717
9718         * Control.cs: Not sure how we could miss this so long, but it seems
9719           that MS.Net has Capture set all the way from before calling 
9720           OnMouseDown through sending the mouse events until after
9721           OnMouseUp. This will fix DataGrid's selection being set to end
9722           at the location of the MouseUp.
9723
9724 2006-03-15  Jackson Harper  <jackson@ximian.com>
9725
9726         * BindingContext.cs: Check the binding after its added so that it
9727           can initialize the binding managers and hookup to events.
9728         * Binding.cs: Data members seem to sometimes include rows/cols in
9729           the format Row.Column we now take this into account.
9730           - Hookup to the position changed event so we can update the
9731           control when the position has changed in the data set.
9732         * CurrencyManager.cs: Take into account the row/col naming
9733           convention when creating dataset tables.
9734         * BindingContext.cs: Using a newer better way of storing
9735           datasource/datamember pairs.  Hopefully this better matches MS for
9736           looking up binding managers.
9737
9738
9739 2006-03-15  Jackson Harper  <jackson@ximian.com>
9740
9741         * BindingContext.cs: The currency manager needs the data member
9742         name, if the member is a data set we use the name to find the
9743         correct table.
9744         * CurrencyManager.cs: When creating the list prefer an IList over
9745         an IListSource.
9746         - Attempt to create a DataTable from a DataSet (TODO: might need
9747         some better error checking here, although MS doesn't seem to have much)
9748         - If we have a DataTable create a view and use it as our list.
9749
9750 2006-03-15  Mike Kestner  <mkestner@novell.com>
9751
9752         * ListView.cs: keep a matrix of the icon mode layout to facilitate
9753         keyboard navigation. Support Up/Down/Left/Right selection correctly
9754         for all 4 View modes.
9755         * ListViewItem.cs: add internal row/col fields for icon layouts.
9756
9757 2006-03-15  Jackson Harper  <jackson@ximian.com>
9758
9759         * TabControl.cs: Redraw the tabs when we resize so their newly
9760         calculated sizes are drawn on screen.
9761         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
9762         composite characters.
9763         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
9764         - filter events so that composite characters can be created
9765         patches by peter
9766         * X11Structs.cs: Add XIMProperties enum.
9767
9768 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9769
9770         * Control.cs (BringToFront, SendToBack): Don't use window or handle
9771           unless it's created
9772
9773 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9774
9775         * Control.cs (PerformLayout): We don't need to consider visiblity
9776           for anchoring, only for docking. This fixes 'whacky' alignment
9777           in listbox and other controls that use implicit scrollbars after
9778           the previous PerformLayout patch
9779         * ListBox.cs: Switched to use implicit scrollbars
9780           
9781 2006-03-14  Mike Kestner  <mkestner@novell.com>
9782
9783         * ToolBar.cs: 
9784         * VScrollBar.cs:
9785         - chain up the "new event" overrides to base and use
9786         OnEvent to raise them.  Part of fix for bug #76509.
9787
9788 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
9789
9790         * FileDialog.cs: Do not select an item in the parent directory
9791           on backspace
9792
9793 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9794
9795         * Control.cs (PerformLayout): It would seem that we considered
9796           invisible windows for our layout. Not quite the right thing
9797           to do. Now we don't any longer, thereby fixing bug #76889.
9798
9799 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9800
9801         * Control.cs (CanFocus): I goofed. A control can have focus 
9802           even though it's not selectable. Made it match MS docs.
9803
9804 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9805
9806         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
9807           center by default (fixes #76895)
9808         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
9809           all uses of Border3DSides.All with the explicit ORd together
9810           Left|Right|Top|Bottom because I assume that nobody was aware 
9811           that All also implies a center fill. Most places I checked had
9812           a fill right above.
9813         * ProgressBarStyle.cs: Added
9814
9815 2006-03-13  Mike Kestner  <mkestner@novell.com>
9816
9817         * ListView.cs: fix breakage in drag shadow header positioning 
9818         from Peter's csc compilation fix.
9819
9820 2006-03-13  Mike Kestner  <mkestner@novell.com>
9821
9822         * ListView.cs: fix NRE produced by backspacing twice in a focused
9823         FileDialog.
9824
9825 2006-03-13  Mike Kestner  <mkestner@novell.com>
9826
9827         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
9828
9829 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9830
9831         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
9832           be changed
9833         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
9834           the allowed size before making programmatic size changes
9835
9836 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
9837
9838         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
9839           set, metacity is broken and will still use the emty sizes in 
9840           the struct. (Fix for #77089)
9841
9842 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9843
9844         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
9845           WindowExStyles and marked both enums as Flags
9846         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
9847           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
9848           to match WindowStyles split
9849         * XplatUIX11.cs:
9850           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
9851           - Updated to match WindowStyles split
9852         * XplatUIWin32.cs:
9853           - Fixed FosterParent creation, was using ExStyle on the Style field
9854             (This should help with Popup focus issues)
9855           - Updated to match WindowStyles split
9856
9857 2006-03-13  Jackson Harper  <jackson@ximian.com>
9858
9859         * MdiWindowManager.cs: Use the system menu height. Fixes some
9860         strange sizing issues.
9861
9862 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9863
9864         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
9865         * TextBoxBase.cs:
9866           - Scroll to caret after inserting text (#77672)
9867           - Make scroll range one pixel higher, fixes off-by-one error (and
9868             makes underlines visible on the last line)
9869
9870 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
9871
9872         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
9873           the keyboard state from being stuck with keys in 'pressed' state when
9874           focus is switched away via keyboard
9875         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
9876           reset the keyboard if no X11 KeyUp events are expected to come
9877         * X11Structs.cs: Switched type of Visible to bool to match driver
9878
9879 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9880
9881         * TextControl.cs:
9882           - Switched caret to be just 1 pixel wide, matches MS and looks less
9883             clunky
9884           - Moved caret display 1 pixel down from the top of the control
9885             to improve view
9886           - InsertCharAtCharet: Update the selection start if moving the caret
9887             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
9888           - No longer always creating the caret when the caret methods are
9889             called. Only the actual ShowCaret/HideCaret will do that now
9890           - Only setting caret visible if the owner control has focus
9891           - UpdateView: Added invalidation-shortcut logic for center and right 
9892             aligned text. Previously we'd update all according to the left
9893             logic which caused drawing errors. Also fixed height of invalidated
9894             areas, now properly invalidating the whole area (was off-by-one)
9895           - owner_HandleCreated: Always generate the document when the
9896             handle is created; this ensures that 
9897         * TextBoxBase.cs:
9898           - Fixed situation where caret would disappear under the right
9899             window border, also improved scrolling behaviour on left-
9900             aligned textboxes
9901           - Fixed right-aligned textboxes to have a border to the
9902             right instead of the caret being under the right border
9903         * XplatUIX11.cs:
9904           - Switched from 'nested' to simple visible/not visible tracking 
9905             for caret (part of fix for #77671)
9906           - No longer passing through translated FocusIn/FocusOut messages
9907             since we were notifying too often and the wrong windows. Instead
9908             we just notify our focussed window of receiving or loosing focus
9909         * XplatUIWin32.cs: Switched from 'nested' show/hide 
9910           counting for caret to simple visible yes/no behaviour (part of 
9911           fix for #77671)
9912
9913 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9914
9915         * Mime.cs: Remove debug code...
9916
9917 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9918
9919         * MimeGenerated.cs: Removed
9920         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
9921           and subclasses) from /usr/(local/)share/mime and
9922           $HOME/.local/share/mime.
9923
9924 2006-03-10  Jackson Harper  <jackson@ximian.com>
9925
9926         * MdiWindowManager.cs: Recalc the NC area when a window is
9927         maximized/restored so that the menu area is drawn on forms that
9928         don't have a menu.
9929
9930 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9931
9932         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9933           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
9934           us to force a WM_NCCALCRESIZE message being sent. This is needed
9935           for MDI maximizing.
9936
9937 2006-03-10  Jackson Harper  <jackson@ximian.com>
9938
9939         * Form.cs: We need to use the ActiveMenu when calculating menu
9940         height.
9941         - Fix nullref when the window manager hasn't been created yet.
9942         * Control.cs: Fix nullref when we try to bring a control to the
9943         front that has no parent.
9944         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
9945         height.
9946         - Add a dummy item to the maximized menu so it always has the
9947         correct height. Otherwise when there are no menus we don't get our
9948         icon and buttons.
9949         
9950
9951 2006-03-10  Jackson Harper  <jackson@ximian.com>
9952
9953         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
9954         stuff.
9955         * Form.cs: Make the window_state internal so the window managers
9956         can track it.
9957         - When an MDI child is maximized let its window manager create the
9958         main menu (so it can add its icon).
9959         - Notify the window managers of state changes
9960         - Let the window manager paint its buttons and handle button
9961         clicks on the menu when it is maximized.
9962         * InternalWindowManager.cs: Move the prev_bounds into the mdi
9963         window manager, since tool windows don't use it, only mdi windows.
9964         - Tell the main form that we don't want it to handle NCPAINT
9965         itself to avoid extra painting.
9966         - Handle clicks on a maximized windows menu.
9967         - Handle window state changes
9968         - Handle minimize/maximize clicks correctly by setting the window state.
9969         * MdiWindowManager.cs: Add an icon menu that (the menu you get
9970         when clicking on the forms icon).
9971         - New method to create a forms maximized menu. This is its normal
9972         menu + an icon.
9973         - Handle window state changes.
9974         - Handle sizing of maximized windows.  Maximized windows are just
9975         drawn bigger then the parent visible area. All controls are still
9976         there, they are just outside the visible area (this matches windows).
9977         * MdiClient.cs: No scrollbars when a child window is maximized.
9978         - Let the children windows figure out how big they should be when
9979         sizing maximized windows.
9980         - Implement a version of ArrangeIconicWindows somewhat similar to
9981         Windows version.  There are some little differences, but I don't
9982         think any app will rely on the layout of minimized mdi windows.
9983
9984 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9985
9986         * Padding.cs: Several fixes to allow compiling with csc 2.0
9987
9988 2006-03-09  Jackson Harper  <jackson@ximian.com>
9989
9990         * Menu.cs:
9991         * MenuItem.cs: Cheap hack so we can add items to the list without
9992         the events being raised.  This allows adding mdi items during
9993         drawing. TODO: Should probably find a better time to add the items.
9994
9995 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9996
9997         * ThemeWin32Classic.cs:
9998           - CheckBox_DrawText: Added logic to not wrap if not enough space
9999             is available (Fix for bug #77727)
10000           - RadioButton_DrawText: Added logic not to wrap if not enough
10001             space is available (Fix for bug #77727). Also removed some
10002             duplicate code, DrawString always drawing the regular text
10003             before hitting the if statement.
10004
10005 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
10006
10007         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
10008
10009 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10010
10011         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
10012         * ContainerControl.cs: Partial implementation of some 2.0 scaling
10013           methods. Moved the new 2.0 properties into alphabetical order with
10014           other properties and added MonoTODO tags
10015
10016 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10017
10018         * AutoScaleMode.cs: Added. Fix build.
10019
10020 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10021
10022         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10023           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
10024           and was requiring premature handle creation for calls from above
10025         * Form.cs, Control.cs: Removed handle arguments from calls to
10026           CalculateClientRect()
10027
10028 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10029
10030         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
10031           drag_column.column_rect is MarshalByRef and can't be used that way
10032
10033 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10034
10035         * AxHost.cs: Added deserialization constructor for 
10036           AxHost+State (fixes 77743)
10037
10038 2006-03-09  Mike Kestner  <mkestner@novell.com>
10039
10040         * ListView.cs: 
10041         - Added column drag reordering for details view.
10042         - fixed behavior when mouse is dragged off column and
10043         AllowColumnReorder is false.
10044         * ColumnHeader.cs: clone the format too in Clone.
10045         * Theme.cs: add DrawListViewHeaderDragDetails method.
10046         * ThemeWin32Classic.cs:
10047         - impl new method for drawing drag column shadows and targets.
10048         - support column offset for details mode in DrawListViewItem.
10049
10050 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10051
10052         * TextControl.cs: Reset the char_count when the document is cleared
10053           (Fixes bug reported on mono-winforms mailing list)
10054
10055 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10056
10057         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
10058           of calling base we simply process the key ourselves, since both
10059           DefWindowProc and the handled method would set m.Result. 
10060           (Fixes #77732)
10061
10062 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10063
10064         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
10065           method also moves the window; instead implemented a copy of
10066           Control.ScaleCore (Part of fix for #77456)
10067         * TextBoxBase.cs: 
10068           - Created new CreateGraphicsInternal method to allow providing
10069             a graphics context when no handle is created without triggering
10070             handle creation. (Part of fix for #77456)
10071           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10072         * TextControl.cs: 
10073           - Switched Constructor to require TextBoxBase instead of Control (to
10074             allow uncast access to CreateGraphicsInternal)
10075           - Safeguarded use of owner.Handle property. No longer accessing it
10076             unless the handle is already created.
10077           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10078           - Now triggering a recalc when owning control becomes visible
10079         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
10080           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
10081           premature handle creation (Part of fix for #77456)
10082         * Control.cs:
10083           - We now only destroy our double-buffering buffers when the
10084             control is resized or disposed, but not when visibility
10085             changes. (The code even re-created them twice every time)
10086           - Now requiring a redraw of the buffer on visibility changes
10087             (fixes bug 77654 part 2)
10088           - Not passing OnParentVisibleChanged up unless the control
10089             is visible
10090           - CanFocus: Fixed to match MS documentation
10091           - Focus: Fixed to return actual focus state and to check if
10092             setting focus is legal before setting it
10093
10094 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
10095
10096         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
10097           when to draw focus rectangle by looking at parent focus and
10098           selected state instead. This fixes TabPages on Linux sometimes
10099           having none or multiple focus rectangles.
10100         * XplatUIX11.cs (SetFocus): 
10101           - Don't set the focus if the same window already has focus
10102           - Use SendMessage instead of PostMessage (like it's Win32
10103             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
10104             to match MS behaviour
10105         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
10106           are not selectable.
10107
10108 2006-03-07  Jackson Harper  <jackson@ximian.com>
10109
10110         * PictureBox.cs: Revert line I accidently committed last week.
10111
10112 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10113
10114         * Control.cs: 
10115           - Added new IsRecreating and ParentIsRecreating properties to
10116             allow testing if RecreateHandle has been called on ourselves
10117             or one of our parents
10118           - WndProc(WM_DESTROY): If our control handle is being recreated
10119             we immediately need to create the handle when receiving the
10120             destroy, that way our child windows find a valid parent handle
10121             when they themselves are being recreated upon WM_DESTROY receipt
10122             (fix for bug #77654 part 1)
10123         * XplatUIX11.cs:
10124           - DestroyWindow: WM_DESTROY must be sent to our own window before
10125             notifying any child windows. MS documents that child windows
10126             are still valid when WM_DESTROY is received. (Control now relies on
10127             this behaviour)
10128           - Added some fine-grain debug options
10129
10130 2006-03-06  Jackson Harper  <jackson@ximian.com>
10131
10132         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
10133         box and base calculations off this.
10134         * MdiChildContext.cs:
10135         * MdiWindowManager.cs: Don't need to ensure scrollbars here
10136         anymore.
10137         
10138 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
10139
10140         * Splitter.cs: In situations where the affected control is added
10141           to the parent's control list after the splitter, we would not
10142           populate affected. Now we try populating it on mousedown, if
10143           it's not already set, and force it to be re-set whenever our
10144           parent changes.
10145
10146 2006-03-03  Matt Hargett  <matt@use.net>
10147
10148         * Control.cs: implement Control.Padding
10149         * Padding.cs: -Padding.All returns -1 when constructing with the
10150         implicit default ctor
10151         -Padding.ToString() matches MS.NET
10152         * ContainerControl.cs: implement
10153         ContainerControl.AutoScaleDimensions
10154         * ListControl.cs: implement ListControl.FormattingEnabled
10155         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
10156         * ButtonBase.cs:
10157         * TabPage.cs: Implement UseVisualStyleBackColor.
10158         * PictureBox.cs: Implement PictureBox.InitialImage.
10159
10160 2006-03-03  Mike Kestner  <mkestner@novell.com>
10161
10162         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
10163         event declarations to proxy to base event.
10164         * ListViewItem.cs: update to use ItemControl.
10165         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
10166         * ThemeWin32Classic.cs: update to new ListView theme API and fix
10167         column header label rendering for 0 width columns.
10168
10169 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
10170
10171         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
10172           that causes the control to be created. Fixes #77476.
10173
10174 2006-03-02  Jackson Harper  <jackson@ximian.com>
10175
10176         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
10177         expose_pending.
10178
10179 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
10180
10181         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
10182           passed in for the EventArgs (fixes #77690)
10183
10184 2006-03-01  Jackson Harper  <jackson@ximian.com>
10185
10186         * ScrollBar.cs: Refresh afterbeing resized.
10187
10188 2006-02-28  Mike Kestner  <mkestner@novell.com>
10189
10190         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
10191         Clean up a tracker compile warning.
10192         * MenuItem.cs: add internal PerformPopup method.
10193         [Fixes #77457]
10194
10195 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10196
10197         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
10198           implicit expose) when the text is set to null
10199
10200 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
10201
10202         * RichTextBox.cs (FlushText): When newline is true, we always
10203           need to split the line, even if no text is on it and we may
10204           never eat newlines. (Fixes #77669)
10205
10206 2006-02-28  Mike Kestner  <mkestner@novell.com>
10207
10208         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
10209         and set Selected instead.
10210         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
10211         collections.
10212
10213 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10214
10215         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
10216
10217 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
10218
10219         * FontDialog.cs:
10220           - Got rid of the panel. All controls are now directly added to
10221             the dialog form
10222           - It is now possible to set a font with the Font property
10223           - MinSize and MaxSize property do now what they should
10224           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
10225           - Searching and selecting a font with the font textbox works now,
10226             the same applies to the style and size textbox
10227           - Draw the correct 3D border in the example panel
10228           - Fixed a little mem leak (unused fonts didn't get disposed)
10229           - Many other internal updates/rewrites...
10230           - Fix typo
10231
10232 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10233
10234         * TextControl.cs: 
10235           - InsertRTFFromStream: Added 'number of characters inserted' argument
10236           - set_SelectedRTF: Now using the number of characters to calculate
10237             the new location for the selection and cursor (x/y cannot be used
10238             due to potentially already wrapped text)
10239
10240 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
10241
10242         * TextControl.cs: Added property and implemented means to allow 
10243           disabling recalculation of a document (can be used to speed up
10244           multiple inserts and is needed to make RTF inserts predictable, see
10245           bug #77659)
10246         * RichTextBox.cs: Using the new NoRecalc property of Document to
10247           keep x/y insert locations predictable. Also makes it faster inserting
10248           large chunks of RTF
10249
10250 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10251
10252         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
10253           it's easier for a child control to handle the other messages without
10254           having to duplicate the special functionality
10255         * TextBoxBase.cs
10256           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
10257             code to handle processing the key ourselves, in order to get 
10258             access to the result of KeyEventArgs.Handled. We now only call 
10259             ProcessKey if they key hasn't been handled already. Fixes #77526.
10260           - set_Text: If null or empty string is given, just clear the 
10261             document. Fixes part of #77526
10262
10263 2006-02-27  Jackson Harper  <jackson@ximian.com>
10264
10265         * SizeGrip.cs: Paint the background color before painting the grip
10266         so things look right.
10267         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
10268
10269 2006-02-27  Mike Kestner  <mkestner@novell.com>
10270
10271         * ListView.cs:
10272           - Restructure layout and invalidation model to remove a ton of
10273           flicker from the control and speed up performance in general.
10274           - Add manual column resize, flickers like crazy, but I already have
10275           some ideas on how I'll fix that. (#76822)
10276           - Merge the three Icon-based views into a single layout method.
10277           - Move item selection interaction logic from the item since 
10278           interaction with the collections is more appropriate to the view.
10279           - Deselection on non-item clicks.
10280         * ListViewItem.cs:
10281           - Encapsulate most of the layout. Add some internal props to trigger
10282           layout.  Move to a model where Items invalidate themselves instead
10283           of just invalidating the whole control every time something changes.
10284           - Invalidate on Text/Caption changes.
10285           - switch to an offset based layout model to avoid having to absolute
10286           position every element on item moves.
10287           - correct checkbox layout to conform to MS layout.
10288         * ThemeWin32Classic.cs:
10289           - refactor some column header drawing code.
10290           - fix string justification for column headers (#76821)
10291           - make SmallIcon labels top justified for compat with MS impl.
10292         * ThemeClearlooks.cs:
10293           - adjust to new ListViewItem internal checkbox bounds api.
10294
10295 2006-02-27  Jackson Harper  <jackson@ximian.com>
10296
10297         * Control.cs:  Change where implicit controls fall in the zorder.
10298         They are now on top of all children.
10299         - Synced AddImplicit code with Add
10300         - Removed unused enumerator.
10301         * SizeGrip.cs: Remove the TODO as its been TODONE.
10302
10303 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
10304
10305         * TextControl.cs(Insert): Combine the last lines unless the insertion
10306           string ends with \n\n, otherwise we leave one line too many (Fixes
10307           something I noticed with the testapp for #77526; the bug itself was
10308           already fixed in the previous checkin)
10309
10310 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
10311
10312         * RichTextBox.cs:
10313           - SelectionColor and SelectionFont methods no longer set absolute
10314             styles. Instead, the keep font or color respectively (This 
10315             resolves a long-standing FIXME in the code)
10316           - When flushing RTF text, the insert code now considers text trailing
10317             behind the insertion point (Fixes the bug where when replacing
10318             the selected text via SelectedRTF the remainder of the line behind 
10319             the selection would stay on the first insertion line)
10320         * TextBoxBase.cs:
10321           - AppendText now updates the selection points after inserting text
10322           - AppendText now ensures that the last tag (sometimes 0-length) of
10323             the document is used for the style information (Fixes part of 
10324             bug #77220)
10325         * TextControl.cs:
10326           - Created new FontDefiniton class to allow describing partial style
10327             changes
10328           - StreamLine() now takes a lines argument, to allow it to decide
10329             whether an encountered zero-length tag is the last in the document
10330             (which must be kept to not loose the font/color contained in it,
10331             for later appends)
10332           - Created Combine() and Split() methods for Marker structs, to 
10333             support marker updates due to reformatted documents (soft line
10334             wraps)
10335           - Implemented Document.CaretTag setter
10336           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
10337             of the last line (Not the cause, but also exposed by bug #77220)
10338           - Added LineTag argument to InsertString method, to allow callers
10339             to force a certain tag to be used (required to force use of the
10340             trailing zero-length tag of a document)
10341           - Now updating markers in Combine(), to avoid stale tag markers
10342           - Added some method descriptions to aid maintenance
10343           - Implemented new FormatText concept, allowing additive/subtractive
10344             formatting by only specifying the components that are to be 
10345             changed. This was needed for resolving the RTB.SelectedColor/
10346             RTB.SelectedFont fixmes
10347           - Added Break() support method to allow breaking up linetags (used
10348             for partial formatting)
10349           - Added GenerateTextFormat() method. It is used for partial 
10350             formatting and allows to generate a full font/color from given
10351             attributes and an existing tag.
10352
10353 2006-02-26  Jackson Harper  <jackson@ximian.com>
10354
10355         * XplatUIX11.cs:  Use the correct caption height.
10356         - Translate hittest coordinates to screen coords to match MS.
10357         * XplatUIWin32.cs: When we create MDI windows we need to reset
10358         some of the style flags, so we get a nice blank window, and can
10359         draw all the decorations ourselves.
10360         - Set a clipping rectangle on the non client paint event, the
10361         window manager drawing code needs one.
10362         * Form.cs: The window manager needs to know when the window state
10363         has been updated.
10364         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
10365         don't need to factor in border and title sizes in these
10366         methods. TODO: Remove the args and fix the call points.
10367         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
10368         properly.
10369         - Let the driver set the cursors.
10370         - Improve active window handling
10371         - Correct sizes for title bars and buttons.
10372         - Match MS drawing better
10373         * MdiWindowManager.cs: We don't need to handle border style
10374         updates specially anymore.
10375         - Check for scrollbars when windows are done moving
10376         - Handle Active properly.
10377         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
10378         correctly. I am spewing the exception though, so we don't hide the
10379         bugs.
10380         
10381 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
10382
10383         * DataGridViewRowPostPaintEventArgs.cs,
10384           DataGridViewCellPaintingEventArgs.cs,
10385           DataGridViewRowCollection.cs,
10386           DataGridViewRowPrePaintEventArgs.cs,
10387           DataGridViewCell.cs: Clear a few warnings and implement a few
10388           exceptions that should be thrown.
10389
10390 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10391
10392         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
10393           'inheriting' our parent's (non-default) cursor. (Part of
10394            the fix for #77479)
10395
10396 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
10397
10398         * XplatUIX11.cs: Fixed cast to make csc happy
10399
10400 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10401
10402         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
10403           it's for the client area (part of fix for #77479 and needed
10404           for MDI window cursor handling)
10405         * XplatUIX11.cs
10406           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
10407             the appropriate default cursors and also passing the message
10408             up the parent chain 
10409           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
10410             for non-client areas
10411
10412 2006-02-15  Jackson Harper  <jackson@ximian.com>
10413
10414         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
10415         is a real MDI window
10416
10417 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
10418
10419         * X11DesktopColors.cs: Instead of checking the desktop session
10420           string for "KDE" check if it starts with "KDE"
10421
10422 2006-02-10  Jackson Harper  <jackson@ximian.com>
10423
10424         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
10425         systems).
10426
10427 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10428
10429         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
10430           errors
10431         * ColorDialog.cs:
10432           - Got rid of the panel. All controls are now directly added to
10433             the dialog form
10434           - Changed to mono coding style
10435
10436 2006-02-10  Jackson Harper  <jackson@ximian.com>
10437
10438         * InternalWindowManager.cs: We don't need the set visibility to
10439         false hack anymore now that peter has written beautiful shutdown
10440         code.
10441
10442 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
10443
10444         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
10445           where already explicitly destroyed
10446
10447 2006-02-10  Jackson Harper  <jackson@ximian.com>
10448
10449         * MdiClient.cs: Handle the case where windows are too high or to
10450         the left and we need scrollbars.
10451
10452 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10453
10454         * MimeIcon.cs: Added some icons
10455         * FileDialog.cs:
10456           - Fixed bug #77477
10457           - Got rid of the panel. All controls are now directly added to
10458             the dialog form
10459           - Changed to mono coding style
10460           - On Linux "My Computer" and "My Network" will now show some
10461             more usefull information. A new class, MasterMount, gathers
10462             this information from /proc/mount. Updated MWFFileView to make
10463             use of this information
10464           - Fixed a bug that caused FileDialog to crash when
10465             ".recently_used" file had a zero size
10466           - FilterIndex does now what it should
10467           - Some Refactoring
10468         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
10469             FileDialog changes
10470
10471 2006-02-09  Jackson Harper  <jackson@ximian.com>
10472
10473         * ComboBox.cs: Don't touch if null.
10474
10475 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
10476
10477         * Cursor.cs: 64bit safeness fix
10478         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
10479
10480 2006-02-09  Jackson Harper  <jackson@ximian.com>
10481
10482         * Form.cs: If a form is made into an MDI form update the styles so
10483         all the props can get set correctly.
10484         - Kill the mdi_container when we dont need it anymore.
10485         * InternalWindowManager.cs: Add missing NOT
10486
10487 2006-02-08  Jackson Harper  <jackson@ximian.com>
10488
10489         * InternalWindowManager.cs: Respek clipping when drawing MDi
10490         decorations.
10491
10492 2006-02-08  Jackson Harper  <jackson@ximian.com>
10493
10494         * Hwnd.cs: Add bits to track non client expose events.
10495         * XplatUIX11.cs: Track non client expose events on the hwnd. This
10496         gives us a proper invalid rect and will allow for some nice
10497         optimizations with NC client drawing
10498         - MDI windows are children windows, so move their style handling
10499         into the child window block.
10500         * InternalWindowManager.cs: Remove a state reset that was
10501         getting invoked at the wrong time. Fixes managed windows getting
10502         into a 'stuck' captured state.
10503
10504 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10505
10506         * TextControl.cs (Document.ctor): Now initializing 
10507           selection_anchor. Fixes #77493
10508
10509 2006-02-07  Jackson Harper  <jackson@ximian.com>
10510
10511         * TrackBar.cs: The increment/decrements were backwards.
10512
10513 2006-02-07  Mike Kestner  <mkestner@novell.com>
10514
10515         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
10516         to the instance itself.
10517
10518 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10519
10520         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
10521           on ulongs and pointers, the size differs between 32bit and 64bit
10522           systems. 
10523
10524 2006-02-07  Mike Kestner  <mkestner@novell.com>
10525
10526         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
10527         for 64 bit platforms to work around a metacity bug. 
10528
10529 2006-02-07  Jackson Harper  <jackson@ximian.com>
10530
10531         * TrackBar.cs: Process the input keys we need, and hookup to
10532         KeyDown instead of using WndProc, so we get key messages.
10533
10534 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
10535
10536         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
10537           machine we're on. 
10538         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
10539           we need to translate the XdndVersion atoms array before sending it
10540
10541 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
10542
10543         * XplatUIX11.cs: 
10544           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
10545             number of bits for the property, not the number of bytes. The
10546             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
10547             but would not crash since it specified 8 bits instead of 4 bits)
10548           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
10549             defined as XID -> long in the C headers)
10550           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
10551             references since those are now IntPtr to begin with
10552           - Switched all Atom.XXX 'int' casts to IntPtr casts
10553           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
10554           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
10555           - Added XChangeActivePointerGrab DllImport (for X11DnD)
10556         * X11Structs.cs:
10557           - Changed 'int' type for Atoms in XEvent structures to IntPtr
10558           - Changed atom in HoverStruct to be IntPtr
10559         * X11DnD.cs:
10560           - Removed local DllImports, switched code to use those from XplatUIX11
10561           - Removed/fixed casts related to the switch of Atom to be a IntPtr
10562
10563 2006-02-06  Mike Kestner  <mkestner@novell.com>
10564
10565         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
10566         method signatures in the import region.  There may still be some
10567         lingering struct marshaling issues, as I didn't drill down into those.
10568         Yet.
10569
10570 2006-02-06  Jackson Harper  <jackson@ximian.com>
10571
10572         * ComboBox.cs: Dont manually set the top_item, this is computed
10573         when the scrollbar position is set.
10574
10575 2006-02-06  Mike Kestner  <mkestner@novell.com>
10576
10577         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
10578         startup crashes on amd64.  There's other fixes needed.  All pinvoke
10579         usage of Atom needs to be mapped to IntPtr for example.  And there are
10580         likely other int/long issues to be addressed.
10581
10582 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
10583
10584         * FileDialog.cs: One more...
10585
10586 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10587
10588         * FileDialog.cs: Next try
10589
10590 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10591
10592         * FileDialog.cs: First part of fix for #77464
10593
10594 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10595
10596         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
10597           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
10598           AcceptButton border drawing.
10599
10600 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
10601
10602         * Form.cs: Moved positioning of form after auto scaling is applied,
10603           otherwise it would possibly use wrong form size.
10604
10605 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
10606
10607         * Control.cs (RecreateHandle): No need to re-create any child
10608           controls, the child windows will get destroyed automatically by
10609           the windowing system or driver, and re-created when the handle
10610           is being accessed the first time. Fixes #77456
10611         * Form.cs: No longer setting the form to closing if the handle is 
10612           being recreated. This seems like the right thing to do, don't
10613           have a bug or testcase for this, though.
10614
10615 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10616
10617         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
10618           controls to avoid unwanted side effects
10619
10620 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
10621
10622         * Control.cs: 
10623           - ScaleCore needs to scale the bounds, not the ClientSize of the 
10624             control. Fixes #77416.
10625           - DefaultSize is 0,0 for control
10626         * TextBoxBase.cs: 
10627           - DefaultSize is 100, 20
10628           - SetBoundsCore: Now enforcing the height, no matter if the provided
10629             height is more or less than the preferred one, as long as AutoSize
10630             is on
10631         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
10632
10633 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10634
10635         * Control.cs:
10636           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
10637             call unless both performLayout is true *and* we have a pending
10638             layout change
10639           - ResumeLayout: MS does not completely nest Suspend and Resume,
10640             they bottom out at 0, fixed our code to match that.
10641           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
10642             SetBoundsCore, we were updating even when we shouldn't. This fixes
10643             swf-anchors mis-anchoring when resizing the app fast and lots.
10644           - UpdateDistances: Now only setting the left and top distance if 
10645             we have a parent and are not suspended, this is based on
10646             a suggestion by Don Edvaldson in bug #77355.
10647           - OnVisibleChanged: Fixed logic when to create the control. We may
10648             not create the control if we have no parent or if it's not visible;
10649             switched to using Visible property instead of is_visible field 
10650             since the property also considers parent states. This fixes a bug
10651             when starting Paint.Net
10652
10653 2006-02-02  Jackson Harper  <jackson@ximian.com>
10654
10655         * Form.cs: If the forms handle hasn't been created yet don't call
10656         into xplatui to make it top most, just set the topmost flag on the
10657         form in CreateParams
10658         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
10659
10660 2006-02-01  Jackson Harper  <jackson@ximian.com>
10661
10662         * ScrollableControl.cs: Refactored the Recalculate method a
10663         little, this wasn't handling all the variants of bottom and right
10664         bars needed to be added and added/removed based on their
10665         counterparts being added/removed (which changes the drawable
10666         size). Also we special case client widths and heights of 0 and
10667         don't add the scrollbar for those.
10668
10669 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
10670
10671         * XplatUIX11.cs: 
10672           - Added method to get AbsoluteGeometry(); currently unused, but might
10673             be used in the future, if we try again to figure out toplevel
10674             coordinates with some more crappy window managers
10675           - Added FrameExtents() method to retrieve the WM set decoration size
10676           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
10677             to deal with at least KDE, FVWM and metacity (Fixes #77092)
10678         * Hwnd.cs: 
10679           - Added whacky_wm tracking var for metacity
10680           - Added logic to have default menu height if the actual menu height
10681             has not yet been calculated (part of fix for #77426)
10682         * Form.cs: Keep track whether client size has been set and re-set 
10683           it if a menu is added/removed afterwards (Fixes #77426)
10684
10685 2006-01-31  Jackson Harper  <jackson@ximian.com>
10686
10687         * Control.cs: When a new Site is set on the component attempt to
10688         pull the AmbientProperties from it.
10689
10690 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
10691
10692         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
10693           in the background of the owning form. Fixes #77332
10694
10695 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10696
10697         * MimeIcon.cs: Fix for #77409
10698
10699 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10700
10701         * XplatUIX11GTK.cs: Initial import
10702
10703 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
10704
10705         * FixedSizeTextBox: fixes class signature
10706
10707 2006-01-30  Jackson Harper  <jackson@ximian.com>
10708
10709         * FixedSizeTextBox.cs: New internal class that represents a
10710         textBox that will not be scaled.
10711         * TreeView.cs:
10712         * ComboBox.cs:
10713         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
10714         standard TextBox.
10715                 
10716 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
10717
10718         * XplatUIX11.cs: Retrieve default screen number instead of
10719           assuming 0. Attempted fix for #77318
10720
10721 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
10722
10723         * XplatUIWin32.cs: 
10724           - GetWindowPos: When a window is parented by FosterParent, use 
10725             the desktop instead of FosterParent as the base to get coordinates
10726           - CreateWindow: Don't make FosterParent the parent window for Popups
10727             if we don't want a taskbar entry, Popups automatically don't get one
10728         * Hwnd.cs: Need to call remove to actually remove the key from the
10729           hash table
10730
10731 2006-01-30  Mike Kestner  <mkestner@novell.com>
10732
10733         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
10734
10735 2006-01-30  Jackson Harper  <jackson@ximian.com>
10736
10737         * TreeView.cs:
10738         * TreeNode.cs: Raise events no matter how the treenode is
10739         checked. Patch by Don Edvalson.
10740
10741 2006-01-30  Jackson Harper  <jackson@ximian.com>
10742
10743         * TreeNode.cs: Signature fix.
10744
10745 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
10746
10747         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
10748
10749 2006-01-20  Mike Kestner  <mkestner@novell.com>
10750
10751         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
10752         event forwarding when menus are active.
10753         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
10754         Most of the patch is pdb's with a little rework.
10755
10756 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10757
10758         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
10759           Removed GetMenuDC and ReleaseMenuDC methods; replaced
10760           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
10761         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
10762         * InternalWindowManager.cs: Added use of PaintEventStart/End to
10763           handling of WM_NCPAINT message, now passing the PaintEventArgs to
10764           the PaintWindowDecorations method
10765         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
10766         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
10767         * MenuAPI.cs: Made tracker window invisible
10768         * XplatUIWin32.cs:
10769           - Removed GetMenuDC and ReleaseMenuDC methods
10770           - Implemented the client=false path for PaintEventStart and
10771             PaintEventEnd
10772
10773 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10774
10775         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
10776         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
10777           styles
10778         * Form.cs: 
10779           - MaximizeBox, MinimizeBox: Recreate the handle when setting
10780             the style
10781           - CreateParams: Reworked the styles to match MS look'n'feel,
10782             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
10783             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
10784
10785 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10786
10787         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
10788           window is not mapped, since otherwise every form that's being 
10789           created is considered minimized, which is wrong.
10790         * Form.cs: Catching the exception and returning our internal value
10791           instead
10792
10793 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10794
10795         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
10796           SetWindowMinMax() to have means to tell the driver about the minimum,
10797           maximum and maximized state window sizes. (Part of the fix for #76485)
10798         * Form.cs:
10799           - Implemented tracking of minimum and maximum window size, now calling
10800             new SetWindowMinMax() driver method to tell the driver (Part of the
10801             fix for #76485)
10802           - Finished handling of WM_GETMINMAXINFO method, now setting all values
10803             (Completes fix for #76485)
10804           - Calling new SetWindowMinMax driver method when the handle for a 
10805             form is created, to make sure the driver knows about it even if
10806             the values have been set before the window was created
10807           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
10808             to avoid messing up our anchoring calculations (partial fix
10809             for #77355)
10810         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
10811         * XplatUIX11.cs:
10812           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
10813           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
10814             (and presumably other freedesktop.org compliant WMs). Left the
10815             assumption unmapped=minimized, needed for SetVisible to work.
10816           - Now setting the window state when creating windows
10817           - Fixed SetVisible to consider/set the window state when mapping
10818             a Form. We cannot set the state before it's mapped, and we cannot
10819             use Form.WindowState once it's mapped (since it would ask the
10820             driver and get 'normal'. Therefore, we grab the state before
10821             mapping, map, and then set state.
10822           - Implmemented SetWindowMinMax method; Metacity does not seem to
10823             honor the ZoomHints, though.
10824         * XplatUIWin32.cs:
10825           - Removed MINMAXINFO (moved to XplatUIStructs)
10826           - Added SetWindowMinMax stub (on Win32 the only way to set that
10827             information is in response to the WM_GETMINMAXINFO message, which
10828             is handled in Form.cs)
10829           - Added logic to SetVisible to set the proper window state when a 
10830             form is made visible (fixes #75720)
10831
10832 2006-01-26  Jackson Harper  <jackson@ximian.com>
10833
10834         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
10835         same way we handle them with Invoke.
10836
10837 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
10838
10839         * Form.cs:
10840           - Added tracking of window state so CreateParams can return
10841             the appropriate style
10842           - Moved setting of WS_CAPTION style in CreateParams to allow
10843             styles without caption
10844         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
10845           control if the TextBox property is accessed. Fixes #77345
10846         * Control.cs:
10847           - get_Created: now uses is_disposed and is_created to determine
10848             return value (suggested by Jackson)
10849           - CreateHandle: No longer exits if the handle is being recreated
10850           - RecreateHandle: If the handle is not yet created call the 
10851             appropriate method to create either control or handle. If the
10852             control is already created CreateHandle will simply exit instead
10853             of just creating the handle
10854         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
10855           now SendMessage WM_DESTROY directly to the control when DestroyWindow
10856           is called.
10857         * XplatUIX11.cs: 
10858           - When DestroyWindow is called, instead of waiting for the 
10859             DestroyNotification from X11, we directly post it to the WndProc
10860             and immediately dispose the hwnd object.
10861             Same applies to DestroyChildWindows, and this obsoletes the
10862             expose_pending tracking. Contrary to Win32 behaviour we destroy our
10863             child windows before our own, to avoid X11 errors.
10864           - Removed the direct sending of WM_PAINT on UpdateWindow
10865         * XplatUIWin32.cs:
10866           - Reworked DoEvents and GetMessage to allow access to internal queue
10867             even when trying non-blocking access to the queue.  Fixes #77335. 
10868             Based on a patch suggestion by Don Edvalson. The new private
10869             GetMessage can now also be used as a backend for a PeekMessage
10870             frontend version.
10871         * XplatUI.cs: Improved debug output for CreateWindow
10872
10873 2006-01-25  Jackson Harper  <jackson@ximian.com>
10874
10875         * Help.cs: Allow param to be null. Patch by Don Edvalson.
10876
10877 2006-01-24  Jackson Harper  <jackson@ximian.com>
10878
10879         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
10880         when we have a MaxDropItems lower then the selected index.
10881
10882 2006-01-24  Jackson Harper  <jackson@ximian.com>
10883
10884         * Control.cs: Don't allow selection of non visible controls, allow
10885         selection of controls without parents.
10886
10887 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10888
10889         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
10890         * DataGridDrawingLogic.cs: Add editing row only when is necessary
10891
10892 2006-01-23  Jackson Harper  <jackson@ximian.com>
10893
10894         * UpDownBase.cs: Make the textbox handle all the selection and
10895         tabbing. This fixes tabing to updown controls.
10896
10897 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10898
10899         * TextBoxBase.cs: fixes exception thown the object was null
10900
10901 2006-01-23  Jackson Harper  <jackson@ximian.com>
10902
10903         * ButtonBase.cs: Just use the base CreateParams. They set
10904         visibility and enabled correctly.
10905         * ComboBox.cs:
10906         * TrackBar.cs:
10907         * MonthCalendar.cs: Lets let the base set as much of the
10908         createparams as possible so we don't have duplicate code all over
10909         the place.
10910
10911 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
10912
10913         * ThemeGtk.cs: Added TrackBar and some experimental code to
10914           get double buffering back
10915
10916 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
10917
10918         * DataGrid.cs: Allows row number set internally higher than the last
10919         when creating a new row. Restores the editing functionality.
10920
10921 2006-01-20  Mike Kestner  <mkestner@novell.com>
10922
10923         * MimeIcon.cs: delay Image creation until the icons are accessed
10924         instead of creating 190 scaled images on GnomeHandler startup.
10925
10926 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
10927
10928         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
10929           first call base before processing the event. Fixes #77279
10930
10931 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
10932
10933         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
10934           that the stride for the GDI bitmap would match the stride of
10935           a DIB or a Cursor.
10936
10937 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
10938
10939         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
10940
10941 2006-01-19  Jackson Harper  <jackson@ximian.com>
10942
10943         * ComboBox.cs: Hookup the text controls keydown event so we get
10944         those when the text control has the focus.
10945
10946 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10947
10948         * Label.cs: Now using the base events instead of defining new ones;
10949           this allows us to just call the base properties without having to
10950           duplicate all base property logic 
10951
10952 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10953
10954         * Label.cs: A label by default is not a tabstop (Fixes one of our
10955           failing nunit tests)
10956
10957 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10958
10959         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
10960         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
10961
10962 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10963
10964         * Cursor.cs: Reimplemented creating cursor bitmaps without using
10965           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
10966           This fixes #77218
10967         * XplatUIWin32.cs: 
10968           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
10969             constructor creates images that can't be saved. Part of the fix
10970             for #76103
10971           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
10972           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
10973             bug fix for handling window state in forms properly)
10974
10975 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10976
10977         * ThemeGtk.cs: Simplify ScrollBar drawing
10978
10979 2006-01-18  Jackson Harper  <jackson@ximian.com>
10980
10981         * Splitter.cs: Set the default dock style for the splitter control
10982         in the constructor.
10983
10984 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10985
10986         * ThemeGtk.cs: Corrected StateType and ShadowType for
10987           gtk_paint_box
10988
10989 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10990
10991         * Control.cs: Make use of Theme.DoubleBufferingSupported
10992         * ThemeGtk.cs:
10993           - Added drawing for flat style buttons
10994           - Added ScrollBar drawing
10995
10996 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10997
10998         * ThemeClearlooks.cs: Removed some unneeded code.
10999         * ThemeGtk.cs: First part of ThemeGtk enhancements.
11000
11001 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11002
11003         * LinkLabel.cs: We need to update the hover drawing when
11004           leaving the control as well.
11005
11006 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
11007
11008         * DataGrid.cs: Clicking on non empty areas in the columns
11009            area was giving an exception
11010
11011 2006-01-17  Jackson Harper  <jackson@ximian.com>
11012
11013         * ThemeWin32Classic.cs:
11014         * ListView.cs: Do not draw/clip the headers when the header style
11015         is None.
11016
11017 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11018
11019         * DataGrid.cs: Fixes 77260
11020         
11021 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11022
11023         * DataGrid.cs: Clicking on a column on a empty grid was giving
11024           an exception
11025
11026 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11027
11028         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
11029           or any keypress will crash the grid.
11030
11031 2006-01-17  Mike Kestner  <mkestner@novell.com>
11032
11033         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
11034         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
11035         invisible/previously-visible items.
11036         [Fixes #76909]
11037
11038 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
11039
11040         * ThemeClearlooks.cs:
11041         - Added CL_Draw_Button method; now other theme controls that are 
11042           not derived from button or do not have a button can draw buttons
11043           too
11044         - Updated ComboBox drawing
11045         - Beautified RadioButton drawing
11046         - Corrected drawing of bottom and left tabs
11047         - Beautified DateTimePicker and MonthCalendar
11048         - Added CPDrawButton and CPDrawRadioButton
11049
11050 2006-01-16  Jackson Harper  <jackson@ximian.com>
11051
11052         * ComboBox.cs: Set the initial value of the scrollbar to the
11053         current index. Reduce the numbers of refreshs and IndexOfs called.
11054
11055 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
11056
11057         * FileDialog.cs: When the file listview is focused hitting the
11058           backspace key moves the fileview to the parent directory
11059
11060 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11061
11062         * Form.cs: 
11063           - Added RecreateHandle call when changing taskbar visibility to 
11064             trigger reparenting in Win32 driver (Fixes #75719)
11065           - If a window has minimize or maximize buttons, it cannot have
11066             a help button
11067         * XplatUIWin32.cs:
11068           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
11069             the toplevel form with FosterParent (A toolwindow not on the
11070             taskbar) (Fixes #75719)
11071           - Made FosterParent a toolwindow
11072
11073 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11074
11075         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
11076
11077 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11078
11079         * ToolTip.cs: If SetToolTip is called from a control and the mouse
11080           is currently over that control, make sure that tooltip_window.Text
11081           gets updated
11082
11083 2006-01-13  Mike Kestner  <mkestner@novell.com>
11084
11085         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
11086
11087 2006-01-13  Jackson Harper  <jackson@ximian.com>
11088
11089         * TreeView.cs: On MS GetNodeAt never actually factors in the X
11090         value passed.  Also redraw the selected node when we recieve
11091         focus, so tabbing between trees works correctly.
11092
11093 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11094
11095         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
11096           ~/.gconf/%gconf-tree.xml, so use
11097           .gconf/desktop/gnome/interface/%gconf.xml
11098
11099 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11100
11101         * TextControl.cs: Draw text in gray if control is disabled
11102
11103 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11104
11105         * TreeView.cs: Draw the focus rectangle outside the highlight, to
11106           make sure it's always visible. Fixes #76680.
11107
11108 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11109
11110         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
11111
11112 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
11113
11114         * PageSetupDialog.cs: Added.
11115         * PrintDialog.cs: Attributes.
11116         * PrintPreviewControl.cs: Updates.
11117         * PrintPreviewDialog.cs: Updates.
11118         
11119 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11120
11121         * Control.cs: Undid my selection check fix, since it's not needed
11122         * TextBoxBase.cs:
11123           - Now considering the presence of hscroll/vscroll when sizing
11124             vscroll/hscroll respectively. Fixed bug #77077
11125           - Added Left/Up/Down/Right to IsInputKey list to prevent
11126             ContainerControl from stealing them. This fixes what I broke
11127             with my last checkin.
11128
11129 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
11130
11131         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
11132           I finally understand how the property can be set without a setter :-)
11133
11134 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11135
11136         * Application.cs:
11137           - Switched RunLoop to use static Message.Create to create a 
11138             Message object
11139           - Added PreProcessMessage call in runloop for keyboard events; this
11140             is part of the fix for #77219, I overlooked this originally in the
11141             MSDN doc for PreProcessMessage
11142         * Control.cs:
11143           - Removed call to PreProcessMessage from handling of keyboard 
11144             messages; it's supposed to be done in the message pump
11145           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
11146             per MSDN documentation.
11147           - IsInputChar: All chars are input chars by default; removed the 
11148             parent calling chain, MS does not document that
11149           - PreProcessMessage: If IsInputChar is true, we want to return false
11150             to allow dispatching of the message
11151           - When selecting the next control, now also check that we're not
11152             selecting ourselves again and therefore return a false positive.
11153         * TextBoxBase.cs:
11154           - Tried to match return values for IsInputKey and ProcessDialogKey
11155             to what MS returns; moved processing of our special keys outside
11156             ProcessDialogKey since MS does not seem to return true on those.
11157           - Moved code that previously was in ProcessDialogKey into new private
11158             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
11159           - Reworked handling of WM_CHAR to not have to duplicate code from
11160             Control.cs anymore, instead we simply call down to base.
11161            
11162 2006-01-12  Jackson Harper  <jackson@ximian.com>
11163
11164         * ComboBox.cs: We always need to refresh the text area when
11165         EndUpdate is called. Fixes the combobox in the file dialog.
11166         * Control.cs: Don't create the creator_thread until the controls
11167         handle is created.  Also in InvokeRequired we check if the
11168         creator_thread is null. This gives the effect of InvokeRequired
11169         returning true if the controls handle is not created yet, and
11170         matches MS.
11171
11172 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11173
11174         * XplatUI.cs:
11175           - Added StartLoop() driver method. This is used to allow drivers to
11176             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
11177             loop for a particular thread
11178           - Added EndLoop() driver method. This is called once the message
11179             pump for the thread is shut down
11180           - Added SupportsTransparency method to allow the driver to indicate
11181             opacity support for windows
11182         * Form.cs:
11183           - Removed TODO attribute, completed AllowTransparency property
11184           - Added documented logic to Opacity
11185         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
11186           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
11187           versions of CompatibleTextRendering
11188         * X11Structs.cs: Added opacity atom to our atom enumeration
11189         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
11190           of a form might be set before it's reparented by the WM, and we need
11191           the opacity value without calling up to Form)
11192         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
11193           SupportsTransparency() driver methods
11194         * Application.cs: Now calling StartLoop and EndLoop driver methods
11195         * XplatUIX11.cs:
11196           - Added opacity atom registration
11197           - Added StartLoop()/EndLoop() methods. They're empty right now but
11198             will need to get implemented when we switch to a per-thread queue
11199           - Implemented SupportsTransparency() method
11200           - Implemented SetWindowTransparency() method
11201           - Added support for setting the opacity value when a window is
11202             reparented (since the opacity needs to be set on the WM frame)
11203         * XplatUIOSX.cs, XplatUIWin32.cs:
11204           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
11205
11206 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11207
11208         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
11209
11210 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11211
11212         * FileDialog.cs: Added ToolTip for MWFFileView
11213         * MimeIcon.cs: Rewrote GnomeHandler.
11214           - Get currently used gnome icon theme from
11215             ($HOME)/.gconf/%gconf-tree.xml
11216           - Make use of inherited icon themes
11217           - Support SVG icon themes like Tango via librsvg
11218
11219 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11220
11221         Revert's Jackson's revert which broke 2.0 builds.   Fix both
11222         builds. 
11223         
11224         * Application.cs: Move the use_compatible_text_rendering outside
11225         the NET_2_0 define.  If we ever need to use the
11226         use_compatible_text_rendering on the individual controls they will
11227         access the variable from the common shared code paths.
11228
11229 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11230
11231         * XplatUI.cs:
11232           - Added more granular debug options
11233           - Added method to print both window text and id
11234           - Switched debug output to use new Window() debug method
11235           - Added IsEnabled() driver method
11236           - Added EnableWindow() driver method
11237         * Form.cs:
11238           - Removed end_modal; no longer needed, new loop handles termination
11239             via 'closing' variable
11240           - If form is modal, setting DialogResult will now initiate loop
11241             termination via 'closing' variable
11242           - Added support for is_enabled/WS_DISABLED to CreateParams
11243           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
11244             does all the work
11245           - Removed code that's now in RunLoop from ShowDialog()
11246           - Added various documented sanity checks to ShowDialog()
11247           - Added handling of WM_DESTROY message; we set 'closing' on getting
11248             the message to indicate the message pump to terminate
11249           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
11250             send by the Application.ExitThread method. (We send the message
11251             to destroy the window after all other events have been
11252             processed through the queue, instead of destroying the handle 
11253             directly)
11254           - Moved code from Close() method to WM_CLOSE handler; added logic
11255             to only send close-related events if the form is not displayed
11256             modal
11257         * Splitter.cs (..ctor): Fixed typo in resource name
11258         * Control.cs:
11259           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
11260             brush now
11261           - set_Cursor: Now only setting calling into XplatUI if the handle for
11262             the control is already created; this avoids implict handle creation
11263             or crashes if it's not created
11264           - set_Enabled: Now setting the enabled state via the new driver method
11265             instead of just tracking it
11266           - CreateParams: Added logic to set WS_DISABLED based on enabled state
11267           - CreateControl: Reordered event firing and method calls to more
11268             closely fire events in the order MS does. Now setting the
11269             enabled state in the driver when creating the control.
11270           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
11271             match MS order
11272         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
11273           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
11274         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
11275         * Hwnd.cs:
11276           - Added tracking of window enabled state (get_Enabled/set_Enabled)
11277           - Added EnabledHwnd property to easily allow a driver to find the
11278             handle of the first enabled window in the parent chain (this is
11279             used by drivers to pass up input events of disabled windows)
11280         * XplatUIDriver.cs: Added IsEnabled() method
11281         * Application.cs:
11282           - Removed crude and obsolete exiting tracking variable
11283           - Removed internal ModalRun(); replaced by RunLoop()
11284           - Implemented private CloseForms() method to allow closing all 
11285             windows owned by a particular (or all) threads
11286           - Exit() now properly closes all windows without forcing the message
11287             pump to quit
11288           - Removed obsolete InternalExit() method
11289           - Changed Run() methods to use new RunLoop() message pump
11290           - Implemented new RunLoop() method for both modal and non-modal forms
11291         * CommonDialog.cs:
11292           - get_CreateParams: Added setting of WS_DISABLED
11293           - Simplified ShowDialog(); now all the work is done in RunLoop(),
11294             invoked via Form.ShowDialog()
11295         * NativeWindow.cs: We don't remove the window from the collection when
11296           the handle is destroyed; there might still be messages for it in the
11297           queue (mainly the resulting WM_DESTROY); instead it will be removed
11298           when Control calls InvalidateHandle in the WM_DESTROY handler
11299         * XplatUIX11.cs:
11300           - CreateWindow: Added logic to handle the WS_DISABLED window style
11301           - EnableWindow: Implemented based on Hwnd.Enabled
11302           - GetMessage: Reset PostQuitState so the method can be called again
11303           - Implemented support for disabled windows (passing messages to the
11304             first enabled parent) in handling all input messages
11305           - Added optimizations for handling Expose events
11306           - Implemeted new driver method IsEnabled()
11307           - Now always resetting paint pending tracking vars when we start paint
11308           - Re-implemented UpdateWindow via just sending a WM_PAINT message
11309         * XplatUIOSX.cs: Added IsEnabled method stub
11310         * XplatUIWin32.cs: Implemented new IsEnabled() method
11311
11312 2006-01-11  Jackson Harper  <jackson@ximian.com>
11313
11314         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11315         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
11316         variables a little.
11317         * ColorDialog.cs: Clear out the old form before adding the new
11318         panel.  
11319
11320 2006-01-11  Jackson Harper  <jackson@ximian.com>
11321
11322         * X11Dnd.cs: Make sure to add all the text formats when adding
11323         strings to the data object.
11324         * TreeNodeCollection.cs: When adding to a sorted tree we need to
11325         do some redrawing too.  Also change the UpdateNode to an
11326         UpdateBelow so the newly added node gets painted.
11327         
11328 2006-01-11  Miguel de Icaza  <miguel@novell.com>
11329
11330         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11331         LinkLabel.cs, PropertyGrid.cs: Implement the
11332         UseCompatibleTextRendering property for 2.x
11333
11334         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
11335
11336 2006-01-11  Jackson Harper  <jackson@ximian.com>
11337
11338         * TreeView.cs: Use the property for setting the selected node so
11339         the correct events get raised.
11340         * TreeNode.cs: Update the tree when the fore/back colours of a
11341         node are set.
11342
11343 2006-01-10  Jackson Harper  <jackson@ximian.com>
11344
11345         * TreeView.cs: Allow setting SelectedNode to null.
11346
11347 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11348
11349         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
11350
11351 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11352
11353         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
11354
11355 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11356
11357         * PrintDialog.cs: Added attributes and set default property values.
11358
11359 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11360
11361         * PrintControllerWithStatusDialog.cs: 
11362         Added PrintControllerWithStatusDialog.
11363
11364 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11365
11366         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11367         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
11368
11369 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11370
11371         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
11372
11373 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11374
11375         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
11376         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
11377
11378 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11379
11380         * MimeIcon.cs: Added internal class SVGUtil.
11381
11382 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11383
11384         * FileDialog.cs: Don't crash if there are two files with the
11385           same name but different locations.
11386
11387 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
11388
11389         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
11390         dates across multiple month grids. Used to not highlight entire 
11391         month, but does now.
11392         
11393 2006-01-06  Jackson Harper  <jackson@ximian.com>
11394
11395         * MonthCalendar.cs: Removed DoEvents call to prevent a running
11396         message loop. Change timer intervals to numbers that seem more
11397         natural.
11398
11399 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
11400
11401         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
11402           object for location info since screen object is now implemented.
11403
11404 2006-01-05  Jackson Harper  <jackson@ximian.com>
11405
11406         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
11407         * AsyncMethodResult.cs: We no longer use a WeakReference for the
11408         AsyncMethodResult, this is because we ALWAYS want the
11409         ManualResetEvent to get set.
11410         * Control.cs: When disposing use an async invoke to call shutdown
11411         code, so that thigns don't block on the finalizer thread.  Also
11412         check if we even have a message loop before trying to send
11413         messages, if we don't then don't bother sending messages.
11414         - No more weak references for async methods
11415         * XplatUIDriver.cs: No more weak references for async methods.
11416
11417 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11418
11419         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
11420           returns two FontFamily with the same name
11421
11422 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11423
11424         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
11425           drawing disabled text. Instead using the ColorGrayText color
11426
11427 2006-01-04  Jackson Harper  <jackson@ximian.com>
11428
11429         * TreeNode.cs: redraw the node when its image index is changed.
11430
11431 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11432
11433         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
11434           time I checked there are no others like it.
11435
11436 2006-01-04  Jackson Harper  <jackson@ximian.com>
11437
11438         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
11439         this gives the behavoir I was looking for.
11440         * Control.cs: Special case Invoking EventHandlers, this matches MS
11441         and fixes part of bug #76326.
11442
11443 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11444
11445         * ThemeClearlooks.cs, FileDialog.cs:
11446           - Reflect the latest Theme class changes
11447           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
11448             with DateTime
11449             
11450 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11451
11452         * Theme.cs: Cache UI resource images and resize them if needed
11453
11454 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11455
11456         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
11457           is called. This fixes the crash in Nexxia when setting the font
11458           attributes in the chat. [However, RTF needs a look-over to make sure
11459           that all SelectionXXX methods handle the special case that selection
11460           is empty and therefore the change must be applied to all text starting
11461           at the cursor/selection start]
11462
11463 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
11464
11465         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11466           XplatUIOSX.cs: Added SendMessage and PostMessage methods
11467         * X11Keyboard.cs: Switched to new way of calling PostMessage
11468
11469 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11470
11471         * Theme.cs: Added theme interface for images to allow the theme to
11472           control what images are used for things like FileDialog, MessageBox
11473           icons, etc.
11474         * MessageBox.cs: Now uses the new Theme icon/image interfaces
11475
11476 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
11477
11478         * FileDialog.cs:
11479           - Removed some dead code
11480           - Opening a recently used file does work now
11481           - Small UI enhancements
11482           - Refactoring
11483
11484 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11485
11486         * FileDialog.cs: Forgot too add __MonoCS__
11487
11488 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11489
11490         * FileDialog.cs: We are able to read recently used files now let's
11491           go on and write them.
11492
11493 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
11494
11495         * FileDialog.cs: Breathe some life into "last open"/"recently used"
11496           button
11497         * MimeIcon.cs: Do a check for the top level media type also
11498
11499 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11500
11501         * ThemeClearlooks.cs:
11502           - Added CPDrawStringDisabled
11503           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
11504             some chars if the text doesn't fit into text_rect
11505           - DrawListViewItem: If View = View.LargeIcon center the image;
11506             rewrote the drawing of ListViewItem.Text if View = 
11507             View.LargeIcon
11508
11509 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11510
11511         * MimeIcon.cs: Use default KDE icon theme if there is no
11512           "48x48" directory for the current icon theme, fixes #77114
11513         * Mime.cs: Disable not working and actually not used code. 
11514         * ThemeWin32Classic.cs:
11515           - Replace "new SolidBrush" in GetControlBackBrush and
11516             GetControlForeBrush with ResPool.GetSolidBrush
11517           - Changed DrawListViewItem from private to protected virtual
11518         * FileDialog.cs:
11519           - Added form.MaximizeBox = true
11520           - Don't throw an exception if there is a broken symbolic link
11521
11522 2005-12-23  Jackson Harper  <jackson@ximian.com>
11523
11524         * TabControl.cs: Give the panels focus, keyboard navigation is
11525         fixed so this works correctly now.
11526         - We need these key events also.
11527         * ToolBar.cs: Remove some of the poor mans double buffering.
11528         
11529 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
11530
11531         * ComboBox.cs: The internal TextBox now returns the focus.
11532
11533 2005-12-23  Jackson Harper  <jackson@ximian.com>
11534
11535         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
11536
11537 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11538
11539         * Control.cs: Removed debug code
11540         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
11541           implicit children
11542
11543 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
11544
11545         * Control.cs: When creating the control, update the Z-order after
11546           all it's children are created, too. (Fixes nexxia not showing
11547           picturebox bug)
11548
11549 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11550
11551         * Control.cs: Do not update the anchoring distances if layout is
11552           suspended, instead do it once layout is resumed
11553
11554 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
11555
11556         * Control.cs: 
11557           - After many hours of debugging, for both Jackson and
11558             myself, it turns out that it helps to set the parent of a control
11559             if you want to actually see it onscreen. In the spirit of that
11560             discovery, we're now setting the parent of the control and
11561             it's children when the control's handle is created. This fix
11562             will make Lutz Roeder's Reflector run happily. 
11563           - now just creating the handle instead of the whole control when
11564             getting a graphics context for the control.
11565
11566 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11567
11568         * ScrollableControl.cs: When calculating the canvas, don't consider
11569           the scrollbar widths. Instead, predict if horizontal scrollbar
11570           will affect canvas when deciding on vertical display and vice versa.
11571
11572 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11573
11574         * RichTextBox.cs: Set default RTF font for documents that don't
11575           have a font table (Fixes #77076)
11576
11577 2005-12-22  Jackson Harper  <jackson@ximian.com>
11578
11579         * TextBoxBase.cs: It's difficult to do, but you can have an empty
11580         clipboard. This prevents a NullRef in that case.
11581         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
11582         clipboard. PRIMARY is for the currently selected text only. (We
11583         should implement PRIMARY at some point.
11584
11585 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11586
11587         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
11588           a Unicode function with a structure that was defined in Ansi way.
11589           This fixes #76942.
11590
11591 2005-12-21  Jackson Harper  <jackson@ximian.com>
11592
11593         * StatusBar.cs: Statusbar handles its fore/back colours on it's
11594         on. Because thats how it rolls. (and this avoids it using ambient
11595         colours).
11596         * ThemeWin32Classic.cs: Use the proper back color for filling.
11597         * Menu.cs: Use the system menu bar color for drawing menu
11598         bars. Using the window back color will bring ambient colours into
11599         the picture.
11600
11601 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
11602
11603         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
11604           Bitmaps were created and not disposed.
11605
11606 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11607
11608         * Control.cs (CreateControl): Don't do anything if the control is
11609           already created, otherwise we'd fire the OnCreated event more than
11610           once
11611
11612 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11613
11614         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
11615           will always match. Instead return -1. Fixes #76464.
11616
11617 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11618
11619         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
11620           neither the beginning nor the end of the line (Fixes bug #76479)
11621
11622 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11623
11624         * Control.cs:
11625           - ControlNativeWindow.ControlFromHandle(): Now handling situation
11626             where handle is invalid
11627           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
11628             instead of slower linear search
11629         * NativeWindow.cs: Don't remove the window from the hashtable until
11630           after the driver has destroyed it (since the driver might use
11631           Control.FromHandle to lookup the control object
11632         * Hwnd.cs: Added DestroyPending property to track if a window is 
11633           already destroyed as far as the driver is concerned and only hasn't
11634           yet notified the control
11635         * XplatUIX11.cs:
11636           - Activate(): Check if the window is still valid before using the 
11637             handle
11638           - Implemented DestroyChildWindow() method to mark child windows as
11639             destroyed when a window is destroyed. This prevents situations 
11640             where we might call an X method based on queued events for a
11641             window that already has been destroyed but we haven't yet pulled
11642             the destroy method from the queue.
11643           - Added a call to the new DestroyChildWindow() method to the drivers
11644             DestroyWindow code. Also now marking the destroyed window itself
11645             as pending
11646
11647 2005-12-20  Jackson Harper  <jackson@ximian.com>
11648
11649         * StatusBar.cs:
11650         * StatusBarPanel.cs: Don't calculate panel sizes on draw
11651         anymore. Just do them when needed, also track the rects of panels
11652         so that we can optimize refreshing more in the future.
11653
11654 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
11655
11656         * ColorDialog.cs: Fixed focus drawing in small color controls
11657
11658 2005-12-19  Jackson Harper  <jackson@ximian.com>
11659
11660         * InternalWindowManager.cs:
11661         * MdiWindowManager.cs: Cleanup some coordinate system changes so
11662         moving windows works properly.
11663
11664 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
11665
11666         * Control.cs: 
11667           - Removed call to InitLayout() from SetBoundsCore(); doc says
11668             it's only called when a control is added to a container
11669           - Split InitLayout logic, moved to separate UpdateDistances() method
11670             since we need to perform those calculations more often than just
11671             when adding the control to a container. (Needed to fix #77022)
11672           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
11673           - Reduced the OnBindingContextChanged events count, don't send them
11674             unless the control is created, we still aren't totally matching
11675             MS, but I can't quite figure out some of their rules
11676
11677 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11678
11679         * ThemeClearlooks.cs: Corrected distance between ProgressBar
11680           stripes
11681
11682 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11683
11684         * ThemeClearlooks.cs:
11685           - Updated ProgressBar drawing
11686           - Corrected drawing of ScrollBars and scroll buttons
11687           - Some temporary fixes for minor pixel artefacts
11688
11689 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
11690
11691         * Control.cs:
11692           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
11693             cause events to be sent in the same order as MS does.
11694           - Added ChangeParent() method to trigger various OnXXXChanged events
11695             that need to be fired when a parent changes (This is a reworking
11696             of the patch from r54254, with the X11 errors fixed)
11697           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
11698             since on MS we get OnLayoutChanged events when calling Clear()
11699           - Changed Enabled property to consider parent state as well, if a
11700             parent is not enabled, the control will not be either
11701           - Changed Parent property to simply call Controls.Add() since that
11702             now does all the work required, this way we avoid code duplication
11703           - Threw in a few OnBindingsContextChanged calls to try and match
11704             when MS sends them. We seem to send a few too many, though.
11705           - Added call to CreateControl when adding the control to a parent.
11706             We were never calling CreateControl. Still needs some work, in
11707             some places we treat HandleCreated and ControlCreated as equal, 
11708             which is wrong
11709           - Removed obsolete commented out code from UpdateZOrder()
11710
11711 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11712
11713         * ThemeClearlooks.cs: Updated TrackBar drawing.
11714
11715 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11716
11717         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
11718
11719 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11720
11721         * FileDialog.cs: Add the Help button and the open readonly
11722           checkbox only if needed
11723
11724 2005-12-16  Jackson Harper  <jackson@ximian.com>
11725
11726         * Control.cs: Make sure we have an active menu before trying to
11727         process commands on it. Prevents menu-less forms from crashing
11728         when Alt is pressed.
11729         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
11730         Dieter Bremes.
11731         * RichTextBox.cs: Expand statement to help out gmcs and fix the
11732         2.0 build.
11733
11734 2005-12-16  Jackson Harper  <jackson@ximian.com>
11735
11736         * InternalWindowManager.cs: Don't translate tool windows screen
11737         coordinates. This fixes windows 'bouncing' around when being moved.
11738
11739 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11740
11741         * TextBoxBase.cs:
11742           - MaxLength now treats 2^31-1 equal to unlimited length (this is
11743             not quite MS compatible, MS uses that number only for single line
11744             and 2^32-1 for multi-line, but I figure it won't hurt keeping
11745             the limit at 2GB)
11746           - Now enforcing the MaxLength limit when entering characters
11747           - Added argument to internal Paste() method to track if it's called
11748             from programatically or via keyboard, since keyboard driven pastes
11749             need to enforce max-length
11750           - Added logic to Paste to only paste as many chars as MaxLength 
11751             allows
11752         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
11753         * TextControl.cs:
11754           - Added Length property to return number of characters in document
11755           - Added private CharCount property which only tracks actual chars
11756             in the document (no linefeeds) and fires event when CharCount
11757             changes
11758           - Added tracking of character count to all methods that alter it
11759           - Added LengthChanged event to allow applications to subscribe
11760             to any changes to the document
11761
11762 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11763
11764         * TextBox.cs: 
11765           - Removed local password_char field (moved to TextBoxBase)
11766           - Now setting the document's password var when password is
11767             set
11768         * TextBoxBase.cs:
11769           - Added password_char field (needed here so MultiLine can
11770             access it)
11771           - Added logic to MultiLine property setter to set the document's
11772             variable when password display is allowed
11773           - Removed debug code and made some debug code conditional
11774         * TextControl.cs:
11775           - Added RecalculatePasswordLine() method to handle special password
11776             char only lines
11777           - Added PasswordChar property, also added related tracking vars
11778           - Draw() method now uses local text var for grabbing text to draw,
11779             this var is set to line.text unless we're doing password display,
11780             then it is set to the pre-generated all-password-chars line
11781           - Added calling RecalculatePasswordLine() method for password lines
11782
11783 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11784
11785         * Hwnd.cs: 
11786           - Added Reparented property to allow tracking of Window Manager
11787             reparenting actions (which affect X/Y calculations of toplevel 
11788             windows)
11789           - Made ToString() print window handles in hex
11790         * XplatUIX11.cs:
11791           - AddConfigureNotify(): Now uses reparented state off Hwnd to
11792             determine if X/Y needs offsetting
11793           - AddConfigureNotify(): Fixed offset calculations
11794           - Now adds ReparentNotify messages into the queue
11795           - Now processes ReparentNotify messages and causes a 
11796             WM_WINDOWPOSCHANGED message to be sent upstream if a window
11797             is reparented (as most likely it's X/Y coordinates are changed
11798             due to that)
11799
11800 2005-12-14  Jackson Harper  <jackson@ximian.com>
11801
11802         * XplatUIX11.cs: Tool windows still need to respek focus.
11803
11804 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11805
11806         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
11807           have a working release
11808
11809 2005-12-13  Jackson Harper  <jackson@ximian.com>
11810
11811         * Form.cs: Update styles after setting the border style regardless
11812         of whether or not the window is using a window manager.
11813
11814 2005-12-13  Jackson Harper  <jackson@ximian.com>
11815
11816         * Form.cs: We now hook into an internal window manager instead of just an
11817         MDI subsystem, this is so we can have properly behaving tool windows.
11818         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
11819         * InternalWindowManager.cs: New internal class that acts as a
11820         window manager for tool windows and as a base for mdi windows.
11821         * MdiWindowManager.cs: New class that acts as a window manager for
11822         mdi windows.
11823
11824 2005-12-12  Jackson Harper  <jackson@ximian.com>
11825
11826         * Control.cs: Updates so we match behavoir for for implicit
11827         controls. Fixes explosions in MDI.
11828
11829 2005-12-12  Jackson Harper  <jackson@ximian.com>
11830
11831         * Control.cs: Implement Invalidate (Region).
11832
11833 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
11834
11835         * Control.cs: 
11836           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
11837             the same events as MS does. MS fires events for each property 
11838             except, for unknown reasons, Cursor, when the control is reparented. 
11839             I can't seem to totally match add/remove since MS also fires some 
11840             VisibleChanged events, which makes no sense. Consolidated the
11841             parenting code into a separate method so it can be called from
11842             both Add and Remove. set_Parent no longer needs any special logic
11843             as it calls the parent's add method which implicitly fires
11844             all events
11845           - Removed some obsolete code and debug output
11846           - Enabled state is inherited from parents, if this is enabled
11847
11848 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
11849
11850         * Form.cs: Removed commented out code
11851
11852 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
11853
11854         * Control.cs:
11855           - Added internal version of Invoke, with additional argument 
11856             indicating if we're calling it from a Dispose() handler. That
11857             way we can avoid BeginInvoke throwing an exception if we're
11858             calling for an already destroyed window.
11859           - Added a dispose argument to BeginInvokeInternal, and made the
11860             check if a valid window handle chain exists conditional on
11861             it not being a dispose call
11862           - Removed code in DestroyHandle to destroy our children. Since we
11863             now handle the WM_DESTROY message we will catch all our children
11864             being destroyed.
11865           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
11866         * Form.cs:
11867           - Added a field to track the application context of the form.
11868           - No need to set closing variable as response to WM_CLOSE, instead
11869             we destroy the window. We also call PostQuitMessage if the form
11870             has an application context (which makes it the main app form,
11871             which, when closed terminates the app)
11872         * XplatUI.cs:
11873           - Dropped Exit() method, it's naming was confusing
11874           - Added PostQuitMessage() which causes GetMessage to return false
11875             once the message queue is empty
11876         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
11877           PostQuitMessage()
11878         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
11879           no longer a valid XplatUI method, but left it in since it's used
11880           internally. Added empty PostQuitMessage() method.
11881         * MenuAPI.cs: Replaced call to Exit() with call to
11882           PostQuitMessage, even though this is probably no longer needed.
11883         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
11884         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
11885         * Application.cs:
11886           - Replaced call to XplatUI.Exit() with PostQuitMessage()
11887           - Removed old debug code that would call XplatUI for exception
11888             display, enabled standard exception handling (Still not enabled
11889             though, until NativeWindow's ExternalExceptionHandler define
11890             is removed
11891         * NativeWindow.cs:
11892           - Added internal method to allow control to update NativeWindow
11893             after a window has been destroyed
11894           - Added handling of already destroyed windows when calling i
11895             DestroyWindow
11896           - Added removal of handle from list on ReleaseHandle
11897         * XplatUIX11.cs:
11898           - Dropped GetMessageResult var and related code
11899           - Added PostQuitState to field to track if PostQuitMessage has been
11900             called
11901           - Dropped Exit() method
11902           - Added PostQuitMessage() method
11903           - GetMessage now will return false if PostQuitState is set and no
11904             more messages are in the queue.
11905           - Expose handler will no longer generate WM_PAINT messages if we are
11906             in PostQuitState since it's very likely any windows have already
11907             been destroyed, and since Hwnd won't get updated until we have
11908             processed the DestroyNotify we'd be causing X errors.
11909         
11910 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11911
11912         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
11913           Thanks to Mike for pointing out the err of my ways.
11914
11915 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11916
11917         * Control.cs(PreProcessMessage): Moved menu handling back, but
11918           after all other key handling, to match MS (who handles Menu in
11919           DefWndProc)
11920         * Menu.cs (WndProc): Removed my brainfart
11921
11922 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11923
11924         * Control.cs(PreProcessMessage): Removed special menu handling 
11925         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
11926
11927 2005-12-07  Mike Kestner  <mkestner@novell.com>
11928
11929         * Control.cs : special case SYSKEYUP so that we can adjust keynav
11930         state according in tracker.
11931         * Menu.cs : promote tracker field to base class and provide a tracker
11932         lookup capability.  Add/Remove shortcuts dynamically if the top menu
11933         has a tracker. Unparent items that are removed from the collection.
11934         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
11935         * Theme*.cs: add always_show_hotkeys field to support configurability
11936         of mnemonic display.  win32 doesn't show mnemonics until Alt is
11937         pressed.
11938
11939 2005-12-07  Jackson Harper  <jackson@ximian.com>
11940
11941         * MdiChildContext.cs: Use Control.ResetCursor.
11942         * Control.cs: ResetCursor needs to set the property so that the
11943         correct XplatUI call gets made.
11944
11945 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11946
11947         * Control.cs: More fixes to make our key events match MS. We
11948           were not setting the modifier state on KeyData, and we were
11949           not generating any events when Alt was pressed with a key
11950           since handling of WM_SYSxxx was missing for the OnKey methods.
11951
11952 2005-12-07  Jackson Harper  <jackson@ximian.com>
11953
11954         * MdiChildContext.cs: reenable the sizing code.
11955         - When the mouse leaves a window reset its cursor.
11956
11957 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11958
11959         * ThemeClearlooks.cs: Reflect latest Hwnd changes
11960
11961 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11962
11963         * Hwnd.cs: Now using the theme 3d bordersize to calculate
11964           widths of Fixed3D borders
11965
11966 2005-12-07  Jackson Harper  <jackson@ximian.com>
11967
11968         * MdiClient.cs: Fix warnings. Earn Mike's love.
11969
11970 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11971
11972         * ThemeClearlooks.cs:
11973           - Adjusted mouse over button color
11974           - Added first parts of CheckBox drawing
11975           - Added correct color for selected text background
11976           - Fixed ComboBox drawing
11977           - Added CPDrawBorder3D and CPDrawBorder
11978
11979 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11980
11981         * XplatUIX11.cs: Added call to XBell for AudibleAlert
11982
11983 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
11984
11985         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11986           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
11987           alert users via sound. We could add an enum arg with different
11988           types of alerts in the future
11989
11990 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11991
11992         * Control.cs: Fix behaviour problems pointed out by Mike
11993
11994 2005-12-05  Mike Kestner  <mkestner@novell.com>
11995
11996         * StatusBarPanel.cs: add Invalidate method and hook it into all the
11997         prop setters.  Calls parent.Refresh for now, but could be maybe be
11998         optimized with an internal method on StatusBar at some point.
11999         [Fixes #76513]
12000
12001 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
12002
12003         * RichTextBox.cs: Implemented get_SelectionColor
12004
12005 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
12006
12007         * ThemeClearlooks.cs:
12008           - Removed dead code
12009           - Draw black button border only if button is Form.AcceptButton
12010           - Draw correct button color for pressed RadioButton if the mouse 
12011             has entered the button
12012           - Updated ProgressBar drawing!
12013           - Updated CPDrawSizeGrip drawing
12014           - Updated StatusBarPanel drawing
12015
12016 2005-12-05  Mike Kestner  <mkestner@novell.com>
12017
12018         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
12019         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
12020
12021 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
12022
12023         * ThemeClearlooks.cs: Initial check-in, activate with
12024           export MONO_THEME=clearlooks
12025         * ThemeEngine.cs: Added ThemeClearlooks
12026
12027 2005-12-03  Mike Kestner  <mkestner@novell.com>
12028
12029         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
12030         [Fixes #76897]
12031
12032 2005-12-02  Jackson Harper  <jackson@ximian.com>
12033
12034         * Form.cs: If the child form has no menu the default main menu is
12035         used as the active menu.
12036
12037 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
12038
12039         * ListBox.cs: Check if any items exist before trying to resolve 
12040           coordinates into items
12041
12042 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12043
12044         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
12045           as the second color for the background hatch
12046
12047 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12048
12049         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
12050         * RichTextBox.cs: FormatText position arguments are 1-based, now making
12051           sure that what we pass to FormatText is always 1-based. Fixes #76885
12052
12053 2005-11-29  Miguel de Icaza  <miguel@novell.com>
12054
12055         * NumericUpDown.cs (EndInit): When we are done initializing,
12056         reflect any updates on the UI.
12057
12058 2005-12-02  Jackson Harper  <jackson@ximian.com>
12059
12060         * ImplicitHScrollBar.cs:
12061         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
12062         their container controls.
12063         * TreeView.cs: Use the new implicit scrollbars.
12064
12065 2005-12-02  Jackson Harper  <jackson@ximian.com>
12066
12067         * TreeView.cs: Make top_node internal so the TreeNodeCollections
12068         can play with it.
12069         * TreeNodeCollection.cs: If we remove the topnode we need to
12070         update topnode to the next node in line.
12071         - When clearing nodes go through the same process as removing
12072         them, so they get depareneted and checked if they are top node.
12073
12074 2005-12-01  Jackson Harper  <jackson@ximian.com>
12075
12076         * TreeView.cs: When imagelists are used the image area is
12077         selectable as well as the text.
12078         - If there are no selected nodes select the first one.
12079         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
12080         so don't do it more then we need to.
12081
12082 2005-12-01  Jackson Harper  <jackson@ximian.com>
12083
12084         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
12085         that arrows can be scaled.
12086
12087 2005-12-01  Jackson Harper  <jackson@ximian.com>
12088
12089         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
12090         fail. Patch by Dieter Bremes
12091
12092 2005-11-30  Jackson Harper  <jackson@ximian.com>
12093
12094         * Form.cs: Property is 2.0 only
12095         * PrintDialog.cs: Signature fix.
12096
12097 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12098
12099         * TextControl.cs: 
12100           - No longer artificially moves text 2 pixels down (now that we have
12101             borders this is no longer needed)
12102           - Added calcs for left, hanging and right indent
12103
12104 2005-11-23  Mike Kestner  <mkestner@novell.com>
12105
12106         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
12107
12108 2005-11-30  Jackson Harper  <jackson@ximian.com>
12109
12110         * MdiChildContext.cs: Set the cloned menus forms, as these don't
12111         get cloned as part of CloneMenu ().
12112         * Menu.cs: Make sure the parent of the items get set correctly
12113         when they are added.  And the owners are notified of the changes.
12114         * Form.cs: Create an ActiveMenu property, so that when MDI is used
12115         we can change the menu being displayed/handled by the form without
12116         changing the menu assosciated with the form.
12117         - Don't let Mdi children draw/handle menus.
12118         
12119 2005-11-30  Jackson Harper  <jackson@ximian.com>
12120
12121         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
12122         a MenuChanged event. Just to make the API a little more
12123         consistent.
12124         * MainMenu.cs:
12125         * MenuItem.cs: Use the new OnMenuChanged
12126         * MdiChildContext.cs: Handle menu merging.
12127         * Form.cs: Implement MergedMenu.
12128         
12129 2005-11-30  Jackson Harper  <jackson@ximian.com>
12130
12131         * Menu.cs: We were misusing Add. Add goes behind the specified
12132         index according to the docs, and does not replace the specified
12133         index. So I added an Insert method.
12134
12135 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12136
12137         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
12138           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
12139           is for Jackson
12140         * RichTextBox.cs: Added calls to base for DnD events
12141
12142 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
12143
12144         * TextControl.cs:
12145           - Fixed drag-selection related crash; style fixes
12146           - Implemented undo class
12147             o Implemented method to capture document state for specified
12148               range in document tree
12149             o Implemented method to restore captured document state
12150             o Implemented cursor tracking
12151             o Implemented basic undo stack
12152           - Added undo cursor tracking to methods altering cursor location
12153           - Added undo tracking to selection deletion (still missing
12154             other text-altering hookups)
12155         * RichTextBox.cs:
12156           - Added SelectionLength property
12157           - Implemented CanPaste()
12158           - Implemented Paste()
12159           - Added missing protected methods
12160           - Fixed RTF->Document conversion; now uses font index 0 and color 
12161             index 0 as the default font for the parsed text
12162           - Fixed RTF<->Document font size translation
12163           - Fixed RTF generation, now properly handles cross-tag boundaries
12164             for single line selection
12165           - No longer always appends blank line to generated RTF
12166           - Removed TODOs
12167           - Added missing attributes
12168           - Hooked up undo-related methods
12169         * TextBoxBase.cs:
12170           - Implemented Copy()
12171           - Implemented Paste()
12172           - Implemented Cut()
12173           - Fixed caret mis-behaviour on backspace across line-boundaries
12174
12175 2005-11-29  Jackson Harper  <jackson@ximian.com>
12176
12177         * MdiClient.cs: Add a method for activating mdi children. Very
12178         basic right now. I imagine someday it might need more girth.
12179         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
12180         children windows names are added to the menu item.
12181         * ThemeWin32Classic.cs: Draw the arrow if the item is an
12182         mdilist. This happens regardless of whether or not there are any
12183         mdi windows to see in the list, and according to my tests happens
12184         before the items are even added. Also happens if there isn't even
12185         an mdi client to get windows from.
12186
12187 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
12188
12189         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
12190         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
12191
12192 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
12193
12194         * DataGridTableStyle.cs:
12195           - Create always the styles for the missing columns even if they are
12196             provided by the user (not default table style)
12197         * DataGrid.cs:
12198           - Fixes bug 76770
12199           - Fixes SetDataBinding (always re-attach source)
12200           - Fixes SetNewDataSource (only clear styles if they are not for 
12201             this source)
12202          -  Expands OnTableStylesCollectionChanged to handle style refresh 
12203             and remove properly
12204
12205 2005-11-29  Jackson Harper  <jackson@ximian.com>
12206
12207         * FileDialog.cs: Implement missing bits, remove some dead
12208         code.
12209         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
12210         creation of the panel so that the options set on the dialog are
12211         seen when the panel is created.
12212         * TreeView.cs: raise a click when items are clicked.
12213         
12214 2005-11-29  Jackson Harper  <jackson@ximian.com>
12215
12216         * MdiClient.cs: Pass some signature methods through to base.
12217
12218 2005-11-28  Jackson Harper  <jackson@ximian.com>
12219
12220         * ListView.cs: Raise the click event when items are clicked.
12221
12222 2005-11-28  Jackson Harper  <jackson@ximian.com>
12223
12224         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
12225         a nullref.
12226
12227 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
12228
12229         * ThemeNice.cs: - Removed 1 pixel bitmaps
12230           - Use SmoothingMode.AntiAlias where it makes sense
12231             (ScrollButton arrow for example)
12232           - Enhanced Button focus drawing
12233           - Fixed ComboBox drawing (no artefacts anymore, focus
12234             rectangle is back again, reduced size of ComboButton, etc.)
12235           - Fixed RadioButton focus drawing for Appearence.Button
12236           - Slight ScrollButton redesign
12237           - Some LinearGradientBrush size fixes
12238           - GroupBoxes have now rounded edges
12239           - Fixed StatusBar drawing
12240
12241 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
12242
12243         * ThemeNice.cs: - Remove dead code
12244           - use correct background colors for menus, etc.
12245           - Fake pixel drawing with 1 pixel bitmaps
12246
12247 2005-11-24  Jackson Harper  <jackson@ximian.com>
12248
12249         * MdiClient.cs: Size the scrollbars when resizing the window.
12250         - Resize the maximized windows when the client is resized
12251         * Form.cs: Make the child context available
12252         
12253 2005-11-23  Jackson Harper  <jackson@ximian.com>
12254
12255         * MdiChildContext.cs: Don't size windows if they are maximized.
12256
12257 2005-11-23  Mike Kestner  <mkestner@novell.com>
12258
12259         * ContextMenu.cs: use MenuTracker.
12260         * Control.cs: remove menu handle usage.
12261         * Form.cs: remove menu handle usage.
12262         * Hwnd.cs: remove menu handle usage.
12263         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
12264         motion and clicks to the new Tracker handlers.
12265         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
12266         and handle usage.
12267         * MenuAPI.cs: refactored to combine popup and menubar event handling.
12268         Killed the MENU and MENUITEM data types and associated collections
12269         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
12270         MenuTracker class that exposes the leftovers from the old MenuAPI
12271         static methods. Restructured Capture handling so that only one grab is
12272         done for the entire menu hierarchy instead of handing off grabs to
12273         submenus. Tracker now has an invisible control to Capture when active.
12274         * MenuItem.cs: add sizing accessors, kill Create
12275         and handle usage.
12276         * Theme.cs: remove menu handle and MENU(ITEM) usage.
12277         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
12278         MENU(ITEM). remove menu handle usage, use Menu directly.
12279         * XplatUIDriver.cs: remove menu handle usage.
12280         * XplatUIOSX.cs: remove menu handle usage.
12281         * XplatUIWin32.cs: remove menu handle usage.
12282         * XplatUIX11.cs: remove menu handle usage.
12283
12284 2005-11-22  Jackson Harper  <jackson@ximian.com>
12285
12286         * Hwnd.cs: Don't compute the menu size for
12287         DefaultClientRectangle.
12288         - Reenable menu sizes being computed for GetClienRectangle.
12289         * Form.cs: Remove comment of trechery
12290         
12291 2005-11-22  Jackson Harper  <jackson@ximian.com>
12292
12293         * Hwnd.cs: The adjustments for the menu bar are made when it is
12294         attached to the form.
12295
12296 2005-11-19  Jackson Harper  <jackson@ximian.com>
12297
12298         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
12299         (just like on windows).
12300
12301 2005-11-19  Jackson Harper  <jackson@ximian.com>
12302
12303         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
12304         use real buttons anymore because they are in non client area. The
12305         one TODO here is that I need to somehow invalidate a section of
12306         the non client area.
12307
12308 2005-11-18  Jackson Harper  <jackson@ximian.com>
12309
12310         * Control.cs: Put the enum check back in now that MDI doesnt have
12311         to use this to set border styles.
12312         * Form.cs: Only set mdi child windows borders if the handle has
12313         been created.
12314         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
12315         this directly on to the driver.
12316         - Get the move start position before adjusting for the titlebar
12317         height, this fixes the windows "skipping" when they are first
12318         moved.
12319
12320 2005-11-18  Jackson Harper  <jackson@ximian.com>
12321
12322         * XplatUIX11.cs: Just compute the mdi borders separately as they
12323         don't totally match up with normal form borders.
12324
12325 2005-11-18  Jackson Harper  <jackson@ximian.com>
12326
12327         * Control.cs: Set WS_ styles for borders, so that the driver does
12328         not have to retrieve the control instance to figure out what kind
12329         of borders it should have.
12330         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
12331         driver can know its an mdi child easily.
12332         * XplatUIX11.cs: Get the border styles and whether the window is
12333         MDI from the Styles and ExStyles params instead of having to get a
12334         control. This prevents a chicken and egg problem.       
12335
12336 2005-11-18  Jackson Harper  <jackson@ximian.com>
12337
12338         * MdiClient.cs: Fix typo so scrollbars show up correctly.
12339
12340 2005-11-18  Jackson Harper  <jackson@ximian.com>
12341
12342         * MdiClient.cs: Calculate when to add and remove scrollbars
12343         correctly.
12344         * MdiChildContext.cs: Adjust the y position to take the titlebar
12345         into account.
12346         - No height for FormBorderStyle.None
12347
12348 2005-11-18  Jackson Harper  <jackson@ximian.com>
12349
12350         * Control.cs: Allow non enum values to be used for
12351         InternalBorderStyle.  MDI does this to set a special border style.
12352         - New utility methods for converting points to/from client coords
12353         - Add the newly created control to the Controls collection before
12354         updating its style. This way UpdateStyle can walk the control
12355         heirarchy to find the control if needed.
12356         so I don't need to create a new Point object all the time.
12357         * Form.cs: Let MDI windows handle their border styles.
12358         - Set styles on MDI windows so the correct title style is derived.
12359         * MdiChildContext.cs: Move all the painting and window handling
12360         into the non client area.
12361         - Use correct sizing and put correct buttons on frames based on
12362         the FormBorderStyle.
12363         - Notify the mdi client about scrolling
12364         - Need to handle the buttons ourselves now, because they are all
12365         in non client areas and we can't add controls there.
12366         * MdiClient.cs: Halfway to scrolling, this implementation is
12367         somewhat broken though, we need to check to make sure other
12368         windows aren't causing scrolling before removing the bars. Also
12369         the bars need to be drawn on top, maybe I can switch implicit
12370         controls to be on top.
12371         * Hwnd.cs: caption_height and tool_caption_height are now
12372         properties of an hwnd, this way they can be set by the driver
12373         based on the type of window they are.  In X11 the window manager
12374         handles the decorations so caption_height is zero unless its an
12375         MDI window.
12376         - Add 3 pixel borders for MDI windows (0xFFFF).
12377         - Get rid of some code duplication, have DefaultClientRectanle
12378         just call GetClientRectangle.
12379         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
12380         Hwnd now.
12381         - Set border styles differently for mdi windows.
12382         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
12383         Hwnd now.
12384         
12385 2005-11-15  Mike Kestner  <mkestner@novell.com>
12386
12387         * Menu.cs: when adding an item to the collection, if item is already 
12388         parented, remove it from the parent.
12389
12390 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
12391
12392         * X11DesktopColors.cs: Added KDE support
12393
12394 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
12395
12396         * XplatUIWin32.cs: 
12397           - Clipboard methods now can translate Rtf format
12398           - No longer removes clipboard contents whenever a new format is added
12399             to allow placing multiple formats on the clipboard
12400         * Clipboard.cs: Clipboard now supports getting a IDataObject and
12401           will place all formats contained in it onto the clipboard. Also
12402           now cleans the clipboard before placing a new object onto it
12403         * RichTextBox.cs:
12404           - Implemented set_Rtf
12405           - Implemented set_SelectedRtf
12406           - Created InsertRTFFromStream() method to allow single code base
12407             for all properties and methods that insert RTF into document
12408           - Removed debug output
12409         * TextControl.cs:
12410           - Fixed Delete(int) to fix up line numbers
12411           - Fixed ReplaceSelection to combine start and end line
12412           - Fixed serious DeleteChars bug that would leave the document tree
12413             broken
12414           - Improved DumpTree with several logic checks to detect broken
12415             document trees
12416           - Removed debug lines
12417           - Fixed Caret.WordForward/WordBack moving code, now always also 
12418             updates caret.tag (fixes crash when word-selecting across tag
12419             boundaries via keyboard)
12420           - Added Insert() method for inserting multiline text into documents
12421           - Fixed DeleteChars() calculation errors that would cause a broken
12422             tag chain with multiple tag lines
12423           - DeleteChars() no longer crashes on multi-tag lines if not all tags
12424           - Split() no longer moves caret if split is at caret location
12425           - ReplaceSelection() now updates the cursor and re-displays it
12426           - ReplaceSelection() now uses new Insert() method to avoid code
12427             duplication
12428           - FormatText() can now handle formatting partial lines
12429         * TextBoxBase.cs:
12430           - Append now uses new TextControl.Insert() method (this avoids 
12431             duplicate code)
12432           - Implemented Ctrl-X (Cut) (
12433           - Implemented Ctrl-C (Copy)
12434           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
12435             regeneration when pasting text; roundtripping Copy&Paste within
12436             edit control still fails due to some calculation bugs in GenerateRTF)
12437           - The Delete key will now remove the current selection if it is visible
12438         * TextBox.cs: Removed debug lines
12439         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
12440           driver to be initialized and can't therefore be done via a static ctor)
12441
12442 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
12443
12444         * TextControl.cs: Added backend code for finding char arrays and strings
12445         * TextBoxBase.cs:
12446           - Added mouse wheel scroll support
12447           - Added support for VScroll and HScroll events
12448         * RichTextBox.cs:
12449           - Implemented all seven Find() variants
12450           - Implemented GetCharFromPosition()
12451           - Implemented GetCharIndexFromPosition()
12452           - Implemented GetLineFromIndex()
12453           - Implemented GetPositionFromCharIndex();
12454           - Implemented SaveFile for PlainText and UnicodeText
12455           - Fixed set_Font, now setting a new font applies that font to
12456             the whole document
12457           - Implemented generic Document to RTF converter
12458           - Implemented SaveFile for RichText format (still missing unicode
12459             conversion for non-ansi chars)
12460           - Implemented get_Rtf
12461           - Implemented get_SelectedRtf
12462
12463 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
12464
12465         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
12466           to allow any captures to be released before triggering OnClick. This
12467           way a click handler may capture the mouse without interference.
12468         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
12469           This way we send them even though X may not allow a grab (if the window
12470           isn't visible, for example)
12471
12472 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
12473
12474         * DataGridViewRowEventArgs.cs: DataGridView implementation
12475         * DataGridViewElement.cs: DataGridView implementation
12476         * DataGridViewComboBoxCell.cs: DataGridView implementation
12477         * DataGridViewDataErrorContexts.cs: DataGridView implementation
12478         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
12479         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
12480         * ImageLayout.cs: DataGridView implementation
12481         * DataGridViewComboBoxColumn.cs: DataGridView implementation
12482         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
12483         * DataGridViewSelectionMode.cs: DataGridView implementation
12484         * IDataGridViewEditingControl.cs: DataGridView implementation
12485         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
12486         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
12487         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
12488         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
12489         * DataGridViewColumnSortMode.cs: DataGridView implementation
12490         * DataGridView.cs: DataGridView implementation
12491         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
12492         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
12493         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
12494         * Padding.cs: DataGridView implementation
12495         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
12496         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
12497         * DataGridViewRowEventHandler.cs: DataGridView implementation
12498         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
12499         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
12500         * DataGridViewButtonCell.cs: DataGridView implementation
12501         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
12502         * DataGridViewEditMode.cs: DataGridView implementation
12503         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
12504         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
12505         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
12506         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
12507         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
12508         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
12509         * DataGridViewCellEventHandler.cs: DataGridView implementation
12510         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
12511         * DataGridViewCellStyleConverter.cs: DataGridView implementation
12512         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
12513         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
12514         * DataGridViewColumnEventArgs.cs: DataGridView implementation
12515         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
12516         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
12517         * QuestionEventArgs.cs: DataGridView implementation
12518         * IDataGridViewEditingCell.cs: DataGridView implementation
12519         * DataGridViewTriState.cs: DataGridView implementation
12520         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
12521         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
12522         * DataGridViewColumnCollection.cs: DataGridView implementation
12523         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
12524         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
12525         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
12526         * DataGridViewColumn.cs: DataGridView implementation
12527         * DataGridViewCellBorderStyle.cs: DataGridView implementation
12528         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
12529         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
12530         * DataGridViewRow.cs: DataGridView implementation
12531         * DataGridViewImageCellLayout.cs: DataGridView implementation
12532         * DataGridViewImageCell.cs: DataGridView implementation
12533         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
12534         * DataGridViewCheckBoxCell.cs: DataGridView implementation
12535         * DataGridViewHeaderCell.cs: DataGridView implementation
12536         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
12537         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
12538         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
12539         * DataGridViewTextBoxColumn.cs: DataGridView implementation
12540         * QuestionEventHandler.cs: DataGridView implementation
12541         * DataGridViewCellStyleScopes.cs: DataGridView implementation
12542         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
12543         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
12544         * DataGridViewCell.cs: DataGridView implementation
12545         * DataGridViewCellEventArgs.cs: DataGridView implementation
12546         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
12547         * DataGridViewCellStyle.cs: DataGridView implementation
12548         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
12549         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
12550         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
12551         * TextFormatFlags.cs: DataGridView implementation
12552         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
12553         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
12554         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
12555         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
12556         * DataGridViewButtonColumn.cs: DataGridView implementation
12557         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
12558         * HandledMouseEventArgs.cs: DataGridView implementation
12559         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
12560         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
12561         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
12562         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
12563         * DataGridViewRowCollection.cs: DataGridView implementation
12564         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
12565         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
12566         * DataGridViewHitTestType.cs: DataGridView implementation
12567         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
12568         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
12569         * DataGridViewColumnEventHandler.cs: DataGridView implementation
12570         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
12571         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
12572         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
12573         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
12574         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
12575         * DataGridViewContentAlignment.cs: DataGridView implementation
12576         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
12577         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
12578         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
12579         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
12580         * DataGridViewPaintParts.cs: DataGridView implementation
12581         * DataGridViewCellCollection.cs: DataGridView implementation
12582         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
12583         * DataGridViewImageColumn.cs: DataGridView implementation
12584         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
12585         * DataGridViewElementStates.cs: DataGridView implementation
12586         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
12587         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
12588         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
12589         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
12590         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
12591         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
12592         * DataGridViewRowHeaderCell.cs: DataGridView implementation
12593         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
12594         * DataGridViewTextBoxCell.cs: DataGridView implementation
12595         * DataGridViewBand.cs: DataGridView implementation
12596         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
12597         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
12598         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
12599         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
12600         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
12601         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
12602         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
12603         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
12604         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
12605         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
12606         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
12607
12608 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
12609
12610         * ThemeWin32Classic.cs: 
12611           - Draw the outside focus rectangle around buttons
12612           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
12613             doesn't use end caps for every dash of a line anymore. This
12614             workaround ignores the forecolor.
12615
12616 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
12617
12618         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
12619           endian safe.
12620
12621 2005-11-07  Jackson Harper  <jackson@ximian.com>
12622
12623         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
12624
12625 2005-11-07  Jackson Harper  <jackson@ximian.com>
12626
12627         * ScrollableControl.cs: Calculate the maximum and change vars
12628         (more) correctly so that scrollbars appear as a sensible size.
12629
12630 2005-11-04  Jackson Harper  <jackson@ximian.com>
12631
12632         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
12633         collection.
12634         * TreeView.cs: When the tree is sorted null out the top_node so
12635         that it is recalculated.
12636         - Use dotted lines instead of dashed lines to match MS better.
12637
12638 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
12639
12640         * ListView.cs: 
12641           - Implements key search for items. Useful when browsing files with FileDialog
12642           - When changing view mode or when clear the items reset scrollbar positions
12643
12644 2005-11-04  Jackson Harper  <jackson@ximian.com>
12645
12646         * CurrencyManager.cs: Implement the MetaDataChanged event, the
12647         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
12648         as to what the method may do as there is no real way of creating a
12649         derived CurrencyManager and calling the method. 
12650
12651 2005-11-03  Jackson Harper  <jackson@ximian.com>
12652
12653         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
12654         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
12655         method which seems to just be used internally to refresh the tabs.
12656
12657 2005-11-03  Jackson Harper  <jackson@ximian.com>
12658
12659         * TabControl.cs: Implement the remove method. Fix some broken
12660         comments.
12661
12662 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12663
12664         * DateTimePicker.cs:
12665           - Added missing DateTimePickerAccessibleObject class
12666           - Added missing events
12667           - Added OnFontChanged method
12668         * Form.cs: Added missing attributes
12669         * TreeView.cs: Added missing attributes
12670
12671 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
12672
12673         * GridItemCollection.cs: Fix signatures
12674
12675 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12676
12677         * XplatUI.cs: Updated build rev/date
12678         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
12679           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
12680         * Application.cs: Trigger context-specific ExitThread events
12681
12682 2005-11-03  Jackson Harper  <jackson@ximian.com>
12683
12684         * Menu.cs:
12685         * MainMenu.cs:
12686         * GridTableStylesCollection.cs:
12687         * Timer.cs:
12688         * TabPage.cs:
12689         * HelpProvider.cs:
12690         * StatusBar.cs:
12691         * MonthCalendar.cs: Signature fixes
12692
12693 2005-11-03  Jackson Harper  <jackson@ximian.com>
12694
12695         * TreeNodeCollection.cs: Remove should not be virtual.
12696         * TreeView.cs: Implement the last of the missing methods.
12697
12698 2005-11-03  Jackson Harper  <jackson@ximian.com>
12699
12700         * TreeNodeConverter.cs: Implement to get off my class-status back.
12701
12702 2005-11-03  Jackson Harper  <jackson@ximian.com>
12703
12704         * TreeView.cs: Hookup the bits for drag and drop.
12705         * TreeNode.cs: Don't cache the tree_view or index anymore, now
12706         that nodes can be moved from tree to tree easily this just causes
12707         all sorts of problems.
12708         * TreeNodeCollection: Don't need to give treenodes an index and
12709         treeview anymore when they are added, these are computed on the
12710         fly. Also make sure to remove a node before its added.
12711
12712 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12713
12714         * TextControl.cs:
12715           - Added CaretSelection enum
12716           - Added comparison methods to Marker struct, makes selection code
12717             more readable
12718           - Added SelectionStart and SelectionEnd as 'moveable' location for
12719             the CaretDirection enum and handler
12720           - Added selection_prev variable to track optimized invalidation for
12721             word and line selection
12722           - Added SelectionVisible property (returns true if there is a valid 
12723             selection)
12724           - Switched CaretHasFocus to only display the caret if there is no
12725             visible selection
12726           - Avoiding StringBuilder.ToString to retrieve a single char, instead
12727             using the direct character index; should be much faster
12728           - Added various conditional debug statements
12729           - Fixed invalidation calculation for selection ranges
12730           - Added ExpandSelection() method to support word and line selection
12731           - Switched SetSelectionToCaret to use new Marker compare overloads
12732           - Added central IsWordSeparator() method to determine word 
12733             separators/whitespace and FindWordSeparator() to streamline common
12734             usage of IsWordSeparator()
12735         * TextBoxBase.cs:
12736           - Removed unneeded grabbed variable, it was just mirroring
12737             Control.Capture
12738           - No longer firing OnTextChanged event when Text setter is called,
12739             since the base will fire the event for us
12740           - Added handling of Ctrl-Up/Down selection
12741           - Added handling of Shift-Cursorkey selection
12742           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
12743             words
12744           - Added handling of Shift and Ctrl-Shift-Home/End selection
12745           - Removed some debug output
12746           - Added handling for single/double/tripple-click to place caret/
12747             select word/select line respectively (Fixes bug #76031)
12748           - Added support for drag expansion of word/line selection
12749         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
12750           current selection
12751
12752 2005-11-02  Jackson Harper  <jackson@ximian.com>
12753
12754         * X11Dnd.cs: If the drag is going to and from a MWF window just
12755         copy the data instead of sending it out through the X Selection
12756         mechanism.
12757
12758 2005-11-02  Jackson Harper  <jackson@ximian.com>
12759
12760         * X11Dnd.cs:
12761         * XplatUIX11.cs: When in a drag we don't want motion notify
12762         messages to get passed on to the other controls. This prevents
12763         mouse move messages from showing up in the drag source.
12764
12765 2005-11-02  Jackson Harper  <jackson@ximian.com>
12766
12767         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
12768         the correct button is release to end a drag.
12769         * XplatUIX11.cs: Make the button state internal so the drag system
12770         can access it.  Dragging needs to know about all button releases,
12771         not just left button.
12772
12773 2005-11-02  Miguel de Icaza  <miguel@novell.com>
12774
12775         * Form.cs (Icon): If the icon is null, reset the icon to the
12776         default value. 
12777
12778         * Cursor.cs: When writing the AND-mask bitmap do not include the
12779         number of colors, but hardcode those to two (black and white),
12780         fixes the loading of color cursors (Paint Dot Net).
12781
12782         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
12783         turn off autoscaling.
12784
12785         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
12786
12787 2005-11-02  Jackson Harper  <jackson@ximian.com>
12788
12789         * X11Dnd.cs: Make sure to send a status message if the pointer
12790         enters a control that can not accept a drop, otherwise the cursor
12791         isn't updated correctly. Also tried to compress the lines of code
12792         a bit.
12793
12794 2005-11-02  Jackson Harper  <jackson@ximian.com>
12795
12796         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
12797         set actions correctly.  This isn't perfect as XDND and win32 have
12798         some differences on how you allow actions. I'll clear this up by
12799         adding a path for drag from MWF to MWF windows.
12800         * XplatUIX11.cs: Hook into the dnd system.
12801
12802 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
12803
12804         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
12805         previously shown but they are no longer need it. Very obvious when 
12806         browsing files with FileDialog.
12807
12808 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
12809
12810         * Control.cs: We always need to call OnPaintBackground. We pretty much
12811           ignore AllPaintingInWmPaint and always do the painting there, whether 
12812           it's set or not, since we always ignore the WM_ERASEBKGND message 
12813           (which we don't generate on X11). This fixes #76616.
12814         * Panel.cs: Removed unneeded background painting. This happens properly
12815           in Control.cs already
12816
12817 2005-10-31  Mike Kestner  <mkestner@novell.com>
12818
12819         * Menu.cs: Add items to collection before setting their index.
12820         * MenuItem.cs : add range checking with ArgumentException like MS.
12821         [Fixes #76510]
12822
12823 2005-10-31  Jackson Harper  <jackson@ximian.com>
12824
12825         * ListBox.cs: Invalidate if the area is visible at all not just
12826         contained in the visible rect. Fixes unselection of semi visible
12827         items.
12828
12829 2005-10-31  Jackson Harper  <jackson@ximian.com>
12830
12831         * Control.cs: Consistently name the dnd methods. Make them
12832         internal so we can override them to match some MS behavoir
12833         internally.
12834         * Win32DnD.cs: Use the new consistent names.
12835
12836 2005-10-31  Jackson Harper  <jackson@ximian.com>
12837
12838         * TreeView.cs: Don't draw the selected node when we lose focus.
12839
12840 2005-10-31  Jackson Harper  <jackson@ximian.com>
12841
12842         * X11Dnd.cs: We still need to reset the state even though a full
12843         reset isn't being done, otherwise status's still get sent all over
12844         the place.
12845
12846 2005-10-31  Jackson Harper  <jackson@ximian.com>
12847
12848         * Control.cs: Make the dnd_aware flag internal so the dnd
12849         subsystem can check it. Catch exceptions thrown in dnd handlers to
12850         match MS behavoir.
12851         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
12852         * X11Dnd.cs: Handle null data in the converters. Set the XDND
12853         version when sending a XdndEnter. Use the control/hwnd dnd_aware
12854         flags to reduce the number of dnd enters/status's sent.
12855
12856 2005-10-31  Jackson Harper  <jackson@ximian.com>
12857
12858         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
12859
12860 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
12861
12862         * PictureBox.cs: Fixes 76512
12863
12864 2005-10-28  Jackson Harper  <jackson@ximian.com>
12865
12866         * X11Dnd.cs: Early implementation to support winforms being a drag
12867         source for data on X11. Also restructured the converters so they
12868         can go both ways now.
12869         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
12870         
12871 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
12872
12873         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
12874           clipboard requests
12875
12876 2005-10-27  Jackson Harper  <jackson@ximian.com>
12877
12878         * TreeNode.cs: Implement serialization so my DnD examples will work.
12879
12880 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
12881
12882         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
12883           TreeView.cs: Don't dispose objects that are not owned.
12884           
12885 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
12886
12887         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
12888           should retrieve the current cursor and report that, but XplatUI
12889           doesn't (yet) have an interface for that (and I'm not sure I even
12890           can, on X11)
12891         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
12892           until any message loop processing is done (and the WM_SETCURSOR
12893           replaces the cursor to the proper one)
12894         * XplatUIX11.cs: 
12895           - Fixed override behaviour, we can't set the cursor globally on X11, 
12896             just for our windows.
12897           - Invalidating the System.Drawing X11 display handle when we are
12898             shutting down
12899         * Control.cs: Fix to make csc happy
12900
12901 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
12902
12903         * TextBoxBase.cs: 
12904           - get_Text: Add last line (without trailing newline) to returned
12905             value (Fixes 76212)
12906           - get_TextLength: Count last line in returned length
12907           - ToString: Call Text property instead of duplicating code
12908
12909 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
12910
12911         * ImageList.cs: Dispose ImageAttributes objects.
12912
12913 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12914
12915         * ImageList.cs: Use attribute constructors with less arguments where
12916           possible.
12917
12918 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12919
12920         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
12921           Use typeof instead of strings when assembly is referenced. Added
12922           some more comments.
12923
12924 2005-10-21  Jackson Harper  <jackson@ximian.com>
12925
12926         * ListView.cs: Raise a double click event. Also tried to somewhat
12927         fix when the selectedindexchanged event is raised. Its still
12928         broken though.
12929
12930 2005-10-21  Jackson Harper  <jackson@ximian.com>
12931
12932         * TreeView.cs: New method to invalidate the plus minus area of a
12933         node without invalidating the whole node (maybe this can be used
12934         in some more places).
12935         * TreeNodeCollection.cs: When adding to an empty node we need to
12936         invalidate its plus minus area so the little block shows up.
12937         
12938 2005-10-21  Jackson Harper  <jackson@ximian.com>
12939
12940         * TreeView.cs: Make sure that when we invalidate a node the bounds
12941         are big enough to cover the selected box and the focus
12942         rectangle. Use a different colour for the lines connecting nodes
12943         so they show up with all themes.
12944
12945 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12946
12947         * NativeWindow.cs: Don't call anything that could call into the driver,
12948           we might be on a different thread.
12949
12950 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
12951
12952         * Control.cs(Dispose): Since Dispose might run on a different thread,
12953           make sure that we call methods that could call into the driver via
12954           invoke, to avoid thread issues
12955
12956 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12957
12958         * XplatUI.cs: Removed finalizer
12959         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
12960           not allowing to be called on the finalizer thread.
12961
12962 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
12963
12964         * ImageList.cs:
12965           - Reverted r51889 and r51891.
12966           - Added ImageListItem class that stores unmodified image items and image
12967             properties required to create list images until handle is created.
12968           - Added AddItem and moved image creation logic to AddItemInternal.
12969           - Added CreateHandle method that creates images based on unmodified items.
12970           - Added DestroyHandle that changes state to store unmodified items.
12971           - Add and AddStrip methods no more create handle.
12972           - ReduceColorDepth has no return value.
12973           - Dispose destroys handle.
12974           - Modified other methods to reflect the above changes.
12975           - Implemented key support.
12976           - Added profile 2.0 members and attributes.
12977           - Added private Reset and ShouldSerialize methods that provide the same
12978             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
12979             them as they are private.
12980           - Added some more comments about implementation details.
12981
12982 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12983
12984         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
12985
12986 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12987
12988         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
12989
12990 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12991
12992         * DataGridDrawingLogic.cs: Fixes column hit calcultation
12993         * DataGridColumnStyle.cs: Remove debug message
12994
12995 2005-10-20  Jackson Harper  <jackson@ximian.com>
12996
12997         * TreeView.cs: We can always get input keys regardless of whether
12998         or not editing is enabled. They are used for navigation.
12999
13000 2005-10-20  Jackson Harper  <jackson@ximian.com>
13001
13002         * TreeNode.cs: Use the viewport rect for determining if a node
13003         needs to be moved for visibility. Don't use Begin/End edit. This
13004         calls a full refresh when its done.
13005         * TreeView.cs: New SetBottom works correctly.  Make the viewport
13006         rect property internal so the treenodes can see it. When clicking
13007         on a node we need to ensure that its visible because it might just
13008         be partly visible when clicked.
13009
13010 2005-10-20  Jackson Harper  <jackson@ximian.com>
13011
13012         * TreeNodeCollection.cs: Remove debug code.
13013
13014 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13015
13016         * Datagrid.cs: Implements column sorting in Datagrid
13017         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
13018
13019 2005-10-20  Jackson Harper  <jackson@ximian.com>
13020
13021         * TreeNodeCollection.cs: Remove items properly. Update the correct
13022         area after removing them.
13023
13024 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13025
13026         * Datagrid.cs: Should not call base.OnPaintBackground
13027
13028 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13029
13030         * XplatUIX11.cs (GetMessage):
13031           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
13032             window instead of client window
13033           - Now properly calculates NC_xBUTTONUP message coordinates
13034           - ScreenToMenu now properly calculates it's coordinates of whole 
13035             window, since menus are in the whole window, not in the client
13036             window
13037           - Added WholeToScreen coordinate translation method
13038
13039 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
13040
13041         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
13042           want to return a message, loop back to the beginning of the function
13043           and grab the next real message to process instead.
13044
13045 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13046
13047         * Splitter.cs: Properly set limits if no filler control is used
13048
13049 2005-10-19  Jackson Harper  <jackson@ximian.com>
13050
13051         * ColorDialog.cs: Don't show the help button if it is not enabled
13052         instead of disabling it (this is what MS does). Don't create the
13053         panel until the dialog is run, otherwise the vars (such as
13054         ShowHelp) are not set yet.
13055
13056 2005-10-19  Jackson Harper  <jackson@ximian.com>
13057
13058         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
13059         are reduced when adding nodes.
13060         * TreeNode.cs:
13061         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
13062         tree.
13063         
13064 2005-10-19  Jackson Harper  <jackson@ximian.com>
13065
13066         * FolderBrowserDialog.cs: End editing our treeview so the window
13067         actually gets refreshed.
13068
13069 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13070
13071         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
13072           Obsoleted handling of WM_ERASEBKGND, now always draws our background
13073           inside of WM_PAINT
13074
13075 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13076
13077         * MenuAPI.cs: Returns after Hidding window
13078         * XplatUIX11.cs: Added TODO found while debugging menu issues
13079
13080 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13081
13082         * XplatUIX11.cs: Do not re-map the whole window when it's size
13083           becomes non-zero unless it's supposed to be actually visible
13084
13085 2005-10-18  Jackson Harper  <jackson@ximian.com>
13086
13087         * TreeView.cs: We don't need to keep a count anymore.
13088         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
13089         use the Grow method.
13090
13091 2005-10-18  Jackson Harper  <jackson@ximian.com>
13092
13093         * TreeNodeCollection.cs: Insert is not supported on arrays, so
13094         implement it manually here.
13095
13096 2005-10-18  Jackson Harper  <jackson@ximian.com>
13097
13098         * ImageList.cs: Dont kill the list when the colour depth is
13099         changed, just change the colour depth of all the images.
13100         - Same goes for setting the image size. Just resize them all
13101         instead of killing the list softly.
13102
13103 2005-10-18  Jackson Harper  <jackson@ximian.com>
13104
13105         * Control.cs: Don't invalidate empty rectangles.
13106
13107 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13108
13109         * ListViewItem.cs:
13110           - Adds checked item to the Checked/Item lists (where empty before)
13111           - Do not add items to the Selected lists if they are already present
13112         * ListView.cs:
13113           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
13114           - When deleting items make sure that we delete them for the Selected
13115           and Checked list also.
13116
13117 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13118
13119         * Label.cs: Dispose objects no longer used
13120         * ThemeWin32Classic.cs: Dispose objects no longer used
13121
13122 2005-10-18  Jackson Harper  <jackson@ximian.com>
13123
13124         * TabControl.cs: Don't refresh the whole control when the tabs are
13125         scrolled, we just need to refresh the tab area.
13126
13127 2005-10-17  Jackson Harper  <jackson@ximian.com>
13128
13129         * XplatUIX11.cs: Compress code a little bit. Only calculate the
13130         after handle when we need it.
13131
13132 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13133
13134         * Control.cs: When the parent size changes, recalculate anchor 
13135           positions. Partial fix for #76462
13136
13137 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13138
13139         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
13140           drawn. Fixes #76462
13141
13142 2005-10-17  Jackson Harper  <jackson@ximian.com>
13143
13144         * MonthCalendar.cs: Don't create the numeric up down until our
13145         handle is created. Otherwise our handle is created in the
13146         constructor and we don't know if we are a WS_CHILD or WS_POPUP
13147         yet.
13148
13149 2005-10-17  Jackson Harper  <jackson@ximian.com>
13150
13151         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
13152         correctly.
13153
13154 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13155         * TreeNode.cs : small logical fix (was using local var instead of field)
13156         
13157 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13158
13159         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
13160
13161 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13162
13163         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
13164
13165 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
13166
13167         * Control.cs: 
13168           - Re-implemented anchoring code. My first version was really broken.
13169             This fixes bug #76033. Unlike the previous implementation we will
13170             no longer have round errors since all numbers are calculated from
13171             scratch every time. Removed various anchor-related obsolete vars.
13172           - InitLayout no longer causes layout event firing and layout to be 
13173             performed
13174
13175 2005-10-16  Jackson Harper  <jackson@ximian.com>
13176
13177         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
13178         which was broken).
13179
13180 2005-10-16  Jackson Harper  <jackson@ximian.com>
13181
13182         * TabControl.cs: Remove debug code.
13183
13184 2005-10-16  Jackson Harper  <jackson@ximian.com>
13185
13186         * XEventQueue.cs: Increase the default queue size (very simple
13187         apps needed to grow the queue).
13188         * Hwnd.cs: No finalizer so we don't need to suppress
13189         finalization. Compute the invalid area manually so a new rectangle
13190         does not newto be created.
13191         * ScrollableControl.cs: Don't set any params (otherwise visibility
13192         isn't set correctly).
13193         * MdiChildContext.cs: New constructor takes the mdi parent so it
13194         doesn't have to be computed and avoids a crash on windows. Draw
13195         the window icon properly, and allow the text to be seen.
13196         * Form.cs: Use new MdiChildContext constructor. Make sure the
13197         child context isn't null in wndproc.
13198         * TabControl.cs: Don't set focus, this is muddling keyboard
13199         behavoir. Expand the tab rows when a window size increase will
13200         allow extra tabs to be seen. Don't allow tabs smaller than the
13201         width of a window to be scrolled out of view.
13202         * TreeNode.cs:
13203         * TreeView.cs: Use measure string to calculate a nodes width, the
13204         width is cached and only updated when the text or the font is
13205         changed. Don't check for expand/collapse clicks on the first level
13206         nodes if root lines are disabled.
13207         
13208 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
13209
13210         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
13211
13212 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13213
13214         * DataGridBoolColumn.cs: fixes warning
13215
13216 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13217
13218         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
13219         to match more to match more precisely the MS Net behavior
13220
13221 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13222
13223         * Hwnd.cs: Added field to track if window is mapped
13224         * XplatUIX11.cs: 
13225           - Unmap windows if they become 0-size, re-map when 
13226             they are >0 again; fixes #76035
13227           - Re-set our error handler after initializing X11Desktop
13228             to override any error handlers Gtk or whatever was called
13229             may have set.
13230
13231 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13232
13233         * CheckedListBox.cs: Removed unused vars
13234         * ListView.cs: Fixed signatures
13235         * RichTextBox.cs: Removed unused vars
13236         * TextBoxBase.cs: Removed unused vars
13237         * XplatUIWin32.cs: Removed unused vars
13238         * XplatUIX11.cs: Removed unused vars
13239         * XplatUI.cs: Updated version and date to latest published
13240
13241 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13242
13243         * Cursor.cs: Added private .ctor to work around a bug in
13244           resourceset (Thanks to Geoff Norton for the help on this)
13245         * SplitterEventArgs.cs: Made fields accessible so we don't
13246           waste boatloads of objects and can reuse the same one
13247           in Splitter
13248         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
13249           any captions and borders when generating screen coordinates
13250         * Splitter.cs: Reimplemented control, now fully complete, uses
13251           rubberband drawing, supports and obeys all properties, has
13252           proper cursors
13253
13254 2005-10-13  Miguel de Icaza  <miguel@novell.com>
13255
13256         * Form.cs (Form): Setup default values for autoscale and
13257         autoscale_base_size;  Make these instance variables, not static
13258         variables. 
13259
13260         (OnLoad): on the first load, adjust the size of the form.
13261
13262 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13263
13264         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
13265           width argument to DrawReversibleRectangle()
13266         * XplatUIWin32.cs, XplatUIX11.cs: 
13267           - Implemented width for DrawReversibleRectangle()
13268           - Added logic to DrawReversibleRectangle that recognizes a zero
13269             width or height and only draws a line in that situation
13270         
13271 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
13272
13273         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
13274         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
13275         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
13276           method (it uses our FosterParent window to get a graphics context)
13277
13278 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
13279
13280         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
13281           and SetWindowBackground methods
13282         * Control.cs:
13283           - Setting proper ControlStyles
13284           - We no longer call XplatUI.SetWindowBackground and XplatUI.
13285             EraseWindowBackground, instead we draw the window background
13286             ourselves in PaintControlBackground. This behaviour is
13287             required to match MS, where, when OnPaintBackground is not
13288             called, the background is not drawn.
13289           - Removed unneeded Refresh() in set_Text
13290         * Hwnd.cs: Dropped the ErasePending support. No longer needed
13291         * XplatUIX11.cs:
13292           - Created DeriveStyles method to translate from CreateParams to
13293             FormBorderStyle and TitleStyle, also handles BorderStyle (which
13294             matches FormBorderStyle enum values)
13295           - Consolidated SetHwndStyles and CalculateWindowRect border/title
13296             style calculations into single DeriveStyles method
13297           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
13298             from redrawing the whole window on any resize or expose.
13299           - Fixed CreateWindow usage of SetWindowValuemask. Before not
13300             all styles were applied to our whole/client window appropriately
13301           - Removed EraseWindowBackground() and SetWindowBackground() methods
13302           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
13303             no longer clear/redraw the background through X
13304           - Removed handling of erase_pending bit, we have no use for it (or
13305             so it seems)
13306         * XplatUIOSX.cs:
13307           - Removed generation and handling of WM_ERASEBKGND message
13308           - Removed EraseWindowBackground() and SetWindowBackground() methods
13309           - Removed handling of hwnd.ErasePending flag
13310         * XplatUIWin32.cs:
13311           - Removed EraseWindowBackground() and SetWindowBackground() methods
13312           - We no longer call EraseWindowBackground on PaintEventStart, we 
13313             ignore the fErase flag, erasing is handled in Control in the
13314             background handler
13315         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
13316           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
13317           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
13318           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
13319           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
13320           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
13321           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
13322
13323 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
13324
13325         * PropertyGrids.cs: Get sub properties
13326         * PropertyGridView.cs: Fix drawing code
13327
13328 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13329
13330         * ListBox.cs: Fixes 76383
13331
13332 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13333
13334         * DataGridTextBoxColumn.cs: Sets location and size before attachment
13335         * ThemeWin32Classic.cs: Fixes border drawing and calculations
13336         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
13337
13338
13339 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13340
13341         * ComboBox.cs: Fixes border drawing
13342
13343 2005-10-10  Miguel de Icaza  <miguel@novell.com>
13344
13345         * MimeIcon.cs: Ignore errors if the file can not be read.
13346
13347 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13348
13349         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
13350          - Fixed border calculations
13351          - Fixed horizontal scrolling in single column listboxes
13352          - Fixed drawing issues
13353
13354 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
13355
13356         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
13357           FormBorderStyle enum
13358         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
13359           code to determine FormBorderStyles from CreateParams
13360         * Form.cs:
13361           - Fixed bug where we'd set the wrong window styles if we were
13362             not creating an MDI window
13363           - Added call to XplatUI.SetBorderStyle when form borders are set
13364         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
13365         * Hwnd.cs:
13366           - Removed obsolete edge style
13367           - Switched from BorderStyle to FormBorderStyle
13368         
13369 2005-10-10  Jackson Harper  <jackson@ximian.com>
13370
13371         * Form.cs: Use the property to get the window handle instead of
13372         accessing it directly. Prevents a null reference exception.
13373
13374 2005-10-10  Jackson Harper  <jackson@ximian.com>
13375
13376         * TreeView.cs: Don't adjust the rect given to DrawString now that
13377         our libgdiplus draws correctly.
13378
13379 2005-10-08  Jackson Harper  <jackson@ximian.com>
13380
13381         * TreeView.cs: Don't try to find the clicked on node if there are
13382         no nodes in the tree.
13383
13384 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13385
13386         * RichTextBox.cs:
13387
13388           restore
13389
13390 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13391
13392         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
13393           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
13394           ErrorProvider.cs:
13395           Use ResPool for brushes and dispose System.Drawing objects that
13396           are not used anymore.
13397
13398 2005-10-07  Jackson Harper  <jackson@ximian.com>
13399
13400         * MdiChildContext.cs: Use the new borders instead of drawing them
13401         ourselves.
13402
13403 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13404
13405         * Calling UpdateBounds after changing the window's BorderStyle 
13406         since the style can change the ClientSize
13407
13408 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13409
13410         * Control.cs: Made PaintControlBackground virtual
13411         * Panel.cs: Overriding PaintControlBackground instead of using paint
13412           event; paint event method was interfering with 'real' users of the
13413           event.
13414
13415 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13416
13417         * ThemeWin32Classic.cs: remove border drawing since it is handled
13418         by the base control class now and was causing double border drawing.
13419
13420 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13421
13422         * Panel.cs: Redraw our background on paint. Not a pretty solution,
13423           but it does seem to match MS behaviour. This fixes bug #75324
13424
13425 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13426
13427         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
13428           somewhat hackish looking
13429
13430 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13431
13432         * TextBoxBase.cs:
13433           - We now accept Enter even if AcceptEnter is false, if the containing
13434             form does not have an AcceptButton configured (fixes bug #76355)
13435           - Calculations are now fixed to no longer use Width/Height, but
13436             ClientSize.Width/Height, since we now support borders (this was
13437             a result of fixing borders and therefore bug #76166)
13438           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
13439             true (fixes bug #76354)
13440         
13441 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13442
13443         * Control.cs: 
13444           - Defaulting BorderStyle and setting it in XplatUI when our window 
13445             is created
13446           - Added enum check to InternalBorderStyle setter
13447         * XplatUIX11.cs: 
13448           - Added drawing of window borders
13449           - Now properly calculates WM decorations offset for toplevel 
13450             windows (fixes bug #74763)
13451         * XplatUIWin32.cs: 
13452           - Implemented BorderStyles for windows (we're letting win32 draw 
13453             the border for us)
13454           - Fixed the signature for SetWindowLong
13455         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
13456           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
13457           setting borders
13458         * UpDownBase.cs: Remove drawing of borders, this is handled by
13459           the driver, outside the client area
13460         * ListView.cs: Removed bogus border calculations. The control should
13461           be oblivious to borders, since those are not part of the client
13462           area. 
13463         * X11DesktopColors.cs: Commented out (currently) unneeded variables
13464         * ThemeWin32Classic.cs: Removed border calculations from ListView 
13465           drawing code
13466
13467 2005-10-06  Jackson Harper  <jackson@ximian.com>
13468
13469         * MdiChildContext.cs: Clear out the old virtual position remove
13470         all the unneeded calls to CreateGraphics.
13471
13472 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13473
13474         * TextControl.cs: Use proper color for highlighted text; fixes #76350
13475
13476 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13477
13478         * Form.cs: 
13479           - Added loading and setting of our new default icon
13480           - Only set icon if window is already created
13481
13482 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13483
13484         * Label.cs:
13485           - Do not explicitly set the foreground and background colors, to
13486             allow inheriting from parents (fixes #76302)
13487           - Use Control's InternalBorderStyle property to deal with borders
13488
13489 2005-10-06  Jackson Harper  <jackson@ximian.com>
13490
13491         * MdiChildContext.cs: Use the new xplatui function to draw a
13492         reversible rect.
13493
13494 2005-10-06  Jackson Harper  <jackson@ximian.com>
13495
13496         * Form.cs: Add the parent before creating the child context cause
13497         we need the parent when setting up the child.
13498
13499 2005-10-06  Jackson Harper  <jackson@ximian.com>
13500
13501         * FolderBrowserDialog.cs: redo the tree population code so a
13502         second thread isn't used. Should be a lot faster and more stable
13503         now.
13504
13505 2005-10-05  Jackson Harper  <jackson@ximian.com>
13506
13507         * TreeView.cs: There are no expand/collapse boxes if the node has
13508         no children.
13509
13510 2005-10-05  Jackson Harper  <jackson@ximian.com>
13511
13512         * X11DesktopColors.cs: Get menu colours for the gtk theme.
13513
13514 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
13515
13516         * FileDialog.cs: Fix InitialDirectory
13517
13518 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13519
13520         * ComboBox.cs:
13521                 - Fixes changing between styles
13522                 - Fixes simple mode
13523                 - Fixes last item crashing when navigating with keyboard
13524
13525 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13526
13527         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
13528
13529 2005-10-05  Jackson Harper  <jackson@ximian.com>
13530
13531         * TreeView.cs: If updating the root node do a full refresh.
13532         * TreeNode.cs: The root node should be expanded by default. Also
13533         added a utility prop to tell if we are the root node.
13534         * TreeNodeCollection.cs: Only refresh if the node we are being
13535         added to is expanded. Also added a comment on a potential
13536         optimization.
13537         
13538 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
13539
13540         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
13541           in dispose method. Fixes #76330
13542
13543 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
13544
13545         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
13546
13547                 - Implements vertical and horizontal scrolling using XplatUI
13548                 - Fixes keyboard navagation
13549                 - Fixes EnsureVisible
13550                 - Drawing fixes
13551                 - Handles and draws focus properly
13552
13553
13554 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
13555
13556         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
13557           Create handle. NET_2_0: Destroy handle when value is null.
13558
13559 2005-10-03  Jackson Harper  <jackson@ximian.com>
13560
13561         * ScrollBar.cs: My last scrollbar patch was broken. This is a
13562         revert and a new patch to prevent the thumb from refreshing so
13563         much.
13564
13565 2005-10-02  Jackson Harper  <jackson@ximian.com>
13566
13567         * ScrollBar.cs: Don't update position if it hasn't actually
13568         changed. This occurs when you hold down the increment/decrement
13569         buttons and the thumb gets to the max/min.
13570
13571 2005-10-01  Jackson Harper  <jackson@ximian.com>
13572
13573         * Form.cs:
13574         * MdiChildContext.cs:
13575         * MdiClient.cs: Implement ActiveMdiChild in Form.
13576
13577 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
13578
13579         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
13580
13581 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
13582
13583         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
13584           be found
13585
13586 2005-09-30  Jackson Harper  <jackson@ximian.com>
13587
13588         * ListBox.cs: Don't do a full refresh unless some data has
13589         actually changed.
13590
13591 2005-09-30  Jackson Harper  <jackson@ximian.com>
13592
13593         * TreeView.cs: Make sure that the checkboxes size is factored in
13594         even when not visible.
13595
13596 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13597
13598         * FileDialog.cs: Fix Jordi's build break
13599
13600 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13601
13602         * FileDialog.cs: 
13603                 - Use standard the Windows colours for the combobox as espected
13604                 - Dispose objects that use resouces when no longer need them
13605
13606 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13607
13608         * X11DesktopColors.cs: Initial incomplete implementation
13609         * XplatUIX11.cs: Added call to initialize X11DesktopColors
13610
13611 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
13612
13613         * Theme.cs: 
13614           - Switched Theme color names to match the names defined in 
13615             System.Drawing.KnownColors. Life's hard enough, no need to make 
13616             it harder.
13617           - Added setters to all theme color properties so themes can set
13618             their color schemes. The setters also propagate the color changes
13619             to System.Drawing.KnownColors via reflection
13620         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
13621           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
13622           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
13623           use the new, more logical theme color names
13624         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
13625           post-NT colors
13626         * ThemeWin32Classic.cs:
13627           - Removed code to set the old classic Windows colors. Instead it
13628             now relies on the colors returned by System.Drawing.KnownColors
13629             which will be either modern static colors (Unix) or colors
13630             read from the user's configuration (Win32)
13631           - Updated to use the new, more logical theme color names
13632           - Switched DataGrid drawing code to use only Theme colors instead of
13633             a mix of System.Drawing.KnownColors and Theme colors
13634           - DrawFrameControl(): Removed code that fills the button area, the
13635             fill would overwrite any previous fill done by a control. This
13636             fixes bug #75338 
13637           - Added DrawReversibleRectangle() stub
13638         * ScrollableControl.cs: Set visible state to false when scrollbars
13639           are removed (pdn fix)
13640         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
13641           DrawReversibleRectangle() method to allow drawing primitive 
13642           'rubber bands'
13643         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
13644
13645 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13646
13647         * ImageList.cs: Add(Icon): Create handle.
13648
13649 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13650
13651         * ListView.cs:
13652         * ThemeWin32Classic.cs:
13653                 - Fixes detail mode
13654                 - Sets clippings
13655                 - Issues with drawing
13656
13657 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13658
13659         * ImageList.cs: Moved RecreateHandle back to ImageList as event
13660           source has to be the ImageList.
13661
13662 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13663
13664         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
13665
13666 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13667
13668         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
13669
13670 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13671
13672         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
13673
13674 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
13675         * GridItem.cs: Fixed TODOs
13676         * GridItemCollection.cs: Added ICollection interface
13677
13678 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13679
13680         * ImageList.cs: Resize icons when needed.
13681
13682 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
13683
13684         * ListViewItem.cs
13685                 - Fixes GetBounds and returns on screen rects
13686         * ListView.cs:
13687                 - Fixes vertical and horzintal scrolling of items
13688         * ThemeWin32Classic.cs:
13689                 - Fixes drawing
13690                 
13691 2005-09-29  Raja R Harinath  <harinath@gmail.com>
13692
13693         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
13694
13695 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
13696
13697         * ImageList.cs: Added comments about handle creation. Moved Handle,
13698           HandleCreated and OnRecreateHandle implementations to ImageCollection.
13699           Handle is created in Add methods.
13700
13701 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13702          
13703         * DataGridDrawingLogic.cs: 
13704                 - Takes rows into account on Colum calculations
13705                 - Returns the column when clickig
13706         * DataGrid.cs:
13707                 - Fixes default HitTestInfo values
13708                 - Fixes HitTestInfo.ToString
13709                 - Fixes ResetBackColor          
13710         
13711 2005-09-28  Jackson Harper  <jackson@ximian.com>
13712
13713         * MdiChildContext.cs: Obey rules for fixed sized windows (no
13714         sizing or cursor changes). Also added some temp code to draw the
13715         titlebars text (Makes dev a little easier).
13716
13717 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13718
13719         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
13720
13721 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13722          
13723         * ListBox.cs: Fixes bug 76253
13724
13725 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13726
13727         * ImageList.cs: Added comments about the current implementation. Added
13728           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
13729           Format32bppArgb to preserve transparency and can use Graphics.FromImage
13730           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
13731           with Bitmap.LockBits for better performance. Revised the whole file to
13732           match MS.NET behaviour and provide better performance. Non-public
13733           interface members are calling public members even when they throw
13734           NotSupportedException for better maintainability. Moved ColorDepth,
13735           ImageSize, ImageStream and TransparentColor implementations to
13736           ImageCollection for better performance as these properties are not used
13737           by ImageList.
13738         * ImageListStreamer.cs: Added a new internal constructor that takes an
13739           ImageList.ImageCollection and serializes Images based on
13740           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
13741           match ImageList property name.
13742
13743 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
13744
13745         * ListBox.cs: Fixes IndexFromPoint for last item
13746
13747 2005-09-27  Jackson Harper  <jackson@ximian.com>
13748
13749         * Form.cs: Set the position of new mdi children correctly.
13750
13751 2005-09-27  Jackson Harper  <jackson@ximian.com>
13752
13753         * MdiClient.cs: New mdi children need to be added to the back of
13754         the controls collection so the zorder is set correctly. Also add a
13755         count of all the child windows that have been created.
13756
13757 2005-09-27  Jackson Harper  <jackson@ximian.com>
13758
13759         * Form.cs (CreateParams): Setup MDI forms correctly.
13760
13761 2005-09-27  Jackson Harper  <jackson@ximian.com>
13762
13763         * MdiChildContext.cs:
13764         * MonthCalendar.cs:
13765         * UpDownBase.cs:
13766         * ListBox.cs:
13767         * ListView.cs:
13768         * TextBoxBase.cs:
13769         * TreeView.cs:
13770         * ScrollableControl.cs:
13771         * ComboBox.cs: Add implicit controls using the new implict control
13772         functionality in ControlCollection. Also try to block multiple
13773         control add in a suspend/resume layout to save some cycles.
13774         
13775 2005-09-27  Jackson Harper  <jackson@ximian.com>
13776
13777         * Control.cs: Add functionality to the controls collection to add
13778         'implicit controls' these are controls that are created by the
13779         containing control but should not be exposed to the user. Such as
13780         scrollbars in the treeview.
13781         * Form.cs: The list var of the ControlsCollection is no longer
13782         available because of the potential of implicit controls getting
13783         ignored by someone accessing the list directly.
13784
13785 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
13786
13787         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
13788           loose it's parent. (Fixed bug introduced in r49103 when we added
13789           setting the child parent to null on Remove)
13790
13791 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
13792
13793         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
13794         * Splitter.cs: Added missing attributes for BorderStyle property.
13795         * TextBoxBase.cs: Marked Calculate* methods internal.
13796         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
13797         MS.NET.
13798
13799 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
13800          
13801         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
13802
13803 2005-09-25  Jackson Harper  <jackson@ximian.com>
13804
13805         * TreeView.cs: Update the node bounds correctly regardless of
13806         whether the node is visible.
13807
13808 2005-09-25  Jackson Harper  <jackson@ximian.com>
13809
13810         * ImageList.cs: Don't dispose the image after it is added to the
13811         image list. Only reformat images that need to be resized.
13812
13813 2005-09-25  Jackson Harper  <jackson@ximian.com>
13814
13815         * ImageList.cs: Don't set the format when changing the image.
13816
13817 2005-09-25  Jackson Harper  <jackson@ximian.com>
13818
13819         * TreeView.cs: We can't just assume the node has a font. Use the
13820         treeviews font if no node font is available.
13821
13822 2005-09-25  Jackson Harper  <jackson@ximian.com>
13823
13824         * TreeView.cs: Allow the scrollbars to be reset with negative
13825         values.
13826         - Don't add scrollbars to negative sized windows.
13827
13828 2005-09-23  Jackson Harper  <jackson@ximian.com>
13829
13830         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
13831         old Mono.Posix. Also remove some stray code that shouldn't have
13832         been committed.
13833
13834 2005-09-23  Jackson Harper  <jackson@ximian.com>
13835
13836         * TreeView.cs: Attempt at proper sizing of the horizontal
13837         scrollbar. Also don't resize the scrollbars unless they are
13838         visible.
13839
13840 2005-09-23  Jackson Harper  <jackson@ximian.com>
13841
13842         * TreeView.cs: We don't need to expand the invalid area when the
13843         selection changes, as this is all drawn in the node's bounding
13844         box. The area needs to be expanded (previous typo was contracting
13845         it) when the focus rect moves.
13846
13847 2005-09-23  Jackson Harper  <jackson@ximian.com>
13848
13849         * TreeView.cs: Display the selection box under the correct
13850         circumstances. We were rendering white text with no selection box
13851         before.
13852
13853 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
13854
13855         * TextControl.cs(Split): Now updates selection start/end if it points 
13856           into a line that's being split. Fixes a FIXME and bug #75258
13857
13858 2005-09-23  Jackson Harper  <jackson@ximian.com>
13859
13860         * Binding.cs:
13861         * ListControl.cs: Don't use the path when retrieving binding
13862         managers from the binding context. My bat sense tells me that the
13863         path is only used on insertion.
13864
13865 2005-09-22  Jackson Harper  <jackson@ximian.com>
13866
13867         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
13868
13869 2005-09-22  Jackson Harper  <jackson@ximian.com>
13870
13871         * Splitter.cs: There are special cursors used for splitting.
13872         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
13873
13874 2005-09-22  Jackson Harper  <jackson@ximian.com>
13875
13876         * Splitter.cs: Change the cursor appropriately when the splitter
13877         is moused over, so the user actually knows there is a splitter
13878         there.
13879
13880 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13881
13882        * Label.cs : Fix ToString method to give same output as MS.NET
13883
13884 2005-09-22  Jackson Harper  <jackson@ximian.com>
13885
13886         * TreeView.cs: Create the scrollbars when the handle is created
13887         and add them right away, just make them invisble. Also account for
13888         the window being shrunk vertically to the point that the vert
13889         scrollbar needs to be added.
13890         - Remove some 0.5 adjustments to get around anti aliasing issues.
13891         
13892 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
13893          
13894         * MainMenu.cs: Fixes default value
13895         * MenuItem.cs: Fixes default value
13896
13897 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
13898
13899         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
13900
13901 2005-09-21  Jackson Harper  <jackson@ximian.com>
13902
13903         * Control.cs: Don't try to set the border style on the window if
13904         it hasn't been created. When the window is created the border
13905         style will be used.
13906
13907 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13908
13909         * Control.cs (Update): Don't call XplatUI if we don't have a
13910           window handle yet
13911
13912 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13913
13914         * ContainerControl.cs: Instead of throwing an exception, print
13915           a one-time warning about Validate not being implemented
13916         * XplatUIWin32.cs: Removed debug output
13917
13918 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13919
13920         * Control.cs: Only set XplatUI background if we expect the windowing
13921           system to handle the background. This stops controls that draw their
13922           own background from flickering
13923
13924         * XplatUIX11.cs: Support custom visuals and colormaps for window 
13925           creation. This allows, amongst other things, using MWF X11 windows 
13926           with OpenGL.
13927
13928 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13929
13930         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
13931           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
13932           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
13933           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
13934           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
13935           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
13936           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
13937           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
13938           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
13939           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
13940           GridColumnStylesCollection.cs, 
13941           IDataGridColumnStyleEditingNotificationService.cs,
13942           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
13943           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
13944           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
13945           TreeNodeCollection.cs, AmbientProperties.cs, 
13946           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13947           DataObject.cs, ErrorProvider.cs, Splitter.cs,
13948           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
13949           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
13950           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
13951           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
13952           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
13953           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
13954           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
13955           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
13956           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
13957           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
13958           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
13959           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
13960           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
13961           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
13962           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
13963           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
13964           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
13965           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
13966           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
13967           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
13968           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
13969           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
13970           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
13971           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
13972           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
13973           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
13974           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
13975           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
13976           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
13977           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
13978           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
13979           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
13980           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
13981           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
13982           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
13983
13984 2005-09-21  Jackson Harper  <jackson@ximian.com>
13985
13986         * TreeNode.cs: Call Before/After Expand not Collapse when
13987         expanding.
13988
13989 2005-09-20  Jackson Harper  <jackson@ximian.com>
13990         
13991         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
13992
13993 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13994          
13995         * ListViewItem.cs:
13996                 - Fixes bug 76120
13997                 - Fixes proper storing of subitems
13998                 - Fixes not updated items
13999
14000 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
14001
14002         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
14003           things if our window handle isn't created yet. Also disabled 
14004           debug for TextBoxBase
14005
14006 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
14007
14008         * MenuAPI.cs: Remove filtering of events to allow menu usage
14009
14010 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14011
14012         * Cursor.cs: Allow null to be passed to Cursor.Current.
14013
14014 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
14015
14016         * ThemeWin32Classic.cs:
14017           - Change some private methods/fields to protected virtual so that 
14018             they can be accessed and overriden in derived classes
14019           - First refactoring of some methods. Derived themes now don't 
14020             need to duplicate the complete code from ThemeWin32Classic
14021         * ThemeNice.cs:
14022           - Added nice StatusBar
14023           - Derive from ThemeWin32Classic and not Theme
14024           - Removed duplicate ThemeWin32Classic code
14025
14026 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14027
14028         * Control.cs (ControlCollection.Add): If the value null is passed
14029         the control is ignored. 
14030
14031         Optimize this loop.
14032
14033 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
14034
14035         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
14036           PostQuitMessage state.
14037         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
14038
14039 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
14040
14041         * Application.cs: Our constructor will never get called, move 
14042           initialization to fields; fixes bug #75933
14043
14044 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14045
14046         * FileDialog.cs :
14047                 - Allow files to be selected properly using file name
14048                 combo box.
14049                 - Add ability to change diretory (absolute / relative)
14050                 using file name combo box.
14051
14052 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14053          
14054         * ListBox.cs: 
14055                 - Fixes Multicolumn listboxes item wrong calculations
14056                 - Allows to click when only one item is in the listbox
14057                 - Fixes crash when no items using keyboard navigation
14058
14059 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
14060
14061         * ComboBox.cs: Reverted almost everything from the latest patch which
14062           broke ComboBox
14063
14064 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
14065         
14066         * ToolTip.cs:
14067                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
14068         * ComboBox.cs:
14069                 - When DropDownStyle is Simple, it does not show scrollbar 
14070                 to the last item of the list.
14071                 - When DropDownStyle is Simple, it crashed when the list was 
14072                 scrolled down with the down cursor key.
14073                 - Fixed a bug that when DropDownStyle is DropDownList, the 
14074                 selected item was not shown.
14075                 - The position of the selected item was not preserved when 
14076                 the next dropdown happened.
14077         * ThemeWin32Classic.cs:
14078                 - Items were wrapped at the right end.
14079         * CheckedListBox.cs:
14080                 - Fixed Add method
14081         * ListBox.cs:
14082                 - Items should be fully shown.
14083                 - When resizing and vertical scrollbar disappeared, the item 
14084                 of index 0 should be on the top of the list.
14085                 - GetItemRectangle should consider the size of ver. scrollbar
14086         * StatusBar.cs:
14087                 - SizingGrip area should not be allocated when it is not 
14088                 displayed.
14089                 - Now it reflects MinWidth of the containing panel and 
14090                 fixed a crash that happens when its width becomes so small.
14091
14092 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14093
14094         * CheckedListBox.cs: Fixes bug 76028
14095         * ListBox.cs: Fixes bug 76028
14096
14097 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14098
14099         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
14100         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
14101
14102 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
14103
14104         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
14105
14106 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14107
14108         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
14109
14110 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14111
14112         * IRootGridEntry.cs: Added
14113         * PropertyGridCommands.cs: Added
14114         * PropertiesTab.cs: Added missing methods and property
14115         * PropertyGridView.cs: Made class internal
14116         * PropertyGridTextBox.cs: Made class internal
14117
14118 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14119
14120         * MimeIcon.cs: Try to check some other environment variables
14121           if "DESKTOP_SESSION" returns "default"
14122
14123 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14124
14125         * ThemeNice.cs: Corrected background colors (e.g. menus)
14126         * ColorDialog.cs: Use correct background colors for controls
14127
14128 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14129
14130         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
14131
14132 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
14133
14134         * RichTextBox.cs: Added initial implementation
14135         * lang.cs: Removed. Was accidentally checked in long time ago
14136         * TODO: Removed. Contents were obsolete
14137
14138 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14139                                                                                 
14140         * PropertiesTab.cs : Added
14141
14142 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14143                                                                                 
14144         * PropertyGrid.cs : Update
14145         * PropertyGridView.cs : Update
14146         * System.Windows.Forms.resx : Added images and strings
14147
14148 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
14149
14150         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
14151  
14152 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
14153
14154         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
14155           a busy loop right after the Ungrab the X11 display is otherwise 
14156           blocked
14157
14158 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
14159
14160         * ThemeWin32Classic.cs: Optimise the use of clipping
14161
14162 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
14163
14164         * DataGrid.cs: fixes recursion bug
14165
14166 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
14167
14168         * ThemeNice.cs: 
14169           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
14170           - Cleanup
14171
14172 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
14173
14174         * ThemeNice.cs: Draw nice ProgressBars
14175
14176 2005-09-01  Miguel de Icaza  <miguel@novell.com>
14177
14178         * VScrollBar.cs: Another buglet found by Aaron's tool. 
14179
14180         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
14181         bug finder.
14182
14183 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
14184
14185         * ThemeNice.cs:
14186           - Added nicer menu drawing
14187           - Updated DrawTab
14188           - some refactoring
14189
14190 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14191
14192         * CreateParams.cs (ToString): Made output match MS
14193         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
14194             handle is already created (to avoid forcing window creation)
14195         * XplatUIX11.cs: Set window text to caption after creating window,
14196           in case Text was set before window was created
14197         * Form.cs: Use this.Text instead of a static string as caption
14198
14199 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14200
14201         * NotifyIcon.cs: Don't set the window to visible; this screws
14202           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
14203           OnPaint without a bitmap)
14204         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
14205           happen very often anyway; we could add the check to the WM_PAINT 
14206           event generation code
14207
14208 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14209
14210         * NotifyIcon.cs: Fill the icon area with a background color, to 
14211           avoid 'residue' when transparent icons are drawn
14212         * XplatUIX11.cs:
14213           - Handle whole_window == client_window when destroying windows
14214           - SystrayAdd(): Set client_window to whole_window value to
14215             get mouse and other events passed to NotifyIcon
14216
14217 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14218
14219         * Form.cs: Set proper default for Opacity property
14220         * NotifyIcon.cs:
14221           - ShowSystray(): Don't bother creating telling the OS
14222             about the systray item if no icon is provided
14223           - Now handles WM_NCPAINT message to deal with whole/client window
14224             split
14225           - Create window as visible to not get caught by Expose optimization
14226         * Hwnd.cs: Removed debug message
14227         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
14228           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
14229             PaintEventStart/End to use new client argument
14230         * TextBoxBase.cs:
14231           - Commented out debug messages
14232           - Switched PaintEventStart/End to use new client argument
14233         * XplatUI.cs: Added client window bool to PaintEventStart()/
14234           PaintEventEnd() calls, to support drawing in non-client areas
14235         * XplatUIDriver.cs: 
14236           - Added client window bool to PaintEventStart()/PaintEventEnd() 
14237             calls, to support drawing in non-client areas
14238           - Added conditional compile to allow using MWF BeginInvoke 
14239             on MS runtime
14240         * XplatUIX11.cs:
14241           - Added some conditional debug output
14242           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
14243             whole/client window split
14244           - Implemented handling of client argument to PaintEventStart()/End()
14245         * Control.cs:
14246           - Throw exception if BeginInvoke() is called and the window handle
14247             or one of the window's parent handles is not created
14248           - Added conditional compile to allow using MWF BeginInvoke on
14249             MS runtime
14250           - get_Parent(): Only sets parent if handle is created. This avoids
14251             forcing window handle creation when parent is set.
14252           - Now fires Layout and Parent changed events in proper order
14253           - Switched to use Handle instead of window.Handle for Z-Order setting,
14254             the get_Parent() patch above causes us to possibly get null for 'window'
14255           - Implemented handling of client argument to PaintEventStart()/End()
14256           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
14257             default handling)
14258           - Now sends a Refresh() to all child windows when Refresh() is called
14259
14260 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14261
14262         * Form.cs: Added (non-functional) Opacity property
14263         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
14264
14265 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
14266         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
14267           use export MONO_THEME=nice to activate it.
14268           Currently supported controls:
14269           - Button
14270           - ComboBox
14271           - ScrollBar
14272           - TabControl (TabAlignment.Top only, other will follow)
14273         * ThemeEngine.cs: Add theme nice
14274         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
14275           if enabled
14276
14277 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
14278
14279         * Splitter.cs: Resize docked control and its neighbor.
14280
14281 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14282         -- Making Windows with Menus layout correctly --
14283         * Form.cs : The first leg of the fix
14284                 Menu setter - adjust Client Size as needed to make space for the menu
14285                 SetClientSizeCore - doesn't call base version to be able to pass the 
14286                         menu handle to XplatUI.CalculateWindowRect
14287         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
14288         * XplatUIX11.cs: The critical second leg of the fix
14289                 GetWindowPos needs to use a recalculated client_rect
14290                 so that resizing the window doesn't break layout of child controls. 
14291                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
14292                 Lots of \t\n killed
14293
14294 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14295
14296         * Label.cs: Now properly recalculates width and height on Font and Text
14297           changes if AutoSize is set
14298
14299 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14300         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
14301
14302 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
14303
14304         * ImageList.cs: Makes ToString method compatible with MS
14305
14306 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
14307
14308         * MenuAPI.cs: fixes bug 75716
14309
14310 2005-08-11 Umadevi S <sumadevi@novell.com>
14311         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
14312
14313 2005-08-11 Umadevi S <sumadevi@novell.com>
14314         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
14315
14316 2005-08-10  Umadevi S <sumadevi@novell.com>
14317         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
14318
14319 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
14320
14321         * Menu.cs: fixes bug 75700
14322         * MenuAPI.cs: fixes navigation issues
14323
14324 2005-08-09  Umadevi S <sumadevi@novell.com>
14325         * CheckedListBox.cs - simple fix for GetItemChecked.
14326
14327 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
14328
14329         * ComboBox.cs: Serveral fixes
14330         * ListBox.cs: Serveral fixes
14331
14332 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14333
14334         * ComboBox.cs: Fixes FindString methods and GetItemHeight
14335         * ListBox.cs: Fixes FindString methods
14336
14337 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14338
14339         * DataGrid.cs: fixes bugs exposed by new tests
14340
14341 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
14342
14343         * Mime.cs: Compile Mono assembly references only if compiling
14344           with Mono (Allows to build with VS.Net again)
14345
14346 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
14347
14348         * Control.cs (PaintControlBackground): Draw background image
14349         corrrectly.
14350         (CheckForIllegalCrossThreadCalls): Stubbed.
14351         
14352         * Form.cs (OnCreateControl): Center when should be centered.
14353         
14354         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
14355
14356 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
14357
14358         * Binding.cs: Binding to properties should be case unsensitive
14359
14360 2005-07-18 vlindos@nucleusys.com
14361
14362         * DataGrid.cs: fixes setmember order
14363
14364 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
14365
14366         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
14367         * FileDialog.cs: FileDialog is now resizable and uses the new
14368           MimeIconEngine
14369
14370 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
14371
14372         * DataGridTextBoxColumn.cs: default value
14373         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
14374         * GridTableStylesCollection.cs: fixes checking MappingName
14375         * DataGridDrawingLogic.cs: fixes drawing logic issues
14376         * DataSourceHelper.cs: rewritten to make compatible with more data sources
14377         * DataGrid.cs: fixes    
14378
14379 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
14380
14381         * MimeGenerated.cs: Use case sensitive comparer for
14382           NameValueCollections
14383
14384 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
14385
14386         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
14387         * ThemeWin32Classic.cs: bug fixes, code refactoring
14388         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
14389         * DataGrid.cs: bug fixes, code refactoring
14390         * DataGridTextBox.cs: bug fixes, code refactoring
14391         * DataGridColumnStyle.cs:  bug fixes, code refactoring
14392         * Theme.cs:  bug fixes, code refactoring
14393
14394 2005-07-01  Peter Bartok  <pbartok@novell.com> 
14395
14396         * TextControl.cs: Quick fix for the reported crash on ColorDialog
14397           and other text box usage
14398
14399 2005-07-01  Jackson Harper  <jackson@ximian.com>
14400
14401         * TabControl.cs: Make sure the bottom of the tab covers the pages
14402         border.
14403
14404 2005-06-30  Peter Bartok  <pbartok@novell.com> 
14405
14406         * Form.cs (ShowDialog): Assign owner of the dialog
14407         * TextBoxBase.cs: Always refresh caret size when deleting, caret
14408           might have been moved to a tag with different height
14409
14410 2005-06-30  Jackson Harper  <jackson@ximian.com>
14411
14412         * Form.cs: Don't create an infinite loop when setting focus
14413         * MenuItem.cs: Don't dirty the parents if we don't have any
14414
14415 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
14416
14417         * LibSupport.cs: Rename
14418
14419 2005-06-29  Peter Bartok  <pbartok@novell.com>
14420
14421         * TextBoxBase.cs: Re-align caret after deleting a character
14422         * TextControl.cs:
14423           - DeleteChars(): Ensure that tag covers the provided position
14424           - StreamLine(): Drop reference for dropped tag
14425
14426 2005-06-29  Peter Bartok  <pbartok@novell.com> 
14427
14428         * TextControl.cs: 
14429           - Selections now work properly, anchoring at the initial location
14430             and properly extending in either direction (SetSelectionToCaret(),
14431             SetSelectionStart() and SetSelectionEnd())
14432           - No longer redraws the whole control on selection change, now
14433             calculates delta between previous and new selection and only
14434             invalidates/redraws that area
14435           - Fixed FindPos() math off-by-one errors
14436           - Changed DeleteChars() to verify the provided tag covers the
14437             provided position, selections may have a tag that doesn't cover
14438             the position if the selection is at a tag border
14439           - Fixed off-by-one errors in DeleteChars()
14440           - Added missing streamlining check in DeleteChars() to remove
14441             zero-length tags
14442           - Implemented Invalidate() method, now properly calculates exposures
14443             between two given lines/positions
14444           - Implemented SetSelection()
14445           - Obsoleted and removed FixupSelection()
14446           - Improved RecalculateDocument() logic, removing code duplication
14447
14448 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14449
14450         * LibSupport.cs: changes to match different input/output arguments.
14451
14452 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14453
14454         * LibSupport.cs: added libsupport.so init routine.
14455
14456 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
14457         
14458         * ControlBindingsCollection.cs
14459                 - Throws an exception on null datasource when adding
14460                 - Checks for duplicated bindings when adding
14461
14462 2005-06-28  Jackson Harper  <jackson@ximian.com>
14463
14464         * TreeView.cs (OnKeyDown): Support left and right properly
14465         (navigates as well as expanding and collapsing.
14466         - Add support for Multiply, this expands all the selected nodes
14467         children.
14468         - Fix some tabbing.
14469
14470 2005-06-28  Jackson Harper  <jackson@ximian.com>
14471
14472         * TreeView.cs: Implement keyboard navigation, currently supports,
14473         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
14474         support for toggling checkboxes with the space bar.
14475
14476 2005-06-28  Jackson Harper  <jackson@ximian.com>
14477
14478         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
14479         tree.
14480
14481 2005-06-28  Jackson Harper  <jackson@ximian.com>
14482
14483         * TreeView.cs: Add missing event.
14484
14485 2005-06-27  Peter Bartok  <pbartok@novell.com> 
14486
14487         * TextControl.cs:
14488           - Made line ending size configurable (now allows for counting 
14489             lineendings as \n or \r\n)
14490           - Added margin to viewport to keep caret visible on right side
14491           - Fixed translation routines for line/pos to documentpos to consider
14492             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
14493           - Fixed some line-endings to be unix style
14494           - Fixed Document.FormatText to perform it's calculations 1-based
14495           - Added descriptions for a few methods that might otherwise get 
14496             used wrong
14497           - Added NOTE section with some basic conventions to remember at 
14498             the top of the file
14499           - Major fixup for RichTextBox selection drawing:
14500             * Fixed crashes when multiple tags on a single line were selected
14501             * fixed selection box drawing not overlaying text
14502             * fixed bogus offset calculation for tags not starting at index 1
14503             * Switched behaviour from using multiple Substrings of a 
14504               StringBuilder.ToString() to using multiple 
14505               StringBuilder.ToString(start, length) statements, hoping this is
14506               faster (kept original version commented out in the code, in case
14507               original version was faster)
14508         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
14509           alignment != Left
14510         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
14511           call it as well
14512
14513 2005-06-27  Jackson Harper  <jackson@ximian.com>
14514
14515         * TabControl.cs: Move to the left and right with the arrow
14516         keys. These keys don't cycle beyond first and last like
14517         tab. Refresh all the tabs when scrolling them to the left or
14518         right.
14519
14520 2005-06-27  Jackson Harper  <jackson@ximian.com>
14521
14522         * TabControl.cs:
14523           - ToString: Added method
14524           - CreateParams: Remove TODO and comment
14525           - OnKeyDown: Cycle through bounds properly.
14526           - SelectedIndex: Scroll to the right or left if we need to
14527           display the newly selected tab.
14528
14529 2005-06-23  Jackson Harper  <jackson@ximian.com>
14530
14531         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
14532         set.
14533
14534 2005-06-23  Jackson Harper  <jackson@ximian.com>
14535
14536         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
14537         CTRL-SHIFT-TAB, and HOME, END are there any others?
14538
14539 2005-06-23  Jackson Harper  <jackson@ximian.com>
14540
14541         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
14542
14543 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14544         
14545         * DataGridTextBoxColumn.cs: fixes and enhancements
14546         * ThemeWin32Classic.cs: fixes and enhancements
14547         * DataGridBoolColumn.cs:  fixes and enhancements
14548         * DataGridDrawingLogic.cs:  fixes and enhancements
14549         * CurrencyManager.cs: fixes and enhancements
14550         * DataGrid.cs: fixes and enhancements
14551         * DataGridColumnStyle.cs:  fixes and enhancements
14552
14553 2005-06-22  Jackson Harper  <jackson@ximian.com>
14554
14555         * TabControl.cs: Add some missing methods that just call into the
14556         base. Make the TabPageCollection's IList interface behave in the
14557         same manner as the MS implementation.
14558
14559 2005-06-22  Peter Bartok  <pbartok@novell.com> 
14560
14561         * TextControl.cs: Added sanity check
14562         * TextBoxBase.cs: 
14563           - Fixed wrapping behaviour, don't set wrap on single line controls
14564             (this fixes the breakage of colordialog introduced in an earlier
14565              checkin)
14566           - Added rudimentary support for autoscrolling right-aligned controls
14567             (still needs fixing, also, center alignment scroll is missing)
14568
14569 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14570         
14571         * ScrollBar.cs: Fixes thumbpos on Maximum values
14572
14573 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
14574         
14575         * PropertyGridView.cs: Pass context information to UITypeEditors 
14576
14577 2005-06-21  Peter Bartok  <pbartok@novell.com> 
14578
14579         * TextBoxBase.cs:
14580           - Now calling PositionCaret with absolute space coordinates
14581           - Enabled vertical scrolling
14582           - Better tracking of scrollbar changes, tied into WidthChange
14583             event
14584           - Improved cursor tracking
14585           - Removed debug output
14586         * TextControl.cs:
14587           - PositionCaret coordinates are now works in absolute space, not 
14588             the canvas
14589           - Improved tracking of document size
14590           - Added events for width and height changes
14591
14592 2005-06-21  Peter Bartok  <pbartok@novell.com>
14593
14594         * Form.cs: Set focus to active control when form is activated
14595         * TextControl.cs: 
14596           - Added word-wrap functionality to RecalculateLine() 
14597           - Added some short function descriptions for VS.Net to aid in
14598             writing dependent controls
14599           - Added Caret property, returning the current coords of the caret
14600           - Added ViewPortWidth and ViewPortHeight properties
14601           - Added Wrap property
14602           - Added CaretMoved event
14603           - Removed some old debug code
14604           - Split() can now create soft splits
14605           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
14606           - Added method to format existing text
14607           - Fixed size/alignment calculations to use viewport
14608           - RecalculateDocument now can handle changing line-numbers while
14609             calculating lines
14610
14611         * TextBox.cs:
14612           - Added some wrap logic, we don't wrap if alignment is not left
14613           - Added casts for scrollbar var, base class switched types to
14614             also support RichTextBoxA
14615           - Implemented handling of scrollbar visibility flags
14616
14617         * TextBoxBase.cs:
14618           - Switched scrollbars type to RichTextBoxScrollBars to support
14619             RichTextBox
14620           - Added tracking of canvas width/height
14621           - Switched scrollbars to be not selectable (to keep focus on text)
14622           - Added central CalculateDocument() method to handle all redraw
14623             requirements
14624           - Added ReadOnly support
14625           - Added WordWrap support
14626           - Fixed handling of Enter key (we now treat it as a DialogKey)
14627           - Fixed caret positioning when h or v scroll is not zero
14628           - Fixed placing/generation of vertical scrollbar
14629           - Added CalculateScrollBars() method to allow updating scrollbar
14630             limits and visibility
14631           - Fixed handling of horizontal scroll
14632           - Added handling of vertical scroll
14633           - Implemented auto-'jump' when caret moves to close to a left or
14634             right border and there is text to be scrolled into view (currently
14635             there's the potential for a stack overflow, until a bug in
14636             scrollbar is fixed)
14637
14638 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
14639         
14640         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
14641
14642 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
14643
14644         * Mime.cs:
14645         - added inodes.
14646         - return application/x-zerosize for files with size zero
14647           (if no extension pattern matches).
14648         - check matches collection for strings too.
14649         - return only the first mime type if the name value
14650           collection has more than one mime type.
14651
14652 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
14653         
14654         * PropertyGrid.cs: Cleaned up some TODOs
14655         * PropertyGridView.cs: Added support for UITypeEditors
14656
14657 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14658         
14659         * DataGrid.cs: clears cached value
14660
14661 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14662
14663         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
14664         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
14665         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
14666         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
14667         
14668 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
14669
14670         * ThemeWin32Classic.cs: fixes colour
14671
14672 2005-06-15  Peter Bartok  <pbartok@novell.com>
14673
14674         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
14675         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
14676         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
14677         * Control.cs: Added some MWFCategory and MWFDescription attributes
14678         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
14679
14680 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
14681
14682         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
14683         usage
14684
14685 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
14686
14687         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
14688         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
14689         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
14690         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
14691         * DataGrid.cs: default datagrid settings for Default Styles, fixes
14692         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
14693
14694 2005-06-13  Jackson Harper  <jackson@ximian.com>
14695
14696         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
14697         isn't printed when the user enables dropping. (X11 does accept
14698         drops).
14699         
14700 2005-06-13  Jackson Harper  <jackson@ximian.com>
14701
14702         * TreeView.cs: Remove some TODOS.
14703
14704 2005-06-13  Jackson Harper  <jackson@ximian.com>
14705
14706         * Form.cs: Hook into the mdi framework.
14707         * MdiClient.cs: Use the base control collections add method so
14708         parents get setup correctly. Set the default back colour and dock
14709         style.
14710         * MdiChildContext.cs: New class, this bad actor handles an
14711         instance of an MDI window. Right now there is only basic
14712         support. You can drag, close, and resize windows. Minimize and
14713         Maximize are partially implemented.
14714
14715 2005-06-13  Jackson Harper  <jackson@ximian.com>
14716
14717         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
14718         freaky when both vals are negative. NOTE: There are probably other
14719         places in XplatUIX11 that this needs to be done.
14720
14721 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
14722
14723         * DataGrid.cs: implement missing methods, move KeyboardNavigation
14724         * DataGridColumnStyle.cs: fixes signature
14725
14726 2005-06-12  Jackson Harper  <jackson@ximian.com>
14727
14728         * XplatUIX11.cs: Use sizing cursors similar to the ones on
14729         windows.
14730
14731 2005-06-11  Jackson Harper  <jackson@ximian.com>
14732
14733         * StatusBarPanel.cs: Signature cleanups. Implement
14734         BeginInit/EndInit.
14735
14736 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
14737
14738         * DataGridTextBoxColumn.cs: Honors aligment
14739         * GridColumnStylesCollection.cs: Contains is case unsensitive
14740         * GridTableStylesCollection.cs: several fixes
14741         * DataGridTableStyle.cs: default column creation
14742         * DataGridDrawingLogic.cs: fixes
14743         * CurrencyManager.cs: ListName property
14744         * DataGrid.cs: multiple styles support
14745         * DataGridColumnStyle.cs: fixes
14746         
14747
14748 2005-06-10  Peter Bartok  <pbartok@novell.com>
14749
14750         * Control.cs(Select): Moved SetFocus call to avoid potential
14751           loops if controls change the active control when getting focus
14752         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
14753           the up/down buttons
14754
14755 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
14756
14757         * ImageListConverter.cs: Implemented
14758
14759 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14760
14761         * MonthCalendar.cs: Wired in NumericUpDown control for year
14762
14763 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14764
14765         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
14766           DoubleClick events, since they are not meant to be fired.
14767
14768 2005-06-09  Peter Bartok  <pbartok@novell.com>
14769
14770         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
14771           Jonathan's standalone controls into MWF, implemented missing
14772           events, attributes and methods; added xxxAccessible classes
14773         * AccessibleObject.cs: Made fields internal so other classes
14774           can change them if needed
14775
14776 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
14777
14778         * UpDownBase.cs: Complete implementation
14779         * NumericUpDown.cs: Complete implementation
14780         * DomainUpDown.cs: Complete implementation
14781
14782 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
14783
14784         * DataGridTextBoxColumn.cs: drawing fixes
14785         * DataGridCell.cs: fixes ToString method to match MSNet
14786         * DataGridTableStyle.cs: fixes
14787         * DataGridBoolColumn.cs: fixes, drawing
14788         * DataGridDrawingLogic.cs: fixes, new methods
14789         * DataGridTextBox.cs: Keyboard and fixes
14790         * DataGrid.cs:
14791                 - Keyboard navigation
14792                 - Scrolling fixes
14793                 - Row selection (single, multiple, deletion, etc)
14794                 - Lots of fixes
14795         
14796 2005-06-07  Jackson Harper  <jackson@ximian.com>
14797
14798         * ThemeWin32Classic.cs: Clear the background area when drawing
14799         buttons.
14800
14801 2005-06-06  Peter Bartok  <pbartok@novell.com>
14802
14803         * ImageListStreamer.cs: Fixed signature for GetData
14804         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
14805         * ComboBox.cs:
14806           - Added missing ChildAccessibleObject class
14807           - Added missing OnXXXFocus overrides, switched to using those
14808             instead of the event handler
14809         * Control.cs:
14810           - Added Parent property for ControlAccessibleObject
14811           - Fixed signatures
14812           - Fixed attributes
14813           - Added ResetBindings()
14814         * ListBindingConverter.cs: Implemented some methods
14815         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
14816         * ImageList.cs: Implemented basic handle scheme, removed TODOs
14817         * ContainerControl.cs: Fixed signature, now subscribing to the
14818           ControlRemoved event instead of overriding the handler, LAMESPEC
14819         * CurrencyManager.cs: Added missing attribute
14820         * MonthCalendar.cs: Added missing properties
14821
14822 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14823
14824         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
14825         
14826 2005-06-06  Gaurav Vaish and Ankit Jain
14827
14828         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
14829         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
14830         
14831 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14832
14833         * Control.cs: fixes CreateParams Width / Height.
14834
14835 2005-06-05  Peter Bartok  <pbartok@novell.com>
14836
14837         * Win32DnD.cs: Removed compilation warnings
14838
14839 2005-06-05  Peter Bartok  <pbartok@novell.com>
14840
14841         * Control.cs (CreateParams): Since we don't know if one of the
14842           properties we use is overridden, lets make sure if we fail accessing
14843           we continue with a backup plan
14844
14845 2005-06-05  Peter Bartok  <pbartok@novell.com>
14846
14847         * Win32DnD.cs:
14848           - Removed debug output
14849           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
14850             struct
14851           - Plugged resource leak
14852         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
14853           MS size
14854
14855 2005-06-05  Peter Bartok  <pbartok@novell.com>
14856
14857         * XplatUIWin32.cs: Removed DnD code
14858         * Win32DnD.cs: Implemented drop source and drop target functionality
14859
14860 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14861
14862         * UpDownBase.cs: remove duplicate addition of event, enable some code
14863         that was commented out.
14864         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
14865         Validate input when a key is pressed. It works fine now for every
14866         combination of Hexadecimal. Only missing some drawing love when sharing
14867         space with other controls.
14868
14869 2005-06-04  Peter Bartok  <pbartok@novell.com>
14870
14871         * Control.cs:
14872           - We need to pass a window for DragDrop, so enable callback events
14873           - Added DnD callback events when being a DragSource
14874         * XplatUI.cs (StartDrag): Added window handle argument
14875         * XplatUIDriver.cs (StartDrag): Added window handle argument
14876         * QueryContinueDragEventArgs: Made fields internally accessible so
14877           drivers can set them
14878         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
14879           can set them
14880
14881 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
14882
14883         * DataGridTextBoxColumn.cs: column text editing
14884         * DataGridTableStyle.cs: Respect columns styles created by the user
14885         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
14886         * DataGridBoolColumn.cs: bool column editing
14887         * DataGrid.cs: fixes to scrolling, properties, etc
14888         * DataGridTextBox.cs: handle keyboard
14889         * DataGridColumnStyle.cs: fixes
14890
14891 2005-06-02  Jackson Harper  <jackson@ximian.com>
14892
14893         * ImageListStreamer.cs: Somewhat broken implementation of
14894         GetObjectData. The RLE needs some work to match MS properly.
14895
14896 2005-06-02  Jackson Harper  <jackson@ximian.com>
14897
14898         * X11Dnd.cs: Attempting to keep at least one file in MWF
14899         monostyled.
14900
14901 2005-06-02  Peter Bartok  <pbartok@novell.com>
14902
14903         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
14904           that way
14905
14906 2005-06-02  Peter Bartok  <pbartok@novell.com>
14907
14908         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
14909         * XplatUI.cs: Added DoDragDrop() method
14910         * XplatUIDriver.cs: Added DoDragDrop() method
14911
14912 2005-06-02  Jackson Harper  <jackson@ximian.com>
14913
14914         * Splitter.cs: Implement BorderStyle.
14915
14916 2005-06-02  Jackson Harper  <jackson@ximian.com>
14917
14918         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
14919         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
14920         X11 using XDND.
14921
14922 2005-06-02  Peter Bartok  <pbartok@novell.com>
14923
14924         * DataObject.cs:
14925           - Added Data setter
14926           - Fixed broken insertion code for SetData, now also
14927             overwrites any existing entry of the same format name
14928         * Hwnd.cs: Added list of pointers that automatically gets
14929           freed when the window is disposed
14930         * XplatUI.cs: Call driver initialization method when loading
14931           a driver
14932         * Control.cs:
14933           - OnDragLeave takes EventArgs, not DragEventArgs
14934           - Added setting of WS_EX_ACCEPTFILES style when dropping is
14935             supported
14936           - Forces style update when drop state changes
14937         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
14938           not perfect since we cannot (yet) call the IDataObject.GetData()
14939           method, we keep getting 0x80004005 error, dunno why)
14940
14941 2005-06-02  Peter Bartok  <pbartok@novell.com>
14942
14943         * DragEventArgs.cs: Make fields internal so we can cache the
14944           object and re-set the fields from XplatUI
14945
14946 2005-06-02  Jackson Harper  <jackson@ximian.com>
14947
14948         * Control.cs: Add some internal methods so the DnD subsystem can
14949         raise DnD events. Also call into the driver when AllowDrop is set.
14950         * XplatUI.cs:
14951         * XplatUIDriver.cs: New method for setting whether or not a window
14952         is allowed to accept drag and drop messages.
14953                 
14954 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
14955         
14956         * ScrollBar.cs: Make sure that values sent in Scroll events
14957         are always between Maximum and Minimum.
14958
14959 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
14960
14961         * Menu.cs: Call MenuChanged when menuitem visibility has been
14962         changed.
14963         * MenuItem.cs: Rebuild menu when item is (not) visible.
14964         * MainMenu.cs: MainMenu has special MenuChanged.
14965         * Theme.cs: Caption and FrameBorderSize are not fixed.
14966         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
14967         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
14968         * XplatUIX11.cs,
14969         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
14970         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
14971
14972 2005-05-30  Jackson Harper  <jackson@ximian.com>
14973
14974         * DataFormat.cs: We can't statically initialize this stuff because
14975         it calls into the xplatui and could create a loop. So we lazy init
14976         it.
14977
14978 2005-05-28  Jackson Harper  <jackson@ximian.com>
14979
14980         * Control.cs: Proper implementation of Product(Name/Version).
14981
14982 2005-05-27  Jackson Harper  <jackson@ximian.com>
14983
14984         * DataObject.cs: Dont crash if no data is found.
14985
14986 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
14987         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
14988                 as per status page, guessing it should be set to true
14989
14990 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
14991
14992         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
14993         * DataGridTableStyle.cs: set proper formatting text, def header text
14994         * ThemeWin32Classic.cs: new themable paramaters
14995         * DataGridBoolColumn.cs: paint check box, get data, fixes
14996         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
14997         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
14998         * DataGridColumnStyle.cs: fixes
14999         * Theme.cs: new themable paramaters
15000                 
15001 2005-05-26  Peter Bartok  <pbartok@novell.com>
15002
15003         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
15004
15005 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15006         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
15007
15008 2005-05-24  Peter Bartok  <pbartok@novell.com>
15009
15010         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
15011           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
15012           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
15013           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
15014           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
15015           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
15016           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
15017           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
15018           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
15019           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
15020           missing attributes, etc
15021         * DataGridPreferredColumnWidthTypeConverter.cs: Added
15022
15023 2005-05-24  Peter Bartok  <pbartok@novell.com>
15024
15025         * Help.cs: Added, implemented trivial functions, throws up MessageBox
15026           when user tries to get help
15027         * DataObject.cs, DataFormats.cs, LinkArea.cs,
15028           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
15029           to suppress warnings
15030         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
15031           avoid unreachable code warning
15032
15033 2005-05-20  Peter Bartok  <pbartok@novell.com>
15034
15035         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
15036
15037 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15038
15039         * DataGridTextBoxColumn.cs: Basic painting methods
15040         * DataGridTableStyle.cs: Set table style in the column
15041         * ThemeWin32Classic.cs: Use Theme for colors
15042         * DataGridDrawingLogic.cs: Implement more drawing
15043         * DataGrid.cs: drawing, theming, enhacements, fixes
15044         * DataGridColumnStyle.cs: fixes, drawing
15045         * Theme.cs: theming for Datagrid
15046
15047 2005-05-20  Peter Bartok  <pbartok@novell.com>
15048
15049         * Cursor.cs: Implemented GetObjectData() method
15050
15051 2005-05-20  Peter Bartok  <pbartok@novell.com>
15052
15053         * Cursors.cs: Added setting of cursor name
15054         * Cursor.cs:
15055           - Implemented constructors
15056           - Implemented Draw and DrawStretched
15057           - Implemented Current property
15058           - Implemented == and != operators
15059           - Implemented Dispose()
15060           - Implemented ToString
15061           - Added missing attributes
15062         * XplatUIX11.cs:
15063           - Added missing reset for OverrideCursor when DoEvents is called
15064           - Fixed creation of cursor, logic was wrong
15065         * XplatUIWin32.cs:
15066           - Added missing reset for OverrideCursor when DoEvents is called
15067           - Fixed creation of cursor, bit arrays were swapped
15068         * Clipboard.cs: Removed obsolete MonoTODO attribute
15069
15070 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15071
15072         * ComboBox.cs: fixes OnSelectedItemChanged
15073         * ControlBindingsCollection.cs: fixes item range check
15074
15075 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15076
15077         * UpDownBase.cs:
15078                 - Calc preferred height properly
15079                 - Implement missing properties
15080                 
15081         * NumericUpDown.cs: Implement missing events
15082
15083 2005-05-19  Jackson Harper  <jackson@ximian.com>
15084
15085         * TabControl.cs: New method that resizes the tab pages before
15086         redrawing them. This as needed as the control is double buffered
15087         and sizing will not be recalculated unless ResizeTabPages is
15088         called.
15089         * TabPage.cs: Set base.Text instead of Text in the constructor so
15090         that UpdateOwner does not get called. Use the new Redraw method of
15091         TabControl instead of Refresh so the sizing is recalculated.
15092         * ThemeWin32Classic.cs: Draw the text for button tabs.
15093
15094 2005-05-19  Jackson Harper  <jackson@ximian.com>
15095
15096         * Control.cs: Paint control background images. Fix typo where
15097         PaintControlBackground was not getting called correctly.
15098
15099 2005-05-19  Peter Bartok  <pbartok@novell.com>
15100
15101         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
15102           I can investigate, apparently I broke FileDialog
15103
15104 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
15105
15106         * AxHost.cs: Some simple properties.
15107         * Control.cs: window must be accessible after ctor.
15108         * Form.cs: Added TransparencyKey property.
15109         * TextBoxBase.cs: Implemented Clear. Text property can be null.
15110         * XplatUIWin32.cs: SetBorderStyle implemented.
15111
15112 2005-05-18  Peter Bartok  <pbartok@novell.com>
15113
15114         * DataObject.cs: Entries are not global but particular to the
15115           DataObject, now it behaves that way
15116         * XplatUIWin32.cs: Implemented Clipboard methods
15117         * Clipboard.cs: Implemented
15118         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
15119         * XplatUIOSX.cs: Updated to final clipboard prototypes
15120         * XplatUIX11.cs: Implemented Clipboard methods
15121         * XplatUIDriver.cs: Updated to final clipboard prototypes
15122         * XplatUIStructs.cs:
15123           - Added BITMAPINFOHEADER struct
15124           - Added ClipboardFormats enum
15125         * X11Structs.cs:
15126           - Added ClipboardStruct
15127           - Added Atom enum items for clipboard types
15128           - Fixed atom types for Selection event structures
15129         * DataFormats.cs:
15130           - Added internal properties and methods for drivers to enumerate
15131             all known formats
15132           - Switched initialization method to allow drivers to assign their
15133             own IDs even for the MS predefined clipboard IDs
15134         * XplatUI.cs: Updated to final clipboard interface
15135
15136 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15137         * PropertyGridView.cs: Fixed compiler warnings.
15138
15139 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15140         * PropertyGrid.cs: Added some event calls
15141         * PropertyGridView.cs: Change drawing code to use double buffering
15142         * PropertyGridTextBox.cs: Changed Text property name
15143         * GridItem.cs: Added Bounds property.
15144         * GridEntry.cs: Added Bounds property.
15145
15146 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
15147
15148         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
15149         since GetType() may not return the correct type if the object is
15150         a remoting proxy.
15151
15152 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
15153
15154         * TreeNodeCollection.cs: fixes get/set item ranges
15155         
15156 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15157
15158         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
15159                 
15160 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15161
15162         * ComboBox.cs: Fix item range comparation
15163         * ListView.cs: Fix item range comparation
15164
15165 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15166
15167         * FontDialog.cs:
15168           - Clear example panel when OnPaint is called
15169           - Better solution for displaying the example panel text
15170           - Select default indexes in the ListBoxes
15171
15172 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15173
15174         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
15175
15176 2005-05-11  Peter Bartok  <pbartok@novell.com>
15177
15178         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
15179         * SelectionRangeConverter.cs: Implemented
15180         * PropertyGrid.cs: Fixed attribute value
15181         * Control.cs:
15182           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
15183           - Added Sebastien Pouliot's CAS Stack Propagation fixes
15184         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
15185           that's common to all drivers. First methods to go there are
15186           Sebastien Pouliot's CAS Stack Propagation helper methods
15187         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
15188           Sebastien Pouliot for CAS Stack Propagation
15189
15190 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15191
15192         * OSXStructs.cs:
15193           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
15194
15195 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
15196
15197         * DataGridTextBoxColumn.cs: fixed some members
15198         * GridColumnStylesCollection.cs: indexed column is case insensitive
15199         * DataGridTableStyle.cs: fixes
15200         * ThemeWin32Classic.cs: add new theme parameter
15201         * Theme.cs: add new theme parameter
15202         * DataGridDrawingLogic.cs: Datagrid's drawing logic
15203         * DataGrid.cs: fixes, new internal properties, etc.
15204         * DataGridColumnStyle.cs: allows to set grid value
15205         *
15206
15207 2005-05-10  Peter Bartok  <pbartok@novell.com>
15208
15209         * AccessibleObject.cs:
15210           - Removed MonoTODO attribute on help, method is correct
15211           - Fixed Bounds property
15212         * AxHost.cs: Moved MonoTODO
15213         * ButtonBase.cs: Now setting AccessibleObject properties
15214         * RadioButton.cs: Setting proper AccessibleObject role
15215         * CheckBox.cs: Setting proper AccessibleObject role
15216         * ControlBindingsCollection.cs: Added properties, methods and attributes
15217         * DataFormats.cs: Fixed awkward internal API, and changed to enable
15218           userdefined DataFormats.Format items as well
15219         * ListControl.cs: Removed data_member from the public eye
15220         * OpenFileDialog.cs:
15221           - Made class sealed
15222           - Added missing attributes
15223         * SaveFileDialog.cs: Added missing attributes
15224         * ImageListStreamer.cs: Fixed code that caused warnings
15225         * LinkLabel.cs: Removed unreachable code
15226         * TreeView.cs: Fixed code that caused warnings
15227         * PropertyGridView.cs: Fixed code that caused warnings
15228         * GridColumnStylesCollection.cs: Added missing attributes
15229         * GridTableStylesCollection: Added missing attribute
15230         * PropertyManager: Added .ctor
15231         * SecurityIDType: Added
15232         * DataObject.cs: Implemented class
15233         * LinkArea.cs: Added missing attribute
15234
15235 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
15236
15237         * RadioButton.cs: call base method to allow to fire OnClick event
15238         * UpDownBase.cs: OnMouseUp call base method
15239         * CheckedListBox.cs: call base method before returning
15240         * TrackBar.cs: call base method before returning
15241         
15242
15243 2005-05-10  Peter Bartok  <pbartok@novell.com>
15244
15245         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
15246           for messages
15247
15248 2005-05-10  Peter Bartok  <pbartok@novell.com>
15249
15250         * DataFormats.cs: Implemented
15251         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
15252           XplatUIX11.cs: Added Clipboard APIs
15253         * XplatUIWin32.cs: Implemented Clipboard APIs
15254         * FolderBrowserDialog.cs: Added missing event, attributes
15255
15256 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
15257
15258         * CheckBox.cs: call base method to allow to fire OnClick event
15259
15260 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
15261
15262         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
15263
15264 2005-05-06  Peter Bartok  <pbartok@novell.com>
15265
15266         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
15267         * Screen.cs: Implemented
15268         * HelpNavigator.cs: Added
15269         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
15270           property
15271         * HelpProvider.cs: Implemented all we can do until we have a CHM
15272           help library (which means that "What's This" does work now)
15273
15274 2005-05-06  Jackson Harper  <jackson@ximian.com>
15275
15276         * XplatUIX11.cs: Fix waking up the main loop.
15277                 
15278 2005-05-05  Peter Bartok  <pbartok@novell.com>
15279
15280         * XplatUI.cs: Updated revision
15281         * Form.cs: Removed enless loop
15282         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
15283         * Label.cs (OnPaint): Added call to base.OnPaint()
15284         * ToolTip.cs: Made ToolTipWindow reusable for other controls
15285         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
15286         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
15287         * AxHost.cs: Added
15288         * ButtonBase.cs: Moved base.OnPaint() call to end of method
15289         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
15290           to ToolTip.ToolTipWindow for drawing and size methods; this allows
15291           reuse of ToolTipWindow by other controls
15292         * SizeGrip.cs: Moved base.OnPaint() call to end of method
15293         * XplatUIX11.cs: Now clipping drawing area (experimental)
15294         * PictureBox.cs: Moved base.OnPaint() call to end of method
15295         * Theme.cs: Fixed ToolTip abstracts to match new format
15296         * ErrorProvider.cs: Implemented
15297
15298 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
15299
15300         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
15301         * LinkLabel.cs:
15302                 - Adds cursors
15303                 - Handles focus
15304                 - Implements LinkBehavior
15305                 - Fixes many issues
15306
15307 2005-05-03  Jackson Harper  <jackson@ximian.com>
15308
15309         * ListView.cs: Calculate the scrollbar positioning on resize and
15310         paint, so they get put in the correct place.
15311
15312 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15313
15314         * ColorDialogs.cs: The small color panels are now handled by
15315           SmallColorControl. This fixes drawing of the focus rectangle
15316           and adds a 3D border.
15317
15318 2005-05-03  Peter Bartok  <pbartok@novell.com>
15319
15320         * Control.cs: Modified version of Jonathan Chamber's fix for
15321           double-buffering
15322
15323 2005-05-03  Jackson Harper  <jackson@ximian.com>
15324
15325         * ListView.cs: Remove redraw variable. Control now handles whether
15326         or not a redraw needs to be done, and will only raise the paint
15327         event if redrawing is needed.
15328
15329 2005-05-03  Jackson Harper  <jackson@ximian.com>
15330
15331         * Splitter.cs: No decorations for the splitter form. Cache the
15332         hatch brush.
15333
15334 2005-05-03  Jackson Harper  <jackson@ximian.com>
15335
15336         * TreeView.cs: Use dashed lines to connect nodes. Use the
15337         ControlPaint method for drawing the focus rect instead of doing
15338         that in treeview.
15339
15340 2005-05-02  Peter Bartok  <pbartok@novell.com>
15341
15342         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
15343
15344 2005-04-29  Jackson Harper  <jackson@ximian.com>
15345
15346         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
15347         entire image buffer. Just clear the clipping rectangle.
15348
15349 2005-04-29  Jackson Harper  <jackson@ximian.com>
15350
15351         * ThemeWin32Classic.cs: Don't draw list view items that are
15352         outside the clipping rectangle.
15353
15354 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
15355
15356         * ListBox.cs: added horizontal item scroll
15357
15358 2005-04-29  Jackson Harper  <jackson@ximian.com>
15359
15360         * ThemeWin32Classic.cs: Remove some old debug code that was
15361         causing flicker with the new double buffering code.
15362
15363 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
15364
15365         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
15366         behave like combobox and comboboxlist (still not sure if this is
15367         correct though).
15368
15369 2005-04-28  Jackson Harper  <jackson@ximian.com>
15370
15371         * ThemeWin32Classic.cs: Don't fill the middle of progress
15372         bars. This fills areas outside of the clip bounds that don't need
15373         to be filled.
15374
15375 2005-04-28  Jackson Harper  <jackson@ximian.com>
15376
15377         * Control.cs: Don't expose functionality to touch the image buffers.
15378         * ProgressBar.cs:
15379         * ListView.cs: We do not need to (and no longer can) manipulate
15380         the image buffers directly. All of this is handled by Control.
15381
15382 2005-04-28  Peter Bartok  <pbartok@novell.com>
15383
15384         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15385           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
15386           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
15387
15388 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15389
15390         * Combobox:
15391                 - Adjust control's height for non-simple comboboxes (bug fix)
15392                 - Remove dead code
15393         * MenuAPI.cs: remove unused var
15394         * ScrollBar.cs: remove unsed var
15395                  
15396         * ListBox.cs: unselect items when clearing
15397
15398 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15399
15400         * ListControl.cs: honors OnPositionChanged and default Selected Item
15401         * ListBox.cs: unselect items when clearing
15402
15403 2005-04-27  Jackson Harper  <jackson@ximian.com>
15404
15405         * X11Keyboard.cs: Initialize a default keyboard and give a warning
15406         if a "correct" keyboard is not found. This will make us not crash,
15407         but might give some users bad keyboard layouts...seems to be the
15408         same thing rewind does.
15409
15410 2005-04-27  Jackson Harper  <jackson@ximian.com>
15411
15412         * BindingManagerBase.cs: Attach the current/position changed
15413         handlers to their respective events.
15414
15415 2005-04-27  Jackson Harper  <jackson@ximian.com>
15416
15417         * Control.cs: Make sure that the first WM_PAINT does a full draw,
15418         not just a blit.
15419         * ThemeWin32Classic.cs: Don't fill the background for picture
15420         boxes. This could overright user drawing.
15421         * ComboBox.cs: Just fill the clipping rect not the entire client
15422         rect when drawing the background. This prevents pieces of the
15423         image buffer from getting overwritten and is theoretically faster.
15424
15425 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
15426
15427         * ComboBox.cs: Databinding support fixes, fire missing events
15428         * ListControl.cs: implement missing methods and properties, fixes
15429         * ThemeWin32Classic.cs: Databiding support on Drawing
15430         * CheckedListBox.cs: Databinding support fixes, fire missing events
15431         * ListBox.cs: Databinding support fixes, fire missing events
15432         
15433 2005-04-25  Peter Bartok  <pbartok@novell.com>
15434
15435         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
15436
15437 2005-04-25  Jackson Harper  <jackson@ximian.com>
15438
15439         * TreeView.cs: Use the horizontal scrollbars height not width when
15440         determining how much of the client area is available.
15441
15442 2005-04-25  Jackson Harper  <jackson@ximian.com>
15443
15444         * Control.cs: Double buffering is handled differently now. As per
15445         the spec, the extra buffer is created in the WM_PAINT message and
15446         passed down to the control's drawing code.
15447         * GroupBox.cs:
15448         * Label.cs:
15449         * CheckBox.cs:
15450         * ProgressBar.cs:
15451         * RadioButton.cs:
15452         * ColorDialog.cs:
15453         * ComboBox.cs:
15454         * PropertyGridView.cs:
15455         * UpDownBase.cs:
15456         * MessageBox.cs:
15457         * MenuAPI.cs:
15458         * ListView.cs:
15459         * ButtonBase.cs:
15460         * SizeGrip.cs:
15461         * ScrollBar.cs:
15462         * ListBox.cs:
15463         * TrackBar.cs:
15464         * ToolBar.cs:
15465         * PictureBox.cs:
15466         * DateTimePicker.cs:
15467         * StatusBar.cs:
15468         * TreeView.cs: Update to new double buffering system.
15469         * MonthCalendar.cs: Uncomment block, as Capture is now
15470         working. Update to new double buffering
15471         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
15472         * PaintEventArgs.cs: New internal method allows us to set the
15473         graphics object. This is used for double buffering.
15474         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
15475         rectangle. The internal paint_area var has been removed from
15476         StatusBar. The clipping rect should be used instead.
15477         * Theme.cs: Give the PictureBox drawing method a clipping rect.
15478         * TabPage.cs: The RefreshTabs method was removed, so just call the
15479         tab controls Refresh method now.
15480         * TabControl.cs: Update to new double buffering. Make sure the
15481         handle is created before sizing the tab pages, otherwise we will
15482         get stuck in a loop.
15483
15484 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
15485
15486         * LinkLabel.cs: Fix typo, bug #74719; patch
15487           from Borja Sanchez Zamorano
15488
15489 2005-04-22  Jackson Harper  <jackson@ximian.com>
15490
15491         * TreeNode.cs: Implement Handle stuff.
15492         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
15493
15494 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
15495
15496         * DataGridTextBoxColumn.cs: call base constructors, fixes
15497         * GridColumnStylesCollection.cs: missing events, methods, and functionality
15498         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
15499         * DataGridTableStyle.cs: implements create default column styles
15500         * DataGridBoolColumn.cs: which types can handle
15501         * DataGrid.cs: missing methods, fixes, new functionality
15502         * DataGridColumnStyle.cs: fixes
15503
15504 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
15505         * FolderBrowserDialog.cs:
15506         - Use a thread to fill the TreeView
15507         - Adjusted some sizes
15508
15509 2005-04-19  Peter Bartok  <pbartok@novell.com>
15510
15511         * LinkLabel.cs: (Re-)create the pieces when setting the Text
15512           property. Fixes #74360.
15513
15514 2005-04-19  Jackson Harper  <jackson@ximian.com>
15515
15516         * XEventQueue.cs: Lock when getting the lockqueue size.
15517         * PictureBox.cs: Call base OnPaint
15518         
15519 2005-04-19  Peter Bartok  <pbartok@novell.com>
15520
15521         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
15522           messages were no longer being processed (this broke BeginInvoke)
15523
15524           
15525 2005-04-18  Jackson Harper  <jackson@ximian.com>
15526
15527         * TreeView.cs: buglet that caused node images to get drawn
15528         regardless of whether or not they were in the clipping rectangle.
15529
15530 2005-04-18  Jackson Harper  <jackson@ximian.com>
15531
15532         * CurrencyManager.cs: There are four rules for GetItemProperties:
15533         - If the type is an array use the element type of the array
15534         - If the type is a typed list, use the type
15535         - If the list contains an Item property that is not an object, use
15536         that property
15537         - use the first element of the list if there are any elements in
15538         the list.
15539         
15540 2005-04-17  Jackson Harper  <jackson@ximian.oom>
15541
15542         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
15543         click. This handles offsets for scrolling properly and reduces
15544         memory. Also fixed GetNode to not offset now that TopNode works
15545         properly.
15546         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
15547         
15548 2005-04-17  Jackson Harper  <jackson@ximian.com>
15549
15550         * CursorConverter.cs: Initial implementation.
15551
15552 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15553
15554         * ListControl.cs: work towards complex data binding support on ListControl
15555         * CurrencyManager.cs: work towards complex data binding support on ListControl
15556         * ListBox.cs: work towards complex data binding support on ListControl
15557
15558
15559 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15560
15561         * GridTableStylesCollection.cs: fixes name and constructor
15562         * DataGridTableStyle.cs: fixes
15563         * DataGridBoolColumn.cs: fixes names and constructors
15564         * DataGrid.cs: define methods and properties. Some init implementations
15565         * DataGridCell.cs: define methods and properties. Some init implementations
15566         * GridTablesFactory.cs: Define methods and properties
15567
15568 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
15569
15570         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
15571         graphics port changes.  We still want the coordinates in global screen
15572         coordinates.
15573
15574 2005-04-14  Jackson Harper  <jackson@ximian.com>
15575
15576         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
15577         check plus minus or checkbox clicks unless those features are enabled.
15578
15579 2005-04-14  Jackson Harper  <jackson@ximian.com>
15580
15581         * TreeView.cs: Add methods for setting the top and bottom visible
15582         nodes. TreeNode::EnsureVisible uses these methods.
15583         * TreeNode.cs: Implement EnsureVisible
15584
15585 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
15586
15587         * Form.cs: Pospone menu assignation if the window has not been created yet
15588         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
15589         size and position
15590
15591 2005-04-12  Jackson Harper  <jackson@ximian.com>
15592
15593         * TreeView.cs: Set the TopNode properly when scrolling
15594         occurs. This has the added benifit of reducing the amount of
15595         walking that needs to be done when drawing. Also removed an old
15596         misleading TODO.
15597         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
15598         
15599 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
15600
15601         * Timer.cs: fixes interval setting when the timer is already enabled
15602         
15603 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
15604
15605         * FolderBrowserDialog.cs: First approach
15606
15607 2005-04-09  Peter Bartok  <pbartok@novell.com>
15608
15609         * FolderBrowserDialog: Added
15610
15611 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
15612
15613         * LinkLabel.cs: move drawing code into the theme
15614         * ThemeWin32Classic.cs: drawing code and painting background bugfix
15615         * Theme.cs: define DrawLinkLabel method
15616
15617 2005-04-05  Jackson Harper  <jackson@ximian.com>
15618
15619         * BindingContext.cs: Use weak references so these bad actors don't
15620         stay alive longer then they need to.
15621
15622 2005-04-05  Jackson Harper  <jackson@ximian.com>
15623
15624         * ListControl.cs: Basic implementation of complex databinding.
15625         * ComboBox.cs:
15626         * ListBox.cs: Add calls to ListControl databinding methods.
15627
15628 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
15629
15630         * FileDialog.cs:
15631           - Don't change PopupButtonState to Normal when the
15632             PopupButton gets pressed several times.
15633           - Renamed ButtonPanel to PopupButtonPanel
15634
15635 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
15636
15637         * ColorDialog.cs: Use cached objects instead of creating them
15638         * LinkLabel.cs: Use cached objects instead of creating them
15639         * Splitter.cs: Use cached objects instead of creating them
15640         * FontDialog.cs: Use cached objects instead of creating them
15641         * PropertyGridView.cs: Use cached objects instead of creating them
15642         * MessageBox.cs: Use cached objects instead of creating them
15643         * FileDialog.cs: Use cached objects instead of creating them
15644         * ThemeWin32Classic.cs: Use cached objects instead of creating them
15645         * TreeView.cs: Use cached objects instead of creating them
15646         
15647 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
15648
15649         * Control.cs: use Equals to compare the font since no == op
15650         * ScrollBar.cs: use Equals to compare the font since no == op
15651
15652 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
15653
15654         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
15655
15656 2005-04-01  Jackson Harper  <jackson@ximian.com>
15657
15658         * Binding.cs: Implement IsBinding.
15659         * BindingManagerBase.cs:
15660         * PropertyManager.cs:
15661         * CurrencyManager.cs: Add IsSuspended property.
15662
15663 2005-04-01  Jackson Harper  <jackson@ximian.com>
15664
15665         * Binding.cs: Had some IsAssignableFrom calls backwards.
15666
15667 2005-04-01  Jackson Harper  <jackson@ximian.com>
15668
15669         * Binding.cs: Handle null data members when pulling data.
15670         * PropertyManager.cs: Handle the data member being a property that
15671         does not exist.
15672
15673 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15674
15675         * DataGridTextBoxColumn.cs: fixes signature
15676         * DataGrid.cs: calls right constructor
15677
15678 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15679
15680         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
15681         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
15682         * GridTableStylesCollection.cs: implements GridTableStylesCollection
15683         * DataGridTableStyle.cs: implements DataGridTableStyle
15684         * DataGridBoolColumn.cs: implements DataGridBoolColumn
15685         * DataGridTextBox.cs: implements DataGridTextBox
15686         * DataGridColumnStyle.cs: implements DataGridColumnStyle
15687
15688 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
15689
15690         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
15691
15692 2005-03-29  Peter Bartok  <pbartok@novell.com>
15693
15694         * Application.cs:
15695           - Properly implemented CompanyName property
15696           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
15697             returns a path that includes CompanyName, ProductName and
15698             Version (fixes bug #70330)
15699
15700 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
15701
15702         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
15703           fixes bug #72588.
15704
15705 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15706
15707         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
15708         
15709           - Added ReadOnly CheckBox
15710           - Further refactoring: moved some code from Open-/SaveFileDialog
15711             to FileDialog
15712
15713 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15714
15715         * OpenFileDialog.cs: Fixed CheckFileExists
15716         * FileDialog.cs:
15717           Moved FileView and DirComboBox outside FileDialog class.
15718           They can now be used outside FileDialog
15719
15720 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15721
15722         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
15723         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
15724
15725 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15726
15727         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15728           - Added missing CreatePrompt property in SaveDialog
15729           - Overall SaveDialog handling should be better now
15730           - Added non standard ShowHiddenFiles property
15731           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
15732           - Added InitialDirectory and RestoreDirectory support
15733
15734 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
15735
15736         * FileDialog.cs: Made dirComboBox usable
15737
15738 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
15739
15740         * FileDialog.cs: Added Filter support (case sensitiv)
15741
15742 2005-03-24  Jackson Harper  <jackson@ximian.com>
15743
15744         * TabControl.cs: Need a couple more pixels for the lines.
15745
15746 2005-03-23  Jackson Harper  <jackson@ximian.com>
15747
15748         * TabControl.cs: Give the tab page focus when it is selected.
15749
15750 2005-03-23  Jackson Harper  <jackson@ximian.com>
15751
15752         * TabControl.cs: Account for the drawing of tabs borders when
15753         invalidating. If the slider was clicked dont do click detection on
15754         the tabs.
15755
15756 2005-03-23  Jackson Harper  <jackson@ximian.com>
15757
15758         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
15759
15760 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
15761
15762         * CategoryGridEntry.cs: Added
15763         * GridItem.cs: Added helper properties
15764         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
15765         * GridEntry.cs: Updated code for collection
15766         * PropertyGrid.cs: Cleaned up some formatting
15767         * PropertyGridView.cs: Added drop down functionality for enums.
15768         * GridItemCollection.cs: Added enumerator logic
15769         * PropertyGridEntry.cs: Added
15770
15771 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15772
15773         * FileDialog.cs:
15774           - Removed unnecessary commented code
15775           - Fixed handling for entering the filename manually in the combobox
15776
15777 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15778
15779         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
15780
15781 2005-03-18  Peter Bartok  <pbartok@novell.com>
15782
15783         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
15784           them being touching the border
15785
15786 2005-03-18  Peter Bartok  <pbartok@novell.com>
15787
15788         * TextControl.cs: Quick hack to center text better
15789
15790 2005-03-18  Peter Bartok  <pbartok@novell.com>
15791
15792         * ControlPaint.cs:
15793           - Don't throw NotImplemented exceptions, just print a notice once
15794             instead (requested by Miguel). This makes running existing SWF
15795             apps a bit easier
15796         * Control.cs:
15797           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
15798           - Added context menu trigger on right click
15799         * Panel.cs: Trigger invalidate on resize
15800         * StatusBar.cs:
15801           - Removed old double-buffer drawing
15802           - Added ResizeRedraw style to force proper update of statusbar
15803         * ListView.cs:
15804           - Removed debug output
15805         * ThemeWin32Classic.cs:
15806           - Fixed drawing of status bar, now draws Text property if there
15807             are no defined panels
15808
15809 2005-03-18  Jackson Harper  <jackson@ximian.com>
15810
15811         * ImageList.cs: When the image stream is set pull all the images
15812         from it.
15813         * ImageListStreamer.cs: Implement reading image list streams.
15814
15815 2005-03-18  Peter Bartok  <pbartok@novell.com>
15816
15817         * ThemeWin32Classic.cs (DrawPictureBox):
15818           - Fixed calculations for centered drawing
15819           - Fixed drawing for normal mode, not scaling the image on normal
15820
15821 2005-03-18  Peter Bartok  <pbartok@novell.com>
15822
15823         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
15824           textbox
15825         * FileDialog.cs:
15826           - Made Open/Save button the accept button for FileDialog
15827           - Tied the cancel button to the IButtonControl cancel button
15828           - Save/Open now properly builds the pathname
15829           - Now handles user-entered text
15830           - Preventing crash on right-click if no item is selected
15831           - Fixed Text property, now uses contents of textbox
15832           - Fixed SelectedText property, now just returns the text part that
15833             is selected in the text box
15834
15835 2005-03-18  Jackson Harper  <jackson@ximian.com>
15836
15837         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
15838         rect, make sure to de-adjust the interior rect after drawing the
15839         tab text.
15840
15841 2005-03-18  Peter Bartok  <pbartok@novell.com>
15842
15843         * MenuAPI.cs: Remove menu *before* executing selected action to
15844           prevent the menu from 'hanging around'
15845           
15846 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
15847
15848         * XplatUIOSX.cs: Implemented WorkingArea property
15849
15850 2005-03-17  Peter Bartok  <pbartok@novell.com>
15851
15852         * XplatUIX11.cs: Fixed menu coord calculations
15853         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
15854           for calculating offsets
15855
15856 2005-03-17  Peter Bartok  <pbartok@novell.com>
15857
15858         * Hwnd.cs: Do not consider menu presence for default client
15859           rectangle location/size
15860         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
15861           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
15862           translation functions
15863         * FileDialog.cs: Fixed (what I presume is a) typo
15864
15865 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
15866
15867         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
15868           X access (avoids X-Async errors)
15869
15870 2005-03-16  Jackson Harper  <jackson@ximian.com>
15871
15872         * TabControl.cs: Raise the SelectedIndexChanged event.
15873
15874 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
15875
15876         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15877           - Removed vertical ToolBar and replaced it with a custom panel
15878             (desktop and home button already work)
15879           - Added Help button (some controls get resized or relocated then)
15880           - Draw correct text depending on Open or Save.
15881           - Fixed some typos...
15882
15883 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
15884
15885         * ScrollBar.cs:
15886           - Only change Maximum and Minimum when need it (bug fix)
15887
15888 2005-03-15  Peter Bartok  <pbartok@novell.com>
15889
15890         * Form.cs: Use Handle for icon, to trigger creation if
15891           the window does not yet exist
15892         * Control.cs:
15893           - CanSelect: Slight performance improvement
15894           - Focus(): Preventing possible recursion
15895           - Invalidate(): Removed ControlStyle based clear flag setting
15896           - WM_PAINT: fixed logic for calling OnPaintBackground
15897           - WM_ERASEBKGND: Fixed logic, added call to new driver method
15898             EraseWindowBackground if the control doesn't paint background
15899         * XplatUIWin32.cs:
15900           - Moved EraseWindowBackground() method to internal methods
15901           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
15902             is sent via SendMessage on BeginPaint call on Win32
15903         * XplatUIX11.cs:
15904           - Added EraseWindowBackground() method
15905           - No longer sends WM_ERASEBKGND on .Expose, but on call to
15906             PaintEventStart, which more closely matches Win32 behaviour
15907           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
15908           - Fixed SetFocus() to properly deal with client and whole windows
15909         * Hwnd.cs: Added ErasePending property
15910         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
15911         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
15912
15913 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
15914
15915         * XplatUIOSX.cs:
15916           - Fix hard loop when timers exist.
15917           - Fix bugs with middle and right click for 3 button mice.
15918
15919 2005-03-11  Peter Bartok  <pbartok@novell.com>
15920
15921         * XplatUIX11.cs:
15922           - get_WorkingArea: Need to call X directly, GetWindowPos only
15923             returns cached data now
15924           - Added sanity check to GetWindowPos hwnd usage
15925
15926 2005-03-11  Jackson Harper  <jackson@ximian.com>
15927
15928         * BindingManagerBase.cs: This method isn't used anymore as
15929         PullData now updates the data in the control.
15930
15931 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
15932
15933         * Form.cs: fixes menu drawing on X11
15934         * MenuAPI.cs:  fixes menu drawing on X11
15935
15936 2005-03-11  Peter Bartok  <pbartok@novell.com>
15937
15938         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
15939           from Jonathan Gilbert; should fix bug #73606
15940         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
15941           in Screen coordinates. Thanks, Jordi.
15942         * Form.cs: Added missing attribute
15943
15944 2005-03-11  Peter Bartok  <pbartok@novell.com>
15945
15946         * Form.cs:
15947           - Rudimentary Mdi support
15948           - Removed outdated FormParent code
15949           - Implemented lots of missing properties and methods, still missing
15950             transparency support
15951           - Added missing attributes
15952           - Implemented support for MaximumBounds
15953           - Added firing of various events
15954         * XplatUI.cs: Added SetIcon() method
15955         * XplatUIDriver.cs: Added SetIcon() abstract
15956         * XplatUIOSX.cs: Stubbed out SetIcon() method
15957         * XplatUIX11.cs:
15958           - Implemented SetIcon() support
15959           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
15960           - Switched to unix line endings
15961         * XplatUIWin32.cs:
15962           - Made POINT internal so for can access it as part of MINMAX
15963           - Implemented SetIcon() support
15964           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
15965             native Mdi support again, might have to go managed)
15966         * Control.cs: Now fires the StyleChanged event
15967         * MdiClient.cs: Added; still mostly empty
15968
15969 2005-03-10  Peter Bartok  <pbartok@novell.com>
15970
15971         * SaveFileDialog.cs: Added emtpy file
15972
15973 2005-03-08  Peter Bartok  <pbartok@novell.com>
15974
15975         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
15976           in turn triggers OnCreateContro) when creating a handle for the
15977           first time.
15978         * TextControl.cs: Fixed endless loop in certain cases when
15979           replacing the current selection
15980
15981 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
15982
15983         * ScrollBar.cs:
15984           - Honors NewValue changes in Scroll events allowing apps to change it
15985           - Adds First and Last Scroll events
15986           - Fixes Thumb events
15987
15988 2005-03-07  Peter Bartok  <pbartok@novell.com>
15989
15990         * Hwnd.cs: Added DefaultClientRectangle property
15991         * XplatUI.cs: Now using the X11 driver Where() method, which provides
15992           more detailed debug information
15993         * XplatUIX11.cs:
15994           - Fixed size-change feedback loop, where we would pull an old size
15995             off the queue and mistakenly change our window's size to an
15996             earlier value
15997           - Now compressing ConfigureNotify events, to reduce looping and
15998             redraw issues
15999         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
16000           is called
16001
16002 2005-03-07  Jackson Harper  <jackson@ximian.com>
16003
16004         * Binding.cs: Push data pushes from data -> property. Check if the
16005         property is readonly when attempting to set it.
16006
16007 2005-03-07  Jackson Harper  <jackson@ximian.com>
16008
16009         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
16010         instead of IsSubclassOf. Pulling data now sets the value on the
16011         control.
16012         * PropertyManager.cs:
16013         * CurrencyManager.cs: Just need to pull data when updating now,
16014         because PullData will set the value on the control.
16015
16016 2005-03-04  Jackson Harper  <jackson@ximian.com>
16017
16018         * Binding.cs: Implement data type parsing and converting on pulled
16019         data. TODO: Are there more ways the data can be converted?
16020
16021 2005-03-04  Jackson Harper  <jackson@ximian.com>
16022
16023         * Binding.cs: Support <Property>IsNull checks. Also bind to the
16024         controls Validating method so we can repull the data when the
16025         control loses focus.
16026
16027 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
16028
16029         * ColumnHeader.cs:
16030           - Fixes null string format
16031           
16032         * ListView.cs:
16033           - Adds enum type checks
16034           - Fixes redrawing and recalc need after changing some properties
16035           - Fixes on focus_item set after the event
16036           - Fixes adding columns after the control has been created
16037           
16038         * ThemeWin32Classic.cs:
16039           - Fixes CheckBox focus rectangle
16040           - Fixes ColumnHeader drawing
16041
16042
16043 2005-03-03  Jackson Harper  <jackson@ximian.com>
16044
16045         * Binding.cs: Bind to <Property>Changed events so we can detect
16046         when properties are changed and update the data.
16047
16048 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
16049
16050         * ImageList.cs:
16051           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
16052           - Fixes ImageList constructor with ImageList container
16053           - Fixes image scaling (wrong parameters at DrawImage)
16054
16055 2005-02-02  Jackson Harper  <jackson@ximian.com>
16056
16057         * Binding.cs: Make property searches case-insensitive. Eliminate
16058         some duplicated code.
16059
16060 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
16061
16062         * ComboBox.cs:
16063                 - Handle focus event
16064                 - Fix scrollbar events
16065                 - Discard highlighted item if remove it
16066                 - Fixes SelectedItem with strings
16067
16068 2005-03-01  Peter Bartok  <pbartok@novell.com>
16069
16070         * Control.cs:
16071           - Fixed Visible property, now follows (once again) parent chain
16072             to return false if any control in the chain is visible=false
16073           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
16074           - Fixed several places where is_visible instead of Visible was used
16075           - Implemented FIXME related to focus selection when setting focused
16076             control to be invisible
16077
16078         * XplatUIWin32.cs: Now using proper method to find out if window is
16079           visible. Thanks to Jordi for pointing it out
16080
16081 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
16082
16083         * ComboBox.cs: show/hide scrollbar instead of creating it
16084
16085 2005-02-27  Jackson Harper  <jackson@ximian.com>
16086
16087         * CurrencyManager.cs: Add PositionChanged stuff.
16088
16089 2005-02-27  Peter Bartok  <pbartok@novell.com>
16090
16091         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
16092         * XplatUIOSX.cs: Added GetMenuOrigin() stub
16093         * XplatUIWin32.cs: Implemented GetMenuOrigin()
16094         * XplatUIX11.cs:
16095           - Implemented GetMenuDC()
16096           - Implemented GetMenuOrigin()
16097           - Implemented ReleaseMenuDC()
16098           - Implemented generation of WM_NCPAINT message
16099           - Implemented generation and handling of WM_NCCALCSIZE message
16100         * Form.cs: Added debug helper message for Jordi's menu work
16101         * Hwnd.cs:
16102           - Modified ClientRect property; added setter, fixed getter to handle
16103             setting of ClientRect
16104           - Added MenuOrigin property
16105
16106 2005-02-26  Peter Bartok  <pbartok@novell.com>
16107
16108         * XplatUIX11.cs:
16109           - Destroys the caret if a window that's being destroyed contains it
16110           - Ignores expose events coming from the X11 queue for windows that
16111             already are destroyed
16112           - Now uses the proper variable for handling DestroyNotify, before we
16113             marked the wrong window as destroyed
16114           - Improved/added some debug output
16115
16116 2005-02-26  Peter Bartok  <pbartok@novell.com>
16117
16118         * X11Keyboard.cs: Fixes to work on 64bit systems
16119
16120 2005-02-26  Peter Bartok  <pbartok@novell.com>
16121
16122         * Control.cs:
16123           - Now calling OnHandleDestroyed from DestroyHandle()
16124             instead of Dispose()
16125           - Removed bogus call to controls.Remove() from DestroyHandle()
16126
16127 2005-02-26  Peter Bartok  <pbartok@novell.com>
16128
16129         * Control.cs: Properly destroy child windows when our handle is
16130           destroyed
16131
16132 2005-02-25  Peter Bartok  <pbartok@novell.com>
16133
16134         * XplatUI.cs:
16135           - Added 'DriverDebug' define to allow tracing XplatUI API calls
16136           - Alphabetized Static Methods and Subclasses
16137
16138         * XplatUIX11.cs:
16139           - Added XException class to allow custom handling of X11 exceptions
16140           - Created custom X11 error handler, tied into XException class
16141           - Added support for MONO_XEXCEPTIONS env var to allow the user
16142             to either throw an exception on X errors or continue running
16143             after displaying the error
16144           - Added handling of DestroyNotify message
16145           - Added handler for CreateNotify message (still disabled)
16146           - Improved (tried to at least) Where method to provide file and lineno
16147         * X11Structs.cs:
16148           - Added XErrorHandler delegate
16149           - Added XRequest enumeration (to suppor translation of errors)
16150
16151 2005-02-25  Jackson Harper  <jackson@ximian.com>
16152
16153         * PropertyManager.cs: Implement editing features
16154         * CurrencyManager.cs:
16155         * Binding.cs: First attempt at UpdateIsBinding
16156         * BindingManagerBase.cs: Call UpdateIsBinding before
16157         pushing/pulling data.
16158
16159 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
16160
16161         * MenuAPI.cs: Respect disabled items
16162         * ThemeWin32Classic.cs
16163                 - Caches ImageAttributes creation for DrawImageDisabled
16164                 - Fixes vertical menu line drawing
16165                 - Draws disabled arrows in disable menu items
16166
16167 2005-02-24  Peter Bartok  <pbartok@novell.com>
16168
16169         * Hwnd.cs:
16170           - Added UserData property to allow associating arbitrary objects
16171             with the handle
16172           - Fixed leak; now removing Hwnd references from static windows array
16173         * XplatUIWin32.cs:
16174           - Fixed Graphics leak in PaintEventEnd
16175           - Removed usage of HandleData, switched over to Hwnd class
16176         * HandleData.cs: Removed, obsoleted by Hwnd.cs
16177
16178 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16179
16180         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
16181         * ScrollBar.cs: Fixes bug
16182         * TrackBar.cs: removes death code, clipping, mimize refreshes,
16183          keyboard navigation enhancements
16184
16185 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16186
16187         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
16188         * GroupBox.cs: Add control styles
16189         * Label.cs: Add control styles
16190         * UpDownBase.cs: Add control styles
16191         * ListBox.cs: Add control styles
16192         * XplatUIWin32.cs: Fixes wrong parameter order
16193
16194
16195 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
16196
16197         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
16198
16199 2005-02-23  Jackson Harper  <jackson@ximian.com>
16200
16201         * PropertyManager.cs: Implement property binding. This doesn't
16202         seem to work yet though as (I think) there are some bugs in
16203         System.ComponentModel.PropertyDescriptor.
16204         * BindingContext.cs: Use new PropertyManager constructor.
16205
16206 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
16207
16208         * ProgressBar.cs: use clip region in ProgressBar
16209         * ThemeWin32Classic.cs: use clip region in ProgressBar
16210
16211 2004-02-22  Jackson Harper  <jackson@ximian.com>
16212
16213         * BindingsCollection.cs: Remove some debug code.
16214
16215 2005-02-22  Jackson Harper  <jackson@ximian.com>
16216
16217         * BindingContext.cs:
16218         * ControlBindingsCollection.cs:
16219         * CurrencyManager.cs:
16220         * Binding.cs:
16221         * BindingManagerBase.cs: Initial implementation
16222         * BindingsCollection.cs: Add an internal contains method that the
16223         BindingManagerBase uses to ensure bindings aren't added twice to
16224         the collection.
16225         * PropertyManager.cs: Stubbed out.
16226         * Control.cs:
16227         * ContainerControl.cs: Hook up databinding
16228         
16229 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
16230
16231         * XplatUIOSX.cs:
16232           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
16233           Fixed Invalidate/Update chain.
16234           Fixed tons of other minor bugs (this is almost a complete rewrite).
16235
16236 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
16237
16238         * ComboBox.cs: do subcontrol creation when the control is created
16239
16240 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16241
16242         * Label.cs: fixes image drawing (image and imagelist)
16243         * ThemeWin32Classic.cs: cache brushes
16244         
16245 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16246
16247         * Form.cs: Move menu drawing code to Theme class
16248         * ComboBox.cs: Move ComboBox drawing code to Theme class
16249         * MenuItem.cs: Move menu drawing code to Theme class
16250         * MenuAPI.cs: Move menu drawing code to Theme class
16251         * ThemeWin32Classic.cs: New methods
16252         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
16253         * ListBox.cs: Move Listbox drawing code to Theme class
16254         * Theme.cs: New methods
16255
16256 2005-02-20  Peter Bartok  <pbartok@novell.com>
16257
16258         * Control.cs:
16259           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
16260             only process mnemonics on those)
16261           - Fixed event sequence for key handling; first calling
16262             ProcessKeyEventArgs now
16263         * TextBoxBase.cs:
16264           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
16265             for processing non-character keys
16266           - Fixed WM_CHAR to generate proper event sequence before processing
16267         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
16268           generation
16269
16270 2005-02-19  Peter Bartok  <pbartok@novell.com>
16271
16272         * UserControl.cs: Added TextChanged event; added attributes
16273         * SizeGrip.cs: Implemented resizing and optional display of grip
16274         * Form.cs: Fixed attribute
16275         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16276           Changed meaning of ScrollWindow bool argument; instead of the
16277           clear attribute (which will be true usually anyway), it gives the
16278           option of moving child controls as well.
16279         * XplatUIX11.cs:
16280           - Changed to match new ScrollWindow argument
16281           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
16282             now handles the implicit parent window a WM puts around us
16283         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
16284           to work)
16285         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
16286         * TreeView.cs: Adjusted to new ScrollWindow arguments
16287
16288 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16289
16290         * Form.cs: Menu integration with non-client area
16291         * MenuItem.cs: Menu integration with non-client area
16292         * MenuAPI.cs: Menu integration with non-client area
16293
16294 2005-02-18  Peter Bartok  <pbartok@novell.com>
16295
16296         * MethodInvoker.cs: Added
16297         * MdiLayout.cs: Added
16298         * SendKeys.cs: Started implementation
16299         * ErrorIconAlignment.cs: Added
16300
16301 2005-02-18  Peter Bartok  <pbartok@novell.com>
16302
16303         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
16304         * Form.cs: Added handling for Menu-related Non-client messages
16305
16306 2005-02-17  Peter Bartok  <pbartok@novell.com>
16307
16308         * UpDownBase.cs: Fixed typo, compilation errors
16309         * DomainUpDown.cs: Fixed attribute value
16310
16311 2005-02-16  Miguel de Icaza  <miguel@novell.com>
16312
16313         * UpDownBase.cs: Attach entry events.
16314         Propagate events.
16315         Add ForeColor property, Focused, InterceptArrowKeys (interception
16316         does not work yet).
16317
16318 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
16319
16320         * Form.cs:
16321                 - Redraw non client are on Setmenu
16322                 - Calc proper menu starting point
16323
16324 2005-02-17  Peter Bartok  <pbartok@novell.com>
16325
16326         * Application.cs: Fixed message_filter check
16327
16328 2005-02-17  Peter Bartok  <pbartok@novell.com>
16329
16330         * Application.cs: Now calls registered message filters
16331         * DockStyle.cs: Fixed attribute
16332         * Form.cs: Fixed attribute
16333         * Menu.cs: Fixed attribute
16334         * ToolTip.cs: Fixed attribute
16335         * TreeNode.cs: Added missing attributes and arranged in regions
16336         * PropertyGrid.cs: Fixed signatures
16337         * TreeNodeCollection.cs: Added attributes
16338         * Splitter.cs: Added missing attributes; arranged into regions
16339         * TabPage.cs: Added missing attributes; arranged into regions
16340         * TextBoxBase.cs: Added missing attributes
16341         * TextBox.cs: Added missing attributes
16342         * ArrangeDirection.cs: Added missing attributes
16343         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
16344         * ToolBarButton.cs: Fixed attributes
16345         * AnchorStyles.cs: Fixed attribute
16346         * TrackBar.cs: Fixed attributes
16347         * TabControl.cs: Added missing attributes and arranged into regions
16348         * ToolBar.cs: Fixed attribute
16349         * StatusBar.cs: Fixed signature, organized into regions and added
16350           attributes
16351         * StatusBarPanel.cs: Fixed attributes
16352         * ContentsResizedEventArgs.cs: Implemented
16353         * ContentsResizedEventHandler.cs: Implemented
16354         * DateBoldEventArgs.cs: Implemented
16355         * DateBoldEventHandler.cs: Implemented
16356         * UpDownEventArgs.cs: Implemented
16357         * UpDownEventHandler.cs: Implemented
16358         
16359 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
16360
16361         * Form.cs: first Menu NC refactoring
16362         * MenuAPI.cs: first Menu NC refactoring
16363         
16364 2005-02-16  Peter Bartok  <pbartok@novell.com>
16365
16366         * ImeMode.cs: Added missing attributes
16367         * Menu.cs: Fixed attribute
16368         * GroupBox.cs: Fixed attribute
16369         * Label.cs: Fixed attribute
16370         * ColorDialog.cs (RunDialog): Removed TODO attribute
16371         * ComboBox.cs: Fixed attributes
16372         * ListControl.cs: Added missing attributes
16373         * PropertyGrid.cs: Fixed attributes
16374         * Control.cs: Fixed attributes
16375         * ListViewItem.cs: Added TypeConverter attribute
16376         * NotifyIcon.cs: Fixed attributes
16377         * ListView.cs: Fixed attributes
16378         * ButtonBase.cs: Fixed attribute
16379         * ImageList.cs: Added missing attributes
16380         * ContainerControl.cs: Fixed signature
16381         * CheckedListBox.cs: Fixed attribute; added missing attributes
16382         * Panel.cs: Fixed attributes
16383         * PropertyTabChangedEventArgs.cs: Added missing attribute
16384         * PropertyValueChangedEventArgs.cs: Added missing attribute
16385         * Binding.cs: Fixed attribute
16386         * ListViewItemConverter: Implemented ListViewSubItemConverter class
16387         * ListBox.cs: Fixed attribute; added missing attributes;
16388         * ScrollableControl.cs: Added missing attributes
16389         * PictureBox.cs: Added missing attributes; implemented missing property
16390         * DateTimePicker.cs: Added missing attributes
16391         * Theme.cs (ToolWindowCaptionHeight): Fixed type
16392         * MonthCalendar.cs: Fixed attributes
16393         * StatusBarPanel.cs: Added missing attributes
16394         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
16395
16396 2005-02-16  Peter Bartok  <pbartok@novell.com>
16397
16398         * TextBoxBase.cs: The previous method to enforce height yet remember
16399           the requested high was less than ideal, this is an attempt to do
16400           it better.
16401         * Control.cs: Added comment about possible problem
16402         * Copyright: Updated format
16403         * GridItemType.cs: Fixed swapped values
16404
16405 2005-02-15  Jackson Harper  <jackson@ximian.com>
16406
16407         * BaseCollection.cs: Use property so we never access an
16408         uninitialized list. Also initialize the list in the property.
16409
16410 2005-02-15  Peter Bartok  <pbartok@novell.com>
16411
16412         * GroupBox.cs (ProcessMnemonic): Implemented
16413         * Label.cs (ProcessMnemonic): Implemented
16414         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
16415           hotkeys
16416
16417 2005-02-15  Peter Bartok  <pbartok@novell.com>
16418
16419         * RadioButton.cs (ProcessMnemonic): Implemented
16420         * CheckBox.cs (ProcessMnemonic): Implemented
16421         * Control.cs:
16422           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
16423             handling
16424           - Added internal method to allow calling ProcessMnemonic from other
16425             controls
16426         * ContainerControl.cs:
16427           - Started support for handling validation chain handling
16428           - Implemented ProcessMnemonic support
16429           - Added Select() call to Active, to make sure the active control
16430             receives focus
16431         * Form.cs: Setting toplevel flag for Forms (this was lost in the
16432           FormParent rewrite)
16433         * ThemeWin32Classic.cs:
16434           - DrawCheckBox(): Fixed stringformat to show hotkeys
16435           - DrawRadioButton(): Fixed stringformat to show hotkeys
16436         * CommonDialog.cs: Removed WndProc override, not needed
16437
16438 2005-02-14  Peter Bartok  <pbartok@novell.com>
16439
16440         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
16441           missed those in the rewrite
16442
16443 2005-02-14  Miguel de Icaza  <miguel@novell.com>
16444
16445         * NumericUpDown.cs (Increment, ToString): Add.
16446         (DecimalPlaces): implement.
16447         
16448         Add attributes.
16449         
16450         * UpDownBase.cs: Add the designer attributes.
16451
16452 2005-02-13  Peter Bartok  <pbartok@novell.com>
16453
16454         * Panel.cs: Removed border_style, now in Control
16455         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
16456           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
16457
16458 2005-02-13  Peter Bartok  <pbartok@novell.com>
16459
16460         * MouseButtons.cs: Added missing attributes
16461         * XplatUIStructs.cs: Added enumeration for title styles
16462         * LeftRightAlignment.cs: Added missing attributes
16463         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
16464           it compatible with Graphics.FromHwnd()
16465         * SelectedGridItemChangedEventArgs.cs: Fixed property type
16466         * Keys.cs: Added missing attributes
16467         * SelectionRange.cs: Added missing attributes
16468         * SelectionRangeConverter.cs: Added
16469         * XplatUI.cs:
16470           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
16471             ReleaseMenuDC methods
16472           - Renamed ReleaseWindow to UngrabWindow
16473           - Added proper startup notice to allow version identification
16474         * Form.cs:
16475           - Added missing attributes
16476           - Removed FormParent concept
16477         * Label.cs: Removed border_style field, now in Control
16478         * RadioButton.cs: Now properly selects RadioButton when focus is
16479           received
16480         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
16481         * Control.cs:
16482           - Added missing attributes
16483           - Added borderstyle handling
16484           - Removed FormParent concept support
16485           - Fixed calls to XplatUI to match changed APIs
16486           - Fixed bug that would case us to use disposed Graphics objects
16487           - Removed unneeded internal methods
16488           - PerformLayout(): Fixed to handle DockStyle.Fill properly
16489           - SelectNextControl(): Fixed to properly check common parents
16490         * TextBoxBase.cs: Removed border_style field (now in Control)
16491         * MessageBox.cs:
16492           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
16493             fixed calculations for form size
16494           - Added support for localized strings and icons
16495           - Improved form size calculations, added border
16496         * ListView.cs: Removed border_style field (now in Control)
16497         * X11Structs.cs: Moved several structs from X11 driver here
16498         * X11Keyboard.cs: Changed debug message
16499         * Application.cs: Removed FormParent concept support
16500         * CommonDialog.cs:
16501           - Resetting end_modal flag
16502           - Removed FormParent concept support
16503         * NativeWindow.cs: Removed FormParent concept support
16504         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
16505           Client area and Non-Client whole window to allow support for WM_NC
16506           messages
16507         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
16508           prevent using it until it supports Hwnd as per Geoff Norton's request
16509         * ToolBar.cs: Fixed drawing, was not doing proper drawing
16510         * PictureBox.cs: Removed border_style field, now in Control
16511         * XplatUIWin32.cs: Added new driver methods
16512
16513 2005-02-12  Peter Bartok  <pbartok@novell.com>
16514
16515         * OpacityConverter.cs: Implemented
16516         * Hwnd.cs: Internal class to support drivers that need to emulate
16517           client area/non-client area window behaviour
16518
16519 2005-02-11  Peter Bartok  <pbartok@novell.com>
16520
16521         * KeysConverter.cs: Implemented
16522
16523 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
16524
16525         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
16526         * LinkLabel: Added missing attributes
16527         * MainMenu.cs: fixes ToString
16528         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
16529         * ListBox.cs: fixes event position
16530         * TrackBar.cs: adds missing attributes and events
16531         
16532 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
16533
16534         * MenuItem.cs: Use SystemInformation and bug fixes
16535         * MenuAPI.cs: Use SystemInformation and bug fixes
16536
16537 2005-02-09  Jackson Harper  <jackson@ximian.com>
16538
16539         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
16540         their keystate otherwise things like VK_MENU get stuck "on".
16541
16542 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
16543
16544         * ListBox.cs: Fixes AddRange bug
16545         
16546 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
16547
16548         * ProgressBar.cs
16549                 - Add missing attributes
16550                 - Add missing method
16551                 
16552         * CheckedListBox.cs: Added missing attributes
16553                 - Add missing attributes
16554                 - Remove extra method
16555         
16556         * ComboBox.cs: Added missing attributes
16557         * VScrollBar.cs: Added missing attributes
16558         * ScrollBar.cs:  Added missing attributes
16559         * ListBox.cs: Fixes signature, add missing consts
16560         * LinkArea.cs:   Added missing attributes
16561         
16562
16563 2005-02-08  Peter Bartok  <pbartok@novell.com>
16564
16565         * Menu.cs: Added missing attributes
16566         * MainMenu.cs: Added missing attributes
16567         * GroupBox.cs: Added missing attributes
16568         * Label.cs: Added missing attributes
16569         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
16570         * ColorDialog.cs:
16571           - Added Instance and Options properties
16572           - Added missing attributes
16573         * Cursor.cs: Made Serializable
16574         * NotifyIcon: Added missing attributes
16575         * MenuItem.cs: Added missing attributes
16576         * TextBoxBase.cs: Implemented AppendText() and Select() methods
16577         * Panel.cs: Added Missing attributes
16578         * MonthCalendar.cs: Fixed CreateParams
16579
16580 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16581         
16582         * LinkLabel.cs:
16583                 - Fixes signature
16584                 - Fixes issues with links
16585                 - Adds the class attributes
16586
16587 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16588         
16589         * ComboBox.cs:
16590                 - Fixes button when no items available in dropdown
16591                 - Fixes repainting problems
16592                 - Adds the class attributes
16593                 
16594 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16595
16596         * XplatUIOSX.cs: Detect the menu bar and title bar height from
16597         the current theme.  Cache these on startup.
16598
16599 2005-02-07  Jackson Harper  <jackson@ximian.com>
16600
16601         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
16602         the scrollbar buttons when they are depressed.
16603
16604 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16605
16606         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
16607         Get the display size from the main displayid.  We currently dont
16608         support multiple display configurations.
16609
16610 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16611
16612         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
16613
16614 2005-02-07  Miguel de Icaza  <miguel@novell.com>
16615
16616         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
16617
16618 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16619
16620         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
16621
16622 2005-02-04  Jackson Harper  <jackson@ximian.com>
16623
16624         * ThemeWin32Classic.cs: Respect the clipping rect when
16625         drawing. Only fill the intersection of clips and rects so there
16626         isn't a lot of large fills.
16627         * ScrollBar.cs: Pass the correct clipping rect to the theme
16628         engine. Remove some debug code.
16629
16630 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
16631         
16632         * DateTimePicker.cs:
16633                 - Fixed crash on DateTime.Parse, use Constructor instead
16634
16635 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16636         
16637         * MenuItem.cs:
16638         * MenuAPI.cs:
16639                 - Owner draw support (MeasureItem and DrawItem)
16640
16641 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16642         
16643         *  Menu.cs:
16644                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
16645                 - Fixes MenuItems.Add range
16646         * MenuItem.cs:
16647                 - MergeMenu and Clone and CloneMenu functions
16648
16649 2005-02-03  Jackson Harper  <jackson@ximian.com>
16650
16651         * ScrollBar.cs: Make abstract
16652         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
16653         is abstract.
16654
16655 2005-02-03  Jackson Harper  <jackson@ximian.com>
16656
16657         * ScrollBar.cs: First part of my scrollbar fixups. This removes
16658         all the unneeded refreshes and uses invalidates with properly
16659         computed rects.
16660
16661 2005-02-03  Peter Bartok  <pbartok@novell.com>
16662
16663         * ComponentModel.cs: Added
16664         * IDataGridEditingService.cs: Added
16665         * Timer.cs: Added missing attributes
16666         * ToolTip.cs: Added missing attributes
16667
16668 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16669
16670         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
16671
16672 2005-02-03  Peter Bartok  <pbartok@novell.com>
16673
16674         * ListBox.cs: Added missing attributes
16675
16676 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
16677         
16678         * ListBox.cs:
16679                 - Fixes font height after font change
16680                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
16681                 
16682 2005-02-02  Peter Bartok  <pbartok@novell.com>
16683
16684         * HandleData.cs: Introduced static methods to allow class
16685           to be more self-contained and track it's own HandleData objects
16686         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
16687           HandleData to use new static methods
16688
16689 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
16690
16691         * Combobox.cs:
16692                 - Fixes default size and PreferredHeight
16693                 - Missing events
16694                 - ObjectCollection.Insert implementation
16695                 
16696         * ListControl.cs
16697                 - Fixes signature
16698         * ListBox.cs:
16699                 - Several fixes
16700                 - ObjectCollection.Insert implementation
16701                 - No selection after clean
16702                 - Small fixes
16703
16704 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16705
16706         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
16707
16708 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
16709
16710         * Combobox.cs:
16711                 - Caches ItemHeight calculation for OwnerDrawVariable
16712                 - Handles dropdown properly
16713                 - Fixes several minor bugs
16714
16715 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16716
16717         * ListBox.cs:
16718                 - Fixes 71946 and 71950
16719                 - Fixes changing Multicolumn on the fly
16720                 - Fixes keyboard navigation on Multicolumn listboxes
16721
16722 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16723         
16724         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
16725         crash reporter log.
16726
16727 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16728
16729         * XplatUIOSX.cs: Allow applications to actually exit.
16730
16731 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16732
16733         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
16734         their parent at creation time rather than lazily later.  Fixes a major
16735         regression we were experiencing.
16736
16737 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16738
16739         * ThemeWin32Classic.cs: more date time picker painting fixes
16740         * DateTimePicker.cs: more monthcalendar drop down fixes
16741         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
16742
16743 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16744
16745         * ScrollBar.cs:
16746                 - When moving the thumb going outside the control should stop the moving
16747                 - Adds the firing of missing events
16748                 - Fixes no button show if Size is not specified
16749                 - End / Home keys for keyboard navigation
16750
16751 2005-01-30  Peter Bartok  <pbartok@novell.com>
16752
16753         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
16754           sanity check to prevent theoretical loop
16755         * XplatUIWin32.cs (SetVisible): Removed debug output
16756         * XplatUIX11.cs (SystrayChange): Added sanity check
16757         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
16758         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
16759           behaviour, valid until the X11 client window rewrite is done
16760         * TextBox.cs (ctor): Setting proper default foreground and background
16761           colors
16762
16763 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
16764
16765         * Theme: Added DrawDateTimePicker to interface
16766         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
16767         * DateTimePicker.cs: Created (still needs keys and painting code)
16768         * DateTimePickerFormat.cs: added
16769         * MonthCalendar.cs: fixed CreateParams for popup window mode
16770           
16771 2005-01-29  Peter Bartok  <pbartok@novell.com>
16772
16773         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
16774           this should also the calculations for ligher/darker
16775         * Theme.cs: Fixed defaults for ScrollBar widths/heights
16776
16777 2005-01-29  Peter Bartok  <pbartok@novell.com>
16778
16779         * ArrangeDirection.cs: Added
16780         * ArrangeStartingPositon.cs: Added
16781         * SystemInformation.cs: Implemented
16782         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16783           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
16784           used by SystemInformation class
16785         * X11Strucs.cs: Added XSizeHints structure
16786         * MenuAPI.cs:
16787           - Fixed CreateParams to make sure the menu window is always visible
16788           - TrackPopupMenu: Added check to make sure we don't draw the
16789             menu offscreen
16790
16791 2005-01-29  Peter Bartok  <pbartok@novell.com>
16792
16793         * HandleData.cs: Added method for altering invalid area
16794         * TextBoxBase.cs: Implemented TextLength
16795
16796 2005-01-28  Peter Bartok  <pbartok@novell.com>
16797
16798         * XplatUIX11.cs: Improvement over last patch, not sending
16799           the WM_PAINT directly anymore, instead we scroll any pending
16800           exposed areas and let the system pick out the WM_PAINT later
16801
16802 2005-01-28  Peter Bartok  <pbartok@novell.com>
16803
16804         * SWF.csproj: Deleted, no longer used. Instead,
16805           Managed.Windows.Forms/SWF.csproj should be used
16806         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
16807           directly, to avoid a potential race condition with the next
16808           scroll
16809
16810 2005-01-28  Peter Bartok  <pbartok@novell.com>
16811
16812         * XplatUI.cs: Made class internal
16813
16814 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
16815
16816         * CheckedListBox.cs:
16817                 - Draw focus
16818                 - Fixed Drawing
16819                 - Missing methods and events
16820
16821 2005-01-27  Peter Bartok  <pbartok@novell.com>
16822
16823         * Application.cs (Run): Don't use form if we don't have one
16824
16825 2005-01-27  Peter Bartok  <pbartok@novell.com>
16826
16827         * TextBoxBase.cs (get_Lines): Fixed index off by one error
16828
16829 2005-01-27  Peter Bartok  <pbartok@novell.com>
16830
16831         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
16832         * GridItem.cs: Added; Patch by Jonathan S. Chambers
16833         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
16834         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
16835         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
16836         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
16837         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16838         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16839         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16840         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16841         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16842         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16843
16844 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16845
16846         * Combobox.cs:
16847                 - Draw focus on Simple Combobox
16848                 - Fixes drawing issues
16849                 - fixes 71834
16850
16851 2005-01-27  Peter Bartok  <pbartok@novell.com>
16852
16853         * Form.cs:
16854           - Place window in default location, instead of hardcoded 0/0
16855           - Send initial LocationChanged event
16856         * Control.cs:
16857           - UpdateBounds after creation to find out where the WM placed us
16858           - Make sure that if the ParentForm changes location the Form
16859             is notified
16860         * XplatUIX11.cs: XGetGeometry will not return the coords relative
16861             to the root, but to whatever the WM placed around us.
16862             Translate to root coordinates before returning toplevel
16863             coordinates
16864         * XplatUIWin32.cs: Removed debug output
16865         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
16866           flag to GetWindowPos, to allow translation of coordinates on X11
16867
16868 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16869
16870         * ListBox.cs: connect LostFocus Event
16871
16872 2005-01-27  Peter Bartok  <pbartok@novell.com>
16873
16874         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16875           XplatUIX11.cs: Extended the Systray API
16876         * Form.cs: Removed debug output
16877         * Application.cs: Fixed focus assignment, always need to call
16878           XplatUI.Activate() since Form.Activate() has rules that may
16879           prevent activation
16880         * NotifyIcon.cs: Should be complete now
16881         * ToolTip.cs: Worked around possible timer bug
16882
16883 2005-01-27  Jackson Harper  <jackson@ximian.com>
16884
16885         * TabControl.cs:
16886         - Only invalidate the effected tabs when the
16887         selected index changes. This reduces drawing and gets rid of some
16888         flicker.
16889         - Only refresh if the tabs need to be shifted, otherwise only
16890         invalidate the slider button.
16891         - On windows the tabs are not filled to right if the slider is
16892         visible.
16893         
16894 2005-01-27  Jackson Harper  <jackson@ximian.com>
16895
16896         * TabControl.cs: Only refresh on mouseup if we are showing the
16897         slider. Also only invalidate the button whose state has changed.
16898
16899 2005-01-26  Peter Bartok  <pbartok@novell.com>
16900
16901         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
16902         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
16903           and SystrayRemove() methods
16904         * XplatUIOSX.cs: Stubbed Systray methods
16905         * XplatUIX11.cs:
16906           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
16907             methods
16908           - Fixed broken XChangeProperty calls (marshalling messed up things)
16909         * X11Structs.cs: Added enums and structs required for Size hinting
16910         * NotifyIcon.cs: Added & implemented
16911
16912 2005-01-26  Jackson Harper  <jackson@ximian.com>
16913
16914         * TabControl.cs: Space vertically layed out tabs properly.
16915
16916 2005-01-26  Peter Bartok  <pbartok@novell.com>
16917
16918         * Form.cs (CreateClientParams): Always set the location to 0,0
16919           since we're a child window.
16920
16921         * Control.cs (SetVisibleCore): Always explicitly setting the location
16922           of a toplevel window, apparently X11 doesn't like to move windows
16923           while they're not mapped.
16924
16925 2005-01-26  Jackson Harper  <jackson@ximian.com>
16926
16927         * TabControl.cs: Implement FillToRight size mode with vertically
16928         rendered tabs.
16929
16930 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16931
16932         * ControlPaint.cs, ThemeWin32Classic.cs
16933                 - Fixes DrawFocusRectangle
16934
16935 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16936
16937         * MenuAPI.cs:
16938                 - MenuBar tracking only starts when item is first clicked
16939                 - Fixes menu hidding for multiple subitems
16940                 - Unselect item in MenuBar when item Executed
16941                 - Fixes bug 71495
16942
16943 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
16944
16945         * ListControl.cs:
16946                 - IsInputKey for ListBox
16947         * ListBox.cs:
16948                 - Focus item
16949                 - Shift and Control item selection
16950                 - Implement SelectionMode.MultiExtended
16951                 - Fixes RightToLeft
16952         * ComboBox.cs:
16953                 - IsInputKey implemented
16954                 - Do not generate OnTextChangedEdit on internal txt changes
16955                 
16956 2005-01-23  Peter Bartok  <pbartok@novell.com>
16957
16958         * AccessibleObject.cs: Partially implemented Select()
16959         * MonthCalendar.cs: Added missing attributes and events
16960         * Form.cs: Fixed CreateParams behaviour, now controls derived from
16961           form can properly override CreateParams.
16962         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16963           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
16964           Control performs Invalidate & Update
16965         * NativeWindow (CreateHandle): Added special handling for Form
16966           and Form.FormParent classes to allow overriding of From.CreateParams
16967         * Control.cs:
16968           - ControlNativeWindow: Renamed 'control' variable to more intuitive
16969             name 'owner'
16970           - ControlNativeWindow: Added Owner property
16971           - Removed usage of Refresh() on property changes, changed into
16972             Invalidate(), we need to wait until the queue is processed for
16973             updates, direct calls might cause problems if not all vars for
16974             Paint are initialized
16975           - Added call to UpdateStyles() when creating the window, to set any
16976             styles that CreateWindow might have ignored.
16977           - Added support for Form CreateParent overrides to UpdateStyles()
16978         * MessageBox.cs: Removed no longer needed FormParent override stuff,
16979           CreateParams are now properly overridable
16980         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
16981           CreateParams are now properly overridable
16982
16983 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
16984
16985         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
16986         OnTextBoxChanged.
16987
16988         Capture LostFocus and OnTextBoxChanged.  The later introduces a
16989         recursive invocation that I have not figured out yet.
16990
16991         Reset the timer when not using (it was accumulating).
16992
16993
16994         (OnTextBoxChanged): Set UserEdit to true here to track whether the
16995         user has made changes that require validation.
16996
16997         Reset changing to avoid loops.
16998
16999 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
17000
17001         * NumericUpDown.cs: Display value at startup.
17002
17003         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
17004         ValidateEditText.
17005
17006         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
17007         filled in.  Added some basic parsing of text.
17008
17009         Still missing the OnXXX method overrides, and figuring out the
17010         events that must be emitted.
17011
17012         * UpDownBase.cs: Handle UserEdit on the Text property.
17013         
17014 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
17015
17016         * ComboBox.cs:
17017           - Fixes IntegralHeight
17018           - ToString method
17019
17020 2005-01-21  Jackson Harper  <jackson@ximian.com>
17021
17022         * TabControl.cs: Set the SelectedIndex property when SelectedTab
17023         is set so that the page visibility is updated and the tabs are
17024         sized correctly.
17025
17026 2005-01-21  Jackson Harper  <jackson@ximian.com>
17027
17028         * TabControl.cs: Use cliping rectangle for blitting. Give the
17029         theme the clipping rect so we can do clipping while
17030         drawing. Remove some debug code.
17031
17032 2005-01-21  Jackson Harper  <jackson@ximian.com>
17033
17034         * TabPage.cs: Add a new method so tab pages can force the tab
17035         control to recalculate the tab page sizes.
17036         * TabControl.cs: UpdateOwner needs to make the tab control recalc
17037         sizes.
17038
17039 2005-01-20  Jackson Harper  <jackson@ximian.com>
17040
17041         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
17042
17043 2005-01-20  Jackson Harper  <jackson@ximian.com>
17044
17045         * TreeView.cs: Set the bounds for nodes properly. They were
17046         getting screwed up when checkboxes were not enabled, but images
17047         were.
17048
17049 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
17050
17051         * ListBox.cs:
17052                 - Owner draw support
17053                 - Fixes
17054                 
17055 2005-01-20  Jackson Harper  <jackson@ximian.com>
17056
17057         * XplatUIStructs.cs: More misc keys
17058         * X11Keyboard.cs: Ignore some control keys.
17059
17060 2005-01-20  Jackson Harper  <jackson@ximian.com>
17061
17062         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
17063         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
17064
17065 2005-01-19  Peter Bartok  <pbartok@novell.com>
17066
17067         * Control.cs: Un-selecting the control when it is loosing focus
17068
17069 2005-01-19  Jackson Harper  <jackson@ximian.com>
17070
17071         * TreeView.cs: Hook up to the text controls leave event so we can
17072         end editing when the users clicks outside the text box.
17073         
17074 2005-01-19  Jackson Harper  <jackson@ximian.com>
17075
17076         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
17077         get set in the conversion array.
17078
17079 2005-01-19  Peter Bartok  <pbartok@novell.com>
17080
17081         * Application.cs (ModalRun): Added a call to CreateControl to ensure
17082           focus is properly set
17083         * Button.cs:
17084           - Added missing attributes
17085           - removed styles, those are already set in the base class
17086         * ButtonBase.cs:
17087           - Added missing attributes
17088           - Added clip window styles
17089         * CheckBox.cs: Added missing attributes
17090         * CommonDialog.cs:
17091           - FormParentWindow.CreateParams: Added required clip styles
17092         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
17093           also filters modifier keys
17094         * MessageBox.cs:
17095           - Added assignment of Accept and Cancel button to enable Enter
17096             and Esc keys in MessageBox dialogs
17097           - FormParentWindow.CreateParams: Added required clip styles
17098         * RadioButton.cs: Added missing attributes
17099         * TextControl.cs: No longer draws selection if control does not
17100           have focus
17101         * TextBoxBase.cs:
17102           - Now draws simple rectangle around test area to make it obvious
17103             there's a control. This is a hack until we properly support borders
17104           - A few simple fixes to support selections better, now erases selected
17105             text when typing, and resets selection when using movement keys
17106
17107 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
17108
17109         * UpDownBase.cs: Added some new properties.
17110
17111         * DomainUpDown.cs: Implement a lot to get my test working.
17112
17113 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17114
17115         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
17116
17117 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17118
17119         * OSXStructs (WindowAttributes): Fixed csc complaints
17120
17121 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17122
17123         * XplayUIOSX.cs:
17124           OSXStructs.cs: Initial refactor to move enums and consts into
17125           OSXStructs and use them in the driver for greater readability.
17126
17127 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17128
17129         * XplatUIOSX.cs: Initial support for Standard Cursors.
17130         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
17131
17132 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
17133
17134         * ComboBox.cs: ability to change style when the ctrl is already
17135         created, missing methods and events, bug fixes, signature fixes
17136
17137 2005-01-19  Peter Bartok  <pbartok@novell.com>
17138
17139         * Cursors.cs (ctor): Added ctor to fix signature
17140
17141 2005-01-18  Peter Bartok  <pbartok@novell.com>
17142
17143         * Button.cs: Implemented DoubleClick event
17144         * ButtonBase.cs:
17145           - Fixed keyboard handling to behave like MS, where the press of
17146             Spacebar is equivalent to a mousedown, and the key release is
17147             equivalent to mouseup. Now a spacebar push will give the same
17148             visual feedback like a mouse click.
17149           - Added missing attributes
17150           - Added ImeModeChanged event
17151           - Added support for generating DoubleClick event for derived classes
17152         * CheckBox.cs:
17153           - Implemented DoubleClick event
17154           - Added missing attributes
17155         * CommonDialog.cs: Added missing attribute
17156         * ContextMenu.cs: Added missing attributes
17157         * RadioButton.cs:
17158           - AutoChecked buttons do not allow to be unselected when clicked
17159             (otherwise we might end up with no selected buttons in a group)
17160           - Added missing attributes
17161           - Implemented DoubleClickEvent
17162         * ThreadExceptionDialog.cs: Enabled TextBox code
17163
17164 2005-01-18  Peter Bartok  <pbartok@novell.com>
17165
17166         * Form.cs: Removed debug output
17167         * Button.cs: Added support for DoubleClick method
17168
17169 2005-01-18  Peter Bartok  <pbartok@novell.com>
17170
17171         * Form.cs:
17172           - Added method to parent window that allows triggering size
17173             calculations when a menu is added/removed
17174           - set_Menu: Cleaned up mess from early days of Form and Control,
17175             now properly triggers a recalc when a menu is added/removed
17176           - Added case to select form itself as focused form if no child
17177             controls exist
17178           - Added PerformLayout call when showing dialog, to ensure properly
17179             placed controls
17180         * Control.cs:
17181           - Select(): Made internal so Form can access it
17182           - Focus(): Only call Xplat layer if required (avoids loop), and sets
17183             status
17184         * Application.cs (Run): Removed hack and calls PerformLayout instead
17185           to trigger calculation when Form becomes visible
17186
17187 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
17188
17189         * ComboBox.cs: fixes for ownerdraw
17190
17191 2005-01-18  Peter Bartok  <pbartok@novell.com>
17192
17193         * TextControl.cs:
17194           - Sentinel is no longer static, each Document gets it's own, this
17195             avoids locking or alternatively overwrite problems when more
17196             than one text control is used simultaneously.
17197           - Switched to use Hilight and HilightText brushes for text selection
17198
17199         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
17200
17201 2005-01-18  Peter Bartok  <pbartok@novell.com>
17202
17203         * Control.cs:
17204           - Hooked up the following events:
17205                 o ControlAdded
17206                 o ControlRemoved
17207                 o HandleDestroyed
17208                 o ImeModeChanged
17209                 o ParentChanged
17210                 o TabStopChanged
17211                 o Invalidated
17212                 o SystemColorsChanged
17213                 o ParentFontChanged
17214                 o Move
17215           - Removed debug output
17216           - Added a call to the current theme's ResetDefaults when a color change
17217             is detected
17218         * Form.cs: Now setting the proper ImeMode
17219         * Theme.cs: Defined a method to force recreation of cached resources
17220           and rereading of system defaults (ResetDefaults())
17221         * ThemeWin32Classic.cs: Added ResetDefaults() stub
17222
17223 2005-01-17  Peter Bartok  <pbartok@novell.com>
17224
17225         * Control.cs: Added missing attributes
17226
17227 2005-01-17  Jackson Harper  <jackson@ximian.com>
17228
17229         * TreeNode.cs: Implement editing. Add missing properties selected
17230         and visible.
17231         * TreeView.cs: Implement node editing. Also some fixes to use
17232         Invalidate (invalid area) instead of Refresh when selecting.
17233
17234 2005-01-17  Peter Bartok  <pbartok@novell.com>
17235
17236         * Control.cs:
17237           - Implemented InvokeGotFocus() method
17238           - Implemented InvokeLostFocus() method
17239           - Implemented InvokePaint() method
17240           - Implemented InvokePaintBackground() method
17241           - Implemented InvokeClick() method
17242           - Implemented FindForm() method
17243           - Implemented RectangleToClient() method
17244           - Implemented ClientToRectangle() method
17245           - Implemented ResetBackColor() method
17246           - Implemented ResetCursor() method
17247           - Implemented ResetFont() method
17248           - Implemented ResteForeColor() method
17249           - Implemented ResetImeMode() method
17250           - Implemented ResetLeftToRight() method
17251           - Implemented ResetText() method
17252           - Implemented Scale() methods
17253           - Implemented ScaleCore() method
17254           - Implemented Update() method
17255           - Removed unused variables
17256           - Stubbed AccessibilityNotifyClients and
17257             ControlAccessibleObject.NotifyClients() methods (dunno what to do
17258             with those yet)
17259           - Now setting proper default for RightToLeft property
17260           - Fixed bug in SetClientSizeCore that would cause windows to get
17261             really big
17262           - Now sending Click/DoubleClick events
17263           - Now selecting controls when left mouse button is clicked on
17264             selectable control
17265         * AccessibleEvents.cs: Added
17266         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
17267         * XplatUIOSX.cs: Stubbed UpdateWindow() method
17268         * XplatUIWin32.cs: Implemented UpdateWindow() method
17269         * XplatUIX11.cs: Implemented UpdateWindow() method
17270         * Form.cs: Removed stray semicolon causing CS0162 warning
17271         * ThemeWin32Classic.cs: Fixed unused variable warnings
17272         * ScrollableControl.cs: Now calls base method for ScaleCore
17273         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
17274           style to avoid interference with internal click handler (which is
17275           different than standard Control click handling)
17276         * RadioButton.cs:
17277           - Now unchecks all sibling radio buttons when control is
17278             selected (Fixes #68756)
17279           - Removed internal tabstop variable, using the one inherited from
17280             Control
17281
17282 2005-01-17  Jackson Harper  <jackson@ximian.com>
17283
17284         * NavigateEventArgs.cs: Fix base type.
17285         * LinkLabel.cs: Sig fix
17286         
17287 2005-01-17  Jackson Harper  <jackson@ximian.com>
17288
17289         * TreeView.cs: Only invalidate the effected nodes bounds when
17290         selecting nodes.
17291
17292 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17293
17294         * XplatUIWin32.cs: fixes Win32 marshaling
17295         * XplatUIX11.cs: fixes method signature
17296
17297 2005-01-17  Peter Bartok  <pbartok@novell.com>
17298
17299         * XplatUIX11.cs: Clean up resources when we no longer need them
17300
17301 2005-01-17  Peter Bartok  <pbartok@novell.com>
17302
17303         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
17304           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
17305           and DestroyCursor() methods.
17306         * Cursor.cs: Partially implemented, now supports standard cursors;
17307           still contains some debug code
17308         * Cursors.cs: Implemented class
17309         * Control.cs:
17310           - WndProc(): Added handling of WM_SETCURSOR message, setting the
17311             appropriate cursor
17312           - Implemented Cursor property
17313           - Replaced break; with return; more straightforwar and possibly
17314             faster
17315           - Now properly setting the result for WM_HELP
17316         * X11Structs.cs: Added CursorFontShape enum
17317         * XplatUIStructs.cs:
17318           - Added StdCursor enum (to support DefineStdCursor() method)
17319           - Added HitTest enum (to support sending WM_SETCURSOR message)
17320         * XplatUIX11.cs:
17321           - Now sends the WM_SETCURSOR message
17322           - Implemented new cursor methods
17323         * XplatUIOSX.cs: Stubbed new cursor methods
17324         * XplatUIWin32.cs:
17325           - Implemented new cursor methods
17326           - Added GetSystemMetrics function and associated enumeration
17327
17328 2005-01-15  Peter Bartok  <pbartok@novell.com>
17329
17330         * Control.cs:
17331           - WndProc(): Now handles EnableNotifyMessage
17332           - SelectNextControl(): Fixed bug where if no child or sibling
17333             controls exist we looped endlessly
17334
17335 2005-01-14  Jackson Harper  <jackson@ximian.com>
17336
17337         * TreeView.cs: Recalculate the tab pages when a new one is added
17338         so that the proper bounding rects are created.
17339
17340 2005-01-14  Jackson Harper  <jackson@ximian.com>
17341
17342         * TreeView.cs: Draw a gray box instead of a grip in the lower
17343         right hand corner when there are both horizontal and vertical
17344         scroll bars.
17345
17346 2005-01-14  Jackson Harper  <jackson@ximian.com>
17347
17348         * Control.cs: When erasing backgrounds use FromHwnd instead of
17349         FromHdc when there is a NULL wparam. This occurs on the X driver.
17350         * XplatUIX11.cs: Set the wparam to NULL.
17351
17352 2005-01-13  Jackson Harper  <jackson@ximian.com>
17353
17354         * PictureBox.cs: Implement missing methods (except ToString, need
17355         to test that on windows) and events. When visibility is changed we
17356         need to redraw the image because the buffers are killed. When size
17357         is changed refresh if the sizemode needs it.
17358
17359 2005-01-13  Peter Bartok  <pbartok@novell.com>
17360
17361         * Control.cs (SelectNextControl): Was using wrong method to select
17362           a control
17363
17364 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17365
17366         * ComboBox.cs: fixes dropstyle
17367
17368 2005-01-13  Peter Bartok  <pbartok@novell.com>
17369
17370         * Form.cs:
17371           - Implemented Select() override
17372           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
17373           - Now sets keyboard focus on startup
17374         * Control.cs (SelectNextControl): Now properly handles directed=true
17375         * TextBoxBase.cs:
17376           - WndProc: Now passes tab key on to base if AcceptTabChar=false
17377           - Added (really bad) focus rectangle (mostly for testing)
17378         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
17379           to enforce redraw on focus changes
17380         * ContainerControl.cs:
17381           - Fixed detection of Shift-Tab key presses
17382           - Fixed traversal with arrow keys
17383         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
17384           gonna keep this or if it's complete yet
17385         
17386 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17387
17388         * ComboBox.cs: missing properties, fixes
17389
17390 2005-01-13  Peter Bartok  <pbartok@novell.com>
17391
17392         * Panel.cs (ctor): Setting Selectable window style to off
17393         * Splitter.cs (ctor): Setting Selectable window style to off
17394         * GroupBox.cs (ctor): Setting Selectable window style to off
17395         * Label.cs (ctor): Setting Selectable window style to off
17396
17397 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
17398
17399         * UpDownBase.cs (InitTimer): If the timer has been already
17400         created, enable it.
17401
17402         Use a TextBox instead of a Label.
17403
17404 2005-01-12  Jackson Harper  <jackson@ximian.com>
17405
17406         * TreeView.cs: Refresh the tree after sorting the nodes. Always
17407         draw the connecting node lines (when ShowLines is true).
17408         * TreeNode.cs: The nodes index can now be updated. This is used
17409         when a node collection is sorted.
17410         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
17411         insert or an existing unsorted node collection can be sorted.
17412         
17413 2005-01-12  Peter Bartok  <pbartok@novell.com>
17414
17415         * ContainerControl.cs: Implemented ProcessDialogKeys()
17416
17417 2005-01-12  Peter Bartok  <pbartok@novell.com>
17418
17419         * Control.cs:
17420           - Implemented SelectNextControl() method
17421           - Several focus related bug fixes
17422           - Fixed Docking calculations to match MS documentation and
17423             behaviour
17424
17425 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
17426
17427         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
17428         bug fixes
17429
17430 2005-01-12  Peter Bartok  <pbartok@novell.com>
17431
17432         * Control.cs:
17433           - Fixed broken Contains() method
17434           - Implemented GetNextControl() method. Finally. This is the pre-
17435             requisite for focus handling.
17436
17437 2005-01-12  Peter Bartok  <pbartok@novell.com>
17438
17439         * OSXStrucs.cs: Added
17440
17441 2005-01-12  Peter Bartok  <pbartok@novell.com>
17442
17443         * XplatUIWin32.cs:
17444           - Removed PeekMessageFlags
17445           - Implemented SetWindowStyle() method
17446         * XplatUIStructs.cs: Added PeekMessageFlags
17447         * X11Structs: Added missing border_width field to XWindowChanges struct
17448         * XplatUIX11.cs:
17449           - PeekMessage: Now throws exception if flags which are not yet
17450             supported are passed
17451           - Implemented SetWindowStyle() method
17452           - Fixed SetZOrder to handle AfterHwnd properly
17453         * XplatUI.cs: Added SetWindowStyle() method
17454         * XplatUIDriver.cs: Added SetWindowStyle() abstract
17455         * Control.cs:
17456           - Implemented UpdateStyles() method
17457           - Implemented UpdateZOrder() method
17458         * XplatUIOSX.cs: Added SetWindowStyle() stub
17459
17460 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
17461
17462         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
17463         button mouse).
17464
17465
17466 2005-01-11  Jackson Harper  <jackson@ximian.com>
17467
17468         * TreeView.cs: Still need to draw lines to siblings even if out of
17469         the current node is out of the clip.
17470
17471 2005-01-11  Jackson Harper  <jackson@ximian.com>
17472
17473         * TreeView.cs: When setting the hbar/vbar/grip position use
17474         SetBounds so that perform layout is only called once. Also suspend
17475         and resume layout so layout is only done once for all controls.
17476         - Removed some debug fluff
17477         * SizeGrip.cs: Call base implmentation in overriding methods.
17478         - When visibility is changed the drawing buffers are killed so we
17479         need to redraw.
17480
17481 2005-01-11  Jackson Harper  <jackson@ximian.com>
17482
17483         * TreeView.cs: Calculate the open node count while drawing. This
17484         saves us an entire tree traversal for every paint operation. Use
17485         a member var for the open node count so less vars are passed around.
17486
17487 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
17488
17489         * MonthCalendar.cs:
17490         - fixed selection to use mousemove, not mouse polling on timer
17491         * ThemeWin32Classic.cs
17492         - removed redundant unused variable "no_more_content"
17493         
17494 2005-01-11  Peter Bartok  <pbartok@novell.com>
17495
17496         * XplatUIX11.cs (DoEvents): Needs to return when no more events
17497           are pending, so it now calls PeekMessage instead of GetMessage;
17498           implemented a incomplete version of PeekMessage
17499         
17500 2005-01-11  Peter Bartok  <pbartok@novell.com>
17501
17502         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
17503           I18n issues
17504         * TextBoxBase.cs: Added sending of TextChanged event
17505
17506 2005-01-10  Jackson Harper  <jackson@ximian.com>
17507
17508         * TreeView.cs: Try not to draw outside the clipping rectangle on
17509         each node element.
17510
17511 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
17512
17513         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
17514
17515 2005-01-10  Jackson Harper  <jackson@ximian.com>
17516
17517         * TreeView.cs:
17518         - Implement fast scrolling. Now only the newly
17519         exposed nodes are drawn and the old image is moved using the
17520         XplatUI::ScrollWindow method.
17521         - Factor in height of nodes when calculating whether or not the
17522         node is in the clipping rect.
17523
17524 2005-01-10  Jackson Harper  <jackson@ximian.com>
17525
17526         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
17527
17528 2005-01-10  Peter Bartok  <pbartok@novell.com>
17529
17530         * Application.cs: Added temporary hack to resolve all our resize
17531           required issues on startup. This will get fixed properly at
17532           some point in the future
17533
17534 2005-01-10  Jackson Harper  <jackson@ximian.com>
17535
17536         * SizeGrip.cs: New internal class that is used as a sizing
17537         grip control...hence the name.
17538
17539 2005-01-10  Peter Bartok  <pbartok@novell.com>
17540
17541         * Control.cs: Implemented proper TabIndex handling, now assigning
17542           a tabindex when a control is added to a container
17543         * GroupBox.cs (ctor): Now sets the Container style bit, required
17544           for Control.GetNextControl()
17545
17546 2005-01-09  Jackson Harper  <jackson@ximian.com>
17547
17548         * TextBoxBase.cs: Clear window when scrolling (fixes build).
17549
17550 2005-01-09  Peter Bartok <pbartok@novell.com>
17551
17552         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17553           XplatUIX11.cs: Added ability to control ScrollWindow expose and
17554           an overload for ScrollWindow to allow only scrolling a rectangle
17555
17556 2005-01-09  Peter Bartok <pbartok@novell.com>
17557
17558         * Form.cs:
17559           - Implemented SetDesktopBounds method
17560           - Implemented SetDesktopLocation method
17561
17562 2005-01-08  Jackson Harper  <jackson@ximian.com>
17563
17564         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
17565         the node count has changed, this removes to VScroll::Refresh calls
17566         when drawing.
17567
17568 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
17569
17570         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
17571
17572 2005-01-07  Jackson Harper  <jackson@ximian.com>
17573
17574         * TreeNode.cs: Just update the single node when it is
17575         checked. Don't refresh after toggling, the Expand/Collapse already
17576         handles this.
17577         * TreeView.cs: Respect clipping a little more when drawing. Try
17578         not to redraw things that don't need to be redrawn. Just hide the
17579         scrollbars when they are no longer needed instead of removing
17580         them, so they don't have to be created again and again.
17581         
17582 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
17583
17584         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
17585         coordinates to window space to place the caret properly, FIXED.
17586         Implement GetWindowState & SetWindowState
17587
17588 2005-01-06  Peter Bartok <pbartok@novell.com>
17589
17590         * Form.cs:
17591           - Implemented ClientSize property
17592           - Implemented DesktopBounds property
17593           - Implemented DesktopLocation property
17594           - Implemented IsRestrictedWindow property
17595           - Implemented Size property
17596           - Implemented TopLevel property
17597           - Implemented FormWindowState property
17598         * Control.cs:
17599           - Implemented GetTopLevel() method
17600           - Implemented SetTopLevel() method
17601         * X11Structs.cs (Atom):
17602           - Added AnyPropertyType definition
17603           - Added MapState definiton and updated XWindowAttribute struct
17604         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
17605         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
17606         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
17607         * XplatUIWin32.cs:
17608           - Implemented GetWindowState() and SetWindowState() methods
17609           - Fixed Win32GetWindowLong return type
17610         * XplatUIX11.cs:
17611           - Introduced central function for sending NET_WM messages
17612           - Implemented GetWindowState() and SetWindowState() methods
17613         * TextBoxBase.cs (set_Lines):
17614           - Now uses Foreground color for text added via Text property (Duh!)
17615           - Added code to remember programmatically requested size (fixes
17616             behaviour when Multiline is set after Size)
17617           - Added AutoSize logic
17618
17619 2005-01-06  Jackson Harper  <jackson@ximian.com>
17620
17621         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
17622
17623 2005-01-06  Jackson Harper  <jackson@ximian.com>
17624
17625         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
17626         set to less then 0.
17627
17628 2005-01-06  Jackson Harper  <jackson@ximian.com>
17629
17630         * ScrollableControl.cs: Lazy init the scrollbars.
17631         
17632 2005-01-06  Jackson Harper  <jackson@ximian.com>
17633
17634         * Theme.cs: Speed up getting pens and solid brushes, by using
17635         their ARGB as a hash instead of tostring and not calling Contains.
17636
17637 2005-01-06  Peter Bartok <pbartok@novell.com>
17638
17639         * Form.cs:
17640           - Implemented OnActivated and OnDeactivate event trigger
17641           - Implemented Activate() method
17642           - Fixed ShowDialog() to activate the form that was active before
17643             the dialog was shown
17644         * XplatUIX11.cs:
17645           - Added global active_window var that tracks the currently active
17646             X11 window
17647           - Now always grabs Property changes from the root window to always
17648             catch changes on the active window property
17649           - Added code to PropertyNotify handler to send Active/Inactive
17650             messages when state changes. This puts X11 and Win32 en par on
17651             WM_ACTIVATE notifications (except for double notifications when
17652             the user clicks away from our modal window to another one of our
17653             windows)
17654
17655 2005-01-05  Jackson Harper  <jackson@ximian.com>
17656
17657         * ImageList.cs: Implment ctor
17658
17659 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17660
17661         * XplatUIOSX.cs: Implement Activate/SetTopmost
17662
17663 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17664
17665         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
17666
17667 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17668
17669         * XplatUIOSX.cs: Implement GetActive/SetFocus.
17670
17671 2005-01-05  Peter Bartok <pbartok@novell.com>
17672
17673         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
17674           XplatUIOSX.cs: Added GetActive method to return the currently
17675           active window for the application (or null, if none is active)
17676         * Form.cs:
17677           - Implemented ActiveForm
17678           - Commented out owner assignment for modal dialogs (causes problems
17679             on Win32, since the owner will be disabled)
17680           - Reworked some Active/Focus handling (still incomplete)
17681         * CommonDialog.cs: Commented out owner assignment for modal dialogs
17682           (causes problems on Win32, since the owner will be disabled)
17683         * IWin32Window: Added ComVisible attribute
17684
17685 2005-01-05  Peter Bartok <pbartok@novell.com>
17686
17687         * ToolTip.cs (WndProc): Enable setting focus now that we have the
17688           required XplatUI functions.
17689
17690 2005-01-05  Peter Bartok <pbartok@novell.com>
17691
17692         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
17693           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
17694           to implement focus and activation handling; still incomplete and
17695           with debug output
17696
17697 2005-01-04  Peter Bartok <pbartok@novell.com>
17698
17699         * TextBoxBase.cs: Changed access level for Document property to
17700           match switch to internal for TextControl
17701
17702 2005-01-04  Peter Bartok <pbartok@novell.com>
17703
17704         * AccessibleObject: Added ComVisible attribute
17705
17706 2005-01-04  Jackson Harper  <jackson@ximian.com>
17707
17708         * X11Keyboard.cs: Remove unneeded var.
17709
17710 2005-01-04  Jackson Harper  <jackson@ximian.com>
17711
17712         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
17713         but PAINT.
17714         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
17715         ClientMessage. This makes apps exit cleanly (more often).
17716         
17717 2005-01-04  Jackson Harper  <jackson@ximian.com>
17718
17719         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
17720         handling focus, return correct colors and fonts,
17721         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
17722         handle selection, horizontal scrolling, and mouse interaction.
17723
17724 2005-01-04  Peter Bartok <pbartok@novell.com>
17725
17726         * ICommandExecutor.cs: Added
17727         * IDataGridColumnStyleEditingNotificationService.cs: Added
17728         * IFeatureSupport.cs: Added
17729         * IFileReaderService.cs: Added
17730         * IDataObject.cs: Added ComVisible attribute
17731         * AmbientProperties.cs: Added
17732         * BaseCollection.cs: Added missing attributes
17733         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
17734         * BaseCollection.cs: Added missing attributes
17735         * Binding.cs: Added TypeConverter attribute
17736         * BindingContext.cs: Added DefaultEvent attribute
17737         * BindingsCollection.cs: Added DefaultEvent attribute
17738         * Button.cs: Added DefaultValue attribute
17739         * DragEventArgs.cs: Added ComVisible attribute
17740         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
17741         * KeyEventArgs.cs: Added ComVisible attribute
17742         * KeyPressEventArgs.cs: Added ComVisible attribute
17743         * MouseEventArgs.cs: Added ComVisible attribute
17744         * NavigateEventArgs.cs: Added
17745         * NavigateEventHandler.cs: Added
17746         * FeatureSupport.cs: Added
17747         * OSFeature.cs: Added
17748         * Theme.cs: Added abstract Version property to support OSFeature
17749         * ThemeWin32Classic.cs: Added Version property to
17750           support OSFeature.Themes
17751         * ProgressBar.cs: Removed OnPaintBackground override, not required since
17752           the proper styles to avoid background drawing are set, also doesn't
17753           match MS signature
17754         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
17755         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
17756         * ScrollEventArgs.cs: Added ComVisible attribute
17757         * SplitterEventArgs.cs: Added ComVisible attribute
17758         * AccessibleSelection.cs: Added Flags attribute
17759         * Appearance.cs: Added ComVisible attribute
17760         * Border3DSide.cs: Added ComVisible attribute
17761         * Border3DStyle.cs: Added ComVisible attribute
17762         * BorderStyle.cs: Added ComVisible attribute
17763         * DragAction.cs: Added ComVisible attribute
17764         * ErrorBlinkStyle.cs: Added
17765         * ScrollEventType.cs: Added ComVisible attribute
17766         * AnchorStyles.cs: Added Editor attribute
17767         * DockStyle.cs: Added Editor attribute
17768         * HorizontalAlignment.cs: Added ComVisible attribute
17769         * HelpEventArgs.cs: Added ComVisible attribute
17770         * PaintEventArgs.cs: Added IDisposable
17771
17772 2005-01-04  Peter Bartok <pbartok@novell.com>
17773
17774         * TextControl.cs: Switched Line, LineTag and Document classes to
17775           internal
17776
17777 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17778
17779         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
17780         Simple mode, fixes, IntegralHeight, etc.
17781
17782 2005-01-04  Peter Bartok <pbartok@novell.com>
17783
17784         * TextBoxBase.cs: Using proper font variable now
17785
17786 2005-01-04  Peter Bartok <pbartok@novell.com>
17787
17788         * Form.cs (ShowDialog): Set parent to owner, if provided
17789         * GroupBox.cs: Removed unused vars
17790         * TextControl.cs:
17791           - Added GetHashCode() for Document and LineTag classes
17792           - Removed unused variables
17793           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
17794             to allow translation between continuous char position and line/pos
17795         * CheckBox.cs: Removed vars that are provided by base class
17796         * RadioButton.cs: Removed vars that are provided by base class, added
17797           new keyword where required
17798         * LinkLabel.cs: Added new keyword where required
17799         * Control.cs (WndProc): Removed unused variable
17800         * TextBoxBase.cs:
17801           - Finished SelectionLength property
17802           - Implemented SelectionStart property
17803           - Implemented Text property
17804           - Removed unused vars
17805         * MessageBox.cs: Added new keyword where required
17806         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
17807           WndProc signature
17808         * MenuAPI.cs: Added new keyword where required
17809         * ButtonBase.cs: Removed vars that are provided by base class, added
17810           new keyword where required
17811         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
17812           argument to double, to allow compiling with csc 2.0 (Atsushi ran
17813           into this)
17814         * Application.cs (Run): Now triggers the ThreadExit event
17815         * CommonDialog.cs: Added new keyword where required; now properly sets
17816           parent (owner) for dialog
17817         * XplatUIX11.cs: Commented out unused vars
17818         * StatusBar.cs: Fixed signature for Text property
17819         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
17820
17821 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17822
17823         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
17824         TrackBar.cs, MonthCalendar.cs: remove unused vars
17825
17826 2005-01-03  Jackson Harper  <jackson@ximian.com>
17827
17828         * ThemeWin32Classic.cs:
17829         * X11Keyboard.cs: Remove unused vars.
17830
17831 2005-01-03  Peter Bartok  <pbartok@novell.com>
17832
17833         * TextBox.cs:
17834           - set_Text: Tied into TextControl
17835           - set_TextAlignment: Tied into TextControl
17836         * TextControl.cs:
17837           - Added alignment properties and implemented alignment handling
17838             and drawing (still has a bug, not generating proper expose events)
17839           - Added new Line() constructor to allow passing the line alignment
17840           - Fixed selection setting, properly handling end<start now
17841           - Added aligment considerations to RecalculateDocument()
17842         * TextBoxBase.cs:
17843           - Now properly enforces control height for single line controls
17844           - Added support for CharacterCasing
17845           - Added IsInputKey override
17846           - Fixed Keys.Enter logic
17847           - Added SetBoundsCore override
17848           - Fixed mouse selection handling
17849
17850 2005-01-03  Jackson Harper  <jackson@ximian.com>
17851
17852         * TreeView.cs:
17853           - Collapse and uncheck all nodes when CheckBoxes is disabled.
17854           - Checkboxes are always aligned to the bottom of the node,
17855           regardless of item height.
17856           - Use the node bounds to draw the text so we can center it when
17857           the item height is greater then the font height.
17858           - Node::Bounds are only the text part of the node.
17859         * TreeNode.cs: New method to combine collapsing and unchecking all
17860           nodes recursively.
17861
17862 2005-01-02  Jackson Harper  <jackson@ximian.com>
17863
17864         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
17865         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
17866         tree when a check is changed. TODO: Only refresh the checked node.
17867
17868 2004-12-30  Jackson Harper  <jackson@ximian.com>
17869
17870         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
17871         * TreeNode.cs: When collapsing make sure to never collapse the
17872         root node.
17873
17874 2004-12-29  Jackson Harper  <jackson@ximian.com>
17875
17876         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
17877         
17878 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
17879
17880         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
17881
17882 2004-12-28  Peter Bartok  <pbartok@novell.com>
17883
17884         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
17885           not yet assigned
17886
17887 2004-12-28  Peter Bartok  <pbartok@novell.com>
17888
17889         * Control.cs (WndProc): Added WM_HELP handler, now generates
17890           HelpRequested event
17891         * Form.cs: Added HelpButton property and required support code
17892         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
17893
17894 2004-12-28  Peter Bartok  <pbartok@novell.com>
17895
17896         * CommonDialog.cs:
17897           - Made DialogForm.owner variable internal
17898           - Added check to ensure owner form is set before setting
17899             owner properties in CreateParams
17900
17901 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
17902
17903         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
17904           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
17905           GetCursorPos.  Fix major visibility issues.  Rework the windowing
17906           system to support borderless/titleless windows (implements menus).
17907           Fix GetWindowPos.  Implement initial background color support for
17908           views.
17909
17910 2004-12-28  Peter Bartok  <pbartok@novell.com>
17911
17912         * Form.cs (get_CreateParams): Make sure we have an owner before using
17913           the owner variable. Implement proper default if no owner exists
17914
17915 2004-12-28  Peter Bartok  <pbartok@novell.com>
17916
17917         * In preparation for making Managed.Windows.Forms the default build target
17918           for System.Windows.Forms, the following stubbed files were added.
17919           Dialogs are currently being implemented by contributors and are only
17920           short-term place holders.
17921         * ColorDialog.cs: Initial check-in (minmal stub)
17922         * DataGrid.cs: Initial check-in (minimal stub)
17923         * DataGridLineStyle.cs: Initial check-in (minimal stub)
17924         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
17925         * DataGridTableStyle.cs: Initial check-in (minimal stub)
17926         * FontDialog.cs: Initial check-in (minimal stub)
17927         * FileDialog.cs: Initial check-in (minimal stub)
17928         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
17929         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
17930         * OpenFileDialog: Initial check-in (minimal stub)
17931         * IComponentEditorPageSite.cs: Initial check-in
17932         * Splitter.cs: Initial check-in (for Jackson)
17933         * SplitterEventArgs.cs: Initial check-in (for Jackson)
17934         * SplitterEventHandler.cs: Initial check-in (for Jackson)
17935         * TextBox.cs: Initial check-in; still needs some wiring to
17936           TextControl backend
17937         * Form.cs: Implemented ControlBox property
17938         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
17939         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
17940         * TextControl.cs: Added selection functionality; added todo header
17941         * TextBoxBase.cs:
17942           - Implemented Lines property
17943           - Implemented TextHeight property
17944           - Implemented SelectedText property
17945           - Implemented SelectionLength property
17946           - Implemented SelectAll method
17947           - Implemented ToString method
17948           - Removed and cleaned up some debug code
17949           - Implemented (still buggy) mouse text selection
17950
17951 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
17952
17953         * ComboBox.cs: Complete DropDownList implementation, fixes.
17954
17955 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
17956
17957         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
17958         * ComboBoxStyle.cs: ComboBoxStyle enum
17959         * ComboBox.cs: Initial work on ComboBox control
17960
17961 2004-12-21  Peter Bartok  <pbartok@novell.com>
17962
17963         * Control.cs (ctor, CreateParams): Moved setting of is_visible
17964           forward so that anything that creates a window gets the default,
17965           also no longer uses Visible property in CreateParams to avoid
17966           walking up the parent chain and possibly get the wrong visible
17967           status. Fixed IsVisible to no longer walk up to the parent.
17968
17969 2004-12-21  Peter Bartok  <pbartok@novell.com>
17970
17971         * Form.cs (ShowDialog): Unset modality for the proper window
17972  
17973 2004-12-20  Peter Bartok  <pbartok@novell.com>
17974
17975         * CommonDialog.cs: Initial check-in
17976
17977 2004-12-20  Peter Bartok  <pbartok@novell.com>
17978
17979         * Control.cs (Visible): Now uses the parent window instead of the
17980           client area window for the property
17981
17982         * Form.cs
17983           - ShowDialog(): Now uses the proper window for modality
17984           - The default visibility state for the form parent is now false. This
17985             will prevent the user from seeing all the changes to the form and
17986             its controls before the application hits Application.Run()
17987           - Removed some stale commented out code
17988
17989         * NativeWindow.cs:
17990           - Added FindWindow() method to have a method to check for existence
17991             of a window handle
17992           - Added ability to override default exception handling (for example
17993             when debugging with VS.Net; to do this the ExternalExceptionHandler
17994             define must be set
17995           - Removed some useless debug output
17996
17997         * XplatUIX11.cs:
17998           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
17999             not working as expected
18000           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
18001             property to allow switching back to the modal window if focus is
18002             given to another one of our windows (Application Modal)
18003           - Now only sets override_redirect if we create a window
18004             without WS_CAPTION
18005           - Moved EventMask selection before mapping of newly created window
18006             so we can catch the map event as well
18007           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
18008           - Added various Atom related DllImports
18009           - Implemented Exit() method
18010           - .ctor() : No longer shows window if WS_VISIBLE is not defined
18011             in the CreateParams
18012
18013         * MessageBox.cs: Now properly deals with the FormParent window by
18014           providing an override the FormParent CreateParams property to
18015           set as POPUP instead of OVERLAPPED window.
18016
18017 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18018
18019         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
18020         Minor code cleanup.
18021
18022 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18023         
18024         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
18025
18026 2004-12-18  Peter Bartok  <pbartok@novell.com>
18027
18028         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
18029           implementing SetModal() method
18030
18031 2004-12-18  Peter Bartok  <pbartok@novell.com>
18032
18033         * X11Structs.cs (XGCValues): Fixed type of function element
18034         * XplatUI.cs: Added ScrollWindow() method
18035         * XplatUIDriver.cs: Added ScrollWindow() abstract
18036         * XplatUIWin32.cs: Implemented ScrollWindow() method
18037         * XplatUIX11.cs: Implemented ScrollWindow() method
18038         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
18039
18040 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18041
18042         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
18043         Some more keyboard support (INCOMPLETE)
18044
18045 2004-12-17  Peter Bartok  <pbartok@novell.com>
18046
18047         * TextControl.cs:
18048         - Added color attribute to line tags.
18049         - Added color argument to all functions dealing with tags
18050         - Added color argument support to various functions
18051         - Fixed miss-calculation of baseline/shift in certain circumstances
18052
18053         * TextBoxBase.cs: Added new color option to test code
18054
18055 2004-12-17  Jackson Harper  <jackson@ximian.com>
18056
18057         * TreeNode.cs:
18058         * MonthCalendar.cs: Signature fixes
18059
18060 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18061
18062         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
18063         keyboard event moved it.  Create a new graphics context for each paint resolves this
18064
18065 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18066
18067         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
18068         Make caret exist and go blink blink.  Initial keyboard support.
18069         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
18070         works.
18071
18072 2004-12-17  Jackson Harper  <jackson@ximian.com>
18073
18074         * XplatUIStructs.cs: Updated set of virtual keycodes.
18075         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
18076
18077 2004-12-17  Jackson Harper  <jackson@ximian.com>
18078
18079         * XplatUIX11.cs: Prune old keyboard code.
18080
18081 2004-12-17  Jackson Harper  <jackson@ximian.com>
18082
18083         * XplatUIX11.cs: When generating mouse wparams get the modifier
18084         keys from the ModifierKeys property.
18085
18086 2004-12-17  Jackson Harper  <jackson@ximian.com>
18087
18088         * X11Keyboard.cs: Send up/down input when generating
18089         messages. Remove some unused vars.
18090
18091 2004-12-17  Jackson Harper  <jackson@ximian.com>
18092
18093         * TabControl.cs:
18094         * TreeView.cs: get rid of warnings.
18095
18096 2004-12-17  Jackson Harper  <jackson@ximian.com>
18097
18098         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
18099
18100 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
18101
18102         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
18103           CheckedListBox.cs: Implementation
18104
18105 2004-12-17  Peter Bartok  <pbartok@novell.com>
18106
18107         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
18108
18109 2004-12-16  Peter Bartok  <pbartok@novell.com>
18110
18111         * TextControl.cs:
18112           - InsertCharAtCaret(): Fixed start pos fixup
18113           - CaretLine_get: No longer derives the line from the tag, the tag
18114             could be stale if lines in the document have been added or deleted
18115           - RebalanceAfterDelete(): Fixed bug in balancing code
18116           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
18117           - Line.Streamline(): Now can also elminate leading empty tags
18118           - DumpTree(): Added a few more tests and prevented exception on
18119             uninitialized data
18120           - Added Debug section for Combining lines
18121           - Delete(): Now copies all remaining properties of a line
18122           
18123         * TextBoxBase.cs:
18124           - Left mousebutton now sets the caret (and middle button still acts
18125             as formatting tester, which must go away soon)
18126           - Added Debug section for Deleting/Combining lines
18127           - Fixed calculations for UpdateView after Combining lines
18128
18129 2004-12-16  Peter Bartok  <pbartok@novell.com>
18130
18131         * TextControl.cs: Now properly aligns text on a baseline, using the
18132           new XplatUI.GetFontMetrics() method. Simplified several calculations
18133         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
18134           defined
18135
18136 2004-12-16  Peter Bartok  <pbartok@novell.com>
18137
18138         * XplatUI.cs: Added GetFontMetrics() method
18139         * XplatUIDriver.cs: Added GetFontMetrics() abstract
18140         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
18141           into libgdiplus, our private GetFontMetrics function
18142         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
18143         * XplatUIWin32.cs: Implemented GetFontMetrics() method
18144
18145 2004-12-16  Jackson Harper  <jackson@ximain.com>
18146
18147         * XplatUIStruct.cs: Add enum for dead keys
18148         * X11Keyboard.cs: Map and unmap dead keys.
18149
18150 2004-12-16  Jackson Harper  <jackson@ximian.com>
18151
18152         * X11Keyboard.cs: Detect and use the num lock mask.
18153
18154 2004-12-16  Peter Bartok  <pbartok@novell.com>
18155
18156         * Control.cs (CreateGraphics): Added check to make sure the
18157           handle of the window exists before calling Graphics.FromHwnd()
18158
18159 2004-12-16  Peter Bartok  <pbartok@novell.com>
18160
18161         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
18162           contains a lot of code that's not supposed to be there for the
18163           real thing, but required for developing/testing the textbox
18164           backend.
18165
18166 2004-12-16  Peter Bartok  <pbartok@novell.com>
18167
18168         * TextControl.cs:
18169         - Fixed Streamline method
18170         - Added FindTag method to Line
18171         - Added DumpTree method for debugging
18172         - Added DecrementLines() method for deleting lines
18173         - Fixed UpdateView to update the cursor to end-of-line on single-line
18174           updates
18175         - Added PositionCaret() method
18176         - Fixed MoveCaret(LineDown) to move into the last line, too
18177         - Added InsertChar overload
18178         - Fixed InsertChar tag offset calculations
18179         - Added DeleteChar() method
18180         - Added Combine() method for folding lines
18181         - Fixed Delete() method, no longer allocates wasted Line object and
18182           now copies all properties when swapping nodes
18183         - Delete() method now updates document line counter
18184
18185 2004-12-15  Jackson Harper  <jackson@ximian.com>
18186
18187         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
18188         * X11Keyboard.cs: Expose the currently selected modifier keys
18189         through a property.
18190
18191 2004-12-15  Peter Bartok  <pbartok@novell.com>
18192
18193         * TextControl.cs: Initial check-in. Still incomplete
18194
18195 2004-12-15  Jackson Harper  <jackson@ximian.com>
18196
18197         * TreeNode.cs:
18198         * TreeView.cs: Fix build on csc (second time today ;-))
18199
18200 2004-12-15  Jackson Harper  <jackson@ximian.com>
18201
18202         * TreeView.cs: Store the treenodes plus/minus box bounds when it
18203         is calculated and use this for click testing.
18204         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
18205
18206 2004-12-15  Jackson Harper  <jackson@ximian.com>
18207
18208         * TreeView.cs: Pass the nodes image index to the image list when
18209         drawing that image.
18210
18211 2004-12-15  Jackson Harper  <jackson@ximian.com>
18212
18213         * X11Keyboard.cs: Set messages hwnd.
18214         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
18215         post_message calls.
18216
18217 2004-12-15  Jackson Harper  <jackson@ximian.com>
18218
18219         * X11Keyboard.cs: Fix to compile with csc.
18220         
18221 2004-12-15  Jackson Harper  <jackson@ximian.com>
18222
18223         * X11Structs.cs: Add key mask values
18224         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
18225         * X11Keyboard.cs: New file - Extrapolates and interpolates key
18226         down/up foo into WM_CHAR foo
18227         * KeyboardLayouts.cs: Common keyboard layouts
18228         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
18229         post messages into the main queue.
18230
18231 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
18232
18233         * Button.cs: implement ProcessMnemonic
18234         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
18235           brushes everytime
18236         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
18237         * ButtonBase.cs: Show HotkeyPrefix (not the &)
18238
18239 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
18240         
18241         * MonthCalendar.cs: Implemented click-hold for next/previous month
18242           and date selection
18243           
18244 2004-12-11  Peter Bartok  <pbartok@novell.com>
18245
18246         * X11Structs.cs:
18247           - Added XKeyboardState (moved from XplatUIX11.cs)
18248           - Added XCreateGC related enums and structures
18249           - Added GXFunction for XSetFunction
18250
18251         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
18252
18253         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
18254           CaretVisible() calls
18255
18256         * ToolTip.cs: Added code to prevent stealing focus from app windows
18257
18258         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
18259           DestroyCaret, SetCaretPos and CaretVisible)
18260
18261         * XplatUIX11.cs:
18262           - Added implementation for caret functions
18263           - Moved hover variables into a struct, to make it a bit easier
18264             on the eyes and to debug
18265           - Removed XKeyboardState (moved to XplatUIX11.cs)
18266           - Moved Keyboard properties into the properties region
18267
18268         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
18269           call to get a graphics context for our control
18270
18271         * XplatUIOSX.cs: Added empty overrides for the new caret functions
18272
18273         * TreeView.cs: Fixed bug. No matter what color was set it would always
18274           return SystemColors.Window
18275
18276         * XplatUIWin32.cs: Implemented caret overrides
18277
18278 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
18279
18280         * ListBox.cs: fire events, implement missing methods and properties,
18281         sorting.
18282
18283 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
18284
18285         * MonthCalendar.cs: invalidation bug fixing
18286         * ThemeWin32Classic.cs: paint fixing
18287
18288 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
18289
18290         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
18291         prepare the CGContextRef there now.
18292
18293 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
18294
18295         * MonthCalendar.cs:
18296           - optimisationL only invalidate areas that have changed
18297         * ThemeWin32Classic.cs:
18298           - only paint parts that intersect with clip_area
18299
18300 2004-12-09  Peter Bartok  <pbartok@novell.com>
18301
18302         * Application.cs: Undid changes from r37004 which cause problems
18303         on X11
18304
18305 2004-12-09  Ravindra  <rkumar@novell.com>
18306
18307         * ToolBar.cs: Added support for displaying ContextMenu
18308         attached to a button on ToolBar.
18309         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
18310         property.
18311
18312 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18313
18314         * Label.cs: autosize works in text change and removes unnecessary
18315         invalidate
18316
18317 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18318
18319         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18320         remove warnings
18321
18322 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
18323
18324         * XplatUIOSX.cs: Added mouse move/click/grab support
18325         Remove some debugging WriteLines not needed anymore.
18326         Add window resizing/positioning.
18327         Fix visibility on reparenting.
18328
18329 2004-12-08  Peter Bartok  <pbartok@novell.com>
18330
18331         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
18332
18333 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
18334
18335         * XplatUIOSX.cs: Initial checkin
18336         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
18337
18338 2004-12-03  Ravindra <rkumar@novell.com>
18339
18340         * ListView.cs: Added some keybindings and fixed scrolling.
18341         ScrollBars listen to ValueChanged event instead of Scroll
18342         Event. This would let us take care of all changes being
18343         done in the scrollbars' values programmatically or manually.
18344         * ListView.cs (CanMultiselect): Added a check for shift key.
18345         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
18346         * ListViewItem.cs (Clone): Fixed. We need to make a copy
18347         of ListViewSubItemCollection as well.
18348
18349 2004-12-06  Peter Bartok <pbartok@novell.com>
18350
18351         * Control.cs (Parent): Added check and exception to prevent
18352         circular parenting
18353
18354 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
18355
18356         * ListBox.cs: implemented clipping, selection single and multiple,
18357         bug fixing
18358
18359 2004-12-03  Ravindra <rkumar@novell.com>
18360
18361         * ListView.cs (ListView_KeyDown):
18362         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
18363         when CTRL key is pressed.
18364         * ListViewItem.cs (Selected): Fixed setting the property.
18365
18366 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18367
18368         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
18369
18370         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
18371         MinimizeBox, ShowInTaskbar, TopMost properties.
18372
18373         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
18374         will be implemented).
18375
18376 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18377
18378         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
18379
18380         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
18381         tests.
18382         
18383         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
18384         
18385         * TreeView.cs: BackColor is Colors.Window.
18386
18387 2004-12-01  Jackson Harper  <jackson@ximian.com>
18388
18389         * TreeView.cs: When resizing the tree if the user is making it
18390         smaller we don't get expose events, so we need to handle adding
18391         the horizontal scrollbar in the size changed handler as well as
18392         the expose handler.
18393
18394 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
18395
18396         * DrawItemState.cs: fixes wrong enum values
18397
18398 2004-12-01  Jackson Harper  <jackson@ximian.com>
18399
18400         * TreeView.cs: Resize the hbar as well as the vbar on resize.
18401
18402 2004-12-01  Jackson Harper  <jackson@ximian.com>
18403
18404         * NodeLabelEditEventArgs.cs:
18405         * NodeLabelEditEventHandler.cs:
18406         * OpenTreeNodeEnumerator.cs:
18407         * TreeNode.cs:
18408         * TreeNodeCollection.cs:
18409         * TreeView.cs:
18410         * TreeViewAction.cs:
18411         * TreeViewCancelEventArgs.cs:
18412         * TreeViewCancelEventHandler.cs:
18413         * TreeViewEventArgs.cs:
18414         * TreeViewEventHandler.cs: Initial implementation.
18415
18416 2004-12-01  Ravindra <rkumar@novell.com>
18417
18418         * ListView.cs (CalculateListView): Fixed scrolling related
18419         calculations. Also, removed some debug statements from other
18420         places.
18421         * ListViewItem.cs: Changed access to 'selected' instance variable
18422         from private to internal.
18423         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
18424
18425 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
18426
18427         * ThemeWin32Classic.cs: remove cache of brush and pens for
18428         specific controls and use the global system, fixes scrollbutton
18429         bugs (for small sizes, disabled, etc)
18430         
18431         * ScrollBar.cs: does not show the thumb for very small controls
18432         (as MS) and allow smaller buttons that the regular size
18433
18434 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
18435
18436         * UpDownBase.cs: Add abstract methods for the interface.
18437         Add new virtual methods (need to be hooked up to TextEntry when it
18438         exists).
18439         Add override methods for most features.
18440         Computes the size, forces the height of the text entry.
18441
18442         * NumericUpDown.cs: Put here the current testing code.
18443
18444         * Set eol-style property on all files that do not have mixed line
18445         endings, to minimize the future problems.  There are still a few
18446         files with mixed endings, and someone should choose whether they
18447         want to move it or not.
18448
18449 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
18450
18451         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
18452         System.Colors
18453         
18454 2004-11-30  Ravindra <rkumar@novell.com>
18455
18456         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
18457         drawing and replaced use of SystemColors by theme colors.
18458         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
18459         * ListView.cs (ListViewItemCollection.Add): Throw exception when
18460         same ListViewItem is being added more than once.
18461
18462 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
18463
18464         * MonthCalendar.cs:
18465           - ControlStyles love to make the control not flicker
18466           
18467 2004-11-30  Peter Bartok  <pbartok@novell.com>
18468
18469         * CharacterCasing.cs: Added
18470
18471 2004-11-29  Peter Bartok  <pbartok@novell.com>
18472
18473         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18474           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
18475           I am removing these files as they conflict with already completed
18476           work. While it is fantastic to get contributions to MWF, I
18477           respectfully ask that everyone please coordinate their contributions
18478           through mono-winforms-list or #mono-winforms at this time. We're
18479           explicitly avoiding stubbing and don't want controls that don't have
18480           their basic functionality implemented in svn. Please also see
18481           http://www.mono-project.com/contributing/winforms.html
18482
18483
18484 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
18485
18486         * Application.cs (ModalRun): Don't hang after exit.
18487
18488         * Theme.cs: New TreeViewDefaultSize property.
18489
18490         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
18491         with less hardcoded SystemColors constant.
18492         Implemented TreeViewDefaultSize.
18493
18494         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18495         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
18496
18497
18498 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
18499
18500         * MonthCalendar.cs:
18501           - Fix NextMonthDate and PrevMonthDate click moving calendar
18502
18503 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18504
18505         * MonthCalendar.cs:
18506           - Fix usage of ScrollChange Property when scrolling months
18507
18508 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
18509
18510         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
18511          - Fixes menu destroying
18512          - Support adding and removing items on already created menus
18513
18514 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18515
18516         * MonthCalendar.cs:
18517           - Re-worked all bolded dates handling to match win32
18518         * ThemeWin32Classic.cs:
18519           - Fixed rendering with bolded dates
18520
18521 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
18522
18523         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
18524         - Horizontal scroolbar
18525         - Multicolumn
18526         - Fixes
18527
18528
18529 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
18530
18531         * MonthCalendar.cs:
18532           - Fix Usage of MaxSelectionCount from SelectionRange
18533           - Fixed Shift + Cursor Selection
18534           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
18535           - Fixed normal cursor selection to be compat with win32
18536           - Fixed Shift + Mouse Click selection
18537
18538 2004-11-24  Peter Bartok <pbartok@novell.com>
18539
18540         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
18541         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
18542         * XplatUIX11.cs:
18543           - CreatedKeyBoardMsg now updates keystate with Alt key
18544           - Added workaround for timer crash to CheckTimers, Jackson will
18545             develop a proper fix and check in later
18546           - Implemented DispatchMessage
18547           - Removed calling the native window proc from GetMessage (call
18548             now moved to DispatchMessage)
18549
18550         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
18551           the keydata (Fixes bug #69831)
18552
18553         * XplatUIWin32.cs:
18554           - (DispatchMessage): Switched to return IntPtr
18555           - Added DllImport for SetFocus
18556
18557 2004-11-24  Ravindra <rkumar@novell.com>
18558
18559         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
18560         background drawing.
18561         * ListViewItem.cs: Fixed various properties, calculations
18562         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
18563         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
18564         and some internal properties. Fixed MouseDown handler and Paint
18565         method.
18566
18567 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18568
18569         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
18570
18571 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18572
18573         * ContainerControl.cs: correct accidental check in of local changes
18574
18575 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18576
18577         * ThemeWin32Classic.cs:
18578                 - Fixed Drawing Last month in grid (sometimes not showing)
18579         * MonthCalendar.cs:
18580                 - Fixed title width calculation bug (makeing title small)
18581
18582 2004-11-23  Peter Bartok <pbartok@novell.com>
18583
18584         * XplatUIX11.cs:
18585           - Added generation of WM_MOUSEHOVER event
18586           - Added missing assignment of async_method atom
18587           - Fixed WM_ERASEBKGND; now only redraws the exposed area
18588
18589 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18590
18591         * ThemeWin32Classic.cs:
18592                 - Fixed Drawing of today circle when showtodaycircle not set
18593                 - fixed drawing of first and last month in the grid (gay dates)
18594         * MonthCalendar.cs:
18595                 - Fixed Drawing of today circle
18596                 - Fixed drawing of grady dates
18597                 - Fixed HitTest for today link when ShowToday set to false
18598                 - Fixed DefaultSize to obey ShowToday
18599
18600 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18601
18602         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
18603         * System.Windows.Forms/Theme.cs
18604         * MonthCalendar.cs: added for MonthCalendar
18605         * SelectionRange.cs: added for MonthCalendar
18606         * Day.cs: added for MonthCalendar: added for MonthCalendar
18607         * DateRangeEventArgs.cs: added for MonthCalendar
18608         * DateRangeEventHandler.cs: added for MonthCalendar
18609
18610 2004-11-22  Ravindra <rkumar@novell.com>
18611
18612         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
18613         property.
18614
18615 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
18616
18617         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
18618         event handler.
18619         
18620         * NumericUpDown.cs: Added new implementation.
18621         * UpDownBase.cs: Added new implementation.
18622
18623         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
18624         implementations.
18625         
18626         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
18627         implementations.
18628
18629         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
18630         methods.
18631
18632 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
18633
18634         * Timer.cs  (Dispose): Should call the base dispose when
18635         overriding.
18636
18637 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18638
18639         * ScrollBar.cs: updates thumb position when max, min or increment
18640         is changed
18641
18642 2004-11-21  Ravindra <rkumar@novell.com>
18643
18644         * ListView.cs: Implemented item selection, activation and
18645         column header style. Fixed properties to do a redraw, if
18646         required. Added support for MouseHover, DoubleClick, KeyDown
18647         and KeyUp event handling and some minor fixes.
18648         * ListViewItem.cs: Fixed constructor.
18649         * ThemeWin32Classic.cs: Improved drawing for ListView.
18650
18651 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18652
18653         * ThemeWin32Classic.cs: initial listbox drawing code
18654         * DrawMode.cs: new enumerator
18655         * ListControl.cs: stubbed class
18656         * ListBox.cs: initial implementation
18657         * Theme.cs: new methods definitions
18658         * SelectionMode.cs: new enumerator
18659
18660 2004-11-17  Peter Bartok  <pbartok@novell.com>
18661
18662         * XplatUIWin32.cs: Added double-click events to the class style
18663         * Control.cs (WndProc):
18664           - Added handling of click-count to MouseDown/ MouseUp events.
18665           - Added handling of middle and right mouse buttons
18666           - Removed old debug code
18667
18668 2004-11-17  Jackson Harper  <jackson@ximian.com>
18669
18670         * XplatUIX11.cs: Use the new Mono.Unix namespace.
18671
18672 2004-11-17  Ravindra <rkumar@novell.com>
18673
18674         * ListView.cs: Added event handling for MouseMove/Up/Down.
18675         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
18676         * ThemeWin32Classic.cs: We need to clear the graphics context and
18677         draw column header in a proper state.
18678
18679
18680 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
18681
18682         *  Menu.cs: fixes signature
18683
18684 2004-11-16  Peter Bartok  <pbartok@novell.com>
18685
18686         * XplatUIX11.cs (GetMessage): Implemented generation of
18687           double click mouse messages
18688
18689 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
18690
18691         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
18692         not by menu
18693
18694 2004-11-11  Peter Bartok  <pbartok@novell.com>
18695
18696         * HandleData.cs: Added Visible property
18697         * XplatUIX11.cs (IsVisible): Now uses Visible property from
18698           HandleData
18699         * XplatUIX11.cs: Removed old debug leftovers
18700         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
18701         * Control.cs (WndProc): Removed old debug leftovers,
18702           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
18703           needed WM_SIZE handling
18704
18705 2004-11-11  Jackson Harper  <jackson@ximian.com>
18706
18707         * OwnerDrawPropertyBag.cs:
18708         * TreeViewImageIndexConverter.cs: Initial implementation
18709
18710 2004-11-10  Jackson Harper  <jackson@ximian.com>
18711
18712         * ThemeWin32Classic.cs:
18713         * TabControl.cs: instead of moving tabs by the slider pos just
18714         start drawing at the tab that is offset by the slider. This way
18715         scrolling always moves by exactly one tab.
18716
18717 2004-11-10  Jackson Harper  <jackson@ximian.com>
18718
18719         * TabControl.cs: You can only scroll left when the slider has
18720         already ben moved right.
18721         
18722 2004-11-10  Jackson Harper  <jackson@ximian.com>
18723
18724         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
18725         the clip area.
18726         
18727 2004-11-10  Jackson Harper  <jackson@ximian.com>
18728
18729         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
18730         clip area.
18731         
18732 2004-11-09  Jackson Harper  <jackson@ximian.com>
18733
18734         * TabControl.cs (CalcXPos): New helper method so we can determine
18735         the proper place to start drawing vertical tabs.
18736         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
18737         
18738 2004-11-09  Jackson Harper  <jackson@ximian.com>
18739
18740         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
18741         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
18742         and Bottom, left and right are illegal values for this and
18743         multiline is enabled when the alignment is set to left or right.
18744         (DrawTab): Each alignment block should draw the text itself now
18745         because Left requires special love. Also add rendering for Left
18746         aligned tabs.
18747         
18748 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
18749
18750         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
18751         does not destroy the windows, removes debugging messages
18752
18753 2004-11-09  jba  <jba-mono@optusnet.com.au>
18754
18755         * ThemeWin32Classic.cs
18756         (DrawButtonBase): Fix verticle text rect clipping in windows
18757         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18758         rendering and incorrect text rect clipping
18759         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18760         rendering and incorrect text rect clipping
18761         
18762 2004-11-08  Jackson Harper  <jackson@ximian.com>
18763
18764         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
18765         bottom when they are bottom aligned so the bottoms of the tabs get
18766         displayed.
18767         * TabControl.cs (DropRow): Move rows up instead of down when the
18768         tab control is bottom aligned.
18769
18770 2004-11-08 13:59  pbartok
18771
18772         * XplatUIX11.cs:
18773           - Added handling for various window styles
18774           - Added handling for popup windows
18775           - Added SetTopmost handling
18776
18777 2004-11-08 13:55  pbartok
18778
18779         * XplatUIWin32.cs:
18780           - Added argument to SetTopmost method
18781           - Fixed broken ClientToScreen function
18782
18783 2004-11-08 13:53  pbartok
18784
18785         * XplatUIStructs.cs:
18786           - Added missing WS_EX styles
18787
18788 2004-11-08 13:53  pbartok
18789
18790         * XplatUI.cs, XplatUIDriver.cs:
18791           - Added argument to SetTopmost
18792
18793 2004-11-08 13:52  pbartok
18794
18795         * X11Structs.cs:
18796           - Added XSetWindowAttributes structure
18797           - Improved XWindowAttributes structure
18798           - Added SetWindowValuemask enum
18799           - Added window creation arguments enum
18800           - Added gravity enum
18801           - Added Motif hints structure
18802           - Added various Motif flags and enums
18803           - Added PropertyMode enum for property functions
18804
18805 2004-11-08 13:50  pbartok
18806
18807         * Form.cs:
18808           - Fixed arguments for updated SetTopmost method
18809
18810 2004-11-08 13:49  pbartok
18811
18812         * ToolTip.cs:
18813           - Fixed arguments for updated SetTopmost function
18814           - Fixed usage of PointToClient
18815
18816 2004-11-08 13:44  pbartok
18817
18818         * MenuAPI.cs:
18819           - Added Clipping of children and siblings
18820
18821 2004-11-08 13:41  pbartok
18822
18823         * MainMenu.cs:
18824           - Removed SetMenuBarWindow call. We do this in Form.cs
18825
18826 2004-11-08 13:40  jackson
18827
18828         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
18829           scrolling jimmi in the correct location with bottom aligned tabs
18830
18831 2004-11-08 13:36  pbartok
18832
18833         * ContainerControl.cs:
18834           - Implemented BindingContext
18835           - Implemented ParentForm
18836
18837 2004-11-08 12:46  jackson
18838
18839         * TabControl.cs: Put bottom rendered tabs in the right location
18840
18841 2004-11-08 07:15  jordi
18842
18843         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
18844           removes dead code
18845
18846 2004-11-05 17:30  jackson
18847
18848         * TabControl.cs: When selected tabs are expanded make sure they
18849           don't go beyond the edges of the tab control
18850
18851 2004-11-05 14:57  jackson
18852
18853         * TabControl.cs: Reset show_slider so if the control is resized to
18854           a size where it is no longer needed it's not displayed anymore
18855
18856 2004-11-05 13:16  jackson
18857
18858         * TabControl.cs: Make tab pages non visible when added to the
18859           control
18860
18861 2004-11-05 12:42  jackson
18862
18863         * TabControl.cs: Implement SizeMode.FillToRight
18864
18865 2004-11-05 12:16  jackson
18866
18867         * Control.cs: Do not call CreateHandle if the handle is already
18868           created
18869
18870 2004-11-05 11:46  jackson
18871
18872         * TabControl.cs: Remove superflous call to CalcTabRows
18873
18874 2004-11-05 09:07  jackson
18875
18876         * XplatUIX11.cs: Update for Mono.Posix changes
18877
18878 2004-11-05 07:00  ravindra
18879
18880         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
18881           scrolling.
18882
18883 2004-11-04 22:47  jba
18884
18885         * ThemeWin32Classic.cs:
18886           - Fix Button rendering for FlatStyle = Flat or Popup
18887           - Fix RadioButton and CheckBox rendering when Appearance = Button
18888             (normal and flatstyle).
18889           - Correct outer rectangle color when drawing focus rectangle
18890           - Adjust button bounds to be 1 px smaller when focused
18891           - Make button not draw sunken 3d border when pushed (windows compat)
18892           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
18893           - Offset the text in RadioButton and Checkbox when being rendered as
18894           a button.
18895           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
18896           radiobuttons
18897           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
18898           - Fixed disabled text rendering for normally rendered radiobuttons
18899
18900 2004-11-04 10:26  jackson
18901
18902         * TabControl.cs: Recalculate tab rows when resizing
18903
18904 2004-11-04 07:47  jordi
18905
18906         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
18907           collection completion, drawing issues, missing features
18908
18909 2004-11-04 05:03  ravindra
18910
18911         * ScrollBar.cs:
18912                 - We need to recalculate the Thumb area when
18913                 LargeChange/maximum/minimum values are changed.
18914           - We set the 'pos' in UpdatePos() method to minimum, if it's less
18915                 than minimum. This is required to handle the case if large_change is
18916                 more than max, and use LargeChange property instead of large_change
18917                 variable.
18918           - We return max+1 when large_change is more than max, like MS does.
18919
18920 2004-11-04 04:29  ravindra
18921
18922         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
18923                 - Changed default value signatures (prefixed all with ListView).
18924                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
18925                 ListView.
18926           - Fixed calculations for ListViewItem and implemented Clone()
18927           method.
18928
18929 2004-11-04 04:26  ravindra
18930
18931         * Theme.cs, ThemeWin32Classic.cs:
18932                 - Changed default ListView values signatures (prefixed all with
18933                 ListView).
18934           - Fixed default size values for VScrollBar and HScrollBar.
18935                 - Fixed DrawListViewItem method.
18936
18937 2004-11-04 04:05  ravindra
18938
18939         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
18940
18941 2004-11-04 04:04  ravindra
18942
18943         * ImageList.cs: Implemented the missing overload for Draw method.
18944
18945 2004-11-03 19:29  jackson
18946
18947         * TabControl.cs: Handle dropping rows on selection properly
18948
18949 2004-11-03 11:59  jackson
18950
18951         * TabControl.cs: remove debug code
18952
18953 2004-11-03 11:52  jackson
18954
18955         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
18956           the scrolly widgerywoo
18957
18958 2004-11-02 13:52  jackson
18959
18960         * TabControl.cs: Resize the tab pages and tabs when the tab control
18961           is resized
18962
18963 2004-11-02 13:40  jackson
18964
18965         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
18966           selected tab to the bottom
18967
18968 2004-11-02 13:39  jackson
18969
18970         * TabPage.cs: Store the tab pages row
18971
18972 2004-11-02 12:33  jordi
18973
18974         * MenuItem.cs: fixes handle creation
18975
18976 2004-11-02 11:42  jackson
18977
18978         * TabControl.cs: signature fix
18979
18980 2004-11-02 08:56  jackson
18981
18982         * TabControl.cs: Calculate whether the tab is on an edge properly.
18983           Remove top secret debugging code
18984
18985 2004-11-01 19:57  jackson
18986
18987         * TabControl.cs: Add click handling, and proper sizing
18988
18989 2004-11-01 19:47  jackson
18990
18991         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
18992           tab controls
18993
18994 2004-11-01 19:39  jackson
18995
18996         * TabPage.cs: add internal property to store the bounds of a tab
18997           page
18998
18999 2004-10-30 04:23  ravindra
19000
19001         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
19002           values.
19003
19004 2004-10-30 04:21  ravindra
19005
19006         * ListView.cs, ListViewItem.cs: Added support for scrolling and
19007           fixed calculations.
19008
19009 2004-10-30 03:06  pbartok
19010
19011         * XplatUIX11.cs:
19012           - Removed extension of DllImported libs
19013
19014 2004-10-29 09:55  jordi
19015
19016         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
19017           navigation, itemcollection completion, menu fixes
19018
19019 2004-10-27 22:58  pbartok
19020
19021         * XplatUIX11.cs:
19022           - Now throws a nice error message when no X display could be opened
19023
19024 2004-10-26 13:51  jordi
19025
19026         * ListView.cs: removes warning
19027
19028 2004-10-26 03:55  ravindra
19029
19030         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
19031           ThemeWin32Classic.cs: Some formatting for my last checkins.
19032
19033 2004-10-26 03:36  ravindra
19034
19035         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
19036           control and default values.
19037
19038 2004-10-26 03:35  ravindra
19039
19040         * Theme.cs: Added some default values for ListView control.
19041
19042 2004-10-26 03:33  ravindra
19043
19044         * ToolBar.cs: ToolBar should use the user specified button size, if
19045           there is any. Added a size_specified flag for the same.
19046
19047 2004-10-26 03:33  ravindra
19048
19049         * ColumnHeader.cs: Added some internal members and calculations for
19050           ColumnHeader.
19051
19052 2004-10-26 03:32  ravindra
19053
19054         * ListViewItem.cs: Calculations for ListViewItem.
19055
19056 2004-10-26 03:31  ravindra
19057
19058         * ListView.cs: Added some internal members and calculations for
19059           ListView.
19060
19061 2004-10-22 13:31  jordi
19062
19063         * MenuAPI.cs: speedup menus drawing
19064
19065 2004-10-22 13:16  jackson
19066
19067         * XplatUIX11.cs: Make sure to update exposed regions when adding an
19068           expose event
19069
19070 2004-10-22 11:49  jackson
19071
19072         * Control.cs: oops
19073
19074 2004-10-22 11:41  jackson
19075
19076         * Control.cs: Check to see if the window should have its background
19077           repainted by X when drawing.
19078
19079 2004-10-22 11:31  jackson
19080
19081         * XplatUIX11.cs: When invalidating areas only use XClearArea if
19082           clear is true, this way we do not get flicker from X repainting the
19083           background
19084
19085 2004-10-22 11:28  jackson
19086
19087         * XEventQueue.cs: Queue properly
19088
19089 2004-10-21 09:38  jackson
19090
19091         * XEventQueue.cs: Fix access modifier
19092
19093 2004-10-21 09:36  jackson
19094
19095         * XEventQueue.cs: Don't loose messages
19096
19097 2004-10-21 09:22  jackson
19098
19099         * XEventQueue.cs: Don't loose messages
19100
19101 2004-10-20 04:15  jordi
19102
19103         * BootMode.cs: enum need it by SystemInfo
19104
19105 2004-10-19 21:58  pbartok
19106
19107         * XplatUIWin32.cs:
19108           - Small sanity check
19109
19110 2004-10-19 21:56  pbartok
19111
19112         * Form.cs:
19113           - Added private FormParentWindow class which acts as the container
19114             for our form and as the non-client area where menus are drawn
19115           - Added/Moved required tie-ins to Jordi's menus
19116           - Fixed/Implemented the FormStartPosition functionality
19117
19118 2004-10-19 21:52  pbartok
19119
19120         * Control.cs:
19121           - Removed unneeded locals
19122           - Added code to all size and location properties to understand and
19123             deal with the parent container of Form
19124
19125 2004-10-19 21:33  pbartok
19126
19127         * Application.cs:
19128           - Fixed to deal with new Form subclasses for menus
19129
19130 2004-10-19 17:48  jackson
19131
19132         * XEventQueue.cs: commit correct version of file
19133
19134 2004-10-19 16:50  jackson
19135
19136         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
19137
19138 2004-10-19 16:15  jordi
19139
19140         * MenuAPI.cs: MenuBarCalcSize returns the height
19141
19142 2004-10-19 08:31  pbartok
19143
19144         * Control.cs:
19145           - Added missing call to PreProcessMessage before calling OnXXXKey
19146           methods
19147
19148 2004-10-19 00:04  ravindra
19149
19150         * ToolTip.cs: Fixed constructor.
19151
19152 2004-10-18 09:31  jordi
19153
19154         * MenuAPI.cs: menuitems in menubars do not have shortcuts
19155
19156 2004-10-18 09:26  jordi
19157
19158         * MenuItem.cs: fixes MenuItem class signature
19159
19160 2004-10-18 08:56  jordi
19161
19162         * MenuAPI.cs: prevents windows from showing in the taskbar
19163
19164 2004-10-18 00:28  ravindra
19165
19166         * ToolTip.cs: Suppressed a warning message.
19167
19168 2004-10-18 00:27  ravindra
19169
19170         * Control.cs: Default value of visible property must be true.
19171
19172 2004-10-17 23:19  pbartok
19173
19174         * ToolTip.cs:
19175           - Complete implementation
19176
19177 2004-10-17 23:19  pbartok
19178
19179         * XplatUIX11.cs:
19180           - Added EnableWindow method
19181           - Added SetModal stub
19182           - Added generation of WM_ACTIVATE message (still needs testing)
19183           - Added SetTopMost stub
19184           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
19185
19186 2004-10-17 23:17  pbartok
19187
19188         * XplatUIWin32.cs:
19189           - Removed VirtualKeys to XplatUIStructs
19190           - Implemented SetTopMost method
19191           - Implemented EnableWindow method
19192           - Bugfix in ScreenToClient()
19193           - Bugfixes in ClientToScreen()
19194
19195 2004-10-17 22:51  pbartok
19196
19197         * XplatUIStructs.cs:
19198           - Added WS_EX styles to WindowStyles enumeration
19199
19200 2004-10-17 22:50  pbartok
19201
19202         * XplatUI.cs, XplatUIDriver.cs:
19203           - Added method for enabling/disabling windows
19204           - Added method for setting window modality
19205           - Added method for setting topmost window
19206
19207 2004-10-17 22:49  pbartok
19208
19209         * ThemeWin32Classic.cs:
19210           - Added ToolTip drawing code
19211
19212 2004-10-17 22:49  pbartok
19213
19214         * Theme.cs:
19215           - Added ToolTip abstracts
19216
19217 2004-10-17 22:47  pbartok
19218
19219         * Form.cs:
19220           - Fixed Form.ControlCollection to handle owner relations
19221           - Added Owner/OwnedForms handling
19222           - Implemented Z-Ordering for owned forms
19223           - Removed unneeded private overload of ShowDialog
19224           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
19225             so I hope)
19226           - Fixed Close(), had wrong default
19227           - Added firing of OnLoad event
19228           - Added some commented out debug code for Ownership handling
19229
19230 2004-10-17 22:16  pbartok
19231
19232         * Control.cs:
19233           - Fixed/implemented flat list of controls
19234
19235 2004-10-17 22:14  pbartok
19236
19237         * Application.cs:
19238           - Added code to simulate modal dialogs on Win32
19239
19240 2004-10-17 16:11  jordi
19241
19242         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
19243           mouse event
19244
19245 2004-10-17 13:39  jordi
19246
19247         * MenuAPI.cs: menu drawing fixes
19248
19249 2004-10-15 09:10  ravindra
19250
19251         * StructFormat.cs: General Enum.
19252
19253 2004-10-15 09:09  ravindra
19254
19255         * SizeGripStyle.cs: Enum for Form.
19256
19257 2004-10-15 09:08  ravindra
19258
19259         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
19260           in Theme for ListView.
19261
19262 2004-10-15 09:06  ravindra
19263
19264         * ColumnHeader.cs: Flushing some formatting changes.
19265
19266 2004-10-15 09:05  ravindra
19267
19268         * ListViewItem.cs: Implemented GetBounds method and fixed coding
19269           style.
19270
19271 2004-10-15 09:03  ravindra
19272
19273         * ListView.cs: Implemented Paint method and fixed coding style.
19274
19275 2004-10-15 07:34  jordi
19276
19277         * MenuAPI.cs: fix for X11
19278
19279 2004-10-15 07:32  ravindra
19280
19281         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
19282                 - Renamed Paint() method to Draw() for clarity. Also, moved
19283                 DrawImage() to OnPaint().
19284
19285 2004-10-15 07:25  ravindra
19286
19287         * CheckBox.cs, RadioButton.cs:
19288                 - Removed Redraw (), we get it from ButtonBase.
19289                 - Implemented Paint (), to do class specific painting.
19290
19291 2004-10-15 07:16  ravindra
19292
19293         * ButtonBase.cs:
19294                 - Redraw () is not virtual now.
19295                 - Added an internal virtual method Paint (), so that
19296                 derived classes can do their painting on their own.
19297                 - Modified OnPaint () to call Paint ().
19298
19299 2004-10-15 06:43  jordi
19300
19301         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
19302           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
19303
19304 2004-10-15 00:30  ravindra
19305
19306         * MessageBox.cs:
19307                 - MessageBox on windows does not have min/max buttons.
19308                 This change in CreateParams fixes this on Windows. We
19309                 still need to implement this windowstyle behavior in
19310                 our X11 driver.
19311
19312 2004-10-14 05:14  ravindra
19313
19314         * ToolBar.cs:
19315                 - Changed Redraw () to do a Refresh () always.
19316                 - Fixed the MouseMove event handling when mouse is pressed,
19317                 ie drag event handling.
19318                 - Replaced the usage of ToolBarButton.Pressed property to
19319                 ToolBarButton.pressed internal variable.
19320
19321 2004-10-14 05:10  ravindra
19322
19323         * ToolBarButton.cs:
19324                 - Added an internal member 'inside' to handle mouse move
19325                 with mouse pressed ie mouse drag event.
19326                 - Changed 'Pressed' property to return true only when
19327                 'inside' and 'pressed' are both true.
19328                 - Some coding style love.
19329
19330 2004-10-14 00:17  ravindra
19331
19332         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
19333           public method.
19334
19335 2004-10-14 00:15  ravindra
19336
19337         * ButtonBase.cs: Redraw () related improvements.
19338
19339 2004-10-14 00:14  ravindra
19340
19341         * MessageBox.cs: Moved InitFormSize () out of Paint method and
19342           removed unnecessary calls to Button.Show () method.
19343
19344 2004-10-13 17:50  pbartok
19345
19346         * XplatUIX11.cs:
19347           - Formatting fix
19348           - Removed destroying of window until we solve the problem of X
19349             destroying the window before us on shutdown
19350
19351 2004-10-13 16:32  pbartok
19352
19353         * ButtonBase.cs:
19354           - Now Redraws on MouseUp for FlatStyle Flat and Popup
19355
19356 2004-10-13 14:18  pbartok
19357
19358         * XplatUIX11.cs:
19359           - Added code to destroy the X window
19360
19361 2004-10-13 14:18  pbartok
19362
19363         * XplatUIWin32.cs:
19364           - Added code to destroy a window
19365
19366 2004-10-13 14:12  pbartok
19367
19368         * ButtonBase.cs:
19369           - Added the Redraw on Resize that got dropped in the last rev
19370
19371 2004-10-13 09:06  pbartok
19372
19373         * ThemeWin32Classic.cs:
19374           - Path from John BouAntoun:
19375             * Fix check rendering (centre correctly for normal style, offset
19376               correctly for FlatStyle).
19377             * Fix border color usage (use backcolor) for FlatStyle.Popup
19378             * Use checkbox.Capture instead of checkbox.is_pressed when
19379               rendering flatstyle states.
19380
19381 2004-10-12 21:48  pbartok
19382
19383         * ThemeWin32Classic.cs:
19384           - Removed all occurences of SystemColors and replaced them with the
19385             matching theme color
19386
19387 2004-10-12 21:41  pbartok
19388
19389         * ThemeWin32Classic.cs:
19390           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
19391             him using the function for flatstyle drawing
19392           - Changed functions to use the new version of CPDrawBorder3D
19393
19394 2004-10-12 21:15  pbartok
19395
19396         * ControlPaint.cs:
19397           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
19398             match MS documentation. They need to return defined colors if the
19399             passed color matches the configured control color. Thanks to John
19400             BouAntoun for pointing this out.
19401
19402 2004-10-12 20:57  pbartok
19403
19404         * Control.cs:
19405           - Fix from John BouAntoun: Raise ForeColorChanged event when text
19406             color is changed
19407
19408 2004-10-12 20:46  pbartok
19409
19410         * CheckBox.cs:
19411           - Fix from John BouAntoun: Now properly sets the Appearance property
19412
19413 2004-10-12 20:45  pbartok
19414
19415         * ThemeWin32Classic.cs:
19416           - Fixes from John BouAntoun: now handles forecolors and backcolors
19417             for flatstyle rendered controls much better; It also fixes normal
19418             checkbox rendering when pushed or disabled.
19419
19420 2004-10-08 02:50  jordi
19421
19422         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
19423           work
19424
19425 2004-10-07 08:56  jordi
19426
19427         * ThemeWin32Classic.cs: Removes deletion of cached brushes
19428
19429 2004-10-06 03:59  jordi
19430
19431         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
19432           XplatUIWin32.cs: removes warnings from compilation
19433
19434 2004-10-05 12:23  jackson
19435
19436         * RadioButton.cs: Fix ctor
19437
19438 2004-10-05 11:10  pbartok
19439
19440         * MessageBox.cs:
19441           - Partial implementation by Benjamin Dasnois
19442
19443 2004-10-05 10:15  jackson
19444
19445         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
19446           by John BouAntoun
19447
19448 2004-10-05 03:07  ravindra
19449
19450         * ToolBar.cs:
19451                 - Removed a private method, Draw ().
19452                 - Fixed the ButtonDropDown event handling.
19453                 - Fixed MouseMove event handling.
19454
19455 2004-10-05 03:04  ravindra
19456
19457         * ThemeWin32Classic.cs:
19458                 - Added DrawListView method and ListViewDefaultSize property.
19459                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
19460                 - Changed DOS style CRLF to Unix format (dos2unix).
19461
19462 2004-10-05 03:03  ravindra
19463
19464         * Theme.cs:
19465                 - Added DrawListView method and ListViewDefaultSize property.
19466
19467 2004-10-05 02:42  ravindra
19468
19469         * ToolBarButton.cs: Added an internal member dd_pressed to handle
19470           clicks on DropDown arrow.
19471
19472 2004-10-04 22:56  jackson
19473
19474         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
19475           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
19476           Control handle the buffers, derived classes should not have to
19477           CreateBuffers themselves.
19478
19479 2004-10-04 21:20  jackson
19480
19481         * StatusBar.cs: The control handles resizing the buffers now.
19482
19483 2004-10-04 21:18  jackson
19484
19485         * Control.cs: When resizing the buffers should be invalidated. This
19486           should be handled in Control not in derived classes.
19487
19488 2004-10-04 14:45  jackson
19489
19490         * TabPage.cs: oops
19491
19492 2004-10-04 02:14  pbartok
19493
19494         * LeftRightAlignment.cs:
19495           - Initial check-in
19496
19497 2004-10-04 01:09  jordi
19498
19499         * ThemeWin32Classic.cs: fixes right button position causing right
19500           button not showing on horizontal scrollbars
19501
19502 2004-10-02 13:12  pbartok
19503
19504         * XplatUIX11.cs:
19505           - Simplified the Invalidate method by using an X call instead of
19506             generating the expose ourselves
19507           - Added an expose when the window background is changed
19508           - Implemented ClientToScreen method
19509
19510 2004-10-02 13:08  pbartok
19511
19512         * XplatUIWin32.cs:
19513           - Added Win32EnableWindow method (test for implementing modal
19514           dialogs)
19515           - Added ClientToScreen method and imports
19516
19517 2004-10-02 13:07  pbartok
19518
19519         * XplatUI.cs, XplatUIDriver.cs:
19520           - Added ClientToScreen coordinate translation method
19521
19522 2004-10-02 13:06  pbartok
19523
19524         * KeyPressEventArgs.cs:
19525           - Fixed access level for constructor
19526
19527 2004-10-02 13:06  pbartok
19528
19529         * NativeWindow.cs:
19530           - Changed access level for the window_collection hash table
19531
19532 2004-10-02 13:05  pbartok
19533
19534         * Form.cs:
19535           - Added KeyPreview property
19536           - Added Menu property (still incomplete, pending Jordi's menu work)
19537           - Implemented ProcessCmdKey
19538           - Implemented ProcessDialogKey
19539           - Implemented ProcessKeyPreview
19540
19541 2004-10-02 13:02  pbartok
19542
19543         * Control.cs:
19544           - Added private method to get the Control object from the window
19545           handle
19546           - Implemented ContextMenu property
19547           - Implemented PointToScreen
19548           - Implemented PreProcessMessage
19549           - Implemented IsInputChar
19550           - Implemented IsInputKey
19551           - Implemented ProcessCmdKey
19552           - Completed ProcessKeyEventArgs
19553           - Fixed message loop to call the proper chain of functions on key
19554           events
19555           - Implemented ProcessDialogChar
19556           - Implemented ProcessDialogKey
19557           - Implemented ProcessKeyMessage
19558           - Implemented ProcessKeyPreview
19559           - Added RaiseDragEvent stub (MS internal method)
19560           - Added RaiseKeyEvent stub (MS internal method)
19561           - Added RaiseMouseEvent stub (MS Internal method)
19562           - Added RaisePaintEvent stub (MS Internal method)
19563           - Added ResetMouseEventArgs stub (MS Internal method)
19564           - Implemented RtlTranslateAlignment
19565           - Implemented RtlTranslateContent
19566           - Implemented RtlTranslateHorizontal
19567           - Implemented RtlTranslateLeftRight
19568           - Added generation of KeyPress event
19569
19570 2004-10-02 05:57  ravindra
19571
19572         * ListViewItem.cs: Added attributes.
19573
19574 2004-10-02 05:32  ravindra
19575
19576         * ListView.cs: Added attributes.
19577
19578 2004-10-01 11:53  jackson
19579
19580         * Form.cs: Implement the Close method so work on MessageBox can
19581           continue.
19582
19583 2004-09-30 14:06  pbartok
19584
19585         * XplatUIX11.cs:
19586           - Bug fixes
19587
19588 2004-09-30 11:34  jackson
19589
19590         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
19591
19592 2004-09-30 07:26  ravindra
19593
19594         * ListViewItemConverter.cs: Converter for ListViewItem.
19595
19596 2004-09-30 07:26  ravindra
19597
19598         * SortOrder.cs: Enum for ListView control.
19599
19600 2004-09-30 07:25  ravindra
19601
19602         * ColumnHeader.cs: Supporting class for ListView control.
19603
19604 2004-09-30 07:24  ravindra
19605
19606         * ListView.cs, ListViewItem.cs: Initial implementation.
19607
19608 2004-09-30 07:20  ravindra
19609
19610         * ItemActivation.cs: Enum for ListView Control.
19611
19612 2004-09-29 20:29  pbartok
19613
19614         * XplatUIX11.cs:
19615           - Added lookup of pixel value for background color; tries to get a
19616             color 'close' to the requested color, it avoids having to create a
19617             colormap.  Depending on the display this could mean the used color
19618             is slightly off the desired color. Might have to change it to a more
19619             resource intensive colormap approach, but it will work as a
19620           workaround to avoid red screens.
19621
19622 2004-09-29 14:27  jackson
19623
19624         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
19625
19626 2004-09-28 12:44  pbartok
19627
19628         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
19629           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
19630           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
19631           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
19632           TrackBar.cs, VScrollBar.cs:
19633           - Streamlined Theme interfaces:
19634             * Each DrawXXX method for a control now is passed the object for
19635               the control to be drawn in order to allow accessing any state the
19636               theme might require
19637
19638             * ControlPaint methods for the theme now have a CP prefix to avoid
19639               name clashes with the Draw methods for controls
19640
19641             * Every control now retrieves it's DefaultSize from the current
19642             theme
19643
19644 2004-09-28 12:17  jackson
19645
19646         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
19647           drawing
19648
19649 2004-09-24 14:57  jackson
19650
19651         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
19652           Gives us a nice little performance boost.
19653
19654 2004-09-24 12:02  jackson
19655
19656         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
19657           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
19658           Control and supporting classes. Initial checkin
19659
19660 2004-09-23 13:08  jackson
19661
19662         * Form.cs: Temp build fixage
19663
19664 2004-09-23 01:39  ravindra
19665
19666         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
19667           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
19668           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
19669           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
19670           EventHandlers needed by ListView Control.
19671
19672 2004-09-22 14:12  pbartok
19673
19674         * ScrollableControl.cs:
19675           - Implemented DockPadding property
19676           - Implemented AutoScroll property
19677           - Implemented AutoScrollMargin property
19678           - Implemented AutoScrollMinSize property
19679           - Implemented AutoScrollPosition property
19680           - Implemented DisplayRectangle property (still incomplete)
19681           - Implemented CreateParams property
19682           - Implemented HScroll property
19683           - Implemented VScroll property
19684           - Implemented OnVisibleChanged property
19685
19686 2004-09-22 14:09  pbartok
19687
19688         * Form.cs:
19689           - Added Form.ControllCollection class
19690           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
19691             RemoveOwnedForm (still incomplete, missing on-top and common
19692             minimize/maximize behaviour)
19693           - Added StartPosition property (still incomplete, does not use when
19694             creating the form)
19695           - Added ShowDialog() methods (still incomplete, missing forcing the
19696             dialog modal)
19697
19698 2004-09-22 14:05  pbartok
19699
19700         * Application.cs:
19701           - Added message loop for modal dialogs
19702
19703 2004-09-22 14:02  pbartok
19704
19705         * GroupBox.cs:
19706           - Fixed wrong types for events
19707
19708 2004-09-22 14:00  pbartok
19709
19710         * Shortcut.cs, FormWindowState.cs:
19711           - Fixed wrong values
19712
19713 2004-09-22 12:01  jackson
19714
19715         * Control.cs: Text is never null
19716
19717 2004-09-20 22:14  pbartok
19718
19719         * XplatUIWin32.cs:
19720           - Fixed accessibility level for Idle handler
19721
19722 2004-09-20 18:54  jackson
19723
19724         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19725           XplatUIX11.cs: New message loop that uses poll so we don't get a
19726           busy loop
19727
19728 2004-09-17 10:43  pbartok
19729
19730         * ScrollBar.cs:
19731           - Fixed behaviour of arrow buttons. Now properly behaves like
19732             Buttons (and like Microsoft's scrollbar arrow buttons)
19733
19734 2004-09-17 10:14  pbartok
19735
19736         * ScrollBar.cs:
19737           - Added missing release of keyboard/mouse capture
19738
19739 2004-09-17 06:18  jordi
19740
19741         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
19742           Theme.cs: Very early menu support
19743
19744 2004-09-16 17:45  pbartok
19745
19746         * XplatUIWin32.cs:
19747           - Fixed sending a window to the front
19748           - Added overload for SetWindowPos to avoid casting
19749
19750 2004-09-16 17:44  pbartok
19751
19752         * Control.cs:
19753           - Added SendToBack and BringToFront methods
19754
19755 2004-09-16 07:00  ravindra
19756
19757         * Copyright: Added Novell URL.
19758
19759 2004-09-16 07:00  ravindra
19760
19761         * ToolBar.cs: Invalidate should be done before redrawing.
19762
19763 2004-09-15 21:19  ravindra
19764
19765         * ColumnHeaderStyle.cs: Enum for ListView Control.
19766
19767 2004-09-15 21:18  ravindra
19768
19769         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
19770           ListView Control.
19771
19772 2004-09-13 18:26  jackson
19773
19774         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
19775           properly
19776
19777 2004-09-13 18:13  jackson
19778
19779         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
19780           a second thread and post messages into the main threads message
19781           queue. This makes timing much more consistent. Both win2K and XP
19782           have a minimum timer value of 15 milliseconds, so we now do this
19783           too.
19784
19785 2004-09-13 15:18  pbartok
19786
19787         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19788           XplatUIX11.cs:
19789           - Added Z-Ordering methods
19790
19791 2004-09-13 10:56  pbartok
19792
19793         * Form.cs:
19794           - Fixed #region names
19795           - Moved properties and methods into their proper #regions
19796
19797 2004-09-13 10:51  pbartok
19798
19799         * Form.cs:
19800           - Added Accept and CancelButton properties
19801           - Added ProcessDialogKey() method
19802
19803 2004-09-13 08:18  pbartok
19804
19805         * IWindowTarget.cs:
19806           - Initial check-in
19807
19808 2004-09-10 21:50  pbartok
19809
19810         * Control.cs:
19811           - Added DoDragDrop() [incomplete]
19812           - Properly implemented 'Visible' handling
19813           - Added SetVisibleCore()
19814           - Implemented FindChildAtPoint()
19815           - Implemented GetContainerControl()
19816           - Implemented Hide()
19817
19818 2004-09-10 19:28  pbartok
19819
19820         * Control.cs:
19821           - Moved methods into their appropriate #regions
19822           - Reordered methods within regions alphabetically
19823
19824 2004-09-10 18:57  pbartok
19825
19826         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19827           - Added method to retrieve text from window
19828
19829 2004-09-10 18:56  pbartok
19830
19831         * Control.cs:
19832           - Moved some internal functions into the internal region
19833           - Implemented FontHeight
19834           - Implemented RenderRightToLeft
19835           - Implemented ResizeRedraw
19836           - Implemented ShowFocusCues
19837           - Implemented ShowKeyboardCues
19838           - Implemented FromChildHandle
19839           - Implemented FromHandle
19840           - Implemented IsMnemonic
19841           - Implemented ReflectMessage
19842           - All public and protected Static Methods are now complete
19843
19844 2004-09-10 16:54  pbartok
19845
19846         * Control.cs:
19847           - Implemented remaining missing public instance properties
19848           - Alphabetized some out of order properties
19849
19850 2004-09-10 05:51  ravindra
19851
19852         * PictureBox.cs: Added a check for null image.
19853
19854 2004-09-10 00:59  jordi
19855
19856         * GroupBox.cs: remove cvs tag
19857
19858 2004-09-09 05:25  ravindra
19859
19860         * ToolBar.cs: Make redraw accessible from ToolBarButton.
19861
19862 2004-09-09 05:23  ravindra
19863
19864         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
19865           parent redraw.
19866
19867 2004-09-09 02:28  pbartok
19868
19869         * ThemeWin32Classic.cs:
19870           - Improve disabled string look
19871
19872 2004-09-09 01:15  jordi
19873
19874         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
19875           args and handler
19876
19877 2004-09-08 23:56  ravindra
19878
19879         * ItemBoundsPortion.cs: It's enum, not a class!
19880
19881 2004-09-08 23:47  ravindra
19882
19883         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
19884           Enums for Form.
19885
19886 2004-09-08 21:13  ravindra
19887
19888         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
19889           ListView control.
19890
19891 2004-09-08 21:03  ravindra
19892
19893         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
19894           avoid crash.
19895
19896 2004-09-08 21:01  ravindra
19897
19898         * ScrollableControl.cs: Removed unreachable code.
19899
19900 2004-09-08 06:45  jordi
19901
19902         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
19903
19904 2004-09-08 01:00  jackson
19905
19906         * XplatUIX11.cs: Only run the timers when updating the message
19907           queue. This effectively gives X messages a higher priority then
19908           timer messages. Timers still need love though
19909
19910 2004-09-07 14:01  jackson
19911
19912         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
19913           this for us and the handle is no longer valid.
19914
19915 2004-09-07 13:59  jackson
19916
19917         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
19918           loop that manages to not crash. TODO: Add poll and cleanup timers
19919
19920 2004-09-07 11:12  jordi
19921
19922         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
19923
19924 2004-09-07 03:40  jordi
19925
19926         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
19927           fixes, methods, multiple links
19928
19929 2004-09-06 06:55  jordi
19930
19931         * Control.cs: Caches ClientRectangle rectangle value
19932
19933 2004-09-05 02:03  jordi
19934
19935         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
19936           certain situations
19937
19938 2004-09-04 11:10  jordi
19939
19940         * Label.cs: Refresh when font changed
19941
19942 2004-09-02 16:24  pbartok
19943
19944         * Control.cs:
19945           - Added sanity check to creation of double buffer bitmap
19946
19947 2004-09-02 16:24  pbartok
19948
19949         * ButtonBase.cs:
19950           - Fixed selection of text color
19951           - Fixed handling of resize event; now properly recreates double
19952             buffering bitmap
19953           - Added missing assignment of TextAlignment
19954           - Added proper default for TextAlignment
19955
19956 2004-09-02 14:26  pbartok
19957
19958         * RadioButton.cs:
19959           - Added missing RadioButton.RadioButtonAccessibleObject class
19960
19961 2004-09-02 14:26  pbartok
19962
19963         * Control.cs:
19964           - Added missing Control.ControlAccessibleObject class
19965           - Started to implement Select()ion mechanisms, still very incomplete
19966
19967 2004-09-02 14:25  pbartok
19968
19969         * AccessibleObject.cs:
19970           - Added missing methods
19971
19972 2004-09-02 14:23  pbartok
19973
19974         * AccessibleNavigation.cs, AccessibleSelection.cs:
19975           - Initial check-in
19976
19977 2004-09-02 10:32  jordi
19978
19979         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
19980           pool for pens, brushes, and hatchbruses
19981
19982 2004-09-01 15:30  jackson
19983
19984         * StatusBar.cs: Fix typo
19985
19986 2004-09-01 14:44  pbartok
19987
19988         * RadioButton.cs:
19989           - Fixed state
19990
19991 2004-09-01 14:39  pbartok
19992
19993         * Button.cs, RadioButton.cs:
19994           - Functional initial check-in
19995
19996 2004-09-01 14:01  pbartok
19997
19998         * CheckBox.cs:
19999           - Added missing default
20000           - Added missing region mark
20001
20002 2004-09-01 09:10  jordi
20003
20004         * Label.cs: fixes method signatures, new methods, events, fixes
20005           autosize
20006
20007 2004-09-01 07:19  jordi
20008
20009         * Control.cs: Init string variables with an empty object
20010
20011 2004-09-01 04:20  jordi
20012
20013         * Control.cs: fires OnFontChanged event
20014
20015 2004-08-31 20:07  pbartok
20016
20017         * ButtonBase.cs:
20018           - Enabled display of strings
20019
20020 2004-08-31 20:05  pbartok
20021
20022         * Form.cs:
20023           - Added (partial) implementation of DialogResult; rest needs to be
20024             implemented when the modal loop code is done
20025
20026 2004-08-31 19:55  pbartok
20027
20028         * CheckBox.cs:
20029           - Fixed to match the removal of the needs_redraw concept
20030
20031 2004-08-31 19:55  pbartok
20032
20033         * ButtonBase.cs:
20034           - Removed the rather odd split between 'needs redraw' and redrawing
20035           - Now handles the events that require regeneration (ambient
20036             properties and size)
20037
20038 2004-08-31 19:41  pbartok
20039
20040         * Control.cs:
20041           - Added firing of BackColorChanged event
20042           - Added TopLevelControl property
20043           - Fixed handling of WM_ERASEBKGRND message
20044
20045 2004-08-31 12:49  pbartok
20046
20047         * ButtonBase.cs:
20048           - Removed debug
20049           - Minor fixes
20050
20051 2004-08-31 12:48  pbartok
20052
20053         * CheckBox.cs:
20054           - Finished (famous last words)
20055
20056 2004-08-31 04:35  jordi
20057
20058         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
20059           scrolling bugs, adds new methods
20060
20061 2004-08-30 14:42  pbartok
20062
20063         * CheckBox.cs:
20064           - Implemented CheckBox drawing code
20065
20066 2004-08-30 14:42  pbartok
20067
20068         * ButtonBase.cs:
20069           - Made Redraw() and CheckRedraw() virtual
20070           - Improved mouse up/down/move logic to properly track buttons
20071
20072 2004-08-30 09:44  pbartok
20073
20074         * CheckBox.cs:
20075           - Updated to fix broken build. Not complete yet.
20076
20077 2004-08-30 09:28  pbartok
20078
20079         * CheckState.cs:
20080           - Initial checkin
20081
20082 2004-08-30 09:17  pbartok
20083
20084         * Appearance.cs:
20085           - Initial check-in
20086
20087 2004-08-27 16:12  ravindra
20088
20089         * ToolBarButton.cs: Added TypeConverter attribute.
20090
20091 2004-08-27 16:07  ravindra
20092
20093         * ImageIndexConverter.cs: Implemented.
20094
20095 2004-08-27 14:17  pbartok
20096
20097         * Control.cs:
20098           - Removed unneeded stack vars
20099           - First attempt to fix sizing issues when layout is suspended
20100
20101 2004-08-25 15:35  jordi
20102
20103         * ScrollBar.cs: more fixes to scrollbar
20104
20105 2004-08-25 14:04  ravindra
20106
20107         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
20108           Added the missing divider code and grip for ToolBar Control.
20109
20110 2004-08-25 13:20  pbartok
20111
20112         * Control.cs:
20113           - Control now properly passes the ambient background color to child
20114             controls
20115
20116 2004-08-25 13:20  jordi
20117
20118         * ScrollBar.cs: small bug fix regarding bar position
20119
20120 2004-08-25 12:33  pbartok
20121
20122         * Timer.cs:
20123           - Now only calls SetTimer or KillTimer if the enabled state has
20124           changed
20125
20126 2004-08-25 12:33  pbartok
20127
20128         * XplatUIWin32.cs:
20129           - Fixed timer handling, now seems to work
20130           - Improved error message for window creation
20131
20132 2004-08-25 12:32  pbartok
20133
20134         * Control.cs:
20135           - Fixed generation of MouseUp message
20136
20137 2004-08-25 12:29  jordi
20138
20139         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
20140           and fixes for progressbar
20141
20142 2004-08-24 18:43  ravindra
20143
20144         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
20145           in ToolBar control.
20146
20147 2004-08-24 17:15  pbartok
20148
20149         * Panel.cs:
20150           - Added #region
20151           - Added missing events
20152           - Alphabetized
20153
20154 2004-08-24 17:14  pbartok
20155
20156         * StatusBar.cs, PictureBox.cs:
20157           - Now uses Control's CreateParams
20158
20159 2004-08-24 16:36  pbartok
20160
20161         * XplatUIX11.cs:
20162           - Fixed background color handling
20163           - Fixed sending of enter/leave events on a grab
20164
20165 2004-08-24 16:35  pbartok
20166
20167         * X11Structs.cs:
20168           - Refined definitions for CrossingEvent
20169
20170 2004-08-24 12:37  jordi
20171
20172         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
20173           formmating, methods signature, and adds missing events
20174
20175 2004-08-24 12:24  jordi
20176
20177         * Control.cs: fire OnEnabledChanged event
20178
20179 2004-08-24 11:17  pbartok
20180
20181         * XplatUIWin32.cs:
20182           - Implemented SetTimer() and KillTimer()
20183
20184 2004-08-24 11:16  pbartok
20185
20186         * XplatUIX11.cs:
20187           - Now uses Remove instead of Add to kill the timer
20188
20189 2004-08-24 10:16  jackson
20190
20191         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
20192           picture boxes in the theme now. Draw picture box borders and obey
20193           sizing modes
20194
20195 2004-08-24 05:49  jackson
20196
20197         * Timer.cs: Remove top secret debugging code
20198
20199 2004-08-24 05:34  jackson
20200
20201         * PictureBox.cs: Temp hack to make picture boxes draw their full
20202           image
20203
20204 2004-08-24 05:29  jackson
20205
20206         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20207           XplatUIX11.cs: Move timers to the driver level. On X they are
20208           queued by the driver and checked on idle.
20209
20210 2004-08-24 01:07  jackson
20211
20212         * XplatUIX11.cs: Use a queue for async messages instead of passing
20213           them as ClientMessages since that was totally broken. Also simply
20214           check for events and return an idle message if none are found. This
20215           gives us an idle handler, and prevents deadlocking when no messages
20216           are in the queue.
20217
20218 2004-08-23 18:19  ravindra
20219
20220         * XplatUIWin32.cs: Removed the unwanted destructor.
20221
20222 2004-08-23 17:27  pbartok
20223
20224         * ButtonBase.cs:
20225           - Finishing touches. Works now, just needs some optimizations.
20226
20227 2004-08-23 16:53  jordi
20228
20229         * ScrollBar.cs: small fix
20230
20231 2004-08-23 16:45  pbartok
20232
20233         * Application.cs:
20234           - Removed debug output
20235           - Simplifications
20236
20237 2004-08-23 16:43  jordi
20238
20239         * ScrollBar.cs: [no log message]
20240
20241 2004-08-23 16:10  pbartok
20242
20243         * Form.cs:
20244           - Fixed handling of WM_CLOSE message
20245           - Removed debug output
20246
20247 2004-08-23 16:09  pbartok
20248
20249         * Application.cs:
20250           - Added handling of Idle event
20251           - Added handling of form closing
20252           - Fixed reporting of MessageLoop property
20253           - Removed some unneeded code, should provide a bit of a speedup
20254
20255 2004-08-23 15:22  pbartok
20256
20257         * Control.cs:
20258           - Added InitLayout() method
20259           - Added code to properly perform layout when Anchor or Dock property
20260             is changed
20261           - Changed 'interpretation' of ResumeLayout. MS seems to have a
20262             LAMESPEC, tried to do it in a way that makes sense
20263
20264 2004-08-23 14:10  jordi
20265
20266         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
20267           properties and methods
20268
20269 2004-08-23 13:55  pbartok
20270
20271         * Control.cs:
20272           - Properly fixed Jordi's last fix
20273           - Now uses Cursor's Position property instead of calling XplatUI
20274           directly
20275
20276 2004-08-23 13:44  jordi
20277
20278         * PaintEventHandler.cs: Adding missing attribute
20279
20280 2004-08-23 13:39  pbartok
20281
20282         * Cursor.cs:
20283           - Implemented Position property
20284
20285 2004-08-23 13:39  pbartok
20286
20287         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20288           - Added method to move mouse cursor
20289
20290 2004-08-23 13:39  pbartok
20291
20292         * XplatUIX11.cs:
20293           - Fixed setting of background color
20294           - Added method to move mouse cursor
20295
20296 2004-08-23 13:16  jordi
20297
20298         * Control.cs: avoids null exception
20299
20300 2004-08-22 17:46  jackson
20301
20302         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
20303           PictureBox
20304
20305 2004-08-22 17:40  jackson
20306
20307         * XplatUIX11.cs: Add some missing locks
20308
20309 2004-08-22 15:10  pbartok
20310
20311         * Control.cs, Form.cs:
20312           - Removed OverlappedWindow style from Control, instead it's default
20313             now is child
20314           - Made form windows OverlappedWindow by default
20315
20316 2004-08-22 13:34  jackson
20317
20318         * ScrollBar.cs: Update the position through the Value property so
20319           the OnValueChanged event is raised.
20320
20321 2004-08-22 12:04  pbartok
20322
20323         * SWF.csproj:
20324           - Added Cursor.cs and UserControl.cs
20325
20326 2004-08-22 12:03  pbartok
20327
20328         * Cursor.cs:
20329           - Started implementation, not usable yet
20330
20331 2004-08-22 12:00  pbartok
20332
20333         * UserControl.cs:
20334           - Implemented UserControl (complete)
20335
20336 2004-08-21 19:20  ravindra
20337
20338         * ToolBar.cs: Correcting the formatting mess of VS.NET.
20339
20340 2004-08-21 18:49  ravindra
20341
20342         * ToolBar.cs: Probably this completes the missing attributes in
20343           toolbar control.
20344
20345 2004-08-21 18:03  ravindra
20346
20347         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
20348           Fixed toolbar control signatures.
20349
20350 2004-08-21 16:32  pbartok
20351
20352         * LinkLabel.cs:
20353           - Signature Fixes
20354
20355 2004-08-21 16:30  pbartok
20356
20357         * Label.cs:
20358           - Signature fixes
20359
20360 2004-08-21 16:19  pbartok
20361
20362         * Control.cs, Label.cs:
20363           - Signature fixes
20364
20365 2004-08-21 15:57  pbartok
20366
20367         * ButtonBase.cs:
20368           - Added loads of debug output for development
20369           - Fixed typo in method name
20370
20371 2004-08-21 15:52  pbartok
20372
20373         * ToolBarButtonClickEventArgs.cs:
20374           - Added missing base class
20375
20376 2004-08-21 14:53  pbartok
20377
20378         * Control.cs:
20379           - Updated to match new GrabWindow signature
20380
20381 2004-08-21 14:51  pbartok
20382
20383         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20384           - Added method to get default display size
20385
20386 2004-08-21 14:23  pbartok
20387
20388         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20389           - Added method to query current grab state
20390           - Added argument to allow confining a grab to a window
20391
20392 2004-08-21 14:22  pbartok
20393
20394         * Keys.cs:
20395           - Added [Flags] attribute so that modifiers can be used in bitwise
20396           ops
20397
20398 2004-08-21 14:21  pbartok
20399
20400         * TrackBar.cs, ScrollBar.cs:
20401           - Replaced direct XplatUI calls with their Control counterpart
20402
20403 2004-08-21 13:32  pbartok
20404
20405         * Control.cs:
20406           - Implemented Created property
20407
20408 2004-08-21 13:28  pbartok
20409
20410         * Control.cs:
20411           - Implemented ContainsFocus
20412
20413 2004-08-21 13:26  pbartok
20414
20415         * Control.cs:
20416           - Implemented CausesValidation
20417
20418 2004-08-21 13:21  pbartok
20419
20420         * Control.cs:
20421           - Implemented CanFocus
20422           - Implemented CanSelect
20423           - Implemented Capture
20424
20425 2004-08-21 12:35  pbartok
20426
20427         * XplatUIWin32.cs:
20428           - Fixed bug with Async message handling
20429           - Implemented getting the ModifierKeys
20430
20431 2004-08-21 12:32  jackson
20432
20433         * AsyncMethodResult.cs: Make sure we have the mutex before we
20434           release it. Fixes BeginInvoke on windows
20435
20436 2004-08-21 11:31  pbartok
20437
20438         * XplatUIWin32.cs, XplatUIX11.cs:
20439           - Drivers now return proper mouse state
20440
20441 2004-08-21 10:54  jackson
20442
20443         * Control.cs: Implement EndInvoke
20444
20445 2004-08-21 10:48  jackson
20446
20447         * Timer.cs: Remove unneeded finalizer
20448
20449 2004-08-20 19:52  ravindra
20450
20451         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
20452           in mouse event handling in the ToolBar control.
20453
20454 2004-08-20 19:50  ravindra
20455
20456         * ImageList.cs: Changed draw method to use the arguments passed in
20457           to draw the image.
20458
20459 2004-08-20 18:58  pbartok
20460
20461         * XplatUIStructs.cs:
20462           - Added private message for async communication
20463
20464 2004-08-20 17:38  ravindra
20465
20466         * Control.cs: Made RightToLeft property virtual and removed a
20467           Console.WriteLine.
20468
20469 2004-08-20 14:39  jordi
20470
20471         * ThemeGtk.cs: use style_attach
20472
20473 2004-08-20 14:39  pbartok
20474
20475         * XplatUIWin32.cs:
20476           - Added jackson's Async code from X11 to Win32
20477
20478 2004-08-20 14:09  pbartok
20479
20480         * SWF.csproj:
20481           - Added all new files
20482
20483 2004-08-20 14:09  pbartok
20484
20485         * Control.cs:
20486           - Added call to set window background color
20487
20488 2004-08-20 14:03  pbartok
20489
20490         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20491           - Added method for setting the window background
20492
20493 2004-08-20 14:02  pbartok
20494
20495         * XplatUIWin32.cs:
20496           - Added method for setting the background color
20497           - Added handling for erasing the window background
20498
20499 2004-08-20 13:45  jordi
20500
20501         * TrackBar.cs: fixes timer, new properties and methods
20502
20503 2004-08-20 13:34  jackson
20504
20505         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
20506           correct thread
20507
20508 2004-08-20 13:22  jackson
20509
20510         * Timer.cs: Timer Tick events are now handed through Controls Async
20511           mechanism so the callbacks are executed in the same thread as X
20512
20513 2004-08-20 13:19  jackson
20514
20515         * XplatUIDriver.cs: Expose functionality to send async messages
20516           through the driver
20517
20518 2004-08-20 13:18  jackson
20519
20520         * Control.cs: Implement Begininvoke
20521
20522 2004-08-20 13:14  jackson
20523
20524         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
20525           messages through the driver
20526
20527 2004-08-20 13:12  jackson
20528
20529         * XplatUIX11.cs: Lock before all X operations. Also added Async
20530           method functionality through XSendEvent
20531
20532 2004-08-20 13:11  jackson
20533
20534         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
20535           This will screw up on 64 bit systems)
20536
20537 2004-08-20 13:10  jackson
20538
20539         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
20540           Async messages through X/Win32
20541
20542 2004-08-19 19:39  pbartok
20543
20544         * XplatUIX11.cs:
20545           - Updated code to match new HandleData.DeviceContext type
20546
20547 2004-08-19 19:38  pbartok
20548
20549         * HandleData.cs:
20550           - Made DeviceContext a generic object to allow usage from various
20551           drivers
20552           - Added support for queueing Windows messages
20553
20554 2004-08-19 19:37  pbartok
20555
20556         * XplatUIWin32.cs:
20557           - Added generation of MouseEnter, MouseLeave and MouseHover events
20558           - Added cleanup on EndPaint
20559
20560 2004-08-19 19:17  pbartok
20561
20562         * Control.cs:
20563           - Added handling of WM_MOUSEHOVER
20564           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
20565           code
20566
20567 2004-08-19 18:55  jordi
20568
20569         * ThemeGtk.cs: fixes button order
20570
20571 2004-08-19 18:12  jordi
20572
20573         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
20574
20575 2004-08-19 17:09  pbartok
20576
20577         * Control.cs:
20578           - Added Right property
20579           - Added RightToLeft property
20580
20581 2004-08-19 16:27  jordi
20582
20583         * ThemeGtk.cs: experimental GTK theme support
20584
20585 2004-08-19 16:26  jordi
20586
20587         * ITheme.cs, Theme.cs: move themes from an interface to a class
20588
20589 2004-08-19 16:25  jordi
20590
20591         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
20592           theme enhancaments
20593
20594 2004-08-19 16:04  pbartok
20595
20596         * XplatUIX11.cs:
20597           - Added colormap basics
20598           - Added a way to re-initialize with a different display handle
20599           - Fixed setting of the window background color
20600           - Added various X11 imports related to colors and colormaps
20601
20602 2004-08-19 15:51  pbartok
20603
20604         * X11Structs.cs:
20605           - Removed packing hints (Paolo suggested this a while back)
20606           - fixed colormap type
20607           - Added default Atom types
20608           - Added Screen and color structs and enums
20609
20610 2004-08-19 15:39  pbartok
20611
20612         * ImageList.cs:
20613           - Added missing Draw() method
20614           - Added missing RecreateHandle event
20615
20616 2004-08-19 15:30  pbartok
20617
20618         * Form.cs:
20619           - Added handling of WM_CLOSE
20620
20621 2004-08-18 13:16  jordi
20622
20623         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
20624           a table
20625
20626 2004-08-18 09:56  jordi
20627
20628         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
20629
20630 2004-08-17 15:31  ravindra
20631
20632         * SWF.csproj: Updated project.
20633
20634 2004-08-17 15:25  pbartok
20635
20636         * Control.cs:
20637           - Drawing improvement; don't call UpdateBounds if we are not visible
20638             (or have been minimized)
20639
20640 2004-08-17 15:24  pbartok
20641
20642         * XplatUIWin32.cs:
20643           - Finished IsVisible
20644           - Added Win32GetWindowPlacement
20645
20646 2004-08-17 15:08  jackson
20647
20648         * Panel.cs: Initial checkin of the Panel
20649
20650 2004-08-17 14:25  pbartok
20651
20652         * Control.cs:
20653           - Fixed broken handling of default window sizes
20654
20655 2004-08-17 13:29  jackson
20656
20657         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
20658           has a large startup time.
20659
20660 2004-08-17 10:25  jackson
20661
20662         * HandleData.cs: union areas properly
20663
20664 2004-08-17 10:12  jackson
20665
20666         * HandleData.cs: union areas properly
20667
20668 2004-08-16 20:00  ravindra
20669
20670         * ToolBar.cs, ToolBarButton.cs: Added attributes.
20671
20672 2004-08-16 18:48  ravindra
20673
20674         * ToolBar.cs: Added attributes.
20675
20676 2004-08-16 17:17  ravindra
20677
20678         * SWF.csproj: Updated project.
20679
20680 2004-08-16 17:16  jackson
20681
20682         * XplatUIX11.cs: Check for more expose events before sending a
20683           WM_PAINT so they can all be grouped together. This makes dragging a
20684           window across another window redraw in a sane way.
20685
20686 2004-08-16 15:47  pbartok
20687
20688         * Control.cs:
20689           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
20690             support OnMouseEnter/Leave()
20691           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
20692             exposure handling
20693
20694 2004-08-16 15:46  pbartok
20695
20696         * XplatUIStructs.cs, XplatUIX11.cs:
20697           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
20698           OnMouseEnter/Leave()
20699
20700 2004-08-16 15:34  jackson
20701
20702         * XplatUIX11.cs: Group multiple expose events in HandleData, make
20703           sure messages get the message field set to WM_NULL if they are not
20704           handled.
20705
20706 2004-08-16 15:24  jackson
20707
20708         * HandleData.cs: HandleData is used for storing message information
20709           for window handles
20710
20711 2004-08-15 17:23  ravindra
20712
20713         * ColorDepth.cs: Added attribute.
20714
20715 2004-08-15 17:23  ravindra
20716
20717         * SWF.csproj: Updated project for ToolBar Control.
20718
20719 2004-08-15 17:20  ravindra
20720
20721         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
20722           control and also dos2unix format.
20723
20724 2004-08-15 17:13  ravindra
20725
20726         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
20727           ToolBarButtonClickEventArgs.cs,
20728           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
20729           ToolBarTextAlign.cs: First Implementation of ToolBar control.
20730
20731 2004-08-15 15:31  pbartok
20732
20733         * ButtonBase.cs:
20734           - First (mostly) working version
20735
20736 2004-08-13 16:15  pbartok
20737
20738         * Control.cs:
20739           - Fixed Anchor default
20740
20741 2004-08-13 15:43  pbartok
20742
20743         * Control.cs:
20744           - Changed GetCursorPos signature
20745
20746 2004-08-13 15:42  pbartok
20747
20748         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20749           - Changed signature for GetCursorPos
20750
20751 2004-08-13 15:25  pbartok
20752
20753         * XplatUIX11.cs:
20754           - Cleanup
20755           - Fixed resizing/exposure handling
20756
20757 2004-08-13 15:22  jordi
20758
20759         * ThemeWin32Classic.cs: removes redundant code and fixes issues
20760           with tickposition
20761
20762 2004-08-13 14:55  jordi
20763
20764         * TrackBar.cs: change from wndproc to events
20765
20766 2004-08-13 13:00  jordi
20767
20768         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20769           XplatUIX11.cs: implements PointToClient (ScreenToClient)
20770
20771 2004-08-13 12:53  pbartok
20772
20773         * XplatUIWin32.cs:
20774           - Changed GetWindowPos to also provide client area size
20775           - Fixed broken prototypes for several win32 functions
20776
20777 2004-08-13 12:53  pbartok
20778
20779         * XplatUI.cs, XplatUIDriver.cs:
20780           - Changed GetWindowPos to also provide client area size
20781
20782 2004-08-13 12:52  pbartok
20783
20784         * XplatUIX11.cs:
20785           - Added generation of WM_POSCHANGED
20786           - Changed GetWindowPos to also provide client area size
20787
20788 2004-08-13 12:52  pbartok
20789
20790         * Control.cs:
20791           - Added Dispose() and destructor
20792           - Fixed resizing and bounds calculation
20793           - Fixed Layout
20794           - Added memory savings for invisible windows
20795
20796 2004-08-13 12:46  jordi
20797
20798         * TrackBar.cs: adds timer and grap window
20799
20800 2004-08-13 10:25  jackson
20801
20802         * Timer.cs: SWF Timer
20803
20804 2004-08-12 16:59  pbartok
20805
20806         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20807           - Implemented method to get current mouse position
20808
20809 2004-08-12 14:29  jordi
20810
20811         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
20812           enhancement, fix mouse problems, highli thumb, etc
20813
20814 2004-08-12 13:31  pbartok
20815
20816         * Control.cs:
20817           - Fixed Anchoring bugs
20818
20819 2004-08-12 13:01  jackson
20820
20821         * StatusBar.cs: Don't forget things
20822
20823 2004-08-12 12:54  jackson
20824
20825         * ThemeWin32Classic.cs: Handle owner draw status bars
20826
20827 2004-08-12 12:54  jackson
20828
20829         * StatusBar.cs: Implement missing properties, events, and methods.
20830           Handle mouse clicking
20831
20832 2004-08-12 10:19  jackson
20833
20834         * StatusBarPanelClickEventArgs.cs,
20835           StatusBarPanelClickEventHandler.cs: Classes for handling status
20836           bar panel click events
20837
20838 2004-08-12 10:10  jackson
20839
20840         * Control.cs: Add missing properties
20841
20842 2004-08-12 09:46  pbartok
20843
20844         * BindingsManagerBase.cs:
20845           - Name changed to BindingManagerBase.cs
20846
20847 2004-08-12 09:25  jordi
20848
20849         * ScrollableControl.cs: calls ctrlbase instead of exeception
20850
20851 2004-08-11 16:28  pbartok
20852
20853         * InputLanguageChangingEventArgs.cs:
20854           - Never check in before compiling. Fixes the last check-in
20855
20856 2004-08-11 16:26  pbartok
20857
20858         * InputLanguageChangingEventArgs.cs:
20859           - More signature fixes
20860
20861 2004-08-11 16:20  pbartok
20862
20863         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
20864           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
20865           ImageListStreamer.cs, InputLanguage.cs,
20866           InputLanguageChangedEventArgs.cs,
20867           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
20868           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
20869           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
20870           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20871           - Signature fixes
20872
20873 2004-08-11 16:16  pbartok
20874
20875         * Application.cs:
20876           - Fixed Signature
20877           - Added .Net 1.1 method
20878
20879 2004-08-11 15:25  pbartok
20880
20881         * SWF.csproj:
20882           - Fixed BindingManagerBase.cs filename
20883
20884 2004-08-11 15:22  pbartok
20885
20886         * BindingManagerBase.cs:
20887           - Was checked in with wrong filename
20888
20889 2004-08-11 14:50  pbartok
20890
20891         * SWF.csproj:
20892           - Updated
20893
20894 2004-08-11 13:41  jordi
20895
20896         * XplatUIWin32.cs: Fixes ClientRect
20897
20898 2004-08-11 13:19  pbartok
20899
20900         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20901           XplatUIX11.cs:
20902           - We had SetWindowPos and MoveWindow to set window positions and
20903             size, removed MoveWindow. We have GetWindowPos, so it made sense to
20904             keep SetWindowPos as matching counterpart
20905           - Added some X11 sanity checking
20906
20907 2004-08-11 12:59  pbartok
20908
20909         * Control.cs:
20910           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
20911             (It seems that SetBounds is just a front for SetBoundsCore and
20912              SetBoundsCore updates the underlying window system and
20913              UpdateBounds is responsible for updating the variables associated
20914              with the Control and sending the events)
20915           - Major cleanup of Size handling; we now have two sizes, client_size
20916             and bounds. Bounds defines the window with decorations, client_size
20917             without them.
20918
20919 2004-08-11 12:55  pbartok
20920
20921         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20922           - Added method to calculate difference between decorated window and
20923             raw client area
20924
20925 2004-08-11 12:54  pbartok
20926
20927         * Label.cs:
20928           - Forcing redraw on resize
20929
20930 2004-08-11 11:43  pbartok
20931
20932         * ImageList.cs:
20933           - Removed disposing of the actual images when the list is disposed
20934
20935 2004-08-11 09:13  pbartok
20936
20937         * Control.cs:
20938           - Now properly reparents windows
20939
20940 2004-08-11 08:37  pbartok
20941
20942         * Control.cs:
20943           - Duh!
20944
20945 2004-08-11 07:47  pbartok
20946
20947         * Control.cs:
20948           - Rewrote the collection stuff. Might not be as fast now, not
20949             keeping the number of children around and accessible directly, but
20950             it's more straightforward
20951
20952 2004-08-11 07:44  pbartok
20953
20954         * AccessibleObject.cs:
20955           - Fixed to match ControlCollection rewrite
20956
20957 2004-08-11 07:43  pbartok
20958
20959         * ImageList.cs:
20960           - Added missing creation of the collection list
20961
20962 2004-08-10 20:08  jackson
20963
20964         * StatusBar.cs: Get the paint message from WndProc
20965
20966 2004-08-10 19:31  jackson
20967
20968         * ThemeWin32Classic.cs: Create Brushes as little as possible
20969
20970 2004-08-10 19:20  jackson
20971
20972         * UICues.cs: Add Flags attribute
20973
20974 2004-08-10 19:19  jackson
20975
20976         * StatusBarPanel.cs: Signature cleanup
20977
20978 2004-08-10 19:10  jackson
20979
20980         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
20981           Initial implementation of status bar item drawing
20982
20983 2004-08-10 17:27  jordi
20984
20985         * TrackBar.cs: add missing methods, properties, and restructure to
20986           hide extra ones
20987
20988 2004-08-10 16:24  jackson
20989
20990         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
20991           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
20992           attribute
20993
20994 2004-08-10 13:21  jordi
20995
20996         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
20997           enhancements and standarize on win colors defaults
20998
20999 2004-08-10 12:52  jackson
21000
21001         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
21002           ThemeWin32Classic.cs: Implement DrawItem functionality
21003
21004 2004-08-10 12:47  jordi
21005
21006         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
21007
21008 2004-08-10 12:32  jordi
21009
21010         * Control.cs: throw ontextchange event
21011
21012 2004-08-10 11:43  pbartok
21013
21014         * Control.cs:
21015           - Added more to the still unfinished Dock/Anchor layout code
21016
21017 2004-08-10 11:39  pbartok
21018
21019         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21020           - Added GetWindowPos method
21021
21022 2004-08-10 11:36  pbartok
21023
21024         * XplatUIWin32.cs:
21025           - Implemented several methods
21026
21027 2004-08-10 09:47  jackson
21028
21029         * TrackBar.cs: Allow control to handle buffering
21030
21031 2004-08-10 09:41  jackson
21032
21033         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
21034
21035 2004-08-10 09:24  jackson
21036
21037         * Label.cs, LinkLabel.cs: Let Control handle buffering.
21038
21039 2004-08-10 09:09  jackson
21040
21041         * StatusBar.cs: Let Control handle all the buffering.
21042
21043 2004-08-10 09:08  jackson
21044
21045         * Control.cs: Control will now handle the buffering code, so each
21046           control does not have to implement this.
21047
21048 2004-08-10 08:34  jackson
21049
21050         * XplatUIDriver.cs: Use default colors from the theme
21051
21052 2004-08-09 17:12  pbartok
21053
21054         * ImageList.cs:
21055           - Fixed several bugs Ravindra pointed out
21056
21057 2004-08-09 16:11  pbartok
21058
21059         * Control.cs:
21060           - Added incomplete dock layout code
21061           - Added support for mouse wheel
21062
21063 2004-08-09 16:09  pbartok
21064
21065         * XplatUIX11.cs:
21066           - Added handling for middle and right mousebutton
21067           - Added handling for mouse wheel
21068           - Added handling for key state and mouse state and position
21069           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
21070           messages
21071
21072 2004-08-09 15:40  jackson
21073
21074         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
21075           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
21076           checkin
21077
21078 2004-08-09 15:37  jackson
21079
21080         * StatusBar.cs: Initial implementation of StatusBar
21081
21082 2004-08-09 15:36  jackson
21083
21084         * ITheme.cs: Add support for drawing status bar and getting status
21085           bar item sizes
21086
21087 2004-08-09 15:35  pbartok
21088
21089         * MouseButtons.cs:
21090           - Fixed values
21091
21092 2004-08-09 15:34  jackson
21093
21094         * ThemeWin32Classic.cs: Add support for drawing status bar and get
21095           status bar item sizes
21096
21097 2004-08-09 15:21  jackson
21098
21099         * ThemeWin32Classic.cs: Use known colors for default control
21100           colours
21101
21102 2004-08-09 15:12  jackson
21103
21104         * ThemeWin32Classic.cs: Make the default font static, it is static
21105           in control so this doesn't change functionality and creating fonts
21106           is sloooooow.
21107
21108 2004-08-09 14:56  pbartok
21109
21110         * X11Structs.cs:
21111           - Added GrabMode enum
21112
21113 2004-08-09 14:55  pbartok
21114
21115         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21116           - Removed Run method, was only required for initial development
21117
21118 2004-08-09 14:51  pbartok
21119
21120         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21121           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
21122           capture
21123
21124 2004-08-09 13:48  pbartok
21125
21126         * XplatUIX11.cs:
21127           - Fixed default sizing for child windows
21128
21129 2004-08-09 12:56  pbartok
21130
21131         * XplatUIX11.cs:
21132           - Added generation of WM_DESTROY message
21133           - Added handling of window manager induced shutdown
21134
21135 2004-08-09 11:31  jackson
21136
21137         * ThemeWin32Classic.cs: New names for control properties
21138
21139 2004-08-09 11:25  jackson
21140
21141         * Control.cs: Use new color names
21142
21143 2004-08-09 11:02  jackson
21144
21145         * XplatUI.cs: Get default window properties from the theme
21146
21147 2004-08-09 11:01  jackson
21148
21149         * ITheme.cs: The theme engine now controls default window
21150           properties
21151
21152 2004-08-09 11:00  jackson
21153
21154         * ThemeWin32Classic.cs: Add default window color properties
21155
21156 2004-08-09 10:17  jackson
21157
21158         * ThemeWin32Classic.cs: Use correct default back color
21159
21160 2004-08-09 10:05  jackson
21161
21162         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
21163           the theme now.
21164
21165 2004-08-09 09:56  jackson
21166
21167         * XplatUI.cs: Remove defaults, these are handled by the theme now.
21168
21169 2004-08-09 09:54  jackson
21170
21171         * Control.cs: Get default properties from the theme.
21172
21173 2004-08-09 09:53  jackson
21174
21175         * ITheme.cs: Themes now handle default control properties
21176
21177 2004-08-09 09:53  jackson
21178
21179         * ThemeWin32Classic.cs: Themes now handle default control
21180           properties so coloring will be consistent
21181
21182 2004-08-08 16:54  jordi
21183
21184         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
21185
21186 2004-08-08 15:08  jordi
21187
21188         * XplatUIX11.cs: fixes keyboard crash
21189
21190 2004-08-08 13:47  jordi
21191
21192         * Label.cs: add cvs header info
21193
21194 2004-08-08 12:09  jackson
21195
21196         * ThemeWin32Classic.cs: Add pen_buttonface
21197
21198 2004-08-08 11:52  jordi
21199
21200         * Label.cs, LinkLabel.cs: [no log message]
21201
21202 2004-08-08 11:34  jordi
21203
21204         * ThemeWin32Classic.cs: Use Windows Standard Colours
21205
21206 2004-08-07 17:32  jordi
21207
21208         * TrackBar.cs: throw exceptions of invalid enums values
21209
21210 2004-08-07 17:31  jordi
21211
21212         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
21213           draw method name
21214
21215 2004-08-07 16:56  jackson
21216
21217         * HorizontalAlignment.cs: Initial checkin
21218
21219 2004-08-07 13:16  jordi
21220
21221         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
21222           methods
21223
21224 2004-08-07 13:05  jordi
21225
21226         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
21227           GetSysColor defines
21228
21229 2004-08-06 18:01  pbartok
21230
21231         * ThemeWin32Classic.cs:
21232           - Fixed some rounding issues with float/int
21233
21234 2004-08-06 18:00  jackson
21235
21236         * DockStyle.cs, AnchorStyles.cs:
21237
21238                   Add flags and serializable attributes.
21239
21240 2004-08-06 17:46  pbartok
21241
21242         * XplatUIX11.cs:
21243           - Implemented GetParent
21244
21245 2004-08-06 17:18  pbartok
21246
21247         * TrackBar.cs:
21248           - Fixed some rounding issues with float/int
21249
21250 2004-08-06 17:17  pbartok
21251
21252         * X11Structs.cs, XplatUIX11.cs:
21253           - Fixed Refresh and Invalidate
21254
21255 2004-08-06 15:30  pbartok
21256
21257         * Control.cs, X11Structs.cs, XplatUIX11.cs:
21258           - Fixed recursive loop when resizing
21259           - Improved/fixed redrawing on expose messages
21260
21261 2004-08-06 09:53  jordi
21262
21263         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
21264           keyboard navigation
21265
21266 2004-08-06 08:02  pbartok
21267
21268         * X11Structs.cs, XplatUIX11.cs:
21269           - Fixed reparenting
21270           - Fixed window border creation
21271
21272 2004-08-05 15:38  pbartok
21273
21274         * XplatUIX11.cs:
21275           - Attempted fix for reparenting problems
21276
21277 2004-08-04 15:14  pbartok
21278
21279         * Control.cs:
21280           - Fixed Invalidation bug (calculated wrong client area)
21281           - Added ClientSize setter
21282
21283 2004-08-04 15:13  pbartok
21284
21285         * Form.cs:
21286           - Added AutoScale properties
21287
21288 2004-08-04 15:13  pbartok
21289
21290         * SWF.csproj:
21291           - Added latest files
21292
21293 2004-08-04 14:11  pbartok
21294
21295         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21296           XplatUIX11.cs:
21297           - Added Invalidate handling
21298
21299 2004-08-03 17:09  jordi
21300
21301         * XplatUIDriver.cs: fixes spelling mistake
21302
21303 2004-07-27 09:53  jordi
21304
21305         * TrackBar.cs: fixes trackbar events, def classname, methods
21306           signature
21307
21308 2004-07-27 09:29  jordi
21309
21310         * ScrollBar.cs: fixes scrollbar events
21311
21312 2004-07-27 04:38  jordi
21313
21314         * Control.cs: changes to be able to run winforms samples
21315
21316 2004-07-26 11:42  jordi
21317
21318         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
21319           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
21320
21321 2004-07-26 05:41  jordi
21322
21323         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
21324           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
21325           implementation
21326
21327 2004-07-22 09:22  jordi
21328
21329         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
21330           check link overlapping, implement events, and fixes
21331
21332 2004-07-21 10:28  jordi
21333
21334         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
21335
21336 2004-07-21 10:19  jordi
21337
21338         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
21339           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
21340           LinkLabelLinkClickedEventArgs.cs,
21341           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
21342           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
21343           implementation
21344
21345 2004-07-19 13:09  jordi
21346
21347         * Control.cs, Label.cs: label control re-written: added missing
21348           functionlity, events, and properties
21349
21350 2004-07-19 10:49  jordi
21351
21352         * Control.cs: fixes SetBounds logic
21353
21354 2004-07-19 01:29  jordi
21355
21356         * Control.cs: Call RefreshWindow only if the window has created
21357
21358 2004-07-15 14:05  pbartok
21359
21360         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
21361           - Implemented ImageList and ImageList.ImageCollection classes
21362           - Added ColorDepth enumeration
21363           - Updated SWF VS.Net project
21364
21365 2004-07-15 11:06  jordi
21366
21367         * XplatUIStructs.cs: added MsgButons enum
21368
21369 2004-07-15 11:03  jordi
21370
21371         * Control.cs: added basic mouse handeling events
21372
21373 2004-07-15 03:38  jordi
21374
21375         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
21376           Vertical TrackBar control implementation
21377
21378 2004-07-13 09:33  jordi
21379
21380         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
21381
21382 2004-07-13 09:31  jordi
21383
21384         * Control.cs, Form.cs: commit: new properties and fixes form size
21385           problems
21386
21387 2004-07-09 14:13  miguel
21388
21389         * ProgressBar.cs: Spelling
21390
21391 2004-07-09 11:25  pbartok
21392
21393         * ProgressBar.cs:
21394           - Removed usage of Rectangle for drawing. Miguel pointed out it's
21395           faster
21396
21397 2004-07-09 11:17  miguel
21398
21399         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
21400
21401                 * ProgressBar.cs: Fixed spelling for `block'
21402
21403                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
21404                 style guidelines.
21405
21406                 Avoid using the += on rect.X, that exposed a bug in the compiler.
21407
21408 2004-07-08 23:21  pbartok
21409
21410         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
21411           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
21412           BaseCollection.cs, Binding.cs, BindingContext.cs,
21413           BindingMemberInfo.cs, BindingsCollection.cs,
21414           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
21415           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
21416           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
21417           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
21418           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
21419           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
21420           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
21421           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
21422           FrameStyle.cs, GiveFeedbackEventArgs.cs,
21423           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
21424           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
21425           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
21426           InputLanguageChangedEventArgs.cs,
21427           InputLanguageChangedEventHandler.cs,
21428           InputLanguageChangingEventArgs.cs,
21429           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
21430           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
21431           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
21432           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
21433           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
21434           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
21435           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
21436           QueryAccessibilityHelpEventArgs.cs,
21437           QueryAccessibilityHelpEventHandler.cs,
21438           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
21439           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
21440           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
21441           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
21442           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
21443           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
21444           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
21445           XplatUIX11.cs, lang.cs:
21446           - Initial check-in
21447