2007-12-20 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-12-20  Jonathan Pobst  <monkey@jpobst.com>
2
3         * Line.cs, TextControl.cs: Apply patch from Luke Page that finds the
4         end of a tag better, fixing a IndexOutOfRangeException.
5         [Fixes bug #349926]
6
7 2007-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8
9         * ListBox.cs: Both FindString and FindStringExact methods must do an
10         case insensitive search, should allow the last valid index to be
11         passed in the overload taking an initial index, and should also
12         continue searching from the top back to the specified index when it
13         reaches the bottom.
14
15 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
16
17         * TextControl.cs: Apply patch from Luke Page that fixes a scrolling
18         redraw issue, and allows RichTextBox to draw colored text even while
19         disabled or readonly.
20
21 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
22
23         * RichTextBox.cs, TextBoxBase.cs: Apply patch from Luke Page that
24         disallows cut/paste in a readonly textbox, adds support for Shift-Insert,
25         and doesn't grey text in a disabled RichTextBox.
26
27 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
28
29         * RichTextBox.cs: Apply patch from Luke Page that adds better support
30         for many RTF commands: quad alignment, separate formatting for blocks
31         inside groups, and ParDef support.  Makes the test case from bug #324589
32         look much better.
33
34 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
35
36         * LineTag.cs: Fix an error in the new Draw method that caused
37         a crash when rendering the document on bug #324589.
38
39 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
40
41         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs,
42         TextControl.cs: Apply patch from Luke Page that adds support
43         for URL links in RichTextBox.
44         [Fixes enhancement #342516]
45
46 2007-12-18  Everaldo Canuto  <ecanuto@novell.com>
47
48         * MenuItem.cs: When cloning menuitem clone also name and tag properties for
49         2.0 profile. Thanks Ernesto Carrea and Luke Page. Fixes bug #340289.
50
51 2007-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
52
53         * ListBox.cs: When a key gets pressed, try to find a string
54         if the key is a character or a digit.
55         Fixes #343971.
56
57 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
58
59         * TableLayoutPanel.cs: Remove some unused variables.
60
61 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
62
63         * DateTimePicker.cs: Commit patch from Luke Page that ensures
64         we don't end up at an invalid date when we click the up/down
65         spinner to change the month or year.  Fixes bug #348682.
66
67 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
68
69         * Application.cs: Calling Exit in 2.0 should chain to the
70         Exit (CancelEventArgs) version so it can be cancelled.
71         * Form.cs: Create a flag to allow raising the Closing
72         events to be skipped.  We raise them once in Application.Exit
73         and don't want to raise them again when the Form is actually
74         closed.  [Fixes bug #349073]
75
76 2007-12-16  Jonathan Pobst  <monkey@jpobst.com>
77
78         * ToolStripDropDown.cs: Guard against an NRE when there
79         hasn't been a mainform set in the application context.
80         [Fixes bug #349108]
81
82 2007-12-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
83
84         * ListBox.cs: When SetBoundsCore gets called, besides
85         calling UpdateScrollBars, update the value of
86         last_visible_index, since we could need to show more items
87         than before, and we need to let the paint routines know that.
88         Fixes #344445.
89
90 2007-12-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
91
92         * ListView.cs: Add DesignerSerializationVisibility attribute to
93         InsertionMark property.
94         * ListViewItem.cs: Add same attribute to Position property.
95
96 2007-12-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
97
98         * ListViewItem.cs: .ctor (SerializationInfo, StreamingContext)
99         is 2.0 only.
100
101 2007-12-14  Jonathan Pobst  <monkey@jpobst.com>
102
103         * ThemeWin32Classic.cs: Don't draw the background on a
104         flat button if there is a background image.
105         [Fixes bug #348649]
106
107 2007-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
108
109         * ListBox.cs: If we remove the item currently selected,
110         remove it not only from SelectedItems, but also
111         resetting selected_index. Moreover, set focused_item to Items.Count - 1 if 
112         the items count decreased and focused_item has bigger value than that.
113
114 2007-12-13  Jonathan Pobst  <monkey@jpobst.com>
115
116         * Control.cs: Perform our layout after we resize ourselves
117         if we had to adjust our AutoSize.  Missed commit for bug
118         #346246.
119
120 2007-12-13  Jonathan Pobst  <monkey@jpobst.com>
121
122         * TableLayoutPanel.cs: Override GetPreferredSizeCore so
123         we can provide an implementation of AutoSize.
124         [Fixes bug #346246]
125
126 2007-12-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
127
128         * ListBox.cs: Add the internal overload Sort (bool paint),
129         to indicate whether we actually need a paint or we will
130         call Refresh ourselves. This way we don't request a paint
131         _before_ having an updated and valid layout.
132         Fixes #347233.
133
134 2007-12-12  Andreia Gaita <avidigal@novell.com>
135
136         * XPlatUIX11.cs: Send paint messages when updating a systray icon
137         * NotifyIcon.cs: Invalidate the window before doing a systray change so it is
138         properly invalidated. 
139         Fixes #324237
140
141 2007-12-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
142
143         * ListViewItem.cs: When using a .ctor taking a ListViewGroup,
144         don't simply assign it to our internal group field, but instead 
145         use our Group property, which should do all the neccessary work
146         required to support groups. Fixes an issue reported to me (mail) by a 
147         guy using this new feature.
148
149 2007-12-11  Jonathan Pobst  <monkey@jpobst.com>
150
151         * Control.cs: Use Scale instead of ScaleControl to ensure the
152         whole hierarchy gets scaled.
153         [Fixes bug #347282]
154
155 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
156
157         * DateTimePicker.cs: Don't set the internal MonthCalendar's
158         Parent property.  Doing this causes the control to be hosted by
159         the Form instead of being a popup window.
160         [Fixes bug #347665]
161
162 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
163
164         * ToolStripItemCollection.cs: If we try to insert a ToolStripItem
165         at an index higher than Count, just use Add instead of Insert.
166         [Fixes bug #347669]
167
168 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
169
170         * ThemeWin32Classic.cs: Don't draw a PictureBox's background in
171         DrawPictureBox, this is handled by Control.PaintBackground.
172         [Fixes bug #347276]
173
174 2007-12-10  Everaldo Canuto  <ecanuto@novell.com>
175
176         * MenuAPI.cs: When process menu keys return true by default only if menu is
177         active. Fixes bug #342892.
178
179 2007-12-09  Andreia Gaita <avidigal@novell.com>
180
181         * Control.cs: check if windows are actually mapped before
182         trying to zorder. Fixes #342509, #346955
183
184 2007-12-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
185
186         * ListView.cs:
187         * ListViewInsertionMark.cs:
188         * ThemeWin32Classic.cs: Implement the drawing side of the
189         new 2.0 ListView.InsertionMark property.
190
191 2007-12-07  Jonathan Pobst  <monkey@jpobst.com>
192
193         * CurrencyManager.cs: Silence some debug spew.
194
195 2007-12-07  Geoff Norton  <gnorton@novell.com>
196         
197         * Hwnd.cs: Refactor GetClippingRectangles to suppose returning the
198         masks for our children as well as siblings to avoid having to query
199         Quartz for this information.
200         * XplatUICarbon.cs: Implement a delegate based system to pass
201         information to System.Drawing.  Implement Async methods.  Remove
202         the hack for the resize thumb and imlpement a transparent Grow Box.
203         Rework the messaging system to proplery create window's and messages,
204         fixes TabControl.
205
206 2007-12-06  Andreia Gaita <avidigal@novell.com>
207
208         * X11Keyboard.cs: Use Xutf8LookupString to support international 
209         characters under alternate codepages. Patch from #340878
210
211 2007-12-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
212
213         * ListView.cs: When doing layout computations, set position in the
214         ListView instances (we cache the position just as .Net does).
215         * ListViewItem.cs: New internal setter method for Position. Also set
216         position field as also available in 1.1, since we are going to use it
217         now in the common case.
218
219 2007-12-06  Andreia Gaita <avidigal@novell.com>
220
221         * Control.cs: When removing controls, get the actual container
222         to notify about active control changes. Fixes 341314.
223
224 2007-12-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
225
226         * ListViewItem.cs: Forgot to add Font to our serialization stuff.
227
228 2007-12-05  Andreia Gaita <avidigal@novell.com>
229
230         * Control.cs: When updating the zorder, ignore windows that are not
231         mapped. Fixes #342509
232
233 2007-12-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
234
235         * ListViewItem.cs: Actually implement serialization on this class.
236
237 2007-12-05  Gert Driesen  <drieseng@users.sourceforge.net>
238
239         * LinkLabel.cs: Fixed paramname of ArgumentNullException in ctor of
240         LinkCollection. Spaces to tabs, and removed extra tabs.
241
242 2007-12-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
243
244         * XplatUIX11.cs: Make toolwindows' decorations show up without causing any
245           tests to fail (hopefully).
246
247 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
248
249         * ToolStripDropDownMenu.cs: Fill in AffectedBounds when drawing
250         the image margin so custom renderers can correctly place it.
251
252 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
253
254         * StatusStrip.cs: Fill in AffectedBounds when drawing the grip
255         so custom renderers can correctly place it.
256
257 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
258
259         * Application.cs: Let WM_CHAR messages flow through to controls
260         hosted in Strips.  [Fixes bug #343972]
261
262 2007-12-02  Jonathan Pobst  <monkey@jpobst.com>
263
264         * ToolStripManager.cs: Guard against an NRE I ran into.
265
266 2007-12-02  Jonathan Pobst  <monkey@jpobst.com>
267
268         * LinkLabel.cs: Apply patch from George to fix bug 344012.  If
269         a Link is manually added to the Links collection, we need to set
270         its owner, so it can invalidate properly.
271         [Fixes bug #344012]
272
273 2007-11-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
274
275         * ListView.cs: When changing ListViewItem.Position (which calls
276         ListView.ChangeItemLocation), invalidate not only the area
277         corresponding to the main item, but also to the area occupied
278         by the items being moved.
279
280 2007-11-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
281
282         * ListView.cs: When changing the position of a given item,
283         don't use item bounds, but item areas (which includes the item spacing
284         between them). Also, use first/last position if the requested
285         position is outside bounds (as .Net does). Invalidate the previous and
286         new bounds. Finally, in ItemControl.ItemsMouseDown use the actual item
287         in a specific position, instead of directly accessing Items collection
288         (this is done to get the right item - remember an Item can have a
289         different position in the grid than in the Items collection).
290
291 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
292
293         * MessageBox.cs: Calculate text area instead of just top left, this rect 
294         area will be used in DrawString. Fixes bug #343364.
295
296 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
297
298         * MessageBox.cs: Calculate max amount for text area width, it must be 60% of
299         screen width. Partially fixes bug #343364.
300
301 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
302
303         * NotifyIcon.cs: Remove duplicated code before call realculate and put this
304         code inside recalculate, it makes code more simple.
305
306 2007-11-22  Everaldo Canuto  <ecanuto@novell.com>
307
308         * NotifyIcon.cs: When recalculate icon verify if icon is active to decide
309         between update or add icon. Fixes bug #324344.
310
311 2007-11-21  Andreia Gaita <avidigal@novell.com>
312
313         * XPlatUIX11.cs: Do not treat tool windows as if they have no 
314         window manager, since that stretches the drawing area to include
315         the window decorations, and they get hidden. Reverts r84444 and fixes
316         #335849 and #342790 (mdi and pdn3 regression)
317
318 2007-11-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
319
320         * ListView.cs: When setting focused item, try to give focus to the
321         previous one _only_ if the previous one remains valid. 
322         Fixes #342504.
323
324 2007-11-20  Jonathan Pobst  <monkey@jpobst.com>
325
326         * Application.cs: Revert r89650, as it broke a common case to fix
327         an obscure case.  Fixes bug #342606.
328
329 2007-11-20  Everaldo Canuto  <ecanuto@novell.com>
330
331         * ThemeWin32Classic.cs: Fix extra space on end of tooltip.
332
333 2007-11-20  Everaldo Canuto  <ecanuto@novell.com>
334
335         * ThemeWin32Classic.cs: Fix tooltip text align removing horizontal 
336         alignment. [Fixes #324228]
337
338 2007-11-19  Jonathan Pobst  <monkey@jpobst.com>
339
340         * ToolStrip.cs: Handle flow layout in GetPreferredSize to fix PDN3.
341         [Fixes bug #342123]
342
343 2007-11-19  Everaldo Canuto  <ecanuto@novell.com>
344
345         * Form.cs: Check for empty Text before assign to cp.Caption in CreateParams
346         it prevent problems when empty captions. [Fixes #342141]
347
348 2007-11-19  Jonathan Pobst  <monkey@jpobst.com>
349
350         * Label.cs: Use Size instead of None.  Fixes bug #342077.
351
352 2007-11-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
353
354         * ListViewItem.cs: Implement 2.0 FindNearestItem method.
355
356 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
357
358         * MenuStrip.cs: Guard against a NRE when a MdiWindowItem is set
359         but there isn't a MdiContainer.
360         [Fixes bug #342358]
361
362 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
363
364         * TextControl.cs: Don't recalculate document if the recalc_start and
365         recalc_end hasn't changed.
366         [Fixes bug #342505]
367
368 2007-11-17  Gert Driesen  <drieseng@users.sourceforge.net>
369
370         * DataGridViewTextBoxCell.cs: Removed CWL.
371
372 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
373
374         * ListView.cs: Implement 2.0 SearchForVirtualItem event support.
375
376 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
377
378         * TextControl.cs: Missed some code for bug 341534 to trigger a
379         recalculation when the font changes.
380
381 2007-11-16  Andreia Gaita <avidigal@novell.com>
382
383         * Control.cs: When updating the zorder, check if the child to update is
384         the same control that is set to always be on top (i.e., scrollbars), and 
385         just put it on top directly. Fixes BadMatch error on pdn3
386
387 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
388
389         * ListView.cs: Throw the needed exceptions for FindNearestItem.
390
391 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
392
393         * Control.cs: Don't perform a new layout when a label changes its text,
394         cause label handles its own autosizing.
395         [Fixes bug #342077]
396
397 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
398
399         * ListView.cs: Implement 2.0 FindNearestItem methods.
400
401 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
402
403         * ToolStripPanel.cs: Make Join at least add the control to the panel,
404         even if the rest of what Join does isn't supported.  Add some more
405         support for vertical toolbars.
406         * ToolStripPanelRow.cs: Add some more support for vertical toolbars.
407         [Fixes the application breaking parts of bug #341998]
408
409 2007-11-15  Jonathan Pobst <monkey@jpobst.com>
410
411         * ToolStripItem.cs: When determining if we have a check/image margin,
412         we need to look at ShowCheckMargin as well as ShowImageMargin.
413
414 2007-11-15  Geoff Norton  <gnorton@novell.com>
415
416         * XplatUIOSX.cs: Rename to...
417         * XplatUICarbon.cs: and refactor all event handling out to the new event handling
418         system in System.Windows.Forms.CarbonInternal.  Lots of code cleanup as well.
419
420 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
421
422         * KeysConverter.cs: The default values should be an array of Keys, not
423         strings.  Also, the array has more values for 2.0.
424         [Fixes bug #341851]
425
426 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
427
428         * Application.cs: Change ExecutablePath to use 
429         Process.GetCurrentProcess ().MainModule.FileName instead of Assembly.GetEntryAssembly.
430         [Fixes bug #323552]
431
432 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
433
434         * LineTag.cs: Don't attempt to draw '\r', treat it like it doesn't exist.
435         When measureing CR or LF, use /u000D instead of /u0013. (Hex, not decimal.)
436         * TextControl.cs: Fix a case in GetLineEnding where a \n before a \r would
437         be ignored.  Create a new GetLineEnding that can specify which types of
438         line endings to look for.  On Insert, only create new lines for \n and \r\n.
439         [Fixes bug #324274]
440
441 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
442
443         * TextBoxBase.cs: As we loop through each line changing the font, tell
444         the document that the line needs to be recalculated.  Fixes bug #341534.
445
446 2007-11-13  Jonathan Pobst  <monkey@jpobst.com>
447         [Another round of refactoring]
448         * Line.cs: Add DeleteCharacters.
449         * LineTag.cs: Add Delete.
450         * TextBoxBase.cs: Update to use new methods.
451         * TextControl.cs: Refactor the Delete* methods.
452
453 2007-11-13  Everaldo Canuto  <ecanuto@novell.com>
454
455         * Win32DnD.cs: Implement Win32 Drop files, thank you Srikanth Madikeri for
456         the patch. [Fixes #324856]
457
458 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
459
460         * ListView.cs:
461         * ListViewItem.cs: Add an initial implementation of
462         2.0 ListViewItem.Position getter.
463
464 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
465
466         * ListView.cs: Add a reordered_items_indices array, to allow us
467         to have a different sorting than that of Items (the sorting in Items
468         could not match the actual sorting in screen). This is needed to
469         implement a pair of 2.0 features.
470         * ListViewItem.cs: Add a DisplayIndex property to keep track of the
471         actual position in the ListView grid, since it could have a position
472         different than its Index (position in ListViewItemCollection). 
473
474 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
475
476         * Label.cs: Add StringFormatFlags.LineLimit.  This tells DrawString to
477         not draw partial lines.
478         * LinkLabel.cs: Change FormatFlags setter from = to |= so that the
479         LineLimit flag from the base is preserved.
480         Fixes the windows part of bug #338965.
481
482 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
483
484         * TextBoxBase.cs: Move handling of the enter key from KEYDOWN to CHAR
485         so that it can be canceled in KeyPress.
486         Fixes bug #340078.
487
488 2007-11-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
489
490         * ListView.cs: In ItemControl, reset mouse-handling related
491         fields even if we dont' have items (we still should reset them when
492         we had items but then called Items.Clear). Partially based in a patch
493         by George Giolfan.
494         Fixes #338399.
495
496 2007-11-08  Gert Driesen  <drieseng@users.sourceforge.net>
497
498         * Application.cs: In ProductVersion first try AssemblyFileVersion
499         before falling back to assembly version. Fixes bug #339787.
500
501 2007-11-08  Andreia Gaita <avidigal@novell.com>
502
503         * HtmlElement.cs: Implement InnerText setter.
504         * WebBrowserBase.cs: Implement Navigated event support.
505         Add flag to track when the browser "document" is ready to be retrieved.
506         * WebBrowser.cs: Implement CanGoBack, CanGoForward, Title, Url.
507         Make sure browser document is ready before retrieving it.
508         Clean up cached objects (document) when moving to a new page through
509         any of the navigation methods.
510         Use the new Mono.WebBrowser.INavigation interface to control navigation.
511         Implement OnNavigated event.
512
513 2007-11-07  Jonathan Pobst  <monkey@jpobst.com>
514
515         * ThemeWin32Classic.cs: Don't draw the background in DrawLabel or
516         DrawLinkLabel, this is handled by OnPaintBackground.
517         Fixes bug #339565, part II.
518
519 2007-11-07  Andreia Gaita <avidigal@novell.com>
520
521         * Control.cs: Revert r88915. Selecting text on a textbox depends on
522         getting a Select call on click, so this call needs to be here for now.
523         Unfixes #325809
524
525 2007-11-07  Geoff Norton  <gnorton@novell.com>
526
527         * OSXStructs.cs: Add the kEventClassApplication constants.
528         * XplatUIOSX.cs: Send a WM_LBUTTONDOWN to the Grab window when the 
529         application is deactivated otherwise Menu overlays linger on top of
530         other application windows.
531
532 2007-11-07  Geoff Norton  <gnorton@novell.com>
533
534         * XplatUIOSX.cs: Dont throw an exception on OverrideCursor as we
535         dont support cursors yet anyways.  This allows Reflector to run.
536
537 2007-11-07  Geoff Norton  <gnorton@novell.com>
538
539         * XplatUIOSX.cs: Implement DragSize.
540
541 2007-11-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
542
543         * ListView.cs: When we receive a WM_LBUTTONDOWN message in
544         ItemControl, request the focus, as .Net does. This is needed after 
545         Control does not request focus anymore when it receives a
546         WM_LBUTTONDOWN.
547
548 2007-11-06  Jonathan Pobst  <monkey@Jpobst.com>
549
550         * Label.cs: Make DrawImage internal so it can be called from Theme code.
551         Remove the DrawImage call from OnPaint.
552         * LinkLabel.cs: Remove the DrawImage call from OnPaint.
553         * ThemeWin32Classic.cs: Call DrawImage after we paint the background,
554         but before we draw the text for DrawLabel and DrawLinkLabel.
555         Fixes bug #339565.
556
557 2007-11-05  Andreia Gaita <avidigal@novell.com>
558
559         * Control.cs: Remove select call on click. Fixes #325809
560
561 2007-11-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
562
563         * ListViewItem.cs: Add 2.0 Position property getter.
564
565 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
566
567         * ListView.cs: Add 2.0 BackgroundImageTiled property.
568         Also, to make it work properly, change item's BackColor and
569         BackgroundImageLayout as needed.
570         * ThemeWin32Classic.cs: Don't fill any background rectangle 
571         in ListView.ItemControl when drawing items; just let the Control
572         base implementation fill it.
573
574 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
575
576         * ListViewGroup.cs: Adda TypeConverter attribute for this class,
577         as well as adding a custom 'dummy' Converter, as .net does.
578
579 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
580
581         * PropertyGridView.cs: When clicking drop-down button,
582         select an index in the listbox only if our standard values collection 
583         has one or more items.
584
585 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
586
587         * ListViewItem.cs: Add a DefaultValue attribute to 2.0 IndentCount
588         property.
589
590 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
591
592         * PropertyGrid.cs: In PropertySort, update the toolbar buttons even if
593         the value is not changed. This ensure a pushed button remains in that
594         state when clicked again. When switching the value of PropertySort
595         between Categorized and CategorizedAlphabetical, do not update the
596         grid items and do not fire a PropertyChangedEvent. When clicking the
597         sorting buttons, do not modify the PropertySort value when switching
598         between Categorized and CategorizedAlphabetical but only update the
599         button state.
600
601 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
602
603         * Label.cs: Make AutoEllipsis internal on 1.0 profile. Code
604         formatting.
605         * PropertyGrid.cs: Also put Categorized button in pushed state when
606         PropertySort is CategorizedAlphabetical. Set AutoEllipsis to true
607         for help description label.
608
609 2007-11-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
610
611         * ListView.cs: When calculating the biggest item for a given column,
612         take into account 2.0 LIstViewItem.IndentCount, since it directly affects
613         the item's width.
614
615 2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
616
617         * PropertyGrid.cs: Fixed default value for PropertySort. Allow invalid
618         value for PropertySort on 1.0 profile. PropertySortChanged event
619         should only be fired on 2.0 profile. Fixed NullReferenceException
620         in UpdateSortLayout when PropertyGrid contains no items.
621
622 2007-11-02  Jonathan Pobst  <monkey@jpobst.com>
623
624         * MessageBox.cs: Patch from George to implement MessageBoxDefaultButton.
625         [Fixes bug #338554]
626
627 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
628
629         * ListViewItem.cs: Implement 2.0 IndentCount property.
630
631 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
632
633         * X11Dnd.cs: When sending status in a dnd operation, compare current
634         effect with the 'allowed' field instead of 'drag_data.Allowed', since
635         the later is only created when a Winforms application is both the
636         source and the target, but not when we are the target only.
637         Fixes part of #324251.
638
639 2007-11-01  Geoff Norton  <gnorton@novell.com>
640
641         * XplatUI*.cs: Add GetPreviousWindow utility method to return windows in
642         order of Z-Order.
643         * Hwnd.cs: Add initial implementation of GetClippingRectangles to clip sibling 
644         children out of the drawing view on mac.
645         * XplatUIOSX.cs: Code cleanup.  Handle more window grab cases.  Fix SetParent
646         to handle the orphan and invisible case (1/2 fixes TabStrip drawing in FormsTest)
647         
648 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
649
650         * ToolStrip.cs: Don't process MouseUp for a ToolStripControlHost, clicking
651         on the non-hosted-control part of it shouldn't do anything.
652         Fixes part of bug #327498.
653
654 2007-11-01  Andreia Gaita <avidigal@novell.com>
655
656         * WebBrowserBase.cs: revert previous change, resize can be called anytime
657
658 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
659
660         * Application.cs: When a toolstrip has the keyboard input loop, let messages
661         it does not use flow through to controls that are hosted in menus.
662         Same with mouse clicks.
663         * Form.cs: Don't close all menus on click if the click is on a
664         control hosted in a menu.
665         Fixes part of bug #327498, and part of bug #325969.
666
667 2007-10-31  Andreia Gaita <avidigal@novell.com>
668
669         * WebBrowserBase.cs: Only call resize on gluezilla when it is active
670
671 2007-10-31  Jonathan Pobst  <monkey@jpobst.com>
672
673         * TextBoxBase.cs: Use int.MaxValue for MaxLength instead of magic number.
674         Addresses an issue raised in bug #336218.
675
676 2007-10-30  Jonathan Pobst  <monkey@jpobst.com>
677
678         * Form.cs: Patch from George that moves the conversion of ClientSize->Size
679         for PreferredSize from OnLayout to PreferredSize.  Fixes bug #325242.
680
681 2007-10-30  Andreia Gaita <avidigal@novell.com>
682
683         * ContainerControl.cs: Check if the active control is a
684         child of a removed control and update active_control accordingly.
685         Fixes #329718
686
687 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
688
689         * DateTimePicker.cs: Throw ArgEx if the Value is set outside the MinDate
690         or the MaxDate.  Fixed bug #337693.
691
692 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
693
694         * XplatUIWin32.cs: Always call SetWindowPos with SWP_FRAMECHANGED flag
695         after calling SetWindowLong for a form, to force an immediate NC refresh.
696         Fixes first part of bug #325150.
697
698 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
699
700         * ComboBox.cs: Don't try to resize the listbox when we are DropDownStyle
701         simple.  Fixes the last part of bug #322668.
702
703 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
704
705         * MessageBox.cs: If the owner is TopMost, then the MessageBox form
706         needs to be TopMost as well, or else the MessageBox is under the form.
707         Patch by George fixes bug #325300.
708
709 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
710
711         * X11Dnd.cs: When starting a new drag operation, reset the static
712         'dropped' field to false (previously the implementation didn't reset
713         it and got confused after the first drag).
714         Fixes #325071.
715
716 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
717
718         * PropertyGrid.cs: When PropertySort changes, re-organize the grid
719         items instead of re-creating them all. For this purpose we now cache
720         both CategoryGridEntry items and the GridEntries for the main object's
721         properties.
722         * GridItem.cs: Make SetParent method abstract.
723         * GridEntry.cs: Override the SetParent method (already there, but now
724         we override it).
725         Fixes #324866.
726
727 2007-10-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
728
729         * PropertyGridView.cs: Set the plus/minus bounds of a grid item
730         depending on its depth (as .Net does). Update the needed values in
731         MouseDown handler. Also draw the plus/minus rect after the label,
732         so we don't draw on top of it.
733
734 2007-10-24  Everaldo Canuto  <ecanuto@novell.com>
735
736         * MenuAPI.cs: Return true as default in ProcessKeys to prevent keys to be
737         processed by forms or controls when menu is active. [Fixes #333548]
738
739 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
740
741         * ToolStripItem.cs: Don't focus a ToolStripControlHost on Select of the
742         parent doesn't have focus.  This was causing ToolStripTextBoxes to take
743         focus on mouse over.
744
745 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
746
747         * TextControl.cs: Code cleaning, simplifying.
748
749 2007-10-24  Geoff Norton  <gnorton@novell.com>
750
751         * XplatUIOSX.cs: Route mouse events to the grab hwnd on mouse down as well.
752         * XplatUIStructs.cs: Fix the ToString method of POINT and MSG.
753
754 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
755
756         * TextBoxBase.cs: If the user sets maxlength to 0, it should mean
757         the cap is maxvalue, not actually 0.  [Fixes bug #336218]
758
759 2007-10-24  Andreia Gaita <avidigal@novell.com>
760
761         * SendKeys.cs: apply jpobst's patch to bug #332409
762
763 2007-10-23  Andreia Gaita <avidigal@novell.com>
764
765         * TextBoxTextRenderer.cs: Lower bounds max size to Int16.MaxValue, the 
766         Windows 2000 gdi DrawText call doesn't draw if it's higher than that
767         for some reason
768
769 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
770
771         * PropertyGridView.cs: If a property has an UIEditor available,
772         make the drop-down/editor button available only if the property
773         is _not_ read only.
774
775 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
776
777         * PropertyGridView.cs: Don't make the grid item textbox 
778         editable when a drop-down control is available, but 
779         CanConvertFrom (typeof (string)) is false or GetStandardValuesExclusive () is
780         true. The same bur the color of the grid item value's label.
781
782 2007-10-22  Geoff Norton  <gnorton@novell.com>
783
784         * OSXStructs.cs: Add the needed constants for keyboard modifiers.
785         * OSXKeyboard.cs: Initial support for keyboard and limited modifiers.
786         * XplatUIOSX.cs: New reversible frame support.  Wire in the new keyboard
787         driver.  Padd the bottom of all real windows so the resize thumb doesn't
788         obscure scroll/status bars.
789
790 2007-10-22  Jonathan Pobst  <monkey@jpobst.com>
791
792         * WindowsFormsSection.cs: Implement.
793
794 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
795
796         * MdiClient.cs: Maximize new active mdi child when a maximized child is 
797         closed see #325434 patch.
798
799 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
800
801         * MdiClient.cs: Fix remaining issues from layout vertical and horizontal,
802         see #325434 patch.
803
804 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
805
806         * PropertyGridView.cs: When showing the textbox for a grid item,
807         have two local variables to store the read-only and non-editable
808         status of a grid item (we were previously using just one variable
809         to do this, when actually they are slightly different).
810         Fixes part of #325023.
811
812 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
813
814         * PropertyGridView.cs: When showing a drop-down list, try to get the
815         values using TypeConverter.ConvertTo (to convert to a string). Fixes
816         part of #325023.
817
818 2007-10-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
819
820         * PropertyGrid.cs: When updating a property and populating sub grid
821         items, remove the previous ones, and invalidate the specific area.
822         * PropertyGridView.cs: A new InvalidateBelowGridItem to invalidate the
823         area behind a grid item.
824         * GridItemCollection.cs: Add an internal Clear method, to allow us to
825         clean the items if needed (specially for controls implementing 
826         ICustomTypeDescriptor and returning a variable number of properties).
827         Fixes #324865.
828
829 2007-10-19  Jonathan Pobst  <monkey@jpobst.com>
830
831         * TextControl.cs: Clean up and document the Insert function.
832
833 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
834
835         * TextControl.cs: Make sure we know our start point for updating the view
836         in ReplaceSelection.  Fixes an issue where pasting multiline text wouldn't
837         update the view.
838
839 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
840
841         * ListView: Couple of corcompare fixes.
842
843 2007-10-17  Geoff Norton  <gnorton@novell.com>
844
845         * XplatUIOSX.cs: Implement support for window icons in the dock.  Set
846         the title caption of real window.
847
848 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
849
850         * ErrorProvider.cs: Add the error provider's internal window to a 
851         containercontrol when the parent changes.  [Fixes bug #329714]
852
853 2007-10-17  Geoff Norton  <gnorton@novell.com>
854
855         * XplatUIOSX.cs: Implement ScrollWindow.  Properly create TOOLWINDOWs.
856         When we make a new window; restore the old active window - fixes dialogs.
857
858 2007-10-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
859
860         * PropertyGridView.cs: Look for RefreshPropertiesAttribute
861         when modifying a property, and if found then invalidate as
862         requested.
863         Fixes part of #324865.
864
865 2007-10-17  Geoff Norton  <gnorton@novell.com>
866
867         * XplatUIOSX.cs: Re-enable the native driver on the Mac.  This is still
868         highly experimental.  Fixed coordinate translation.  Fixed window locations.
869         Initial support for clipping. Implemented NC areas and menus.  Support for
870         launching from command line from Will Johansson (wjohansson@atacomm.com).
871         * OSXStructs.cs: Add ProcessSerialNumer (Patch from Will Johansson
872         wjohansson@atacomm.com)
873         * Hwnd.cs: Add some internal structures for tracking Mac cursors.
874         Hwnds now track the existence of all of their children for Mac clipping.
875     * XplatUI.cs: Re-enabled the native driver on the Mac.
876
877 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
878
879         * Line.cs: Move the InsertString function to here.
880         * TextControl.cs: Cleanup some duplicate code, move some InsertString
881         functionality to Line.
882
883 2007-10-17  Geoff Norton  <gnorton@novell.com>
884
885         * ComboBox.cs: Destroy the popup after hiding it.  Fixes #322582
886
887 2007-10-16  Gert Driesen  <drieseng@users.sourceforge.net>
888
889         * ButtonBase.cs: Fixed IsDefault to use assigned value instead of
890         always setting value to true.
891         * Form.cs: When changing AcceptButton, notify new and original button.
892
893 2007-10-16  Jonathan Pobst  <monkey@jpobst.com>
894
895         * Form.cs: Guard against an NRE when the user sets the AcceptButton to
896         a custom control that implements IButtonControl instead of an actual
897         button.  [Fixes bug #334244]
898
899 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
900
901         * Form.cs: Change SelectActiveControl to internal, we need to call it in
902         MdiWindowManager.
903         
904         * MdiWindowManager.cs: In RaiseActivated call SelectActiveControl to select
905         active control when activate a new mdi window.
906         
907         [Fixes bug #330495]
908
909 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
910
911         * ComboBox.cs: Dont implicit add listbox_ctrl on OnHandleCreated because it
912         is already added.
913         [Fixes bug #333617]
914
915 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
916
917         * TextControl.cs: When SuspendRecalc is first called, reset the recalc_start
918         to MaxValue and recalc_end to MinValue.  Currently, recalc_start is always 1,
919         so we always recalculate the whole document instead of just the new part.
920         [Fixes bug #325082]
921
922 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
923
924         * LineTag.cs: Fix a case where the GetCharIndex would not return 0
925         when the mouse was to the left of the first character in the line.
926
927 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
928
929         * TextBox.cs, TextBoxBase.cs: When setting the document's password
930         character, use the property instead of the variable so that the
931         UseSystemPasswordChar property is taken into account.
932         [Fixes bug #333748]
933
934 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
935
936         * FolderBrowserDialog.cs: When a node is right clicked and the "New
937         folder" contex menu appears, actually add the new folder to it, even
938         if the node is not currently selected. Still use SelectedNode in case 
939         there wasn't found a node under the pointer.
940         Fixes #325452.
941
942 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
943
944         * ListViewItem.cs: When retrieving the focused state, the index check
945         should be done only when ListView is in virtualmode, as it is an
946         expensive check for normal mode.
947
948 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
949
950         * ListViewItem.cs: Make the focus state information be stored
951         in the ListView, not in the items. This is done to match the MS
952         behaviour for items that are not yet part of a ListView control;
953         besides that, since just one item can be focused at the same time,
954         we save a little space in our items.
955         Fixes part of #331643.
956
957 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
958
959         * ComboBox.cs: When focus is lost, deselect the text. When setting
960         text of control, select all text. Do not hide selection when control
961         does not have focus. Fixes bug #333663.
962
963 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
964
965         * TextBoxBase.cs: On 2.0 profile, throw ArgumentOutOFRangeException
966         instead of ArgumentException when SelectionLength is set to negative
967         value. Added same check to SelectionStart. Code formatting.
968
969 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
970
971         * TextBoxBase.cs: Invalidate selection before changing SelectionLength
972         or SelectionStart. Code formatting.
973
974 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
975
976         * TreeView.cs: drag_begin_x and drag_begin_y are now set to -1,
977         indicating that there was not a previous drag-and-drop operation going
978         on.
979         Fixes part of #325071.
980
981 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
982
983         * X11Dnd.cs: When DragEventArgs.Effect is set to a value not part of
984         AllowedEffect, don't let the drop operation happen. 
985         Fixes #32580.
986
987 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
988
989         * TextRenderer.cs: Use GDI on Windows in both the 1.1 and 2.0 profiles.
990
991 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
992
993         * Line.cs, LineTag.cs: Guard against an exception when Document.Clear
994         is called.
995
996 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
997
998         * Line.cs: Add a method that finds the tag that contains an x-coord.
999         * LineTag.cs: Add a method that finds the character at an x-coord using
1000         a binary search, the old way was a linear search.
1001         * TextControl.cs: Change FindCursor to use the above new methods.
1002
1003 2007-10-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1004
1005         * DragEventArgs.cs: Allow Effect to have a non allowed value (a
1006         value different than AllowedEffect). This should be possible to
1007         indicate that dragging is not possible in some control/area.
1008
1009 2007-10-11  Jonathan Pobst  <monkey@jpobst.com>
1010
1011         * LineTag.cs: Encapsulate all variables with properties.  Calculate ascent/
1012         descent internally when font changes instead of outside code being responsible
1013         for setting it.
1014         * Line.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Use Tag properties
1015         instead of accessing internal variables.
1016
1017 2007-10-09  Everaldo Canuto  <ecanuto@novell.com>
1018
1019         * MdiClient.cs: Always call ArrangeIconicWindows before any arrangement and
1020         remove special treatment for ArrangeIcons since it is already arranged.
1021
1022 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1023
1024         * TextBoxTextRenderer.cs: Draw takes a Color now instead of a Brush, as
1025         the Win32 backend uses Color.
1026         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs:
1027         Refactor to store a Color instead of a Brush for Color.
1028
1029 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1030
1031         * Line.cs, LineTag.cs: Override GetHashCode to make a compiler warning go
1032         away.  I didn't realize I needed this when I refactored these earlier.
1033
1034 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1035
1036         * LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Refactor to
1037         store a Color structure and use the ResPool for back color instead of
1038         holding onto brushes.
1039
1040 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1041
1042         * TextControl.cs: Fix how we calculate the end of the tag we are drawing.
1043         [Fixes bug #325592]
1044
1045 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1046
1047         * MonthCalendar.cs: When ShowWeekNumbers is changed, force the calendar
1048         to recalculate its size.  Fixes a part of bug #331052.
1049
1050 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1051
1052         * NotifyIcon.cs: Set the correct mouse button when handling right mouse
1053         button.  Fixes a part of bug #331052.
1054
1055 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1056
1057         * Form.cs: Trim NewLine before setting XPlatUI.SetText, and when setting
1058         the CreateParams.
1059         * ThemeWin32Classic.cs: Trim NewLine before drawing MDI children window
1060         decorations.
1061         [Fixes bug #330986]
1062
1063 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1064
1065         * TextBoxTextRenderer.cs: Don't make this a static class, as static
1066         doesn't exist in 1.1.  (Thanks jb!)
1067
1068 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1069
1070         * TextBoxTextRenderer.cs: Abstract text measuring and drawing to this
1071         class to allow us to use different backends on different platforms.
1072         Linux uses the current [Draw|Measure]String backend.  Windows uses
1073         the TextRenderer.[Draw|Measure]Text backend, which uses GDI instead
1074         of GDI+.  This leads to better looking text and more accurate measurements
1075         on Windows, fixing many of the reported issues.
1076         * Line.cs, LineTag.cs: Update to use TextBoxTextRenderer.
1077
1078 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1079
1080         * FolderBrowserDialog.cs: When running on Windows,
1081         try to detect paths such "C:" and add Path.DirectorySeparatorChar,
1082         since we must match both "C:" and "C:\" forms. A little hackish, but
1083         works.
1084         Fixes #325247.
1085
1086 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1087
1088         * ListView.cs: When calling EndEdit (after editing an item),
1089         create a new instance of LabelEditEventArgs to keep clean the fields
1090         in case we get a new call to BeginEdit; also do Application.DoEvents
1091         to have focus in synch. This is a fix similar to TreeView's #325244.
1092
1093 2007-10-07  Andreia Gaita <avidigal@novell.com>
1094
1095         * HtmlDocument.cs, HtmlElement.cs, WebBrowser.cs: Added dom support
1096         * WebBrowserBase.cs: Added dialog support, calling the
1097           WebBrowserDialogs classes for each specific dialog type.
1098
1099 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1100
1101         * ListView.cs: When the last item is focused and is removed,
1102         move the focus to the previous item (in Items order). This is what MS
1103         does.
1104         Fixes #330415.
1105
1106 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1107
1108         * ListView.cs: In ListViewItemCollection, make Remove call RemoveAt,
1109         instead of the opposite (RemoveAt call Remove). This is a better
1110         approach since we don't need to to a pair of traversals when using
1111         RemoveAt.
1112
1113 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1114
1115         * TreeView.cs: When Keys.Left is pressed, before trying to Collapse
1116         check that the node actually has nodes, and if not, move to the
1117         parent node instead. 
1118         Fixes #325265.
1119
1120 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1121
1122         * TreeView.cs: Move the previous change to the general case (to
1123         call Application.DoEvents in cases where the method was called by
1124         different places).
1125
1126 2007_10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1127
1128         * TreeView.cs: When calling EndEdit and we need to hide the textbox,
1129         call Application.DoEvents. This is neccessary when we get a call to
1130         BeginEdit from an AfterLabelEdit handler, because the focus always
1131         goes to the TreeView, even if we try to give it to our
1132         LabelEditTextBox. The call do Application.DoEvents seems to
1133         synchronize the focus, basically.
1134         Fixes #325244.
1135
1136 2007-10-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1137
1138         * TreeView.cs: When AfterLabelEdit event is fired, TreeNode.IsEditing
1139         should be false. This also removes some nasty recursive paths. Fixes
1140         part of #325244.
1141
1142 2007-10-04  Everaldo Canuto  <ecanuto@novell.com>
1143
1144         * MdiClient.cs: When cascade (layout) mdi window that is maximized, set the
1145         state to normal. Also resize window when cascading. Fixes #325433. 
1146
1147 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
1148
1149         * RichTextBox.cs: When SelectionColor is set to Color.Empty, use
1150         DefaultForeColor, as drawing empty colored lines isn't very useful.
1151         [Fixes the not drawn lines part of bug #324358]
1152
1153 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
1154
1155         * TextControl.cs: Move Line and LineTag classes into separate files to
1156         make things easier to find.
1157         * Line.cs, LineTag.cs: Bring coding standards up to Mono's guidelines.
1158         * RichTextBox.cs: Capitalize LineTag.Length property access.
1159         - This is purely an organizational/formatting change, no logic changed. -
1160
1161 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1162
1163         * ThemeWin32Classic.cs: Do not show focus rectangle in radio buttons when
1164         text is empty.
1165
1166 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1167
1168         * ThemeWin32Classic.cs: Do not show focus rectangle in checkboxes when
1169         text is empty.
1170
1171 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1172
1173         * ComboBox.cs: On contructor use backgound_color instead of BackColor to
1174         prevent calling of OnBackColorChanged. Fixes #325321.
1175
1176 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1177
1178         * TextBox.cs: When check enabled uses Enabled property instead of is_enabled
1179         because control can be disabled because owner is disabled.
1180
1181 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
1182
1183         * ComboBox.cs: For the 1.1 profile, the default SelectedText is
1184         string.Empty, test failed from previous change.
1185
1186 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
1187
1188         * TextBoxBase.cs: For the 1.1 profile, the default SelectedText
1189         is null, not String.Empty.  See bug #323038.
1190
1191 2007-10-01  Jonathan Pobst  <monkey@jpobst.com>
1192
1193         * TextControl.cs: Change the margins to match MS a little better.
1194         Still not perfect for X11 due to some DrawString differences, but
1195         is still an improvement over the old stuff.
1196         Partially fixes #324467.
1197
1198 2007-09-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1199
1200         * FolderBrowserDialog.cs: When using MyComputer as 
1201         RootFolder, let absolute paths be considered as valid ones. Also, use
1202         Path.DirectorySeparatorChar instead of Path.AltDirectorySeparatorChar,
1203         for Windows compatibility.
1204         Partially fixes #325247.
1205
1206 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1207
1208         * FolderBrowserDialog.cs: Fix the recursive FindPathInNodes method.
1209         Also remove the stack.Count > 0 check in FBTreeView.SetSelectedNode
1210         method, since it causes the dialog to not select folders directly
1211         under the root path (when setting SelectedPath property).
1212
1213 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1214
1215         * TreeNode.cs: When calling Expand/Collapse and need to call 
1216         ExpandBelow/CollapseBelow respectively, take into account
1217         partially visible nodes (previously Expanding/Collapsing
1218         a partially visible node in the bottom was not updating its +- sign).
1219
1220 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1221
1222         * TreeView.cs: When calling Expand on a TreeNode, and we need to
1223         expand nodes below (ExpandBelow), scroll the entire Viewport
1224         area if the node is above it and not visible (instead of scrolling
1225         the area from node's Bottom, which applies only when the node is
1226         visible).
1227         Fixes #325266.
1228
1229 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1230
1231         * TreeView.cs: When calling ExpandAll, set SelectedNode to the top
1232         node in the bottom area (as .Net does). This is done to preserve the
1233         scroll position when ExpandAll is called before handle is created for
1234         the 1.1 profile (bottom area, as opposed to top area in 2.0).
1235         Fixes #324103.
1236
1237 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1238
1239         * TreeView.cs: When calling ExpandAll, don't move the scroll to the 
1240         bottom area if we are in fact not using the vertical scroll bar.
1241         Fixes #324824.
1242
1243 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
1244
1245         * Control.cs: Comment out a double buffering optimization that doesn't
1246         take into account invalidates created in OnPaint, causing the control
1247         to never be redrawn.  It would take quite a bit of work to work around
1248         this, but I left it commented with an explanation for later possible
1249         optimization.
1250         [Fixes bug #328681]
1251
1252 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
1253
1254         * Control.cs: Ask parent to perform a layout if control is AutoSize and
1255         the text changes.
1256         * RadioButton.cs: Implement GetPreferredSizeCore.
1257         [Fixes bug #328672]
1258
1259 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
1260
1261         * RichTextBox.cs, TextBoxBase.cs, WindowsFormsSynchronizationContext.cs:
1262         corcompare stuffs.
1263
1264 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
1265
1266         * Application.cs: Move the sync context stuff to Run instead of RunLoop
1267         so that it doesn't get uninstalled on modal forms.
1268         * Control.cs: Install a sync context when a control is created.
1269         * WindowsFormsSyncronizationContext.cs: Create a private static control
1270         to invoke on.  This is easier than trying to find a created control we
1271         can use.
1272         [Fixes bug #327608]
1273
1274 2007-09-25  Jonathan Pobst  <monkey@jpobst.com>
1275
1276         * Application.cs: Install a WindowsFormsSynchronizationContext in the
1277         run loop, and uninstall it when done.
1278         * WindowsFormsSynchronizationContext.cs: Implement.
1279         [Fixes the common case in bug #327608]
1280
1281 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
1282
1283         * DataGridViewCellCollection.cs: Added argument checks for indexers.
1284         Use case-insensitive lookup of column name in indexer. Code
1285         formatting.
1286
1287 2007-09-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1288
1289         * TreeNode.cs: When collapsing or expanding a node, check whether its
1290         change will affect the visible area (we were previously doing a
1291         IsVisible check, but that check is not enough since children nodes
1292         could be still visible). Fixes part of #325266.
1293
1294 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
1295
1296         * TreeView.cs: Always select the first node when the TreeView gets
1297         focus if there is no currently selected node.
1298         [Fixes bug #324279]
1299
1300 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
1301
1302         * TreeView.cs: Do not raise BeforeSelect or AfterSelect when the
1303         node being selected is null.
1304         [Patch from Yves Bastide fixes bug #326858]
1305
1306 2007-09-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1307
1308         * TreeNode.cs: Add an internal ArePreviousNodesExpanded, to know
1309         whether all the parent nodes are expanded.
1310         * TreeNodeCollection.cs: When adding a new node an calling SetupNode,
1311         call RecalculateVisibleOrder if all previous nodes are expanded.
1312         Before that we were doing a IsVisible check, but sometimes the node
1313         is not in the visible area, but _should_already be ready, because of
1314         all previous nodes are expanded. Fixes #325259.
1315
1316 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1317
1318         * ToolStripSplitButton.cs: Call the ButtonClick event if the button
1319         portion of the item is clicked.
1320
1321 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1322
1323         * TextControl.cs: Do not tell the system to move the cursor if the
1324         textbox isn't focused.  Fixes part of bug #322668.
1325
1326 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1327
1328         * ComboBox.cs: When there are no items, do not show the dropdown if
1329         the down arrow is clicked.  Fixes part of bug #322668.
1330
1331 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1332
1333         * ToolStripComboBox.cs: Manually set the size of this control in the
1334         constructor, as it doesn't seem to be the same as DefaultSize.
1335         Fixes a failing monobuild test.
1336
1337 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
1338
1339         * DateTimePicker.cs: If the user sets MinDate to DateTime.MinValue,
1340         change it to DateTimePicker.MinDateTime.  [Fixes bug #326609]
1341
1342 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
1343
1344         * Theme.cs: FileDialogs should be using DesktopDirectory instead of
1345         Desktop.  This lets it work for people who have moved their desktops
1346         from the default location on windows.  For people who have not, both
1347         values are the same, so it shouldn't hurt anything.  [Fixes bug #325270]
1348
1349 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1350
1351         * ToolStripControlHostTest.cs: DefaultSize is based off hosted control,
1352         but when the base constructor sets this, the control is null.  Set it
1353         again in the constructor.  Fixes a failing monobuild test.
1354
1355 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1356
1357         * ToolStripDropDownItem.cs: Make sure Click and DropDownOpened events
1358         get called.
1359         * ToolStripSplitButton.cs: Make sure MouseDown and MouseUp events get
1360         called.
1361
1362 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1363
1364         * ToolStrip.cs: Don't show tooltips for ToolStripTextBoxes, they
1365         will handle it themselves.
1366         * ToolStripItem.cs: When deciding what the text of a tooltip should
1367         be, use the Text property instead of the text field.
1368         * ToolStripTextBox.cs: Handle tooltips.
1369         [Fixes bugs #325417 and #325973]
1370
1371 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1372
1373         * ToolStripDropDownButton.cs: Only drop down overflow menu with a
1374         left click.  Fixes the easy part of bug #325969.
1375
1376 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1377
1378         * ToolStrip.cs: Set AutoSizeMode back to GrowAndShrink to refix
1379         bug #325406, but set a minimum for StatusStrip to 22 to keep
1380         bug #325390 fixed.  I think this minimum would have been figured
1381         up automatically if the grip was actually a ToolStripItem, but it
1382         currently is not.
1383
1384 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1385
1386         * ListView.cs: max_label_wrapping is now 30 pixels instead of 38,
1387         as this is apparently the actual value used by .Net. Also apply
1388         ItemPadding in Details view only, and decrease the general width padding,
1389         to have only the needed. This should fix #324340 in Windows too.
1390
1391 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1392
1393         * ListViewItem.cs: Don't Invalidate item if parent is inside
1394         a BeginUpdate/EndUpdate block. This prevents to have differences
1395         between the ListView and items state, as well as avoid some exceptions
1396         there.
1397         * ListView.cs: Make 'updating' field internal.
1398
1399 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1400
1401         * ToolStripControlHost.cs: Realign control when ControlAlign changes.
1402         * ToolStripItem.cs: Use ImageScalingSize when calculating preferred
1403         size if appropriate.
1404         Fixes reopened bug #325414.
1405
1406 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1407
1408         * ToolStrip.cs: Set AutoSizeMode back to GrowOnly.
1409         * ToolStripItem.cs: Invalidate before and after our new autosize when
1410         text changes.
1411         Fixes reopened bug #325390.
1412
1413 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1414
1415         * ToolStripMenuItem.cs: Make sure we invalidate when clicked so
1416         mnemonics can be drawn or undrawn correctly.  Fixes reopened bug 
1417         #325044.
1418
1419 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1420
1421         * Control.cs: Do WM_CONTEXTMENU before OnMouseUp.  [Fixes bug #325535]
1422
1423 2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1424
1425         * ColumnHeader.cs: When drawing column text, use EllipsisCharacter
1426         instead of EllipsisWord (by equistango at gmail.com). Fixes part of
1427         #82734.
1428
1429 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1430
1431         * ToolStrip.cs: Make ToolStrip selectable when TabStop = true.  Find an
1432         item to select when the ToolStrip is selected.
1433         * ToolStripControlHost: Realign the control when the bounds or visibility
1434         change.
1435         * ToolStripItem.cs: When selected, if it's a control host, focus the control.
1436         * ToolStripOverflow.cs: When laying out the drop down, respect the item's
1437         preferred height.
1438         * ToolStripTextBox.cs: OnPaintInternal should call base.OnPaintInternal, not
1439         base.OnPaint.  Was causing text not to be drawn.
1440
1441 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1442
1443         * SplitterPanel.cs: Ignore attempts to set AutoSizeMode.
1444
1445 2007-09-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1446
1447         * TreeView.cs: When creating the label edit text box,
1448         set is initially to Visible = false. This is done to
1449         prevent a confusion in the layout which makes it to lose
1450         focus when shown the first time. Fixes part of #82592.
1451
1452 2007-09-13 Andreia Gaita <avidigal@novell.com>
1453
1454         * WebBrowserBase.cs: add FocusOption enumeration for finer focus control
1455
1456 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1457
1458         * ToolStrip.cs: Take Margin into account when calculating preferred
1459         size.  Also, allow preferred size to get smaller than the explicit
1460         size.
1461         * ToolStripTextBox.cs: Don't change the GetPreferredSize implementation.
1462         First step towards fixing bug #82747.
1463
1464 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1465
1466         * TreeView.cs: Applied patch from latency@gmx.de to not paint the
1467         full row select background over the plus/minus glyph.  Also, turn
1468         off the focus rectangle for full row select since MS doesn't seem
1469         to ever paint it.  [Fixes bug #81839]
1470
1471 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1472
1473         * ToolStrip.cs: Don't FocusInternal if there is no selected item.
1474         This was causing keyboard opened dropdowns to lose focus.
1475         [Fixes bug #82803]
1476
1477 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1478
1479         * Control.cs: If Rectangle.Empty is passed to Invalidate, use
1480         ClientRectangle instead.  [Fixes bug #82838]
1481
1482 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1483
1484         * SplitContainer.cs: We can't reset Visible on every layout because
1485         someone may have set Visible = false explicitly on a SplitterPanel.
1486         Make sure when we switch orientation the SplitterDistance does not
1487         change.  Fixes two failing tests.
1488
1489 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1490
1491         * TreeView.cs: Use MeasureTextInternal instead of MeasureText in
1492         TextRenderer, since the latter is only available in 2.0.
1493
1494 2007-09-13  Ivan N. Zlatev <contact@i-nz.net>
1495
1496         * Cursor.cs: Fix Cursor.Current to apply Cursor.Default.
1497         * SplitContainer.cs: Implement FixedPanel layouting.
1498
1499 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1500
1501         * WebBrowserBase.cs: setup shutdown routine
1502
1503 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1504
1505         * Application.cs: Let keyboard events that are targetted 
1506                 to non-mwf windows hosted inside mwf (as in, webbrowser),
1507                 propagate properly. Fixes keyboard handling on the webbrowser.
1508
1509 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1510
1511         * ListView.cs: When handling MouseUp event and we are 
1512         highligting a node with the mouse right button, don't trigger
1513         Before/AfterSelecting event, since we are not actually selecting
1514         the node.
1515
1516 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1517
1518         * TreeView.cs: When editing a node, modify the edit text box
1519         depending on the text length (as you are typing), like MS does.
1520
1521 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1522
1523         * ToolStrip.cs: Fixup preferred size calculations for vertical toolbars. 
1524         Override GetPreferredSizeCore to perform calculations.  Remove custom
1525         autosize logic.  [Fixes bug #82739]
1526
1527 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1528
1529         * TextBoxBase.cs: Modified should default to false.
1530
1531 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1532
1533         * Control.cs: Update the anchoring distances even when layout is supspended.
1534         Patch provided by George fixes bug #82805.
1535
1536 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1537
1538         * Control.cs: Provide a setter for ExplicitHeight.
1539         * TextBoxBase.cs: Now that we have the implementation for explicit heights,
1540         remove the hacks in here for requested_height.
1541         [Fixes bug #82749]
1542
1543 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1544
1545         * ScrollBar.cs: Fix an issue reported on the lists where setting a scrollbar's
1546         Maximum to lower that its current Value caused an ArgumentException by setting
1547         the Value to the new Maximum.
1548
1549 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1550
1551         * ThemeWin32Classic.cs: Math is hard!  Fix some math so that the TrackBar
1552         handle moves to the closest tick when it is being dragged.
1553         [Fixes bug #82751]
1554
1555 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1556
1557         * ToolStripManager.cs: When we have added MDI buttons onto a MenuStrip, we
1558         can't let them count as real items when calculating where to merge in the
1559         user's items.  [Fixed bug #82786]
1560
1561 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1562
1563         * ToolStripMenuItem.cs: Add a parent type check so we don't crash on people
1564         who want to add a menu item directly onto a toolstrip.
1565         [Fixes bug #82775, part II]
1566
1567 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1568
1569         * StatusStrip.cs: Synchronize SetDisplayedItems with the ToolStrip version.
1570         * ToolStrip.cs: If a ToolStripItem set to not visible is added to a ToolStrip,
1571         don't set it to available.
1572         * ToolStripItem.cs: When Visible is changed, tell the owner to perform a layout.
1573         [Fixes bug #82727, part II]
1574
1575 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1576
1577         * StatusStrip.cs: Change item placement to None if not visible.
1578         * ToolStripItem.cs: Invalidate when InternalVisible changes.
1579         These should have been committed to fix 82723, but I missed them.
1580
1581 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1582
1583         * ToolStrip.cs: Make sure ItemClicked is raised before the ToolStripItem's
1584         Click, and that it is only called once.
1585         * ToolStripMenuItem.cs: Call OnClick even when there are dropdown items.
1586         * ToolStripDropDownItem.cs: Override HandleItemClick so dropdowns stay
1587         dropped down.
1588         [Fixes bug #82775]
1589
1590 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1591
1592         * ColumnHeaderSample.cs: Use 5 pixels as extra height instead of 8
1593         to match .Net.
1594         * ThemeWin32Classic.cs: For the columns text, use 5 pixels as left padding
1595         instead of 8, just like above. Partially fixes #82734.
1596
1597 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1598
1599         Patch by Ernesto Carrea <equistango at gmail.com>. Partially 
1600         fixes #82734.
1601
1602         * ListView.cs: Remove extra space between rows in Details view (match
1603         .Net). 
1604         * ThemeWin32Classic.cs: Header text should use ListView.Font, not
1605         the DefaultFont.
1606
1607 2007-09-08  Gert Driesen  <drieseng@users.sourceforge.net>
1608
1609         * Application.cs: Modified ProductVersion to return value of
1610         AssemblyInformationVersion if available, and fallback to assembly
1611         version. Fixes bug #82746. Code formatting.
1612         * BindingSource.cs: Remove NIE from Dispose, and mark it MonoTODO
1613         instead.
1614
1615 2007-09-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1616
1617         * Control.cs: When updating ZOrder for a child control,
1618         take into account the implicit ones (we need it in our controls
1619         using them). Fixes #82642.
1620
1621 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1622
1623         * ToolStripItem.cs: Add support for animated images.
1624         [Fixes bug #82726]
1625
1626 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1627
1628         * ToolStrip.cs: Make sure we aren't drawing anything that isn't 
1629         visible.  [Fixes bug #82727]
1630
1631 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1632
1633         * ToolStripItem.cs: If AutoSize changes the size of our item, invalidate
1634         so we repaint using the new size.  [Fixes bug #82723]
1635
1636 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1637
1638         * TreeView.cs: If ShowLines is true, we should ignore the FullRowSelect
1639         option.  [Fixes bug #81779]
1640
1641 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1642
1643         * TreeView.cs: Override HandleClick because the StandardClick style is
1644         set to false.  According to MSDN (and testing), the click events should
1645         only be raised when the click occurs on a TreeNode.  [Fixes bug #81739]
1646
1647 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1648
1649         * ToolStripTextBox.cs: Invalidate our textbox when it loses focus, so
1650         the border will disappear.  Fixes reopened #82653.
1651
1652 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1653
1654         * Control.cs: If the control is autosize, and its preferred size changes
1655         when it lays out its children, tell its parent so it can be re-layed out.
1656         Fixing some of the fallout from r85433.
1657
1658 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1659
1660         * ThemeWin32Classic.cs: Fix a NRE caused by r85427 because RadioButton
1661         and CheckBox share some code.
1662
1663 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1664
1665         * TrackBar.cs: Only call OnScroll if we actually changed the Value of
1666         the TrackBar, not every mouse move.  [Fixed bug #82718]
1667
1668 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1669
1670         * ThemeWin32Classic.cs: Allow a CheckBox to be rendered like a Button
1671         under 2.0 rendering.  [Fixes bug #82657]
1672
1673 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1674
1675         * TreeView.cs: If we found a TreeNode to display a context menu, but
1676         it doesn't have one to show, let the TreeView display its menu
1677         instead.  [Fixes bug #82680]
1678
1679 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1680
1681         * ToolStripTextBox.cs: TextBox no longer call OnPaint, we need to use
1682         OnPaintInternal instead.  Give the internal TextBox a Border property
1683         so it can draw itself more correctly.  [Fixes bug #82653]
1684
1685 2007-09-06  Zoltan Varga  <vargaz@gmail.com>
1686
1687         * HtmlHistory.cs HtmlWindow.cs HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs WindowsFormsSynchronizationContext.cs: Stubs for missing 2.0 classes.
1688
1689 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1690
1691         * ComboBox.cs: Adjust combobox button state to reflect current state when
1692         back to enabled = true. Fixes first issue of #82654.
1693
1694 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1695
1696         * Control.cs: Fix last patch regression, prevent forms to update zorder when
1697         setting visible property.
1698
1699 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1700
1701         * Control.cs: Update zorder after control creation in SetVisibleCore, it 
1702         fix zorder for controls initially created as non visible. Fixes #82667.
1703
1704 2007-09-04  Everaldo Canuto  <everaldo@simios.org>
1705
1706         * ThemeWin32Classic.cs: Adjust checkbox light color to ControlLightLight to
1707         mimic win32 look. Fixes #82656.
1708
1709 2007-09-01  Zoltan Varga  <vargaz@gmail.com>
1710
1711         * FileDialogCustomPlace.cs FileDialogCustomPlacesCollection.cs: 
1712         Stubs for new net 3.5 classes.
1713
1714 2007-08-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1715
1716         * ListViewItem.cs: In ListViewItemCollection operations calculate
1717         Layout for owner as well as invalidate it. Fixes part of #82642.
1718
1719 2007-08-31  Jonathan Pobst  <monkey@jpobst.com>
1720
1721         * ToolStripItem.cs: Take Parent/Owner's Enabled state in to account
1722         when returning Enabled.  [Fixes bug #82651]
1723
1724 2007-08-30  Everaldo Canuto  <everaldo@simios.org>
1725
1726         * ToolBar.cs: Fix button size for non flat toolbars. Fixes #82368.
1727
1728 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1729
1730         * ListView.cs: Put item padding info in a single place
1731         (Theme.ListViewItemPaddingWidth) to have working AutoResize on
1732         columns again.
1733         * ThemeWin32Classic.cs:
1734         * Theme.cs: Likewise.
1735
1736 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1737
1738         * ListView.cs: When a ListViewSubItem instance is invalidated,
1739         invoke Invalidate on parent ListViewItem, not parent ListView.
1740         Fixes #81570.
1741
1742 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1743
1744         * ListView.cs, ListViewItem.cs: corcompare stuffs.
1745
1746 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1747
1748         * BindingMemberInfo.cs: Implement == and != operators.
1749
1750 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1751
1752         * HtmlElementEventArgs.cs: Implement properties.
1753
1754 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1755
1756         * HtmlElementErrorEventArgs.cs, HtmlElementErrorEventHandler.cs: Added.
1757
1758 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1759
1760         * TabControl.cs: I was looking into the MonoTODO on TabPageCollection.
1761         Add (string,string,string) to implement the imagekey.  It turns out, we
1762         use the requested imagekey whereas .Net does not.  So I broke ours to match
1763         theirs.  :(
1764
1765 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1766
1767         * Form.cs, UserControl.cs: Override ValidateChildren, AutoValidate.
1768
1769 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1770
1771         * ContainerControl.cs: Implement ValidateChildren and new Validate overload.
1772
1773 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
1774
1775         * FolderBrowserDialog.cs: Set Tag of newly created node, and keep it
1776         up-to-date. Fixes bug #82618.
1777
1778 2007-08-29  Everaldo Canuto  <everaldo@simios.org>
1779
1780         * TextBoxBase.cs: Call CalculateDocument after changes Lines property to
1781         reflect document changes. Fixes #82367.
1782
1783 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1784
1785         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
1786         as well as add new ones. This should make work the BackgroundImage
1787         property for ListView again.
1788
1789 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1790
1791         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
1792         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
1793         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
1794
1795 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1796
1797         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
1798         IsKeyLocked.
1799
1800 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1801
1802         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
1803         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
1804
1805 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1806
1807         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
1808         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
1809
1810 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1811
1812         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
1813
1814 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1815
1816         * GridEntry.cs: Implement GetService.
1817
1818 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
1819
1820         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
1821         for label editting, make sure we focus back on the TreeView.
1822         [Fixes bug #82590]
1823
1824 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1825
1826         * ListView.cs: Add some 2.0 overrides.
1827
1828 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1829
1830         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
1831         because getter dont returns right value before handle creation. Thanks 
1832         to George. Fixes #82569.  
1833
1834 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1835
1836         * Theme.cs: Revert last patch, it causes error under win32. 
1837
1838 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1839
1840         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
1841         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
1842         logical Desktop rather than the physical file system location. Fixes #82603. 
1843
1844 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
1845
1846         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
1847         for the patch. Fixes #82568.
1848
1849 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1850
1851         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
1852         methods.
1853
1854 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1855
1856         * ListViewInsertionMark.cs: New stubbed class.
1857
1858 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1859
1860         * FolderBrowserDialog.cs: When adding folder, immediately create the
1861         directory with temporary name and rename the directory when editing
1862         finishes. This matches MS. Ensure the node for the new folder is 
1863         selected and LabelEdit is disabled, when editing is either finished
1864         or cancelled.
1865
1866 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1867
1868         * TreeView.cs: When editing label of node, ensure node is visible.
1869
1870 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
1871
1872         * PropertyGridView.cs: Set the value only if it has changed.
1873
1874 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1875
1876         * ListView.cs: Some more code refactoring to add support sorting
1877         with groups (now for Details view). Remove unused code also.
1878
1879 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1880
1881         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
1882         Not a big fan of reacting immediately to a field in an EventArg, but that's
1883         the way it's done.  (This is part of the previous commit that got left out.)
1884
1885 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1886
1887         * FolderBrowserDialog.cs: Removed need for separate description field.
1888         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
1889         has focus when dialog box is displayed again, regardless of what
1890         button was pressed the previous time. Set RootFolder and SelectedPath
1891         each time dialog box is displayed. This ensures the treeview is
1892         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
1893         when it does not have focus. Added support for more special folders.
1894
1895 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1896
1897         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
1898         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
1899         it resets the edit_args.
1900         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
1901         [Fixes bug #82577]
1902
1903 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
1904
1905         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
1906         button to match MS. Provide more meaningful exception message for
1907         invalid RootFolder value. Use zero-length string when SelectedPath
1908         is set to null. Allow non-rooted paths in SelectedPath, but ignore
1909         them in FolderBrowserTreeView. Allow folders to be created in
1910         RootFolder. Fixes bug #82576.
1911
1912 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1913
1914         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
1915         since we need to take into account the group headers and the margin
1916         between them.
1917         * ListViewGroup.cs: Add a rows field to store the number of rows per
1918         group.
1919
1920 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1921
1922         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
1923           Anyways, let's just follow the lead.
1924
1925 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1926
1927         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
1928         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
1929         controls in GetPreferredSizeCore.
1930         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
1931         [Fixes bug #82488]
1932
1933 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1934
1935         * PrintDialog.cs: Need to instantiate the form variable here too.
1936
1937 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1938
1939         * ListView.cs: Do some reorganization to support sorting in groups,
1940         by doing the layout sequentially in ListView.Items. Also add support
1941         for the Default Group, which should be available for items with no
1942         group assigned.
1943         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
1944         for storing layout info also.
1945         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
1946         collection, as well as providing internal members to do a traversal
1947         including the default group (needed when doing layout/drawing).
1948         * ThemeWin32Classic.cs: When drawing group headers use internal
1949         ListViewGroupCollection members to take into account the default
1950         group.
1951
1952 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
1953
1954         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
1955
1956 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1957
1958         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
1959         been created.  If handle is created, we want arror keys.  If we are editing
1960         a node, we want things like enter, esc, home, end, page up, page down.
1961         Allows Esc to work for FolderBrowserDialog.
1962
1963 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1964
1965         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
1966         they close when ESC is pressed.  Thanks Andy!
1967
1968 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1969
1970         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
1971         This way we can tell if this is a CommonDialog provided with mono, or one
1972         that is being implemented outside by a developer.  If it is an external one,
1973         the developer is responsible for showing their own form.  We were showing
1974         our blank form after the developer showed his.
1975         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
1976         PageSetupDialog.cs: Instantiate form variable in our constructor.
1977         [Fixes bug #82531]
1978
1979 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1980
1981         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
1982         and always return true.  [Fixes bug #81616]
1983
1984 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1985
1986         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
1987         TextBox.  [Fixes bug #82549]
1988
1989 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
1990
1991         * FileDialog.cs: When Save/Open is clicked and no filename is selected
1992         or entered then do not close the dialog. Fixes bug #82539. Removed
1993         CWLs.
1994
1995 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
1996
1997         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
1998         code to this method. It is calling every time filter changes. This method
1999         will help to fix the bug #80887.
2000
2001 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
2002
2003         * CheckBox.cs: Implement AutoSize calculation.
2004
2005 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
2006
2007         * CheckBox.cs: Use new 2.0 rendering for 2.0.
2008         * Theme.cs: Method declarations for 2.0 rendering path.
2009         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
2010
2011 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2012
2013         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
2014
2015 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2016
2017         * ListViewGroupCollection.cs: Implement AddRange the right way, to
2018         only call Redraw on the parent one time.
2019
2020 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2021
2022         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
2023           GetClipboardContent.
2024         * DataGridViewCell.cs: Implemented GetClipboardContent,
2025           GetEditedFormattedValue, GetFormattedValue.
2026         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
2027
2028 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
2029
2030         * TableLayoutStyleCollection.cs: corcompare fix.
2031
2032 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2033
2034         * DataObject.cs: Implemented retrieval of convertible / not convertible
2035           objects.
2036
2037 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
2038
2039         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
2040         ourselves.  This ensures the entire old bounds are repainted, in case our new
2041         size is smaller.  [Fixes bug #82518]
2042
2043 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
2044
2045         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
2046         flag to make fast handle of mouse events, without this the mouse move is
2047         handled in some manner, whether it is a mouse move or not. Fixes #81588.
2048
2049 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2050
2051         * ListView.cs: When doing layout calculations don't use a ref
2052         param to keep the current item; instead use its Index value (this 
2053         is specially important when doing the layout with Groups
2054         and Items being sparse). Also don't take into account items added to
2055         the Group but not yet added to the main ListView.Items collection.
2056
2057 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2058
2059         * ListViewGroupCollection.cs: Forgot to mimic an issue
2060         in the indexer (don't assign the ListView owner for new values).
2061
2062 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2063
2064         * ListViewGroupCollection.cs: Make the string indexer use
2065         the int based indexer to re-use code, instead of duplicate the code.
2066         Also Redraw as needed and take into account null values.
2067
2068 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
2069
2070         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
2071         [Fixes bug #82481]
2072
2073 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
2074
2075         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
2076         when other buttons are clicked or navigated to.
2077
2078 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2079
2080         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
2081           it's XplatUIX11 that attaches them.
2082
2083 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2084
2085         * DataGridView.cs: If a column has been added, recreate the editing row.
2086           Fixes #82226.
2087
2088 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2089
2090         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
2091           of the tag to draw. Makes disappearing text show up again.
2092
2093 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2094
2095         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
2096           Contents. Fixes #82487.
2097
2098 2007-08-19  Andreia Gaita  <avidigal@novell.com>
2099
2100         * Added HtmlElement.cs, HtmlElementCollection.cs, 
2101           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
2102           
2103 2007-08-19  Andreia Gaita  <avidigal@novell.com>
2104
2105         * BindingSource.cs: Implement this, dispose and getenumerator.
2106         * DataGridViewRowCollection.cs: Move the InvalidOperationException
2107         out of AddInternal, throw it only on public Add calls. The 
2108         UsingWebBrowser sample was blowing up with this when setting the
2109         DataSource after adding DataBindings, so it's likely that .net
2110         only throws this exception when Add is called directly. 
2111         
2112         * ToolStripControlHost.cs: Return the hosted control's text
2113         property, and not the ToolStripItem one (it would always return
2114         the initial value).
2115         
2116         * HtmlDocument.cs: Implement GetElementById and All
2117         * WebBrowser.cs: Remove exception on set_DocumentStream.        
2118
2119 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2120
2121         * Form.cs: Fix the max and min value for opacity (0~1).
2122
2123 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2124
2125         [Fixes #80118]
2126         * DataGridTableStyle.cs: Default header font is now null, on getter it 
2127         returns datagrid font when is null. On setter permits null.
2128
2129         * DataGrid.cs:
2130         - When ResetHeaderFont set header font to null.
2131         - On EndInit set grid_style.DataGrid.
2132
2133 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2134
2135         * TabControl.cs: Fix regression in default padding x.
2136
2137 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2138
2139         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
2140
2141 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2142
2143         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
2144         not 2. Fixes #82229.
2145
2146 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2147
2148         * TabControl.cs: Fix tab size when image height is less than text height.
2149         Partially fixes #81837.
2150
2151 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2152
2153         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
2154         "alt + tab". It works only for Win32, for X11 theres no way to remove window
2155         from taskbar and keep it on "alt_tab". Fixes #81722.
2156
2157 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2158
2159         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
2160         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
2161         Fixes #80877 and #79418.
2162
2163 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2164
2165         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
2166         between position and one of the screen borders. Fixes #82349.
2167
2168 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2169
2170         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
2171         the MessageBox in the taskbar. Fixes #82457.
2172
2173 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2174
2175         * MessageBox.cs: Fix form size when icon is set and text height is bigger
2176         than icon. Fixes #82468.
2177
2178 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2179
2180         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
2181         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
2182           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
2183           Refactored HandleNCCalcSize somewhat to avoid code duplication.
2184         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
2185           FormBorderStyle to decide if we're calculating a new size from the
2186           client size or not. CreateParams: Don't fake tool windows, only the X11
2187           backend manages toolwindows manually.
2188
2189 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2190
2191         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
2192         ObjectDisposedException.
2193
2194 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2195
2196         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
2197         in OnLoad should not have any effect.  [Fixes bug #82470]
2198
2199 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2200
2201         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
2202         paint for controls that create their own ToolTipWindow instead of
2203         going through ToolTip.
2204
2205 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2206
2207         * ToolTip.cs: Make Hide internal instead of public to match MS API.
2208
2209 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2210
2211         * ListViewGroupCollection.cs: Use generic List instead of an
2212         ArrayList, since this collection is 2.0 only.
2213
2214 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
2215
2216         * ToolTip.cs (Hide): Made public to make the build work (should
2217         this not be public?).
2218
2219 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2220
2221         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
2222         ToolTipWindow.
2223         * ToolTip.cs: Add an internal Visible property to facilitate transition.
2224
2225 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2226
2227         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
2228         PopupEventHandler.cs: Make these internal for 1.1.
2229         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
2230         use ToolTipWindow internals.
2231         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
2232         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
2233
2234 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2235
2236         * X11Dnd.cs: Add a null check.
2237
2238 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2239
2240         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
2241           nothing else succeeds. Fixes #82453.
2242
2243 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2244
2245         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
2246           rectangle if we're painting to another window than the one the paint
2247           message was generated on. Simplify the code somewhat, which makes
2248           PaintEventEnd also simpler.
2249
2250 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2251
2252         * Control.cs: When changing parent of a form, let the form decide whether
2253           XplatUI.SetParent should be called or not.
2254         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
2255           recreating the handle. If the new parent's handle isn't created, don't
2256           recreate our handle, just destroy it. CreateParams: Check if the
2257           parent's handle is created before fetching it.
2258
2259 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2260
2261         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
2262           Update calls to PaintEventStart/End to take a Message argument.
2263         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
2264           take a Message argument.
2265         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
2266           Message argument, and handle the case where we don't paint to the window
2267           for which the paint message was generated.
2268
2269 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2270
2271         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
2272           Marshal.GetLastWin32Error. Plug nasty memory leak in
2273           PaintEventStart/End, we were creating a DC we weren't releasing.
2274
2275 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2276
2277         * ListView.cs: Add Groups support in Details view. Also have a small
2278         method to do the layout of the group header. Don't use a separate
2279         method to do the groups calculation in Icons view, since our methods
2280         are now a little simpler.
2281         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
2282         `Bounds'.
2283         * ThemeWin32Classic.cs: Likewise.
2284
2285 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
2286
2287         * Application.cs: Add FilterMessage method and rework our message loop
2288         logic to use it.
2289
2290 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
2291
2292         * Application.cs: Add some methods and stub a few methods that are
2293         pretty much never used.
2294
2295 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
2296
2297         * TreeNode.cs: Add some serialization methods.
2298
2299 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2300
2301         * ListView.cs: In ListViewItemCollection have a 
2302         'is_main_collection' field to not modify ListViewItem.ListView
2303         when using it as ListViewGroup.Items (and not ListView.Items)
2304         and also don't modify selection state (.Net behaviour). 
2305         Instead, set group for items contained in a ListViewGroup.Items collection.
2306         * ListViewItem.cs: Simplify some code in Group setter.
2307         * ListViewGroup.cs: use the new .ctor to pass the current instance
2308         to the ItemsCollection.
2309         * ListViewGroup.cs: Set the ListView property for ListViewGroup
2310         instances when adding/removing. Also make Remove use RemoveAt, which
2311         should perform better.
2312
2313 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2314
2315         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
2316         that crept into the 1.1 profile.
2317
2318 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2319
2320         * ToolBarButton.cs: Implement ImageKey.
2321
2322 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2323
2324         * ToolBar.cs: Implement ScaleControl/ScaleCore.
2325
2326 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2327
2328         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
2329           created, it might have gotten destroyed since we last checked. Fixes
2330           #82405.
2331
2332 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
2333
2334         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
2335         tooltip will hide when mouse is moved off the control.
2336         [Fixes bug #82407]
2337
2338 2007-08-11 Andreia Gaita <avidigal@novell.com>
2339
2340         * WebBrowserBase.cs, WebBrowser.cs: add implementation
2341         using Mono.Mozilla for loading and navigating webcontrol
2342         with xulrunner.
2343         The initial implementation was done on 
2344         /trunk/mozembed/tests/browser , and copied here.
2345
2346 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
2347
2348         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
2349         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
2350
2351 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2352
2353         * DataGridView.cs: Add support for an editing row. Fixes #82226.
2354           RowTemplateFull: throw an exception if a column doesn't have a template.
2355         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
2356           add the row just before it.
2357         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
2358           selected.
2359         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
2360           DataGridView field to be able to reach the grid's editing row.
2361
2362 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2363
2364         * ToolTip.cs: If the control's handle hasn't been created when it has a
2365         tooltip set on it, don't check to see if we need to show the tooltip.  This
2366         check was causing the control's handle to be created.
2367         [Fixes bug #82399]
2368
2369 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2370
2371         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
2372                                         1.1             2.0
2373         Handle Not Created      -1              0
2374         Handle Created          0               0
2375         [Fixes bug #82371]
2376
2377 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2378
2379         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
2380         [Fixes bug #82348]
2381
2382 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2383
2384         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
2385         * ToolTip.cs: Implement some properties and owner draw.
2386
2387 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2388
2389         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
2390           show them again, since setting visibility causes a paint, causing an
2391           endless loop (instead use a temporary and set it all when it's known if
2392           they should be shown or not). Fixes #79265.
2393
2394 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2395
2396         * DataGridView.cs: Only do a full column/row selection if a header was
2397           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
2398           isn't pressed, deselect everything before selecting something.
2399
2400 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2401
2402         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
2403           behaviour according to bug #81075 - they are returned in the order they
2404           are selected. Fix HitTest to check if the point is within any of the
2405           headers. Allow for row/column selection when in ColumnHeader or
2406           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
2407           the row and column to call when their selected state changes, and
2408           updated selected_[rows|columns] whenever SetSelected* is called.
2409         * DataGridViewBand.cs: Initialize isRow correctly. Call
2410           SetSelected[Row|Column]CoreInternal when the selected state changes, and
2411           add a SelectedInternal to avoid StackOverflows.
2412         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
2413           ReadOnly no matter what.
2414         * DataGridViewSelectedColumnCollection.cs,
2415           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
2416           the items in reverse order (just as MS does...)
2417
2418 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2419
2420         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
2421         itself, not part of a mnemonic.  [Fixes bug #82378]
2422
2423 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2424
2425         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
2426         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
2427           the DGV, the column, the row, or the cell itself is readonly.
2428
2429 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2430
2431         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
2432         OSVersion.Platform.
2433         * FileDialog.cs: Same.
2434         * TextRendered.cs: Same.
2435         * FolderBrowserDialog.cs: Same.
2436         * TextBoxBase.cs: Same.
2437         * Application.cs: Same.
2438         * Cursors.cs: Same.
2439         * ThemeClearLooks.cs: Same.
2440
2441 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2442
2443         * XplatUI.cs: Added RunningOnUnix property to be used by controls
2444         instead of duplicating these checks everywhere.
2445         * FileDialog.cs: Use case-insensitive comparison for populating the
2446         DirComboBox when not running on unix. Fixes bug #82385.
2447         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
2448         "Look in".
2449
2450 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2451
2452         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
2453           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
2454           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
2455           cell and column selection with ctrl and shift pressed. Call the correct
2456           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
2457           the corresponding virtual method (PaintBackground to paint background,
2458           etc).
2459         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
2460           either the column, row or the cell itself is selected.
2461         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
2462           OnRowsAdded.
2463         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
2464           here. When the row is selected, don't select all cells. Each cell now
2465           queries the row to see if the row is selected.
2466
2467 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2468
2469         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
2470           SelectionMode.
2471
2472 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2473
2474         * ListView.cs: In ListViewItemsCollection check that owner is
2475         not null before trying to access it (this happens quite often
2476         using Groups). Also don't duplicate calls by calling CollectionChanged
2477         method.
2478
2479 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2480
2481         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
2482         when we are dismissed to clear keyboard mnemonics.
2483         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
2484         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
2485         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
2486         was activated by keyboard or the OS tells us to always draw them.
2487         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
2488         [Fixes bugs #82376, #82377]
2489
2490 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2491
2492         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
2493         shot at having it because Alt was pressed.
2494         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
2495         the first real menu item.
2496         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
2497         a mnemonic if Text is null.
2498         [Fixes bug #82374]
2499
2500 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2501
2502         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
2503         search do check whether the item is already contained in the
2504         collection or not; instead check if the owner of the item is the same
2505         as ours. Also, remove a redundant check in the same method. 
2506
2507 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2508
2509         * Control.cs: Allow the clip region to be set back to null.
2510         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
2511         [Fixes button still showing up in bug #82370 when Show Through is turned off]
2512
2513 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2514
2515         * GridEntry.cs: Add a null check.
2516         * PropertyGrid.cs: When checking for existing grid entries, ignore category
2517           entries. Fixes #82297.
2518
2519 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2520
2521         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
2522         for 2.0.
2523
2524 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2525
2526         * ListBox.cs: Implement ScaleControl.
2527
2528 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2529
2530         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
2531           have a menu strip.
2532         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
2533           parent has a menu strip. Fixes #81689.
2534
2535 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2536
2537         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
2538           moments, so apply some fuzzy logic to determine if the mouse is still
2539           inside a control or not. Fixes #82288 (for the third time).
2540
2541 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2542
2543         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
2544           Don't create the child if it has been disposed already (may happen if
2545           the user closes the form the Load event).
2546
2547 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2548
2549         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
2550           #82288.
2551
2552 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2553
2554         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
2555           might call us after we've been destroyed, in which case our own private
2556           parent field is null. Fixes #82326.
2557
2558 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2559
2560         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
2561         check for setting the dropdown's owner.
2562
2563 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2564
2565         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
2566         before removing system menu items.
2567
2568 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
2569
2570         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
2571         folding.
2572         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
2573         folding.
2574         * ToolStrip.cs: Add a null check to mnemonics.
2575         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
2576         no ConnectedArea.
2577         [Fixes most of bug #81689]
2578
2579 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2580
2581         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
2582
2583 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2584
2585         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
2586
2587 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2588
2589         * DataGridViewCell.cs: EditType: returns
2590           DataGridViewTextBoxEditingControl always.
2591
2592 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
2593
2594         * TextRenderer.cs: Remove the LineLimit string format flag from the
2595         DrawString fallback method so that things like buttons that aren't
2596         tall enough to draw a full line will still draw part of the text.
2597         [Fixes part of bug #82272]
2598
2599 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2600
2601         * DataGridView.cs: Implemented AutoResizeColumn(s).
2602         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
2603           according to the Alignment.
2604         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
2605           Implement alignment and padding when painting.
2606         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
2607           exists.
2608         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
2609           way.
2610         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
2611           a column is added.
2612
2613 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2614
2615         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
2616         which is internal.
2617
2618 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2619
2620         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
2621         hide GetPreferredSize from public API.
2622         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
2623         * ToolStripItem.cs: Stub out drag and drop methods and events.
2624         * ToolStripManager.cs: Stub out Save/LoadSettings.
2625         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
2626         * ToolStripPanel.cs: Fix corcompare error.
2627         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
2628         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
2629         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
2630
2631 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2632
2633         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
2634         bounds height instead of PreferredHeight.  Puts things back the way 
2635         they were for height while still fixing the width.  Fixes broken unit
2636         tests.
2637
2638 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2639
2640         * Binding.cs: Implement 2.0 constructors and add a null check.
2641
2642 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2643
2644         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
2645           and fix row index (off by one).
2646
2647 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2648
2649         * PropertyGridView.cs: Remove debug output.
2650
2651 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2652
2653         * Control.cs: We need to reset the is_created flags when the handle is
2654           destroyed. Fixes #82187.
2655         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
2656           client coordinates if the window doesn't have a parent.
2657           Win32GetParent returns the parent or the owner, and for top-level
2658           windows with no parent (but with an owner) we were calculating the
2659           location from the location of the owner.
2660         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
2661           form has been disposed.
2662         * MdiClient.cs: Add a null-check.
2663
2664 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2665
2666         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
2667         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
2668         so we can provide an implementation that returns the current width
2669         and preferred height.  Allows anchor = right to work with TextBox 2.0.
2670         [Fixes bug #82233]
2671
2672 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2673
2674         * ListView.cs: Add support for navigating items in Groups mode, by
2675         creating a big matrix containing all rows and cols of all groups. When
2676         are in other mode than Details, pressing Up should have a similar
2677         behaviour as that one of Down (moving to the next available column if
2678         current one doesn't have an item in the requested row). Also, don't
2679         proceed to use groups if ShowGroups is false.
2680         * ListViewGroup.cs: Add an internal int field to store the starting
2681         row of the group (used by the big matrix used for navigating the
2682         ListView).
2683         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
2684         false.
2685
2686 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2687
2688         * ToolStripDropDown.cs: When we do Show, start with the 
2689         DefaultDropDownDirection, but if our popup menu is going to off-screen,
2690         modify the direction to keep it on screen.  [Fixes bug #82210]
2691
2692 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
2693
2694         * FileDialog.cs: Accept any FilterIndex value, and store it
2695         unmodified. When FilterIndex is less than 1, or greater than number
2696         of filters, then default to first filter. Only add filter extension to
2697         file if user did not specifiy an extension. When type of dialog is
2698         OpenFileDialog and DefaultExt is set, then only use filter extension
2699         if: CheckFileExists is true and no file wih the default extension
2700         exists, or CheckFileExists is false, and user specified file does not
2701         exist. When CheckFileExists is true, then add first extension of 
2702         selected filter that matches existing file. Perform checks for
2703         existing file, overwrite and create after extension has been added to
2704         file name. When CheckFileExists is true and type is SaveFileDialog,
2705         then only consider first filter extension if DefaultExt is set.
2706         When CheckFileExists is true, then ignore DefaultExt if file with that
2707         extension does not exist. Also perform check for existing file when
2708         type is SaveFileDialog. Changed some field to constants.
2709
2710 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2711
2712         * ListView.cs: Take into account the region used by header
2713         control when doing the vertical scroll (this way we invalidate
2714         the precise area, and don't get any dirty one).
2715
2716 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
2717
2718         * FileDialog.cs: Check for valid filterIndex on button open/save. 
2719         Fixes #82184.
2720
2721 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2722
2723         * ListView.cs: Update some layout calculations in details view
2724         and clean the code in a pair of assignations.
2725
2726 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2727
2728         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
2729         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
2730         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
2731         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
2732
2733 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2734
2735         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
2736         performance of thread-safe Graphic methods.  (Thanks rolf!)
2737
2738 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2739
2740         * ListView.cs: When doing the layout calculations, don't calculate
2741         scroll bars before handle is created. This is unnecessary and also
2742         calculating them before handle creation item causes a number of random
2743         bugs (which begin to appear after Chris' big patch for handle creation
2744         fixes). 
2745
2746 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2747
2748         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
2749         for things that don't have a Graphics object.  Currently, things just use
2750         the static Hwnd.bmp_g which is not thread safe.
2751
2752 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2753
2754         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
2755           dialog. Fixes #82187.
2756
2757 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2758
2759         * DataGridViewElement.cs: Initialize state.
2760         * DataGridView.cs: Forward a few Mouse events to cells. Add
2761           GetRowInternal and GetCellInternal that doesn't unshare rows.
2762           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
2763           don't use the index, but look it up. Add
2764           DataGridViewControlCollection.RemoveInternal to remove controls
2765           that Remove won't remove (scrollbars, edit control).
2766         * DataGridViewColumn.cs: Initialize State correctly.
2767         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
2768           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
2769           implementing this.
2770         * DataGridViewRowCollection.cs: Implemented shared rows.
2771         * DataGridViewRow.cs: Throw exceptions as MS do.
2772         * DataGridViewCell.cs: A few properties are implemented by a
2773           Get<Property> method, so move implementation there and remove the
2774           NIEX in the method. Add a bunch of OnXInternal that DataGridView
2775           calls when necessary.
2776         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
2777           complicates matters.
2778         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
2779           unshare any rows.
2780
2781 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2782
2783         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
2784         the children controls.  Instead, we will just set up the proper docking for the
2785         children controls so we don't have to worry about it.  [Fixes bug #82188]
2786
2787 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2788
2789         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
2790         canceling and correct Before/AfterLabelEdit properties as layed out in bug
2791         81847.  [Fixes bug #81847]
2792
2793 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2794
2795         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
2796         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
2797         an explicit size based on the design-time size of the text.  Since our fonts
2798         may not match this explicit size, we tend to cut off the ends of people's labels.
2799
2800 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
2801
2802         * Menu.cs: Add some missing methods to MenuItemCollection.
2803
2804 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2805
2806         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
2807         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
2808         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
2809         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
2810         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
2811         * DataGridViewElement.cs: State defaults to Visible.
2812         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
2813         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
2814
2815 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2816
2817         * Control.cs: Minor 1.1 corcompare fix.
2818
2819 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2820
2821         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
2822         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
2823
2824 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2825
2826         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
2827           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
2828           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
2829           DataGridViewSelectedColumnCollection.cs,
2830           DataGridViewSelectedRowCollection.cs: Corcompare work.
2831
2832 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2833
2834         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
2835         it is autoset by VS2005 designer and the effect is barely noticeable.
2836
2837 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2838
2839         * TreeView.cs: Implement HitTest.
2840
2841 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2842
2843         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
2844           manually adding and removing the control from the Controls
2845           collecftion.
2846         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
2847           EditingControlInternal property that tracks the editing control.
2848           Always keeping the scrollbars in the Controls collection, as MS
2849           testing confirms is the right behaviour.
2850
2851 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2852
2853         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
2854           according to MSDN and new test.
2855
2856 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2857
2858         * TreeNode.cs: Implement ToolTipText.
2859         * TreeView.cs: Implement tooltips, NodeMouse* events.
2860
2861 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2862
2863         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
2864
2865 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2866
2867         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
2868         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
2869
2870 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
2871
2872         * Control.cs, Form.cs, ContainerControl.cs,
2873         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
2874         for misc properties.
2875
2876 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2877
2878         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
2879         * TreeView.cs: Implement StateImageList.
2880
2881 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2882
2883         * Form.cs: Don't check if the current form is the active form before
2884           activating it. Fixes #81904.
2885
2886 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2887
2888         * Form.cs: Don't check if the current form is the active form before
2889           activating it. Fixes #81904.
2890
2891 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2892
2893         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
2894
2895 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2896
2897         * Form.cs: Don't try to position the form after loading if the form was
2898           disposed. Fixes #81969.
2899
2900 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2901
2902         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
2903           properties. Had to change ToolBar into ToolStrip, which required a
2904           few #ifs.
2905
2906 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2907
2908         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
2909           resized, fixes part of #79829 (vertical lines in toolbar).
2910           PropertyGrid: Refactored Populate* to something that's easier to
2911           follow at least for me, as well as splitting it up into several new
2912           methods, required to update only subitems when something has
2913           changed by a popup editor or listbox. Don't use events to check
2914           when any values are changed, since the events are unreliable (we're
2915           changing the objects the events are registered with, and if the
2916           event handling requires the objects to be immutable (objects stored
2917           in hashtables for instance), the events will never be raised).
2918         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
2919           everytime we change a value, since events are unreliable.
2920           DropDownButtonClicked: For the same reason don't compare objects to
2921           check if it has changed or not, it would require all objects to
2922           derive Equals. Fix dialog location on windows, MS is doing weird
2923           things when creating parented forms.
2924         * GridEntry.cs: Add a SelectedObject setter.
2925
2926 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
2927
2928         * TreeNode.cs: Add some corcompare attributes.
2929         * TreeNodeCollection.cs: Implement 2.0 stuffs.
2930         * TreeView.cs: Implement some 2.0 stuffs.
2931
2932 2007-07-18  Andreia Gaita  <avidigal@novell.com>
2933
2934         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
2935         for moma.
2936
2937 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
2938
2939         * ListBox.cs: Implement custom tab offsets.
2940
2941 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2942
2943         * ToolStripContentPanel.cs: Support System renderer.
2944         * ToolStripControlHost.cs: Set RightToLeft to default to No.
2945
2946 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2947
2948         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
2949
2950 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2951
2952         * CheckBox.cs: Chain TextAlign to base implementation instead of
2953         maintaining another one.
2954
2955 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2956
2957         * ButtonBase.cs: Fix an incorrect string constant.
2958
2959 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2960
2961         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
2962         of creating one for measuring strings.
2963
2964 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2965
2966         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
2967         Implement MaxItemSize.
2968
2969 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
2970
2971         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
2972         for DeviceContext.  Instead, use the static one available in Hwnd.
2973         Informal tests show this saves about 500k on formtest.exe.
2974
2975 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
2976
2977         * ContainerControl.cs: Implement 2.0 AutoScaling.
2978
2979 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2980
2981         * ComboBox.cs: Work around bug #82120 (bug in mcs).
2982
2983 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
2984
2985         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
2986         Darken the focus color.
2987
2988 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
2989
2990         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
2991         for the checkbox.
2992         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
2993         X, Y instead of a rect for drawing text.
2994         - For ControlPaint.DrawCheckBox, center the check a little better when the
2995         checkbox is odd width.  When drawing a flat checkbox, use a white background
2996         when state != inactive.
2997         [Fixes bugs #82097, 82100]
2998
2999 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
3000
3001         * ListControl.cs: When changing CurrencyManager, disconnect event
3002         handlers from previous one. Fixes bug #81771. Code formatting.
3003
3004 2007-07-15  Andreia Gaita <avidigal@novell.com>
3005
3006         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
3007         full preview invalidation from layout invalidation, and only invalidate
3008         the layout when setting zoom or other properties. Invalidation should
3009         always be done even when resetting properties with the same values as
3010         what is there. Fixes #81744 and #79830.
3011
3012 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3013
3014         * ListView.cs: Implement initial support for Groups. Split some of the
3015         LayoutIcons code to render a partial list of the items (needed by
3016         items contained in ListViewGroup instances). Let the
3017         ListViewItemsCollection.ListView property be modifiable (needed when
3018         using Groups, too).
3019         * ListViewGroup.cs: Use a Bounds property rather than a Location
3020         one. Also invalidate the bounds when they get changed.
3021         * ThemeWin32Classic.cs: When drawing items, also draw the group header
3022         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
3023         method as well.
3024
3025 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3026
3027         * ListView.cs: When space gets pressed and CheckBoxes is true, 
3028         don't invoke the Begin and EndUpdate methods. We are generating 
3029         a redraw of the entire control without need to do so.
3030
3031 2007-07-13  William Holmes <billholmes54@gmail.com> 
3032
3033         * Control.cs: Changing logic in FindFlatForward and 
3034           FindFlatBackward to handle multiple Controls with 
3035           the same TabIndex.  
3036           This fixes bug 81687.
3037
3038 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
3039
3040         * OSFeature.cs: Enable IsPresent.
3041
3042 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3043
3044         * Control.cs: Don't do anything in WmShowWindow if the control has been
3045           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
3046           control is created, put on a form, the control is disposed (the
3047           form is never shown), and then we get a MapNotify, triggering a
3048           WM_SHOWWINDOW.
3049         * Form.cs: Exclude the current form when sending Deactivate to all
3050           MdiChildren.
3051         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
3052           there was a race condition because assigning the handle raises
3053           events, we can get more messages, therefore trying to assign the
3054           handle again, which would fail if any of those event handlers
3055           closed/disposed the control.
3056
3057 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3058
3059         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
3060
3061 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
3062
3063         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
3064         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
3065
3066 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3067
3068         * DateTimePicker.cs: If there's no part format specifier, return an
3069           empty string.
3070
3071 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
3072
3073         * FlatButtonAppearance.cs: Throw NotSupportedException for a
3074         Transparent BorderColor.
3075
3076 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3077
3078         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
3079           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
3080           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
3081           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
3082           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
3083           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
3084           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
3085           Remove warnings.
3086         * X11Structs.cs: Remove warnings, add ToString implementations.
3087
3088 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3089
3090         * XplatUIX11.cs: Translate min/max size according to the actual min/max
3091           size, and not the current size. Fixes #81798.
3092
3093 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3094
3095         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
3096           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
3097           to the control yet).
3098
3099 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3100
3101         * PropertyGridTextBox.cs: Add a method that sends any forwarded
3102           mousedowns to the contained textbox.
3103         * X11Structs.cs: More ToString implementation.
3104         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
3105           #81791.
3106
3107 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3108
3109         * PropertyGridView.cs: Add a null-check, fixes a few tests.
3110
3111 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
3112
3113         * TableLayoutPanelCellPosition.cs: TypeConverter.
3114
3115 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3116
3117         [ Fixes #79761]
3118         
3119         * PropertyGridTextBox.cs: Propagate any color changes to all contained
3120           controls.
3121         * PropertyGridView.cs: A few color fixes.
3122
3123 2007-07-10  Jackson Harper  <jackson@ximian.com>
3124
3125         * TextControl.cs: Remove some old unused text formatting stuff.
3126
3127 2007-07-10  Jackson Harper  <jackson@ximian.com>
3128
3129         * TreeView.cs: Update full row select invalidation to match the
3130         newer DrawSelection... method.
3131         - Make sure to invalidate the entire width when selecting a new
3132         node, if we have full row selection enabled.
3133
3134 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3135
3136         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
3137           display of properties again.
3138
3139 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
3140
3141         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
3142         to existing collections.
3143
3144 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3145
3146         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
3147         that changed between 1.1 and 2.0.
3148
3149 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3150
3151         * PowerStatus.cs: Added.  This is just a data class, it is filled
3152         in by SystemInformation.
3153
3154 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3155
3156         * Message.cs: Add op_Equality and op_Inequality.
3157
3158 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3159
3160         * MenuStrip.cs: Finish corcompare work.
3161
3162 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3163
3164         * LinkArea.cs: Add op_Equality and op_Inequality.
3165
3166 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3167
3168         * Application.cs: Add MessageLoopCallback delegate.
3169
3170 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3171
3172         * ListBox.cs: First set of 2.0 stuffs.
3173
3174 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3175
3176         * Control.cs: Make an internal Height property we can override
3177         without messing up the public API.
3178         * ListBox.cs: Override HeightInternal to always return the size
3179         the user set.  [Fixes bug #80466]
3180
3181 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
3182
3183         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
3184         paint cell borders if we haven't calculated where they go yet.
3185         [Fixes bugs #82040 and #82041]
3186
3187 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3188
3189         * ListView.cs: In Details view, set the location of item_control
3190         in the (0,0) position (and the header_control is thus on the
3191         item_control). This way the Bounds of the Items are relative to the
3192         ListView control (before this, they had a Bounds value without the
3193         header_control offset, which wasn't matching .Net). Fixes #82004.
3194
3195 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3196
3197         * ListControl.cs: When DataSource is set to null, pass an empty
3198         array of object to SetItemsCore. This is done to clean the items
3199         in the ListContol children. Fixes #81788.
3200
3201 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3202
3203         * ListControl.cs: Add 2.0 stuffs.
3204
3205 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3206
3207         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
3208         Refresh is overkill for just about every repaint request.
3209
3210 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3211
3212         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
3213         so remove my custom Get method and fix the property getter.
3214
3215 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3216
3217         * Label.cs: DefaultMargin for 2.0.
3218
3219 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3220
3221         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
3222         reported issue where other controls with mnemonics would steal strokes
3223         from a selected ComboBox.
3224
3225 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3226
3227         * ScrollOrientation.cs: Make internal for 1.1.
3228         * ScrollEventArgs.cs: Add 2.0 stuffs.
3229
3230 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
3231
3232         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
3233         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
3234         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
3235
3236 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3237
3238         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
3239
3240 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3241
3242         * ListView.cs: Implement the so-incredibly broken 2.0 
3243         VirtualItemsSelectionRangeChanged event.
3244
3245 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3246
3247         * ListView.cs: When enter is pressed and selection is non empty,
3248         an OnItemActivate event must be fired.
3249
3250 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3251
3252         * ListView.cs: Store the FocusedItem information as an
3253         int instead of a ListViewItem (needed by VirtualMode).
3254         Update the calls to SetFocusedItem to pass an index instead of
3255         an item.
3256         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
3257         the Focused state from the owner ListView. 
3258
3259 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3260
3261         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
3262         property. Also, invalidate previous focused item in the mentioned
3263         property (match .Net).
3264
3265 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3266
3267         * ListView.cs: Implement 2.0 FocusedItem property setter.
3268
3269 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3270
3271         * ListView.cs: Implement 2.0 TopItem property setter.
3272
3273 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
3274
3275         * StatusStrip.cs: The default renderer is System.
3276         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
3277         if the user specifies it.
3278         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
3279         if we are ManagerRenderMode.
3280         * ToolStripMenuItem.cs: Calculate our text color better.
3281         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
3282         from Professional to the base class based off working with the System renderer.
3283         * ToolStripSystemRenderer.cs: Added.
3284
3285 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3286
3287         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
3288
3289 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
3290
3291         * ToolTip.cs: Implement 2.0 Tag property.
3292
3293 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3294
3295         * ListView.cs: Implement 2.0 HitTest methods.
3296
3297 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3298
3299         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
3300         item is under the pointer or not (sugar). Also remove the TODO
3301         regarding to the cursor changes in OneClick activation.
3302         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
3303         the subitems use the parent's HotFont if UseItemStyleForSubItems is
3304         true; otherwise don't show the underline style.
3305
3306 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3307
3308         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
3309         the code to retrieve the item at position only one time. Also
3310         change cursor when Activation is ItemActivation.OneClick as well
3311         as invalidate the item if HotTracking is true (to show/hide the
3312         underline style). Add an internal HotItemIndex property to retrieve
3313         the current hot item's index.
3314         * ListViewItem.cs: Add an internal HotFont property to cache the
3315         font used when HotTracking is true and the pointer moves within the
3316         item's borders.
3317         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
3318         HotFont depending on the hot state of the item.
3319
3320 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3321
3322         * ListView.cs: Implement 2.0 HotTracking property.
3323
3324 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3325
3326         * ToolStripControlHost.cs: If our hosted control never got created,
3327         don't try to dispose it.  [Fixes bug #81909]
3328
3329 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3330
3331         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
3332
3333 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3334
3335         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
3336
3337 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3338
3339         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
3340         Details view.
3341         * DrawListViewColumnHeaderEventArgs.cs:
3342         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
3343         using the DrawText () methods.
3344
3345 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
3346
3347         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
3348         background which got erased in my changes yesterday.
3349
3350 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3351
3352         * ListViewItem.cs: Actually set bounds for subitems in Details view
3353         (2.0 feature).
3354         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
3355         can invoke from the owner draw routines if we need it. Also, add
3356         support for Owner draw in Details view.
3357
3358 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3359
3360         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
3361         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
3362         ShowImageMargin setting, properly align text in a ToolStripLabel
3363         hosted on a ToolStripDropDown.
3364
3365 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3366
3367         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
3368         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
3369
3370 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3371
3372         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
3373
3374 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3375
3376         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
3377         location to match ToolStripMenuItems.
3378
3379 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3380
3381         * DrawListViewColumnHeaderEventArgs.cs:
3382         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
3383         column headers in ListView. 
3384
3385 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3386
3387         * UserControl.cs: Implement AutoSize.
3388
3389 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3390
3391         * DrawListViewItemEventArgs.cs:
3392         * ListView.cs:
3393         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
3394         ListView.
3395
3396 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3397
3398         * ToolStripDropDownItemAccessibleObject.cs: Added.
3399         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
3400         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
3401         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
3402         ToolStripTextBox.cs: corcompare work.
3403
3404 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3405
3406         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
3407         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
3408         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
3409                 corcompare.
3410
3411 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3412
3413         * OSFeature.cs: Add IsPresent.
3414         * PrintPreviewControl.cs: Add RightToLeft.
3415         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
3416         * SplitterPanel.cs: Add AutoSizeMode.
3417
3418 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3419
3420         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
3421         * MdiClient.cs: Add 2.0 ScaleControl.
3422         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
3423         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
3424
3425 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3426
3427         * Form.cs: Implement some scaling methods, stub some RTL methods,
3428         corcompare work.
3429
3430 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3431
3432         * Control.cs: corcompare work.
3433         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
3434
3435 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3436
3437         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
3438         ControlPaint 2.0 stuffs.
3439
3440 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3441
3442         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
3443
3444 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3445
3446         * UpDownBase.cs: Add 2.0 stuffs.
3447
3448 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3449
3450         * NumericUpDown.cs: Add 2.0 stuffs.
3451
3452 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3453
3454         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
3455
3456 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3457
3458         * ErrorProvider.cs: Implement 2.0 stuffs.
3459
3460 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3461
3462         * DomainUpDown.cs: Implement 2.0 stuffs.
3463
3464 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3465
3466         * CheckedListBox.cs: Fix RefreshItems signature.
3467
3468 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3469
3470         * PictureBox.cs: Implement 2.0 stuffs.
3471
3472 2007-06-12  Andreia Gaita  <avidigal@novell.com>
3473         
3474         * TabControl.cs: Check if there are tabpages before checking
3475         the selected index - fix #81802 (font changes raise a ResizeTabs
3476         call on controls.add, which blew up nicely with no tabpages)
3477
3478 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3479
3480         * ListView.cs:
3481         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
3482
3483 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3484
3485         * ListView.cs:
3486         * ListViewItem.cs: In VirtualMode the selection information
3487         resides in the ListView, rather than in the Items. Also, throw
3488         InvalidOperationExceptions when VirtualMode is being used and
3489         CheckedItemCollection is accessed.
3490
3491 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3492
3493         * ComboBox.cs: Add ScaleControl.
3494
3495 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3496
3497         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
3498
3499 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3500
3501         * GroupBox.cs: Add 2.0 stuffs.
3502
3503 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3504
3505         * Panel.cs: Add autosize properties/event.
3506
3507 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3508
3509         * Control.cs:
3510         - When we remove a control, remove it from the collection before performing the layout.
3511         - Setup an internal property for explicit_bounds.
3512         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
3513         - Perform a layout when we set a new AutoSizeMode.
3514
3515 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3516
3517         * ScrollableControl.cs: Add 2.0 stuffs.
3518
3519 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3520
3521         * ScrollBar.cs: Add 2.0 stuffs.
3522
3523 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3524
3525         * Splitter.cs: Add 2.0 stuffs.
3526
3527 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3528
3529         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
3530         to have BindingContext simply use base implementation.
3531
3532 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3533
3534         * ColumnHeader.cs: corcompare fix.
3535
3536 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3537
3538         * Button.cs: corcompare fixes.
3539         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
3540
3541 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3542
3543         * Button.cs: Override GetPreferredSizeCore.
3544         * ButtonBase.cs: PerformLayout after changing properties that can affect
3545         AutoSize.  Simplify some mouse/keyboard code.
3546         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
3547         * MouseEventArgs.cs: Make Location internal for 1.1.
3548         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
3549         * Theme.cs: Add CalculateButtonAutoSize.
3550         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
3551
3552 2007-06-05  Miguel de Icaza  <miguel@novell.com>
3553
3554         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
3555
3556 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3557
3558         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
3559         since we can get different item instances every time we retrieve it.
3560
3561 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3562
3563         * ListView.cs: Work around for #81602, since an unkown an pretty
3564         infrequent condition appears only in some systems (old linux boxes, it
3565         seems).
3566
3567 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3568
3569         * Button.cs: Completely reformat and a little refactor to bring
3570         this closer to Mono circa 2007.
3571
3572 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3573
3574         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
3575         to be ButtonBase.Invalidate.
3576
3577 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3578
3579         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
3580
3581 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3582
3583         * ButtonBase.cs: Completely reformat and a little refactor to bring
3584         this closer to Mono circa 2007.
3585
3586 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
3587
3588         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
3589         values for autosize. Fixes #80137.
3590
3591 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3592
3593         * Control.cs: Don't perform layout when AutoSize changes.
3594         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
3595         directly when autosizing, use SetBounds with BoundsSpecified.None.
3596         Fixes unit tests my last commit broke.
3597
3598 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3599
3600         * Control.cs: Perform layout when AutoSize changes.
3601         * Form.cs: Implement AutoSizing.
3602
3603 2007-06-01  Chris Toshok  <toshok@ximian.com>
3604
3605         * DataGrid.cs: remove the XXX'ed check at the top of
3606         ProcessGridKey.  fixes #80464.
3607
3608 2007-06-01  Chris Toshok  <toshok@ximian.com>
3609
3610         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
3611         adding idempotent (add/remove in Edit()), and also make sure we
3612         don't add it until after we set the text, so it's not tripped in
3613         Edit().  Fixes unit test regression.
3614
3615 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3616
3617         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
3618         change is user explicit, not when the layout engine moves stuff.  Fixes
3619         anchoring to bottom and right.  [Fixes bug #81790]
3620
3621 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3622
3623         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
3624
3625 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3626
3627         * ContainerControl.cs: 
3628         Fire enter event for common ancestor if it is not a ContainerControl.
3629         Send focus to the active_control and not the 'value', the active 
3630         control might have been changed in one of the events fired.     
3631         Definitely fixes #80159.
3632
3633 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3634
3635         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
3636
3637 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3638
3639         * PropertyGrid.cs: Anchor the help description to the bottom of the
3640           help panel and refactor SelectGridItem into a
3641           SelectGridItemInternal that can be set to null (and update it to
3642           clear the help texts when it is set to null). Set root item to null
3643           when there's no SelectedObject. Fixes #80438.
3644         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
3645           when we're recalculating after a resize (only).
3646
3647 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3648
3649         * ListView.cs: Implement 2.0 RedrawItems method.
3650
3651 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3652
3653         * ListControl.cs: Disconnect PositionChanged and ItemChanged
3654         handlers from previous data manager when DataSource is set to
3655         null. Fixes #81771.
3656
3657 2007-05-31  Jackson Harper  <jackson@ximian.com>
3658
3659         * TextBoxBase.cs: These seem to be the correct values.
3660
3661 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
3662
3663         * FileDialog.cs: When close dialog with ok set filterindex using combobox
3664         value. Fixes #81784.
3665
3666 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
3667
3668         * Control.cs: Implement 2.0 scaling methods.
3669
3670 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3671
3672         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
3673           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
3674           corcompare issues.
3675
3676 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3677
3678         * ProgressBar.cs: Implemented missing 2.0 members.
3679
3680 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3681
3682         * Control.cs: Corcompare issues.
3683         * MessageBox.cs: Implemented missing 2.0 functions.
3684
3685 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3686
3687         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
3688           Implemented more 2.0 members.
3689
3690 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3691
3692         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
3693           null (strange, but it seems to happen when running unit tests).
3694
3695 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3696
3697         * ContainerControl.cs: Set active_control even earlier, before 
3698         firing any events, and undo it if validation returns false.
3699
3700 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3701
3702         * ContainerControl.cs: Raise Validation and Enter/Leave events
3703         even if there is no Form and set active_control earlier, just
3704         before firing Enter events (toshok's patches). Fixes #80647.
3705
3706 2007-05-30  Jackson Harper  <jackson@ximian.com>
3707
3708         * TextControl.cs: Redid the pageup/pagedown a little to simplify
3709         things and fix bug #81311.
3710
3711 2007-05-30  Jackson Harper  <jackson@ximian.com>
3712
3713         * X11Dnd.cs: Now that we have our own event loop, we need to
3714         cancel when we get a mouseup but it won't be accepted.
3715
3716 2007-05-30  Chris Toshok  <toshok@ximian.com>
3717
3718         * DataGrid.cs (set_CurrentCell): guard against negative
3719         column/row.
3720
3721         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
3722         array index syntax instead of looping over the property names.
3723
3724         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
3725         and set IsInEditOrNavigateMode to false there.
3726
3727 2007-05-30  Jackson Harper  <jackson@ximian.com>
3728
3729         * TreeView.cs: Make sure we don't get a bad visible order when
3730         setting to the top node.  Fixes some misc crashing in
3731         ControlInspector.
3732
3733 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3734
3735         * UserControl.cs: Add 2.0 AutoSizeMode
3736
3737 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3738
3739         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
3740
3741 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3742
3743         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
3744         lines. Fixes #80285. 
3745
3746 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3747
3748         * DataGridColumnStyle.cs: Add char trimming column header text format. 
3749
3750 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3751
3752         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
3753         Fixes #80147.
3754
3755 2007-05-29  Jackson Harper  <jackson@ximian.com>
3756
3757         * TreeNode.cs: Fix off by one on calculating whether or not a node
3758         is visible.
3759
3760 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
3761
3762         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
3763         * ScrollableControl.cs: Force an UpdateDistances when we move the
3764         scrollbars.
3765         [Fixes bug #80605]
3766
3767 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3768
3769         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
3770         update the page setup screen.
3771
3772 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3773
3774         * PageSetupDialog.cs: Fix landscape mode.
3775
3776 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3777
3778         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
3779         IconSizeHorizontalSpacing.
3780
3781 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3782
3783         * ListView.cs: The declaration of prev_tooltip_item should be inside
3784         a NET_2_0 conditional (avoid a warning).
3785
3786 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3787
3788         * PageSetupDialog.cs: Implement PrintPreview control to display
3789         the preview thumbnail. Change unit conversion to use 
3790         PrinterUnitConvert methods.
3791         
3792         Note: there is a huge bug in ms.net where the default margins are 
3793         interpreted as centimeters (?), when in fact they are set in inches. When 
3794         loading the page setup dialog initially (ms.net), the default margins 
3795         are set to 1 inch, and the dialog shows them with value 10, when in fact 
3796         it should be 25 (properly converted). Our dialog doesn't have this bug.
3797         
3798         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
3799         RectangleF.
3800         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
3801
3802 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3803
3804         * ListView.cs:
3805         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
3806         items.
3807
3808 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3809
3810         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
3811         an IntPtr on csc (it builds fine on mcs, could it be a compiler
3812         bug?), convert the ptr to Int32 first.
3813
3814 2007-05-28  Jackson Harper  <jackson@ximian.com>
3815
3816         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
3817         recieved, we will exit the dnd tracking loop.
3818
3819 2007-05-28  Jackson Harper  <jackson@ximian.com>
3820
3821         * X11Dnd.cs: Keep tracking until the xdnd finished event is
3822         recieved. TODO: I should probably stick a timer on the dropped
3823         event, and finish the drag if the XDND Finished event never shows
3824         (because some apps don't seem to send it).
3825
3826 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
3827
3828         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
3829         #81733.
3830
3831 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3832
3833         * MonthCalendar.cs: Only mark the keypresses we actually handle as
3834           handled.
3835
3836 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3837
3838         * MonthCalendar.cs: Set the size after initializing all the relevant
3839           variables. Fixes #81742.
3840
3841 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3842
3843         * KeyEventArgs.cs: Fix typo.
3844
3845 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
3846
3847         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
3848         to match MS. Fixed MinDate to only accept value less than or equal
3849         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
3850         Removed TODO's that are now verified by unit tests.
3851
3852 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
3853
3854         * TreeNodeCollection.cs: Minor corrections to exceptions to match
3855         MS.
3856
3857 2007-05-25  Jackson Harper  <jackson@ximian.com>
3858
3859         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
3860         it's own message loop.
3861         * XplatUIX11.cs: Remove some of the dnd hooks
3862
3863 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
3864
3865         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
3866         instead of MinimizedWindowSize.
3867
3868 2007-05-25  Jackson Harper  <jackson@ximian.com>
3869
3870         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
3871
3872 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3873
3874         * KeyEventArgs.cs: Added SuppressKeyPress.
3875         * Control.cs: Added support for SuppressKeyPress.
3876
3877 2007-05-24  Andreia Gaita  <avidigal@novell.com>
3878
3879         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
3880         problems with PieChart. suppress_validation should not be a counter,
3881         if there are several BeginInit calls, the first EndInit will 
3882         activate validation. Fix exceptions thrown by set_Value.
3883         * UpDownBase.cs: ValidateText only if it's the user editing it.
3884
3885 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3886
3887         * ListControl.cs: FilterItemOnProperty should return the filtered
3888         item proeprty even if DataSource is null. The same applies for
3889         GetItemText. Fixes #80427.
3890
3891 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3892
3893         * Control.cs: If a control doesn't have a parent when it's Dock is
3894         set, but it has children, it needs to do a layout.  Fixes some nested
3895         controls issues.  [Fixes bug #81199]
3896
3897 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3898
3899         * ComboBox.cs: If there are few items in the drop down list, make it
3900           the exact size the items need, no bigger. Fixes #81612.
3901
3902 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3903
3904         * Application.cs: When we have captured the keyboard for a menu,
3905         check for mouse down events in case we need to close the menu.
3906         * Control.cs, Form.cs: Remove mouse down checks for menus.
3907
3908 2007-05-24  Jackson Harper  <jackson@ximian.com>
3909
3910         * TextControl.cs: Handle tabs in non multiline mode a little
3911         differently.
3912
3913 2007-05-24  Jackson Harper  <jackson@ximian.com>
3914
3915         * TextControl.cs: We need to manually break apart tabbed text and
3916         move the tabs, since the system.drawing tabbing mechanism relies
3917         on tab stops.
3918         * TextBoxBase.cs: Move the caret properly when the user enters a
3919         tab.
3920
3921 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3922
3923         * ContainerControl.cs: Don't check CanSelect before calling
3924         ProcessMnemonic.
3925         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
3926         release a KeyboardActive on click if it's not ours.
3927
3928 2007-05-23  Andreia Gaita  <avidigal@novell.com>
3929
3930         * ColumnHeader.cs: Add TypeConverter
3931
3932 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3933
3934         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
3935
3936 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3937
3938         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
3939
3940 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3941
3942         * LinkLabel.cs: Implement public Padding property.
3943
3944 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3945
3946         * LinkLabel.cs: Implement public FlatStyle.
3947
3948 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
3949
3950         * Control.cs: Apply patch from George to call parent.PerformLayout
3951         when Visible is changed.  [Fixes bugs #81118, 81718]
3952
3953 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3954
3955         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
3956
3957 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3958
3959         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
3960
3961 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3962
3963         * ContextMenu.cs: Implement Collapse.
3964
3965 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
3966
3967         * ToolBarButton.cs: Implement Name.
3968
3969 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
3970
3971         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
3972         use current_item, it prevents some NRE. Fixes #81675.  
3973
3974 2007-05-22  Andreia Gaita  <avidigal@novell.com>
3975
3976         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
3977         without updating the text.
3978
3979 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
3980
3981         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
3982         without calling DeleteObject.  [Should fix bug #81709]
3983
3984 2007-05-22  Jackson Harper  <jackson@ximian.com>
3985
3986         * RichTextBox.cs: Set the line endings correctly, when flushing
3987         RTF text.
3988
3989 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
3990
3991         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
3992          {Width=0,Height=0}.
3993
3994 2007-05-22  Jackson Harper  <jackson@ximian.com>
3995
3996         * TreeView.cs: Setting top with a null node should set to the very
3997         top.
3998
3999 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4000
4001         * Form.cs: ShowDialog: destroy the handle when message loop is
4002           finished, matches MS behaviour. Refactor parts of WmClose into
4003           RaiseCloseEvents, that only raises events if they haven't already
4004           been raised. Fixes #81688 and #81521.
4005         * Application.cs: Don't call close on the form when exiting a modal
4006           loop, it will raise all the (Form)Closed/Closing events again if
4007           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
4008           which doesn'r raise any events it they have been raised before.
4009
4010 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
4011
4012         * Control.cs: Add OnPrint.
4013         * ToolStrip.cs: Add GetChildAtPoint.
4014         * ToolStripContainer.cs: Add OnRightToLeftChanged.
4015         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
4016
4017 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
4018
4019         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
4020
4021 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4022
4023         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
4024           isn't visible anymore. Fixes #81651.
4025
4026 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4027
4028         * Control.cs: WmShowWindow: Update children's z-order after setting
4029           their parent. SetParent may show the window, thereby corrupting
4030           z-order, since the window will be shown on top.
4031         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
4032           multiple (and redundant) WM_SHOWWINDOW messages.
4033         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
4034           event has already been raised.
4035         * Form.cs: Change is_changing_visible_state to a counter, since
4036           SetVisibleCore can be called recursively. CreateHandle: when
4037           creating mdi children, send (De)Activated events.
4038         * MdiClient.cs: Update use of is_changing_visible_state.
4039         * Application.cs: OnThreadException: Surround exception handling with
4040           try/finally to ensure we always reset the error-handling state
4041           before leaving.
4042
4043 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4044
4045         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
4046           (#81704).
4047
4048 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4049
4050         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
4051         SmallIcon views, now that we have a standarized horizontal spacing.
4052
4053         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
4054         4, just like the other views (Match .Net).
4055
4056 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
4057
4058         * Control.cs: Delay calculating anchor distances until we actually layout.
4059         Always query the WM for the actual size and location it put us at instead of
4060         only when we send negative values.
4061         [Fixes bugs #81694, 81695]
4062
4063 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4064
4065         * Application.cs: Avoid a possible stack overflow when trying to exit
4066           the application.
4067
4068 2007-05-19  Marek Safar  <marek.safar@gmail.com>
4069
4070         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
4071         enum value.
4072
4073 2007-05-19  Andreia Gaita  <avidigal@novell.com>
4074
4075         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
4076         * NumericUpDownAcceleration.cs, 
4077           NumericUpDownAccelerationCollection.cs: Added 2.0
4078           implementation.
4079
4080 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
4081
4082         * RichTextBox.cs: Recalculate the document after the ScrollBars
4083         property is changed. Fixes bug #81681.
4084
4085 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
4086
4087         * DataObject.cs: Implement 2.0 methods.
4088
4089 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4090
4091         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
4092         in the center of the checkbox, not in the left-top corner. 
4093         Fixes #80037.
4094
4095 2007-05-18  Jackson Harper  <jackson@ximian.com>
4096
4097         * RichTextBox.cs: Recalculate the document after the scrollbars
4098         property is changed.
4099         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
4100         81486.
4101
4102 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4103
4104         * CreateParams.cs: Make HasWindowManager marginally faster.
4105         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
4106           into Hwnd so that other drivers can use it as well.
4107         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
4108           the default location from Hwnd. Fixes MDI client windows always
4109           showing up at (0,0) in Windows (Win32 won't set the default
4110           location since the window styles aren't correct).
4111
4112 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
4113
4114         * TreeView.cs: Modified DoubleBuffered to just use the base
4115         implementation.
4116
4117 2007-05-18  Jackson Harper  <jackson@ximian.com>
4118
4119         * TreeView.cs: Set the top node to the last child node when
4120         expanding all
4121         - When we get focus, if there is no selected node, use the top
4122         node.
4123
4124 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
4125
4126         * KeysConverter.cs: Add CanConvertTo.
4127         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
4128         * LinkConverter.cs: Added.
4129
4130 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4131
4132         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
4133         it prevents error when file dont have write access. Fixes #81669 and #81667.  
4134
4135 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4136
4137         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
4138         button text. Fixes #79640.  
4139
4140 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4141
4142         * Control.cs: According to MSDN controls created in the designer theres 
4143         keyboard accelerators visible by default. So included check for design
4144         in ShowKeyboardCuesInternal.  
4145
4146 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4147
4148         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
4149         text. Fixes #81621.  
4150
4151 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4152
4153         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
4154         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
4155
4156 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4157
4158         * Control.cs: Finish implementation of UI State using WmChangeUIState
4159         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
4160         in some controls to check for show_keyboard_cues to draw accell keys "_".  
4161
4162 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4163
4164         * ListBox.cs: When calculating the horizontal scrollbar
4165         in single column mode, don't use values less than 0 for
4166         Maximum. Fixes #81474.
4167
4168 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4169
4170         * ListBox.cs: Throw the some missing exceptions in
4171         ListBox.ObjectCollection methods.
4172
4173 2007-05-17  Jackson Harper  <jackson@ximian.com>
4174
4175         * TextBoxBase.cs: Recalculate the document when the word wrap
4176         value has changed. This fixes 81488.
4177
4178 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4179
4180         * Clipboard.cs: Implement missing GetText overload.
4181
4182 2007-05-17  Chris Toshok  <toshok@ximian.com>
4183
4184         * Control.cs (CheckDataBindings): remove the binding_context arg
4185         to binding.Check.
4186
4187         * CurrencyManager.cs (OnItemChanged): fix this now that
4188         BindingManagerBase is fixed. also remove the comment telling where
4189         the fix should go.  We set transfering_data to true/false around
4190         the call to PushData to keep UpdateIsBinding from being called.
4191         (ListChangedHandler): remove the extra OnMetaDataChanged call for
4192         PropertyDescriptorAdded in the 1.1 case.  The extra call is
4193         actually generated by System.Data generating 2 metadata changed
4194         events of its own per column add.  The fix should go there.  Add a
4195         comment to that affect in our test's Assert.Ignore.
4196
4197         * BindingManagerBase.cs: Rework PullData and PushData slightly.
4198         we keep a boolean flag (transfering_data) that keeps us from
4199         calling UpdateIsBinding multiple times if we re-enter either of
4200         them.
4201
4202         * ControlBindingsCollection.cs (AddCore): remove the
4203         binding_context arg to binding.Check.
4204
4205         * Binding.cs (IsBinding): don't check if we're binding here, just
4206         return our cached value.  we update it in UpdateIsBinding.
4207         (Check): don't take the binding_context arg, we'll just use our
4208         control's.  Also, for some reason MS doesn't use the data member
4209         field when getting the bindingmanager for this binding.  it just
4210         uses the datasource.  Make this method callable multiple times,
4211         and only do the is_null_desc stuff if manager.Position != -1 (so
4212         we don't get an exception accessing manager.Current).
4213         (UpdateIsBinding): move the code from IsBinding here.
4214         (PositionChangedHandler): call Check here to we can initialize
4215         things that require a non- -1 position.
4216
4217 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4218
4219         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
4220         control.
4221
4222 2007-05-17  Andreia Gaita  <avidigal@novell.com>
4223
4224         * TabControl.cs: Add 2.0 methods and events, including
4225         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
4226         * TabPage.cs: Add 2.0 methods
4227
4228 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4229
4230         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
4231         keyboard_cues is properly handled by message method.  
4232
4233 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4234
4235         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
4236
4237 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4238
4239         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
4240
4241 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
4242
4243         * Control.cs: 
4244         - WmUpdateUIState added to handle state changes, it make call to
4245         OnChangeUICues event.
4246         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
4247         SystemInformation.
4248
4249 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
4250
4251         * ImageKeyConverter.cs: Added.
4252         * TreeViewImageKeyConverter.cs: Added.
4253
4254 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4255         
4256         * ToolTips.cs: Update Text if SetToolTip is called for a control
4257         already showing the tooltip, as well as restarting its timer; show
4258         tooltip if we are inside the control bounds by the time of calling
4259         SetToolTip. Inside ShowTooltip remove the check to not show the 
4260         tooltip again for the active control (it is allowed by .Net to 
4261         show the tooltip on the same control multiple times).
4262
4263 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4264
4265         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
4266
4267 2007-05-16  Andreia Gaita <avidigal@novell.com> 
4268
4269         * ContainerControl.cs: only process tab key if there are no 
4270         modifier keys present, otherwise the control does the 
4271         tab processing, if it needs to. Fixes #81622
4272         * TabControl.cs: Fixes calculation for which tab to select on
4273         shift+ctrl+tab.
4274
4275 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4276
4277         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
4278
4279 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
4280
4281         * Control.cs: Make IsInputCharInternal to allow controls to
4282         override it and still match MS API.
4283         * TextBoxBase.cs: Override IsInputCharInternal and always
4284         return true.
4285         [Fixes bug #81616]
4286
4287 2007-05-15  Jackson Harper  <jackson@ximian.com>
4288
4289         * TextBox.cs: Disable some of the menu options when using a
4290         readonly textbox.
4291
4292 2007-05-15  Jackson Harper  <jackson@ximian.com>
4293
4294         * TextBox.cs:
4295         * TextBoxBase.cs:
4296         * RichTextBox.cs: Some new 2.0 methods
4297
4298 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
4299
4300         * FileDialog.cs: On 1.0 profile, do not support multidotted 
4301         extensions.
4302
4303 2007-05-14  Jackson Harper  <jackson@ximian.com>
4304
4305         * TextBoxBase.cs: Implement some of the new 2.0 methods.
4306         * RichTextBox.cs: We need to override these methods on 2.0.
4307         * MaskedTextBox.cs: These are implemented now
4308         * TextControl.cs: This was off by one.
4309
4310 2007-05-14  Jackson Harper  <jackson@ximian.com>
4311
4312         * TextControl.cs: Because the line endings are including in the
4313         text, we don't need to add them in anymore.
4314
4315 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4316
4317         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
4318         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
4319
4320 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4321
4322         * ToolBar.cs: Adjust size to default size when button theres no text and
4323         image, it fixes remaining issues from #81524.
4324
4325 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4326
4327         * ToolBar.cs: 
4328         - When not flat call redraw to recalculate sizes on creare handle to match
4329         win32 behavior.
4330         - Revert 77220 because it causes some regressions in toobar
4331         button.
4332
4333 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4334
4335         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
4336           now actually enters a usable state.
4337
4338 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4339
4340         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
4341         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
4342         3 buttons.
4343
4344 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4345
4346         * ToolBar.cs: Save default_size on create handle to use later for buttons
4347         without text, needed to mimic win32 behavior.
4348
4349 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4350
4351         * ToolBar.cs: Fix button layour to best fit width or height according to
4352         vertical or not. Fixes #81524.
4353
4354 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4355
4356         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
4357         toolbar size info because different styles theres different sizes.
4358         Fixes #81522.
4359
4360 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4361
4362         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
4363         if we are using checkboxes, checked is true, and we have less
4364         than two images in StateImageList; for the 1.1 in the same scenario
4365         draw the first image if we have at least one image in StateImageList.
4366         Fixes part of #81191.
4367
4368 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4369
4370         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
4371         the owner's Items collection on merge.
4372
4373 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4374
4375         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
4376         * ToolStripItemCollection.cs: Lots of fixes to when events get called
4377         and parent/owner gets changed based on gert's unit tests.
4378
4379 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4380
4381         * MaskedTextBox.cs: Started implementing parts of it.
4382
4383 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4384
4385         * ListView.cs: When clicking the checkbox on the items
4386         take into account the double clicks even if we have only
4387         one image in StateImageList (only for 1.0/1.1). Also 
4388         generate an extra change of checked state when we receive
4389         the second click on checkbox (match .Net behaviour). 
4390         Fixes part of #81191.
4391
4392 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4393
4394         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
4395
4396 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4397
4398         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
4399         even if OnLoad is overriden and base.OnLoad is not called.
4400         [Fixes bug #81582]
4401
4402 2007-05-10  Andreia Gaita  <avidigal@novell.com>
4403
4404         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
4405         shame. (I blame my ever-persisting and annoying cold)
4406
4407 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4408
4409         * ListView.cs: Don't eat navigation keys.  Let them flow through to
4410         KeyDown/KeyPress routines.  [Fixes bug #81569]
4411
4412 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4413
4414         * ListView.cs: When handling keys for selecting the item based off
4415         keyboard input, do not consider keys pressed with Alt or Control.  Also,
4416         correctly handle keys when the Shift key is down. [Fixes bug #81578]
4417
4418 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4419
4420         * Control.cs: When using UseWaitCursor, we have to store the requested
4421         Cursor to use when UseWaitCursor is turned off.
4422
4423 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4424
4425         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
4426         to false.
4427         * Application.cs: Use PreProcessControlMessage instead of
4428         PreProcessMessage.
4429         * PreProcessControlMessage.cs: Make internal for 1.1.
4430
4431 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4432
4433         * Control.cs: Add InternalContains focus property, which hast the same
4434         functionality of ContainsFocus, but also including implicit controls.
4435         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
4436         since we need to know if the focus is contained in our implicit
4437         ItemControl when calculating Layout. Fixes part of #80888.
4438
4439 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
4440
4441         * ToolTip.cs: Remove center form string alignment as it must be align to
4442         left.
4443
4444 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
4445
4446         * ToolStripItemCollection.cs: Set the new item's parent and owner
4447         in Insert like we do in Add.  [Fixes bug #81568]
4448
4449 2007-05-08  Jackson Harper  <jackson@ximian.com>
4450
4451         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
4452         - Off by one error in SetTop
4453         - Disable DoubeBuffering
4454         
4455 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4456
4457         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
4458           control as much as necessary in order to make it entirely visible,
4459           instead of centering the control in the container (matches MS
4460           behaviour). CalculateCanvasSize: we need to take the current scroll
4461           position into account when calculating the maximum canvas,
4462           otherwise the following scenario will fail: resize so that the
4463           scrollbars appear, use the scrollbars to scroll, resize again
4464           smaller, and now the canvas size is too small. Recalculate: when
4465           showing scrollbars make sure they start off at 0, and try to scroll
4466           the active control into view. Fixes #79540. HandleScrollBar: don't
4467           scroll anywhere if the scrollbar isn't visible.
4468
4469 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4470
4471         * ListView.cs: When focus changed, call Layout/Invalidate
4472         in the focused item to update the selected state (should show
4473         entire label when ListView is focused, and a part of it if is not).
4474         * ListViewItem.cs: When doing layout for LargeIcon, take into account
4475         for displaying the entire label not only the Focused state of the
4476         item, but also the Focused state of the ListView (match .Net
4477         behaviour).
4478
4479 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4480
4481         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
4482         Implement UseWaitCursor. 
4483
4484 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4485         Applying contributed patch from Sergey Volk.
4486
4487         * Clipboard.cs: Implement SetDataObject retry logic and new overload
4488         of SetDataObject.
4489         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
4490
4491 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4492
4493         * Control.cs: Implement DrawToBitmap.
4494
4495 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4496         Applying contributed patch from Stefan Noack.
4497         
4498         * Control.cs: Add [Get|Set]AutoSizeMode.
4499
4500 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4501
4502         * MdiClient.cs: Unmerge menus when the last child is closed.
4503
4504 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4505
4506         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
4507         * ToolStripManager.cs: Call Merge on DropDowns.
4508         [Fixes bug #81477]
4509
4510 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4511
4512         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
4513           uints.
4514         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
4515           visibility. We can't create forms visible, since we have to set the
4516           owner before making the form visible (otherwise Win32 will do
4517           strange things with task bar icons). The problem is that we set the
4518           internal is_visible to true before creating the control, so
4519           is_changing_visible_state is the only way of determining if we're
4520           in the process of creating the form due to setting Visible=true -
4521           this works because SetVisibleCore explicitly makes the form
4522           visibile afterwards anyways. Fixes #80775.
4523
4524 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4525
4526         * ThemeWin32Classic.cs: When drawing ListViewItems,
4527         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
4528         or LargeIcon _and_ item is not focused (match .Net behaviour).
4529
4530 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4531
4532         * Control.cs, Form.cs: Fix some obsolete method warnings.
4533
4534 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4535
4536         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
4537         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
4538
4539 2007-05-04  Andreia Gaita  <avidigal@novell.com>
4540
4541         * ContainerControl.cs: Fix active_control attribution when going
4542         up the parent chain so that the first parent container gets the control
4543         and the rest of the parent containers get the child containers (skips
4544         non-containers). Fixes #80729
4545
4546 2007-05-04  Randolph Chung  <tausq@debian.org>
4547
4548         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
4549         [Fixes bug #81499]
4550
4551 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4552
4553         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
4554           takes a size parameter, since the CreateParam's size isn't true for
4555           minimized forms. Fixes #81518,
4556
4557 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4558
4559         * Form.cs: Add OnDeactivateInternal.
4560         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
4561
4562 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4563
4564         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
4565           accessing the parent. Fixes #81508.
4566
4567 2007-05-03  Chris Toshok  <toshok@ximian.com>
4568
4569         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
4570         2.0 block, pass listposition + 1 to ChangeRecordState when a row
4571         was added before the current listposition.  Fixes the
4572         TestInsertRowBeforeCurrent unit test.
4573
4574 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
4575
4576         * Application.cs: Add RaiseIdle.
4577         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4578         XplatUIX11.cs: Implement RaiseIdle.
4579
4580 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
4581         corcompare work: N - Z
4582         * NotifyIcon.cs
4583         * ProgressBar.cs
4584         * RadionButton.cs
4585         * ScrollableControl.cs
4586         * SplitContainer.cs
4587         * SplitterPanel.cs
4588         * StatusBar.cs
4589         * SystemInformation.cs
4590         * TabControl.cs
4591         * TableLayoutControlCollection.cs
4592         * TableLayoutPanel.cs
4593         * TabPage.cs
4594         * ToolBar.cs
4595         * ToolBarButton.cs
4596         * ToolStrip.cs
4597         * ToolStripComboBox.cs
4598         * ToolStripContainer.cs
4599         * ToolStripContentPanel.cs
4600         * ToolStripDropDown.cs
4601         * ToolStripDropDownItem.cs
4602         * ToolStripDropDownMenu.cs
4603         * ToolStripItem.cs
4604         * ToolStripItemCollection.cs
4605         * ToolStripMenuItem.cs
4606         * ToolStripPanel.cs
4607         * ToolStripSplitButton.cs
4608         * ToolTip.cs
4609         * TreeNode.cs
4610         * TreeNodeCollection.cs
4611         * TreeNodeMouseHoverEventArgs.cs
4612         * TreeView.cs
4613
4614 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
4615
4616         * ContextMenu.cs: Add public method Show with alignment property to 2.0
4617         stuff. Thanks aatdark for the patch. 
4618
4619 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4620
4621         * GridItem.cs: Implement 2.0 Tag property.
4622
4623 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
4624
4625         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
4626         count instead of Nodes.Length.  [Fixes bug #81448]
4627
4628 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4629
4630         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
4631         [Fixes bug #81506]
4632
4633 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4634         corcompare work: A - M
4635         * BindingNavigator.cs
4636         * Button.cs
4637         * ButtonBase.cs
4638         * CheckBox.cs
4639         * Control.cs
4640         * FlowLayoutPanel.cs
4641         * Form.cs
4642         * Label.cs
4643         * LinkLabel.cs
4644         * ListView.cs
4645
4646 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4647
4648         * Application.cs: Give toolstrips a chance to process mnemonics.
4649         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
4650         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
4651         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
4652
4653 2007-05-01  Jackson Harper  <jackson@ximian.com>
4654
4655         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
4656         wider area too.
4657         - Don't set the BoundsSpecified
4658
4659 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4660
4661         * Application.cs: When using the toolstrip shortcut mechanism, allow the
4662         message to pass through to a regular control if it hosted by a toolstrip.
4663         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
4664         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
4665
4666 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4667
4668         * TextRenderer.cs: Use the flags argument when using the MeasureString
4669         fallback algorithm.
4670
4671 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4672
4673         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
4674         the MDI menu item.  [Fixes bug #81483]
4675
4676 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
4677
4678         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
4679         string. When setting Name to null, use zero-length string instead.
4680
4681 2007-04-29  Andreia Gaita  <avidigal@novell.com>
4682
4683         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
4684         DeselectTab). Implement missing 2.0 TabPageCollection methods
4685         (Add, ContainsKey, RemoveByKey, IndexOfKey)
4686
4687 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
4688
4689         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
4690
4691 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
4692
4693         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
4694         Fixes bug #81479. Include details of exception when LoadFile fails.
4695
4696 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
4697
4698         * DrawListViewSubItemEventArgs.cs: Added missing setter
4699
4700 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4701
4702         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
4703         Hide methods (not complete). Implement missing 2.0 OnPopup event.
4704
4705 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4706
4707         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
4708         removed in ly last commit (it was breaking the Label edit feature).
4709
4710         * ThemeWin32Classic.cs: When drawing a ListViewItem use
4711         StringAlignment.Near for LineAlignment (match .Net).
4712
4713 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4714
4715         * TabControl.cs: Change SetTab so it adds the tabpage to the list
4716         of controls if it isn't already there - was blowing up when doing
4717         tabcontrol.TabPages[i]=new TabPage(). 
4718         SetTab now does a replace by removing the page at the index. 
4719         Add a new InsertTab method that inserts a page in a given index 
4720         instead of replacing. 
4721         Implements TabPageCollection.Insert(int, TabPage).
4722
4723 2007-04-27  Chris Toshok  <toshok@ximian.com>
4724
4725         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
4726         internal handler that can be invoked from our subclasses.)  Also,
4727         add a comment to PushData about how we need to fix it.
4728
4729         * CurrencyManager.cs: tons of changes here.  trying to get things
4730         matching the behavior of .net wrt event orders (ItemChanged,
4731         CurrentChanged, PositionChanged.)  I've implemented a private .net
4732         symbol (ChangeRecordState) that appears in stack traces because
4733         it's actually easier to do this than to effective inline all its
4734         various behaviors at every call site.
4735
4736         * RelatedPropertyManager.cs: guard against an exception here by
4737         not using parent.Current if the position is set to -1 (if the
4738         parent datasource is cleared, for instance).
4739
4740         * Binding.cs: don't parse data in PushData (this might be wrong,
4741         but it jives with MS's behavior.)  Also, don't call PushData when
4742         we get a CurrentChanged event.
4743
4744 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4745
4746         * WebBrowser.cs,
4747           WebBrowserBase.cs,
4748           WebBrowserSiteBase.cs,
4749           HtmlDocument.cs: Added stubbed out classes, no real implementations 
4750           yet.
4751
4752 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4753
4754         * MainMenu.cs: In draw method without parameters call draw method with 
4755         PaintEvent, another one (just rect) adjust rectangle and we dont need it
4756         as Rect property is already adjusted. Fixes #80694.
4757
4758 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
4759
4760         * Application.cs: Need to handle keyboard menu deselection here.
4761         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
4762         navigation, allowing keyboard to work on X11.
4763         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
4764
4765 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4766
4767         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
4768         menu bar. It fixes some drawing issues in menu bar.
4769
4770 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4771
4772         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
4773         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
4774         when <alt> key is pressed.
4775
4776 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4777
4778         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
4779         example just set visible to false and make this prevent from other problems.
4780         In SystrayAdd always remove pending expose. Fixes #81072.
4781
4782 2007-04-26  Marek Safar  <marek.safar@gmail.com>
4783
4784         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
4785         value is set.
4786
4787 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4788
4789         * ListView.cs: Added three missing 2.0 events and corresponding
4790         EventHandlers. Added the OwnerDraw property.
4791         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
4792
4793 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4794
4795         * DrawListViewItemEventArgs.cs
4796         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
4797
4798 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4799
4800         * TextControl.cs: Fixed typo in constructor
4801
4802 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
4803
4804         * Application.cs: Create a shortcut path so that currently selected
4805         MenuStrips can intercept keyboard events without having focus.
4806         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
4807         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
4808         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
4809         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
4810         generate WM_SYSCOMMAND message in X11 for other platforms.
4811         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
4812         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
4813         * ToolStripSplitButton.cs: Add DefaultItem property.
4814         
4815 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4816
4817         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
4818         fixes some menu draw problem on Windows with border diferent from default
4819         it also fixes #81403.
4820
4821 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4822
4823         * Form.cs: Refactor WndProc into separate methods, just like Control is
4824           doing it.
4825
4826 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4827
4828         * Control.cs: set_Text: move the call to the driver into a seperate
4829           virtual method so that Form can override it.
4830         * MaskedTextBox.cs: Corcompare fixes.
4831         * Form.cs: Override UpdateWindowText and only update the styles if the
4832           form has been shown (fixes #81405).
4833
4834 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4835
4836         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
4837         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
4838         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
4839         the form lost focus or another control was clicked.
4840
4841 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
4842
4843         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
4844         fixed.
4845
4846 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4847
4848         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
4849           DrawListViewItemEventHandler.cs,
4850           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
4851           Added.
4852         * X11Structs.cs: More ToString implementation.
4853
4854 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4855
4856         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
4857         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
4858
4859 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4860
4861         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
4862           handle.
4863         * FormCollection.cs: Don't add a form if it's already in the
4864           collection.
4865         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
4866           according to behaviour and MSDN. The ownerWin32 is the active
4867           window at the moment when we call ShowDialog, not the context's
4868           main form (the context's main form may open another form that opens
4869           a form with ShowDialog, the win32 owner is the second form). Add
4870           and remove forms to the Application.OpenForms in other places to
4871           better match MS behaviour. Add an IsActive property that raises
4872           On(de)Activated only if the active state has changed (we were
4873           raising OnDeactivated before OnActivated while creating forms).
4874         * Application.cs: Refactor Enabling/Disabling of windows for modal
4875           dialog loops out to separate methods, and restore the thread
4876           context when we quit the method. Fixes #81407.
4877
4878 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4879
4880         * ListView.cs: In ItemControl.HandleClicks, also fire 
4881         2.0 MouseClick or MouseDoubleClick events on the parent,
4882         not only the Click/DoubleClick events.
4883
4884 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4885
4886         * TableLayoutSettings.cs: 
4887         - Added a GetControls method and a support structure to help the 
4888         TypeConverter to enumerate the controls for     serialization. 
4889         - Added a new serialization constructor. 
4890         - Added a isSerialized flag initialized to true on the 
4891         serialization constructor so that the TableLayoutPanel.LayoutSettings 
4892         setter does not throw the designed NotSupportedOperation exception
4893         when the object is built through deserialization.
4894         - Implemented GetObjectData
4895         
4896         * TableLayoutPanel.cs: Added check on LayoutSettings.
4897
4898 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4899
4900         * ListView.cs: Report Click and DoubleClick events to the parent
4901         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
4902         from breaking the click count state when using dialog forms (Control
4903         reports the clicks in a similar fashion). In the previous behaviour
4904         the last WM_LBUTTONUP message in a  double click was sent to the
4905         ListView's form, instead of the ListView, which was breaking the click
4906         count for it. Fixes #80387.
4907
4908 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
4909
4910         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
4911
4912 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
4913
4914         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
4915         us from created dropdowns for menu items that do not have subitems.
4916         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
4917         Check HasDropDownItems before calling DropDown so a dropdown will not be
4918         created if it isn't needed.
4919
4920 2007-04-24  Jackson Harper  <jackson@ximian.com>
4921
4922         * TreeView.cs: Set the first node to the selected node when we get
4923         focus if there is no selected node.
4924
4925 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4926
4927         * MimeIcon.cs: remove using blocks so that image streams are
4928         not disposed of. Fixes #80151
4929
4930 2007-04-24  Jackson Harper  <jackson@ximian.com>
4931
4932         * TextBoxBase.cs: Fixup the height of textboxes when the control
4933         is created.
4934
4935 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
4936
4937         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
4938         for each ToolStripItem when the parent's RightToLeftChanged is called.
4939
4940 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4941
4942         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
4943           Fixes #80163.
4944         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
4945           property, so that the setter can be overriden too.
4946         * TextBox.cs: Change GetContextMenuInternal() to use
4947           ContextMenuInternal.
4948
4949 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4950
4951         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
4952           #81406.
4953
4954 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4955
4956         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
4957           #81406.
4958
4959 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4960
4961         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
4962           avoid duplicate work. Mostily skeleton code, it's not working at
4963           all yet.
4964
4965 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
4966
4967         * NotifyIcon.cs : stub for MouseClick event
4968         * Application.cs: stub for SetUnhandledExceptionMode
4969
4970 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
4971
4972         * BindingNavigator.cs : Initial (partial) implementation
4973
4974 2007-04-23  Jackson Harper  <jackson@ximian.com>
4975
4976         * TreeView.cs: Do not create the treeview's handle when setting
4977         the scroll position.
4978         - ExpandAll needs to compute the scrollbars so it knows which
4979         position to set the bar too.
4980         * TreeNode.cs: 
4981         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
4982
4983 2007-04-23  Jackson Harper  <jackson@ximian.com>
4984
4985         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
4986         key. Fixes #81408.
4987
4988 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
4989
4990         * ToolStripItem.cs: Make GetImageSize internal.
4991         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
4992         need to draw an item.  Fixes a reported issue where images on menus
4993         that were not 16x16 were drawing incorrectly.
4994
4995 2007-04-21  Miguel de Icaza  <miguel@novell.com>
4996
4997         * Padding.cs: Use the converter, fixes the resgen2 issue with
4998         XMLNotePad. 
4999
5000 2007-04-21  Jackson Harper  <jackson@ximian.com>
5001
5002         * TreeView.cs: Dont try to unhighlight the selected node if there
5003         isn't a selected node.
5004
5005 2007-04-21  Jackson Harper  <jackson@ximian.com>
5006
5007         * UpDownBase.cs:
5008         * TextBoxBase.cs:
5009         * ListView.cs:
5010         * ListBox.cs:
5011         * TreeView.cs: Use the InternalBorderStyle property to set the
5012         initial border style, this forces the client rectangle to be sized
5013         correctly.
5014
5015 2007-04-20  Jackson Harper  <jackson@ximian.com>
5016
5017         * TreeView.cs: Simplify scrolling to the last node after expanding
5018         all.
5019         - Fix some off by ones with setting the bottom.
5020
5021 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
5022
5023         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
5024         that.  We were incorrectly doing it the other way around.  Also,
5025         update ClientSize if we change the BorderStyle before the control
5026         is created.
5027
5028 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
5029
5030         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
5031         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
5032         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
5033         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
5034         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
5035         Caption to CaptionHeight.
5036         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
5037         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
5038         and FixedFrameBorderSize to return value from current XplatUI driver.
5039         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
5040         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
5041         and FixedFrameBorderSize using win32 API. Renamed Caption to
5042         CaptionHeight.
5043         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
5044         * SystemInformation.cs: Fixed typo in BorderSize.
5045
5046 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
5047
5048         * XplatUI.cs: Added MenuAccessKeysUnderlined.
5049         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
5050         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
5051         returning false.
5052         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
5053         value from XplatUI driver.
5054         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
5055         SystemParametersInfo.
5056         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
5057         override.
5058         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
5059         returning false.
5060
5061 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5062
5063         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
5064
5065 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5066
5067         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
5068
5069 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
5070
5071         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
5072         MenuStrips that contain ToolStripSeparators.
5073
5074 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5075
5076         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
5077           DefineStdCursorBitmap.
5078         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
5079           has been created off a standard cursor. This is used to get a
5080           bitmap of the standard cursor when Draw or DrawStretched is called
5081           in order to draw the cursor.
5082         * X11Structs.cs: Added XcursorImage and XcursorImages.
5083         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
5084           DefineStdCursorBitmap.
5085         * Cursors.cs: Update all relevant creations of Cursor to use the new
5086           internal constructor.
5087
5088 2007-04-19  Jackson Harper  <jackson@ximian.com>
5089
5090         * TextBox.cs: Move the has_been_focused into the base control, so
5091         some of the text adding methods can manipulate it (probably time
5092         for a better name for this flag too).
5093         - Call a new version of selectall that doesn't scroll
5094         * TextBoxBase.cs: When we append text, if the document is empty,
5095         don't scroll.  If the document has text already, we scroll to the
5096         end of the appended text.
5097         - When the text is changed, we reset the has_been_focused, so the
5098         next time the control gets focused, all the text is selected.
5099
5100 2007-04-19  Jackson Harper  <jackson@ximian.com>
5101
5102         * TextControl.cs: Move the margins to the document, add a method
5103         so the margin sizes can be updated.
5104         * TextBoxBase.cs: When the border style is changed, update the
5105         border sizes.
5106
5107 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
5108
5109         * Control.cs: Respect DefaultPadding.
5110         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
5111         padding into account.
5112         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
5113
5114 2007-04-19  Jackson Harper  <jackson@ximian.com>
5115
5116         * TextControl.cs: Oops, we need to use the ClientRect not the
5117         bounds here.
5118
5119 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5120
5121         * ListView.cs: In ItemControl.ItemsMouseDown, take into
5122         account the double clicks when CheckBoxes are used and
5123         the pointer is inside the checkbox. Fixes part of #81191.
5124
5125 2007-04-18  Jackson Harper  <jackson@ximian.com>
5126
5127         * TextControl.cs: Pressing the end key shouldn't move the caret
5128         past the line ending.
5129         * TextBoxBase.cs: We can still delete if we are in the line
5130         ending and the combine will just kill the existing line ending.
5131
5132 2007-04-18  Jackson Harper  <jackson@ximian.com>
5133
5134         * TextControl.cs: We can't move lines, then invalidate their
5135         bounds, we need to get the old bounds and combine that with the
5136         new bounds.
5137         * TextBoxBase.cs: Before combining two lines for a delete, we need
5138         to invalidate the area of the old line, since that will be moved
5139         in the combine operation.
5140
5141 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
5142
5143         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
5144         with transparent background. Fixes #80482.
5145
5146 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
5147
5148         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
5149         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
5150         [Fixes bug #81391]
5151
5152 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5153
5154         * CreateParams.cs: Add a couple of helper methods and do a less string
5155           concatenation in ToString.
5156         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
5157           overload that takes a Control parameter, since this method may be
5158           called before a control is assigned to the hwnd (from
5159           CreateWindow), and update CreateWindow to use the new overload. In
5160           GetMenuOrigin subtract the title bar from the y position if the
5161           form has a window manager (since we're painting it and not X).
5162         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
5163           CreateParams to calculate the origin (since border sizes may vary).
5164           In ScreenToMenu only subtract the title height if we actually have
5165           a title.
5166         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
5167           mdi children never have menus of themselves.
5168         * InternalWindowManager.cs: Implement menu handling like form does.
5169           Added GetMenuOrigin to calculate the menu origin, can't use the
5170           CreateParams from the form like normally since it's lying.
5171         * Hwnd.cs: Implement GetBorderSize better (in the sense more
5172           windows-like) and add Inflate and comparison operators to the
5173           Borders type. When calculating MenuOrigin and it's a form with a
5174           window manager, use the window manager to calculate it.
5175
5176 2007-04-17  Chris Toshok  <toshok@ximian.com>
5177
5178         * Control.cs (CreateControl): turns out in 2.0 we don't need this
5179         OnBindingContextChanged thing here.  It's only generated from
5180         ContainerControl.OnCreateControl.  Fixes a newly written unit test
5181         - BindingTest.BindingContextChangedTest4.
5182         
5183 2007-04-17  Jackson Harper  <jackson@ximian.com>
5184
5185         * ScrollBar.cs: When setting values, make sure the current
5186         position stays within the new values range.
5187
5188 2007-04-17  Chris Toshok  <toshok@ximian.com>
5189
5190         * Control.cs (CreateControl): talk about a bizarre corner case.
5191         Don't emit OnBindingContextChanged here if we're a parentless
5192         control (i.e. if we're a form.).  Fixes
5193         BindingTest.BindingContextChangedTest2.
5194
5195 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
5196
5197         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
5198         from win32. Fixes #81255.
5199
5200 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
5201
5202         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
5203         already present in CalculateButtonTextAndImageLayout.
5204
5205 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5206
5207         * XplatUIX11.cs: When setting min/max size for a window we need to
5208           translate the coordinates to x coordinates. Create an overload of
5209           SetWindowMinMax that takes a CreateParams handling this, and change
5210           SetWMStyles to call this function (can't use Control.FromHandle in
5211           the SetWindowMinMax to get the control/CreateParams from the handle
5212           because the handle might not have been assigned to the control
5213           yet). Fixes #81371.
5214
5215 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5216
5217         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
5218         if StateImageList is non-null and it has less than two items (match MS
5219         behaviour). Also, in HandleNavKeys handle the Space key, calling
5220         the new ToggleItemsCheckState method, which tries to change the
5221         checked state of the selected items. Fixes part of #81191.
5222
5223 2007-04-16  Jackson Harper  <jackson@ximian.com>
5224
5225         * RichTextBox.cs: namespace cleanup.
5226
5227 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
5228
5229         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
5230
5231 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
5232
5233         [Fixes #79447]
5234         * Control.cs: Call invalidate in set_Region.
5235
5236         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
5237         it dont works here.
5238
5239 2007-04-16  Jackson Harper  <jackson@ximian.com>
5240
5241         * TextBoxBase.cs: When enter is pressed, we need to update all
5242         lines below the current.
5243
5244 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
5245
5246         * MdiClient.cs: Implement implicit menu merging for MDI
5247         children.  When a child form is active, if it has a menustrip
5248         and the parent form has a MainMenuStrip, automatically merge
5249         the menus.
5250
5251 2007-04-15  Andreia Gaita  <avidigal@novell.com>
5252
5253         * TabControl.cs: Refactored sizing methods to not repeat
5254         code all over the place. Tab bounds are now calculated
5255         as if alignment is top and single line, and only when 
5256         setting the bounds are the positions adjusted according
5257         to alignment. Replaced hardcoded positions, spacings and
5258         paddings by getting the values the ThemeEngine. 
5259         Fixes #79619.
5260         
5261         * Theme.cs: Change TabControl properties and methods so
5262         that all start with TabControl*. Added more properties
5263         to help remove hardcoded values on tabcontrol.
5264         Add CPDrawBorder3D declaration so the Theming classes
5265         can access it.
5266         
5267         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
5268
5269         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
5270         on the Theming namespace, and call the appropriate methods here.
5271         Change CPDrawBorder3D to public.
5272
5273 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5274
5275         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
5276         the control after firing the OnMouseUp event, instead of sending
5277         the message before the mentioned event. This is so we can match the
5278         MS behaviour. Fixes part of #80385.
5279
5280 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
5281
5282         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
5283         RightToLeft property.
5284
5285 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
5286
5287         * ToolStrip.cs: Add properties and internal methods to support merging.
5288         * ToolStripItem.cs: Add MergeAction and MergeIndex.
5289         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
5290         not trigger reparenting or layouts.
5291         * ToolStripManager.cs: Add Merge and RevertMerge methods.
5292         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
5293         is hosting the overflow menu.
5294
5295 2007-04-13  Jackson Harper  <jackson@ximian.com>
5296
5297         * TextControl.cs: Set the line ending correctly for the first
5298         inserted line.
5299
5300 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
5301
5302         * Theme.cs: Update GetMethod to get the new definition for 
5303         KnownColors.Update (and fix theme color updates).
5304
5305 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
5306
5307         * MessageBox.cs: Fix some test and button position.
5308
5309 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5310
5311         * Form.cs: Consider the implicit controls in
5312         GetRealChildAtPoint. We need it since this method
5313         is called on Form when handling the some messages in
5314         WndProc, and need to consider those implicit ones too.
5315         Fixes #80385.
5316
5317 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
5318
5319         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
5320         if there are no ShortcutKeys set.
5321         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
5322         set, use it when painting.
5323
5324 2007-04-12  Jackson Harper  <jackson@ximian.com>
5325
5326         * TextControl.cs: Fix some off-by-one issues in line duplication
5327         and insertion in the undo manager. Also, overwrite the first tag
5328         of a line on insert, if it is just a zero lengthed tag. This
5329         prevents us from getting an extra stranded tag at the beginning of
5330         the first line.
5331
5332 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
5333
5334         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
5335         to calculated proper size including when handle was not created yet.
5336
5337 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5338
5339         * MdiWindowManager.cs: When moving a form, allow the form to be moved
5340           when the mouse is outside of it's parent's client rectangle. Fixes
5341           #79982 (take 3, part 2).
5342
5343 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5344
5345         * X11Structs.cs: Add a few ToString() overrides.
5346         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
5347           the window location in a window-manager independent way. Reworked
5348           FrameExtents, it now actually works. Reworked AddConfigureNotify
5349           and ReparentNotify handling to use GetTopLevelWindowLocation
5350           instead of the earlier, more hacky solution. Reworked SetWMStyles,
5351           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
5352           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
5353           for all other windows (fixes #81281 part 1), a toolwindow is hidden
5354           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
5355           and generally refactored to do as few calculations as possible
5356           inside the lock.
5357
5358 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
5359
5360         * Theme.cs: Change "reflective-contract" between MWF and SD to 
5361         minimize # of calls, avoid Color serialization and avoid updating 
5362         every "known colors" each time a single one is updated.
5363
5364 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5365
5366         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
5367         when not readonly and the text is explicitly set. Code style updates.
5368         * DataGridTableStyle.cs: Removed extra line.
5369         * DataGrid.cs: Code style updates. Removed extra whitespace.
5370         * DataGridColumnStyle.cs: Code style updates. Removed extra 
5371         whitespace.
5372
5373 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5374
5375         * XplatUIX11.cs: Added comment that "fixes" #80021.
5376
5377 2007-04-09  Jackson Harper  <jackson@ximian.com>
5378
5379         * TextControl.cs: We don't need this -1 on the line count anymore.
5380
5381 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5382
5383         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
5384         entered value to underlying type, and convert it back to a string to
5385         apply formatting. Modified GetFormattedValue to use TypeConverter
5386         if available.
5387
5388 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
5389
5390         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
5391         Use SubItems property when we want to ensure there's at least one
5392         subitem. Modified SubItems property to ensure there's always at least
5393         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
5394         the NRE's reported by MS.
5395
5396 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
5397
5398         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
5399         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
5400         Spaces to tabs. Removed extra tabs.
5401
5402 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
5403
5404         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5405         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
5406
5407 2007-04-06  Jackson Harper  <jackson@ximian.com>
5408
5409         * TextBoxBase.cs: When a delete removes a line, recalculate all
5410         lines below that line (they need to get offsets setup correctly)
5411         and invalidate.
5412
5413 2007-04-05  Jackson Harper  <jackson@ximian.com>
5414
5415         * TextControl.cs: We need to invalidate across the width of the
5416         document when we are invalidating multiple lines.
5417         * TextBoxBase.cs: Don't delete into the line ending.
5418
5419 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5420
5421         * ListView.cs: Restore the check for the MouseHover event
5422         in ListView. It looks like the ListView fires more than one MouseHover
5423         event when HoverSelection is true  _only_ in weird-corner scenarios, but
5424         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
5425         event.
5426
5427 2007-04-05  Mike Kestner  <mkestner@novell.com>
5428
5429         * ListView.cs : raise MouseDown before updating selection.
5430         [Fixes #80373 tab 1&3]
5431
5432 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5433
5434         * ToolStripRenderer.cs: Add static method to mirror image.
5435         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
5436         and RightToLeftAutoMirrorImage.
5437         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
5438
5439 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5440
5441         * ToolStripSplitStackLayout.cs: Support Alignment property.
5442         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
5443
5444 2007-04-05  Jackson Harper  <jackson@ximian.com>
5445
5446         * TextControl.cs: Move around the line endings when crossing line
5447         boundaries.
5448         - When combining lines, strip the ending text off the first line.
5449
5450 2007-04-05  Jackson Harper  <jackson@ximian.com>
5451
5452         * TextControl.cs:
5453         * TextBoxBase.cs: Try to never move the cursor into the line
5454         ending.
5455         
5456 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5457
5458         * ToolStripItem.cs: Make sure we aren't firing mouse events when
5459         the item is disabled.  Also add a few missing methods.
5460
5461 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5462
5463         * ListView.cs: We don't need the MouseEnter/MouseLeave check
5464         to fire just one MouseHover event when HoverSelection is true, since
5465         .Net does fire more than one MouseHover event in that scenario. Also,
5466         fix the selection in HoverSelection, by invoking UpdateMultiSelect
5467         if MultiSelect is true, instead of only setting ListViewItem.Selected.
5468         Finally, we need to reset the Hover logic in MouseMove, even when we
5469         don't have a selected item.
5470
5471 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5472
5473         * ToolStrip.cs: Add several missing methods, properties, and events.
5474
5475 2007-04-04  Chris Toshok  <toshok@ximian.com>
5476
5477         * DataGridTextBoxColumn.cs: set the bounds of the text box to
5478         (0,0,0,0) in Commit, as MS does.
5479
5480         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
5481         make sure we set CurrentRow on a row header click *before* calling
5482         Select.  This moves the current cell (and the textbox) to the new
5483         row.  The call to Select then hides the textbox, giving us the
5484         correct behavior.  Fixes #80362.
5485
5486         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
5487         (ListChangedHandler): reorder the position/current changed events,
5488         and call UpdateIsBinding in the ItemAdded case.
5489
5490         * GridColumnStylesCollection.cs: add some columns events, one of
5491         which raises the CollectionChanged event.
5492
5493 2007-04-04  Jackson Harper  <jackson@ximian.com>
5494
5495         * TextControl.cs: When we delete multiple selection lines
5496         invalidate the selection area, don't need to do that for single
5497         lines because the final update view will handle it.
5498
5499 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5500
5501         * Control.cs: When we CreateControl, we need to also create all of the
5502         control's children.  The child's OnLoad must also fire before the parent's
5503         OnLoad.  Fixes the toolbox size in PDN.
5504
5505 2007-04-04  Jackson Harper  <jackson@ximian.com>
5506
5507         * TextBoxBase.cs: When the user presses enter, insert a line
5508         ending into the text. (Maybe this would be a good spot for
5509         Environment.NewLine).
5510         * TextControl.cs: Remove undo manager hack, line endings get
5511         inserted properly now.
5512         
5513 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5514
5515         * MenuAPI.cs: 
5516         - Remove unneeded parameters in UpdateCursor.
5517         - Fix UpdateCursor to check if menu is active.
5518         - Call UpdateCursor when menu deactivate my click.
5519         [Fixes remaining issues from #80410]
5520
5521 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5522
5523         * Control.cs: GetRealChildAtPoint method added, it make an
5524         recursive child control search for the point. 
5525
5526         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
5527         menu.
5528
5529         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
5530
5531 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5532
5533         * Form.cs: Fix mouse position when send back mouse event after closes
5534         menu.
5535
5536 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5537
5538         * Form.cs: Simplify the BUTTONDOWN for active tracker.
5539
5540 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5541
5542         * Control.cs: Fix an issue where if a user resized a control inside
5543         a sizing method like OnResize, we would overwrite their explicit
5544         value.  Also, only call DefaultSize once in the constructor instead
5545         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
5546         nothing actually changed.
5547
5548 2007-04-03  Jackson Harper  <jackson@ximian.com>
5549
5550         * TextControl.cs: Don't attempt to copy text for lines with no
5551         text in them (technically this shouldn't happen, but we aren't
5552         always inserting line endings when we should be).
5553
5554 2007-04-03  Jackson Harper  <jackson@ximian.com>
5555
5556         * TextBoxBase.cs: Calculate the scrollbars before calculating the
5557         document, because this sets some of the document size properties
5558         that are needed.
5559
5560 2007-04-03  Jackson Harper  <jackson@ximian.com>
5561
5562         * TextBoxBase.cs: We need to calculate maximums even if this is
5563         not a multiline control, because the maxs are used for scrolling.
5564         - Display the caret after doing a page up/down, we need to
5565         manually display it because a proper CaretMoved event isn't
5566         triggered (this is because of the way the math is done to
5567         determine how far to scroll).
5568
5569 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5570
5571         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
5572         (ToolBar was relying on SetBoundsCore to default the values sent 
5573         base off of BoundsSpecified.)
5574
5575 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5576
5577         * DateTimePicker.cs: Change Text so that when a null value or empty
5578           string is assigned to the test we always raise ValueChanged and
5579           TextChanged (earlier implementation would only raise ValueChanged
5580           if the current date value was different from DateTime.Now).
5581
5582 2007-04-03  Andreia Gaita <avidigal@novell.com> 
5583
5584         * ButtonBase: Call update after invalidation, fixes #80194
5585
5586 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5587
5588         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
5589           #79335.
5590
5591 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5592
5593         * XplatUIX11.cs: SetWMStyles: If the control is a form with
5594           FormBorderStyle = None, don't give the window any decorations.
5595           Fixes #81276.
5596
5597 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5598
5599         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5600         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
5601           to check for is a mix of several styles (such as WS_CAPTION for
5602           instance).
5603         * Control.cs: Don't paint an area bigger than the client area when
5604           painting the background colour. Add an internal GetCreateParams.
5605           Update calls to XplatUI.CalculateWindowRect due to API change.
5606         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
5607           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
5608           the size if it hasn't been handled by any windows. When creating
5609           and moving windows, X wants the location of the entire window, but
5610           the size of the client window, so add
5611           TranslateClientRectangleToXClientRectangle,
5612           TranslateWindowSizeToXWindowSIze and
5613           TranslatedXWindowSizeToWindowSize to cope with this, and call them
5614           before every window creation and move. Update CalculateWIndowRect
5615           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
5616           In AddConfigureNotify don't do anything if the hwnd is a zombie
5617           (fixes the BadWindow we were getting while running the tests),
5618           always calculate the offsets when it's a parentless window, not
5619           only when reparented, and translate the window size, since we're
5620           getting the client size of the whole window, excluding entire
5621           window.
5622         * Theme.cs: Added BorderSizableSize.
5623         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5624           anymore. Update calls to XplatUI.CalculateWindowRect due to API
5625           chang
5626         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
5627           change. Fake the window styles here instead of in XplatUIWin32 so
5628           that all back-ends get the same window styles (and it's Form that's
5629           deciding when to use wm, not the Win32 backend anyways)
5630         * Hwnd.cs: Completely reworked GetWindowRectangle and
5631           GetClientRectangle - they are now passed a CreateParams and they
5632           only use Style and ExStyle to determine the rectangles (they should
5633           now work just like Win32AdjustWindowRectEx - though quite a few
5634           special cases are probably missing). They should also be 100%
5635           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
5636           == rect), and all numbers (borders, menu sizes) are taken from the
5637           current theme. Added a GetBorders helper function that will return
5638           the borders for any given CreateParams (including captions and
5639           menus), and GetBorderSize that returns the given border size only.
5640         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5641           Hwnd.GetClientRectangle.
5642
5643 2007-04-02  Chris Toshok  <toshok@ximian.com>
5644
5645         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
5646         logic between the values we present to the user and the values
5647         which are stored in the column's property.  Also, don't call
5648         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
5649
5650 2007-04-02  Jackson Harper  <jackson@ximian.com>
5651
5652         * TextBoxBase.cs: Scroll faster!
5653
5654 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5655
5656         * StatusStrip.cs: Layout fixes for PDN.
5657         * ToolStrip.cs: Set item's available to true, and placement to main when
5658         added.
5659         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
5660         changing in setter before doing any work, add InternalVisible.
5661         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
5662         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5663         infinite loop.
5664
5665 2007-04-02  Jackson Harper  <jackson@ximian.com>
5666
5667         * TextBox.cs: LBUTTON does not make the textbox select all of it's
5668         text on focus.
5669
5670 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5671
5672         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
5673           Makes ToolStripComboBoxes show up again.
5674
5675 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5676
5677         * ListView.cs: Add a hover_pending field in ListView
5678         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
5679         cycle (we are resetting the MouseHover logic in XplatUI
5680         to handle HoverSelection). Fixes #80429.
5681
5682 2007-04-02  Jackson Harper  <jackson@ximian.com>
5683
5684         * TextControl.cs: Make sure the attributes get set on the last
5685         tag.
5686         - Still have to do the end tag if we have stepped all the ways to
5687         the end.
5688
5689 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5690
5691         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
5692         on an internal libgdiplus call when the information is already 
5693         available via the public API.
5694
5695 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5696
5697         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
5698           control is removed from a control collecftion.
5699         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
5700           Fixes FormPropertyTest (failed on rare occasions).
5701         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
5702           of Win32SetParent (when changing from no parent to a parent it
5703           might add the new parent's location in screen coordinates to this
5704           window's location).
5705         * Form.cs: Rework ChangingParent once again, now the handle is
5706           recreated whenever a FormWindowManager is added or removed (that is
5707           whenever a normal form is parented or abandoned). Also change
5708           CreateParams so that all non-toplevel windows always get the
5709           specified sice (StartupPosition is never considered for
5710           non-TopLevel forms).
5711         * ContainerControl.cs: Add ChildControlRemoved, the container control
5712           needs to be notified when a control is removed from it's
5713           collection, in the case the removed control is the active control.
5714
5715 2007-04-02  Jackson Harper  <jackson@ximian.com>
5716
5717         * RichTextBox.cs: Use the new methods for setting the font and
5718         color, these methods set the specified attribute without
5719         overriding the other attributes.
5720
5721 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5722
5723         * ToolStripPanel.cs: Fixes for better layouts in PDN.
5724
5725 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
5726
5727         * TextBox.cs: Added internal ChangeBackColor method to special-case
5728         Color.Empty. Added check for invalid ScrollBars value.
5729         * TextBoxBase.cs: Added internal ChangeBackColor method.
5730         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
5731         internal ChangeBackColor method to special-case Color.Empty. Added
5732         check for invalid ScrollBars value.
5733
5734 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
5735
5736         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
5737
5738 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5739
5740         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
5741         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
5742         [Based on submitted patch from Olivier Duff.]
5743
5744 2007-03-30  Jackson Harper  <jackson@ximian.com>
5745
5746         * TextBox.cs: Only select all on initial focus if the user has not
5747         specified a selection area.
5748
5749 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5750
5751         * UserControl.cs: Override CreateParams.
5752
5753 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5754
5755         [ Fixes #80995 ]
5756
5757         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5758         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
5759           check for is a mix of several styles (such as WS_CAPTION for instance).
5760         * Control.cs: Don't paint an area bigger than the client area when painting
5761           the background colour. Add an internal GetCreateParams. Update calls to
5762           XplatUI.CalculateWindowRect due to API change.
5763         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
5764           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
5765           hasn't been handled by any windows. When creating and moving windows, X
5766           wants the location of the entire window, but the size of the client
5767           window, so add TranslateClientRectangleToXClientRectangle,
5768           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
5769           to cope with this, and call them before every window creation and move.
5770           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
5771           removing DeriveStyles). In AddConfigureNotify don't do anything if the
5772           hwnd is a zombie (fixes the BadWindow we were getting while running the
5773           tests), always calculate the offsets when it's a parentless window, not
5774           only when reparented, and translate the window size, since we're getting
5775           the client size of the whole window, excluding entire window.
5776         * Theme.cs: Added BorderSizableSize.
5777         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5778           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
5779         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
5780           Fake the window styles here instead of in XplatUIWin32 so that all
5781           back-ends get the same window styles (and it's Form that's deciding when
5782           to use wm, not the Win32 backend anyways)
5783         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
5784           they are now passed a CreateParams and they only use Style and ExStyle
5785           to determine the rectangles (they should now work just like
5786           Win32AdjustWindowRectEx - though quite a few special cases are probably
5787           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
5788           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
5789           sizes) are taken from the current theme. Added a GetBorders helper
5790           function that will return the borders for any given CreateParams
5791           (including captions and menus), and GetBorderSize that returns the given
5792           border size only.
5793         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5794           Hwnd.GetClientRectangle.
5795
5796 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5797
5798         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
5799           layout of the mdi children is handled by CreateParams. Fixes
5800           #79964,
5801
5802 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5803
5804         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
5805         processed.
5806
5807         * Form.cs: When active tracker mouse down is not processed, send event 
5808         back to control inside mouse position. [Fixes #81227]
5809
5810 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5811
5812         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
5813         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
5814         stealing focus from the active form on Windows.  (Control will be made
5815         visible in ShowWindow.)
5816
5817 2007-03-29  Mike Kestner  <mkestner@novell.com>
5818
5819         * ImageList.cs : add internal Changed event.
5820         * ListView.cs : hook up to StateImageList.Changed to perform
5821         invalidations when the the state icon list changes. [Fixes #81191]
5822
5823 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5824
5825         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
5826         to prevent tooltips from stealing focus from the active form on Windows.
5827
5828 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5829
5830         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
5831
5832         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
5833
5834 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5835
5836         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
5837         balloons.
5838
5839 2007-03-29  Jackson Harper  <jackson@ximian.com>
5840
5841         * TextControl.cs: When deleting text from non multiline textboxes,
5842         we need to update the entire document, because line offsets will
5843         be shifting.
5844
5845 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5846
5847         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
5848         added to theme, now we can create themes that uses diferent notify engines
5849         like notification-daemon from galago project or growl for Mac OS.
5850
5851 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5852
5853         * NotifyIcon.cs: Prevent Balloon to show in task bar.
5854
5855 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5856
5857         * XplatUIX11.cs: Prevent system to open more than one balloon.
5858
5859         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
5860         some compiler warning messages.
5861
5862 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5863
5864         [Fixes #79149]
5865
5866         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
5867
5868         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
5869         implemented, this methods is used by NotifyIcon.BalloonWindow class.
5870
5871         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
5872         systems.
5873
5874 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5875
5876         * ListViewItem.cs: Forgot to make Invalidate internal.
5877
5878 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5879
5880         * ListView.cs: Add a InvalidateSelection method to
5881         invalidate methods which are currently selected, and call
5882         it when setting FullRowSelect and HideSelection, instead of
5883         calling Redraw.
5884
5885 2007-03-28  Chris Toshok  <toshok@ximian.com>
5886
5887         * XplatUIX11.cs (UnmapWindow): reindent this block.
5888
5889         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
5890         the selection_start if we're moving the selection (that is, not
5891         extending it). Fixes bug #80461.
5892
5893 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5894
5895         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
5896         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
5897         create private ControlCollection.
5898
5899 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5900
5901         * Control.cs: We need to call OnVisibleChanged for our implicit
5902         children as well as our normal children.  Fixes scrollbars in
5903         comboboxes not showing up.
5904
5905 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5906
5907         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
5908         the check for IsHandleCreated first.  The check in CreateHandle is not
5909         good enough because CreateHandle can be overriden, and the override 
5910         should not be called if the handle is already created.
5911
5912 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5913
5914         * ToolStrip.cs: Remove MonoTODO for tooltips.
5915         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
5916         * ToolStripContainer.cs: Add custom ControlCollection class.
5917         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
5918         * ToolStripDropDown.cs: Add some missing properties/methods.
5919         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
5920         * ToolStripItem.cs: Remove MonoTODO for tooltips.
5921         * ToolStripManager.cs: Add IsShortcutDefined.
5922         * ToolStripOverflow.cs: Override LayoutEngine.
5923         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
5924         * ToolStripSeparator.cs: Add ImageKey.
5925
5926 2007-03-28  Jackson Harper  <jackson@ximian.com>
5927
5928         * TextControl.cs: If a char delete removes a line ending, we need
5929         to update the ending style.
5930         - Make sure the line ending calcs get called.
5931
5932 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5933
5934         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
5935           it was making the new code not work. Fixed a typo in the new code
5936           as well. Fixes #79826.
5937
5938 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5939
5940         * XplatUIWin32.cs:
5941         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
5942         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
5943         - SystrayBalloon method implemented.
5944         [Add support for notifyicon balloon on win32, #79149]
5945
5946 2007-03-27  Mike Kestner  <mkestner@novell.com>
5947
5948         * ThemeWin32Classic.cs : update StateImageList selection to mirror
5949         the ms behavior when only one image is added to the list.
5950         [Fixes #81191]
5951
5952 2007-03-27  Jackson Harper  <jackson@ximian.com>
5953
5954         * TextControl.cs: Improvements to non multiline line ending
5955         drawing/measuing.
5956
5957 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5958
5959         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
5960
5961 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5962
5963         * NotifyIcon.cs: 
5964         - Balloon message handling added.
5965         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
5966
5967         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
5968         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
5969         to SystrayBalloon to me like other Systray method, also a
5970         handle parameter added.
5971
5972 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5973
5974         * ListView.cs: Show scrollbars even when items.Count == 0
5975         but the columns Width is bigger than the ListView.Width.
5976         Also, when columns.Count == 0 set layout_wd and layout_ht
5977         to the ClientRectangle values, so we don't show any scrollbar
5978         in that case.
5979
5980 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5981
5982         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
5983
5984 2007-03-27  Jackson Harper  <jackson@ximian.com>
5985
5986         * RichTextBox.cs: The RTF library decodes the text properly for us
5987         now.
5988
5989 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5990
5991         * ListView.cs: Display HeaderControl even when columns.Count == 0.
5992         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
5993         ListView header (HeaderControl), instead of Control.BackColor.
5994
5995 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
5996
5997         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
5998         Fixes tab control issues where controls would not show up because they
5999         never received their OnVisibleChanged call.
6000
6001 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6002
6003         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
6004         BalloonTipShown).
6005
6006 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
6007
6008         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
6009         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
6010         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
6011         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
6012         the handle.  Fix WindowState by using the internal variable until we are 
6013         sure that we've been shown.
6014         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
6015         max or min.
6016         [Fixes bug #81198]
6017
6018 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6019
6020         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
6021           (at least borders). Fixes #79386 on Linux (with a small difference
6022           in behaviour: when trying to resize a caption-less window metacity
6023           shows the sysmenu. Resizing is still possible though).
6024         * XplatUIWin32.cs: When setting window styles send request an extra
6025           WM_NCCALCSIZE when it's a form without title (due to no text and no
6026           caption), since Win32 seems to calculate it wrong the first time we
6027           get the message, though the second time things work as they should.
6028         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
6029           newly reparented window might show up unparented. Update
6030           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
6031           there's no title text. Fixes #79386.
6032
6033 2007-03-27  Mike Kestner  <mkestner@novell.com>
6034
6035         * ListBox.cs : don't perform invalidations if the handle hasn't been
6036         created.  [Fixes #80753]
6037
6038 2007-03-27  Mike Kestner  <mkestner@novell.com>
6039
6040         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
6041         [Fixes #80428]
6042
6043 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6044
6045         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
6046         needed to implement Balloon.
6047
6048 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6049
6050         * ListViewItem.cs: In the constructors that take
6051         an array of strings, don't use ListViewSubItemCollection.AddRange
6052         method to add items, since we need to have a different behaviour (in
6053         the constructors we add an item for each null string, opposed to
6054         the behaviour of AddRange, which adds nothing).
6055
6056 2007-03-26  Andreia Gaita  <avidigal@novell.com>
6057
6058         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
6059
6060 2007-03-26  Jackson Harper  <jackson@ximian.com>
6061
6062         * TextControl.cs: Draw and measure line endings when in non
6063         multiline mode.
6064         - When searching the text, count the end of the last line as a
6065         word boundary.
6066
6067 2007-03-26  Jackson Harper  <jackson@ximian.com>
6068
6069         * RichTextBox.cs: The selection_start and selection_end don't
6070         really track the correct tags for the selection. So we'll manually
6071         compute the correct tag here.
6072
6073 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6074
6075         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
6076           and Continuous styles. Fixes #79469.
6077
6078 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
6079
6080         * ToolStrip.cs: Implement Tooltips.
6081         * ToolStripItem.cs: Create internal method for determining tooltip.
6082
6083 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
6084
6085         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
6086
6087 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6088
6089         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
6090         it prevents a problem thak keeps icon visible after application 
6091         closes on win32.
6092
6093 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6094
6095         * NotifyIcon.cs: Balloon properties and methods created.
6096
6097         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6098         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
6099
6100 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
6101
6102         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
6103
6104 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
6105
6106         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
6107         parameter indicates which aspects were explicit/user-set.
6108         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
6109
6110 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
6111
6112         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
6113         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
6114         SmallChange, and Value (2.0).
6115         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
6116
6117 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6118
6119         * ListView.cs: Always set item_control.Width in LayoutDetails
6120         if View is Details. Setting it later in CalculateScrollBars
6121         in a not-so-corner scenario (the sum of columns width is
6122         not bigger than the ListView width when handle is created, and then
6123         that sum gets bigger by increasing the width of the columns)
6124         causes a very weird recursion path (which shouldn't be happening,
6125         since header_control sets it in CalculateScrollBars too). This bug
6126         appeared after Chris' fixes for handle created issues, so probably
6127         it's related to some handle-creation time.
6128
6129 2007-03-23  Chris Toshok  <toshok@ximian.com>
6130
6131         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
6132         case where there's an add row, just so we don't end up in a case
6133         where it's not displayed (this happens when the row is partially
6134         obscured).  Fixes bug #79574.
6135
6136 2007-03-23  Jackson Harper  <jackson@ximian.com>
6137
6138         * TextControl.cs:
6139         * TextBoxBase.cs:
6140         * RichTextBox.cs: Preserve line endings in the lines text buffer,
6141         also added an enum that represents the line ending type. 
6142
6143 2007-03-23  Andreia Gaita  <avidigal@novell.com>
6144
6145         * NumericUpDown.cs: Fix logic so Text and Value properties are not
6146         messed with in every method call, but only from DownButton, 
6147         UpButton, UpdateEditText() and ValidateText. Fixes #80346
6148
6149 2007-03-23  Chris Toshok  <toshok@ximian.com>
6150
6151         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
6152         format objects if the format spec is "".  Fixes bug #80889.
6153
6154 2007-03-22  Miguel de Icaza  <miguel@novell.com>
6155
6156         * ToolStripPanel.cs (Join): added stubs to build PDN3
6157
6158         * Control.cs (AutoScrollOffset): Add.
6159
6160         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
6161         property, its only implemented for Win32, on X11 it defaults to
6162         some hardcoded value.
6163
6164         * ToolStripItem.cs (AllowDrop): Add property
6165
6166 2007-03-22  Mike Kestner  <mkestner@novell.com>
6167
6168         * ListView.cs : in FullRowSelect Details mode, only enable box
6169         selection if the user clicks over the "item" column outside of the
6170         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
6171
6172 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6173
6174         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
6175           handle is not created yet.
6176         * Form.cs: Select: Don't call CreateHandle if the handle is already
6177           created, avoids a stack overflow on Windows when we are recreating
6178           controls.
6179         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
6180           they are made visible, and override AfterTopMostControl to keep
6181           them on top when other controls are brought to front.
6182           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
6183           or force_*scroll_visible is true (old implementation always shows
6184           scrollbars when needed, no matter what auto_scroll was set to).
6185         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
6186           IsHandleCreated check.
6187
6188 2007-03-22  Andreia Gaita  <avidigal@novell.com>
6189
6190         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
6191         row or col separator.
6192         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
6193
6194 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6195
6196         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
6197
6198 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6199
6200         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
6201         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
6202         every time. Fixes #80410.
6203
6204 2007-03-22  Chris Toshok  <toshok@ximian.com>
6205
6206         * BindingSource.cs (AddNew): partially implement.
6207
6208         remove a couple of NotImplementedException's
6209         to get bug #81148 closed.
6210
6211 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6212
6213         [Fixes #80380]
6214         
6215         * Control.cs:
6216         - UpdateCursor method added to update the screen cursor.
6217         - GetAvailableCursor method added to return cursor for enabled tree,
6218         it searches for cursor on control and it's parent's for enabled control.
6219         - Call UpdateCursor method on setter of Cursor property.
6220         - On setter of Enabled call UpdateCursor when it is false, we need to
6221         change cursor to normal (or to this parent cursor) because cursor 
6222         setting theres no effect to disabled controls.
6223         - Some minor source changes to follow the coding style guidelines.
6224
6225         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
6226         controls.
6227
6228 2007-03-22  Chris Toshok  <toshok@ximian.com>
6229
6230         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
6231         generates.
6232
6233 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6234
6235         * XplatUIX11.cs: Implement default locations for forms.
6236         * Form.cs: Completely rework startup location for forms. Fixes #79964.
6237         * Hwnd.cs: Add previous_child_startup_location (to track the current
6238           startup location for any child forms of the current form) and
6239           previous_main_startup_location (to track the startup location for
6240           the current toplevel form).
6241
6242 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6243
6244         * Control.cs: Don't trigger a layout if an implicit control is added
6245         that isn't visible.  Also, don't notify the owner when an implicit control
6246         is added.  (Owners shouldn't even know about their implicit controls.)
6247
6248 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6249
6250         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
6251         to save some re-layouts.
6252
6253 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
6254
6255         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
6256         [Fixes #81203]
6257
6258 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6259
6260         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
6261         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
6262
6263 2007-03-21  Mike Kestner  <mkestner@novell.com>
6264
6265         * ListView.cs : disable selection update for non-left button clicks
6266         with mods and over selected items.  [Fixes #80524]
6267
6268 2007-03-20  Jackson Harper  <jackson@ximian.com>
6269
6270         * TextControl.cs:
6271         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
6272         \r\r\n, \n.
6273
6274 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6275
6276         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
6277           very probably a more complicated calculation there. Update the
6278           textbox' ForeColor and BackColor when the ComboBox' colors are
6279           changed. Change the border change in LayoutComboBox to only affect
6280           the textbox, not all the calculations there. Seems to fix most of
6281           #79436.
6282
6283 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6284
6285         * ComboBox.cs: Handle Home and End keys as well as all combinations of
6286           modifiers + navigation keys as input keys, enables advanced text
6287           selection in the combobox (like Shift+Left Arrow for instance).
6288           ComboTextBox now overrides Focused and returns whatever
6289           ComboBox.Focused returns, since it really should be focused
6290           whenever the ComboBox is. Fixes #80795. Also make the border around
6291           the text box one pixel bigger, as mentioned in #79436.
6292
6293 2007-03-20  Jackson Harper  <jackson@ximian.com>
6294
6295         * TreeView.cs: Don't offset the images, this was causing some
6296         artifacts when expanding/collapsing with images that were the
6297         exact height of the treenode.
6298
6299 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6300
6301         * TrackBar.cs: Query the theme for the correct value when the mouse
6302           moves and the thumb is pressed. 
6303         * Theme.cs: Added TrackBarValueFromMousePosition
6304         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
6305           implementation was updating the trackbar value when drawing, now
6306           the drawing methods only draw. Fixes #80900. Refactored the
6307           calculations out to TrackBarValueFromMousePosition and
6308           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
6309           according to the mouse position whenever it wants to. Changed the
6310           light coloured pen when drawing the thumb from ControlLight to
6311           ControlLightLight, because the ControlLight is the same colour as
6312           the background so the 3D effect is lost. 
6313
6314 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6315
6316         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
6317         defined. Fixes #80784.
6318
6319 2007-03-20  Marek Habersack  <mhabersack@novell.com>
6320
6321         * ContextMenuStrip.cs: align with the change introduced in
6322         revision 74664.
6323
6324 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6325
6326         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
6327         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
6328         in SetTopmost.
6329
6330 2007-03-19  Chris Toshok  <toshok@ximian.com>
6331
6332         * Control.cs (WmPaint): don't make use of the Handle property
6333         after an event is emitted, as the user could have closed the
6334         form/destroyed the control.  Store the Handle in a local variable
6335         and make use of that.  Fixes bug #80768.
6336
6337 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6338
6339         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
6340         behavior in X11 environments.
6341
6342 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6343
6344         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
6345         because on setter of topmost we dont call SetTopmost when handle is not
6346         created.
6347
6348 2007-03-20  Jackson Harper  <jackson@ximian.com>
6349
6350         * TextControl.cs: Need to use SelectionLength () not
6351         selection_length, since that var is reset to -1.
6352         - Draw the caret when we don't have focus.
6353         * TextBox.cs: The selectall actually doesn't occur until the first
6354         focus.
6355         * TextBoxBase.cs: Need to update the caret position after a
6356         selectall.
6357         
6358 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6359
6360         * ListView.cs: Enable scrolling when using Tile view.
6361
6362 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6363
6364         [Fixes #80902]
6365
6366         * XplatUIDriver.cs: Abstract SetOwner method created.
6367
6368         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
6369         must be implemented and was masked as todo.
6370
6371         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
6372         GWL_HWNDPARENT.
6373
6374         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
6375         cheking for null owner to remove transient. The SetTopmost will be change
6376         on a decond step.
6377
6378         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
6379         SetTopmost. Now owned forms will work properly in win32 and X11.
6380
6381 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6382
6383         * MdiWindowManager.cs: Update function name.
6384         * Form.cs: After closing a form MdiParent is always null.
6385         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
6386           better what it should do: necessary book-keeping when the form is
6387           closed, it should not close the form itself.
6388
6389 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6390
6391         * ListViewItem.cs: Fix back and fore color. The subitems only
6392         use their own colors if they are set, otherwise use the listview's
6393         colors. Don't set default colors on constructor for subitem.
6394         Fixes #79315.
6395
6396 2007-03-19  Mike Kestner  <mkestner@novell.com>
6397
6398         * ListView.cs : make box selection for Details views with 
6399         FullRowSelect conform to MS behavior when clicking in the "item" 
6400         column and clicking outside the defined columns.
6401         [Fixes case 5-6 of #80374]
6402
6403 2007-03-19  Chris Toshok  <toshok@ximian.com>
6404
6405         * ScrollableControl.cs: create the controls from within the ctor,
6406         but don't actually add them until our handle is created.  this
6407         fixes a NRE possibility jpobst found (if you override OnLayout in
6408         a subclass, it's called before your ctor).  Also, add a
6409         IsHandleCreated guard to UpdateSizeGripVisibility as well.
6410
6411 2007-03-19  Jackson Harper  <jackson@ximian.com>
6412
6413         * TextBox.cs: Reduce the amount of invalidation we do.
6414         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
6415         some of them are true by default on MS.
6416         - Add some functions to reduce the amount of invalidates we do.
6417         * TextControl.cs: Less invalidation.
6418
6419 2007-03-19  Chris Toshok  <toshok@ximian.com>
6420
6421         [ Fixes #81773, and *seems* to fix #81553 as well ]
6422
6423         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
6424         AccumulateDestroyedHandles.  We need to do it *after* we send
6425         WM_DESTROY, as the user's code can access Control.Handle in
6426         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
6427         move the WM_DESTROY/zombie handling to before the call to
6428         XDestroyWindow.  For some reason without this ordering
6429         FormTest.RecreateHandle hangs.  This ordering is semantically
6430         equivalent, however, as XDestroyWindow is async anyway.
6431
6432 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
6433
6434         * RichTextBox.cs: Reset backcolor_set after setting default.
6435
6436 2007-03-19  Chris Toshok  <toshok@ximian.com>
6437
6438         * ScrollableControl.cs: the scroll position should not effect the
6439         canvas size.  commit patch from georgegiolfan@yahoo.com, which
6440         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
6441         
6442 2007-03-19  Chris Toshok  <toshok@ximian.com>
6443
6444         * ScrollableControl.cs: clean this up a bit.  create the
6445         scrollbars in the ctor and just show/hide them as needed.  Also,
6446         make hscroll_visible/vscroll_visible internal to Recalculate, and
6447         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
6448         everywhere else.  This seems to fix the scrollbars appearing
6449         beneath the content for me (i have *no* idea why that is,
6450         however.)
6451
6452 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6453
6454         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
6455         some redundacy for stuff in Anchor and Dock that base will take care of.
6456         [Fixes #80762]
6457
6458 2007-03-19  Mike Kestner  <mkestner@novell.com>
6459
6460         * ListView.cs : make box selection for Details views without 
6461         FullRowSelect dependent on the text bounds, not item bounds.
6462         * ListViewItem.cs : add an internal property to obtain the TextBounds
6463         in Details view.  [Fixes case 1-4 of #80374]
6464
6465 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6466
6467         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
6468         we're < 2.0. #78448 && #80316
6469
6470 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6471
6472         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
6473         have the same style available as the previously selected one.  Also,
6474         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
6475
6476 2007-03-19  Jackson Harper  <jackson@ximian.com>
6477
6478         * TextControl.cs: Add an alignment property that all new lines
6479         will be given.
6480         - Make sure to use the align shift when calculating the line's X
6481         position.
6482         * TextBox.cs: Set the alignment on the document as well as on all
6483         the document lines.
6484
6485 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6486
6487         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
6488           throw if setting the parent of an mdichild that already has an
6489           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
6490           AssemblyProductAttribute in the assembly, use the type's namespace (as
6491           MS seems to do). CreateControl: don't create the handle if the control
6492           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
6493           create handle if the control is not a form. Change FocusInternal to
6494           virtual so that it can be overriden by Form.
6495         * TextBox.cs: Update call to FocusInternal.
6496         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
6497           form is not a toplevel form when it's a mdi child, so update is_toplevel
6498           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
6499           hasn't been created. Show (IWin32Window): Don't allow this overload for
6500           toplevel windows. CenterToParent/CenterToScreen/Select: create the
6501           handle as MS does. SetVisibleCore: if called on a MdiChild and the
6502           parent isn't visible yet, save the visibility and restore it when the
6503           parent is made visible.
6504         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
6505           methods, since the visibility of the scrollbars can be changed from
6506           several places, not only from AutoScroll.
6507           [Fixes #81179]
6508
6509 2007-03-19  Jackson Harper  <jackson@ximian.com>
6510
6511         * RichTextBox.cs: Enable shortcuts by default.
6512         * TextBoxBase.cs: Add conditional shortcuts.  
6513
6514 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6515
6516         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
6517
6518 2007-03-19  Chris Toshok  <toshok@ximian.com>
6519
6520         [ Fixes bug #80604]
6521         
6522         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
6523         swallow the message we're waiting on, instead of delivering it, as
6524         this is only used for the WM_SHOWWINDOW raised from
6525         MapWindow/UnmapWindow, and the message needs to be generated
6526         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
6527         before doing the Map/Unmap.  Also make sure that the Hwnd is still
6528         alive after the message has been handled.
6529
6530         *before* the window is shown.
6531
6532         * Control.cs (CreateControl): guard a few more things inside the
6533         if (!is_created) block, as we might end up being called again -
6534         yay .net.
6535         (WmShowWindow): call CreateControl if we're showing the control.
6536
6537 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6538
6539         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
6540           controls without a handle if they have any parent with a handle. In
6541           Dispose add a check whether the handle is created or not before
6542           calling BeginInvoke, this removes the need of the extra disposing
6543           parameter (which was bogus anyway since it didn't prevent the
6544           invoke from happening, it only skipped the check for an existing
6545           handle, meaning that the invoke would call on an inexistent
6546           handle).
6547
6548 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6549
6550         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
6551         appears in taskbar.
6552
6553 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6554
6555         * MessageBox.cs:
6556         - Fixed a problem that dont show help button for messages with 3 buttons.
6557         - Refactory button size and position calculations, now dont use fixed 
6558         values, also fixed button sizes (#80043) and form's border space.
6559         - AddButton method created, now all other AddButton methods call this one.
6560         - Some other source code cosmetic changes.
6561
6562 2007-03-18  Jackson Harper  <jackson@ximian.com>
6563
6564         * RichTextBox.cs: Don't do this all fonts must match check if
6565         there is only one char selected.
6566
6567 2007-03-18  Jackson Harper  <jackson@ximian.com>
6568
6569         * TreeView.cs: ScrollWindow works properly now, so we don't need
6570         to screw around with the scroll area.  This fixes some artifacts
6571         when expanding and collapsing.
6572
6573 2007-03-18  Jackson Harper  <jackson@ximian.com>
6574
6575         * TextBoxBase.cs: Allow updating the selection position when the
6576         cursor is outside the textarea, but we have a capture.
6577         * TextControl.cs: A special case for when the cursor is outside
6578         the bounds of the TB.
6579         
6580 2007-03-18  Jackson Harper  <jackson@ximian.com>
6581
6582         * TextBoxBase.cs: Remove image pasting code for now.  There is no
6583         way to get an image on the clipboard right now anyways.
6584         * TextControl.cs:
6585         * RichTextBox.cs: Use the new RTF Picture class for pictures.
6586
6587 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6588
6589         * MessageBox.cs:
6590         - Set window properties in constructor intead of on CreateParams.
6591         - Remove topmost from Window ExStyle.
6592         - Set ShowInTaskbar to false.
6593         - Set form border to FixedDialog.
6594         - Some cosmetic changes and remove unneeded comments.
6595         - It fixes itens 2,3 and 4 of bug #80043.
6596
6597 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
6598
6599         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
6600         none was explicitly set. Fixes part of bug #79949.
6601
6602 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6603
6604         * ToolStripComboBox.cs: Add AutoComplete*.
6605
6606 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6607
6608         * ToolStripComboBox.cs: Add FlatStyle.
6609
6610 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
6611
6612         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
6613         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
6614
6615 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6616
6617         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
6618           CheckBox.cs, RadioButton.cs, BindingSource.cs,
6619           DataGridColumnStyle.cs: Remove warnings.
6620
6621 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6622
6623         * Menu.cs: MergeMenu: Check menu argument for null before looping over
6624           it.
6625         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
6626           visibility of mdi child forms. FormSizeChangedHandler: update the
6627           maximized size if size has changed while maximized.
6628         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
6629           creating the handle.
6630         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
6631           avoid creating the handle if not created.
6632         * XplatUI.cs: Update debug output.
6633         * XplatUIStructs.cs: Added ToString's for a couple of structs.
6634
6635 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
6636
6637         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
6638         ProcessCmdKey().
6639         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
6640         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
6641         Implement keyboard shortcuts.
6642
6643 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6644
6645         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
6646         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
6647         ColorDialog and all derived classes.
6648
6649 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6650
6651         [ Fixes bug #79828 ]
6652
6653         * ToolBar.cs:
6654         - Rename ToolBarButtonInfor to ToolBarItem.
6655         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
6656         - Maintain an array of ToolBarItem, used instead of ToolBarButton
6657         collection to be able add same button more than one time on a toolbar.
6658         - Refactory all properties and methods to use ToolBarItem. 
6659
6660         * ToolBarButton.cs: 
6661         - Remove all propeties and methods that is now in ToolBarItem.
6662         - Rectangle propery now gets the rectangle from first ToolBarItem to
6663         mimic win32 behavior.
6664         - Size calculation and layout methods also removed.
6665
6666         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
6667         ToolBarItem instead of ToolBarButton to right drawing buttons when
6668         same button/separator was added more than one time to ToolBar.
6669
6670         * ThemeNice.cs: Same as above. 
6671
6672 2007-03-15  Andreia Gaita  <avidigal@novell.com>
6673
6674         * XplatUIX11.cs: Fire extra MouseMove events right after
6675         MouseDown and MouseUp, emulating win32's <censored> behaviour
6676         for apps that rely on it.
6677
6678 2007-03-15  Jackson Harper  <jackson@ximian.com>
6679
6680         * TextControl.cs:
6681         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
6682         it is drawn on the controls client window and there is no NC
6683         area.
6684         - Set the background color to gray on 2.0 when we are readonly.
6685
6686 2007-03-15  Chris Toshok  <toshok@ximian.com>
6687
6688         [ Fixes bug #81144 ]
6689         
6690         * XplatUIX11.cs: implement VirtualScreen independently of
6691         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
6692         property.
6693
6694 2007-03-15  Chris Toshok  <toshok@ximian.com>
6695
6696         * Hwnd.cs: add an internal field for the cached_window_state.
6697
6698         * XplatUIX11.cs: cache the window state, invalidating the cache
6699         (and thus re-querying the X server) only when we see an update to
6700         the _NET_WM_STATE property.
6701
6702 2007-03-15  Chris Toshok  <toshok@ximian.com>
6703
6704         * BindingSource.cs: get a lot of the unit tests working.
6705
6706 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6707
6708         * Control.cs: Modify UpdateStyles to store distances when bounds >=
6709         0 instead of just bounds > 0.  [Fixes bug #80912]
6710
6711 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6712
6713         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
6714         and methods.
6715
6716 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
6717         
6718         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
6719         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
6720         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
6721         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
6722
6723 2007-03-15  Chris Toshok  <toshok@ximian.com>
6724
6725         [ Fixes #81101 ]
6726         
6727         * Control.cs: add Ivan's fix for 81101, with a slight modification
6728         - you can set control.Target to null.
6729
6730 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
6731
6732         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
6733         HideDropDown, use Hide instead to prevent an NRE.
6734         [Fixes bug #81147]
6735
6736 2007-03-14  Jackson Harper  <jackson@ximian.com>
6737
6738         * TextBoxBase.cs: Mess with the creation stuff a little. We need
6739         to calculate the document before the handle is created, in some
6740         cases. (Actually just one case).
6741
6742 2007-03-14  Jackson Harper  <jackson@ximian.com>
6743
6744         * TextBoxBase.cs: Need to display the caret after letting the base
6745         wndproc handle the focus methods, because the caret display
6746         methods check the focus state.
6747         - Try to display the caret after updating it's position with SelectWord.
6748         - Don't need to do an immediate update on this recalc, since there
6749         will be an invalidate anyways.
6750
6751 2007-03-14  Jackson Harper  <jackson@ximian.com>
6752
6753         * TreeView.cs: Some workarounds so that we can match event order a
6754         little better.
6755
6756 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
6757
6758         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
6759         #80803. Avoid NullReferenceException when Control does not have
6760         parent. Fixed different blinkstyle issues. Only subscribe to Tick
6761         event a single time. Only draw error icon when control is created and
6762         visible. Fixes failing unit tests.
6763
6764 2007-03-14  Andreia Gaita  <avidigal@novell.com>
6765
6766         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
6767         Selecting events. Fire Leave and Enter events when changing tabs.
6768
6769 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
6770
6771         * TreeView.cs: Add TreeViewNodeSorter.
6772         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
6773
6774 2007-03-14  Chris Toshok  <toshok@ximian.com>
6775
6776         * Form.cs: go ahead and remove the RecreateHandles that jpobst
6777         removed earlier and I had him add back it.  It turns out metacity
6778         *does* in fact handle the MOTIF_WM_HINTS property changing, it
6779         just doesn't redraw the window titlebar until you resize the
6780         window.  This also means we aren't recreating the entire window
6781         hierarchy on X when you change this property.  And it looks better
6782         on windows, too.
6783
6784 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6785
6786         * ListViewItem.cs:
6787         * ListView.cs: Collecting selection information
6788         is now done in SelectedIndexCollection rather than in
6789         SelectedListViewItemCollection. This is done so we can
6790         have the selection information code in one single place
6791         (virtual mode selection information entirely depends on
6792         SelectedIndexCollection).
6793
6794 2007-03-13  Miguel de Icaza  <miguel@novell.com>
6795
6796         * ErrorProvider.cs: Add stubs for ISupportInitialize
6797
6798 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6799
6800         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
6801         in the right order with the right values, from the Checked property, 
6802         just as MS does (instead of triggering them from ListView).
6803
6804         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
6805
6806 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6807
6808         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
6809         the correct handler in OnItemCheck method (ItemCheckEventHandler 
6810         instead of EventHandler). This used to throw an InvalidCastException.
6811
6812 2007-03-13  Jackson Harper  <jackson@ximian.com>
6813
6814         * TextBoxBase.cs: Calculate the document before the handle is
6815         created, so there isn't an extra invalidate called.
6816
6817 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
6818
6819         * Form.cs: Don't set owner in ShowDialog until we are sure
6820         that we aren't going to throw an exception.  [Fixes bug #80773]
6821
6822 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
6823
6824         * TreeView.cs: Make it compile.
6825
6826 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6827
6828         * Control.cs: Another place we don't call SizeFromClientSize.
6829         * Form.cs: Another place we don't call SizeFromClientSize.
6830         [Fixes bug #81125]
6831
6832 2007-03-12  Jackson Harper  <jackson@ximian.com>
6833
6834         * TreeView.cs: Basically emulating some strangness here with
6835         exanding nodes and setting node positions when windows aren't
6836         created.
6837         - Also attempting to walk the node tree less than previously, and
6838         just use visible order calculations for determining offsets.
6839         - oops made scrolling backwards.
6840         * TreeNode.cs: We need to start nodes with a zero visible order,
6841         because the order calcs are based on the first nodes order.
6842
6843 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6844
6845         * Form.cs: Don't exit the program if RecreateHandle is called on
6846         the main form.
6847
6848 2007-03-12  Chris Toshok  <toshok@ximian.com>
6849
6850         * XEventQueue.cs: remove the use of PostQuitState.
6851
6852         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
6853         WM_QUIT message in GetMessage, return false (and if we're in the
6854         nested WaitForHwndMessage, repost the WM_QUIT message).
6855
6856 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6857
6858         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
6859         or the MaximizeBox properties.  [Part of bug #80640]
6860
6861 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
6862
6863         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
6864         no links.
6865
6866 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6867
6868         * ToolStripItem.cs: Fix some tests I broke by checking Visible
6869         instead of visible.
6870
6871 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
6872
6873         * FileDialog.cs: Use text of File name combobox to determine what
6874         files the user selected. Added tokenizer to parse the file names.
6875         Fixes bug #81123.
6876
6877 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6878
6879         * Control.cs: We can't call SizeFromClientSize in the constructor,
6880         but we still need to do the same work, so make an internal version.
6881         [Fixes bug #80621]
6882
6883 2007-03-12  Jackson Harper  <jackson@ximian.com>
6884
6885         * TreeView.cs:
6886         * TreeNode.cs:
6887         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
6888         IsExpanded.
6889
6890 2007-03-12  Jackson Harper  <jackson@ximian.com>
6891
6892         * TextBoxBase.cs: Now that the handles are being created a little
6893         later, we need to make sure that the document is recalculated when
6894         the handle is created.
6895
6896 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
6897
6898         * Theme.cs: GetLinkFont abstract method added.
6899         
6900         * LinkLabel.cs: 
6901         - Remove CalcTrimRectangle, no longer needed.
6902         - Factor also remove, position issues must be fixed in libgdiplus.
6903         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
6904         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
6905         care about font used to draw links.
6906         - Set TabStop to true when control is "Selectable", control is selectable
6907         when have one or more links. Fixes #80501 (test case is also added).
6908         - Set the LinkArea values after links change, LinkArea values must be
6909         based in first link position and size, a test case was created.
6910         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
6911         the attribute must be true LinkArea.Length > 0. The same was applied to
6912         TabStop.
6913         
6914         * ThemeWin32Classic.cs: 
6915         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
6916         in draw method.
6917         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
6918         color change.
6919         - Draw focus rectangle for every parts focused, including parts that 
6920         is on another line, its because regions returns various rectangles
6921         and not only one. Needed to mimic W32 look.
6922         - Uses Graphics.Clip to delimite region painted, it mean that now 
6923         complete text is passed to DrawString, with this we solve layout
6924         issues without create another text renderer.
6925         - Uses Region.Intersect to fix some flickers problems, now only needed
6926         parts will redrawed.
6927         - This changes fixes #79614 and some other unreported issues, on Linux 
6928         some layout problems still remain, the problem is under 
6929         MeasureCharacterRanges but it is an libgdiplus bug.
6930
6931 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
6932
6933         * TextBox.cs: Set for foreground color.
6934         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
6935         this is already done in Control.
6936
6937 2007-03-10  Jackson Harper  <jackson@ximian.com>
6938
6939         * TextBox.cs: Set the background color, but reset the
6940         backcolor_set flag which is just for the user setting the
6941         background color.
6942
6943 2007-03-09  Chris Toshok  <toshok@ximian.com>
6944
6945         * Control.cs: really remove the call to XplatUI.SetVisible from
6946         CreateHandle(), like I said I did when I merged the branch.
6947
6948         * BindingSource.cs: implement some more of this stuff.
6949
6950 2007-03-09  Jackson Harper  <jackson@ximian.com>
6951
6952         * TextBox.cs: Don't explicitly set our background colors.
6953         * TextControl.cs:
6954         * TextBoxBase.cs: Draw readonly text.
6955         - Need to invalidate when backcolor or readonly are changed.
6956         
6957 2007-03-09  Jackson Harper  <jackson@ximian.com>
6958
6959         * TextBoxBase.cs: Don't set the forecolor until the handle is
6960         created.
6961         - Do not raise OnPaint, and removed some old debug code.
6962
6963 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
6964
6965         * ScrollableControl.cs: Fix mouse wheel scrolling.
6966
6967 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
6968
6969         * Control.cs: Wire up MouseDoubleClick event.
6970
6971 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
6972
6973         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
6974         top or bottom.
6975         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
6976         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
6977         item is added.  This logic was moved to ToolStrip.OnItemAdded.
6978         [Fixes bug #81090]
6979
6980 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6981
6982         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
6983
6984 2007-03-08  Jackson Harper  <jackson@ximian.com>
6985
6986         * TreeView.cs: Show the correct image for selected node (this used
6987         to work, not sure how the code got deleted). Also implemented 2.0 feature
6988         SelectedImageKey.
6989
6990 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6991
6992         * ListView.cs:
6993         * ListViewItem.cs: Cache index in items when retrieving them
6994         in VirtualMode.
6995
6996 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6997
6998         * ToolStripItem.cs: Don't return the explicit_size if we are using 
6999         AutoSize.  Fixes invalidation issue when user has explicitly set a
7000         size and has AutoSize = true.
7001
7002 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7003
7004         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
7005
7006 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7007
7008         * DataGridView.cs: Remove event handler from DataView when a
7009         DataTable is used as DataSource.
7010
7011 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7012
7013         * Control.cs: Create internal setter for client_size to allow it to be
7014         set without triggering resizing code.
7015         * Form.cs: Calculate client_size in constructor, only change client_size
7016         in FormBorderStyle property if Handle has been created.
7017         [Fixes #80574, #80791]
7018
7019 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
7020
7021         * SystemInformation.cs: Add TerminalServerSession.
7022
7023 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7024
7025         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
7026         TreeView code.
7027
7028 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7029
7030         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
7031         Handle before we were supposed to.  Now checks ActivateOnShow property
7032         in Control.
7033         * Control.cs: Add internal ActivateOnShow property.
7034         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
7035         for ActivateOnShow.
7036         * Hwnd.cs Remove no longer needed no_activate field.
7037
7038 2007-03-07  Jackson Harper  <jackson@ximian.com>
7039
7040         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
7041         2.0 properties
7042         * DrawTreeNodeEventHandler.cs: Add
7043         * DrawTreeNodeEventArgs.cs: Correct default value.
7044         
7045 2007-03-07  Chris Toshok  <toshok@ximian.com>
7046
7047         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
7048         to be called before NativeWindow.WndProc.  Put the HwndCreating
7049         magic there to hook up our Hwnd's to handles.
7050
7051 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
7052
7053         * DataGridView.cs: Comment out debug code.
7054
7055 2007-03-07  Chris Toshok  <toshok@ximian.com>
7056
7057         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
7058         to make the rest of the world happy]
7059
7060         * Control.cs (CreateHandle): there's no need to call
7061         XplatUI.SetVisible here, it's effectively done by
7062         XplatUI.CreateWindow on X now, and always was on windows.
7063
7064         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
7065         shortcircuit out of the loop if we have a message loop running on
7066         this thread.
7067
7068         [Changelog from merge]
7069
7070         2007-03-05  Chris Toshok  <toshok@ximian.com>
7071
7072                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
7073                 causes handle creation.
7074
7075         2007-02-28  Chris Toshok  <toshok@ximian.com>
7076
7077                 * ApplicationContext.cs: Add a flag to make sure we only raise the
7078                 ThreadExit event once (ExitThreadCore can be indirectly called
7079                 from a few places.)  I don't like the additional flag, but it
7080                 makes the event ordering/count correct.
7081
7082                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
7083                 without locking the collection.  An enumerator doesn't give us any
7084                 protection from modification anyway.  Lock the thread hash and
7085                 replace the complicated enumerator loop with a foreach.
7086                 (Application.CloseForms): make internal so it can be called from
7087                 ApplicationContext.  This should probably be moved to MWFThread.
7088                 (Application.ExitThread): don't call MWFThread.Current.Exit()
7089                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
7090                 when the runloop exits (in response to WM_QUIT.)
7091                 (Application.RunLoop): add a comment (and check) for
7092                 context.MainForm being null after setting context.MainForm.Visible
7093                 = true.  This is because you're perfectly free to dispose of a
7094                 form in VisibilityChanged.  Chalk this up to another case where we
7095                 need to synchronously generate WM_ACTIVATE from Control.Show.
7096                 Also, add handling for WM_QUIT here so we'll exit the loop.
7097                 
7098                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
7099                 fact that we don't wait if we're only unmapping the whole_window
7100                 makes me a bit nervous, but it doesn't seem to cause any problems
7101                 yet.
7102
7103                 also, add a comment about the stupid, broken and wrong resetting
7104                 of PostQuitState to false in GetMessage().
7105
7106                 In PostQuitMessage, we need to add a WM_QUIT message to the
7107                 thread's queue.  We use the FosterParent to get the right
7108                 handle/hwnd/queue.
7109
7110                 Lastly, in SetVisible, we need to unmap both windows, since the
7111                 waiting only happens when we're unmapping the client window.  So
7112                 now, the *only* time we unmap just the whole_window is in the hack
7113                 for resizing a control to 0,0.
7114                 
7115         2007-02-21  Chris Toshok  <toshok@ximian.com>
7116
7117                 * Application.cs (CloseForms): rewrite this so that we don't
7118                 modify the list while we're traversing it.
7119
7120         2007-02-20  Chris Toshok  <toshok@ximian.com>
7121
7122                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
7123                 of OnHandleCreated.
7124                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
7125                 handle is created.  otherwise we'll create it here.
7126                 (VerticalScrollEvent): same here.
7127
7128                 * Application.cs (CloseForms): call Form.Dispose, don't post
7129                 WM_CLOSE_INTERNAL.
7130
7131                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
7132                 here. Application should Dispose() of the Form's.
7133
7134                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
7135                 WM_DESTROY as well.
7136                 (MapWindow,UnmapWindow): only actually do the waiting for
7137                 SHOWWINDOW if the control we're dealing with is a Form.
7138                 (CreateWindow): if the control isn't a form, SendMessage
7139                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
7140
7141                 * Control.cs (SetVisibleCore): always use is_visible here, not
7142                 value.  If we use value, we can end up re-setting something
7143                 visible if, for instance, you do Control.Hide() in a delegate
7144                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
7145
7146         2007-02-20  Chris Toshok  <toshok@ximian.com>
7147
7148                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
7149                 the message we need.  PeekMessage returning false should not be a
7150                 condition under which we exit the loop.
7151
7152         2007-02-15  Chris Toshok  <toshok@ximian.com>
7153
7154                 * Control.cs (Refresh): only refresh if we've got a handle and are
7155                 visible.
7156                 (CreateAccessibilityInstance): CreateControl() here.
7157                 (UpdateChildrenZOrder): complicate the code loop even more by
7158                 taking into account controls that haven't had their handle
7159                 created, and those that aren't visible.  But on the flip side,
7160                 simplify the code by splitting it into two loops.  one which
7161                 builds up the list of child controls we're interested in, and the
7162                 other that sets the z order of those children.
7163
7164         2007-02-14  Chris Toshok  <toshok@ximian.com>
7165
7166                 * Control.cs: Control.AccessibilityObject causes the control to be
7167                 created, not just the handle.
7168
7169         2007-02-14  Chris Toshok  <toshok@ximian.com>
7170
7171                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
7172                 problem on X where a window might have its handle created (and be
7173                 visible) while the window is unmapped.  calling XConfigureWindow
7174                 on an unmapped window is bad, and generates X errors.
7175
7176         2007-02-13  Chris Toshok  <toshok@ximian.com>
7177
7178                 * Control.cs (CreateHandle): don't loop over our children setting
7179                 their parent here.  do it when in WndProc when we're shown.
7180                 (UpdateChildrenZOrder): make this internal so we can call it from
7181                 ScrollableControl.
7182                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
7183                 creating its handle.  Also, remove the calls to PerformLayout from
7184                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
7185                 OnVisibleChanged only seems to be called directly here for the
7186                 toplevel control.  It's propagated down the window hierarchy by
7187                 calls to child.OnParentVisibleChanged.
7188                 (OnVisibleChanged): don't do layout here - it's done (oddly
7189                 enough, according to a glance at stack traces on ms.net..) in
7190                 ScrollableControl.
7191                 
7192                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
7193                 z order of our children before calling PerformLayout.
7194
7195         2007-02-12  Chris Toshok  <toshok@ximian.com>
7196
7197                 [big change, fixes #80020]
7198                 
7199                 * AccessibleObject.cs: we need to make owner internal again to fix
7200                 some of ControlAccessibleObject.
7201
7202                 * Control.cs: lots of changes here.  add support for WM_CREATE,
7203                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
7204                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
7205                 we create child controls.  leave the MonoTODO's for the
7206                 accessibility calls, but fix the exceptions so the tests pass.
7207
7208                 Add the InvalidOperationExceptions to Invoke methods, and remove a
7209                 couple of InvokeInternal methods we aren't using.
7210                 
7211                 Also, add a couple of CreateHandle calls in places where we know
7212                 the handles are being created but our code doesn't reference
7213                 .Handle.
7214
7215                 Make SetVisibleCore call OnVisibleChange if the handle isn't
7216                 created.  If the handle is created, we rely on XplatUI.SetVisible
7217                 generating the event synchronously.
7218                 
7219                 Lastly, make sure we don't use this.Handle inside CreateHandle,
7220                 because we can call back into client (and that code can dispose of
7221                 the control).
7222
7223                 * XplatUIStructs.cs: misc/cleanup.
7224
7225                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
7226                 although we don't populate the wParam properly.
7227                 (CreateWindow): generate WM_CREATE.
7228                 (MapWindow,UnmapWindow): make these calls synchronous, at great
7229                 performance expense (particularly in the unmap case), to match
7230                 win32 behavior.
7231
7232                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
7233                 to call it.
7234                 (set_MdiParent): don't recreate the handle unless it's been
7235                 created already.
7236                 
7237                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
7238                 it's created.
7239
7240                 * NativeWindow.cs: this is probably the weirdest part of the
7241                 patch.  We need a way to link up the window being created to the
7242                 WM_CREATE message.  Since we can only be creating one window at a
7243                 time on a given thread, we keep track of a per-thread reference so
7244                 we can dispatch it properly.  We also need to keep track of the
7245                 Hwnd currently being created so that the win32 backend doesn't
7246                 have problems.
7247                 
7248                 * XplatUIWin32.cs: a similar change to the one we made in
7249                 NativeWindow.cs.
7250
7251 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7252
7253         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
7254         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
7255         to draw the menu shortcut string.
7256
7257 2007-03-07  Jackson Harper  <jackson@ximian.com>
7258
7259         * TreeNode.cs: Add the 2.0 collapse method.
7260
7261 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7262
7263         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
7264
7265 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7266
7267         * DataGridView.cs: Change DataSource will clear column and row
7268         lists. Call Invalidate() to reflect DataSource change.
7269
7270 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7271
7272         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
7273         and a new row is added to it.
7274
7275 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7276
7277         * DataGridView.cs: Add columns when DataSource is en empty list but
7278         is a System.Data.DataView (from a System.Data.DataTable).
7279
7280 2007-03-06  Andreia Gaita  <avidigal@novell.com>
7281
7282         * Label.cs: Implement AutoEllipsis (2.0)
7283
7284 2007-03-06  Jackson Harper  <jackson@ximian.com>
7285
7286         * TreeView.cs: Implement 2.0 TopNode setter property.
7287         - Use a local var instead of the skipped_nodes field for computing
7288         how many nodes to skip.  Otherwise we won't scroll because the
7289         valuechanged handler checks if skipped_nodes is equal to the new
7290         value.
7291         - Implement 2.0 Sort method.
7292         - Add useless 2.0 DoubleBuffer property
7293         - Implement 2.0 LineColors property.  Lets you change the color of
7294         the lines in the tree. Terribly useful for creating non cohesive
7295         desktops.
7296         - Implement 2.0 image key feature.
7297
7298 2007-03-06  Jackson Harper  <jackson@ximian.com>
7299
7300         * TreeView.cs: We can't get the bounds of the nodes before raising
7301         the AfterSelect event, because that event could change the node's
7302         bounds (scrolling, font change, etc).
7303
7304 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7305
7306         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
7307         * Form.cs: Don't recreate handle when creating FormWindowManager, just
7308           update window styles. In CreateParams us VisibleInternal instead of
7309           VIsible to get the actual visible flag set for this form.
7310         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
7311           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
7312           handle the case when the form is already maximized, in which case
7313           it should be restored. Fixes #81043.
7314
7315 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7316
7317         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
7318
7319 2007-03-05  Jackson Harper  <jackson@ximian.com>
7320
7321         * TreeViewHitTestInfo.cs: implement.
7322
7323 2007-03-05  Jackson Harper  <jackson@ximian.com>
7324
7325         * InternalWindowManager.cs: class status fix.
7326
7327 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7328
7329         * InternalWindowManager.cs: All windows that have a parent
7330         are confined to their parent when they're being moved.
7331         Fixes #80822.
7332
7333 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
7334
7335         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
7336         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
7337
7338 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7339
7340         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
7341           buttons invisible before deciding which ones should be visible
7342           (fixes minimize/maximize buttons showing up in toolwindows). Remove
7343           an unused variable.
7344         * InternalWindowManager.cs: Remove warning.
7345
7346 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7347
7348         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
7349         to throw an InvalidOperationException is virtual mode is being used.
7350
7351 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7352
7353         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
7354         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
7355         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
7356         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
7357         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
7358         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
7359
7360 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7361
7362         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
7363           driver.KeyboardDelay from XplatUI.KeyboardDelay 
7364         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
7365           (patch by Sergey Volk)
7366
7367 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7368
7369         * ToolWindowManager.cs: Added, contains logic for
7370           tool windows.
7371         * CreateParams.cs: Add a few helper methods and an
7372           internal variable to know which control the CreateParams belongs
7373           to.
7374         * Control.cs: Call Form.ChangingParent when the
7375           parent is about to be changed.
7376         * XplatUIX11.cs: DeriveStyles (): Set
7377           caption_height for all windows that have captions and are children.
7378           Update to use ToolWindowManager instead of InternalWindowManager
7379           for ToolWindows.
7380         * XplatUIWin32.cs: Set fake window styles for all
7381           windows that have window managers.
7382         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
7383           now duplicated for mdi windows when they are
7384           maximized, first for the buttons the window itself has, then for
7385           the buttons that appear in the menu bar. Makes things a little
7386           easier). Updated UpdateWindowDecorations, SetWindowState and the
7387           mouse eventhandlers accordingly.
7388         * Form.cs: Add ChangingParent (), contains the
7389           logic of what should happen when the parent changes. In MdiParent
7390           don't set things that ChangingParent () is doing. When handling
7391           WM_CLOSE, we can close the form if there are any other modal forms
7392           and the current form is a descendent of the modal form.
7393         * InternalWindowManager.cs: A lot of refactoring,
7394           the title buttons are now extracted to a separate container class
7395           that takes care of all button code (clicks, tooltips, etc). Moved
7396           Iconic|Maximized|Normal Bounds properties to this class from
7397           MdiWindowManager, so that the window state logic can succeed for
7398           other than mdi wm's. Implemented general window state change logic.
7399           Moved CreateButtons to ThemeWin32Classic, since the theme might
7400           override which buttons are available when as well as the exact
7401           location.
7402         * FormWindowManager.cs: Added, contains logic for
7403           normal forms.
7404         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
7405           which buttons go where (and if they are at all visible). 
7406           Removed special handling of maximized windows, since they aren't special. 
7407           In DrawManagedWindowDecorations don't try to draw the text if it is
7408           empty.
7409         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
7410           use whatever the wm gives us.
7411
7412 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7413
7414         * ButtonBase.cs: Add 2.0 properties.
7415         * Button.cs: Override Draw for 2.0.
7416         * Control.cs: Add Entered and Selected properties.
7417         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
7418         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
7419         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
7420         buttons.
7421         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
7422
7423 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7424
7425         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
7426
7427 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7428
7429         * XplatUIWin32.cs: Register a new class with Windows each time we get
7430         a new ClassStyle.  [Fixes bugs #79432, #80817]
7431         * Controls.cs: Set the correct ClassStyle in CreateParams.
7432         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
7433
7434 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
7435
7436         * ListView.cs: Add fireEvent argument to ReorderColumn since the
7437         ColumnReordered event must not be signaled when modifying DisplayIndex
7438         of a ColumnHeader. Added internal ReorderColumns method which takes
7439         care of drawing, and updating the internal DisplayIndex of the
7440         ColumnHeader. Added AddColumn method which is invoked from
7441         ColumnHeaderCollection when adding or inserting columns, and which
7442         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
7443         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
7444         Recalculated dispay indices after removing a ColumnHeader.
7445         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
7446         match MS. Allows last display index to be returned after ListView
7447         is disposed. Update actual location of ColumnHeader when DisplayIndex
7448         is modified.
7449
7450 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
7451
7452         * LinkLabel.cs: Improve CalcTrimRectangle.
7453         
7454         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
7455
7456 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7457
7458         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
7459         get rectangle as a result value.
7460
7461 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7462
7463         * LinkLabel.cs: Theres some diferences between rectangle return from 
7464         MeasureCharacterRanges and the area used for DrawString to fix this 
7465         CalcMeasurementFactor method was created, it calcules the diferences
7466         to be use later to adjust rectangle in draw operations. Fixes #80473.
7467         
7468         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
7469         to adjust draw rectangle.
7470
7471 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7472
7473         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
7474         text and some other changes to reduce and optimize source code.
7475
7476 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7477
7478         * RadioButton.cs: Implement 2.0 event.
7479         * RelatedImageListAttribute.cs: Implement new class.
7480
7481 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7482
7483         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
7484
7485 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7486
7487         * CheckBox.cs: Implement 2.0 functionality.
7488
7489 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7490
7491         * ListView.cs: Refactor Add and AddRange methods of
7492         ListViewItemCollection, to not update the ListView
7493         everytime an item is added in AddRange. Also move the update
7494         code to a new CollectionChanged method, and call it
7495         from other methods that need it as well (this should also fix some
7496         bugs when Sorting is used).
7497
7498 2007-02-27  Jackson Harper  <jackson@ximian.com>
7499
7500         * TextControl.cs: Try to never let the caret stay in a non-text
7501         tag.
7502         * TextBoxBase.cs: Update the caret.
7503
7504 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
7505
7506         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
7507         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
7508         delete POINT structure, duplicate of one in XplatUIStructs.
7509         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
7510
7511 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
7512
7513         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
7514         edit box since otherwise the Label would immediately be set (even if
7515         the user did not modify the label). In OnKeyDown set Handled to true
7516         if Return or Escape was pressed. In ColumnHeaderCollection unlink
7517         columns that are to be removed. In ListViewItemCollection unlink items
7518         that are to be removed.
7519
7520 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
7521
7522         * TextRenderer.cs: If we set a GDI clip region, we need to clear
7523         it when we are done.  [Fixes bug #80949]
7524
7525 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7526
7527         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
7528
7529 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7530
7531         * ListView.cs: I forgot to commit the changes for ListView 
7532         in my previous patch.
7533
7534 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7535
7536         * Clipboard.cs: Partially implement an overload of SetDataObject.
7537         * Form.cs: Implement ShowWithoutActivation.
7538         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
7539
7540 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7541
7542         This is a first set of changes to make the Virtual mode works,
7543         by avoiding the retrieval of ListViewItem instances until
7544         draw time.
7545
7546         * ListView.cs: Store item position in the ListView instead of the
7547         ListViewItem, this way we don't request the Bounds property of
7548         ListViewItem inside the ListView calculations, as well as cache the item
7549         size in item_size field. Store indexes instead of ListViewItem
7550         instances in the matrix used by icon view. Add a ItemMatrixLocation
7551         struct to hold the row and col info of the matrix info.
7552
7553         * ListViewItem.cs: Don't store the location anymore, and only cache
7554         the rectangles for GetBounds. Use the ListView.GetItemLocation
7555         method to retrieve the actual location.
7556
7557 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7558
7559         * TextRenderer.cs: Add clipping support, thanks to George.
7560         [Fixes bug #80949]
7561
7562 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7563
7564         * ListViewItem.cs: Cancel label edit when item is removed from 
7565         ListView.
7566         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
7567         event before the edit textbox is displayed.  Added CancelEdit method
7568         which is used end to editing while ignoring the value set by the
7569         user. In EndEdit, set focus to ListView to avoid losing focus to
7570         other controls. In ListViewItemCollection.Clear, cancel editing of
7571         any of the items.  In Remove, cancel editing of item being removed.
7572         Avoid udplicate code by modifing RemoveAt to invoke Remove.
7573
7574 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7575
7576         * FileDialog.cs: Update FSEntry when move is successful. Fixes
7577         bug #80948.  
7578
7579 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7580
7581         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
7582         compatible with non X11 systems. Fixes #80901.
7583
7584 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7585
7586         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
7587         whether the item should be unselected and reselect. We do no want this
7588         when we're starting to edit the label. Do not fire the 
7589         SelectedIndexChanged event from ListView when its already been fired
7590         by modifying ListViewItem.Selected. Fixes bug #80943.
7591
7592 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7593
7594         * TextRenderer.cs: Previos commit logic was backwards.
7595
7596 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7597
7598         * TextRenderer.cs: Don't add padding on MeasureText if we were
7599         sent the NoPadding flag.
7600
7601 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7602
7603         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
7604         after DrawButton. To prevent image overlaps button borders SetClip and 
7605         ResetClip added before and after draw image. Fixes #79129.
7606
7607 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7608
7609         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
7610         window size, it fix problem when you run under win32 that theres
7611         Size diferent than ClientSize. Also fix controls size and positions
7612         to mimic Win32. Fixes #80837.
7613
7614 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
7615
7616         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
7617         menu area to fix some problems for non X11 systems. Fixes #80613.
7618
7619 2007-02-22  Jackson Harper  <jackson@ximian.com>
7620
7621         * TreeNode.cs: When a node is expanded, set its is_expanded flag
7622         even if it doesn't have any children.
7623
7624 2007-02-22  Jackson Harper  <jackson@ximian.com>
7625
7626         * TreeView.cs: Calculate the top node 'on the fly', this
7627         eliminates issues where you need to click on the tree before
7628         scrolling it to get the top node computed correctly.
7629         * TreeNodeCollection.cs: We don't need to mess with the top node
7630         anymore.
7631
7632 2007-02-22  Jackson Harper  <jackson@ximian.com>
7633
7634         * DataGridViewRow.cs: Fix typo so height can actually be set.
7635         Patch by Peter Grimm.
7636
7637 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7638
7639         * FileDialog.cs: Fixed support for renaming files and directories.
7640         * ListView.cs: Do not lose focus when edit is canceled. Process
7641         Escape as regular key (to prevent closing of dialogs).
7642
7643 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7644
7645         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
7646         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
7647
7648 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7649
7650         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
7651         did not modify label.
7652         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
7653         modified the text. Reset Label when user presses Escape in edit mode.
7654         Move focus to ListView after having cancelled or finished editing the
7655         label.
7656
7657 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
7658
7659         * ComboBox.cs: Removed unnecessary initializations. Marked items field
7660         private. Clear textbox when Text is set to null and SelectedIndex is
7661         already -1.
7662         * FileDialog.cs: Removed unnecessary initializations. Removed 
7663         workarounds for ComboBox bugs that are now fixed. Modified
7664         DefaultExt, InitialDirectory and Title property to change null to
7665         zero-length string in getters. Avoid directly accessing fields.
7666
7667 2007-02-20  Jackson Harper  <jackson@ximian.com>
7668
7669         * TextControl.cs: Remove RecalAlignments call, that was some
7670         debugging leftovers.
7671         - Don't use the line indent when we shouldn't.
7672         * RichTextBox.cs: Add support for paragraph left indents.
7673
7674 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7675
7676         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
7677         Seems like the class status pages doesn't catch params differences.
7678
7679 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7680
7681         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
7682
7683 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7684
7685         * ComboBox.cs: Setting Text should have no effect if item text of
7686         selected item exactly matches value. First lookup text using
7687         case-sensitive comparison, and fallback to case-insensitive comparison.
7688         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
7689         allow startIndex to be last index. Changed ArgumentOutOfRangeException
7690         paramname to match MS. Restart from first item if string is not found
7691         after startIndex. Fixed paramname of ArgumentNullException that is
7692         thrown for null value in ObjectCollection.Contains.
7693
7694 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7695
7696         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
7697
7698 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7699
7700         * ListControl.cs: In SelectedValue use value.Equals to compare for
7701         equality instead of ==, otherwise it will fail for strings.
7702         Fixes #80794.
7703
7704 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7705         
7706         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
7707         since the caret won't show up unless ShowSelection is true. 
7708         Fixes #80795.
7709
7710 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7711
7712         * Application.cs: When disabling all forms but the main form, do not
7713           disable any descendants of the main form (such as mdi children or
7714           other parented forms). Fixes #80822 on Windows.
7715         * Form.cs: If we have a parent, set the WS_CHILD style.
7716         * Control.cs: Update the window styles if the control whose parent has
7717           changed is a form (the WS_CHILD style has to be switched).
7718
7719 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7720
7721         * XplatUIStructs.cs: MsgUIState structure added.
7722
7723 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7724
7725         * FileDialog.cs: Removed need for separate fileName field. On 2.0
7726         profile, do not check filename(s) for illegal character if filename(s)
7727         were set non-interactively but always check on 1.0 profile. Fixed NRE
7728          in DefaultExt and only strip off first leading dot. Improve exception
7729         message when invalid Filter is set. Do not ignore InitialDirectory if
7730         it does no exist. Store specified Title, and if empty use default
7731         title (depending on type of dialog). Added an internal DialogTitle 
7732         property for retrieving dialog title. Fixed logic of displayed dir to
7733         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
7734         string as its buggy.
7735         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
7736         FileName is a zero-length string (it can never be null). Override 
7737         DialogTitle property to set default title of dialog box.
7738         * SaveFileDialog.cs: Override DialogTitle property to set default
7739         title of dialog box.
7740
7741 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7742
7743         * FileDialog.cs: Modify default text of filename and filetype labels
7744         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
7745         after we've updated the SelectedIndex. Fixes part of bug #80887.
7746         * SaveFileDialog.cs: Set text of filetype label.
7747
7748 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7749
7750         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
7751         label field. Needed by latest Jackson's fixes for ListView.
7752
7753 2007-02-16  Andreia Gaita  <avidigal@novell.com>
7754
7755         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
7756         print preview images.
7757
7758 2007-02-16  Jackson Harper  <jackson@ximian.com>
7759
7760         * ListView.cs: Make AfterLabelEdit work correctly.
7761         * FileDialog.cs: After changing the name of the folder, we have to
7762         make sure that it is created, or that we pop up an error because
7763         it already exists.
7764
7765 2007-02-16  Jackson Harper  <jackson@ximian.com>
7766
7767         * X11Dnd.cs: Implement aliases on mime handlers, so things like
7768         System.String are mapped to text.
7769         - Handle dataobjects, getting all the possible formats out of them
7770         - We dont need the drag event args before we give feedback. This
7771         allows feedback cursors to be immediate before selections have
7772         been converted.
7773
7774 2007-02-16  Jackson Harper  <jackson@ximian.com>
7775
7776         * TextBoxBase.cs: Modified the method for inserting images to
7777         taking a line and position instead of tag and position.
7778         * RichTextBox.cs: Handle PngBlip data by inserting the png image
7779         into the RTF file.
7780         * TextControl.cs: Allow images to be inserted as the first tag of
7781         a line.
7782         - Fix some off by one issues when we assume the first tag is a
7783         text tag, not an image tag.
7784
7785 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7786
7787         * ListView.cs: Set focus to ListView when ItemControl gets a
7788         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
7789         Fixes part of #80467.
7790
7791 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7792
7793         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
7794           validate Text input (if null or empty string reset Value to default
7795           value). Fixes #80830.
7796
7797 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7798
7799         * ListView.cs: Set owner as null for columns and items when
7800         Dispose is invoked. Fixes #80607.
7801
7802 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
7803
7804         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
7805         showing DropDowns, don't show a Grip when doing Flow layout.
7806         [This fixes the toolbox in PDN 2.72.]
7807         * ToolStripItem.cs: Add Anchor property and some internal properties to
7808         reduces needed changes to FlowLayout.
7809         * ToolStripOverflow.cs: Remove unused variable.
7810         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
7811         use it in the layout calculations.
7812
7813 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7814
7815         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
7816         reported in #79640.
7817         
7818         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
7819         size calculation.
7820
7821 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7822
7823         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
7824         MeasureString format, it can make button very large in some cases, it is
7825         strange but is what win32 do.
7826
7827 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7828
7829         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
7830         size calculation.
7831
7832         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
7833         rendering, the value is based on MenuAccessKeysUnderlined.
7834
7835 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7836
7837         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
7838         for most themes.
7839         
7840         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
7841         
7842         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
7843         and use MenuAccessKeysUnderlined instead.
7844
7845 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7846
7847         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
7848         A selected control would not get a Focus call if:
7849                 - the default active control of the container is the same as
7850                   the one that was selected
7851                 - we are switching from one container to another
7852         Under these conditions, the container being selected already has
7853         an active_control, which is the same as the one being activated, 
7854         so set_ActiveControl would always return and not send the Focus
7855         call. Fix to check if the currently active control of the container
7856         is actually focused.
7857
7858 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
7859
7860         * StatusStrip.cs: Implement the spring layout.
7861         * ToolStripControlHost.cs: Make sure the hosted control's visibility
7862         always matches the host.
7863         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
7864         and TextAfterImage.
7865
7866 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7867
7868         * Control.cs: Code reorganization only.
7869           - Reorganize the WndProc cases so that each case has it's own handling method, 
7870           to help with the no-line-numbering stack traces.
7871           - Formatting changes (it's vstudio's fault, really :p)
7872
7873 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7874
7875         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
7876           Thread.CurrentUICulture to match DateTimePicker's (and MS)
7877           behaviour.
7878
7879 2007-02-12  Jackson Harper  <jackson@ximian.com>
7880
7881         * RichTextBox.cs:
7882         * TextBox.cs: By default we have a non multiline document
7883         - use the multiline property instead of the internal variable
7884         * TextBoxBase.cs: Treat multiline and non multiline the same in
7885         most places.
7886         - Use the documents multiline flag instead of tracking it ourself
7887         * TextControl.cs: Attempt at getting multiline to match MS
7888         behavior.  Lines now track an offset, which is either their X or Y
7889         offset depending on whether or not we are in multiline mode.
7890         - Update all the methods to understand that lines have an X value.
7891         - Fix crash in Undo::Duplicate when empty lines are deleted.
7892
7893 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7894
7895         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
7896         code moved to properties PreferredHeight and PreferredWidth. It solve the
7897         all problems when preferred sizes must be recalculated. Fixes #80801.
7898
7899 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7900
7901         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
7902         font height when compatible_text_rendering is false. Partially fix #80801.
7903
7904 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7905
7906         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
7907
7908 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7909
7910         * Form.cs: Improved exception messages in ShowDialog.
7911
7912 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7913
7914         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
7915         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
7916         if not set. Fixes bug #80764. Avoid accessing current_settings field
7917         directly.
7918
7919 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
7920
7921         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
7922         false.
7923
7924         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
7925         public in 2.0 and for easy maintenance and dont break compatibility it is 
7926         internal in 1.1.
7927         
7928 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7929
7930         * ToolStripItem.cs: Implement using images from ImageList.
7931
7932 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7933
7934         * DateTimePicker.cs: Change default date-formatting culture from
7935           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
7936           seems to be the way MS does it.
7937
7938 2007-02-08  Andreia Gaita  <avidigal@novell.com>
7939
7940         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
7941         (the 6 was cut off on the right side)
7942
7943 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7944
7945         * Form.cs: Tell MenuStrips to close when the form is clicked.
7946         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
7947         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
7948         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
7949         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
7950         support for Overflow, where items that do not fit are automatically
7951         reparented to a drop down menu.
7952         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
7953         Also: fixes bug #80747.
7954
7955 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7956
7957         * ComboBox.cs: Remove warning (unused code).
7958         * ScrollableControl.cs: Remove warning for 1.1 profile.
7959
7960 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7961
7962         * Form.cs: Remove a warning.
7963
7964 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7965
7966         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
7967           'g' specifier, not documented anywhere, but seems to always show up
7968           as a single space (might have something to do with the DateTime 'g'
7969           specifier, which is the era format, but since DateTimePicker can't
7970           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
7971           won't crash if the format has an unmatched quote. Now shows
7972           single-character formats correctly. Fixes #80744.
7973
7974 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7975
7976         * StatusStrip.cs: Stretch property needs to call base.Stretch,
7977         not this.Stretch to fix stack overflow. [Fixes bug #80760]
7978
7979 2007-02-07  Chris Toshok  <toshok@ximian.com>
7980
7981         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
7982         background color.  it overwrites the background image we've
7983         already painted.  Fixes #80599.
7984
7985 2007-02-07  Chris Toshok  <toshok@ximian.com>
7986
7987         * DataGrid.cs: return immediately from Edit() when there are no
7988         columns.  Fixes #80662.
7989
7990 2007-02-07  Chris Toshok  <toshok@ximian.com>
7991
7992         * MessageBox.cs: fix #80625.  don't always show the Help button in
7993         2.0.  use the displayHelpButton parameter to determine if we
7994         should show it. Also, make the internal show_help field private.
7995
7996 2007-02-07  Chris Toshok  <toshok@ximian.com>
7997
7998         * Control.cs (SetVisibleCore): check in the proposed patch for
7999         80604, and set is_visible before calling CreateControl.
8000
8001 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
8002
8003         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
8004         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
8005         on it.
8006
8007 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
8008
8009         * MenuAPI.cs: hotkey_active internal field added, it is required because
8010         we need to know when hotkeys must be draw, before this change a keystate
8011         Navigating was used but we can have menu in navigating state without
8012         hotkeys. Fixes #80694.
8013         
8014         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
8015
8016 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8017
8018         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
8019           corresponding events and methods to be internal for 1.1 profile and
8020           public for 2.0 profile (required by SizeGrip).
8021         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
8022           implicit control list). Don't set the size nor the location of the
8023           SizeGrip anymore as it's not needed.
8024         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
8025           draw directly on the captured control (fixes #80656). Removed
8026           ShowGrip (it wasn't used anywhere), redraw (always true), added
8027           GetDefaultSize and GetDefaultRectangle to calculate defaults.
8028         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
8029           be called from SizeGrip.
8030
8031 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8032
8033         * Timer.cs: Throw ArgumentException if Interval <= 0.
8034
8035 2007-02-05  Jackson Harper  <jackson@ximian.com>
8036
8037         * TreeView.cs: We need to check scrollbar visibility when window
8038         visibility is updated, because non visible trees don't ever add
8039         scrollbars.
8040         * Cursor.cs: We want the override cursor to be reset to NULL when
8041         we set current cursor to the default cursor.
8042
8043 2007-02-05  Jackson Harper  <jackson@ximian.com>
8044
8045         * TextControl.cs: Don't have crlfs when we are non multiline.
8046         - Consolidate the line position.
8047
8048 2007-02-05  Jackson Harper  <jackson@ximian.com>
8049
8050         * X11Keyboard.cs: BACK+CTRL gets a special char code.
8051
8052 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8053
8054         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
8055           handling LeaveNotify->NotifyUngrab in order to send
8056           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
8057           after calling XUngrabPointer, so we call WindowUngrabbed directly
8058           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
8059         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
8060           MouseCaptureChanged correctly. Also create handles if changing
8061           Capture (matches MS behaviour).
8062
8063 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8064
8065         * SizeGrip.cs: Make the last change 2.0 only.
8066
8067 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8068
8069         * SizeGrip.cs: If resizing and the capture is lost, revert any size
8070           changes to initial size (fixes #80597).
8071
8072 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8073
8074         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
8075
8076 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8077
8078         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
8079           background) and only allow dragging if enabled. This way the
8080           sizegrip can be used to fill the open square that otherwise would
8081           have been shown in the bottom right corner of ScrollableControl
8082           when ScrollableControl is not suppose to support sizing.
8083         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
8084           sizegrip is shown and enabled, and hook up with necessary events.
8085
8086 2007-02-01  Chris Toshok  <toshok@ximian.com>
8087
8088         * DataGridTextBoxColumn.cs: clean up the
8089         GetFormattedString/GetColumnValueAtRow combination of functions.
8090         Also fix UpdateUI, and the initial state of
8091         IsInEditOrNavigateMode.
8092
8093         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
8094         aren't supposed to scroll the textbox here, we're supposed to
8095         scroll the datagrid.
8096
8097 2007-02-01  Chris Toshok  <toshok@ximian.com>
8098
8099         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
8100         setting the position.
8101
8102 2007-02-01  Chris Toshok  <toshok@ximian.com>
8103
8104         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
8105         here, since the most recent focus fixes keep us from generating
8106         the Leave event when our textbox gets focus.
8107         (Edit): we should be passing null for the column style's
8108         instantText parameter.
8109         
8110 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
8111
8112         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
8113         raised.  Fixes menu text/icons not showing up in PDN.
8114
8115 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8116
8117         * Control.cs: Remove code in constructor that makes every
8118         control with WS_CHILD set have initial location -1, -1.
8119
8120 2007-01-31  Jackson Harper  <jackson@ximian.com>
8121
8122         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
8123         XplatUIX11.
8124         * XplatUIX11.cs: Give teh keyboard to teh dnd.
8125
8126 2007-01-31  Jackson Harper  <jackson@ximian.com>
8127
8128         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
8129         - Remove some debug code.
8130
8131 2007-01-31  Jackson Harper  <jackson@ximian.com>
8132
8133         * XplatUIX11.cs: If you set the override cursor during a grab, it
8134         should actually override the grab cursor.  This comes into play
8135         when you are setting custom cursors in a DND feedback method.
8136
8137 2007-01-31  Jackson Harper  <jackson@ximian.com>
8138
8139         * X11Dnd.cs: Add support for handling the QueryContinue and
8140         GiveFeedback events.
8141         - Cancel drag and drop actions when the escape key is clicked.
8142         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
8143         can handle the ESCAPE key.
8144         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
8145         done when dnd events are continued after the button is released.
8146         - Add a new helper method so that dnd can translate key events.
8147
8148 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
8149
8150         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
8151         make it more obvious what is happening.
8152
8153 2007-01-30  Jackson Harper  <jackson@ximian.com>
8154
8155         * XplatUIX11.cs: Don't break when handling button release in drag
8156         and drop operations. We need that BUTTONUP message to get through
8157         so capture is released.
8158         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
8159         this is handled automatically when the mouse is down.
8160
8161 2007-01-30  Jackson Harper  <jackson@ximian.com>
8162
8163         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
8164         is closed, so we need to make sure that we aren't changing the
8165         dialog result when the OK (Open or Save) button has been clicked
8166         and we are closing the window ourselves.  Note we don't need to
8167         worry about the cache being written in this case, because it was
8168         already done in the previous FilOk call.
8169
8170 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8171         
8172         * DateTimePicker.cs: Remove a warning.
8173         * ComboBox.cs: Remove a couple of warnings.
8174
8175 2007-01-29  Chris Toshok  <toshok@ximian.com>
8176
8177         * XplatUIX11.cs: don't crash, and remove the icon if the user has
8178         set one, if SetIcon is passed a null icon.
8179
8180 2007-01-29  Andreia Gaita  <avidigal@novell.com>
8181
8182         * TextBox.cs: Redraw when the password characters changes
8183         * TextControl.cs: Check if textbox has a password char and draw 
8184         a line of password chars instead of the text in the line. LineTag gets 
8185         an extra Draw() method which allows document.Draw to override the text 
8186         that will be drawn. Removes 1024 char limitation on length of passworded 
8187         lines.
8188
8189 2007-01-29  Jackson Harper  <jackson@ximian.com>
8190
8191         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
8192         single chars is not.
8193
8194 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
8195
8196         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
8197         one pixel.  Fix a StackOverflowException caused by an overload wrongly
8198         calling itself.
8199
8200 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
8201
8202         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
8203         also remove ProcessArrowKey and put the code inside ProcessKeys.
8204
8205 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
8206
8207         * PaddingConverter.cs: Added.
8208
8209 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8210         
8211         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
8212         ShowPanels is false (fixes #80600). Only draw up to 127 characters
8213         of text (fixes #80601). For panels clip the text to draw to the
8214         panel (fixes #80603).
8215
8216 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8217
8218         * ComboBox.cs: Fixed implementation of ResetText.
8219
8220 2007-01-25  Jackson Harper  <jackson@ximian.com>
8221
8222         * TextControl.cs: For the last char of a line we need to use the
8223         line size, not that chars width, since it won't actually be
8224         computed since the right side of a char is based on the start of
8225         the left side of the next char, and the next char does not exist.
8226
8227 2007-01-25  Chris Toshok  <toshok@ximian.com>
8228
8229         * Splitter.cs: fix the new unit tests, and reindent some switch
8230         statements.
8231
8232 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8233
8234         * ComboBox.cs: Implemented 2.0 methods and events.
8235         * TextBoxBase.cs: Added OnTextUpdate, so that
8236         ComboBox.ComboTextBox can inform ComboBox of it.
8237
8238 2007-01-25  Jackson Harper  <jackson@ximian.com>
8239
8240         * TextControl.cs: Respect ShowSelection when deciding whether or
8241         not to display the caret, this allows comboboxes to have carets
8242         when the combotextbox does not have focus.
8243
8244 2007-01-25  Jackson Harper  <jackson@ximian.com>
8245
8246         * TextControl.cs: Add a Suspend/Resume for updating, basically the
8247         same as the Suspend/Resume for recalc, except this will do actual
8248         Invalidates.
8249         - New Undo manager, works much like the MS version.
8250         - Implemented Redo
8251         * TextBoxBase.cs: The Cut operation is undoable.
8252
8253 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8254         
8255         * TextBoxBase.cs: Don't antialias text. Makes it look way better
8256         on Windows (no difference on Linux).    
8257
8258 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8259
8260         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
8261         we don't want to activate any windows. Fixes #79433.
8262
8263 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
8264
8265         - ButtonBase.cs: Fix capitalization of parameter: disposing.
8266         [Fixes bug #80609]
8267
8268 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
8269
8270         * FileDialog.cs:
8271         - Move to using System.ComponentModel.EventHandlerList
8272         - Replace Refresh with Invalidate
8273         - Clear the mime filecache on closing
8274         - Some other memory reducing work. After beeing closed FD now uses
8275           only about 300 KB for the fdo mime stuff plus the memory of the
8276           cached icons.
8277         * Mime.cs: Changed coding style and removed unnecessary commented
8278         code. Some more memory memory reducing work.
8279
8280 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8281
8282         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
8283         a few other missing 2.0 properties.
8284         * Theme.cs: Added DrawFlatStyleComboBox.
8285         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
8286
8287 2007-01-24  Chris Toshok  <toshok@ximian.com>
8288
8289         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
8290         wake_waiting flag, not just when there's data to be read.  if we
8291         don't, then future wakeup's won't reach us and we'll be doomed to
8292         wait for the entire 1 second timeout forever (unless there are X
8293         events to be had).
8294
8295 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
8296
8297         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
8298         until you pass Items.Count, not Items.Count - 1 like 1.1.
8299
8300 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
8301
8302         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
8303
8304 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
8305
8306         * ToolStripContainer.cs: The recent Dock fix exposed that I was
8307         adding the panels in the wrong order.
8308
8309 2007-01-24  Jackson Harper  <jackson@ximian.com>
8310
8311         * TextBoxBase.cs: When we move the caret we also need to move the
8312         selection, this fixes some random crashing after doing select
8313         text, unselect, delete a char, paste.
8314
8315 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8316
8317         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
8318
8319 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8320
8321         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
8322         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
8323         * ToolBar.cs: Force redraw in BackgroundImageChanged.
8324
8325 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8326
8327         * ToolBar.cs:
8328         - Implement support for vertical toolbars. Fixes #80539;
8329         - Call LayoutToolBar when resize, it fix some other problems in layout.
8330         - Rename requested_height to requested_size, as we can have width on it
8331         when toolbar is vertical.
8332         - Create a private property "Vertical" that uses Dock to verify when 
8333         toolbar is vertical or not.
8334         - Set ControlStyles when change Dock property.
8335         - Refactory in LayoutToolBar to have better variables names and to support
8336         vertical toolbars.
8337         - Fixes default value for ButtonSize when button count is equal zero, size
8338         must be (39, 36) test case writed.
8339
8340 2007-01-23  Chris Toshok  <toshok@ximian.com>
8341
8342         * Control.cs: fix the checks so that they work correctly for mdi
8343         parents/children.
8344
8345 2007-01-23  Chris Toshok  <toshok@ximian.com>
8346
8347         * Control.cs: ControlCollection seems to have super-secret
8348         abstraction breaking knowledge of Mdi containers.  allow MdiClient
8349         to add toplevel controls.
8350
8351 2007-01-23  Chris Toshok  <toshok@ximian.com>
8352
8353         * Control.cs: throw an ArgumentException if a toplevel control is
8354         added to our control collection from ControlCollection.Add, as
8355         well as from ControlCollection.IList.Add.  This fixes the
8356         ControlSetTopLevelTest.TestTopLevelAdd unit test.
8357
8358         Also, in ControlCollection.IList.Add, don't through an
8359         ArgumentNullException, throw an ArgumentException, when value ==
8360         null.  This matches MS.
8361
8362 2007-01-23  Chris Toshok  <toshok@ximian.com>
8363
8364         * BindingSource.cs: initial, incomplete, implementation of
8365         BindingSource.
8366
8367 2007-01-23  Jackson Harper  <jackson@ximian.com>
8368
8369         * TextControl.cs:
8370         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
8371         that I can fix a broken unit test (TextBoxTest::ClearUndo)
8372         
8373 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8374
8375         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
8376
8377 2007-01-23  Andreia Gaita  <avidigal@novell.com>
8378
8379         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
8380         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
8381         IndexOfKey() for 2.0
8382
8383 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8384
8385         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
8386         to prevent it from changing z-order.
8387         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
8388         leave UI updates in MdiWindowManager.
8389         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
8390         1 sized (NC handling goes weird on Linux otherwise).
8391         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
8392         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
8393         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
8394         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
8395         and SetWindowState(s) to allow for changing the size of an activated child
8396         before activating it (reduces a lot of flicker).
8397
8398 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8399
8400         * Form.cs: Changing FormBorderStyle has different semantics based
8401         on whether the Form is visible or not.  If not visible, don't change
8402         the Size.  But InvalidateNC needs to be called to force the window
8403         to pick up the changes and redraw itself.  [Fixes bug #80574]
8404
8405 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8406
8407         [Moma work]
8408         * ContainerControl.cs: ProcessCmdKey.
8409         * ErrorProvider.cs: new constructor.
8410         * Form.cs: fix AutoValidateEvent compiler warning.
8411         * Label.cs: fix OnAutoSizeChanged compiler warning.
8412         * MenuStrip.cs: fix CanOverflow compiler warning.
8413         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
8414         * TextBox.cs: Dispose.
8415         * ToolStrip.cs: CanOverflow, re-enable double buffering.
8416         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
8417         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
8418         * ToolStripItem.cs: Overflow, RightToLeft properties.
8419
8420 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8421
8422         * Form.cs: Move the layout of the main form to MdiWindowManager.
8423         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
8424         do a layout of the main window to update MdiClient's client area to
8425         the right area. Fixes #80533. Remove the calculation of nc size, 
8426         it was just wrong and the correct one is the same as for 
8427         InternalWindowManager. 
8428
8429 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
8430
8431         * Control.cs: Setting Anchor or Dock needs to reset the other
8432         to its default.  [Fixes bug #80556]
8433
8434 2007-01-20  Chris Toshok  <toshok@ximian.com>
8435
8436         * CheckedListBox.cs: class status changes.
8437
8438         * ScrollableControl.cs: same.
8439
8440         * RichTextBox.cs: same.
8441
8442         * ContainerControl.cs: same.
8443
8444         * ListView.cs: same.
8445
8446         * NotifyIcon.cs: same.
8447
8448         * MenuStrip.cs: same.
8449
8450         * RadioButton.cs: same.
8451
8452         * CheckBox.cs: same.
8453
8454         * PrintPreviewDialog.cs: same.
8455
8456         * Form.cs: same.
8457
8458 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
8459
8460         * TreeNode.cs: Apply Alan's patch for Name property.
8461
8462 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8463         
8464         * Form.cs: Implemented SizeGripStyle.
8465         * SizeGrip.cs: Check for minimum and maximum size for the
8466         control being resized and only resize if size has actually
8467         changed.
8468
8469 2007-01-19  Chris Toshok  <toshok@ximian.com>
8470
8471         * DataGridColumnStyle.cs: stop setting _readonly in the
8472         PropertyDescriptor setter.  fixes a unit test failure.
8473
8474         also, rename ParentReadOnly to TableStyleReadOnly, and have it
8475         just consult our table style (if we have one).  We don't need to
8476         consult the datagrid readonly attribute because that's passed in
8477         as the _ro arg to Edit.  this simplifies things a little.
8478         
8479         * DataGrid.cs: use CurrentColumn instead of
8480         current_cell.ColumnNumber just to simplify some of the code.
8481
8482         switch the order of some things in the CurrentCell setter to keep
8483         the previous cell from getting a textbox again -
8484         EnsureCellVisibility causes scrolling to happen, which calls Edit.
8485         So we need to set the new cell before calling it.
8486         
8487         call Edit in OnEnter, as does Microsoft.
8488         
8489         also, make sure the current table style isn't the one we create
8490         initially when checking to see if it's different than the one
8491         we're setting it to in BindColumns (this fixes #80421).
8492
8493         * GridTableStylesCollection.cs: table styles can have "" for a
8494         mapping name.  part of the fix for #80421.
8495
8496         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
8497         Edit significantly.
8498
8499 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8500
8501         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
8502         and less GDI object leaky-er.
8503
8504 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8505
8506         * LinkLabel.cs: Add opaque control style
8507
8508 2007-01-18  Jackson Harper  <jackson@ximian.com>
8509
8510         * TextControl.cs: Calculate width properly.
8511         - Don't store the tag's X offset, this can be figured out very
8512         easily.
8513         - When getting the caret tag make sure to get the last empty tag.
8514
8515 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8516
8517         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
8518         [Fixes bug #79959]
8519
8520         * Control.cs: Color.Empty shouldn't count for previous transparent
8521         redraw changes.
8522
8523 2007-01-18  Jackson Harper  <jackson@ximian.com>
8524
8525         * TextBox.cs:
8526         * RichTextBox.cs:
8527         * TextControl.cs: Starting to merge in some pieces of my older
8528         undo work.  Basically just some slight cleanup of the undo API.
8529
8530 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8531
8532         * TrackBar.cs: Fix signature of RightToLeftLayout.
8533         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
8534         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
8535         * Application.cs: Implemented UseWaitCursor.
8536
8537 2007-01-18  Jackson Harper  <jackson@ximian.com>
8538
8539         * TextControl.cs: We can't skip tags if any part of the tag is
8540         visible.
8541
8542 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8543
8544         * ContainerControl.cs: Override OnLayout.
8545
8546 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8547
8548         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
8549
8550         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
8551         everything else.
8552
8553 2007-01-18  Chris Toshok  <toshok@ximian.com>
8554
8555         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
8556         (leftover from the container_selected days, I'd wager).  fixes bug
8557         #80546.
8558
8559 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8560
8561         * Control.cs: Apply patch from George to fix the new testcase on
8562         bug #80451.  We can't just check for Color.Transparent, we need 
8563         to check if the back color's alpha channel is < 255.
8564
8565 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8566
8567         * Form.cs: Move setting show_icon = true to before the constructor
8568         so that the base constructor has that information when it calculates
8569         the form's size.  Was causing forms to be (6, 6) bigger than they
8570         were supposed to be.  Thanks for catching this Rolf!
8571
8572 2007-01-18  Jackson Harper  <jackson@ximian.com>
8573
8574         * TextControl.cs: When replacing a selection we need to invalidate
8575         from the initial selection start, because selection start is moved
8576         to the end of the replacement.
8577
8578 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8579
8580         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
8581
8582 2007-01-18  Chris Toshok  <toshok@ximian.com>
8583
8584         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
8585         I just added.
8586
8587 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
8588
8589         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
8590         layout methods and properties from ToolBarButton must be available
8591         into ToolBarButtonInfo.
8592
8593 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8594
8595         * Control.cs: If the control has a transparent background, we
8596         need to refresh it when it moves and when it's parent's background
8597         image changes.  [Fixes bug #80451]
8598
8599 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8600
8601         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
8602
8603 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8604
8605         * XplatUIWin32.cs: Implement proper double buffering for Windows.
8606         [Fixes bug #80447, and probably speeds up things as well]
8607
8608 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8609
8610         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
8611         * XplatUIWin32.cs: We need to recalculate NC size after changing 
8612         window style to toolwindow (otherwise the client rectangle will be
8613         3 pixels to small for some reason).
8614         * MdiWindowManager.cs: Revert NC size calculations to match how
8615         they are calculated only based on window styles (to match
8616         Win32AdjustWindowRectEx, since otherwise when setting size or 
8617         location, Control will call Win32AdjustWindowRectEx to update client 
8618         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
8619         calculate a different value of client size causing another paint 
8620         (and flickering))
8621         * InternalWindowManager.cs: When moving or resizing a window only
8622         update size or location if they actually changed.
8623         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
8624         (seems to match Windows behaviour better). Cleaned up 
8625         ManagedWindowDecorations to draw what's needed and nothing else
8626         (was drawing borders and lines where they shouldn't be)
8627         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
8628         (style = 0xFFFF) and takes into account caption height when 
8629         calculating window rectangle.   
8630
8631 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8632
8633         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
8634         can be added to toolbar multiple times, we need to maintain a list of 
8635         button information for each positions.
8636
8637 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8638
8639         * ToolBar.cs: Some small stetic changes.
8640
8641 2007-01-16  Jackson Harper  <jackson@ximian.com>
8642
8643         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
8644         that allow us to have nested recalc = false blocks.
8645         - Add paste support for images in the RichTextBox
8646         * RichTextBox.cs: flush the text after the color is changed, so
8647         the change takes effect.
8648         - Use SuspendRecalc
8649         - Some extra debugging info
8650         * TextControl.cs: Tags no longer track their length, it is just
8651         computed from the next tags length, this makes things a little
8652         simpler and reduces places that we have to track length changes.
8653         - Refactored the linetag class a little so we could make it
8654         a base class for different kinds of tags
8655         - Created a image tag, a tag that can have a single image inserted
8656         into it
8657         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
8658         that we can call suspend multiple times.
8659         - Add some debugging methods
8660
8661 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8662
8663         * MdiClient.cs: Add ActivatePreviousChild for 
8664         mdi child window navigation.
8665         * Form.cs: Use MdiClient.ActivateNextChild/
8666         ActivatePreviousChild instead of Form.SelectNextControl
8667         to select the next/previous child since 
8668         SelectNextControl doesn't do it in the same order
8669         as mdi children should do it.
8670
8671 2007-01-16  Chris Toshok  <toshok@ximian.com>
8672
8673         * Control.cs: remove container_selected field.
8674
8675 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8676
8677         * MdiClient.cs: Update main form's ActiveChild when
8678         updating keyboard focus for the mdi child.
8679
8680 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
8681
8682         * Control.cs: PreferredSize fix.
8683
8684         * Form.cs: Add several 2.0 events, properties, and methods.
8685
8686 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
8687
8688         * Form.cs: Provide meaningful message when MdiParent is assigned a
8689         Form that is not an MdiContainer.
8690
8691 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8692
8693         * MdiClient.cs: Update main form's ActiveChild when
8694         activating a mdi child.
8695
8696 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8697
8698         * MdiWindowManager.cs: Fix NRE when merging menus and main form
8699         doesn't have a menu.
8700
8701         * Form.cs: Request NCRecalc after creating a mdi child window.
8702         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
8703         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
8704         
8705         * MdiClient.cs: Add new method SendFocusToActiveChild that either
8706         sends keyboard focus to the active child, or to the MdiClient
8707         if there are no child forms.
8708         
8709 2007-01-15  Chris Toshok  <toshok@ximian.com>
8710
8711         * ListView.cs: drop the *Internal overrides, just do our work in
8712         ItemControl's WndProc instead.
8713
8714         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
8715         of the various controls, and forward the events properly (in the
8716         same manner as MS) from the textbox to the UpDown.  Also the
8717         ActiveControl of the UpDownBase gets set properly now.  Finally,
8718         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
8719
8720         * NumericUpDown.cs: set Text in the ctor.
8721
8722         * DomainUpDown.cs: call UpdateEditText in the ctor.
8723         
8724         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
8725         so even a Selectable = false textbox can be focused if you click
8726         in it.  Go figure.
8727
8728         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
8729         just add their handling in their respective WndProc's.  Also add
8730         an explicit FocusInternal method that doesn't consult CanFocus
8731         before calling Select(this).
8732
8733         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
8734         do our work in WndProc instead.
8735
8736         * TabControl.cs: same.
8737
8738         * ComboBox.cs: same.
8739
8740 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8741
8742         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
8743         Fixes #80006.
8744
8745 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8746
8747         * ListViewItem.cs:
8748         * ThemeWin32Classic.cs: Don't draw the item text outside
8749         item bounds in Details view, as well as use trimming.
8750         Fixes bug #80376.
8751
8752 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8753
8754         * Form.cs: Implement Form.ShowIcon.
8755         
8756         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
8757         null, which when combined with the DlgModalFrame window style removes
8758         the icon from the title bar.
8759
8760 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8761
8762         * Control.cs: Call OnMouseClick after OnClick. (2.0)
8763
8764 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8765
8766         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
8767         menu when mdi child windows theres a menu, uses insert to get icon
8768         at first position. Partially fix #80006.
8769
8770 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8771
8772         * Clipboard.cs: Implement 2.0 methods.
8773
8774 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8775
8776         * Menu.cs: Implement Insert method of MenuItemCollection class
8777         to fix MenuMerge.
8778
8779 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8780
8781         * ListView.cs: Implement 2.0 FindItemWithText method.
8782
8783 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8784
8785         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
8786         to calculate menu bar size. Fixes #80290.
8787
8788 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8789
8790         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
8791
8792 2007-01-11  Chris Toshok  <toshok@ximian.com>
8793
8794         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
8795         initial form.
8796
8797 2007-01-11  Chris Toshok  <toshok@ximian.com>
8798
8799         * LinkLabel.cs: make sure to call base.Select in our Select method
8800         if it turns out we're going to be selected (i.e. if we have a link
8801         that is going to receive focus).  That way our container's
8802         ActiveControl is updated properly.
8803
8804 2007-01-11  Chris Toshok  <toshok@ximian.com>
8805
8806         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
8807         they have 1 or more links.  this fixes the crash gert reported.
8808
8809 2007-01-11  Andreia Gaita  <avidigal@novell.com>
8810
8811         * ContainerControl.cs: Remove ContainerSelected flag, not needed
8812         anymore.
8813
8814         * Control.cs (Controls.Add): Check if control to be added to the collection
8815         is a top level control, and throw an ArgumentException if it is.
8816         Remove ContainerSelectedFlag, not needed anymore.
8817
8818         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
8819         top most control doesn't activate the form. This fixes a problem in the
8820         MessageBox, where the default button wouldn't get focus because the form
8821         was activated before being Loaded - when the Owner is set, SetTopMost is
8822         called, and it would activate it.
8823
8824 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
8825
8826         * Button.cs: When clicked and setting the parent form's DialogResult,
8827         use FindForm instead of Parent, since parent could be a container
8828         control and not the Form.  Fixes bug #80495.
8829
8830 2007-01-10  Chris Toshok  <toshok@ximian.com>
8831
8832         * Form.cs: move the call to SendControlFocus into the same
8833         is_loaded check.
8834
8835 2007-01-10  Chris Toshok  <toshok@ximian.com>
8836
8837         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
8838         It breaks in the face of the new ActiveControl stuff, and should
8839         be unnecessary.
8840
8841         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
8842         activecontrol's focus if it's not already set, after we set
8843         ActiveControl, but before we call OnActivated.  Re-fixes #79667
8844         after the previous focus/active control fixes regressed it.
8845
8846         * Control.cs: reindent some code.
8847         
8848 2007-01-10  Chris Toshok  <toshok@ximian.com>
8849
8850         * Splitter.cs: clearing some outstanding changes from my tree.
8851         Replace all accesses (not writes) to the internal dock_style field
8852         with the Dock property.
8853
8854 2007-01-10  Chris Toshok  <toshok@ximian.com>
8855
8856         * Control.cs: make FireEnter, FireLeave, FireValidating, and
8857         FireValidated virtual.
8858
8859         * Form.cs: override and don't chain up calls to FireEnter and
8860         FireLeave.
8861
8862 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8863
8864         * ListView.cs: Add more text padding space when using
8865         auto resize for columns (the previous value didn't work fine).
8866
8867         * ThemeWin32Classic.cs: Update text position inside columns,
8868         to match the appeareance of .Net.
8869
8870         * ColumnHeader.cs: When using auto resize, only the Width should
8871         depend on the sub items, not the Height. Also, set width after
8872         auto resizing (the value of Width should never remain as -1 or -2).
8873
8874 2007-01-10  Chris Toshok  <toshok@ximian.com>
8875
8876         * Application.cs: fix compilation errors when debug is enabled.
8877
8878 2007-01-10  Chris Toshok  <toshok@ximian.com>
8879
8880         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
8881         add some nice ascii art pictures and explanation of the process).
8882         (GetMostDeeplyNestedActiveControl): new utility function we need
8883         because our ActiveControl can refer to a child container with its
8884         own ActiveControl.
8885
8886         * Form.cs (OnActivated): remove the call to SelectActiveControl
8887         from here, since you can override this method and not chain up,
8888         and winforms still sets the active control.
8889         (OnCreateControl): also remove the unnecessary SelectActiveControl
8890         call from here.
8891         (WndProc): it's actually called from the WM_ACTIVATE block, just
8892         before calling OnActivated.
8893
8894         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
8895         inside the else.  the ActiveControl setter will end up setting
8896         focus on @control.  This keeps us from setting it again (and
8897         generating an extra LostFocus/GotFocus pair).
8898         (Select (bool, bool)): reindent.
8899
8900 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
8901
8902         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
8903         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
8904         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
8905         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
8906         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
8907         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
8908         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
8909         ToolStripTextBox.cs: Another wave of corcompare work.
8910
8911 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8912
8913         * ColumnHeader.cs: Implement 2.0 AutoResize method using
8914         the Width property.
8915
8916         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
8917         methods by callling Column.AutoResize method on columns.
8918
8919 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8920
8921         * Control.cs: Provide proper implementations of PreferredSize
8922         and GetPreferredSize (2.0).
8923
8924 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8925
8926         * Form.cs: Remove one character (!) to make my previous OnClosing
8927         stuff work for modal windows like MessageBox.
8928
8929 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8930
8931         * ListView.cs:
8932         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
8933         ListView.Columns to get the last displayed column. Fixes #80452.
8934
8935 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
8936
8937         * Label.cs, LinkLabel.cs: Source code identation fixes.
8938
8939 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
8940
8941         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
8942         we dont need to invalidate only borders because when we invalidate four
8943         border lines the invalidate's generates a complete redraw of button, 
8944         because it now invalidate a complete rect some other redraws operations
8945         are fixed. Fixes #80196.
8946         
8947         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
8948         Remove ToolBarInvalidateEntireButton as it is not used.
8949
8950 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
8951         
8952         * Form.cs: Make sure that both OnClosing and OnFormClosing are
8953         called for 2.0 profile.
8954         * CloseReason.cs: Make class internal for 1.1.
8955
8956 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
8957
8958         * ToolStripManager.cs: Implement FindToolStrip functionality.
8959         * ToolStrip.cs: Register and unregister with ToolStripManager.
8960
8961 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
8962
8963         * Control.cs: This was messy.  2.0 moves much of ControlCollection
8964         to ArrangedElementCollection.  Implemented this with as few #if's as 
8965         possible (which is still too many).
8966
8967 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
8968
8969         * Control.cs: Implement SizeFromClientSize() [2.0].
8970
8971 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
8972
8973         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
8974         use Theme.BorderSize to calculate area instead of static value 1, 
8975         by the way use new BorderStaticSize instead     Border3DSize when 
8976         border_static is true. Fixes #79537.
8977         
8978         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
8979         
8980         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
8981         it is not needed.
8982
8983 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
8984
8985         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
8986
8987 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
8988
8989         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
8990         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
8991         
8992         * Hwnd.cs: 
8993         - border_static field added, it will used to define when a control 
8994         theres 3D border but it must be static (thin).
8995         - In GetWindowRectangle use Theme.BorderSize to calculate area 
8996         instead of static value 1, by the way use new BorderStaticSize instead
8997         Border3DSize when border_static is true.
8998
8999         * XplatUIX11.cs, XplatUIOSX.cs: 
9000         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
9001         
9002         * Theme.cs: BorderStaticSize field added.
9003
9004 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
9005
9006         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
9007
9008 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
9009
9010         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
9011         mimic same behavior than win32 that set border only in CreateParams,
9012         it fix problems under CreateParams overrides. Fix #79442 and partial
9013         fix #79537.
9014         
9015         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
9016         of thi control you must call recreate handle. 
9017         
9018         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
9019         need to do anything as RecreateHangle will take care about borders.
9020
9021 2007-01-05  Mike Kestner  <mkestner@novell.com>
9022
9023         * ListView.cs: hack to eliminate Lost/Got focus notifications on
9024         cycles between the ItemControl and parent.  Fixes #80388.
9025
9026 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
9027
9028         * Control.cs: Lazy init layout engine. Do not directly use 
9029         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
9030
9031 2007-01-05  Chris Toshok  <toshok@ximian.com>
9032
9033         * DataGrid.cs: don't forceably rebind columns in SetDataSource
9034         unless our list manager has changed (i.e. unless we have reason to
9035         believe our columns have changed).  Fixes #80422.
9036         
9037         also, disable the call do BindColumns in
9038         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
9039         1.1 the event isn't raised in response to a column addition on a
9040         table.)
9041
9042 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
9043
9044         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
9045         that inheritors can not call it if they choose.  Fixes bug #80456.
9046
9047 2007-01-05  Andreia Gaita  <avidigal@novell.com>
9048
9049         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
9050         doesn't blow up with a null exception on marshalling.
9051         
9052 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
9053
9054         * Control.cs: Implement several 2.0 protected properties and methods.
9055         Ensure that all necessary events are being called when properties
9056         are set.
9057
9058 2007-01-05  Mike Kestner  <mkestner@novell.com>
9059
9060         * ListView.cs: implement PgUp/PgDn for Details view.  Also
9061         fixes First/LastVisibleIndex to use the item_control.ClientRect 
9062         instead of the parent control.  Fixes #80378.
9063
9064 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
9065
9066         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
9067           determine whether to use yard-pound or not (bug #78399).
9068
9069 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9070
9071         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
9072         problems. So it is time to bring back the old popupbutton colors.
9073
9074 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9075
9076         * ColumnHeader.cs:
9077         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
9078         property by using the internal information of the
9079         columns order in ListView.
9080
9081 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
9082
9083         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
9084         Add 2.0 Tag properties.
9085
9086         * LinkArea.cs: Add 2.0 ToString method.
9087
9088 2007-01-03  Chris Toshok  <toshok@ximian.com>
9089
9090         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
9091         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
9092         when we're editing, which fixes #80047.
9093
9094 2007-01-03  Chris Toshok  <toshok@ximian.com>
9095
9096         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
9097         #80404.
9098
9099 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
9100
9101         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
9102         property and implementation.
9103
9104         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
9105         for MdiWindowListItem property.
9106
9107         * ToolStripDropDown.cs: Don't consider hidden menu items while
9108         laying out the menu.
9109
9110 2007-01-03  Andreia Gaita  <avidigal@novell.com>
9111
9112         * SendKeys.cs: window handle is not needed in win32, so just
9113         get the active window for X after parsing keys and don't use
9114         it when building the message; it is passed by parameter to the 
9115         Xplat method and used there to build the message instead. Also,
9116         wait for events to be processed on SendWait, as opposed to Send,
9117         which doesn't wait :) Playing with threads and Send() completely 
9118         hangs on ms.net, only SendWait() works.
9119         
9120         XplatUIX11.cs
9121         X11Display.cs: Check for valid window handle.
9122
9123 2007-01-03  Jackson Harper  <jackson@ximian.com>
9124
9125         * TextControl.cs: Need to prevent wrap calculations when replacing
9126         text (this was there before i removed it accidently).
9127         - Don't update the cursor during the positioning, just set it to
9128         selection_start at the end of the operaion.
9129
9130 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9131
9132         * Control.cs:
9133         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
9134         
9135 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9136
9137         * MonthCalendar.cs: Added Click and DoubleClick events again,
9138         but this time they only hide Control's Click and DoubleClick.
9139         
9140 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
9141
9142         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
9143         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
9144
9145 2007-01-02  Jackson Harper  <jackson@ximian.com>
9146
9147         * TextBoxBase.cs: We move the caret with the split now, so we
9148         don't need to explicitly move the caret after splitting.  This
9149         fixes the caret bumping down an extra line on Enter.
9150
9151 2007-01-02  Miguel de Icaza  <miguel@novell.com>
9152
9153         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
9154         2.72). 
9155
9156         * ScrollableControl.cs: Add Scroll event.
9157
9158 2007-01-02  Mike Kestner  <mkestner@novell.com>
9159
9160         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
9161         to fix all hdr height padding codepaths.  Fixes #80207.
9162
9163 2007-01-02  Chris Toshok  <toshok@ximian.com>
9164
9165         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
9166         setting it to the Control defaults anyway, and it being after the
9167         Dock set was screwing up layout.
9168         (set_Dock): don't short circuit out of setting base.Dock.  Also,
9169         no need to call UpdateStatusBar here, as it'll be re-layed out if
9170         it needs to be.
9171
9172 2007-01-02  Mike Kestner  <mkestner@novell.com>
9173
9174         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
9175         to header height for width == -1. Fixes the rest of #80207.
9176
9177 2007-01-02  Mike Kestner  <mkestner@novell.com>
9178
9179         * ListView.cs: rework the mouse event forwarding everaldo added
9180         to translate the coordinates to the parent control not
9181         raise the parent events until after we've done our work. Hover
9182         needs more work, in the case where HoverSelection is on, because
9183         the item control receives more than one MouseHover per Enter
9184         event, so we need to ensure only the "first" hover gets forwarded.
9185         Opening a minor bug for that.
9186
9187 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
9188
9189         * CheckedListBox.cs: Fixed SelectionMode to match MS.
9190         * ListControl.cs: Implemented AllowSelection property. Removed extra
9191         tabs.
9192         * ListBox.cs: Implemented AllowSelection property.
9193
9194 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9195
9196         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
9197         SelectedItem, it prevent for errors when you must disable item
9198         before perform click. Fixes #80409.
9199
9200 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9201
9202         * MenuAPI.cs: Prevent second level and beyond submenus to close
9203         until first level when move out side of popup.
9204         
9205 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9206
9207         * MenuAPI.cs:
9208         - Down submenu positin in three pixels.
9209         - Closes sub menu when mouse leaves from menu. Fixes #80402.
9210
9211 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9212
9213         * ThemeWin32Classic.cs:
9214         - Fix popup menu size adding one pixel on the top.
9215         - Down menu item border from two to one to mimic Win32.
9216         - Some source identation fixes. 
9217
9218 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
9219
9220         * ThemeWin32Classic.cs: Use float numbers to calculate size and
9221         position of menu arrows, it fix wrong arrow size.
9222
9223 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
9224
9225         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
9226         instead of line, it simplify draw operation and fix it using 3D
9227         borders to mimic Win32.
9228
9229 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
9230
9231         * StatusStrip.cs: Add implementation of the sizing grip.
9232
9233         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
9234         StatusStrip rendering.
9235
9236 2006-12-31  Chris Toshok  <toshok@ximian.com>
9237
9238         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
9239         override the layout style (anchor/dock) of the control.  assign to
9240         Dock instead.  Fixes bug #80416.
9241
9242         * ToolStrip.cs: same.
9243
9244 2006-12-31  Andreia Gaita  <avidigal@novell.com>
9245
9246         * ContainerControl.cs: Use ContainerSelected flag to check if 
9247         a Container is directly selected, or if Select is called on a 
9248         non-container. If a container is directly selected, focus events 
9249         should not be raised.
9250         Apply #80411 patch to throw exception on set_ActiveControl if 
9251         control is the same as the current one.
9252         
9253         * Control.cs: Use ContainerSelected flag (see above).
9254         Add invalidation check to raise event but not invalidate if 
9255         dimensions are 0.       
9256         Apply #80411 patch.
9257         
9258
9259 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
9260
9261         * MenuAPI.cs: After click, dont close popup menu when menu is
9262         ContextMenu. Fixes #80399.
9263
9264 2006-12-30  Chris Toshok  <toshok@ximian.com>
9265
9266         * ContainerControl.cs: make sure we throw the exception if the
9267         container control doesn't contain the control we're setting
9268         ActiveControl to.
9269
9270 2006-12-30  Chris Toshok  <toshok@ximian.com>
9271
9272         * Control.cs (SetTopLevel): fix the exception raised by
9273         SetTopLevel for child controls.
9274         (set_Anchor): call UpdateDistances when setting the anchor type.
9275         This fixes bug #80336.
9276
9277 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9278
9279         * Theme.cs: For now, revert back to 8pt font.
9280
9281 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
9282
9283         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
9284         Fixes #80395.
9285
9286 2006-12-29  Chris Toshok  <toshok@ximian.com>
9287
9288         * Control.cs: reorder the code in OnResize to give the same event
9289         ordering as MS.
9290
9291 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9292
9293         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
9294         TileHorizontally and TileVertically.
9295         
9296 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
9297
9298         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
9299         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
9300         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
9301         Corrected copyright and email adress.
9302
9303 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9304
9305         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
9306         of Exception in FullPath property if no TreeView is associated with
9307         the TreeNode.
9308
9309 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9310
9311         * Theme.cs: Marked default_font as private, and initialize it in ctor
9312         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
9313         on 2.0 profile.
9314         * ThemeGtk.cs: Removed default_font intialization.
9315         * ThemeWin32Classic.cs: Removed default_font initialization.
9316
9317 2006-12-28  Chris Toshok  <toshok@ximian.com>
9318
9319         * Control.cs: fix a couple of place where we were creating handles
9320         more aggressively than we should be.  Fixes ControlRefresh unit
9321         tests.
9322
9323 2006-12-28  Chris Toshok  <toshok@ximian.com>
9324
9325         * Control.cs: contrary to what the comment said, Control.Dock does
9326         not supercede Control.Anchor - the last one you assign to decides
9327         the layout behavior.  so we need to keep track of which was the
9328         last set.  Also, fix some of the affected property arguments in
9329         PerformLayout calls, and remove an redundant parent.PerformLayout
9330         call in OnResized.
9331
9332         Add a VisibleInternal property, which returns is_visible.  We
9333         can/should get rid of all the usage of this field elsewhere.
9334
9335 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9336         
9337         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
9338         control style, not DoubleBuffer. Added UseDoubleBuffering property
9339         that indicates whether doublebuffering is enabled and supported.
9340         (comment from and code based on Gert Driesen's patch in #80324).
9341         Fixes #80324.
9342
9343 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9344         
9345         * Control.cs: Fixed a NRE.
9346
9347 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9348
9349         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
9350         for 2.0.
9351
9352 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9353
9354         * Control.cs: Rewrote double buffering, now a seperate
9355         class handles all the buffering, no Graphics is disposed of
9356         until the painting is finished (earlier implementation 
9357         would crash if the control was resized in the OnPaint, 
9358         since it would cause the double buffer to be recreated
9359         and the old one disposed), a separate Graphics is 
9360         created for every paint (MS behaviour and anyways the state
9361         of the Graphics would have to be saved and restored otherwise)
9362         
9363         * XplatUIDriver.cs: 
9364         * XplatUIX11.cs:
9365         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
9366         so that we can get the graphics for the back buffer without
9367         having to create a new one and remove the offscreen_dc parameter
9368         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
9369         
9370 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9371
9372         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
9373         Also make virtual all the key-related methods.
9374
9375         * ListViewItem.cs: Make virtual the key related methods for
9376         ListViewSubItemCollection.
9377
9378 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9379
9380         * ListView.cs:
9381         * ListViewItem.cs:
9382         * ThemeWin32Classic.cs:
9383         * Theme.cs: Initial support for Tile view in ListView,
9384         as well as the implementation of the required bits for it (Item
9385         and Subitem).
9386
9387 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9388
9389         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
9390         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
9391         Provide useful exception messages.
9392
9393 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9394
9395         * TrackBar.cs: Remove a warning.
9396         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
9397         when used by DateTimePicker, fixes #80287. This also requires that 
9398         MonthCalendar implements it's own drawing for the yearly updown control,
9399         otherwise the Capture tracking would be too complicated. Removed the Click 
9400         and DoubleClick events (according to comments they were hiding the base class
9401         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
9402         raise these events, not that they cannot be raised. It is possible to raise 
9403         them by calling OnClick and OnDoubleClick). Added two internal fields in 
9404         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
9405         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
9406         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
9407         event, no longer needed.
9408         
9409 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9410
9411         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
9412         true if new value differs from current value.
9413
9414 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9415
9416         * Control.cs: ControlCollection.Count must be public. Fixed build of
9417         unit tests.
9418
9419 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9420
9421         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
9422
9423 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9424
9425         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
9426
9427 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9428
9429         * Control.cs: Invalidates control including when Width and Height is 
9430         equal zero or is not visible, only Paint event must be care about 
9431         this. Fixes #79913.
9432
9433 2006-12-26  Chris Toshok  <toshok@ximian.com>
9434
9435         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
9436         more corcompare work.
9437
9438         * DataGridView.cs: fix compiler warning.
9439
9440         * ColumnHeader.cs: some corcompare work, and also take the
9441         opportunity to make the internal fields private.
9442
9443         * ListView.cs: fix the fallout from the above field change.
9444
9445 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9446
9447         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
9448         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
9449         ToolStripTextBox.cs: Fixes to events and corcompare.
9450
9451 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9452
9453         * ListView.cs: Call owner.OnMousexx event to propagate events from
9454         item to ListView. Fixes #80367.
9455
9456 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9457
9458         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
9459         if value is less than one. ItemHeight should not be set to a value
9460         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
9461         Removed extra tabs.
9462
9463 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9464
9465         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
9466         * ToolStripStatusLabel.cs: Add Spring for Moma.
9467
9468 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9469
9470         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
9471         Fixed code formatting. Removed debug code.
9472         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
9473
9474 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9475
9476         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
9477         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
9478         ArgumentOutOfRangeException if ColumnCount is negative. In 
9479         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
9480         less than 4 or higher than 32768.
9481         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
9482         Fixed FormatProvider to return CurrentCulture unless explicitly set.
9483         Fixed IsFormatProviderDefault to return true if FormatProvider has
9484         not been explicitly set.
9485
9486 2006-12-25  Chris Toshok  <toshok@ximian.com>
9487
9488         * Application.cs: add a couple of 2.0 events.
9489
9490 2006-12-25  Chris Toshok  <toshok@ximian.com>
9491
9492         * Control.cs: fix compiler warning.
9493
9494         * AxHost.cs: corcompare fixes.
9495
9496         * ApplicationContext.cs: corcompare fixes.
9497
9498 2006-12-25  Chris Toshok  <toshok@ximian.com>
9499
9500         * Control.cs: only update dist_right/dist_bottom if the
9501         width/height is > 0.  this fixes anchored controls being resized
9502         smaller until they disappear and then resized larger again.
9503
9504 2006-12-25  Chris Toshok  <toshok@ximian.com>
9505
9506         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
9507         since they're nothing more than X/Left and Y/Top, respectively.
9508
9509         Also, move back to a per-control Bitmap/Graphics for
9510         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
9511         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
9512         Height.
9513
9514 2006-12-25  Miguel de Icaza  <miguel@novell.com>
9515
9516         * MessageBox.cs: Implemented overload that takes a new "bool
9517         displayHelpButton" by adding a new internal field "show_help".
9518         When clicked this will raise the HelpRequested on the owner or the
9519         main form. 
9520
9521         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
9522         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
9523
9524         * ListView.cs: Add support ColumnWidthChanged and
9525         ColumnWidthChanging. 
9526
9527         Add support for ColumnReordered event.
9528         (ReorderColumn): Add NET_2_0 specific support for cancelling the
9529         reorder.
9530
9531         Very nice codebase!
9532
9533         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
9534
9535         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
9536
9537 2006-12-24  Chris Toshok  <toshok@ximian.com>
9538
9539         * GridTablesFactory.cs: 2.0 corcompare work.
9540
9541         * ToolStripContainer.cs: add "override" to
9542         ContextMenuStripChanged, and remove the local event object.
9543
9544         * ToolStripDropDown.cs: same with a couple properties.
9545
9546         * ToolStripPanel.cs: same with AutoSizeChanged event.
9547
9548         * TextBoxBase.cs: add "override" to AutoSizeChanged.
9549
9550         * Form.cs: add the remaining 2.0 events, and do some corcompare
9551         attribute work.
9552
9553         * DateTimePicker.cs: add "new" to padding.
9554
9555         * ButtonBase.cs: use Control's use_compatible_text_rendering.
9556
9557         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
9558
9559         * DataGridView.cs: PaddingChanged is overridden.
9560
9561 2006-12-24  Chris Toshok  <toshok@ximian.com>
9562
9563         * Control.cs: corecompare work here too.
9564
9565         * DataGridViewElement.cs, DataGridView.cs,
9566         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
9567         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
9568         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
9569         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
9570         work.
9571
9572 2006-12-24  Miguel de Icaza  <miguel@novell.com>
9573
9574         * Control.cs: Switched the error message on the console for a
9575         todo.  A review of the code will have to cope with this anyways
9576         (since its a large feature, it is in our radar) and it was
9577         producing too much output when running PDN.
9578
9579         * ToolStripComboBox.cs: Set the text when the SelectedIndex
9580         changes.  Applications depend on this (PDN 2.72)
9581
9582 2006-12-23  Chris Toshok  <toshok@ximian.com>
9583
9584         * TableLayoutSettings.cs: finish up the corcompare work for this
9585         class.
9586
9587 2006-12-23  Chris Toshok  <toshok@ximian.com>
9588
9589         * Control.cs: make SetImplicitBounds internal, do some futzing
9590         with LayoutEngine so that it's available in 1.1, and remove the
9591         entire duplicated code mess from PerformLayout.  Use
9592         System.Windows.Forms.Layout.DefaultLayout instead.
9593
9594         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
9595
9596 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9597
9598         * Form.cs: Add MainMenuStrip property.
9599
9600 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9601
9602         * Control.cs: Add ContextMenuStrip property and implementation.
9603         Fix ContextMenu implementation to show menu centered on control when
9604         activated using the keyboard instead of showing at screen (0,0).
9605
9606         * ToolStripDropDown.cs: Fix needed overload of Show ().
9607
9608 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9609
9610         * Menu.cs: Name property added for 2.0 profile.
9611         
9612 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9613
9614         * Menu.cs: Update information about FindMenuItem, method to be
9615         implemented soon.
9616
9617 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9618
9619         * MenuAPI.cs: When deselect items deselect also selected subitems.
9620         
9621 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9622
9623         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
9624         FindSubItemByCoord to found itens that is not active, also an
9625         cheking added to FindSubItemByCoord to search for items only 
9626         in visible popup windows. Fixes #80274.
9627
9628 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
9629
9630         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
9631         internal property, it be care about change ExStyle. 
9632
9633 2006-12-22  Andreia Gaita  <avidigal@novell.com>
9634
9635         * ContainerControl.cs: set activeControl for parent forms up the 
9636         tree when the new activecontrol is a container.
9637         When validating the active control, if it is a container, also
9638         raise up the validation for it's active control. Fixes #80280
9639         
9640         * Control.cs: Add internal property flag and check to prevent
9641         Focus events from getting raised when Select() is called for
9642         a ContainerControl. There are still too many focus events being
9643         raised at the moment though.
9644         Cleaned up the code a bit.
9645
9646 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9647
9648         * Control.cs: Added all missing 2.0 events.and
9649         fixed a couple of corcompare issues.
9650         * TrackBar.cs: Implemented missing 2.0 bits.
9651         * MonthCalendar.cs, 
9652         * DateTimePicker.cs, 
9653         * MdiClient.cs: Fixed some corcompare issues.
9654
9655 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9656
9657         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
9658         SplitterPanel.cs: corecompare work.
9659
9660 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9661
9662         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
9663         Clean up warnings for BackgroundImageChanged and PaddingChanged
9664         events now that they are implemented in Control.cs.
9665
9666 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9667
9668         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
9669         
9670         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
9671         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
9672         of TableLayoutPanel and supporting cast.
9673
9674 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9675
9676         * XplatUIWin32.cs: 
9677         - GrabWindow now confines the mouse pointer to the confine window.
9678         - Added Win32ClipCursor and Win32GetClipCursor.
9679
9680         * Control.cs: 
9681         - Added CaptureWithConfine to be able to capture and confine 
9682         mouse pointer.
9683         
9684         * InternalWindowManager.cs: 
9685         - Call CaptureWithConfine instead of Capture if we're an
9686         MdiChild (fixes #79982).
9687
9688 2006-12-21  Chris Toshok  <toshok@ximian.com>
9689
9690         * DataGrid.cs: guard against the initial state of selection, where
9691         selection_start == -1.  make sure we only select from index >= 0.
9692         Fixes bug #80291.
9693
9694 2006-12-21  Chris Toshok  <toshok@ximian.com>
9695
9696         * Control.cs: we don't need to be so draconian with
9697         UpdateDistances, and we thusly don't need to call it before
9698         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
9699
9700 2006-12-21  Daniel Nauck  <dna@mono-project.de>
9701
9702         * ComboBox.cs,
9703         TextBox.cs: Implemented AutoComplete properties.
9704
9705 2006-12-20  Chris Toshok  <toshok@ximian.com>
9706
9707         * DataGridView*.cs: some corecompare work.
9708
9709 2006-12-20  Jackson Harper  <jackson@ximian.com>
9710
9711         * XplatUIX11.cs: We need to hide the caret when deleting it,
9712         otherwise you get carets left lying around everywhere.
9713         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
9714         prevents getting some weird half drawn caret tracers when
9715         scrolling.
9716         * TextControl.cs: Attempt to reduce the number of times we need to
9717         recreate the caret.
9718
9719 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
9720
9721         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
9722
9723 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9724
9725         * DateTimePicker.cs:
9726         - Implemented missing 2.0 bits.
9727         - Changed some default values to match MS.
9728         
9729 2006-12-20  Jackson Harper  <jackson@ximian.com>
9730
9731         * TextBoxBase.cs: When changing the font across the document we
9732         can't recalculate after changing each line, since that will cahnge
9733         the line count.
9734         - PreferredHeight is a little different than i thought.
9735         - When backspacing, move the caret before we do the actual char
9736         delete, because when that delete crosses a wrap boundary the
9737         positional information will change.
9738
9739 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9740
9741         * Control.cs: Added some missing 2.0 bits: 
9742         BackgroundImageLayout, BackgroundImageLayoutChanged, 
9743         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
9744         add IBindableComponent and IDropTarget implementation.
9745         
9746         * MonthCalendar.cs: 
9747         - Added all missing 2.0 features:
9748         BackgroundImageLayout, RightToLeftLayout, 
9749         OnHandleDestroyed, RightToLeftLayoutChanged, 
9750         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
9751         PaddingChanged.
9752         - Rewrote all the BoldDate code, it was completely broken.
9753         - Fixed all the tests (the tests can now be re-enabled, the
9754         problems were not with the tests, but with the control, it was
9755         mostly broken).
9756         
9757         * DateTimePicker.cs: Changed the location where the 
9758         MonthCalendar is shown.
9759         
9760 2006-12-19  Chris Toshok  <toshok@ximian.com>
9761
9762         * DataGridView.cs: add IDropTarget implementation.
9763
9764         * ToolStripPanel.cs: add IDropTarget implementation.
9765
9766 2006-12-19  Jackson Harper  <jackson@ximian.com>
9767
9768         * TextControl.cs: soft now means something different than what it
9769         used to mean, we want to move the caret regardless of whether or
9770         not this break was soft (would we really have wanted the caret
9771         to not move with the break in the old context?)
9772         * TreeView.cs: Make sure we factor in the vert scrollbar when
9773         calculating the horizontal scrollbar's maximum.
9774
9775 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9776
9777         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
9778         check for keywords in alternate casing, close bug #80049.
9779
9780 2006-12-19  Chris Toshok  <toshok@ximian.com>
9781
9782         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
9783         methods (which all do nothing).
9784
9785         * IDropTarget.cs: add the 4 missing methods.
9786
9787 2006-12-19  Chris Toshok  <toshok@ximian.com>
9788
9789         * TableLayoutRowStyleCollection.cs: corcompare work.
9790         
9791         * TableLayoutSettings.cs: same.
9792
9793         * TableLayoutStyle.cs: same.
9794
9795         * TableLayoutColumnStyleCollection.cs: same.
9796
9797 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
9798
9799         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
9800         TableLayoutPanel I've had in my local tree for way too long.
9801
9802 2006-12-19  Miguel de Icaza  <miguel@novell.com>
9803
9804         * TableLayoutSettings.cs: Finish the public API (still needs all
9805         the logic to update on changes). 
9806
9807         * TableLayoutPanelCellPosition.cs: new file.
9808         
9809         * TableLayoutRowStyleCollection.cs,
9810         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
9811         TableLayoutSettings.cs: Track the final 2.0 table api.
9812
9813 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9814
9815         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
9816         and Image List 2.0 members for ColummnHeader.
9817         * ListView.cs: Add key-related 2.0 methods for
9818         ColumnHeaderCollection.
9819
9820 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9821
9822         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
9823         ArgumentNullException if items argument is null. Ignore null item in
9824         arrays. Removed extra tabs.
9825
9826 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9827
9828         * MonthCalendar.cs: Fixed InvalidCastException.
9829
9830 2006-12-19  Jackson Harper  <jackson@ximian.com>
9831
9832         * TextControl.cs: Don't increment the position here.
9833         - When calculating char positions only add in the line break size
9834         for hard line breaks.
9835
9836 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9837
9838         * SendKeys.cs: Changed some things to match ms.net behaviour
9839         when parsing shifted capital letters.
9840         
9841         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
9842         Add window handle as parameter to SendInput. X11 needs the 
9843         window handle, and the handle being passed      to it in the keys 
9844         queue is the active control handle (which windows needs), not 
9845         the window handle.
9846         
9847         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
9848         to support SendKeys on X.       
9849         
9850         * X11Keyboard: Implement helper method to lookup a linux keycode
9851         given the virtual keycode. Added table of keycode-2-virtualkey
9852         values to support this.
9853
9854 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9855
9856         * ListView.cs: Add support for SelectedIndexCollection
9857         and SelectedItemCollection 2.0 methods. Implement support
9858         for ImageKey too.
9859         * ListViewItem.cs: Add support for ListViewSubItemCollection
9860         2.0 methods. Also, fix an incorrect behavior of AddRange method
9861         (it shouldn't call Clear).
9862         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
9863
9864 2006-12-19  Jackson Harper  <jackson@ximian.com>
9865
9866         * RichTextBox.cs: 
9867         * TextBoxBase.cs: New args for FormatText
9868         * TextControl.cs: Rewrote the main drawing method, this version
9869         feels a little easier to understand and debug to me.  Hopefully it
9870         does to others also
9871         - Fix FormatText to OR in the new formating values.  Added
9872         FormatSpecified param, basically this works in the same way as
9873         BoundsSpecified in Control.
9874         - Set the caret properties when the caret is positioned.
9875         - When wrapping text make sure that we calculate the width of the
9876         last character
9877         - when calculating alignments we might have wrapped down to the
9878         next line, so don't search for an individual tag, search for the
9879         end of the line
9880         - We need to invalidate the selection area when we replace the
9881         selection.
9882         
9883 2006-12-19  Daniel Nauck  <dna@mono-project.de>
9884
9885         * Application.cs: add Restart () 2.0 support
9886
9887 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9888
9889         * MenuItem.cs: Invalidate menu item rectangle after change Enable
9890         property. Fixes #80268.
9891         
9892 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9893
9894         * MenuAPI.cs: Dont trigger select event when closes top menu
9895         item. Fixes #80270.
9896
9897 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9898
9899         * MenuAPI.cs: When you click on menuitem only trigger onselect
9900         event for top menu itens. Fixes #80271.
9901         
9902 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9903
9904         * MdiWindowManager.cs: Make IconicBounds depend on
9905         the bottom of MdiClient, not the top (fixes #80267)
9906         
9907 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9908
9909         * MdiClient.cs: Added missing 2.0 attribute
9910
9911 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9912
9913         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
9914         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
9915
9916 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9917
9918         * MenuAPI.cs: Fix click when menuitem is not popup,
9919         this regression was caused by last commit (#80272).
9920
9921 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
9922
9923         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
9924         fire click event or close menu. Fixes #80272.
9925
9926 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9927
9928         * ListViewHitTestInfo.cs: add
9929
9930 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9931
9932         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
9933         * FlatButtonAppearance.cs: add
9934         * DockingAttribute.cs: add
9935
9936 2006-12-17  Chris Toshok  <toshok@ximian.com>
9937
9938         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
9939         and rebind our columns when it does - this way, if you make
9940         changes to the DataTable (or set the Table attribute on a DataView
9941         after setting it as the DataGrid's DataSource, the changes are
9942         made visible.)  Fixes bug #80107.
9943
9944 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9945
9946         * ListViewGroup.cs: add internal Location property for layouting.
9947         * Theme.cs: add abstract ListViewGroupHeight function.
9948         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
9949
9950 2006-12-16  Andreia Gaita  <avidigal@novell.com>
9951
9952         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
9953         Added reset of selected index to 0 when adding first tab page.
9954         Fixes #80264
9955         
9956         * NumericUpDown.cs: Fix NET_2_0 check
9957
9958 2006-12-16  Daniel Nauck  <dna@mono-project.de>
9959
9960         * ListViewGroup.cs: fixed DefaultValueAttribute value
9961
9962 2006-12-16  Daniel Nauck  <dna@mono-project.de>
9963
9964         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
9965
9966 2006-12-15  Miguel de Icaza  <miguel@novell.com>
9967
9968         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
9969         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
9970         ScrollableControl.cs: Add a handful of methods that are
9971         overwritten in 2.0 
9972
9973 2006-12-15  Chris Toshok  <toshok@ximian.com>
9974
9975         * XplatUIWin32.cs: initial implementation of the Reversible
9976         drawing functions.  there are some problems.  DrawReversibleFrame
9977         doesn't seem to work at all for Dashed FrameStyle, and in the
9978         Thick case there are drawing errors at the corners (we probably
9979         need to bind Rectangle instead of doing moveto/lineto's.)
9980
9981 2006-12-16  Andreia Gaita  <avidigal@novell.com>
9982         
9983         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
9984         to send blocks of key messages. Send accumulates keys to send with Flush, 
9985         while SendWait sends all keys immediately.
9986                 
9987         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
9988         XplatUIX11.cs,  XplatUIX11-new.cs:
9989         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
9990         to Win32 SendInput.
9991         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
9992         
9993         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
9994         testing for ms.net on this class is very tricky, as the tests run too fast 
9995         to allow the hook to release, essentially freezing the keyboard and the 
9996         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
9997         category :p
9998
9999 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10000
10001         * Padding.cs: fixed serialization compability to MS ("_var" field names),
10002                         added missing attributes.
10003  
10004 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10005
10006         * ListViewGroup.cs: Added missing attributes.
10007         * ListViewGroupCollection.cs: Added missing attributes.
10008
10009 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10010
10011         * ListViewItem.cs: fixed ListViewSubItem text property.
10012
10013 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10014         
10015         * Control.cs: Added missing 2.0 attributes
10016         
10017 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10018         
10019         * MdiClient.cs: Added missing 2.0 attribute.
10020         * MonthCalendar.cs: Added some missing 2.0 attributes 
10021         and properties.
10022         
10023 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10024
10025         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
10026
10027 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
10028
10029         * MainMenu.cs: Add the new 2.0 constructor to help out people
10030         using the MainMenu in VS2005.
10031
10032 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10033         
10034         * MdiChildContext.cs: Removed it, no longer used.
10035         * MdiClient.cs: Added missing 2.0 attributes.
10036         
10037 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10038         
10039         * InternalWindowManager.cs: Fix a NullRef with previous 
10040         changes for toolwindows.
10041         
10042 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10043
10044         * Control.cs: 
10045         - Added AfterTopMostControl to allow for certain controls 
10046         to always stay on top when normal controls are brought to 
10047         front.
10048         
10049         * XplatUIWin32.cs: 
10050         - (DrawInversibleRectangle): Get window rectangle from Win32 
10051         in stead of from control, since Win32 doesn't calculate
10052         screen coords correctly from control's Location if it 
10053         have docked siblings.
10054         
10055         * MdiWindowManager.cs:
10056         - Correct the control menu popup location when clicked on
10057         the maximized form icon. (fixes #80223.1)
10058         - Don't show moving rectangle if mouse hasn't moved from
10059         the original clicked point.
10060         - Removed FormGotFocus handler (not used).
10061         - Calculate the control buttons location from the main
10062         window's size and not client size (fixes #79770).
10063         - Form is now closed when the form icon is double-clicked
10064         (fixes #79775). 
10065         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
10066         
10067         * InternalWindowManager.cs:
10068         - Moved some MDI-only methods to MdiWindowManager.
10069         - Removed unused properties and methods.
10070         - Unified method naming for methods handling wm messages.
10071         - Moved all message handling to seperate methods for
10072         each message.
10073         
10074         * ThemeWin32Classic.cs:
10075         - DrawManagedWindowDecorations now draws the title bar 
10076         with a gradient brush.
10077         - Add a CPDrawButtonInternal that allows us to specify
10078         light, normal and dark colors for the buttons (control 
10079         buttons for MDI children were drawn with the same light
10080         color as the background, therefore loosing the 3D effect).
10081         
10082         * SizeGrip.cs:
10083         - Add a CapturedControl property that is used to 
10084         determine the control to resize (defaults to parent). 
10085         Needed for MdiClient, since its SizeGrip's parent is
10086         MdiClient, but the control to resize is the main form.
10087         
10088         * MdiClient.cs:
10089         - Set SizeGrip's CapturedControl to the main form in order
10090         to resize the main form and not the MdiClient.
10091         - Override AfterTopMostControl to leave the scrollbars 
10092         always on top.
10093
10094 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10095
10096         * ListView.cs: fixed ListViewItemCollection AddRange and
10097                         implemented ListViewItemCollection AddRange 2.0 support.
10098
10099 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10100
10101         * ListViewGroup.cs: Add.
10102         * ListViewGroupCollection.cs: Add
10103         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
10104         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
10105                                 stub for ImageKey 2.0 support.
10106
10107 2006-12-14  Mike Kestner  <mkestner@novell.com>
10108
10109         * ListView.cs: add text padding to the autocalculation for columns
10110         of width -2.  Fixes #80207.
10111  
10112 2006-12-14  Mike Kestner  <mkestner@novell.com>
10113
10114         * ListView.cs: add some index guarding for partial row navigation 
10115         logic.  Fixes #80250.
10116
10117 2006-12-14  Mike Kestner  <mkestner@novell.com>
10118
10119         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
10120         are added or inserted to the collection.  Fixes #81099.
10121
10122 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
10123
10124         * MenuAPI.cs: Closes menu when right click out side of popup
10125         it fix problem in ContextMenu and MainMenu. Fixes #80252.
10126
10127 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10128
10129         * ListViewItem.cs: Fix dumb error.
10130
10131         * ListView.cs: Add Find and ContainsKey methods in 
10132         ListViewItemCollection, and also return true for IsReadOnly
10133         and IsFixedSize (changes for 2.0). 
10134
10135 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
10136
10137         * Control.cs: Allow Region to be set to null.
10138
10139 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10140
10141         * MdiWindowManager.cs: Remove unused (commented out) code.
10142         * Form.cs: When the MdiChild is maximized, the form needs 
10143         WM_NCMOUSELEAVE, so request it.
10144         * InternalWindowManager.cs: 
10145         - Added tooltips to control buttons.
10146         - Removed duplicated control button handling code.
10147         - Removed unused (commented out) code.
10148         
10149 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
10150
10151         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
10152         was used because we must set cursor without trigger ChangeCursor event
10153         and without change Cursor control property. Fixes #79963.
10154
10155 2006-12-12  Andreia Gaita  <avidigal@novell.com>
10156         
10157         * Control.cs: Check if Region setter value is null, and ignore
10158
10159 2006-12-12  Jackson Harper  <jackson@ximian.com>
10160
10161         * TextControl.cs: We were almost always drawing one more line then
10162         needed, since the GetLineByPixel will return the last line found
10163         at that pixel. In most cases though, we were invalidating up to
10164         the junction between two lines.
10165         - Improve debug code.
10166
10167 2006-12-12  Chris Toshok  <toshok@ximian.com>
10168
10169         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
10170         and FillReversibleRectangle.
10171
10172         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
10173         and FillReversibleRectangle.
10174
10175         * XplatUIWin32.cs: add stubs which do nothing for
10176         DrawReversibleFrame, DrawReversibleLine, and
10177         FillReversibleRectangle.
10178
10179         * XplatUIOSX.cs: add stubs which raise NIE for
10180         DrawReversibleFrame, DrawReversibleLine, and
10181         FillReversibleRectangle.
10182
10183         * XplatUIX11.cs: add working implementation for
10184         DrawReversibleFrame, DrawReversibleLine, and
10185         FillReversibleRectangle.
10186         
10187         * ControlPaint.cs: implement DrawReversibleFrame,
10188         DrawReversibleLine, and FillReversibleRectangle, by calling into
10189         the appropriate XplatUI method.
10190
10191 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10192
10193         * Form.cs: Make MdiClient have the focus even if it's
10194         not selectable, since it should receive WM_KEY* and WM_MOUSE 
10195         messages. Fixes #79907.
10196         
10197 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10198
10199         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
10200         queried after the window is created.
10201         
10202         * XplatUIX11.cs: Added SendParentNotify to implement 
10203         WM_PARENTNOTIFY logic. Fixes #79965.
10204         
10205         * Control.cs: Added MakeParam.
10206         
10207 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10208
10209         * MdiClient.cs: Resume Layout before setting window
10210         states (fixes #80201).
10211
10212 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10213
10214         * MenuAPI.cs: Deselect a menu item after performing
10215         the click (fixes #80197).
10216
10217 2006-12-11  Jackson Harper  <jackson@ximian.com>
10218
10219         * TextBoxBase.cs: We need to cap this value, since Maximum -
10220         ViewPortHeight can be less than zero.
10221         - Only do selection with the left mouse button.
10222         * TextBox.cs: Don't tell the world that we have a context menu.
10223         * Control.cs: New method so that we can control whether or not the
10224         context menu is visible outside MWF.
10225
10226 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
10227
10228         * ToolBarButton.cs: Fix text positon. 
10229
10230 2006-12-11  Miguel de Icaza  <miguel@novell.com>
10231
10232         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
10233
10234         * Control.cs (DoubleBuffered): Add implementation.
10235
10236         * Application.cs (OpenForms): Add.
10237
10238 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
10239
10240         * Form.cs: Use opacity instead of Opactiy to determine if we need
10241         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
10242
10243 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
10244
10245         * Control.cs: Fix NRE if Control.Site was set to null.
10246
10247 2006-12-11  Chris Toshok  <toshok@ximian.com>
10248
10249         * Control.cs: ControlCollection.Remove should return if the arg is
10250         null, and ControlCollection.SetChildIndex should raise a ANE.
10251
10252 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
10253
10254         * Control.cs: Verify value set for Dock property. Code formatting
10255         updates.
10256
10257 2006-12-11  Jackson Harper  <jackson@ximian.com>
10258
10259         * TextControl.cs: Draw the caret and the selection when a flag is
10260         set on the owner.
10261         * TextBoxBase.cs: We want to draw the caret and the selection for
10262         TextBox but not for TextBoxBase.
10263         - If the window is resized and scrolling is no longer needed (the
10264         whole doc is visible) set the scroll position to zero.
10265         - The default SelectWord (the one TextBox uses) should move the
10266         caret to the end of the word.
10267         - SelectAll moves the caret to the end of the selection.
10268         * TextBox.cs: We don't selectall on focus, we just do it when the
10269         control is created.
10270         
10271 2006-12-11  Mike Kestner  <mkestner@novell.com>
10272
10273         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
10274
10275 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10276
10277         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
10278         2.0 support.
10279         * ListViewItem.cs: Add Name 2.0 property.
10280
10281 2006-12-11  Andreia Gaita  <avidigal@novell.com>
10282
10283         * TabControl.cs: Set visibility on selected or default tab 
10284         when tabcontrol handle is created, so that it's contents
10285         actually show up (duh). Fixes #80193
10286         Don't redraw the control if there is no handle created, as
10287         the selected index might be completely invalid. Added some tests
10288         to check for this.
10289
10290 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
10291
10292         * ToolBar.cs: Uses maximun width and height of all buttons as 
10293         button rectangle when ButtonSize specified, it looks strange but
10294         is what happens in Win32. Fixes #80189.
10295
10296 2006-12-11  Jackson Harper  <jackson@ximian.com>
10297
10298         * TextControl.cs: Need to track undo levels ourself, since
10299         compound actions will mess them up.
10300
10301 2006-12-10  Andreia Gaita  <avidigal@novell.com>
10302
10303         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
10304         SelectedIndex value is changed (even if it's not valid).
10305         Reset SelectedIndex to 0 when the handle is created and if
10306         the current index is invalid.
10307         Fixes SelectdeIndex unit tests and #80128
10308
10309 2006-12-08  Chris Toshok  <toshok@ximian.com>
10310
10311         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
10312         calls EndEdit, it needs to be called before we set current_cell to
10313         its new value.  Otherwise, we end up committing the value in the
10314         textbox to the new cell as well.  Fixes bug #80160.
10315
10316 2006-12-08  Chris Toshok  <toshok@ximian.com>
10317
10318         * Form.cs (set_CancelButton): if the button's DialogResult is
10319         None, set it to Cancel.  Fixes bug 80180.
10320
10321 2006-12-08  Jackson Harper  <jackson@ximian.com>
10322
10323         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
10324         to watch ourselves when setting the canvas size and setting the
10325         scrollbar values.
10326
10327 2006-12-08  Chris Toshok  <toshok@ximian.com>
10328
10329         * DataGrid.cs: comment out the two MakeTransparent calls for the
10330         time being so people using trunk (and not 1.2.2) on windows can
10331         actually use the datagrid.  This deals with bug #80151.
10332
10333 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
10334
10335         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
10336         Graphics.DrawImage (image, int, int, int, int) overload instead
10337         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
10338         the dpi difference and was blurring images it drew.
10339         [Fixes bug #79960]
10340
10341 2006-12-08  Chris Toshok  <toshok@ximian.com>
10342
10343         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
10344         rowcnt is 0 (such as with an empty datasource), and make sure we
10345         initialize not_usedarea.Y to cells.Y, so we don't draw over the
10346         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
10347
10348 2006-12-08  Chris Toshok  <toshok@ximian.com>
10349
10350         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
10351         grid.
10352
10353 2006-12-08  Chris Toshok  <toshok@ximian.com>
10354
10355         [ Fixes bug #80167 ]
10356         
10357         * ThemeWin32Classic.cs: don't draw the image if the button's flat
10358         style is FlatStyle.System.
10359
10360         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
10361         ButtonBase.flat_style private, and switch uses of it to the public
10362         property.
10363         
10364 2006-12-08  Chris Toshok  <toshok@ximian.com>
10365
10366         [ Fixes bug #80121 ]
10367         
10368         * ThemeWin32Classic.cs: center the caption text in the datagrid
10369         when we draw it.
10370
10371         * DataGrid.cs: lessen the amount we add to the caption height from
10372         6 to 2.  6 was making it huge.
10373
10374 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10375
10376         * UpDownBase: Handle MouseWheel call directly instead of capturing
10377         the inner textbox's OnMouseWheel. Fixes #80166
10378
10379 2006-12-08  Jackson Harper  <jackson@ximian.com>
10380
10381         * TextControl.cs: We need to invalidate the textbox when we empty
10382         it (how had this not been discovered before?)
10383
10384 2006-12-08  Jackson Harper  <jackson@ximian.com>
10385
10386         * TextBoxBase.cs: Reworked the mouse down code so I could get it
10387         to behave like MS, we now ignore the eventargs.Click and just
10388         track state ourself, which we were already doing anyways.
10389         - Constrain the double click handler to the double click size.
10390         
10391 2006-12-08  Chris Toshok  <toshok@ximian.com>
10392
10393         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
10394         direction if that scrollbar isn't shown.  fixes bug #80158.
10395
10396 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10397
10398         * NumericUpDown.cs: Update value on getter. Fixes #79950
10399
10400 2006-12-08  Chris Toshok  <toshok@ximian.com>
10401
10402         * MenuItem.cs: add back in the event cloning code.  I didn't know
10403         how to do it in the face of the EventHandlerList work i'd done
10404         last week.  Fixes bug #80183.
10405
10406 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
10407
10408         * Control.cs: Add an invalidate to the BackgroundImage setter.
10409         [Fixes 80184]
10410
10411 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10412
10413         * ToolStrip*: Add some small properties reported by MoMA, fix event
10414         firing and default properties based off of unit tests, and add some
10415         attributes based off of the class status page.
10416
10417 2006-12-07  Jackson Harper  <jackson@ximian.com>
10418
10419         * TextBoxBase.cs: Take HideSelection into account when determining
10420         whether or not to show the selection.
10421         * RichTextBox.cs: After inserting the RTF into the document move
10422         the cursor to the beginning of the document.
10423
10424 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10425
10426         * Control.cs: Remove static ArrayList "controls" which maintained
10427         a reference to every control created.
10428         * Application.cs: Create a static FormCollection to maintain a reference
10429         to every form created.  Use it in places that formerly enumerated through
10430         the controls one looking for forms.
10431         * Form.cs: Add and remove self from above FormCollection.
10432
10433 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
10434
10435         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
10436           not libgdk (though it makes me wonder why I didn't have any
10437           problems)
10438
10439 2006-12-07  Chris Toshok  <toshok@ximian.com>
10440
10441         [ you had to know this was coming after that last commit...]
10442         
10443         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
10444         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
10445         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
10446         XCopyArea).
10447
10448 2006-12-07  Chris Toshok  <toshok@ximian.com>
10449
10450         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
10451         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
10452         all the behavior we need for double buffering.
10453
10454         * XplatUIDriver.cs: implement the 3 double buffer methods using a
10455         client side Bitmap, just like the old Control-based double buffer
10456         code did.  The methods are virtual, so each XplatUI driver
10457         subclass can replace the implementation to use a faster, platform
10458         specific approach.
10459
10460         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
10461         double buffer code, and clean things up a bit in the process.
10462
10463 2006-12-06  Chris Toshok  <toshok@ximian.com>
10464
10465         * Control.cs: reindent WndProc.
10466
10467 2006-12-06  Chris Toshok  <toshok@ximian.com>
10468
10469         [ I wanna be like BenM when I grow up ]
10470         
10471         * Hwnd.cs: create a single static Graphics object on the static
10472         Bitmap we create.  use this for our text measurements.
10473
10474         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
10475         This was causing us to allocate a backbuffer for every control,
10476         even when it wasn't flagged as double buffered.  Instead use the
10477         single graphics instance.  This might have implications for
10478         multithreaded applications.  If we run into problems we can switch
10479         to creating 1 Graphics per control, on the static Hwnd bitmap.
10480
10481         this change nets us a 7M savings in private dirty mappings when
10482         running FormsTest.exe.
10483
10484 2006-12-06  Chris Toshok  <toshok@ximian.com>
10485
10486         * ListView.cs: the BackgroundImage override is just to set
10487         attributes.  chain up to base.BackgroundImage.
10488
10489         * RichTextBox.cs: same.
10490
10491         * ToolBar.cs: same, but we need to also redraw the toolbar when it
10492         changes, so instead a handler for BackgroundImageChanged.
10493         
10494         * Control.cs: make background_image private.
10495
10496 2006-12-06  Chris Toshok  <toshok@ximian.com>
10497
10498         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
10499         sure we even need this assignment, but roll with it for now.
10500
10501         * Control.cs: make the cursor field private.
10502
10503 2006-12-06  Chris Toshok  <toshok@ximian.com>
10504
10505         * Form.cs: we don't need to explicitly set ImeMode to
10506         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
10507         behavior in the face of ImeMode.Inherit.
10508
10509         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
10510         change the ctor's assignment to use ImeMode instead of ime_mode.
10511
10512         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
10513         ImeModeInherit.  Only check for the parent's imemode (and return
10514         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
10515         This fixes the button unit test, which sets both ImeMode and
10516         DefaultImeMode to ImeMode.Disable.
10517
10518         also make the ime_mode field private.
10519
10520 2006-12-06  Chris Toshok  <toshok@ximian.com>
10521
10522         * Control.cs: make control_style private.
10523
10524         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
10525         setting the styles to true, then setting them to false instead of
10526         reverting to their previous values.
10527
10528         also, call SetStyle on the scrollbars instead of using
10529         control_style directly.
10530
10531 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
10532
10533         * FormCollection.cs: Implement. [2.0]
10534
10535 2006-12-06  Chris Toshok  <toshok@ximian.com>
10536
10537         * Control.cs: make tab_stop private.
10538
10539         * Label.cs: set TabStop, not tab_stop.  reformat some event
10540         add/remove methods to make them more compact.
10541
10542 2006-12-06  Chris Toshok  <toshok@ximian.com>
10543
10544         * RadioButton.cs: fix TabStop handling.
10545
10546 2006-12-06  Chris Toshok  <toshok@ximian.com>
10547
10548         * TextBox.cs: remove the explicit assignments to has_focus.
10549         Control does that.
10550
10551         * ButtonBase.cs: remove the assignment to has_focus.  Control will
10552         manage that.
10553         
10554 2006-12-06  Chris Toshok  <toshok@ximian.com>
10555
10556         * ButtonBase.cs: remove all uses of is_enabled from this code.
10557         it's always true when any of the code containing the checks is
10558         executed.
10559
10560 2006-12-06  Chris Toshok  <toshok@ximian.com>
10561
10562         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
10563         with different semantics (some are present in both 1.1 and 2.0
10564         profiles) so that we match MS's behavior in our unit tests.
10565
10566 2006-12-06  Jackson Harper  <jackson@ximian.com>
10567
10568         * TextControl.cs: Make this operation undoable.
10569         * TextBoxBase.cs: Factor the border width into the preferred
10570         height.
10571         - implement Modified as per the spec.
10572
10573 2006-12-06  Chris Toshok  <toshok@ximian.com>
10574
10575         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
10576
10577 2006-12-06  Chris Toshok  <toshok@ximian.com>
10578
10579         * Control.cs: make right_to_left and context_menu fields private.
10580
10581 2006-12-06  Chris Toshok  <toshok@ximian.com>
10582
10583         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
10584         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
10585         Control.child_controls private.  switch all uses over to
10586         Control.Controls.
10587
10588 2006-12-06  Chris Toshok  <toshok@ximian.com>
10589
10590         * System.Windows.Forms/GroupBox.cs,
10591         System.Windows.Forms/AccessibleObject.cs,
10592         System.Windows.Forms/ErrorProvider.cs,
10593         System.Windows.Forms/Control.cs,
10594         System.Windows.Forms/UpDownBase.cs,
10595         System.Windows.Forms/ScrollBar.cs,
10596         System.Windows.Forms/DateTimePicker.cs,
10597         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
10598         System.Windows.Forms/ToolTip.cs,
10599         System.Windows.Forms/RadioButton.cs,
10600         System.Windows.Forms/LinkLabel.cs,
10601         System.Windows.Forms/Splitter.cs,
10602         System.Windows.Forms/TextBoxBase.cs,
10603         System.Windows.Forms/ToolStripTextBox.cs,
10604         System.Windows.Forms/ContainerControl.cs,
10605         System.Windows.Forms/ThemeWin32Classic.cs,
10606         System.Windows.Forms/SizeGrip.cs,
10607         System.Windows.Forms/ToolStripDropDown.cs,
10608         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
10609         private.  switch all uses over to Control.Parent.
10610
10611 2006-12-06  Chris Toshok  <toshok@ximian.com>
10612
10613         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
10614         Control does this before calling emitting these events.
10615
10616         * TabControl.cs: same.
10617
10618         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
10619         Control.client_rect.
10620
10621         * ButtonBase.cs: use the ClientSize property instead of the
10622         client_size field.
10623
10624         * ScrollableControl.cs: same.
10625
10626         * Control.cs: another pass at making properties private.  also,
10627         move the initialization of tab_stop to the ctor.
10628
10629 2006-12-05  Andreia Gaita <avidigal@novell.com>
10630
10631         * TabControl.cs: Let the selected index be set freely if the 
10632         control handle is not yet created.
10633
10634 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10635
10636         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
10637         internal until I can rewrite DefaultLayout.
10638         * ToolStrip.cs: Fix build error and some general cleaning.
10639         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
10640         Fix build errors caused by making some of Control's fields private.
10641
10642 2006-12-05  Jackson Harper  <jackson@ximian.com>
10643
10644         * TextControl.cs: Redo Insert a little so that it use IndexOf
10645         instead of Split, this prevents it from messing up on things like
10646         \n\n\n. Also more effecient since the split array doesn't need to
10647         be created.
10648         * TextBoxBase.cs: AppendText doesnt handle multiline and non
10649         multiline text differently, this is the first of many fixes that
10650         will make multiline/non-multiline the same thing as far as the
10651         TextBoxBase is concerned.
10652         - Don't split the text and insert lines, this can lose some line
10653         endings (like is the last line a soft or hard break). Instead use
10654         the new Insert.
10655         - Fix an off by one when combining all the lines in the Text
10656         getter.
10657         - Remove separate multiline handling from the Text getter/setter.
10658
10659 2006-12-05  Chris Toshok  <toshok@ximian.com>
10660
10661         * ButtonBase.cs: a few changes:
10662
10663         - don't reinitialize internal Control fields in the ctor when they
10664         have the same values as Control sets them.
10665
10666         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
10667         this before calling those methods.
10668
10669         - we don't need to call Refresh for anything.  use Invalidate
10670         instead.
10671
10672         - OnEnabledChanged doesn't need to redraw at all - Control.cs
10673         calls Refresh in its OnEnabledChanged.
10674         
10675         - several of the events we were registered for in the ctor to
10676         redraw ourselves already include calls to Invalidate in the
10677         property setters that raise the events.  remove the extra
10678         invalidation.
10679
10680         - reformat a switch statement that was 83274658 columns wide.
10681         
10682 2006-12-05  Mike Kestner  <mkestner@novell.com>
10683
10684         * ComboBox.cs: fix a unit test regression from a TextBox
10685         SelectionLength return of -1 when there's no selection.  
10686
10687 2006-12-05  Chris Toshok  <toshok@ximian.com>
10688
10689         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
10690         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
10691         cleaning up some of the internal Control fields being used by
10692         subclasses.
10693
10694 2006-12-05  Mike Kestner  <mkestner@novell.com>
10695
10696         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
10697         listbox after AddImplicit calls since it defaults to hidden. Add a 
10698         hack to preserve requested heights across DropDownStyle changes.
10699
10700 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10701
10702         * PropertyGrid.cs: Hide FindFirstItem method from public API.
10703
10704 2006-12-05  Chris Toshok  <toshok@ximian.com>
10705
10706         * DataGridView.cs: fix compiler warnings.
10707
10708         * PrintControllerWithStatusDialog.cs: same.
10709
10710         * ToolBar.cs: same.
10711
10712         * FolderBrowserDialog.cs: same.
10713
10714         * Splitter.cs: same.
10715
10716         * DataGridViewComboBoxCell.cs: same.
10717
10718         * XplatUIWin32.cs: same.
10719
10720         * PictureBox.cs: same.
10721
10722         * Win32DnD.cs: same.
10723
10724         * PageSetupDialog.cs: same.
10725
10726         * FileDialog.cs: same.
10727
10728         * PrintDialog.cs: same.
10729
10730         * DataGridTextBoxColumn.cs: same.
10731
10732         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
10733
10734 2006-12-05  Chris Toshok  <toshok@ximian.com>
10735
10736         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
10737         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
10738         System.ComponentModel.EventHandlerList work.
10739
10740 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
10741
10742         * DrawTreeNodeEventArgs.cs: Added.
10743
10744 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10745         
10746         * InternalWindowManager.cs: Remove an unused field.
10747         
10748 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10749
10750         * InternalWindowManager.cs:
10751         - Save the point where the title bar is clicked.
10752         
10753         * MdiWindowManager.cs:
10754         - Only allow moving of the window as long as the 
10755         clicked point on the title bar does not get out of
10756         MdiClient's rectangle. Fixes #79982.
10757         
10758         * MdiClient.cs:
10759         - Added Horizontal/VerticalScrollbarVisible.
10760         - Simplified the scrollbar sizing algorithm.
10761         - Cache the difference in scrolled value in
10762         H/VBarValueChanged and move the calculation out
10763         of the for loop.
10764
10765 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10766
10767         * Control.cs: Make the Console.WriteLine in WndProc 
10768         write more info.
10769
10770 2006-12-05  Chris Toshok  <toshok@ximian.com>
10771
10772         * ToolStripManager.cs, ToolStripButton.cs,
10773         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
10774         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
10775         ToolStripSplitButton.cs, ToolStripSeparator.cs,
10776         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
10777         ToolStripProgressBar.cs, ToolStripContainer.cs,
10778         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
10779         to using System.ComponentModel.EventHandlerList.
10780
10781 2006-12-04  Chris Toshok  <toshok@ximian.com>
10782
10783         * LinkLabel.cs: fix up compiler warnings.
10784
10785         * TableLayoutSettings.cs: same.
10786
10787         * TreeView.cs: same.
10788
10789         * ToolBar.cs: same.
10790
10791         * TabControl.cs: same.
10792
10793         * RichTextBox.cs: same.
10794
10795         * ListViewItem.cs: same.
10796
10797         * PropertyGrid.cs: same.
10798
10799         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
10800
10801         * ToolTip.cs same.
10802
10803         * TextRenderer.cs: fix up compiler warnings.
10804
10805         * Label.cs: same.
10806
10807         * Form.cs: corcompare fixes.
10808
10809         * PictureBox.cs: fix up compiler warnings.
10810
10811         * ImageListStreamer.cs: same.
10812
10813         * TrackBar.cs: corcompare fix.
10814
10815         * Control.cs: fix up compiler warnings.
10816
10817         * SplitterPanel.cs: same.
10818
10819         * NumericTextBox.cs: same.
10820
10821         * ImageList.cs: same.
10822
10823         * StatusStrip.cs: same.
10824
10825         * ProgressBar.cs: corcompare fix.
10826
10827         * ToolStripButton.cs: fix up compiler warnings.
10828
10829         * ToolStripStatusLabel.cs: same.
10830
10831         * ToolStripSplitButton.cs: same.
10832
10833         * ToolStripSeparator.cs: same.
10834
10835         * ToolStripProgressBar.cs: same.
10836
10837         * ToolStripDropDownMenu.cs: same
10838
10839         * ToolStripDropDown.cs: same.
10840
10841         * ToolStripDropDownButton.cs: same.
10842
10843         * ToolStrip.cs: same.
10844
10845         * ToolStripControlHost.cs: same.
10846
10847         * ToolStripContentPanel.cs: same.
10848
10849         * ToolStripDropDown.cs: same.
10850
10851         * ToolStripContainer.cs: same.
10852
10853         * ToolStripPanel.cs: same, and add "new" where we need it to work
10854         with the new ArrangedElementCollection.
10855
10856         * ToolStripItemCollection.cs: add "new" where we need it to work
10857         with the new ArrangedElementCollection.
10858
10859 2006-12-04  Andreia Gaita <avidigal@novell.com>
10860
10861         * TabControl.cs: Fix default tab selection to after TabControl
10862         gets focus and not before. Fixes #80128
10863
10864 2006-12-04  Chris Toshok  <toshok@ximian.com>
10865
10866         * DataGridTableStyle.cs: remove the gross calling of
10867         datagrid.Refresh from here.  It's a broken idea and it doesn't
10868         work anyway.
10869
10870         * DataGrid.cs: instead, just register/unregister from the
10871         DataGridTableStyle events in CurrentTableStyle.  we play it
10872         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
10873         even though some would most likely not require it.  Fixes bug
10874         #80115 (and one portion of #80117 as a side effect).
10875
10876 2006-12-04  Chris Toshok  <toshok@ximian.com>
10877
10878         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
10879         so the textbox (if any) goes away.  Fixes bug #80117.
10880
10881 2006-12-04  Chris Toshok  <toshok@ximian.com>
10882
10883         * DataGridColumnStyle.cs: set the column's readonly property
10884         initially based on the property descriptor's IsReadOnly.  Fixes
10885         bug #80044.
10886
10887 2006-12-04  Chris Toshok  <toshok@ximian.com>
10888
10889         * ComboBox.cs: wrap the dropdown style changing work in
10890         SuspendLayout/ResumeLayout.  Fixes bug #79968.
10891
10892 2006-12-04  Jackson Harper  <jackson@ximian.com>
10893
10894         * TextBoxBase.cs: Fix off by one, since these are one-based.
10895         * TextBox.cs: Select all the text when we get focus.  The TextBox
10896         does this but the RTB does not.
10897
10898 2006-12-04  Chris Toshok  <toshok@ximian.com>
10899
10900         * DataGridTextBoxColumn.cs: remove some spew.
10901
10902         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
10903         but some part of me is saying "it shouldn't be here.."  At any
10904         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
10905         setting the value.
10906
10907 2006-12-04  Chris Toshok  <toshok@ximian.com>
10908
10909         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
10910         to reassign the propertydescriptor.
10911
10912 2006-12-04  Jackson Harper  <jackson@ximian.com>
10913
10914         * TextBoxBase.cs:
10915         * TextControl.cs: Remove some unused variables.  Maybe this will
10916         patch things up between mike and I.
10917         - don't split lines less then one char wide, if the viewport is
10918         that small text won't be visible anyways.
10919         
10920 2006-12-04  Jackson Harper  <jackson@ximian.com>
10921
10922         * TextBoxBase.cs: Default selection length is -1, need to do some
10923         more testing on windows to see when this is used for the property.
10924         - Redid the Lines [] property to that we properly remove soft line
10925         breaks
10926         - added support for preserving carriage returns
10927         -  CanUndo is not a variable like 'is undo enabled' it just returns
10928         true if there is undo operations available.
10929         - AppendText doesn't need to grab the last tag itself anymore,
10930         this happens automatically when we move the cursor.
10931         * TextControl.cs: Add CompoundActions to the undo class. This
10932         allows combining the other operations into one big option.  ie a
10933         paste will combine { delete old, insert new, move cursor }
10934         - Add InsertString undo operation
10935         - New method for deleting multiline text
10936         - Add carriage returns to lines. So we can preserve carriage
10937         returns when text is 'roundtripped'
10938
10939 2006-12-04  Chris Toshok  <toshok@ximian.com>
10940
10941         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
10942         minimum 0.  Fixes the scrollbar exception in bug #80136.
10943
10944 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10945
10946         * MdiClient.cs: 
10947         * MdiWindowManager: Removed unused fields and methods.
10948         
10949 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10950         
10951         * StatusBar.cs: Update all panels when a AutoSize=Contents
10952         panel needs updating.
10953         
10954         * StatusBarPanel.cs: Remove twidth and only use initialize.
10955         Fixes #80031.
10956                 
10957 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10958
10959         * Form.cs: When a form's MdiParent is set add it directly
10960         on top of the z-order in stead of relying on MdiClient's
10961         ActivateChild to do it. Fixes #80135.
10962         
10963         * MdiClient.cs: 
10964         - Remove original_order, mdi_child_list is already doing
10965         the same thing.
10966         - Create mdi_child_list on construction in
10967         stead of first use (avoids a few null checks).
10968
10969         * MenuItem.cs: Use an already existing list of mdi children
10970         to get the correct order of children and remove the other
10971         redundant list.
10972
10973 2006-12-04  Chris Toshok  <toshok@ximian.com>
10974
10975         * PropertyGridView.cs: cached_splitter_location is only used in
10976         !DOUBLEBUFFER code.
10977
10978         * PropertyGrid.cs: implement the ComComponentNameChanged event
10979         using Events, hoping that would fix the warning.  Looks like a
10980         compiler bug instead (#80144).
10981
10982         * PropertyManager.cs: remove unused method.
10983
10984 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
10985
10986         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
10987         include parentesis to fix expression evaluation. Fixes #79634.
10988
10989 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
10990         
10991         * MenuAPI.cs:
10992         - Changes to fix behavior in Menu control, some reported in #80097
10993         and other detected during behavior refactory like a select event
10994         problems.
10995         - Remove unneded "if's" conditions.
10996         - Created an internal to flag when popup is active in control, we need 
10997         it because in .NET you can have menu active but without popup active
10998         when you active menu using popup without visible items.
10999         - Mimic win32 behavior for Select and Popup events.  
11000         - Dont open popup menu when you dont have visible subitems.
11001         - Do nothing when click on disabled menu item.
11002         - Some small changes to follow the coding style guidelines.
11003         - Unselect menu only when another control gives focus. Fixes #80097.
11004         - Remove unused code.
11005         
11006         * MenuItem.cs: internal VisibleItems method to check if menu
11007         theres visible subitems, it will be usefull to fix some 
11008         behavior in Menu control.
11009         
11010 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
11011         
11012         * Timer.cs: Tag property for 2.0 profile.
11013         
11014 2006-12-01  Chris Toshok  <toshok@ximian.com>
11015
11016         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
11017         
11018         * Win32DnD.cs: comment out some unused fields.
11019
11020         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
11021         some unused properties/methods.
11022
11023         * XplatUIX11.cs: fix MousePosition so we override the base class's
11024         property instead of conflicting with it.
11025
11026         * PictureBox.cs: comment out some unused fields
11027
11028         * OSXStructs.cs: make some struct fields public.
11029
11030         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
11031         MousePosition so we override the base class's property instead of
11032         conflicting with it.
11033
11034         * X11Dnd.cs: comment out some unused fields
11035
11036         * X11DesktopColors.cs: fix some struct field visibility to quiet
11037         the compiler.
11038
11039         * X11Dnd.cs: remove some debug code.
11040
11041         * ThemeClearlooks.cs: comment out unused field.
11042
11043         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
11044
11045         * ThemeGtk.cs: comment out some unused pinvokes.
11046
11047         * Timer.cs: remove some unused fields.
11048
11049         * ThemeClearlooks.cs: comment out unused field.
11050
11051         * UpDownBase.cs: comment out unused field.
11052
11053         * DataObject.cs: comment out unused field.
11054
11055         * DataGridBoolColumn.cs: reomve unused field.
11056
11057         * DataGrid.cs: remove unused field.
11058
11059         * Cursor.cs: remove old ToBitmap code.
11060
11061         * ControlPaint.cs: remove unused method.
11062
11063         * ScrollBar.cs: remove unused fields.
11064
11065         * ComboBox.cs: remove unused field, and chain up to
11066         AccessibleObject ctor.
11067
11068         * ListBox.cs: remove unused field.
11069
11070         * ButtonBase.cs: wrap a couple fields in NET_2_0.
11071
11072         * GridEntry.cs: remove unused fields.
11073
11074         * Binding.cs: remove unused fields.
11075
11076         * AxHost.cs: remove unused method.
11077
11078         * ContainerControl.cs: remove unused field.
11079
11080         * ScrollableControl.cs: remove unused fields.
11081
11082 2006-12-01  Chris Toshok  <toshok@ximian.com>
11083
11084         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
11085         the Where/WhereString stuff.  it's easy enough to CWL
11086         Environment.StackTrace.
11087
11088         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
11089         unused private fields.
11090
11091 2006-12-01  Jackson Harper  <jackson@ximian.com>
11092
11093         * TextControl.cs: Do not update the view while inserting multiline
11094         text. If we update the view we might wrap lines, before entering
11095         the new lines, which causes the new line insertion calculations to
11096         be totally fubared.
11097         - Remove an old TODO
11098         - Make debug output a little nicer
11099         
11100 2006-12-01  Chris Toshok  <toshok@ximian.com>
11101
11102         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
11103
11104 2006-12-01  Chris Toshok  <toshok@ximian.com>
11105
11106         [ fix the majority of the CS0108 warnings we've been suppressing ]
11107         
11108         * TreeView.cs: mark BackgroundImageChanged as 'new'.
11109
11110         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
11111         to "LayoutToolBar" to quiet mcs.
11112         
11113         * TabControl.cs: mark our ControlCollection class as 'new'.
11114
11115         * TextBoxBase.cs: mark some events as 'new'.
11116
11117         * Splitter.cs: TabStop is 'new'.
11118
11119         * ControlBindingsCollection.cs: mark a few methods as new since
11120         they change the visibility from protected to public.
11121
11122         * RadioButton.cs: DoubleClick -> base class, and remove unused
11123         HaveDoubleClick.
11124
11125         * MonthCalendar.cs: ImeMode property -> base class, and mark many
11126         events as new.
11127
11128         * NumericUpDown.cs: TextChanged -> base class.
11129
11130         * CheckedListBox.cs: mark our ObjectCollection class as new to
11131         quiet mcs.
11132
11133         * FolderBrowserDialog.cs: make HelpRequest event new and have it
11134         muck with the base class.
11135
11136         * StatusBar.cs: fix some mcs warnings about Update being the same
11137         name as a base class method.
11138
11139         * RichTextBox.cs: mark some events as new, and make them do things
11140         to the base class impl.
11141
11142         * UserControl.cs: mark TextChanged as new, and have it manipulate
11143         base.TextChanged.
11144
11145         * UpDownBase.cs: mark some things new.
11146
11147         * CheckBox.cs: mark DoubleClick "new", and add some text about
11148         what we need to look at.
11149
11150         * Panel.cs: make the events "new", and manipulate the base
11151         version.  these are just here for attributes.
11152
11153         * AccessibleObject.cs: make owner private.
11154
11155         * Control.cs: deal with AccessibleObject.owner being private.
11156         cache our own copy if we need it.
11157
11158         * Button.cs: add "new" to the DoubleClickEvent.
11159
11160         * ListBox.cs: no need to track our own has_focus here.  let
11161         Control.has_focus do it for us.  Also some other work to clear up
11162         warnings about not overriding base class methods of the same name.
11163         
11164         * ComboBox.cs: clear up some warnings about not override base
11165         class methods of the same name.
11166
11167 2006-12-01  Chris Toshok  <toshok@ximian.com>
11168
11169         * Form.cs: flag a few things as "new" to quiet some of the mcs
11170         warnings.
11171
11172         * AxHost.cs: same.
11173
11174         * PrintPreviewDialog.cs: same.
11175
11176         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
11177         now DGV isn't so horrible on the class status page.  also, move
11178         all events to using System.ComponentModel.EventHandlerList.  my
11179         wrists hurt.
11180
11181 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11182
11183         * MdiWindowManager.cs:
11184         - Set form to active mdi child if shown,
11185         and update the active mdi child to the next 
11186         remaining child in the z-order if the form is hidden.
11187
11188         * Form.cs: 
11189         - Track if the form has been visible and if its 
11190         visibility is beeing changed, so that the MdiClient
11191         can properly decide the ActiveMdiChild. The MdiClient 
11192         cannot track this since the form can change visibility 
11193         before MdiClient is created.
11194
11195         * MdiClient.cs:
11196         - Don't activate anything of the parent form is changing
11197         its visibility.
11198         - Rework ActiveMdiChild to only return visible mdi 
11199         children and take into account several other corner 
11200         cases.
11201
11202 2006-12-01  Chris Toshok  <toshok@ximian.com>
11203
11204         * IBindableComponent.cs: new 2.0 interface.
11205
11206 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
11207
11208         * DataGrid.cs: Font for caption area is bold by default.
11209
11210 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
11211
11212         * Menu.cs: Tag property for 2.0.
11213         
11214 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
11215
11216         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
11217         
11218 2006-12-01  Chris Toshok  <toshok@ximian.com>
11219
11220         * TreeView.cs: doh, the Begin* events should be
11221         TreeViewCancelEventHandler.
11222
11223 2006-12-01  Chris Toshok  <toshok@ximian.com>
11224
11225         * Form.cs: Form.ControlCollection already stores off the
11226         form_owner field.  don't access the base class's internal "owner"
11227         field.
11228
11229         * Control.cs: make all the fields in Control.ControlCollection
11230         private.  there's no need for any internal fields here.
11231
11232 2006-12-01  Chris Toshok  <toshok@ximian.com>
11233
11234         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
11235         OnHandleCreated.  Fixes bug #80109.
11236
11237 2006-12-01  Chris Toshok  <toshok@ximian.com>
11238
11239         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
11240         SplitContainer.cs, Control.cs, StatusStrip.cs,
11241         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
11242         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
11243         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
11244         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
11245         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
11246         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
11247         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
11248         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
11249         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
11250         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
11251
11252         do most of the work to convert our code over to use
11253         System.ComponentModel.Component.Events for
11254         adding/removing/dispatching events.
11255
11256
11257 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
11258
11259         * DataGridView.cs: Fix an ArgumentNullException reported 
11260         twice today in IRC.
11261
11262 2006-11-30  Mike Kestner  <mkestner@novell.com>
11263
11264         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
11265         grabbed listbox.  Fixes #80036 and #80101.
11266
11267 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
11268
11269         * Message.cs: Changed ToString() to match MS.
11270         
11271 2006-11-30  Jackson Harper  <jackson@ximian.com>
11272
11273         * TextBoxBase.cs: You can still change the selected text on a read
11274         only textbox.
11275         * TextControl.cs: Lower magic number for wrap calculations. This
11276         lets text get closer to the right (far) edge.
11277
11278 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
11279
11280         * Control.cs: Tweak 2.0 layout properties.
11281         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
11282         * TextRenderer.cs: Add a new overload.
11283         * ToolStrip*: Huge amount of changes and new features.
11284
11285 2006-11-30  Mike Kestner  <mkestner@novell.com>
11286
11287         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
11288         scroll range correct.  Fixes #79994.
11289
11290 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
11291
11292         * MdiWindowManager.cs: Update main form's text when
11293         a form is closed. (fixes #80038)
11294         
11295 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
11296
11297         * ToolBar.cs:
11298         - Fix an regression in ButtonSize.
11299         - Get ImeMode default value change to "Disable".
11300         - Get ShowTooltips default value change to true, default value is 
11301         "false" but after make a test in .NET we get "true" result as default.
11302         
11303 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
11304
11305         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
11306
11307 2006-11-29  Chris Toshok  <toshok@ximian.com>
11308
11309         * XplatUIWin32.cs (GetWindowTransparency): check return value of
11310         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
11311         SetWindowTransparency hasn't been called.
11312
11313 2006-11-29  Chris Toshok  <toshok@ximian.com>
11314
11315         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
11316         if it's supported.
11317         (set_AllowTransparency): reorder things a little so that the
11318         WS_EX_LAYERED style is removed properly.
11319
11320 2006-11-29  Chris Toshok  <toshok@ximian.com>
11321
11322         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
11323         
11324         * Form.cs: only call the XplatUI transparency method (get/set) if
11325         SupportsTransparency says it's supported. Otherwise fallback to
11326         doing nothing (in the set case) or returning the instance field we
11327         cache (in the get case).
11328
11329         * XplatUIStructs.cs: add TransparencySupport flag enum.
11330         
11331         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
11332         change to SupportsTransparency.
11333
11334         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
11335         TransparencySupport.None from SupportsTransparency.
11336
11337         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
11338         TransparencySupport.Set from SupportsTransparency.
11339
11340         * XplatUIWin32.cs: implement GetWindowTransparency calling
11341         GetLayeredWindowAttributes, and implement SupportsTransparency by
11342         checking whether or not both
11343         GetWindowTransparency/SetWindowTransparency are available
11344         entrypoints.  We need to do this since SetWindowTransparency is
11345         available as of win2k, but GetWindowTransparency requires winxp.
11346         yay win32 api.
11347
11348         * XplatUI.cs: Add GetWindowTransparency, and change
11349         SupportsTransparency to allow for either/both Get/Set.
11350
11351 2006-11-29  Chris Toshok  <toshok@ximian.com>
11352
11353         * DataGrid.cs: keep from going into an infinite loop redrawing a
11354         datagrid that has no datasource.  Fixes bug #80033.
11355
11356 2006-11-29  Chris Toshok  <toshok@ximian.com>
11357
11358         * MenuItem.cs: fix the NRE when we assign text (and therefore call
11359         Invalidate) before the mainmenu has been assigned to a control.
11360
11361 2006-11-29  Chris Toshok  <toshok@ximian.com>
11362
11363         * DataGrid.cs: detect when we should be double the double click
11364         row/column autosize stuff, although that codepath has yet to be
11365         written.  part of the work for bug #79891.
11366
11367 2006-11-29  Chris Toshok  <toshok@ximian.com>
11368
11369         * Binding.cs (SetControl): fix unit test.
11370
11371 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11372
11373         * PageSetupDialog.cs: Validate the margins and set them in
11374         PageSettings. 
11375         * NumericTextBox.cs: New class to mimic the behavior of the
11376         textboxes used in the printing dialogs.
11377
11378 2006-11-29  Andreia Gaita  <avidigal@novell.com>
11379         
11380         * Form.cs: Revert previous change (remove call UpdateBounds
11381         from form constructor), because it messes with the handle creation
11382         order, and that one needs lots and lots of love.
11383         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
11384         for valid printer and throw InvalidPrinterException if document
11385         is set but printer not valid), adding a MonoTODO. Once 
11386         handle creation is done properly, we can put this back in.
11387
11388 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11389
11390         * MenuItem.cs: Create a invalidate method for menu item, to be
11391         calling from set text, it make text changes to imadiate update
11392         on screen. Fixes #80013. 
11393         
11394 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11395
11396         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
11397         fixes bug #80070 and some other problem on toolbar buttons
11398         layout.
11399
11400 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11401
11402         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
11403         with dotted brush.      Fixes #79564
11404         
11405 2006-11-28  Andreia Gaita  <avidigal@novell.com>
11406
11407         * Form.cs: Removed call to UpdateBounds on Form
11408         constructor, it was causing a call to CreateHandle
11409         before it was supposed to.
11410         * PrintControllerWithStatusDialog: Applied patch
11411         by Chris Toshok to hide controller when there are
11412         no printers available.
11413         PrintDialog.cs: initialize printer settings to 
11414         null - correct DefaultValues test #5
11415         * PrintPreviewControl.cs: Move PrintController
11416         initialization to GeneratePreview
11417         * PrintPreviewDialog.cs: 
11418         - Remove Preview generation     from Document_set(). It is 
11419         called on OnPaint
11420         - Throw InvalidPrinterException on CreateHandle if
11421         a Document is set but there are no printers or 
11422         printer is not valid.
11423         * ThemeWin32Classic: don't paint PrintPreviewControl
11424         if there is nothing to paint    
11425
11426 2006-11-28  Miguel de Icaza  <miguel@novell.com>
11427
11428         * Form.cs: Add another popular method.
11429
11430         * TabPage.cs: ditto.
11431
11432 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11433
11434         * MenuItem.cs: Fixed a warning.
11435         * InternalWindowManager: Fixed a warning.
11436
11437 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11438
11439         * MenuItem.cs:
11440         - When cloning a menu also clone MdiList and clone the 
11441           window menu items properly (as the forms and menuitems
11442           are kept in an internal hashtable, these need updating 
11443           as well)
11444         - Rewrote the window menu code, menu items are added in the
11445           order the forms were added to their parent, and they are
11446           updated every time the window menu is shown (before the
11447           list was only generated once, in the current order of the
11448           forms, and would never be updated). A checkmark is shown
11449           next to the item corresponding to the active mdi child.
11450
11451 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11452
11453         * XplatUIStructs.cs: 
11454         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
11455         
11456         * XplatUIWin32.cs: 
11457         - Added TME_NONCLIENT to TMEFlags.
11458         - Handles WM_NCMOUSEMOVE in GetMessage to 
11459           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
11460
11461         * MdiWindowManager:
11462         - Now merges mdi child menu to parent menu when maximized.
11463         - Recalculate NC areas of both mdi child and mdi parent. 
11464           Fixes #79757 (4).
11465           on window state and size changes.Fixes #79844 (3).
11466         - Handle WM_NCCALCSIZE to properly calculate borders.
11467
11468         * Form.cs:
11469         - Add/remove to the mdi containers list of mdi children 
11470           in the order they are added.
11471         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
11472           to the maximized mdi child.
11473         
11474         * InternalWindowManager.cs:
11475         - Only execute a click on the control buttons on the mouse up,
11476           not on the mouse down. Show the state of the button 
11477           (was only showing Normal state, never Pressed state). The
11478           pressed button now follows the mouse (if you click the Close 
11479           button and move the mouse over the Maximize button, the 
11480           Maximize button will be shown as pressed). Since Win32 does
11481           not generate WM_NCLBUTTONUP if you release the button outside
11482           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
11483           it as a mouse up.
11484         
11485         * ThemeWin32Classic.cs:
11486         - Draw a missing border around mdi child forms. Fixes #79844 (2).
11487
11488         * MdiClient.cs:
11489         - Added a list of forms which contains the order the forms are
11490           added to the mdi parent.
11491         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
11492         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
11493         - If the active form changes set the scrollbars to the top
11494           of the Z order, otherwise the form could hide them.
11495         - Scrollbars are now sized according to ClientSize, not 
11496           to Size, and they take into account the other scrollbar
11497           to determine maximum.
11498         
11499 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
11500         
11501         * XplatUI.cs:
11502         * XplatUIDriver.cs:
11503         * XplatUIX11.cs:
11504         * XplatUIWin32.cs:
11505         * XplatUIOSX.cs:
11506         - Added RequestAdditionalWM_NCMessages for windows to 
11507           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
11508           Currently only implemented in XplatUIWin32.
11509
11510 2006-11-27  Chris Toshok  <toshok@ximian.com>
11511
11512         * Hwnd.cs: only add the hwnd to the windows hash in
11513         set_WholeWindow and set_ClientWindow if whole_window/client_window
11514         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
11515
11516 2006-11-27  Mike Kestner  <mkestner@novell.com>
11517
11518         * ComboBox.cs: remove redundant OnDropDown call.  It is called
11519         from the ComboListBox.ShowWindow code. Fixes #79969.
11520
11521 2006-11-27  Chris Toshok  <toshok@ximian.com>
11522
11523         * Hwnd.cs: remove the setters for ExposePending and
11524         NCExposePending - noone uses them.
11525
11526 2006-11-27  Jackson Harper  <jackson@ximian.com>
11527
11528         * TextControl.cs: new param for ReplaceSelection which determines
11529         whether we select the new selection, or set the cursor to the end
11530         of the new selection.
11531         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
11532         pasting, select the new text.
11533         * RichTextBox.cs: Use new param for ReplaceSelection.
11534
11535 2006-11-27  Jackson Harper  <jackson@ximian.com>
11536
11537         * TextBoxBase.cs: Set the selection to the caret after the caret
11538         is moved, otherwise they get out of sync.
11539
11540 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11541
11542         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
11543         it fixes #80015
11544
11545 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11546
11547         * ThemeWin32Classic.cs: 
11548         - Fix toolbar drop down arrow position.
11549         - Fix drop down appearance when ToolBar.Appearance is normal,
11550         it fixes #80018.
11551         
11552 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
11553
11554         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
11555         * Control.cs: Same.
11556         * UpDownBase.cs: Same.
11557         * ButtonBase.cs: Same.
11558         * ScrollBar.cs: Same.
11559         * TrackBar.cs: Same.
11560         * PictureBox.cs: Same.
11561         * UserControl.cs: Same.
11562         * Label.cs: Same.
11563         * ListControl.cs: Same.
11564         * TextBoxBase.cs: Same.
11565         * ListView.cs: Same.
11566         * RichTextBox.cs: Same.
11567         * TreeView.cs: Same.
11568
11569 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
11570
11571         * PrintDialog.cs:
11572         - Text label for where 
11573         - Text label comment was not shown
11574
11575 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
11576
11577         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
11578
11579 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11580
11581         * InternalWindowManager.cs: 
11582         - Handle WM_PARENTNOTIFY to activate the form
11583         if any child control is clicked.
11584         - The form is only sizable if not minimized.
11585
11586         * MdiWindowManager.cs:
11587         - Save the IconicBounds if the form is moved.
11588         - Rework SetWindowState, now the window bounds 
11589         are stored only if the old window state is Normal.
11590         
11591         * MdiClient.cs:
11592         - In SetWindowStates store the old window state if 
11593         the window is maximized and restore window state if
11594         the window looses focus.
11595         - Don't handle any scrollbar value changes if 
11596         initializing the scroll bars. Fixes #79771.
11597         - Reworked ArrangeIconicWindows. Current algorithm
11598         tests bounds agains all other minimized windows, if
11599         any intersections create new bounds (going left to 
11600         right, bottom to top) and then test again. When 
11601         successful the bounds are saved and never computed
11602         again. Fixes #79774.
11603
11604 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11605
11606         * InternalWindowManager.cs: Added HandleTitleBarUp.
11607
11608 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11609
11610         * NumericUpDown.cs: In .NET 1.1, user entered text is still
11611         hexadecimal in ParseUserEdit.
11612
11613         
11614 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11615
11616         * MdiWindowManager.cs: 
11617         - Handle a click on the form's icon to show the 
11618         system menu (when maximized). Fixes #79775.
11619         - Change the existing click handler for the form's
11620         icon when not maximized to show on MouseUp.
11621         Fixes #79776.
11622
11623         * Form.cs: In OnResize only layout the mdi child's
11624         parent if it actually has a parent. Might not if
11625         the window is closing.
11626
11627
11628 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11629
11630         * MdiClient.cs: Ignore active MDI client for text of parent, if
11631         child has no text set.
11632
11633 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11634
11635         * ToolBar.cs: Fixed ToString to match MS.
11636
11637 2006-11-22  Andreia Gaita  <avidigal@novell.com>
11638
11639         * NumericUpDown: 
11640         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
11641         update inner values on set. Fixes #79966.
11642         - Override OnLostFocus to update value on NET 2. Fixes #79950.
11643         - Fix hexadecimal parsing.
11644         
11645         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
11646         parent. Fixes #79957
11647
11648 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11649
11650         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
11651         the actual size has to be queried, since if height /
11652         width is negative Win32 changes it to 0. 
11653         Fixes #79999 on Windows.
11654         
11655         * XplatUIX11.cs: Set height / width to 0 if negative
11656         in SetWindowPos. Fixes #79999 on Linux.
11657         
11658 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11659
11660         * ThemeWin32Classic.cs: Fix text redenring when button is
11661         pressed.
11662
11663 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11664
11665         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
11666         and later navigate by mouse. Fixes #79528.
11667
11668 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11669
11670         * ToolBar.cs: Set default value for TabStop to false in
11671         constructor, it fixes remaining behavior of bug #79863.
11672
11673 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11674
11675         * MdiWindowManager.cs:
11676         * InternalWindowManager.cs:
11677         - Moved a few methods specific to Mdi from 
11678         InternalWindowManager to MdiWindowManager.
11679         Fixes #79996.
11680         
11681 2006-11-21  Chris Toshok  <toshok@ximian.com>
11682
11683         * XplatUIOSX.cs: stub out InvalidateNC.
11684
11685         * XplatUIWin32.cs: implement InvalidateNC using the call I found
11686         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
11687
11688         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
11689
11690         * XplatUIDriver.cs: add InvalidateNC abstract method.
11691
11692         * XplatUI.cs: add InvalidateNC.
11693
11694 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11695
11696         * ToolBar.cs: Invalidate complete button area when pressed status 
11697         was changed.
11698         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
11699         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
11700         by 1 when button is pressed.
11701
11702 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11703
11704         * ToolButton.cs: Invalidate middle of DropDown button when
11705         ToolBar theres DropDownArrows.
11706         * ThemeWin32Classic.cs: Change position of DropDown arrow and
11707         fix DropDown drawing operations.
11708
11709 2006-11-20  Chris Toshok  <toshok@ximian.com>
11710
11711         * NativeWindow.cs: fix the formatting of functions ('{' on the
11712         following line), and enable the thread exception dialog.
11713
11714         * Application.cs: remove the duplicate exception catching from
11715         here.
11716
11717 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11718
11719         * Toolbar.cs: Triggers button click event when click on icon
11720         of dropdown ToolBarButton. Fixes #79912.
11721         
11722 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11723
11724         * Theme.cs:
11725         * ThemeWin32Classic.cs:
11726         - Added a property WindowBorderFont to enable themeing
11727           of mdi child windows' Text.
11728           
11729 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11730
11731         * InternalWindowManager.cs:
11732         * Form.cs:
11733         * MdiClient.cs:
11734         * MdiWindowManager.cs: 
11735         - If mdi child is maximized, set mdi parent's
11736           text to "Parent - [Child]". Fixes #79770.
11737         - If there is any maximized mdi child windows, only the active 
11738           window (and any new windows) is maximized, the rest are normal.
11739         - On a WindowState change only save mdi child's window bounds 
11740           if the old window state was normal. Fixes #79774.
11741         - The scroll bars are now calculated on hopefully all
11742           necessary events. Fixed #79771 / #79844->6 / #79906.
11743         - MdiClient.SizeScrollBars() now takes into account docked 
11744           controls in the parent when calculating available space.
11745         - InternalWindowManager now always repaints the entire title
11746           area. Fixes #79844->1/4/5.
11747         - Added RequestNCRecalc on mdi child windowstate changes.
11748           Fixes #79772.
11749
11750 2006-11-20  Mike Kestner  <mkestner@novell.com>
11751
11752         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
11753         in the MouseUp handler of the listbox and move the return handling
11754         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
11755
11756 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11757
11758         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
11759
11760 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11761
11762         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
11763           working in 1.2.x anymore. So, updated.
11764
11765 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
11766
11767         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
11768         NumberGroupSeparator of current culture instead of assuming en-US.
11769         Fixed bug #79967.
11770
11771 2006-11-17  Mike Kestner  <mkestner@novell.com>
11772
11773         * Control.cs: Add the concept of implicit bounds setting so that
11774         dock/undock round trips preserve explicitly set size/locations.
11775         Fixes #79313.
11776
11777 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11778
11779         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
11780           can't handle those filters. (Fixes bug #79961)
11781
11782 2006-11-17  Chris Toshok  <toshok@ximian.com>
11783
11784         [ fixes the exit/crashes associated with #79835.  it's clearly
11785         suboptimal though, we need to figure out a better way to solve
11786         this. ]
11787         
11788         * PrintPreviewControl.cs: deal with the new invalid printer
11789         exceptions.
11790
11791         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
11792         and return false (so CommonDialog.ShowDialog doesn't actually show
11793         the form.)
11794
11795         * PrintDialog.cs: enable/disable the Ok button depending on
11796         whether or not the printer is valid.
11797
11798         * CommonDialog.cs (ShowDialog): only actually show the form if
11799         RunDialog returns true.
11800
11801 2006-11-17  Jackson Harper  <jackson@ximian.com>
11802
11803         * TextControl.cs: When soft splitting a line, mark it as a soft
11804         split line. Also carry over the current line break to the next
11805         line.
11806
11807 2006-11-17  Chris Toshok  <toshok@ximian.com>
11808
11809         * XplatUIX11.cs: when scrolling a window with an invalid area, we
11810         only want to shift the part of the invalid area that overlaps the
11811         area we're scrolling.  we also don't want to clear the invalid
11812         area unless the invalid area was entirely contained within the
11813         scrolling area.
11814
11815 2006-11-16  Chris Toshok  <toshok@ximian.com>
11816
11817         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
11818         also make sure to free the memory returned by XGetWindowProperty
11819         in GetText().
11820
11821         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
11822
11823 2006-11-16  Chris Toshok  <toshok@ximian.com>
11824
11825         * XplatUI.cs: add a new super secret way to get at the totally
11826         unsupported X11 backend.
11827
11828 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
11829
11830         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
11831
11832 2006-11-16  Jackson Harper  <jackson@ximian.com>
11833
11834         * TreeView.cs: Allow more explicit setting of top node position
11835         for scrollbars. Slower algo, but more accurate.
11836         - CollapseAll should maintain the current top node.
11837         * TextBoxBase.cs: When positioning the caret, use the line, pos
11838         method, since the x, y method does not grab the correct tag, and
11839         the caret height never gets set correctly. (Maybe I should just do
11840         away with the caret having its own height, and always use the
11841         carets current tag for height).
11842
11843 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
11844
11845         [Fixes 79778, 79923]
11846
11847         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
11848         Parent to the FosterParent instead.
11849
11850 2006-11-16  Jackson Harper  <jackson@ximian.com>
11851
11852         * TreeView.cs: Need to recalc the topnode when we expand or
11853         collapse. The scrolling methods can't handle this on their own,
11854         since they use differences between the last scroll position, and
11855         those difference get completely messed up since we are expanding
11856         nodes.  This problem should probably be fixed in the scrolling
11857         methods, so they can figure out exactly where they are, but this
11858         will slow things down a little.
11859         * ThemeWin32Classic.cs: Special case for groupboxes with empty
11860         strings, makes nunit-gui look a lot nicer.
11861
11862 2006-11-16  Chris Toshok  <toshok@ximian.com>
11863
11864         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
11865         the broken multithreaded event handling we have in here.  File
11866         this entry under "Why we should move to the new X11 backend".
11867
11868         Any thread can make it into UpdateMessageQueue, which gets events
11869         from the X socket - some of which could belong to hwnds being
11870         managed by a different thread.  We can also have multiple threads
11871         in UpdateMessageQueue at the same time, with each one reading from
11872         the X socket.  This leads to many problems, with the following
11873         solutions:
11874
11875         We can't use hwnd.Queue.Enqueue anywhere in here and must use
11876         EnqueueLocked.
11877
11878         The MotionNotify compression we do can't work across threads
11879         (without locking the entire queue, perhaps) since we call
11880         hwnd.Queue.Peek, so we just punt and don't compress motion events
11881         unless the owning thread is the one which got the X event.
11882
11883         ConfigureNotify is another fun one, since it modifies the hwnd's
11884         bounds and then enqueues the event.  We add a lock to Hwnd which
11885         is held when setting configure_pending to true (and enqueuing the
11886         event).
11887
11888         There is a race wrt the wake socket.  we need to make sure that
11889         only 1 thread is waiting on that socket, or else a thread could
11890         sleep waiting for data that never comes.  It's difficult (but not
11891         impossible) to make happen, because it seems to require something
11892         like the following:
11893
11894             1. Thread 1 polls on wake_receive
11895         
11896             2. poll returns saying there's data to be read on
11897                wake_receive.
11898         
11899             3. Thread 2 polls on wake_receive and immediately returns
11900                saying there's data to be read.
11901
11902             4. Thread 2 reads the wakeup byte from wake_receive
11903
11904             5. Thread 1 attempts to read the wakeup byte from
11905                wake_receive.
11906
11907             6. Thread 2 exits (due to a form closing, perhaps).
11908
11909             7. Thread 1 blocks forever.
11910         
11911         Fun, eh?
11912
11913         Fixing the Expose handling isn't done yet, and the races inherent
11914         in that piece of code are responsible for the drawing mistakes you
11915         see when generating expose events in a MT app (like NPlot).  This
11916         one is the likely to be the hardest to bandaid, and it doesn't
11917         appear to cause anything but drawing problems.  The other issues
11918         caused apps to exit or hang.
11919
11920         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
11921         called from a different thread than the one that should be calling
11922         these functions.
11923
11924         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
11925
11926 2006-11-15  Chris Toshok  <toshok@ximian.com>
11927
11928         * Application.cs: null out the context's MainForm when we exit
11929         RunLoop.  Fixes a newly checked in unit test as well as the last
11930         ODE from bug #79933.
11931
11932 2006-11-15  Chris Toshok  <toshok@ximian.com>
11933
11934         * Form.cs (set_Owner): allow a null value so we can clear the
11935         form's owner.
11936         (Dispose): set all our owned_form's Owner properties to null, and
11937         clear the owned_forms collection.
11938         (WM_CLOSE): clean up this a little bit.. still not right though.
11939
11940         * ApplicationContext.cs: OnMainFormClosed should only call
11941         ExitThreadCore if the main form isn't recreating.  Fixes unit
11942         test.
11943
11944 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11945
11946         [Fixes 78346]
11947
11948         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
11949
11950 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11951
11952         [Fixes 79433]
11953
11954         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
11955         keep popup window types from stealing focus from the main form
11956         on Windows.
11957
11958         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
11959
11960         * MenuAPI.cs: Set above flag to true.
11961
11962 2006-11-15  Chris Toshok  <toshok@ximian.com>
11963
11964         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
11965         the button being released is not in wParam.
11966
11967 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11968
11969         * Form.cs: Add the released button to MouseEventArgs.Button
11970         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
11971         on Win32.
11972
11973 2006-11-15  Chris Toshok  <toshok@ximian.com>
11974
11975         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
11976         GetText().  untested because it's unused in our implementation.
11977         Control.Text always caches the text, even if
11978         ControlStyles.CacheText is not set.
11979
11980         fixes bug #79939.
11981
11982 2006-11-15  Chris Toshok  <toshok@ximian.com>
11983
11984         [ fixes #79933 ]
11985         
11986         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
11987         message.  no hiding, no disposing.
11988
11989         in the WM_CLOSE handler, hide the form if it's modal.
11990
11991 2006-11-15  Chris Toshok  <toshok@ximian.com>
11992
11993         * XplatUIX11.cs: use AddExpose instead of sending a message.
11994         fixes textbox border drawing.
11995
11996 2006-11-15  Chris Toshok  <toshok@ximian.com>
11997
11998         * PropertyGridView.cs: keep from crashing on mouse move/down when
11999         the property grid is empty.
12000
12001 2006-11-14  Jackson Harper  <jackson@ximian.com>
12002
12003         * TextControl.cs: Make PageUp and PageDown more like the MS
12004         versions.
12005         * TextBoxBase.cs: When we set the text property position the
12006         cursor at the beginning of the document.
12007
12008 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12009
12010         * Form.cs: if a mdi child's WindowState has changed
12011         before it's creation, it would display wrong control
12012         buttons.
12013         
12014 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
12015
12016         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
12017           (Fixes bug #79927)
12018
12019 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
12020
12021         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
12022         the window gets to paint its borders even if the window is
12023         getting smaller.
12024         
12025         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
12026         otherwise the old control buttons would still be painted 
12027         if the window gets bigger.
12028         
12029         * PaintEventArgs.cs: add an internal method so that the clip 
12030         rectangle can be changed.
12031         
12032 2006-11-13  Chris Toshok  <toshok@ximian.com>
12033
12034         [ fixes bug #79745 ]
12035         
12036         * NotifyIcon.cs: lots of cleanup.
12037
12038         * X11Structs.cs: add an enum for XEMBED messages.
12039
12040         * XplatUIX11.cs: reindent one of the giant switch statements, it
12041         was taking up an additional tab stop, and this file is already way
12042         too wide for my laptop's screen.
12043
12044         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
12045         we get it, resize the hwnd to the WMNormalHints max_width/height.
12046
12047 2006-11-13  Jackson Harper  <jackson@ximian.com>
12048
12049         * TextBoxBase.cs: Compute the value changes for the mouse wheel
12050         teh simple way.
12051
12052 2006-11-13  Chris Toshok  <toshok@ximian.com>
12053
12054         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
12055         #79898.  force a reference to the Region to stick around so the
12056         unmanaged object isn't collected (rendering our handle in the MSG
12057         stale).
12058
12059 2006-11-13  Chris Toshok  <toshok@ximian.com>
12060
12061         * XplatUIX11.cs: fix #79917 for window managers which support
12062
12063         using XStoreName on the raw utf8, and we need to convert to
12064         COMPOUND_TEXT if it's non-latin1.
12065
12066 2006-11-13  Chris Toshok  <toshok@ximian.com>
12067
12068         * Form.cs (set_DialogResult): we need to set closing to false if
12069         we're setting our result to None.  fixes bug #79908.
12070
12071 2006-11-13  Jackson Harper  <jackson@ximian.com>
12072
12073         * TextControl.cs: When formatting text, compute the adjusted tag
12074         lengths correctly, using FindTag for the end tag instead of trying
12075         to figure it out outselves.
12076         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
12077         the item, ItemHeight doesn't work, because trees with large
12078         imagelists use those for their height
12079         * TreeView.cs: ActualItemHeight factors in the image height
12080         - compute left edge of checkboxes correctly
12081         - when expanding/collapsing move the bottom down one pixel, so we
12082         aren't moving part of the node
12083
12084 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12085
12086         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
12087         stack in PaintEventStart so that it won't get disposed by the gc
12088         before reaching PaintEventEnd.
12089
12090 2006-11-13  Jackson Harper  <jackson@ximian.com>
12091
12092         * TextBoxBase.cs: Don't select the word if we are on a line with
12093         no text.
12094         - We don't need to position the caret on mouse up, since the mouse
12095         move handler should be doing this
12096         - When double clicking a blank line, the caret is advanced to the
12097         next line.
12098
12099 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
12100
12101         * TreeNodeCollection.cs: Avoid duplicating indexer code.
12102
12103 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
12104
12105         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
12106         Fixes part of bug #79910.
12107
12108 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
12109
12110         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
12111           (bug #79903). Some minor string updates to match ms.
12112
12113 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12114
12115         * FileDialog.cs: Don't add an extension if the filename
12116           already ends with that extension.
12117
12118 2006-11-10  Jackson Harper  <jackson@ximian.com>
12119
12120         * TreeView.cs: Use the currently highlighted node for the
12121         BeforeSelect event.
12122         * TextBoxBase.cs: There is no need to expand selection on
12123         MouseMove.
12124         - CanUndo means 'is there any undo operations', not 'is undo
12125         allowed on this textcontrol. Fixed ClearUndo unit test.
12126
12127 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
12128
12129         * Button.cs: only perform click when button is Selectable (so as 
12130         not to activate default buttons when they're disabled)
12131         
12132         * Control.cs: Rewrite of the SelectNextControl and related 
12133         methods. HandleClick now selects next control if the current one
12134         is being disabled.
12135         
12136         * Form.cs: OnActivated selects next active control only if Load 
12137         has already occurred. If Load hasn't run, there's no point in 
12138         selecting here, Load might change the state of controls.
12139         
12140         * FocusTest.cs: Tests marked as working again for these fixes
12141
12142 2006-11-10  Chris Toshok  <toshok@ximian.com>
12143
12144         * XplatUIX11.cs: a couple of fixes.
12145
12146         - use XInternAtoms with almost all the atoms we need to register,
12147         instead of many, many calls to XInternAtom.  should help a bit on
12148         startup time, at the expense of making the code look a little
12149         worse.
12150
12151         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
12152         isn't reparented (which seems to be a clue that we're running fon
12153         compiz) and they have an Owner form.  This fixes the tool windows
12154         in paint.net when running under compiz.
12155
12156         - when setting the opacity of a window, support both the case
12157         where the window has been reparented and also when it hasn't been.
12158         Since compiz/beryl doesn't seem to reparent windows, and these are
12159         the only window managers which support translucency, I'm not sure
12160         why we need the hwnd.reparented case at all.. but leave it in.
12161         now we get translucent windows in paint.net under compiz/beryl.
12162
12163 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12164
12165         * FileDialog.cs: Always return the value for FilterIndex that
12166           was set. Internally convert it to values that make sense.
12167
12168 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
12169         
12170         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
12171
12172 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
12173
12174         * Toolbar.cs: Change default value of DropDownArrows to true, the 
12175         signature still using false to make it compatible with MS but the 
12176         initial value is true. Fixes #79855.
12177
12178 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12179
12180         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
12181           only available on Linux.
12182
12183 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
12184
12185         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
12186         reduce number of calls to redraw method during toolbar creation.
12187
12188 2006-11-09  Mike Kestner  <mkestner@novell.com>
12189
12190         * ListView.cs : raise SelectedIndexChanged when an item is selected
12191         programmatically via the Item.Selected property.  Gert's nice 
12192         ListViewSelectedIndexChanged test fixture now runs clean.
12193
12194 2006-11-09  Mike Kestner  <mkestner@novell.com>
12195
12196         * ListView.cs : raise SelectedIndexChanged when a selected item is
12197         removed from the item collection using Remove or RemoveAt.
12198
12199 2006-11-09  Mike Kestner  <mkestner@novell.com>
12200
12201         * ListView.cs : raise SelectedIndexChanged once per selected item
12202         for compat with MS.  Fixes #79849+.
12203
12204 2006-11-09  Chris Toshok  <toshok@ximian.com>
12205
12206         * TabControl.cs: initialize row_count to 0, and set it to 1 when
12207         we need to (if we have any tab pages).  Fixes unit test.
12208
12209 2006-11-09  Chris Toshok  <toshok@ximian.com>
12210
12211         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
12212         width is 0, not 3.  Fixes a unit test.
12213
12214 2006-11-09  Mike Kestner  <mkestner@novell.com>
12215
12216         * ListView.cs : use Implicit scrollbars so that focus isn't 
12217         stolen from the listview when they are clicked. Fixes #79850.
12218
12219 2006-11-09  Chris Toshok  <toshok@ximian.com>
12220
12221         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
12222         have a root item.  Fixes #79879.
12223
12224 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
12225
12226         * FileDialog.cs:
12227           - Fix ToString ()
12228           - An ArgumentException is now thrown if a wrong filter
12229             is applied (matches ms). The previous filter doesn't change
12230             anymore if an exception is thrown.
12231           - Changing the FileName property also affects FileNames
12232         * ColorDialog.cs: The length of the CustomColors array is always
12233           16. It doesn't matter if we use a smaller array or null to update
12234           or change the custom colors property.
12235         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
12236           for RootFolder if we get a undefined value.
12237
12238 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12239
12240         * StatusBarPanel.cs: 
12241         - Width is set to MinWidth if Width is smaller than
12242         MinWidth. Fixes #79842.
12243         - MinWidth now always overrides Width (MSDN says MinWidth
12244         is set to Width when AutoSize = None, but they do not 
12245         behave like that).
12246         - Style has now the the correct default value.
12247         
12248 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12249  
12250         * TrackBar.cs: 
12251         - The control is completely invalidated on 
12252         Got/LostFocus to draw the focus rectangle correctly.
12253         - When AutoSize then height is always 45 (width for 
12254         vertical controls).
12255         
12256         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
12257         on the mouse when moved and it doesn't move when grabbed
12258         until the mouse moves as well. Also fixed some wrong 
12259         calculations when clicking on the thumb (control thought
12260         click was outside of thumb and didn't grab it).
12261         Fixes some of the issues in #79718.
12262
12263 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
12264
12265         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
12266
12267 2006-11-08  Chris Toshok  <toshok@ximian.com>
12268
12269         * PropertyGridView.cs: only call ToggleValue if the item is not
12270         readonly.
12271
12272 2006-11-08  Jackson Harper  <jackson@ximian.com>
12273
12274         * TextBoxBase.cs: The RichTextBox and textbox have very different
12275         word selection methods.  Implement the textbox's simple word
12276         selection here, and let the RichTextBox override and provide it's
12277         own.
12278         - Don't do extra selection on mouseup
12279         * RichTextBox.cs: Use the documents word selection algorithm, I
12280         think ideally, this function will be pulled into the
12281         RichTextBox.cs code someday.
12282
12283 2006-11-08  Chris Toshok  <toshok@ximian.com>
12284
12285         * RootGridEntry.cs: new class to represent GridItemType.Root.
12286
12287         * CategoryGridEntry.cs: reformat, and add boilerplate.
12288         
12289         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
12290         returns the UI parent anyway, and we need special handling to
12291         implement the GetTarget method in the face of it.  Also, implement
12292         Select().
12293
12294         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
12295         a root grid item, and use that instead of PropertyGrid.grid_items.
12296         Also, make use of TypeConverters (and add limitted support for
12297         ICustomTypeDescriptors) when initially populating the grid.
12298         Arrays now show up more or less properly.
12299
12300 2006-11-08  Chris Toshok  <toshok@ximian.com>
12301
12302         * Application.cs: set the modal dialog to non modal after we close
12303         it.  Fixes bug #79866.
12304
12305 2006-11-08  Jackson Harper  <jackson@ximian.com>
12306
12307         * TextControl.cs: When combining lines carry over the line end
12308         style from the end line.
12309         - Invalidate the selected area when setting it, if it is visible.
12310         * TextBoxBase.cs: Only rich text box can do full line selects.
12311         - Make sure to set the cursor position when there is a click,
12312         otherwise two clicks in separate areas could cause a large chunk
12313         to be selected.
12314
12315 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12316
12317         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
12318         Fixes #79863.
12319
12320 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12321
12322         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
12323         time. Remove tooltips when ToolButton click events.  Fixes #79856.
12324
12325 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12326
12327         * MenuAPI.cs: Ignore right click for menu actions and fixes
12328         menu border when clicked.  Fixes #79846.
12329
12330 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12331
12332         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
12333         MouseState after create wParam for message, this fixes mouse button 
12334         equal none in mouse up events.
12335         
12336 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
12337
12338         * Control.cs : Focus() now calls Select to set the Container's
12339         Active Control and to give it focus. To avoid infinite recursion
12340         (because ActiveControl also calls Focus at one point), a check 
12341         is made in Focus with the help of a new internal variable
12342         is_focusing.
12343
12344 2006-11-07  Mike Kestner  <mkestner@novell.com>
12345
12346         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
12347         if there's a selection.  Fixes #79849.
12348
12349 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
12350
12351         * PropertyGrid.cs: Avoid fixed height of help description label.
12352         Fixes part of bug #79829.
12353
12354 2006-11-07  Chris Toshok  <toshok@ximian.com>
12355
12356         * XplatUIX11.cs: fix #79790 again, by using the
12357         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
12358
12359 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12360
12361         * ToolBar.cs: Fix left click checking.
12362
12363 2006-11-07  Chris Toshok  <toshok@ximian.com>
12364
12365         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
12366
12367 2006-11-07  Chris Toshok  <toshok@ximian.com>
12368
12369         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
12370         PropertyManager unit tests.
12371
12372         * PropertyManager.cs: make property_name internal.
12373
12374 2006-11-07  Chris Toshok  <toshok@ximian.com>
12375
12376         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
12377         pass a unit test.  Also, don't set image_index to anything in
12378         response to setting the ImageList property.
12379
12380 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12381
12382         * ToolBar.cs: Ignore click events when mouse button is not a
12383         left button, only accepts other button for dropdown menus.  
12384         Fixes #79854.
12385
12386 2006-11-07  Chris Toshok  <toshok@ximian.com>
12387
12388         * DataGrid.cs: make the back and parent row buttons a little less
12389         ugly.
12390
12391 2006-11-07  Jackson Harper  <jackson@ximian.com>
12392
12393         * TextBoxBase.cs: When converting to Text don't put line breaks in
12394         for soft line breaks.
12395         * TextControl.cs: There is an initial "fake" line in the document,
12396         this is now a soft break line, so that an extra line feed doesn't
12397         get added to the end of documents.
12398
12399 2006-11-07  Chris Toshok  <toshok@ximian.com>
12400
12401         [ fix bug #79778 ]
12402         
12403         * CurrencyManager.cs: if the list is readonly, don't bother
12404         checking if IBindingList.AllowNew is true.
12405
12406         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
12407         for non-DataRowView datasources..  or rather, make it not crash.
12408         (DataGridPaintRelationRow): make sure we limit the row painting to
12409         the area not covered by the row header, and make our cell width at
12410         least large enough to cover the relation area.  This allows grids
12411         that have relations but no rows to render correctly.
12412         (DataGridPaintRowContents): same type of changes here.
12413         (SetDataSource): move back to always calling
12414         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
12415         navigating back through relations.
12416         (HitTest): handle the case where we have no cells but have
12417         relations.  Right now we generate a hit in cell 0 of whatever the
12418         row is, not sure if this is strictly correct, but it works for our
12419         purposes.
12420         
12421         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
12422         bother doing anything.
12423
12424 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
12425
12426         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
12427         early version of StatusStrip.  Not responsible for eaten
12428         application or firstborn children.
12429
12430 2006-11-06  Chris Toshok  <toshok@ximian.com>
12431
12432         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
12433         call GetTabRect with a -1 index.  Fixes #79847.
12434
12435 2006-11-06  Jackson Harper  <jackson@ximian.com>
12436
12437         * TreeNodeCollection.cs: Update scrollbars after clearing.
12438
12439 2006-11-06  Chris Toshok  <toshok@ximian.com>
12440
12441         * NumericUpDown.cs: fix the ToString method for some unit test
12442         love.
12443
12444 2006-11-06  Chris Toshok  <toshok@ximian.com>
12445
12446         * PropertyGrid.cs:
12447         - set the initial SelectedGridItem if we can.
12448
12449         - Exclude non-mergable properties only if we're merging > 1
12450         object.  Merging 1 object isn't really merging, obviously.
12451
12452         - Handle PropertySort.NoSort just like Alphabetical, which is
12453         wrong of course, but at least gets things on the screen.
12454         
12455         * PropertyGridView.cs:
12456         - Add method "FindFirstItem" which finds the first property grid
12457         item, so we can select it by default.
12458
12459         - make use of GridEntry.CanResetValue.
12460
12461         - Don't call RedrawBelowItemOnExpansion here anymore, the
12462         individual GridEntry's will do that.
12463
12464         - Remove the ITypeDescriptorContextImpl internal class.
12465         
12466         * GridEntry.cs:
12467         - this class needs to implement ITypeDescriptorContext, as it's
12468         what MS's PropertyDescriptorGridEntry does, which means we can
12469         remove the ITypeDescriptorContextImpl internal class from
12470         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
12471
12472         - keep a reference to our PropertyGridView, and move the call to
12473         RedrawBelowItemOnExpansion here from PGV.  This means
12474         programmaticly setting Expanded actually does something visible.
12475
12476         - add a CanResetValue() function which takes into account our
12477         possibly multiple "selected_objects" in the merged case.  Shifting
12478         PropertyGridView to use this method fixes another unreported
12479         crasher found running the test for #79829.
12480
12481         - when Top or Bounds is updated, make sure the PropertyGridTextBox
12482         is updated to reflect this.
12483
12484         * CategoryGridEntry.cs: the ctor takes the PGV now.
12485         
12486 2006-11-06  Jackson Harper  <jackson@ximian.com>
12487
12488         * TextControl.cs: These are 1 based.
12489         * TextBoxBase.cs: When setting the selected text, don't change the
12490         selected text tags, this is done by ReplaceText, just position the
12491         cursor at the end of the new text.
12492
12493 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12494
12495         * ListView.cs: Allow label edit only when, when LabelEdit is
12496           set to true.
12497
12498 2006-11-06  Jackson Harper  <jackson@ximian.com>
12499
12500         * TextControl.cs: If a suitable wrapping position isn't found,
12501         just wrap right in the middle of a word.
12502
12503 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12504
12505         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
12506           bug #79820.
12507
12508 2006-11-06  Jackson Harper  <jackson@ximian.com>
12509
12510         * TreeView.cs: Can't use the VisibleCount property when setting
12511         scrollbar heights, because this doesn't take into account whether
12512         or not the horz scrollbar just came visible.
12513
12514 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
12515
12516         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
12517         activated.  Fixes #79369, #79832.
12518
12519 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
12520
12521         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
12522           had to remove support for links that point to a directory. FileInfo
12523           returns no usefull information (means, the directory they point to)
12524           for such links. Replaced some empty string ("") with String.Empty.
12525
12526 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12527
12528         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
12529         NullReferenceException when attempting to remove node that is not in
12530         collection. Throw NullReferenceException when null is passed to 
12531         Remove. Allow first element of the collection to be removed. Fixes
12532         bug #79831.  In GetEnumerator ().Current return null if positioned 
12533         before the first element of the collection. In GetEnumerator ().Reset,
12534         position before first element of the collection.
12535
12536 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12537
12538         * PropertyGrid.cs: To match MS, remove default title and description
12539         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
12540         buttons.
12541
12542 2006-11-04  Chris Toshok  <toshok@ximian.com>
12543
12544         * Theme.cs: add a Clamp method, just for kicks.
12545
12546         * ThemeWin32Classic.cs: clamp all color components to [0..255].
12547
12548 2006-11-04  Chris Toshok  <toshok@ximian.com>
12549
12550         * Form.cs: if the form isn't visible, Close() does nothing.
12551
12552 2006-11-03  Chris Toshok  <toshok@ximian.com>
12553
12554         * Form.cs (Close): if the form is modal, don't Dispose of it, only
12555         Hide it.
12556         (WndProc): don't Dispose after handling the WM_CLOSE message.
12557
12558         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
12559         them as such, instead of using casts from Control to Form.  Also,
12560         don't Dispose of the modal dialog when we fall out of the loop -
12561         Close() it instead.
12562
12563         fixes bug #79813.
12564
12565 2006-11-03  Chris Toshok  <toshok@ximian.com>
12566
12567         * Control.cs (Dispose): only go through the dispose thing if we're
12568         @disposing, and we haven't already been disposed.  Fixes bug
12569         #79814.
12570
12571         * Form.cs: no reason to call "base.Dispose()" here instead of
12572         "Dispose()".
12573
12574 2006-11-03  Mike Kestner  <mkestner@novell.com>
12575
12576         * ComboBox.cs : use ToString instead of casts in AddItem for
12577         sorting functionality.  Fixes #79812.
12578
12579 2006-11-03  Chris Toshok  <toshok@ximian.com>
12580
12581         * Application.cs: pave the way for actually using the thread
12582         exception dialog.  it's ifdefed out at the moment.
12583
12584 2006-11-03  Chris Toshok  <toshok@ximian.com>
12585
12586         * ThreadExceptionDialog.cs: until we get a better layout, actually
12587         hide the details textbox and label when we shouldn't see them.
12588
12589 2006-11-03  Jackson Harper  <jackson@ximian.com>
12590
12591         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
12592         multiline textboxes anymore.  This method also determines the
12593         width/height of a textboxes canvas area.
12594         - Sorta a revert of the last patch.  For multiline just position
12595         the controls, then bail.  This way the scrollbar width won't be
12596         altered.
12597
12598 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
12599
12600         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
12601         it dont need.  Fixes #79537.
12602
12603 2006-11-02  Jackson Harper  <jackson@ximian.com>
12604
12605         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
12606         send the status after firing the DndOver event.
12607
12608 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12609
12610         * TrackBar.cs: Now orientation only switches height / width if
12611         the control's handle is created (Win32 does it like this). Also 
12612         fixed a typo in ToString() for a test to pass, changed the 
12613         exception thrown in set_LargeChange and set_SmallChange to 
12614         match Win32 behaviour, and added TrackBar tests to the unit 
12615         tests.
12616
12617 2006-11-02  Chris Toshok  <toshok@ximian.com>
12618
12619         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
12620         not _NET_WM_STATE_NO_TASKBAR.
12621
12622 2006-11-02  Jackson Harper  <jackson@ximian.com>
12623
12624         * TextControl.cs: Increment count by one, since in the update view
12625         count - 1 is used.
12626
12627 2006-11-02  Jackson Harper  <jackson@ximian.com>
12628
12629         * TextBoxBase.cs: Use client rectangle not bounds for checking if
12630         the mouse is in the client rectangle (duh).
12631
12632 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12633         
12634         * TrackBar.cs: Fixed trackbar jumping around when clicking
12635         on it - the trackbar was not detecting correctly at which
12636         side of the thumb the click was done. (fixes #79718)
12637
12638 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
12639
12640         * ListBox.cs: scroll visible area when change SelectedIndex to
12641         a non visible area.  Fixes #79481.
12642
12643 2006-11-01  Jackson Harper  <jackson@ximian.com>
12644
12645         * TextControl.cs: When replacing the selection move the selection
12646         start/end/anchor to the end of the new text.
12647
12648 2006-11-01  Jackson Harper  <jackson@ximian.com>
12649
12650         * XplatUIWin32.cs: When setting the parent change the controls
12651         visibility to it's visibility flag, not to it's old parents
12652         visibility (.Visible walks the parent chain).
12653
12654 2006-11-01  Chris Toshok  <toshok@ximian.com>
12655
12656         * XplatUIX11.cs: revert the #79790 fix, as the simple.
12657         XSetTransientForHint fix breaks paint .net's tool windows.  more
12658         work needed for that one.
12659
12660 2006-11-01  Chris Toshok  <toshok@ximian.com>
12661
12662         * ScrollBar.cs: throw ArgumentException instead of Exception in
12663         LargeChange/SmallChange setters.  fixes unit tests.
12664
12665 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12666
12667         * ContainerControl.cs: reverted rev.67183 (which was itself
12668         a reversion of rev.66853... eh).
12669         
12670         * Control.cs: Fixes Reflector hang by changing Focus() call
12671         to what it was before rev.66643 (calling Select() here sets 
12672         ActiveControl, which in some situations calls back Focus and 
12673         eventually does a stack overflow). Temp fix.    
12674         Changes to GetNextControl() to not look for children to select when
12675         parent cannot be selectable (so it looks for siblings instead)  
12676         
12677 2006-10-31  Mike Kestner  <mkestner@novell.com>
12678
12679         * CheckedListBox.cs : off by one error in returned index from
12680         ObjectCollection.Add.  Fixes #79758.
12681
12682 2006-10-31  Chris Toshok  <toshok@ximian.com>
12683
12684         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
12685         calls for the textbox/spinner, to keep from recursing to the point
12686         where we crash.  Fixes #79760.
12687
12688 2006-10-31  Chris Toshok  <toshok@ximian.com>
12689
12690         * ListControl.cs (set_SelectedValue): don't throw exceptions on
12691         null/"" value, just return.  matches ms's behavior and fixes some
12692         failing tests.
12693
12694 2006-10-31  Chris Toshok  <toshok@ximian.com>
12695
12696         * Control.cs (set_Capture): make a logic a little easier to
12697         follow.
12698
12699         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
12700         if it's being destroyed.  A necessary fix surely, but a bandaid
12701         also, to fix the stuck capture problem in bug #78413.
12702
12703 2006-10-31  Chris Toshok  <toshok@ximian.com>
12704
12705         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
12706         convention of clearing hwnd.ClientRect when we set the
12707         width/height (so it'll be recalculated by Hwnd).
12708
12709 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12710
12711         * ContainerControl.cs: reversed Contains check from
12712         ActiveControl due to hanging problems. This fix
12713         partly regresses #79667 (button does not have
12714         initial focus), so this might be a symptom for 
12715         a larger parenting problem (set_ActiveControl
12716         is being called but the child control does
12717         not have the parent set yet?)   
12718         
12719 2006-10-31  Mike Kestner  <mkestner@novell.com>
12720
12721         * MenuAPI.cs : fix keynav when menu is click activated.
12722
12723 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
12724
12725         * ToolStrip*: Version 0.2.
12726
12727         * MenuStrip.cs: Version 0.1.
12728
12729         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
12730
12731 2006-10-30  Chris Toshok  <toshok@ximian.com>
12732
12733         [ fixes the oversized notify icon issue in bug #79745 ]
12734         
12735         * NotifyIcon.cs: scale the icon down to the size we're given by
12736         the XplatUI layer (this would be faster if we did it once instead
12737         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
12738         since it's never invoked.
12739
12740         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
12741         pixels high by default, so let's hardcode our systray icon to that
12742         size.  The SYSTEM_TRAY protocol should really have a way for
12743         client apps to query for the correct icon size.. but oh well.  A
12744         couple of patches to deal with the screwy client_window ==
12745         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
12746         instance, and also make sure we don't XSelectInput twice).
12747
12748 2006-10-30  Chris Toshok  <toshok@ximian.com>
12749
12750         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
12751         recreating forms.  Control recreation is the bane of my existence.
12752         Fix it in a way that keeps everyone happy.
12753
12754 2006-10-30  Chris Toshok  <toshok@ximian.com>
12755
12756         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
12757         just non-CHILD ones.  otherwise sometimes scrollbars end up with
12758         client_windows not being resized to the proper size (ReportBuilder
12759         shows this extremely well).
12760
12761 2006-10-30  Chris Toshok  <toshok@ximian.com>
12762
12763         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
12764         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
12765         showing up in the gnome taskbar.  Fixes bug #79790.
12766
12767 2006-10-30  Chris Toshok  <toshok@ximian.com>
12768
12769         * ApplicationContext.cs: guard against a NRE.
12770
12771         * Application.cs: null out the old MainForm for the context, so we
12772         don't try to use it again once it's disposed.  Fixes bug #79783.
12773
12774 2006-10-30  Chris Toshok  <toshok@ximian.com>
12775
12776         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
12777         BindingContext, set the data source directly, otherwise do the
12778         lazy approach - the actual ListManager will be created when we get
12779         a BindingContext. Fixes bug #79700.
12780
12781 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12782
12783         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
12784           XplatUIX11.cs: Remove old 2 parameter SetVisible.
12785
12786         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
12787
12788 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12789
12790         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
12791         of SetVisible that allows a window to be shown, but not activated.
12792         This is needed on Windows for MenuStrip, and can probably be used
12793         with MainMenu and ComboBox to fix the focus stealing issues on
12794         Windows.
12795
12796         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
12797
12798 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
12799
12800         * PictureBox.cs: Fix the output of the ToString method.
12801
12802 2006-10-29  Chris Toshok  <toshok@ximian.com>
12803
12804         * Control.cs (get_TopLevelControl): fix bug #79781.
12805
12806 2006-10-29  Chris Toshok  <toshok@ximian.com>
12807
12808         * ListControl.cs (set_DataSource): throw Exception here, not
12809         ArgumentException, to match MS behavior.
12810
12811 2006-10-29  Chris Toshok  <toshok@ximian.com>
12812
12813         * Form.cs: remove the try-catch's around calls to GetWindowState.
12814         We can just check the return value.
12815
12816         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
12817         Instead return -1.
12818
12819         * XplatUI.cs: Add note about additional return value for
12820         GetWindowState.
12821
12822 2006-10-29  Chris Toshok  <toshok@ximian.com>
12823
12824         * Control.cs (CreateHandle): when we create our handle, we also
12825         create the handles of our child controls.  Fixes one of the
12826         Control unit tests (CH11).
12827
12828 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12829
12830         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
12831
12832 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12833
12834         * ThemeClearlooks.cs: A little speedup.
12835
12836 2006-10-27  Chris Toshok  <toshok@ximian.com>
12837
12838         * Control.cs: implement Control.FromChildHandle in a way that
12839         matches the docs (and fixes the failed test.)
12840
12841 2006-10-27  Chris Toshok  <toshok@ximian.com>
12842
12843         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
12844         comments).
12845
12846         * DataGrid.cs: implement ResetForeColor such that the tests
12847         succeed.
12848         
12849 2006-10-27  Chris Toshok  <toshok@ximian.com>
12850
12851         * ToolBarButton.cs: setting text/tooltiptext to null results in it
12852         being set to "".  Fixes bug #79759.
12853
12854 2006-10-27  Jackson Harper  <jackson@ximian.com>
12855
12856         * TextControl.cs: We need to clear the entire selection area when
12857         setting the start, otherwise multiline selections are still
12858         visible.
12859
12860 2006-10-26  Chris Toshok  <toshok@ximian.com>
12861
12862         * PropertyGridView.cs: 
12863
12864         - ifdef all the code specific to the double
12865         buffer case, and provide some alternatives in the non-doublebuffer
12866         code, which makes heavy use of XplatUI.ScrollWindow to move things
12867         around without having to invalidate (and cause flicker).  There
12868         are still some drawing problems in the non-doublebuffered case, so
12869         DOUBLEBUFFER is defined by default.
12870
12871         - Fix the way dropdowns are handled.  now we explicitly watch for
12872         the events which might cause the dropdown to close, and break out
12873         of the nested event loop there.  This gets rid of all Capture
12874         code, at the expense of the Msg special casing.  Seems to work,
12875         though, and fixes bug #79743.
12876
12877 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
12878         * Control.cs: SetIsRecreating now recreates implicitly added
12879         child controls as well. Finally fixes #79629. The flag passed to 
12880         SetIsRecreating has also been removed since it wasn't used.
12881         
12882 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12883
12884         * PageSetupDialog.cs: Clean some code, fix some bits, 
12885         add some checks, and add a printer sub-dialog.
12886
12887 2006-10-26  Chris Toshok  <toshok@ximian.com>
12888
12889         * PropertyGrid.cs: make set_SelectedObject call
12890         set_SelectedObjects, and move the duplicate logic to the
12891         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
12892
12893         * PropertyGridView.cs: hide the textbox when we get a
12894         SelectedObjectsChanged event.
12895
12896         Fixes bug #79748.
12897
12898 2006-10-26  Chris Toshok  <toshok@ximian.com>
12899
12900         * PropertyGridView.cs: deal with the type converter not supporting
12901         GetStandardValues() or GetStandardValues() returning null, which
12902         is does in the default case.  Fixes #79742.
12903
12904 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12905
12906         * CheckedListBox.cs: nunit no longer crashes when selecting 
12907         Project/Edit menu option
12908         
12909 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12910
12911         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
12912         is no menu selected. fixes #79739
12913
12914 2006-10-25  Chris Toshok  <toshok@ximian.com>
12915
12916         * PropertyGridView.cs: factor out the splitter invalidation code
12917         into the SplitterPercent setter, and for kicks implement the
12918         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
12919         amount in either direction.
12920
12921 2006-10-25  Chris Toshok  <toshok@ximian.com>
12922
12923         * PropertyGridView.cs: do some cleanup of the brush used to draw
12924         text - read only fields should be grayed out.  not sure how to do
12925         this with the textbox, though.  but the textbox's should also be
12926         readonly now at least.  Also, hide/show the textbox when resizing
12927         the control.
12928         
12929         * CursorConverter.cs: use System.Reflection when getting the
12930         properties of Cursors, as TypeDescriptor.GetProperties isn't
12931         returning static properties.
12932
12933 2006-10-25  Chris Toshok  <toshok@ximian.com>
12934
12935         * PropertyGridView.cs: factor out the up/down handling, and reuse
12936         it for page up/down.  also add End/Home support.
12937
12938 2006-10-25  Chris Toshok  <toshok@ximian.com>
12939
12940         * PropertyGridView.cs:
12941
12942         - ensure the selected grid item is visible in the scrolled area,
12943         fixes bug #79572.
12944
12945         - fix Keys.Down handling when you're on the last item in the
12946         propertygrid.
12947
12948 2006-10-25  Mike Kestner  <mkestner@novell.com>
12949
12950         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
12951         clicks too.  Fixes #79725.
12952
12953 2006-10-24  Chris Toshok  <toshok@ximian.com>
12954
12955         * PropertyGrid.cs: use property.Converter instead of
12956         TypeDescriptor.GetConverter(property.PropertyType), so we catch
12957         TypeConverters declared on the property as well as on the
12958         PropertyType.  Fixes bug #79678.
12959
12960 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
12961
12962         * MimeIcon.cs, Mime.cs:
12963           Fallback to the default platform handler if no shared mime info
12964           stuff exists (fixes #79693).
12965
12966 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
12967         * ContainerControl.cs: Incorrect contains check in ActiveControl 
12968         from previous fix (duh).
12969
12970 2006-10-20  Chris Toshok  <toshok@ximian.com>
12971
12972         * PropertyGridView.cs: the dropdown should be MIN(number of items
12973         in list, 15).  Fixes #79551.
12974
12975 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
12976         Fixes #79384, #79394, #79652, #79667
12977         * Application.cs: 
12978         
12979         - Modal windows are now destroyed in the proper order for windows
12980         
12981         * ContainerControl.cs:
12982         
12983         - ActiveControl setter has more conditions on when to return:
12984                 - if we're reselecting the active control, but it actually
12985                 didn't have focus (window hidden or some such), it runs
12986                 - if the active control being selected doesn't actually 
12987                 exist in the container, it returns
12988         
12989         * Form.cs
12990         
12991         - The ShowDialog now gets the current form as the owner when
12992         invoking without parameters, and correctly activates the owner 
12993         when returning
12994         
12995         * MessageBox.cs
12996         
12997         - MessageBox now catches the Escape key to exit
12998
12999 2006-10-20  Chris Toshok  <toshok@ximian.com>
13000
13001         * PropertyGridView.cs: fix a number of issues (bug #78565, and
13002         most of bug #79676):
13003
13004         - you can navigate around the property grid with the arrow keys.
13005
13006         - the dropdown is sized properly when the pg has a vertical
13007         scrollbar.
13008
13009         - fix the indentation for subentries, and properly select the
13010         entire label rect.
13011
13012         - fix the gray bar's drawing (only draw it to the last element,
13013         not for the height of the control.  Also make sure we draw that
13014         last horizontal grid line.
13015
13016         - use the same mechanism the datagrid uses wrt the editing textbox
13017         when scrolling/resizing/etc.  Namely, we hide it first, do the
13018         operation, then show it again (if it's still visible).
13019         
13020         - aggressively remove a lot of unnecessary refreshes (and also
13021         calls to Invalidate(). call more limited variants, and only redraw
13022         what we need.)
13023         
13024         * PropertyGrid.cs:
13025
13026         - when we're populating the merged collection, fill in the UI
13027         parent with either the passed in item, or the category item we
13028         create.
13029
13030         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
13031
13032         * GridItem.cs: drop some fully qualified names.
13033         
13034         * GridEntry.cs: add a "UIParent", which is basically the parent
13035         treenode.
13036
13037         * GridItemCollection.cs: add an IndexOf method.
13038
13039 2006-10-20  Mike Kestner  <mkestner@novell.com>
13040
13041         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
13042         a working win32 NC invalidation mechanism, we can't invalidate
13043         menus.  [Fixes #79705]
13044
13045 2006-10-20  Mike Kestner  <mkestner@novell.com>
13046
13047         * ListBox.cs : don't update the VScrollbar if the list is empty,
13048         just hide it.  [Fixes #79692]
13049
13050 2006-10-20  Jackson Harper  <jackson@ximian.com>
13051
13052         * RichTextBox.cs: Handle some special chars better, and don't skip
13053         the entire group when we encounter a special char that we don't
13054         handle correctly.
13055
13056 2006-10-18  Chris Toshok  <toshok@ximian.com>
13057
13058         * PropertyGridView.cs: address a number of issues from bug #79676,
13059         mostly of the cosmetic variety.
13060
13061         - The highlight rectangle for indented items not extends all the
13062         way to the left.
13063
13064         - Indented items aren't indented so much.
13065
13066         - the dropdown is properly sized width-wise if the pg has a
13067         vertical scrollbar.
13068
13069 2006-10-18  Chris Toshok  <toshok@ximian.com>
13070
13071         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
13072         systray stuff is rather convoluted to begin with.
13073
13074         systray icons are a single window for some reason (that I haven't
13075         figured out yet), and for them, client_window == whole_window.
13076         Given the way the tests are structured elsewhere to determine
13077         which paints are pending (client vs. nc), that situation will
13078         always yield PAINT, not NCPAINT.  So, if we have a pending
13079         nc_expose and no pending expose, remove the hwnd from the paint
13080         queue, and also set nc_expose_pending to false, to keep us from
13081         blocking further expose's adding the hwnd to the paint queue.
13082
13083         phew.  like i said, a rather convoluted change.  Fixes the
13084         notifyicon repaint issues in bug #79645.
13085
13086 2006-10-18  Chris Toshok  <toshok@ximian.com>
13087
13088         * Form.cs: when getting the backcolor of the form, don't get
13089         base.BackColor, as this allows parents to influence the background
13090         color.  This breaks mdi forms.  Instead, if the background_color
13091         is empty, return the default.
13092
13093 2006-10-18  Chris Toshok  <toshok@ximian.com>
13094
13095         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
13096         to being private instead of internal static.
13097
13098         * Control.cs: remove all the stupid ParentWaitingOnRecreation
13099         crap, it wasn't working for more deeply nested controls anyway,
13100         and we already have the is_recreating flag - use that instead.
13101         Before calling DestroyHandle in RecreateHandle, recurse through
13102         the control tree setting it to true.  this returns the recreate
13103         code to much of its original simplicity, while now guaranteeing we
13104         actually recreate everything we're supposed to.  This change gets
13105         fyireporting actually showing mdi children.
13106
13107 2006-10-17  Chris Toshok  <toshok@ximian.com>
13108
13109         * Form.cs: remove some debug spew, and collapse some duplicate
13110         code at the end of SetClientSizeCore.
13111
13112         * XplatUIX11.cs: 
13113         - add some more debug spew here too wrt Destroy handling.
13114         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
13115         in Control's handling of WM_DESTROY.
13116         - Remove the handling of zombie window DestroyNotifies from the
13117         event loop - we don't need it.  Now the only DestroyNotifies we
13118         actually handle are ones generated by X.
13119         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
13120         match gtk's (functioning) handling of this. This keep metacity
13121         from leaving droppings in the form of wm borders with no window
13122         contents all over the place.
13123
13124         * Control.cs:
13125         - add a bunch of debug spew wrt control recreation.
13126         - fix a bug where we weren't tracking Visible properly on
13127         recreated hwnds.
13128         - fixed the WM_PAINT double buffer handling to support re-entrant
13129         calls (yes, i know it's gross, but it's happening to us).
13130
13131 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13132         * ThemeWin32Classic.cs: changed drawing of selected days
13133         to make them look better.
13134
13135 2006-10-16  Chris Toshok  <toshok@ximian.com>
13136
13137         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
13138         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
13139
13140         * XplatUIX11.cs: move away from using hwnd.client_dc and
13141         hwnd.non_client_dc and on to a stack of dc's (and in window's
13142         case, PAINTSTRUCT's), so we can deal with nested Paint calls
13143         without puking or not disposing of Graphics objects.
13144
13145         * XplatUIOSX.cs: same.
13146
13147         * XplatUIWin32.cs: same.
13148
13149 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13150
13151         * FileDialog.cs: Don't call on_directory_changed inside
13152           OnSelectedIndexChanged (it changes the SelectedIndex too).
13153           Instead move it to OnSelectionChangeCommitted.
13154
13155 2006-10-13  Chris Toshok  <toshok@ximian.com>
13156
13157         * XplatUIX11.cs: more Destroy work.  the current code does the
13158         following things, in order:
13159
13160         1. Enumerates all handles of all controls at or below the one
13161         being destroyed, in pre-order.  As it is doing this, it marks the
13162         handles as zombie and clears all references to them.
13163         
13164         2. calls XDestroyWindow on the window passed in.
13165
13166         3. SendMessage's WM_DESTROY to all he handles in the accumulated
13167         list.
13168
13169 2006-10-13  Chris Toshok  <toshok@ximian.com>
13170
13171         * XplatUIX11.cs: set hwnd.zombie to true before calling
13172         SendMessage (WM_DESTROY).  this keeps us from marking the new
13173         window a zombie, and also keeps us from calling sendmessage at
13174         all.
13175
13176 2006-10-13  Jackson Harper  <jackson@ximian.com>
13177
13178         * TextControl.cs: Do not show the caret and selection at the same
13179         time.  Reduces ugliness by 35%.
13180
13181 2006-10-13  Chris Toshok  <toshok@ximian.com>
13182
13183         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
13184         zombie after we do the recursive call, so we actually do call
13185         SendMessage on the children controls.
13186         (GetMessage): if we find a pending paint event for a zombie hwnd,
13187         remove the hwnd from the paint queue, or else it will always be
13188         there (and we'll effectively loop infinitely)
13189
13190 2006-10-13  Mike Kestner  <mkestner@novell.com>
13191
13192         * MenuItem.cs : add Selected format under keynav too.
13193         Fixes #79528.
13194
13195 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
13196
13197         * PropertyGrid.cs: Fixed some NRE's and small difference between our
13198         implementation and that of MS.
13199
13200 2006-10-13  Chris Toshok  <toshok@ximian.com>
13201
13202         * Control.cs (OnInvalidated) only futz with the invalid_region if
13203         the control is double buffered.  this fixes the apparent hang in
13204         the ListView unit tests.  Someone needs to make the
13205         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
13206
13207 2006-10-13  Chris Toshok  <toshok@ximian.com>
13208
13209         * PropertyGridView.cs:
13210
13211         - do a little refactoring so that only one place calls
13212         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
13213         else call that.  Also make it Refresh, since there are redraw bugs
13214         otherwise (we should take a look at that...)
13215
13216         - do a little more refactoring work to share the body of code
13217         involved with the drop down.  it was duplicated in the code
13218         dealing with the listbox handling and in the code dealing with the
13219         UITypeEditors.
13220
13221         - add a Capture to the dropdown form's control once it's
13222         displayed, and add a MouseDown handler that checks to make sure
13223         the position is inside the control.  If it's not, close the
13224         dropdown.  This fixes #78190.
13225
13226         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
13227         if the value is different than the initial value.
13228         
13229 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
13230
13231         * Control.cs: see #78650
13232         - Fixed GetNextControl for several cases:
13233                 - Changed FindFlatForward to return 
13234                 correct sibling control when more than one
13235                 control has same TabIndex as the currently 
13236                 focused one.
13237                 - Changed FindFlatBackward to loop children
13238                 from last to first and apply same logic as in
13239                 FindFlatForward
13240                 - Changed FindControlForward to search for
13241                 children when control is not a container
13242                 but has children, or search for siblings if
13243                 control is a container...
13244                 - Changed FindControlBackward   to continue
13245                 searching for child controls when hitting 
13246                 Panel-like parents
13247                 
13248         - Fixed Focus method to update ActiveControl
13249         (FocusTest.FocusSetsActive failure)
13250         
13251         * TabControl.cs:
13252         - Focus rectangle now refreshes when gaining
13253         or losing focus
13254         - Removed grab for Tab key on IsInputKey that 
13255         was keeping tab navigation from working (#78650)
13256
13257 2006-10-13  Chris Toshok  <toshok@ximian.com>
13258
13259         * PropertyGridView.cs:
13260         - Rewrite SetPropertyValue to loop over SelectedGridItem's
13261         SelectedObjects.
13262
13263         - Deal with GridItem.Value == null a few places.
13264
13265         * PropertyGrid.cs: 
13266         - replace the PopulateGridItemCollection with a pair of methods
13267         which compute the intersection of all the properties in the
13268         SelectedObjects array.  Fixes #79615.
13269
13270         - Throw ArgumentException from set_SelectedObjects if there's a
13271         null in the array.
13272
13273         - Add GetTarget method which can be used to traverse up the
13274         GridItem.Parent chain.  It depends on the assumption that
13275         selected_objects for different GridEntries are always in the same
13276         order (a safe assumption).  Use this method and loop over all the
13277         selected objects in the entry when calling RemoveValueChanged and
13278         AddValueChanged.
13279         
13280         * GridEntry.cs: Make this handle multiple selected objects.
13281         .Value returns null if not all the selected objects share the same
13282         value.
13283
13284 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
13285         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
13286           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
13287           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
13288           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
13289           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
13290         add additional functionality.
13291
13292 2006-10-12  Mike Kestner  <mkestner@novell.com>
13293
13294         * ErrorProvider.cs : new ToolTipWindow ctor sig.
13295         * HelpProvider.cs : new ToolTipWindow ctor sig.
13296         * ToolTip.cs : remove ToolTip param from Window sig since it is
13297         not used.
13298         * ToolBar.cs : add tooltip support.  Fixes #79565.
13299
13300 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13301
13302         * ComboBox.cs: move the events in set_SelectedIndex to 
13303         after the call to HighlightIndex in order to avoid 
13304         possible recursion and subsequent problems with the call
13305         to HighlightIndex and include a range check in 
13306         set_HighlightIndex. Fixes #79588
13307         
13308 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13309
13310         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
13311         to ui thread's settings instead of sunday. 
13312         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
13313
13314 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13315
13316         * DateTimePicker.cs
13317         * MonthCalendar.cs
13318         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
13319         and implement missing functionality (selecting different parts 
13320         of the date and edit them individually with the keyboard).
13321         
13322 2006-10-11  Chris Toshok  <toshok@ximian.com>
13323
13324         * Control.cs (OnInvalidated): fix NRE relating to last change.
13325
13326 2006-10-11  Chris Toshok  <toshok@ximian.com>
13327
13328         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
13329         atoms in _NET_WM_STATE here if the window is maximized.  We need
13330         to do this because we're *replacing* the existing _NET_WM_STATE
13331         property, so those atoms will be lost otherwise, and any further
13332         call to GetWindowState will return Normal for a window which is
13333         actually maximized.  Fixes #79338.
13334
13335 2006-10-11  Jackson Harper  <jackson@ximian.com>
13336
13337         * TextControl.cs: Special case for setting selection end to
13338         selection start, we basically kill the anchor.
13339         - some todo comments.
13340
13341 2006-10-11  Chris Toshok  <toshok@ximian.com>
13342
13343         * Control.cs: switch to using an "invalid_region" to track which
13344         parts of the image buffer need updating.  This is more code than
13345         the simple fix from r66532.  That version just attempted to always
13346         fill the entire buffer on redraw, which turns out to be
13347         inefficient when invalidating small rectangles.  This version
13348         simply adds the invalid rectangle to the invalid region.  When we
13349         get any WM_PAINT message we see if it can be filled using the
13350         image buffer, and if it can't (if the paint event's clip rectangle
13351         is visible in the invalid region) we first fill the image buffer.
13352         So, the image buffer is still a cache, we just fill it lazily.
13353
13354         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
13355         need it any longer.
13356
13357 2006-10-11  Chris Toshok  <toshok@ximian.com>
13358
13359         * XplatUIX11.cs (SetWindowPos): we need to update both position as
13360         well as size after calling XMoveResizeWindow.  This keeps us from
13361         ignoring future SetWindowPos calls.  Fixes the disappearing
13362         DateTimePicker in the ToolBarDockExample from bug #72499.
13363
13364 2006-10-11  Chris Toshok  <toshok@ximian.com>
13365
13366         * TextBoxBase.cs: reorder things a bit when it comes to
13367         resizing-causing-recalculation.  we were recalculating the
13368         document when our position was changed, which shouldn't happen.
13369         We only care about size changes.  Clear up some more redundant
13370         recalculation calls while I'm at it.  This makes the toolbar dock
13371         example snappy when you're just dragging toolbars around (since it
13372         causes a relayout whenever you move one.)
13373
13374 2006-10-11  Chris Toshok  <toshok@ximian.com>
13375
13376         * ToolBarButton.cs (get_Rectangle): this only returns
13377         Rectangle.Empty if Visible == false, or Parent == null.
13378         Parent.Visible doesn't matter.
13379
13380 2006-10-10  Chris Toshok  <toshok@ximian.com>
13381
13382         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
13383         by .net 1.1, so switch to an internal method instead.
13384
13385 2006-10-10  Chris Toshok  <toshok@ximian.com>
13386
13387         * Control.cs (WM_PAINT): when a control is double buffered we draw
13388         initially to the ImageBuffer and then copy from there.  But when a
13389         parent control which has child controls is double buffered, the
13390         initial drawing doesn't encompass the entire ClientRectangle of
13391         the parent control, so we end up with uninitialized bits (this is
13392         easily seen by dragging the top toolbar in
13393         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
13394         manually set the ClipRectangle of the paint_event (only the one we
13395         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
13396         of the nastiness in bug #72499.
13397
13398         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
13399         which we use in Control.cs's WM_PAINT handling.
13400
13401 2006-10-10  Jackson Harper  <jackson@ximian.com>
13402
13403         * TextBoxBase.cs: Finish off the autoscrolling stuff.
13404
13405 2006-10-10  Chris Toshok  <toshok@ximian.com>
13406
13407         * Cursor.cs: Apply a slightly different patch to the one suggested
13408         in #79609.
13409
13410 2006-10-10  Jackson Harper  <jackson@ximian.com>
13411
13412         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
13413         not the parent form.
13414         * TextControl.cs: use difference in old line count vs new count to
13415         calculate how many lines were added, this takes into account soft
13416         line breaks properly.
13417
13418 2006-10-10  Chris Toshok  <toshok@ximian.com>
13419
13420         * LinkLabel.cs: don't call MeasureCharacterRanges against a
13421         rectangle located at 0,0 and the size of the text.  Use
13422         ClientRectangle instead.  This fixes rendering of non-left aligned
13423         link labels.
13424
13425 2006-10-10  Jackson Harper  <jackson@ximian.com>
13426
13427         * TextBoxBase.cs: When we set the selection start position the
13428         caret.
13429         * TextControl.cs: Need to update the caret when we decrement it to
13430         zero.
13431         - Make sure that the selection_visible flag gets reset to false if
13432         the selection isn't visible.  Before this you could get it set to
13433         visible by changing the selection start, then changing the end to
13434         equal the start.
13435
13436 2006-10-09  Jackson Harper  <jackson@ximian.com>
13437
13438         * TreeView.cs: Don't update scrollbars when we aren't visible.
13439         * TreeNodeCollection.cs: Only need to update scrollbars if being
13440         added to an expanded visible node or the root node.
13441
13442 2006-10-09  Chris Toshok  <toshok@ximian.com>
13443
13444         * XplatUIX11.cs (SendMessage): fix NRE.
13445
13446 2006-10-09  Jackson Harper  <jackson@ximian.com>
13447
13448         * TextBoxBase.cs: Implement horizontal autoscrolling.
13449         * TextControl.cs: Add a movement types that allows moving forward
13450         and backwards without wrapping.
13451
13452 2006-10-09  Mike Kestner  <mkestner@novell.com>
13453
13454         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
13455         with focus "expansion" of labels.  Fixes #79532 and then some.
13456         * ThemeWin32Classic.cs : add LineLimit to ListView label format
13457         when wrapping.
13458
13459 2006-10-09  Jackson Harper  <jackson@ximian.com>
13460
13461         * TextBoxBase.cs: Set the default max values to MaxValue since
13462         we use the scrollbar for autoscrolling and the default value is
13463         100.  If we don't do this the caret won't keep up with typing
13464         after about 18 characters.
13465         * TextControl.cs: Make sure the selection is offset by the
13466         viewport x.  This fixes selection when using auto scrolling.
13467
13468 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
13469         
13470         * Form.cs: The active control should be selected after the 
13471         OnLoad so that any child control initialization that affects
13472         the selection is done. Fixes #79406
13473
13474 2006-10-06  Chris Toshok  <toshok@ximian.com>
13475
13476         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
13477         to have no evil effects.
13478
13479         - Stop selecting StructureNotifyMask on non-toplevel windows.
13480
13481           The only way children should be resized is by using the SWF api,
13482           and we already send WM_WINDOWPOSCHANGED messages in those cases.
13483           Toplevel windows can be interacted with via the window manager,
13484           and so we keep the input mask there.
13485
13486           The other event StructureNotifyMask gives us (that we care
13487           about) is DestroyNotify.  The code is already structured such
13488           that it assumes we won't be getting a DestroyNotify event for
13489           the window we pass to XDestroyWindow (which is what
13490           StructureNotifyMask is supposed to guarantee.)  So, that code
13491           shouldn't be affected by this either.
13492
13493         - Stop selecting VisibilityChangeMask altogether.
13494
13495           We weren't doing anything with the resulting events anyway.
13496         
13497         This vastly reduces the number of X requests and events we see
13498         when resizing/laying out a large ui.
13499
13500 2006-10-06  Chris Toshok  <toshok@ximian.com>
13501
13502         * ScrollableControl.cs (DisplayRectangle): we need to take into
13503         account the DockPadding regardless of whether or not auto_scroll
13504         == true.  rework this slightly to this effect, and fix bug #79606,
13505         and part of #72499 (you can now see the drag handles and drag
13506         toolbars around).
13507
13508 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
13509
13510         * ListViewItem.cs: Collections of selected and checked items are now
13511         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
13512         we mark the collection "dirty".
13513         * ListView.cs: Marked collections readonly. Modified UpdateSelection
13514         to only clear SelectedItems when a new item is selected and MultiSelect
13515         is enabled. CheckedItems and SelectedItems now subscribe to Changed
13516         event of ListViewItemCollection, and mark its list dirty whenever
13517         that event is fire. This allows us to return selected/checked items 
13518         in the same order as they are in the Items collection. This matches
13519         the MS behavior.
13520
13521 2006-10-06  Chris Toshok  <toshok@ximian.com>
13522
13523         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
13524         right mouse clicks.  Fixes bug #79593.
13525
13526 2006-10-06  Chris Toshok  <toshok@ximian.com>
13527
13528         * Splitter.cs: doh, fix splitters that don't want to cancel the
13529         movement when you drag them.  Also, impose the limits on the
13530         values we send to the SplitterMovingEvent.  Fixes #79598.
13531
13532 2006-10-06  Jackson Harper  <jackson@ximian.com>
13533
13534         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
13535         since we use this for auto scrolling also.
13536
13537 2006-10-05  Chris Toshok  <toshok@ximian.com>
13538
13539         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
13540         beginning to think that most datagrid column types don't need this
13541         method.  Fixes bug #79392.
13542
13543 2006-10-05  Chris Toshok  <toshok@ximian.com>
13544
13545         * DataGrid.cs: move back to a more lazy scheme for creating the
13546         CurrencyManager, so we aren't updating it every time you set
13547         either DataSource or DataMember.  Also, don't call
13548         RecreateDataGridRows if the currency manager hasn't changed.
13549
13550 2006-10-05  Chris Toshok  <toshok@ximian.com>
13551
13552         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
13553         emitted, SelectedIndex should already be updated.  Fixes bug
13554         #78929.
13555
13556 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
13557
13558         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
13559           ToolStripTextBox.cs: Initial commit.
13560         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
13561
13562 2006-10-05  Jackson Harper  <jackson@ximian.com>
13563
13564         * TabControl.cs: We need to invalidate the tab control area when
13565         new ones are added (duh).
13566
13567 2006-10-03  Chris Toshok  <toshok@ximian.com>
13568
13569         * Form.cs (ProcessDialogKey): if the focused control is in this
13570         form and is a button, call its PerformClick method here.  Fixes
13571         #79534.
13572
13573 2006-10-04  Jackson Harper  <jackson@ximian.com>
13574
13575         * TabPage.cs: Ignore setting of Visible, and add an internal
13576         method for setting the controls visibility.  TabPage's Visible
13577         property is a little strange on MS, this seems to make us
13578         compatible, and fixes cases where people set all the tab pages to
13579         visible.
13580         * TabControl.cs: Use the new internal setting on tab pages
13581         visibility.
13582
13583 2006-10-03  Mike Kestner  <mkestner@novell.com>
13584
13585         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
13586
13587 2006-10-03  Mike Kestner  <mkestner@novell.com>
13588
13589         * ListView.cs : use is_visible instead of Visible to check if 
13590         scrollbars should be placed/sized.  Also some max_wrap_width
13591         love for LargeIcon view.  [Fixes #79533]
13592
13593 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
13594
13595         * TextControl.cs :
13596           Make set_TextAlign() do actually update the align. Fixed #78403.
13597
13598 2006-10-03  Chris Toshok  <toshok@ximian.com>
13599
13600         * DataGrid.cs: fix a crash when switching datasources if the
13601         vertical scrollbar is at someplace other than Value = 0.  Also,
13602         reduce the number of recalculation passes we do in SetDataSource
13603         from 2 to 1.
13604
13605 2006-10-03  Jackson Harper  <jackson@ximian.com>
13606
13607         * TextBoxBase.cs: Move the if value the same bail check up, we
13608         don't want to empty the document if it is already empty, this
13609         seems to severly mess up the caret.  TODO: I should probably fix
13610         the empty statement to update teh caret somehow.
13611
13612 2006-10-03  Chris Toshok  <toshok@ximian.com>
13613
13614         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
13615         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
13616         reflection, an internal row type, properties on said type, etc.)
13617         will work with our datagrid.  Fixes #79531.
13618
13619 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13620
13621         * FileDialog.cs: Don't crash if a path is not accessible
13622           (System.UnauthorizedAccessException). Fixes #79569.
13623         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
13624           a ':' too. Return unknown icon for those paths/files.
13625
13626 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
13627
13628         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
13629         GetContainerControl returns null.
13630
13631 2006-10-02  Chris Toshok  <toshok@ximian.com>
13632
13633         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
13634         call to XGetWindowAttributes instead of "handle".  fixes an X
13635         error using notifyicon after the NotifyIconWindow to Form base
13636         class switch.
13637
13638 2006-10-02  Chris Toshok  <toshok@ximian.com>
13639
13640         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
13641         server grab and looping we need to do to get down to the most
13642         deeply nested child window.
13643         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
13644         QueryPointer again after the WarpPointer so we can generate a
13645         proper (fake) MotionNotify event to be enqueued in the destination
13646         window's queue.
13647         (GetCursorPos): call QueryPointer.
13648
13649         Fixes #79556.
13650
13651 2006-10-02  Jackson Harper  <jackson@ximian.com>
13652
13653         * NotifyIcon.cs: Derive the notify icon from a form, so things
13654         like FindForm work on it.
13655         - Swallow the WM_CONTEXTMENU message, since that is generated on
13656         mouse down, and context menu is a mouse up kinda guy.  I believe
13657         the correct fix here is probably to make the notify icon entirely
13658         NC area, but this seems to work fine for anyone not manipulating
13659         WndProc.
13660
13661 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
13662
13663         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
13664           ToolStripItemCollection.cs, ToolStripLabel.cs,
13665           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
13666           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
13667           Initial implementation.
13668         * TextRenderer.cs: Provide padding to MeasureText.
13669
13670 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
13671
13672         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
13673         of ButtonBaseAccessibleObject. Fix bug #79552.
13674
13675 2006-10-02  Jackson Harper  <jackson@ximian.com>
13676
13677         * MdiWindowManager.cs: When maximizing use the containers client
13678         rect, not it's bounds, so nc area is accounted correctly.
13679         - Use the parent form's size for the menu position, since the
13680         client isn't always the full form size.
13681
13682 2006-10-01  Chris Toshok  <toshok@ximian.com>
13683
13684         * ScrollableControl.cs: make sure neither right_edge or
13685         bottom_edge are < 0, since they're used as LargeChange for the
13686         horiz/vert scrollbars respectively.  Fixes #79539.
13687
13688 2006-10-01  Chris Toshok  <toshok@ximian.com>
13689
13690         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
13691         the xplatuix11 code can cause us to destroy/recreate our handle.
13692
13693         * XplatUIX11.cs
13694         (SystrayAdd):
13695         - this code can be invoked many times for the same Hwnd.  Make
13696           sure we only destroy the client window once (the first time this
13697           method is called).  This fixes bug #79544.
13698         - Remove the call to the improperly bound XSync.  why we had two
13699           bindings to this, I will never know, but this call resulted in
13700           events being discarded from the queue(!).
13701         - correct a misunderstanding of _XEMBED_INFO - the second atom is
13702           not our current state but the state we wish to be in.  So, 0 if
13703           we don't want to be mapped.  Change it to 1.
13704         (SystrayRemove): The XEMBED spec makes mention of the fact that
13705         gtk doesn't support the reparent of client windows away from the
13706         embedder.  Looking at gtksocket-x11.c seems to agree with this.
13707         The only avenue we have for removing systray icons is to destroy
13708         them.  We don't want the handle to go away for good, though, so
13709         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
13710         #79545.
13711         
13712 2006-10-01  Chris Toshok  <toshok@ximian.com>
13713
13714         * Form.cs (WndProc): inline the native_enabled variable usage into
13715         the cases in which it's used.  Fixes #79536.
13716
13717 2006-09-29  Mike Kestner  <mkestner@novell.com>
13718
13719         * ListView.cs : toggle the selection state for ctrl clicks in 
13720         multiselect mode. [Fixes #79417]
13721
13722 2006-09-29  Mike Kestner  <mkestner@novell.com>
13723
13724         * ListView.cs : kill CanMultiSelect and refactor the selection
13725         code to support multiselection in the absence of mod keys. Steal
13726         arrow/home/end keys by overriding InternalPreProcessMessage to
13727         restore regressed keynav behavior.
13728         [Fixes #79416]
13729
13730 2006-09-29  Jackson Harper  <jackson@ximian.com>
13731
13732         * MdiClient.cs: Repaint the titlebars when the active window is
13733         changed.
13734
13735 2006-09-29  Chris Toshok  <toshok@ximian.com>
13736
13737         * Application.cs: when entering a runloop with a modal, make sure
13738         the hwnd is enabled.  Fixes #79480.
13739
13740 2006-09-29  Chris Toshok  <toshok@ximian.com>
13741
13742         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
13743         when ListManager.CanAddRows == false, bump us back one.
13744
13745         * DataGridColumnStyle.cs (ParentReadOnly): remove the
13746         listmanager.CanAddRows check.  This makes ArrayLists uneditable
13747         using a datagrid, which is not right.
13748         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
13749         is an IEditable, but call property_descriptor.SetValue regardless.
13750         fixes #79435.
13751
13752 2006-09-29  Chris Toshok  <toshok@ximian.com>
13753
13754         * DataGridBoolColumn.cs: we need to test equality in the face of
13755         possible null values (as is the case with the default NullValue).
13756         This patch keeps us from crashing in that case.
13757
13758 2006-09-29  Jackson Harper  <jackson@ximian.com>
13759
13760         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
13761         here, since it will get called for every node collection in the
13762         tree. This is now done in the treeview once the sorting is
13763         finished.
13764         * TreeView.cs: Recalculate the visible order, and update the
13765         scrollbars after sorting, set the top nope to the root so that the
13766         recalc actually works.
13767
13768 2006-09-29  Chris Toshok  <toshok@ximian.com>
13769
13770         * LinkLabel.cs: more handling of the default link collection in
13771         the face of LinkArea manipulation.  The default link collection
13772         contains 1 element (start=0,length=-1).  If the user sets LinkArea
13773         to anything and the links collection is the default, clear it.
13774         Then only add the link if its nonempty.  Fixes #79518.
13775
13776 2006-09-29  Chris Toshok  <toshok@ximian.com>
13777
13778         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
13779         piece correctly when we hit a '\n'.  Fixes #79517.
13780
13781 2006-09-29  Chris Toshok  <toshok@ximian.com>
13782
13783         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
13784         change the binding of gdk_init_check to take two IntPtr's, and
13785         pass IntPtr.Zero for both of them.  Fixes #79520.
13786
13787 2006-09-29  Mike Kestner  <mkestner@novell.com>
13788
13789         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
13790         [Fixes #78779]
13791
13792 2006-09-28  Jackson Harper  <jackson@ximian.com>
13793
13794         * XplatUIX11.cs: When translating NC messages make sure we go from
13795         whole window to screen, not client window to screen.
13796         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
13797         method doesn't exist
13798         - Skip over controls that aren't forms when arranging.
13799
13800 2006-09-28  Jackson Harper  <jackson@ximian.com>
13801
13802         * XplatUIWin32.cs: Clip the rect to the parent window.
13803         * XplatUIStructs.cs: Add clipping modes struct.
13804         * InternalWindowManager.cs: New private method that factors title
13805         bar heights in when calculating the pos of an NC mouse message.
13806         - Use SendMessage to force a paint when the form's size is changed
13807         instead of painting the decorations immediately.
13808         - Don't let the NC button click messages get to DefWndProc,
13809         because they will attempt to handle windowing themself, and this
13810         messes up z-order (it will put them in front of the scrollbars).
13811         * XplatUIX11.cs: Make sure that we don't reset window managers if
13812         we already have one (ie the window is an MDI window).
13813
13814 2006-09-28  Chris Toshok  <toshok@ximian.com>
13815
13816         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
13817         menu code really needs going over.
13818
13819 2006-09-27  Chris Toshok  <toshok@ximian.com>
13820
13821         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
13822         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
13823         window is maximizable.  So, we need to make sure that even if we
13824         clear the border/wm frame of those functions, they're still
13825         available (basically, we remove the decoration without removing
13826         the function).  Half the fix for #79338.
13827
13828 2006-09-27  Chris Toshok  <toshok@ximian.com>
13829
13830         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
13831         Fixes bug #79515.
13832
13833 2006-09-27  Chris Toshok  <toshok@ximian.com>
13834
13835         * Splitter.cs: reorder things a bit so that we don't actually
13836         draw/move the splitter until after calling OnSplitterMoving.  This
13837         lets users cancel/disallow the movement by explicitly setting
13838         event.SplitX/SplitY.  Fixes #79372.
13839
13840 2006-09-27  Jackson Harper  <jackson@ximian.com>
13841
13842         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
13843         because it is most likely on a window being destroyed, and that
13844         will give us an X11 error.
13845
13846 2006-09-27  Chris Toshok  <toshok@ximian.com>
13847
13848         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
13849         the dropdown button now toggles between showing and hiding the
13850         dropdown.  Also, get rid of dropdown_form_showing and just use
13851         dropdown_form.Visible.  We still don't do a grab, but I'll leave
13852         that part to someone who has handled Capture-fu before.
13853
13854 2006-09-27  Chris Toshok  <toshok@ximian.com>
13855
13856         * DataGrid.cs: return false if alt isn't pressed when '0' is
13857         pressed.  this keeps the '0' key from being swallowed, and fixes
13858         bug #79350.
13859
13860 2006-09-27  Chris Toshok  <toshok@ximian.com>
13861
13862         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
13863         Calling Refresh (in response to a scrollbar event) screws up the
13864         scrollbar painting.  Fixes bug #78923.
13865
13866 2006-09-27  Chris Toshok  <toshok@ximian.com>
13867
13868         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
13869         then insert into hashtable" blocks threadsafe.
13870
13871 2006-09-27  Chris Toshok  <toshok@ximian.com>
13872
13873         * MessageBox.cs (CreateParams): the styles should be |'ed with our
13874         baseclass's, since otherwise the
13875         ControlBox/MinimizeBox/MaximizeBox assignments above have no
13876         effect.  This gets the close button back in messageboxes.
13877
13878 2006-09-27  Chris Toshok  <toshok@ximian.com>
13879
13880         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
13881         flag, not just != 0.  this makes flags that are actually multiple
13882         bits (like WS_CAPTION) work.  fixes bug #79508.
13883
13884 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
13885
13886         * PageSetupDialog.cs: add support for getting and settings the 
13887         paper size, source and orientation.
13888
13889 2006-09-26  Chris Toshok  <toshok@ximian.com>
13890
13891         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
13892         and caption == "", we need to remove the resize handles as well as
13893         the title bar.
13894
13895         * Control.cs (set_Text): turns out that setting Text on a form
13896         should change the WM styles on the window, since if ControlBox ==
13897         false, the only way to get a window border is to have a non-""
13898         Text property.  check winforms/forms/text.cs for an example.  so,
13899         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
13900         update both window styles and title.  This fixes a lot of dialogs
13901         (including the preferences dialog in MonoCalendar.)
13902
13903 2006-09-26  Chris Toshok  <toshok@ximian.com>
13904
13905         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
13906         control isn't a Form), call Win32ShowWindow to hide the window,
13907         but don't update the control Visible property.  When we reparent
13908         back to a parent control, call SetVisible in order for the
13909         window's visibility to be reinstated.
13910
13911         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
13912         the FosterParent.
13913
13914         * Control.cs (ControlCollection.Remove): remove that value.Hide()
13915         call for good, since it breaks MonoCalendar (and other things I'm
13916         sure.) Also, set all_controls to null *after* the owner calls,
13917         which end up regenerating it.
13918         (ChangeParent): allow new_parent to be == null, passing
13919         IntPtr.Zero down to XplatUI.
13920
13921         this fixes #79294 the right way.
13922
13923 2006-09-26  Mike Kestner  <mkestner@novell.com>
13924
13925         * GridEntry.cs : internal SetParent method.
13926         * PropertyGrid.cs : attach to property changed on the proper
13927         target if we have a hierarchical grid with subobjects. Setup
13928         GridItem.Parent for hierarchical items.
13929         * PropertyGridView.cs : Set value on the correct target for
13930         hierarchical grids. [Fixes #78903]
13931
13932 2006-09-26  Chris Toshok  <toshok@ximian.com>
13933
13934         * Control.cs (ChildNeedsRecreating): this should return true if
13935         either we're being recreated and the child is in our list, or our
13936         parent is waiting for our recreation.
13937
13938 2006-09-26  Chris Toshok  <toshok@ximian.com>
13939
13940         * Control.cs (ControlCollection.Remove): reinstate the
13941         value.Hide() call as suggested in bug #79294.
13942
13943 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
13944
13945         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
13946         coordinates (versus a relative move).
13947
13948 2006-09-26  Chris Toshok  <toshok@ximian.com>
13949
13950         * Control.cs: rework child recreation a little bit.  It turns out
13951         that we race between the DestroyNotify the WM_DESTROY message.  If
13952         the parent gets its DestroyNotify before the child gets the
13953         WM_DESTROY message, the child ends up not recreating (since the
13954         parent finishes its recreation on DestroyNotify, and the child
13955         checks ParentIsRecreating.)
13956
13957         So, instead we store off a list of all the child controls which
13958         need to be recreated when the parent control starts to recreate
13959         itself.  Then, when child controls get their WM_DESTROY message we
13960         check to see if they're in the parent's pending recreation list,
13961         and if so, we recreate.  This removes all dependency on ordering
13962         from the code and fixes the initial MonoCalendar upgrade dialog.
13963         
13964 2006-09-26  Jackson Harper  <jackson@ximian.com>
13965
13966         * TextControl.cs: Use the Line to get the length of the line,
13967         since soft line breaks can change the end line.
13968
13969 2006-09-26  Chris Toshok  <toshok@ximian.com>
13970
13971         * Control.cs (ControlCollection.AddImplicit): don't add the
13972         control again if it's already in one of our lists.  This keeps us
13973         from adding controls over and over again for comboboxes when their
13974         handle gets recreated (as the combobox adds implicit controls in
13975         OnHandleCreated).  Fixes the X11 errors in bug #79480.
13976
13977 2006-09-26  Jackson Harper  <jackson@ximian.com>
13978
13979         * TextControl.cs: When deleting characters make sure that any
13980         orphaned zero lengthed tags get deleted.
13981         - Fix ToString for zero lengthed tags.
13982
13983 2006-09-25  Jackson Harper  <jackson@ximian.com>
13984
13985         * TextControl.cs: When getting a tag at the location there can be
13986         multiple tags at the same spot, these are 0-lengthed tags that
13987         appear when extra formatting has been stuck in a location.  We
13988         need to pull out the last of these 0 lengthed tags.
13989
13990 2006-09-25  Jackson Harper  <jackson@ximian.com>
13991
13992         * TextControl.cs: Fix print out in debug method.
13993         * TextBoxBase.cs: When text is set bail if we are setting to the
13994         previous value.
13995         
13996 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
13997
13998         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
13999           It is now possible to change the selected index in a FontXXXListBox
14000           with the up and down arrow keys from the FontXXXTextBoxes.
14001           Also, send the FontXXXTextBox mouse wheel event to the corresponding
14002           FontXXXListBoxes to match ms.
14003
14004 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
14005
14006         * SystemInformation.cs: Return a clone of the theme's MenuFont because
14007         anyone can dispose it, anytime. All other properties returns enums, 
14008         structs or basic types so they don't need such tricks.
14009
14010 2006-09-22  Jackson Harper  <jackson@ximian.com>
14011
14012         * XplatUI.cs:
14013         * XplatUIWin32.cs:
14014         * Clipboard.cs:
14015         * DataFormats.cs:
14016         * XplatUIOSX.cs:
14017         * XplatUIDriver.cs: Update interface to add a primary selection
14018         flag, so the driver can use the primary selection buffer if
14019         needed.
14020         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
14021
14022         * RichTextBox.cs: We need to supply the data object to paste now
14023         (so we can choose to supply CLIPBOARD or PRIMARY).
14024         * TextBoxBase.cs: Supply data object to paste (see above).
14025         - Middle click uses the primary selection data object.
14026         
14027 2006-09-21  Chris Toshok  <toshok@ximian.com>
14028
14029         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
14030         of SetWMStyles.  It's still a rat's nest and is largely
14031         order-dependent which I dislike immensely.  This also fixes the X
14032         button disappearing from toplevel forms.
14033
14034 2006-09-21  Mike Kestner <mkestner@novell.com>
14035
14036         * ListBox.cs: move Jordi's click/dblclick raising code to the
14037         mouse up handler.
14038
14039 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
14040
14041         * ListBox.cs: Fixes 79450
14042
14043 2006-09-21  Mike Kestner <mkestner@novell.com>
14044
14045         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
14046         to deal with people updating the TreeNodeCollection after the tree
14047         is disposed.  "Fixes" 79330.
14048
14049 2006-09-20  Jackson Harper <jackson@ximian.com>
14050
14051         * TextControl.cs: Push the cursor record onto the undo stack
14052         before the delete action. This fixes 78651.
14053
14054 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
14055
14056         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
14057         CreateParams. Fixes 79329.
14058
14059 2006-09-19  Chris Toshok  <toshok@ximian.com>
14060
14061         * XplatUIX11.cs: a couple of blanket code massage passes to clean
14062         things up a bit.  First, get rid of the NetAtoms array (and the NA
14063         enum), and just embed the atoms as static fields.  Also, add a
14064         couple of functions (StyleSet and ExStyleSet) to clean up all the
14065         bitmask testing of styles.
14066
14067         * X11Structs.cs: remove the NA enum, not needed anymore.
14068         
14069 2006-09-19  Chris Toshok  <toshok@ximian.com>
14070
14071         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
14072         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
14073         added cleanup to get MessageBox titles appearing again, which were
14074         broken by my earlier fix for caption-less/ControlBox-less windows.
14075
14076 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
14077
14078         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
14079           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
14080           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
14081           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
14082           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
14083           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
14084           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
14085           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
14086           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
14087           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
14088           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
14089             Inital import.
14090         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
14091           ToolStripButton.cs: Stubs needed for above.
14092         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
14093
14094 2006-09-15  Chris Toshok  <toshok@ximian.com>
14095
14096         * XplatUIX11.cs:
14097         - make the MessageQueues hashtable Synchronized.
14098         
14099         - SendMessage: if the Hwnd is owned by a different thread, use the
14100         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
14101         thread.  Fixes bug #79201.
14102
14103 2006-09-15  Chris Toshok  <toshok@ximian.com>
14104
14105         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
14106         ControlBox == false, we disallow maximize/minimize/close.  If the
14107         form Caption is "" we also disallow move (and get rid of the Title
14108         decoration).  Unfortunately, regardless of how things are set,
14109         we're stuck with the Title and WM menu.
14110
14111 2006-09-15  Chris Toshok  <toshok@ximian.com>
14112
14113         * Application.cs: add locking around the static message_filters
14114         ArrayList, part of #79196.
14115
14116 2006-09-15  Chris Toshok  <toshok@ximian.com>
14117
14118         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
14119         Form.ControlBox == false, the window has no titlebar nor resize
14120         handles.  fixes bug #79368.
14121
14122 2006-09-15  Chris Toshok  <toshok@ximian.com>
14123
14124         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
14125         >= 0.  Fixes bug #79370.
14126
14127 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
14128         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
14129         * Control.cs:
14130             Add properties: LayoutEngine, Margin, DefaultMargin.
14131             Add method: GetPreferredSize.
14132             Move layout logic from PerformLayout to layout engines. 
14133
14134 2006-09-13  Chris Toshok  <toshok@ximian.com>
14135
14136         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
14137         fix for #79326 broke #78718, so this change addresses that.
14138
14139         - in SendWMDestroyMessages remove the call to
14140         CleanupCachedWindows, since we might be recreating the control and
14141         need to maintain the references to right Hwnd handles.  Also, set
14142         the zombie flag to true for each of the children in the hierarchy
14143         instead of calling hwnd.Dispose.  This will cause GetMessage to
14144         ignore all events for the window except for DestroyNotify.
14145
14146         - In GetMessage, ignore messages except for DestroyNotify for
14147         zombie hwnds.
14148         
14149         * Control.cs: revert the is_recreating fix from the last
14150         ChangeLog.  It's definitely "right", but it breaks switching from
14151         an MDI form to a non-MDI form.  Will need to revisit that.
14152
14153         * Hwnd.cs: add a zombie flag, which means "the
14154         client_window/whole_window handles are invalid, but we're waiting
14155         for the DestroyNotify event to come in for them".  Set the flag to
14156         false explicitly if setting WholeWindow/ClientWindow, and also
14157         when Disposing.
14158         
14159 2006-09-13  Chris Toshok  <toshok@ximian.com>
14160
14161         * XplatUIX11.cs: rework window destruction slightly.
14162
14163         - when destroying the windows associated with a control, we don't
14164         need 2 separate XDestroyWindow calls.  Just the one for the
14165         whole_window (or for client_window if whole_window is somehow
14166         IntPtr.Zero -- can this happen?) is enough.
14167
14168         - reworked SendWMDestroyMessages slightly, so we always dispose
14169         the child control hwnd's after sending the messages.
14170         
14171         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
14172         the two places it was used (one was even using hwnd.Handle and the
14173         other hwnd.client_window.  ugh), adding another call in
14174         SendWMDestroyMessages.  We need this new call because now the
14175         DestroyNotify events in the queue will be ignored for the child
14176         controls (as their hwnd's were disposed, and the window id's
14177         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
14178
14179         - this fixes bug #79326.
14180
14181 2006-09-13  Chris Toshok  <toshok@ximian.com>
14182
14183         * Control.cs: don't always set is_recreating to false at the end
14184         of RecreateHandle, since sometimes we're not done (and won't be
14185         until WndProc handles the WM_DESTROY message).  Also, set
14186         is_recreating to false in the WM_DESTROY handling code.  Part of
14187         the fix for bug #79326.
14188
14189 2006-09-13  Miguel de Icaza  <miguel@novell.com>
14190
14191         * X11DesktopColors.cs: Start the droppage of debugging messages.
14192
14193         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
14194
14195 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
14196
14197         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
14198
14199 2006-09-12  Chris Toshok  <toshok@ximian.com>
14200
14201         * DataGrid.cs (get_ListManager): if the list_manager is null, try
14202         to create it using SetDataSource.  Fixes bug #79151.
14203
14204 2006-09-11  Chris Toshok  <toshok@ximian.com>
14205
14206         * XEventQueue.cs: add a DispatchIdle property.
14207
14208         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
14209         either the queue is null, or the queue has DispatchIdle set to
14210         true.
14211         (DoEvents): set queue.DispatchIdle to false around the
14212         peek/translate/dispatch message loop in this method.  This keeps
14213         Application.Doevents from emitting idle events.  Part of the fix
14214         for #78823.
14215
14216 2006-09-11  Chris Toshok  <toshok@ximian.com>
14217
14218         * DataGrid.cs (set_DataSource): make this work for both the
14219         winforms/datagrid test and ReportBuilder.  It seems as though when
14220         we've created a ListManager (or maybe it's if we have a
14221         BindingContext?), when we set the DataSource it clears the
14222         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
14223         #79333.
14224
14225 2006-09-11  Chris Toshok  <toshok@ximian.com>
14226
14227         * XplatUIX11.cs: deal with queue being null, which happens in all
14228         the Clipboard functions.  Fixes one of the two problems mentioned
14229         in #78612.
14230
14231 2006-09-11  Chris Toshok  <toshok@ximian.com>
14232
14233         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
14234         button on various spots (including outside the menu) works closer
14235         to MS, and doesn't crash.  Fixes #79343.
14236
14237 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
14238
14239         * ListView.cs: Do not initialize item_sorter in init. To match MS,
14240         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
14241         and the internal comparer is set. When a new ListViewItemSorter is set,
14242         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
14243         was specified. No further processing is necessary if SortOrder is set
14244         to it's current value. If Sorting is modified to None, and View is
14245         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
14246         (either custom or our internal ItemComparer) to null, on 1.0 profile
14247         only set item_sorter to null if its our internal IComparer. If Sorting
14248         is modified to Ascending or Descending, then use our internal IComparer
14249         if none is set, and if the current IComparer is our internal one then:
14250         on 2.0 profile always replace it with one for new Sorting, and on 1.0
14251         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
14252         Enum.IsDefined to verify whether a valid View value is specified in
14253         its setter. Automatically sort listview items when listview is
14254         created. In Sort, do nothing if ListView is not yet created, or if
14255         no item_sorter is set (no Sorting was set, Sorting was explicitly set
14256         to None or ListViewItemSorter was set to null). Added Sort overload
14257         taking a bool to indicate whether the ListView should be redrawn when
14258         items are sorted (we use this in ListViewItemCollection to avoid double
14259         redraws). Modified our internal IComparer to take the sort order into
14260         account. In Add and AddRange methods of ListViewItemCollection, also
14261         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
14262         view), but use overload with noredraw option to avoid double redraw.
14263         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
14264         true when View is Tile, and do the same when attempting to set View to
14265         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
14266         for selected/checked indices, as it involves overhead when sorting is
14267         done while these collections are not used all that often. Instead
14268         we'll build the indices on demand. Modified IList implementation of
14269         CheckedIndexCollection to use public methods if object is int.
14270         Modified CheckedListViewItemCollection to hide checked items if
14271         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
14272         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
14273         IList implementation in SelectedIndexCollection to use public methods
14274         if object is int. Modified SelectedListViewItemCollection to hide
14275         selected items if listview is not yet created.
14276         * ListViewItem.cs: CheckedIndices list no longer needs to be
14277         maintained separately (see ListView changes). Also clone font, fixes
14278         test failure.
14279
14280 2006-09-11  Mike Kestner  <mkestner@novell.com>
14281
14282         * ComboBox.cs: if we are updating the contents of the currently
14283         selected index, refresh the control or the textbox selection.
14284         [Fixes #79066]
14285
14286 2006-09-11  Mike Kestner  <mkestner@novell.com>
14287
14288         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
14289         the 'specified' logic has been moved there.  This seems like a bug 
14290         in Control.cs, since our current SetBoundsCore completely ignores 
14291         the specified parameter.  Peter's commit seems to indicate that is 
14292         the way the MS control implementation works.  [Fixes #79325]
14293
14294 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
14295
14296         * XplatUI.cs: Set default_class_name to be composed
14297         of current domain id. This allows MWF to be loaded in multiple
14298         domains on Win32.
14299
14300 2006-09-09  Miguel de Icaza  <miguel@novell.com>
14301
14302         * X11Keyboard.cs: If we are unable to obtain the input method, do
14303         not call CreateXic to create the input context.   Should fix
14304         #78944/79276.
14305
14306 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
14307
14308         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
14309           Simplified gnome support by adding more pinvokes to get the
14310           icon for a file or mime type.
14311
14312 2006-09-08  Jackson Harper  <jackson@ximian.com>
14313
14314         * MenuAPI.cs: Deslect popup context menu items before closing the
14315         window, so that you don't see the previously selected item
14316         selected when you reopen the menu.
14317         * TextControl.cs: Update the cursor position even if we don't have
14318         focus.  This fixes typing in things like the ComboBox.  I'm not
14319         totally sure we should always set the visibility if we don't have
14320         focus, but couldn't find any corner cases where the cursor showed
14321         up when it shouldn't.
14322
14323 2006-09-08  Chris Toshok  <toshok@ximian.com>
14324
14325         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
14326         our arrays are length 256.  & 0xff before indexing.  Fixes the
14327         crash in bug #78077.
14328         
14329 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14330
14331         * ThemeWin32Classic.cs: 
14332         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
14333         is true. Handle that check box too.
14334
14335 2006-09-07  Chris Toshok  <toshok@ximian.com>
14336
14337         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
14338         79244.
14339
14340 2006-09-07  Chris Toshok  <toshok@ximian.com>
14341
14342         * Control.cs: in set_BackColor only do the work if
14343         background_color != value.
14344
14345         * XplatUIX11.cs: move the clearing of invalid areas (both client
14346         and nc) to the same block of code where we set (nc_)expose_pending
14347         to false.  That is, move it from PaintEventEnd to PaintEventStart,
14348         so things that cause invalidates from within OnPaint will trigger
14349         another call to OnPaint.  Fixes bug #79262.
14350
14351 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
14352
14353         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
14354         * FileDialog.cs: Fix typo
14355
14356 2006-09-07  Jackson Harper  <jackson@ximian.com>
14357
14358         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
14359         for tab pages if they have any.
14360
14361 2006-09-06  Mike Kestner  <mkestner@novell.com>
14362
14363         * Splitter.cs: use the "current" rect when finishing drag handle
14364         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
14365
14366 2006-09-06  Mike Kestner  <mkestner@novell.com>
14367
14368         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
14369         support offset splitters. [Fixes #79298]
14370
14371 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
14372
14373         * Mime.cs: Fixed a bug that could override the global mime type
14374           result.
14375
14376 2006-09-05  Jackson Harper  <jackson@ximian.com>
14377
14378         * TabControl.cs: Better calculation method for setting the slider
14379         pos. Prevents crashes on really wide tabs.
14380         - Draw Image on tab pages if an image list is used.
14381
14382 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14383
14384         * MonthCalendar.cs: When Font changes, the Size should be
14385         updated to fit the new font's space requirements.
14386
14387 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
14388
14389         * ListBox.cs: If the items are cleared with Items.Clear set
14390           top_index to 0.
14391
14392 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14393
14394         * MonthCalendar.cs: Handle arrow keys as input keys. Also
14395         fire DateChanged event instead of DateSelected event when
14396         the date was changed by keyboard interaction.
14397
14398 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14399
14400         * DateTimePicker.cs: Handle DateChanged for the associated
14401         month_calendar control, and set month_calendar.Font from 
14402         OnFontChanged method, as well as resize the height of the
14403         control when needed. Make PreferredHeight proportional.
14404
14405 2006-09-01  Chris Toshok  <toshok@ximian.com>
14406
14407         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
14408         properties.
14409
14410         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
14411
14412 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
14413
14414         * FileDialog.cs: Set ClientSize instead of window size, to allow space
14415           for decorations (Fixes #79219)
14416
14417 2006-09-01  Mike Kestner  <mkestner@novell.com>
14418
14419         * ComboBox.cs: first stab at sorting plus some selection handling
14420         fixes to bring us more in line with MS behavior.  Also switches back
14421         to index based selection.  Alternative patches for index-based 
14422         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
14423         and latency@gmx.de on bug 78848.  I assume they were similar to this
14424         code I've had simmering in my tree forever.
14425         [Fixes #78848]
14426
14427 2006-09-01  Chris Toshok  <toshok@ximian.com>
14428
14429         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
14430         when setting list position guard against ending up with a -1 index
14431         (the other part of the fix for #78812).  Should probably make sure
14432         we don't need the analogous fix in the ItemDeleted case.
14433
14434         * DataGrid.cs:
14435         - in SetDataSource, work around the fact that the way
14436         OnBindingContextChanged is invoked will cause us to re-enter this
14437         method.  I'll remove the hack once I investigate
14438         OnBindingContextChanged.
14439
14440         - fix the logic in set_DataSource and set_DataMember (basically
14441         what to do if the other of the two is null.)
14442         
14443         - in OnListManagerItemChanged, we need to take into account the
14444         edit row when deciding whether or not to call RecreateDataGridRows
14445         (part of the fix for #78812).
14446
14447 2006-09-01  Jackson Harper  <jackson@ximian.com>
14448
14449         * Splitter.cs: Don't do anything if there is no control to affect
14450         (prevents us from crashing in weird tet cases).
14451         * TreeView.cs: Bounding box for the mouse movement reverting
14452         focus/selection back to previously selected node.  This matches
14453         MS, and makes the tree a lot more useable.
14454         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
14455         use clipping so they are not drawn.  This fixes when the control
14456         is set to have a transparent background, or if it was over an
14457         image.
14458
14459 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
14460
14461         * MimeIcon.cs: Improved handling for reading default icons when
14462           using gnome (2.16 made it necessary). Check and read svg icons
14463           first, then 48x48 and then 32x32 icons.
14464
14465 2006-08-31  Chris Toshok  <toshok@ximian.com>
14466
14467         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
14468         visible.
14469
14470         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
14471         ProcessKeyPreview.  Fixes part of #77806.
14472
14473         * DataGrid.cs: big patch.
14474
14475         - revert the queueing up of DataSource/DataMember if inside
14476         BeginInit/EndInit calls.  That's not the way the datagrid achieves
14477         its delayed databinding.  Instead, call SetDataSource in
14478         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
14479         #78811.
14480
14481         - Also, it wasn't mentioned in #78811, but the test case exhibits
14482         behavior that was lacking in our datagrid implementation - Columns
14483         that have mapping names that don't exist in the datasource's
14484         properties aren't shown.  Yuck.  To fix this I added the bound
14485         field to the column style, and basically any calculation to figure
14486         out anything about columns uses a loop to find the bound columns.
14487         still need to investigate if I can cache an array of the bound
14488         columns or if the indices must be the same.
14489
14490         - When setting CurrentCell, we no longer abort if the cell being
14491         edited was in the add row.  This fixes the other part of #77806.
14492
14493         - The new code also fixes #78807.
14494         
14495         * ThemeWin32Classic.cs: perpetrate the same disgusting
14496         column.bound field hack, and only render bound fields.
14497
14498 2006-08-31  Chris Toshok  <toshok@ximian.com>
14499
14500         * DataGridColumnStyle.cs: add bound field.  this field is true if
14501         the datasource has a property corresponding to the mapping name.
14502
14503         * DataGridTableStyle.cs: set the bound field on the column styles
14504         depending on whether or not we have a column for that property.
14505
14506 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
14507
14508         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
14509           splitter control (fixes #79228)
14510
14511 2006-08-31  Chris Toshok  <toshok@ximian.com>
14512
14513         * DataGridColumnStyle.cs: we need to delay the assignment of
14514         property descriptor until the last possible moment due to the lazy
14515         databinding stuff in the datagrid.  Also, fix the exceptions
14516         thrown by CheckValidDataSource to match MS.
14517
14518 2006-08-31  Jackson Harper  <jackson@ximian.com>
14519
14520         * Form.cs: When activated select the active control, if there is
14521         no active control, we select the first control.
14522         * XplatUIX11.cs: If there is no focus control when we get a
14523         FocusIn event, find the toplevel form and activate it.  This
14524         occurs when you popup a window, it becomes the focus window, then
14525         you close that window, giving focus back to the main window.
14526
14527 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14528
14529         * MonthCalendar.cs: 
14530         * ThemeWin32Classic.cs: Cache Font in bold style, as well
14531         as StringFormat with Center alignments in MonthCalendar,
14532         instead of creating new ones when drawing the control. 
14533         Also, draw the month name in bold style.
14534
14535 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14536
14537         * Control.cs:
14538           - PerformLayout(): It would seem MS performs the fill even if the 
14539             control is not visible (part of #79218 fix)
14540           - ResetBackColor(): Use the setter to reset the color, to allow
14541             overriders to catch the change.
14542         * Form.cs:
14543           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
14544           - CreateHandle(): dito (part of $79218 fix)
14545           - Don't set an icon if we have a dialog
14546         * ScrollableControl.cs:
14547           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
14548           - ScrollIntoView(): No need to scroll if control is already visible
14549             (resolves fixme and fixes #79218)
14550
14551 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14552
14553         * MonthCalendar.cs: Change proportions in SingleMonthSize
14554         to match the aspect of the original control.
14555
14556 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
14557
14558         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
14559           get updated when they get maximized.
14560
14561 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14562
14563         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
14564
14565 2006-08-29  Chris Toshok  <toshok@ximian.com>
14566
14567         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
14568
14569 2006-08-29  Jackson Harper  <jackson@ximian.com>
14570
14571         * TreeView.cs: Need to track selected node and highlighted node,
14572         they aren't always the same thing, when the mouse is down on a
14573         node it is hilighted, but not selected yet.
14574         - Do the HideSelection stuff right
14575         - Need to focus on rbutton mouse down. And redraw selection when
14576         right click is mouse upped.
14577
14578 2006-08-29  Mike Kestner  <mkestner@novell.com>
14579
14580         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
14581         when SubItems.Count < Columns.Count.  [Fixes #79167]
14582
14583 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
14584
14585         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
14586
14587 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
14588
14589         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
14590           from X. Only send based on ConfigureNotify if we don't have the
14591           correct location in hwnd (if the window manager moved us)
14592
14593 2006-08-28  Mike Kestner  <mkestner@novell.com>
14594
14595         * ListView.cs: remove a TODO. 
14596         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
14597         [Fixes ListView part of #79166]
14598
14599 2006-08-28  Mike Kestner  <mkestner@novell.com>
14600
14601         * ListView.cs: move wheel handler to parent since it is focused
14602         instead of the item_control now.  [Fixes #79177]
14603
14604 2006-08-28  Mike Kestner  <mkestner@novell.com>
14605
14606         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
14607         when the control is focused. [Fixes #79171]
14608
14609 2006-08-28  Mike Kestner  <mkestner@novell.com>
14610
14611         * ListView.cs: size the item and header controls for empty and
14612         unscrollable views.
14613         * ThemeWin32Classic.cs: draw disabled backgrounds.
14614         [Fixes #79187]
14615
14616 2006-08-28  Chris Toshok  <toshok@ximian.com>
14617
14618         * Form.cs: remove unused "active_form" static field.
14619
14620         * Hwnd.cs: lock around accesses to static windows collection.
14621
14622         * Application.cs: lock threads in Exit ().
14623
14624 2006-08-28  Chris Toshok  <toshok@ximian.com>
14625
14626         * NativeWindow.cs: lock around accesses to window_collection.
14627         
14628 2006-08-28  Chris Toshok  <toshok@ximian.com>
14629
14630         * Control.cs: err, fix this the right way, by locking on controls
14631         when using it.  not by making it synchronized.
14632
14633 2006-08-28  Chris Toshok  <toshok@ximian.com>
14634
14635         * Control.cs: make the static "controls" field synchronized, as it
14636         gets updated from multiple threads.
14637
14638 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14639
14640         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
14641           Prevent other threads from exiting when calling thread sets quit state.
14642         * XEventQueue.cs: Added PostQuitState property
14643
14644 2006-08-27  Chris Toshok  <toshok@ximian.com>
14645
14646         * AsyncMethodData.cs: add a slot for the window handle.
14647
14648         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
14649         window (the destination control's window, not the foster window).
14650
14651         * Control.cs (BeginInvokeInternal): store the window's handle in
14652         the AsyncMethodData.
14653         
14654
14655 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14656
14657         * XplatUIX11.cs:
14658           - PostQuitMessage: Removed resetting S.D display handle, we might have
14659             another loop started after calling PostQuitMessage (Fixes #79119)
14660           - Created destructor to reset S.D handle
14661
14662 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
14663
14664         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
14665
14666 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14667
14668         * TextControl.cs (Insert): Update the caret position even if we don't
14669           have a handle yet, just don't call the driver in that case.
14670         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
14671           to the end of the new selection text (Fixes #79184)
14672
14673 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14674
14675         * Form.cs (Activate): Only activate if the handle is created)
14676         * Control.c:
14677           - Mark window as invisible when it's disposed
14678           - Check if window handle is created when setting window visible, 
14679             instead of relying just on the is_created variable
14680           - Check if object is disposed when creating the control (Fixes #79155)
14681
14682 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14683
14684         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
14685           when allowing layout again. Otherwise we re-generate the anchoring 
14686           distance to the border again and actually alter what the user wanted
14687           This is ugly, it'd be better if we used DisplayRectangle instead of
14688           ClientRectangle for Control.UpdateDistances, but that causes us to
14689           have other problems (initial anchoring positons would be wrong)
14690           (Fixes #78835)
14691
14692 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14693
14694         * Control.cs:
14695           - The size and location setters shouldn't go directly to 
14696             SetBoundsCore, but to SetBounds, which triggers layout on the
14697             parent, then calls SetBoundsCore. (Related to fix for #78835)
14698           - SetBounds: Moved actual location update code into this function
14699             from SetBoundsCore, to match MS. Added call to PerformLayout if
14700             we have a parent (to trigger resizing of anchored parents if the 
14701             child size has changed (see testcase for #78835) 
14702         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
14703           new control code
14704         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
14705
14706 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14707
14708         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
14709           System.Drawing when a toplevel window gets closed; there might
14710           be other toplevel windows belonging to the same app (Fixes #78052)
14711
14712 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
14713
14714         * FileDialog.cs: After reading FileDialog settings from mwf_config
14715           use Desktop prefix only if a real folder doesn't exist anymore.
14716         * FontDialog.cs: Added char sets.
14717           It is now possible to select the font, size or style with the
14718           textboxes.
14719
14720 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
14721
14722         * PrintPreviewDialog.cs: Use assembly name constants.
14723
14724 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14725
14726         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
14727           scrollbar from whacking it's buttons)
14728
14729 2006-08-24  Chris Toshok  <toshok@ximian.com>
14730
14731         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
14732         in this patch (aggregating setting Left/Top/Width/Height to
14733         setting Bounds on the scrollbars), but the crux of the fix is in
14734         Recalculate, where we scroll by the remaining scroll_position if
14735         we're hiding a scrollbar.  The 2*$5 reward in the comment is
14736         serious.
14737
14738 2006-08-24  Jackson Harper  <jackson@ximian.com>
14739
14740         * MdiClient.cs:
14741         * MdiWindowManager.cs: If the form is made a non-mdi window we
14742         need to remove the form closed event so that closing forms works
14743         correctly.
14744
14745 2006-08-24  Jackson Harper  <jackson@ximian.com>
14746
14747         * Control.cs: Make IsRecreating internal so that the driver can
14748         check it
14749         - Temporarily remove the Hide when controls are removed, its
14750         making a whole bunch of things not work because visibility isn't
14751         getting reset elsewhere correctly
14752         * Form.cs: Need to do a full handle recreation when the mdi parent
14753         is set.
14754         * XplatUIX11.cs: If we are recreating handles don't dispose the
14755         HWNDs.  What was happening is the handles were being recreated in
14756         SendWMDestroyMessages, but then flow continued on in that method
14757         and destroyed the new handles.
14758
14759 2006-08-23  Jackson Harper  <jackson@ximian.com>
14760
14761         * Form.cs: MdiClient is always at the back of the bus
14762         * Control.cs: When the order of items in the collection is changed
14763         we need to reset the all_controls array
14764         - do the same sorta setup thats done when adding a control when a
14765         control is set on the collection.
14766
14767 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14768
14769         * TextBoxBase.cs (get_Text): Return an empty array if our document
14770           is empty (fixes #79052)
14771
14772 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14773
14774         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
14775           on WM_SYSCHAR messages (fixes #79053)
14776
14777 2006-08-23  Chris Toshok  <toshok@ximian.com>
14778
14779         * DataGrid.cs: fix flickering when scrolling vertically.
14780
14781 2006-08-23  Chris Toshok  <toshok@ximian.com>
14782
14783         * DataGrid.cs (EndEdit): only invalidate the row header when we
14784         need to.
14785
14786 2006-08-23  Chris Toshok  <toshok@ximian.com>
14787
14788         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
14789         methods.  fixes the flicker when scrolling around.
14790
14791 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14792
14793         * FileDialog.cs: Making sure the control is created before we get a 
14794           chance to use it with BeginInvoke (Fixes #79096)
14795
14796 2006-08-23  Chris Toshok  <toshok@ximian.com>
14797
14798         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
14799         width to use when painting the rows.
14800
14801 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14802
14803         * TextBoxBase.cs:
14804           - Throw ArgumentException if a negative value is passed to SelectionLength
14805           - Update the selection end if start is moved. end needs to be always
14806             after start. (Fixes #79095)
14807           - Track selection length; MS keeps the selection length even if start
14808             is changed; reset on all other operations affection selection
14809
14810 2006-08-22  Jackson Harper  <jackson@ximian.com>
14811
14812         * TreeView.cs: Make sure both scrollbars get displayed and sized
14813         correctly when the other bar is visible.
14814         - Use the original clip rectangle for checking if the area between
14815         the two scrollbars is visible, not the viewport adjusted clipping
14816         rectangle.
14817
14818 2006-08-22  Jackson Harper  <jackson@ximian.com>
14819
14820         * Binding.cs: We don't use IsBinding because it requires the
14821         control to be created, which really shouldn't be necessary just to
14822         set a property on the control.
14823
14824 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14825
14826         * ComboBox.cs: Some CB.ObjectCollection methods must throw
14827         ArgumentNullReferenceException when the argument is null.
14828
14829 2006-08-21  Jackson Harper  <jackson@ximian.com>
14830
14831         * Timer.cs: Track the thread that the timer is started in (NOT
14832         CREATED), this way messages for it will only be triggered on its
14833         queue.
14834         * XEventQueue.cs: Track the timers here, this makes timers per
14835         thread, like MS.
14836         * XplatUIX11.cs: The timers are moved to the XEventQueue.
14837
14838 2006-08-19  Chris Toshok  <toshok@ximian.com>
14839
14840         * XplatUIX11.cs: after further communication with pdb, we get the
14841         best of both worlds.  SetZOrder working for un-Mapped windows, and
14842         no X errors for un-mapped windows.
14843
14844 2006-08-19  Chris Toshok  <toshok@ximian.com>
14845
14846         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
14847         as it was causing pdn toolbars to not have the correct stacking.
14848
14849 2006-08-18  Mike Kestner  <mkestner@novell.com> 
14850
14851         * ListView.cs : guard against negative ClientArea.Width in scrollbar
14852         calculation.  Not sure why control should ever be setting a negative
14853         width though.  Fixes #78931.
14854
14855 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14856
14857         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
14858         null items in ObjectCollection class.
14859         * ListBox.cs.: Likewise.
14860
14861 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
14862
14863         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
14864           as the base method in ThemeWin32Classic should work fine.
14865           Fixed bug #78607.
14866
14867 2006-08-18  Jackson Harper  <jackson@ximian.com>
14868
14869         * Binding.cs: When validating if the value entered doesn't convert
14870         properly reset to the old value.
14871         * RadioButton.cs: Don't fire click when we get focus.
14872
14873 2006-08-18  Jackson Harper  <jackson@ximian.com>
14874
14875         * FileDialog.cs: Paint the selection on the directory combobox the
14876         same way as on MS. 
14877
14878 2006-08-17  Jackson Harper  <jackson@ximian.com>
14879
14880         * ErrorProvider.cs: Don't allow the error control to be selected.
14881         * Control.cs: Don't send the SetFocus messages, the control
14882         activation will do this, and if we do it blindly here validation
14883         does not work.
14884
14885 2006-08-17  Jackson Harper  <jackson@ximian.com>
14886
14887         * Control.cs:
14888         * ContainerControl.cs: Make validation events fire in the correct
14889         order.  TODO: For some reason the first validation event is not
14890         getting fired.
14891
14892 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14893
14894         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
14895
14896 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14897
14898         * ComboBox.cs : implement scroll wheel support for popped-down
14899         state. Fixes #78945. 
14900
14901 2006-08-17  Jackson Harper  <jackson@ximian.com>
14902
14903         * TreeView.cs: Specify treeview actions (old patch that didn't get
14904         committed for some reason).
14905         - Don't let the mouse wheel scroll us too far.  Just want to make
14906         the bottom node visible, not scroll it all the ways to the top.
14907
14908 2006-08-17  Jackson Harper  <jackson@ximian.com>
14909
14910         * XplatUIX11.cs: Mouse wheel events go to the focused window.
14911
14912 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14913
14914         * ComboBox.cs : don't do mouseover selection in simple mode.
14915
14916 2006-08-16  Jackson Harper  <jackson@ximian.com>
14917
14918         * Form.cs: Fire the closing events for all the mdi child windows
14919         when a window is closed.  If the cancel args are set to true, the
14920         main window still gets the event fired, but it doesn't not close.
14921         * MdiWindowManager.cs: Do this closing cleanup in a Closed
14922         handler, instead of when the button is clicked, so cancelling the
14923         close works correctly.
14924         * ComboBox.cs: Send the mouse down to the scrollbar.
14925
14926 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14927
14928         * ListBox.cs: When passing 'null' to SelectedItem,
14929         set SelectedIndex to -1, to unselect items. This is the
14930         observed behaviour in .Net.
14931
14932 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
14933
14934         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
14935           MS flags saying there won't be any. (fixes #78800)
14936         * Control.cs (HandleClick): Made virtual
14937
14938 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
14939
14940         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
14941           cultures. Fixed bug #78399.
14942
14943 2006-08-16  Jackson Harper  <jackson@ximian.com>
14944
14945         * Form.cs: Use the MdiClients MdiChildren property to access
14946         MdiChildren instead of creating the array from the child controls.
14947         * MdiClient.cs: Maintain a separate array of the mdi children, so
14948         that insertion order is maintained when the Z-order is changed.
14949
14950 2006-08-16  Mike Kestner  <mkestner@novell.com> 
14951
14952         * ListView.cs : add an ItemComparer and default to it for sorting.
14953         Fixes #79076, but sorting needs a complete overhaul to be compat with
14954         MS.
14955
14956 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
14957
14958         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
14959
14960 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14961
14962         * Hwnd.cs (Mapped): Properly traverse the tree
14963
14964 2006-08-15  Chris Toshok  <toshok@ximian.com>
14965
14966         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
14967         pass manager.Current.GetType() to ParseData.  It has to be the
14968         property type.  So, hold off doing the ParseData until we're in
14969         SetPropertyValue where we know the type.  This fixes the crash in
14970         #78821 but the textbox is still empty.
14971
14972 2006-08-15  Chris Toshok  <toshok@ximian.com>
14973
14974         * DataGrid.cs:
14975         - when we're scrolling, only call Edit() again if the
14976         current cell is still unobscured. Fixes bug #78927.
14977         - when handling mousedown on a cell, ensure the cell is visible
14978         before calling Edit.
14979         - remove the properties from DataGridRow, and remove the
14980         DataGridParentRow class altogether.
14981         
14982
14983 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14984
14985         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
14986           fire OnTextChanged by ourselves. There's no point calling base,
14987           we don't set the base value anywhere else. Fixes #78773.
14988
14989 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14990
14991         * ListBox.cs: Call CollectionChanged when modifying
14992         an item from Items indexer, to update the actual items
14993         in the list box.
14994
14995 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14996
14997         * PrintDialog.cs: Small fixes for focus and a pair of checks,
14998         to match .Net behaviour.
14999
15000 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15001
15002         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
15003
15004 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
15005
15006         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
15007
15008 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15009
15010         * MessageBox.cs: Prevent potential NRE exception.
15011         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
15012
15013 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
15014
15015         * MessageBox.cs: Calculate the owner of a messagebox, also make
15016           it topmost. Fixes #78753
15017
15018 2006-08-14  Chris Toshok  <toshok@ximian.com>
15019
15020         * XplatUIX11.cs: A couple of fixes so that metacity will let us
15021         programmatically move windows.  first, set the PPosition hint as
15022         well as the USPosition hint.  Second include some code from pdb
15023         that sets the window type to NORMAL when we set the transient for
15024         hint.  This is because, in the absence of a window type, metacity
15025         thinks any window with TransientFor set is a dialog, and refuses
15026         to let us move it programmatically.  fascists.
15027
15028 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
15029
15030         * XplatUIX11.cs: When setting normal hints, take into consideration
15031           an different hints previously set so we don't delete them (fixes #78866)
15032
15033 2006-08-12  Chris Toshok  <toshok@ximian.com>
15034
15035         * ToolBarButton.cs: make Layout return a boolean, if something to
15036         do with the button's layout changed.
15037
15038         * ToolBar.cs:
15039         - add another parameter to Redraw, @force, which all existing
15040           calls set to true.
15041         - make the Layout function return a boolean which is true if the
15042           layout has actually changed.  Redraw now uses this (and @force)
15043           to determine when to invalidate.  At present the only place
15044           where @force can be false is the call from OnResize, when
15045           background_image == null.  So, resizing a toolbar when the
15046           layout doesn't change results in no drawing.
15047
15048 2006-08-12  Chris Toshok  <toshok@ximian.com>
15049
15050         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
15051         the VScrollBar and HScrollbar reversed.  oops.
15052
15053         * DataGrid.cs: fix the logic that assigns sizes to the implicit
15054         scrollbars.  we were assigning them twice (once in
15055         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
15056         therefore causing two scrollbar resizes (and redraws?) to happen
15057         per grid resize.
15058
15059 2006-08-12  Chris Toshok  <toshok@ximian.com>
15060
15061         * ToolBarButton.cs: redraw the entire button if the theme tells us
15062         to.
15063
15064         * Theme.cs: add ToolBarInvalidateEntireButton.
15065
15066         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
15067         buttons, just the border.
15068
15069         * ThemeNice.cs: redraw the entire toolbar button since we need to
15070         draw the highlight image.
15071
15072         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
15073         we need to redraw the entire button (not just the border).
15074
15075 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
15076
15077         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
15078           for vertical bars. Fixes the mismatches shown by #78513
15079
15080 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
15081
15082         * FileDialog.cs: If a saved/remembered path doesn't exist
15083           anymore, fall back to "Desktop".
15084
15085 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
15086
15087         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
15088           parent. It's apparently legal to not have one
15089         * XplatUIX11.cs:
15090           - SetZOrder: Don't try to set Z-Order on an unmapped window
15091           - CreateWindow: 0,0 are legal coordinates for a window. don't move
15092             it unless the coordinates are negative
15093
15094 2006-08-10  Mike Kestner  <mkestner@novell.com>
15095
15096         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
15097         when setting to null per msdn docs.  Fixes #78854.
15098
15099 2006-08-10  Chris Toshok  <toshok@ximian.com>
15100
15101         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
15102         flickering by setting a clip rectangle on the Graphics when we
15103         need to redraw just a particular menuitem.  Also, rename "OnClick"
15104         to "OnMouseDown" to reflect what it actually is.
15105         
15106         * Form.cs: track the OnMouseDown change.
15107
15108 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
15109
15110         * CommonDialog.cs: Properly inherit the CreateParams from the form
15111           and only change what we need. Fixes #78865
15112
15113 2006-08-10  Chris Toshok  <toshok@ximian.com>
15114
15115         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
15116         flickering in flat mode (and most of the flickering in general) by
15117         only invalidating the button border (and not the entire rectangle)
15118         when the state changes.  A couple of cases still flicker:
15119         ToggleButtons, and the dropdown arrow case when the user mouse
15120         ups.
15121
15122 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
15123
15124         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
15125           for german keyboards. Numlock state shouldn't affect the behaviour
15126           of the Del key. Fixes bug #78291.
15127
15128 2006-08-10  Chris Toshok  <toshok@ximian.com>
15129
15130         * ListControl.cs: remove the items.Clear line from BindDataItems,
15131         as this is the first thing done by both subclasses in their
15132         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
15133         passed -1, refresh the list.  This gets databinding working when
15134         the datasource is set on the list before the datasource is
15135         populated (as in wf-apps/ReportBuilder.)
15136
15137         * ComboBox.cs: remove the argument to BindDataItems.  This call
15138         should really go away, and be initiated by the ListControl code.
15139
15140         * ListBox.cs: same.
15141
15142 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
15143
15144         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
15145           if no data is in the document when the control is displayed
15146
15147 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
15148
15149         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
15150           yes (fixes #78806)
15151         * TextControl.cs: 
15152           - PositionCaret: Allow positioning of caret but don't call methods 
15153             requiring a handle if the window isn't created yet
15154           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
15155           - owner_HandleCreated: Don't position the caret, just update it's 
15156             location. User might have already set a different position
15157
15158 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
15159
15160         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
15161           windows. Screws up the returned coordinates for child windows. 
15162           Fixes #78825. I'm hoping this doesn't break something, since the
15163           code was explicitly put in 8 months ago, but no bug was attached.
15164           Menus still seem to work properly.
15165
15166 2006-08-08  Chris Toshok  <toshok@ximian.com>
15167
15168         * DataGrid.cs: make BeginInit/EndInit actually do what they're
15169         supposed to do - delay data binding until the EndInit call.  Also,
15170         make the table style collection's CollectionChangeAction.Refresh
15171         work properly.
15172
15173         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
15174         (with action = Refresh) when a consituent table's MappingName is
15175         changed.
15176
15177 2006-08-08  Chris Toshok  <toshok@ximian.com>
15178
15179         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
15180         Invalidate, since changing the text can change the size of the all
15181         toolbar buttons.
15182
15183 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
15184
15185         * Form.cs (AddOwnedForm): Still need to add the form to our listif
15186           we don't have it yet
15187
15188 2006-08-08  Chris Toshok  <toshok@ximian.com>
15189
15190         * PrintControllerWithStatusDialog.cs: don't .Close() the status
15191         dialog, as this causes X errors later on, since we actually
15192         destroy the window.  Instead, .Hide() it.
15193
15194 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
15195
15196         * ComboBox.cs: Added focus reflection for popup window
15197         * XplatUIX11.cs: 
15198           - Removed transient setting for non-app windows for now, not sure it
15199             was needed
15200           - Fixed logic checking if we have captions when deciding 
15201             override_redirect, WS_CAPTION is two bits and a 0 check was not
15202             sufficient
15203           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
15204             complicated
15205         * Form.cs: 
15206           - AddOwnedForm: Don't just add the form to the list, call the property
15207             to ensure the driver is informed about the ownership as well
15208           - CreateHandle: Set the TopMost status in the driver if we have an owner
15209         * XplatUI.cs: Fixed debug statement
15210
15211 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
15212         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
15213           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
15214           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
15215           TrackBarRenderer.cs: Make constructor private.
15216         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
15217         * ProfessionalColorTable.cs: Make properties virtual.
15218
15219 2006-08-06  Duncan Mak  <duncan@novell.com>
15220
15221         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
15222         is not changing.
15223
15224 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15225         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
15226           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
15227           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
15228           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
15229           Initial import of new 2.0 classes.
15230
15231 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15232         * Application.cs: Add 2.0 VisualStyles properties.
15233
15234 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15235         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15236           XplatUIX11.cs: Create property to allow access to existing private
15237           variable "themes_enabled"
15238
15239 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15240
15241         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
15242         file size, as otherwise our class libraries fail using windows. Fixes
15243         bug #78759.
15244
15245 2006-08-04  Jackson Harper  <jackson@ximian.com>
15246
15247         * Form.cs:
15248         * XplatUIX11.cs: Move the toolwindow window manager creation into
15249         the X11 driver, this way on win32 we can let windows create/handle
15250         the toolwindows.
15251
15252 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15253
15254         * PrintDialog.cs: Remove some redundant checks, add some others,
15255         clean some code, and move the focus to the text boxes when the
15256         values are incorrect.
15257
15258 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
15259
15260         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
15261
15262 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
15263
15264         * NumericUpDown.cs: Setting the Minimum and Maximum is now
15265           handled correctly. Fixes bug #79001.
15266
15267 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15268
15269         * PrintDialog.cs: The "Copies" numeric up down must have
15270         set the Minimum property to 1; only if the value is bigger
15271         than 1, activate "Collate" check box. This is the behaviour of .Net.
15272         Also modify the Document elements only if it is not null.
15273
15274 2006-08-03  Jackson Harper  <jackson@ximian.com>
15275
15276         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
15277         length. (We have a larger array then actual node count).
15278                 
15279 2006-08-03  Jackson Harper  <jackson@ximian.com>
15280
15281         * ComboBox.cs: Don't show selection by default.
15282         - The SelectAll isn't needed here, since the focus code should do
15283         that
15284         - DDL style lists to manual selection drawing, so when they
15285         get/lose focus they have to invalidate.
15286
15287 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
15288
15289         * TextBoxBase.cs: Don't always show all selections by default.
15290
15291 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
15292         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
15293           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
15294           Fixed various typos.
15295
15296 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
15297
15298         * Control.cs: Removing the controls in a ControlCollection with
15299           Clear now hides the controls as expected. Fixes bug #78804. 
15300
15301 2006-08-03  Jackson Harper  <jackson@ximian.com>
15302
15303         * Control.cs: Revert previous focus patch, it breaks reflector.
15304
15305 2006-08-03  Jackson Harper  <jackson@ximian.com>
15306
15307         * ComboBox.cs: Cleanup selection and focus with the combobox.
15308         This also eliminates some duplicated keyboard code, since now
15309         everything is handled by the main class.
15310         - Make list selection work on mouse up instead of down, to match
15311         MS.
15312
15313 2006-08-02  Jackson Harper  <jackson@ximian.com>
15314
15315         * Control.cs: Setting focus needs to go through the whole
15316         selection mechanism.
15317
15318 2006-08-02  Chris Toshok  <toshok@ximian.com>
15319
15320         * PrintPreviewDialog.cs: change MinimumSize to use
15321         base.MinimumSize so it works.
15322
15323 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
15324
15325         * TextControl.cs:
15326           - UpdateCaret: Added sanity check in case caret isn't defined yet
15327           - Line.Delete: Now updating selection and caret markers if we're
15328             transfering a node (Properly fixes #78323)
15329           - SetSelectionEnd: Added sanity check
15330         * TextBoxBase.cs: Removed broken attempt to fix #78323
15331
15332 2006-08-01  Chris Toshok  <toshok@ximian.com>
15333
15334         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
15335         Close() call is handled in Form, not here.
15336
15337 2006-08-01  Chris Toshok  <toshok@ximian.com>
15338
15339         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
15340         layout/rendering.
15341
15342         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
15343         for sizes < 100% zoom.  The code now aggressively attempts to keep
15344         from calling document.Print (), and tries not to use the scaling
15345         g.DrawImage whenever possible (it still does if you scale to >
15346         100%, since usually that involves huge images).
15347
15348         * PrintPreviewControl.cs: hook up the close button.
15349
15350 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
15351         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
15352           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
15353           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
15354           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
15355           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
15356           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
15357           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
15358           Removed [Serializable] for 2.0 Event Handlers.
15359
15360 2006-07-31  Jackson Harper  <jackson@ximian.com>
15361
15362         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
15363         * TextControl.cs: Uncomment out the body of this method.
15364
15365 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
15366
15367         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
15368           standard cursors.
15369
15370 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15371
15372         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
15373           that embed TextBox and need selections visible even if textbox is not
15374           focused to enforce that behaviour.
15375         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
15376           selection drawing
15377
15378 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15379
15380         * TextControl.cs:
15381           - Added new SetSelectionStart/SetSelectionEnd overloads
15382           - Fixed viewport width assignment to be accurate
15383           - Adjusted alignment line shift calculations to allow cursor on right
15384             aligned lines to be always visible at the right border (like MS)
15385         * TextBoxBase.cs:
15386           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
15387           - TextBoxBase_SizeChanged: recalculating canvas on size changes
15388           - CalculateScrollBars: Use ViewPort size instead of window size, to
15389             properly consider space occupied by the border and scrollbars 
15390             (Fixes #78661)
15391           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
15392             calculations; no longer leaves artifacts
15393           - CaretMoved: Adjusted window scrolling to match MS and fixed several
15394             calculation bugs (Still missing right/center align calculations)
15395
15396 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
15397
15398         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
15399           use of both scroll rect and clip rect, as they do the same.
15400
15401 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15402
15403         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
15404           in the event handler (fixes #78912)
15405
15406 2006-07-31  Chris Toshok  <toshok@ximian.com>
15407
15408         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
15409         grid.ListManager.Count, since grid.ListManager might be null.
15410         This of course begs the question "why are we drawing rows for a
15411         grid with no list manager (and therefor no rows)?"  Fixes the
15412         crash in bug #78929.
15413
15414 2006-07-31  Chris Toshok  <toshok@ximian.com>
15415
15416         * RelatedPropertyManager.cs: Don't always chain up to the parent
15417         ctor.  instead, call SetDataSource if the parent's position is !=
15418         -1.  Fixes the crash in #78822.
15419
15420 2006-07-31  Chris Toshok  <toshok@ximian.com>
15421
15422         * DataGrid.cs (get_ListManager): use field instead of property
15423         accessors for datasource and datamember.
15424         (RowsCount): make internal again.
15425         (OnMouseDown): end edits before resizing columns/rows.
15426         (OnMouseUp): restart edits after resizing columns/rows.
15427
15428 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
15429
15430         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
15431           This fixes the situation where the last set cursor is displayed
15432           whenever the mouse is over scrollbars.
15433
15434 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15435
15436         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
15437         Document properties, as well as initial values.
15438
15439 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
15440
15441         * XplatUIWin32.cs (SetBorderStyle): Setting both border
15442           and ClientEdge results in a 3-pixel border, which is
15443           wrong.
15444
15445 2006-07-28  Jackson Harper  <jackson@ximian.com>
15446
15447         * TreeNodeCollection.cs: Fix the clear method.
15448         - Fix the Shrink also
15449
15450 2006-07-27  Jackson Harper  <jackson@ximian.com>
15451
15452         * TreeView.cs: Make sure the visible order is computed when we
15453         attempt to size the scrollbars (for trees that mess with the
15454         scrolling when they shouldn't.
15455         - Make sure to give the scrollbars valid values.
15456
15457 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15458
15459         * XplatUIX11.cs: Move motion compression code to where it
15460           has less performance impact
15461
15462 2006-07-26  Jackson Harper  <jackson@ximian.com>
15463
15464         * UpDownBase.cs: When the control is selected make the child
15465         controls non selectable, so that a click on them won't do a
15466         focus/unfocus cycle.
15467         - Don't give focus to the text box when the spinner is selected.
15468         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
15469
15470 2006-07-26  Chris Toshok  <toshok@ximian.com>
15471
15472         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
15473         satisfied with this solution.  If the bitmaps are small, we should
15474         just cache them in the PrintPreviewDialog and draw them here.
15475         Also, the layout is broken for the 2-up and 3-up cases.
15476
15477         * Theme.cs: add PrintPReviewControlPaint.
15478
15479         * PrintPreviewDialog.cs: first pass implementation.
15480
15481         * PrintPreviewControl.cs: first pass implementation.  No
15482         scrollbars yet.
15483
15484         * PrintDialog.cs: only validate fields if that particular portion
15485         of the UI is enabled.  Also, set the document's controller to a
15486         PrintControllerWithStatusDialog wrapping the document's print
15487         controller.
15488
15489         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
15490         bring up a SaveFileDialog (i hope we don't want to match the
15491         behavior of the crappy windows file entry) and set the
15492         PrinterSettings.PrintFileName accordingly.
15493
15494 2006-07-26  Jackson Harper  <jackson@ximian.com>
15495
15496         * ContainerControl.cs: Add a field that disables auto selecting
15497         the next control in a container when the container is activated.
15498         * UpDownBase.cs: Don't select the text box when the up down is
15499         selected.
15500
15501 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15502
15503         * XEventQueue.cs: Added methods for peeking (used for compression
15504           of successive events)
15505         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
15506           mouse move events (fixes #78732)
15507
15508 2006-07-25  Jackson Harper  <jackson@ximian.com>
15509
15510         * UpDownBase.cs: Use an internal class for the textbox so that we
15511         can control focus.  the updown control should always have focus,
15512         if either the text area or the buttons are clicked.
15513         - Send the key messages to the textbox, since it never actually
15514         has focus
15515         - Activate and decativate the textbox caret.
15516
15517 2006-07-24  Jackson Harper  <jackson@ximian.com>
15518
15519         * Control.cs: Use the directed select when selecting a control,
15520         this way the container controls override will get called and the
15521         whole ActiveControl chain will get triggered.  TODO: probably need
15522         to make sure this gets done everywhere instead of the old
15523         Select(Control).
15524         * ContainerControl.cs: Implement the directed Select method to
15525         find and activate the correct child control.    
15526         
15527 2006-07-22  Mike Kestner  <mkestner@novell.com>
15528
15529         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
15530         menu handling code so that clicks without a grab work too.
15531         [Fixes #78914]
15532
15533 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
15534
15535         * FileDialog.cs: Enable the BackButton when dirstack has one element.
15536           Added some small optimizations.
15537
15538 2006-07-21  Matt Hargett  <matt@use.net>
15539
15540         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
15541
15542 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
15543
15544         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
15545           tests pass and match MS in some strange border cases.
15546
15547 2006-07-21  Chris Toshok  <toshok@ximian.com>
15548
15549         * ThemeWin32Classic.cs: handle drawing of the relation links and
15550         parent row buttons.
15551
15552         * Theme.cs: change args to DataGridPaintParentRow.
15553
15554         * DataGrid.cs: Don't use controls for the relation links and
15555         parent buttons, so we have to handle all their interactions in
15556         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
15557         when we're navigating through child tables, so we can reinstate
15558         selection, expanded state, current cell, etc.
15559
15560 2006-07-20  Chris Toshok  <toshok@ximian.com>
15561
15562         * ToolBar.cs: When we redraw a button, for whatever reason,
15563         there's no reason to redraw the entire toolbar.  Also, don't call
15564         Control.Refresh from within Redraw, as it's much heavier than
15565         Invalidate (which is really what we want).
15566
15567 2006-07-20  Chris Toshok  <toshok@ximian.com>
15568
15569         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
15570         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
15571         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
15572         traces from within a debug IBindingList datasource
15573         (in mono/winforms/datagrid) for *days*, I've finally gotten things
15574         to work in a similar fashion.
15575
15576 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15577
15578         * ListBox.cs: Don't call Sort () when setting 
15579         the Sorted property to false (avoid an unnecessary sort).
15580
15581 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15582
15583         * ListControl.cs: DataSource should throw an ArgumentException
15584         instead of a normal exception when the argument is not of the 
15585         correct type.
15586
15587 2006-07-20  Mike Kestner  <mkestner@novell.com>
15588
15589         * Control.cs: add InternalPreProcessMessage to allow us to steal
15590         key events before MWF gets its paws on them.  Adapted from a
15591         suggestion by eno.
15592         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
15593         up/down/left/right navigation. Override the new internal control
15594         method to steal the events since they never make it to WndProc.
15595         * ToolBarButton.cs: don't worry about pushed when setting hilight
15596         since the drawing code prefers pushed to hilight. Invalidate on 
15597         Hilight changes. Fixes #78547 and #78525.
15598
15599 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15600
15601         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
15602           the canvas size. Fixes #78868
15603
15604 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
15605
15606         * Splitter.cs: Track requested split position until first layout
15607           is performed. Fixes #78871
15608
15609 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15610
15611         * Application.cs: Removed code that forces 1.x for the version
15612           number if the version started with 0. Not sure why that code was
15613           there and I couldn't find any bugs that indicated we needed it.
15614           Fixes #78869
15615
15616 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
15617
15618         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
15619           ResetDefaults(), just write some output to the console until it's
15620           implemented. Fixes bug #78907 for now. Eliminated two warnings.
15621
15622 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
15623
15624         * PropertyGridView.cs: set StartPosition of drop down forms
15625         so they appear in correct initial spot.  Fixes #78190.
15626
15627 2006-07-19  Mike Kestner  <mkestner@novell.com>
15628
15629         * ThemeWin32Classic.cs: use parent background color when drawing
15630         flat toolbars.  Restructure the conditionals to make sure non-flat
15631         non-Divider toolbars are filled too.  Fixes #78837.
15632
15633 2006-07-19  Mike Kestner  <mkestner@novell.com>
15634
15635         * ListBox.cs: Sort on collection changes even if the handle
15636         isn't created yet.  Fixes #78813.
15637
15638 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15639
15640         * ListControl.cs: DisplayMember should never be null,
15641         and now we assign String.Empty when null is passed to it (this
15642         is the .Net way).
15643
15644 2006-07-17  Mike Kestner  <mkestner@novell.com>
15645
15646         * ListViewItem.cs: restructure Font and subitem Font handling 
15647         to hold a specific font and refer back to owner on null.
15648         Fixes #78761.
15649
15650 2006-07-17  Mike Kestner  <mkestner@novell.com>
15651
15652         * ToolBar.cs: bandaid for side-effect of previous patch which was
15653         discarding explicit heights for non-AutoSize toolbars.  Need to
15654         extend my format tester to deal with AutoSize=false. Fixes #78864.
15655
15656 2006-07-15  Jackson Harper  <jackson@ximian.com>
15657
15658         * LabelEditTextBox.cs:
15659         * TreeView.cs: Use a new LabelEdit class for node editing, this
15660         class automatically 'closes' itself when it gets the enter key or
15661         loses focus.
15662         - Use the client rectangle when setting the trees scrollbars, so
15663         border style is taken into account.
15664         
15665 2006-07-14  Jackson Harper  <jackson@ximian.com>
15666
15667         * TreeNode.cs:
15668         * TreeView.cs: Make the editing work similar to MSs, firing the
15669         events correctly and ending edits correctly.
15670
15671 2006-07-14  Mike Kestner  <mkestner@novell.com>
15672
15673         * ToolBarButton.cs:
15674         * ToolBar.cs: layout restructuring and redraw enhancements to support
15675         formatting changes gracefully, like setting TextAlign, ImageList, 
15676         ButtonSize, and Appearance.  Handles explicit button sizing quirks
15677         of the MS controls.  Things like flat toolbars ignoring button size
15678         but becoming constant sized at the largest button's size.  Normal
15679         toolbars with an image set cannot be shrunk smaller than the image,
15680         but text can be clipped/ignored.
15681         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
15682         is zero.  Seems like DrawString should be smart enough to not put
15683         anything on screen though. Also trim labels and ellipsize at the char
15684         boundary, not word.
15685         Fixes #78711 and #78483.
15686
15687 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15688
15689         * FolderBrowserDialog.cs: Disable "New Folder" button and
15690           "New Folder" contextmenu menuitem if a folder like "My Computer"
15691           is selected.
15692
15693 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15694
15695         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
15696         * FolderBrowserDialog.cs:
15697           - Use MWFConfig to store and read size and position settings
15698           - Added code to create a new folder (button or context menu).
15699             Use TreeView labeledit to change the name of the new folder.
15700
15701 2006-07-14  Jackson Harper  <jackson@ximian.com>
15702
15703         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
15704         when the tree is scrolled we end editing.
15705
15706 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15707
15708         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
15709           Down arrows
15710
15711 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
15712
15713         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
15714         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
15715         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
15716         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
15717         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
15718         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
15719         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
15720         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
15721         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
15722         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
15723         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
15724         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
15725         ListViewItemSelectionChangedEventHandler.cs,
15726         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
15727         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
15728         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
15729         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
15730         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
15731         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
15732         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
15733         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
15734         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
15735         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
15736         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
15737         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
15738         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
15739         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
15740         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
15741         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
15742         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
15743         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
15744         WebBrowserNavigatingEventHandler.cs, 
15745         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
15746
15747 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
15748
15749         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
15750         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
15751         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
15752         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
15753         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
15754         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
15755         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
15756         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
15757         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
15758         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
15759         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
15760         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
15761         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
15762         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
15763         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
15764         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
15765         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
15766         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
15767         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
15768         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
15769         ListViewItemStates.cs, MaskFormat.cs: Added
15770
15771 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
15772
15773         * PropertyGridView.cs: Fix keyboard navigation of drop down.
15774         Patch from eno for bug 78558.
15775         
15776 2006-07-13  Jackson Harper  <jackson@ximian.com>
15777
15778         * TreeView.cs: When an edit is finished make sure that the
15779         selected node is visible.
15780         - When setting the top/bottom use the scrollbars is_visible, so
15781         everything will be set correctly even if the tree isn't visible
15782         yet.
15783
15784 2006-07-13  Jackson Harper  <jackson@ximian.com>
15785
15786         * ComboBox.cs: Revert the item->index part of my previous patch.
15787         * TreeView.cs: Use LostFocus instead of Leave for detecting when
15788         the edit box has lost focus (duh).
15789         - Just make the edit box not visible when we get return, that will
15790         take the focus, which will call EndEdit
15791         * TreeNode.cs When we start editing, notify the treeview.
15792
15793 2006-07-12  Jackson Harper  <jackson@ximian.com>
15794
15795         * ComboBox.cs: Clear out old items before setting the item list.
15796         This prevents databound controls from having their items added
15797         twice.
15798         - Switch the combobox to use indices whereever possible instead of
15799         using Item's.  This allows usto navigate through lists that have
15800         more then one item with the same string value (ie a, b, b, a).
15801         - Scroll the listboxes scrollbar when a non visible item is
15802         highlighted
15803         - Allow keypress to cycle through all the possible values. For
15804         example if you have b1, b2, b3 and hold down the B key all the
15805         values will be cycled through.
15806         
15807 2006-07-12  Jackson Harper  <jackson@ximian.com>
15808
15809         * TextBoxBase.cs:
15810         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
15811         this using the internal methods.
15812         * Control.cs: Add OnGotFocusInternal.  A new method that allows
15813         controls to "override" OnGotFocus and change focus behavior if
15814         needed.
15815         - Same thing for LostFocus
15816         * ComboBox.cs: Pass off focus to the text control properly.
15817
15818 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
15819
15820         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
15821         * FolderBrowserDialog.cs: Almost a complete rewrite.
15822           - Better support for Environment.Specialfolders
15823           - Added support for MWFVFS
15824           - Made setting SelectedPath work
15825
15826 2006-07-12  Jackson Harper  <jackson@ximian.com>
15827
15828         * Control.cs: Optimze getting all the controls.
15829
15830 2006-07-11  Jackson Harper  <jackson@ximian.com>
15831
15832         * ContainerControl.cs: Override SETFOCUS in the container control,
15833         so that it is not selected on mouse click.
15834
15835 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
15836
15837         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
15838           Hopefully we will have a better way once all of focus is complete.
15839
15840 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
15841
15842         * ThemeWin32Classic.cs: Commented out some debug code and fixed
15843           a compile error with csc.
15844
15845 2006-07-11  Jackson Harper  <jackson@ximian.com>
15846
15847         * Control.cs: When hiding a control only select the next control
15848         if the current control was focused.
15849         - Don't handle enter/leave when setting/killing focus, this is
15850         done by the container control.
15851         - Remove is_selected, it's not needed anymore.
15852         - Add utility methods for selecting a child control, and for
15853         firing the Enter/Leave events.
15854         * ContainerControl.cs: When a control is activated fire the
15855         enter/leave events.
15856         - Don't wrap when processing the tab key, so that focus can be
15857         moved outside of the container.
15858         - Use the correct active control
15859
15860 2006-07-11  Jackson Harper  <jackson@ximian.com>
15861
15862         * ComboBox.cs: Remove some debug code that was blinding me.
15863         * UpDownBase.cs: These controls actually aren't implicit, they are
15864         visible to the user.
15865
15866 2006-07-10  Chris Toshok  <toshok@ximian.com>
15867
15868         * DataGrid.cs: move back to the is_adding boolean field.  god i
15869         hate this is_editing/is_adding/is_changing stuff.
15870
15871 2006-07-10  Chris Toshok  <toshok@ximian.com>
15872
15873         * DataGridTableStyle.cs: just check if the property type is bool.
15874         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
15875         Don't use CanRenderType.
15876
15877         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
15878         if our text == NullText.  Remove CanRenderType.
15879
15880         * DataGridBoolColumn.cs: nuke CanRenderType.
15881
15882         * DataGrid.cs: reenable some code to end the current edit inside
15883         of set_CurrentCell.  This fixes the other 1.1.16 regression.
15884         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
15885         Also, remove the visible_row_count arg from CalcRowHeaders, since
15886         we don't need to worry about the actual height of the area.
15887
15888 2006-07-10  Chris Toshok  <toshok@ximian.com>
15889
15890         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
15891         mode, just return.
15892
15893         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
15894         the real sense of the IsInEditOrNavigateMode property (true =
15895         navigate, false = edit).  Also, update OnKeyPress to reflect this.
15896
15897         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
15898         column style exists, we still need to set its property descriptor
15899         to match up with our list manager.
15900
15901 2006-07-10  Chris Toshok  <toshok@ximian.com>
15902
15903         * ThemeWin32Classic.cs: implement the new row/header painting
15904         approach.  The parent row painting will likely go away and
15905         replaced with label controls, but the rest seems to work ok (and
15906         efficiently).
15907
15908         * Theme.cs: change the way we draw datagrid rows.  we don't draw
15909         the row headers as a block now.  Instead we draw them in the
15910         normal draw-row loop.  Add some calls for drawing parent rows and
15911         relation rows.
15912
15913         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
15914         a default table style.  Set the defaults from ThemeEngine.Current,
15915         not SystemColors.  Fix lots of misc issues with property setters.
15916
15917         * DataGrid.cs: move loads of style information out of this class
15918         as it's being duplicated with DataGridTableStyle.  keep track of a
15919         special DataGridTableStyle for the properties we used to mirror
15920         here.  Switch all the style properties to access this table style
15921         instead of instance fields of this class.  Also add a internal
15922         class to represent parent rows (more needs to be stored here, like
15923         the selection state from the parent table, as well as the
15924         expansion state.)  Also, for datasources with relations, do the
15925         right thing for collapse/expand, and add support for the
15926         navigation/parent row buttons.
15927
15928         Lastly, fix the crash in the 1.1.16 build.
15929
15930         * GridTableStylesCollection.cs: make the explicit interface
15931         implementations call the class's methods as opposed to duplicating
15932         them.
15933
15934         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
15935         0 so the text doesn't jump around when we move the cursor.
15936
15937 2006-07-10  Jackson Harper  <jackson@ximian.com>
15938
15939         * TextBoxBase.cs:
15940         * ListBox.cs: Match MS's ToString (this makes debugging focus
15941         stuff infinitely easier).
15942
15943 2006-07-10  Jackson Harper  <jackson@ximian.com>
15944
15945         * Control.cs (SelectNextControl): When checking the control's
15946         parent use this instead of ctrl.parent so that null can be passed
15947         to SelectNextControl. (I have unit tests for this).
15948         - Remove unused var.
15949
15950 2006-07-10  Chris Toshok  <toshok@ximian.com>
15951
15952         * CurrencyManager.cs: correct one regression, the removal of the
15953         finalType field.  Also, add a MonoTODO on CanAddRows, implement
15954         Refresh() correctly, and fix some event emission in
15955         ListChangedHandler.
15956
15957 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
15958
15959         * FileDialog.cs: Don't use brackets for new folders if they exist
15960           under *nix. Instead use -(number of existing folders +1).
15961
15962 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
15963
15964         * FileDialog.cs:
15965           - Fixed really nasty bug #78771
15966           - Don't block the whole GUI when reading directories with a lot of
15967             entries. Use an other thread instead and call BeginInvoke to
15968             update the ListView in MWFFileView
15969
15970 2006-07-07  Chris Toshok  <toshok@ximian.com>
15971
15972         * Control.cs (Dispose): release any Capture when disposing.
15973
15974 2006-07-07  Chris Toshok  <toshok@ximian.com>
15975
15976         * LinkLabel.cs (Select): if we chain up to the parent, set
15977         focused_index to -1 so we'll search for the first available link
15978         the next time the user tabs into us.  Also, if the direction is
15979         backward and focused_index == -1, start the search from the last
15980         element.
15981
15982 2006-07-07  Chris Toshok  <toshok@ximian.com>
15983
15984         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
15985         is beyond the end of the text, don't do anything.
15986         (CreateLinkPieces): set our ControlStyles.Selectable based on
15987         whether or not we have any links.
15988         (Link.Invalidate): use a loop instead of foreach.
15989         (Link.set_Start): null out owner.sorted_links so it'll be
15990         recreated by CreateLinkPieces.
15991
15992 2006-07-06  Chris Toshok  <toshok@ximian.com>
15993
15994         * LinkLabel.cs: revert the SetStyle change.
15995
15996 2006-07-06  Chris Toshok  <toshok@ximian.com>
15997
15998         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
15999         (OnEnableChanged): s/Refresh/Invalidate
16000         (OnGotFocus): if we have a focused index already, refocus it (so
16001         if we mouse out/in to the window it'll focus the right link).
16002         (OnKeyDown): move the tab handling out of here.
16003         (OnLostFocus): don't set focused_index to -1, so we can refocus it
16004         when we lose focus.
16005         (OnMouseDown): don't Capture here - Control handles it.  Also,
16006         focus the active link.
16007         (OnMouseUp): don't deal with Capture.
16008         (OnPaintBackgroundInternal): remove.
16009         (OnTextAlignChanged): CreateLinkPieces before calling the
16010         superclass's method.
16011         (OnTextChanged): call CreateLinkPieces before calling superclass's
16012         method.
16013         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
16014         move around.
16015         (Select): implement this, moving the selection between different
16016         links, and call parent.SelectNextControl if we don't have another
16017         link to focus in the given direction.
16018         (CreateLinkPieces): call Invalidate instead of Refresh.
16019         
16020 2006-07-06  Chris Toshok  <toshok@ximian.com>
16021
16022         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
16023         new LinkLabel internals.
16024
16025         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
16026         over pieces looking for active/focused/etc links.  also, deal with
16027         runs of text (and links) with embedded \n's in them, and use
16028         MeasureCharacterRanges instead of MeasureString to figure out the
16029         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
16030         two-step.
16031
16032 2006-07-04  Jackson Harper  <jackson@ximian.com>
16033
16034         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
16035         XKB or key auto repeat, do it manually.  Without key auto repeat,
16036         when a key is held down we get key press, key release, key press,
16037         key release, ... with auto repeat we get key press, key press, key
16038         press ..., and then a release when the key is actually released.
16039
16040 2006-07-03  Jackson Harper  <jackson@ximian.com>
16041
16042         * TabControl.cs:
16043         * ThemeWin32Classic.cs: Tabs do not obey normal background color
16044         rules, they are always control color regardless of the background
16045         color.
16046
16047 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
16048
16049         * FileDialog.cs: Added internal class MWFConfig.
16050           Removed Registry support and replaced it with support for the new
16051           MWFConfig class. See MWFConfig comments for more information.
16052
16053 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
16054
16055         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
16056           rectangle. Added some patches from eno from bug #78490 and fixed
16057           the arrow position for small up and down CPDrawScrollButtons.
16058
16059 2006-06-30  Jackson Harper  <jackson@ximian.com>
16060
16061         * InternalWindowManager.cs: Remove some debug code.
16062         * Form.cs: When an MdiParent is set to null, the window is
16063         "detatched" and becomes a normal window.
16064         * MdiClient.cs: Don't bring the new child form to the front until
16065         it is activated (setting it as active does this), this makes the
16066         previously active forms titlebar get redrawn as inactive.
16067
16068 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
16069
16070         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
16071           with later controls
16072
16073 2006-06-29  Mike Kestner  <mkestner@novell.com>
16074
16075         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
16076         arrow in keynav state.  Fixes #78682.
16077
16078 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
16079
16080         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
16081           order (fixes #78393)
16082
16083 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
16084
16085         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
16086           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
16087           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
16088           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
16089           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
16090           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
16091           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
16092           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
16093           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
16094           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
16095           enumerations (FlagsAttribute, SerializableAttribute, added/removed
16096           values)
16097
16098 2006-06-28  Mike Kestner  <mkestner@novell.com>
16099
16100         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
16101
16102 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
16103
16104         * PropertyGrid.cs,
16105           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
16106           item lines from other area (It also makes BackColor consistent and
16107           compatible with .NET). Fixed bug #78564.
16108
16109 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
16110
16111         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
16112         Patch from Eno for #78555.
16113
16114 2006-06-27  Chris Toshok  <toshok@ximian.com>
16115
16116         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
16117
16118         * DataGridColumnStyle.cs: same.
16119
16120         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
16121         
16122         * DataGridDrawingLogic.cs: nuke.
16123
16124 2006-06-27  Chris Toshok  <toshok@ximian.com>
16125
16126         * DataGridTableStyle.cs: clean up the constructors, and build the
16127         list of child relations for this table.  I have no idea if this is
16128         where we should be doing it (it probably isn't), but since we're
16129         already iterating over the properties..
16130
16131         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
16132         struct and array for keeping track of row information, similar to
16133         what's shown in a hack on
16134         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
16135
16136         * Theme.cs: be consistent about the naming of DataGrid methods,
16137         prefering ColumnWidths and RowHeights over columnsWidths and
16138         RowsHeights.
16139
16140         * ThemeWin32Classic.cs: same, and also add support for variable
16141         sized rows (and the +/- expansion icons for related rows).
16142
16143 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
16144
16145         * TextBoxBase.cs: Applied Eno's patch from #78660
16146
16147 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
16148
16149         * Form.cs (ScaleCore): We don't want to scale our form if it's
16150           state is minimized or maximized, but we still need to scale our
16151           child windows. Also, added try/finally block to ensure layout
16152           gets reset (Fixes #78697)
16153
16154 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
16155
16156         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
16157
16158 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
16159
16160         * Form.cs: Fixed c+p error and added check to resize form if minimum
16161           size is bigger than current size (Fixes #78709)
16162
16163 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
16164
16165         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
16166
16167 2006-06-26  Mike Kestner  <mkestner@novell.com>
16168
16169         * ComboBox.cs: only do Keypress handling in the combo when there  
16170         are items in the collection. Fixes #78710.
16171
16172 2006-06-26  Chris Toshok  <toshok@ximian.com>
16173
16174         * Binding.cs: make this work bi-directionally.  also, clear up
16175         other mixups between Push/Pull Data (e.g. we're supposed to pull
16176         data when validating).
16177
16178         * BindingManagerBase.cs: trim some fully qualified collection
16179         types.
16180
16181         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
16182
16183 2006-06-23  Chris Toshok  <toshok@ximian.com>
16184
16185         * PropertyManager.cs: It appears (according to the unit tests)
16186         that PropertyManager doesn't use
16187         PropertyDescriptor.AddValueChanged to track propery value changes
16188         in its datasource, but uses the same scheme as Binding, where it
16189         looks for a <Property>Changed event and binds to it.
16190
16191         Also, according to the docs, IsSuspended always returns false for
16192         a property manager with a non-null datasource.
16193
16194 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
16195
16196         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
16197           need to update the actual DialogResult. (Fixes #78613)
16198
16199 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
16200
16201         * Form.cs (ShowDialog): Release any captures before running the
16202           new message pump (fixes #78680)
16203
16204 2006-06-22  Mike Kestner  <mkestner@novell.com>
16205
16206         * ListView.cs: Layout column widths properly in details mode even 
16207         if HeaderStyle.None is set.  Fixes #78691.
16208
16209 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
16210
16211         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
16212
16213 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
16214
16215         * Control.cs (ContainsFocus): Using new driver method to get focused
16216           window, instead of trying to use internal tracking var, which can
16217           recursion issues (Fixes #78685)
16218         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
16219           XplatUIWin32.cs: Added GetFocus method to return focused window
16220
16221 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16222
16223         * ColorDialog.cs: when the mouse button is pressed inside the color
16224         matrix, don't let the cursor move out of it until the button is
16225         released, which is the behavior on windows. Changed 'colours' by
16226         'colors' to use the same word consistently.
16227
16228 2006-06-21  Chris Toshok  <toshok@ximian.com>
16229
16230         * DataGrid.cs: add in some basic navigation stuff (navigating to a
16231         child relation and back, using a stack).  Also, remove
16232         GetDataSource and the code that calls it - it's not needed.  Also,
16233         track CurrencyManager.ListName's removal.
16234
16235 2006-06-21  Chris Toshok  <toshok@ximian.com>
16236
16237         * CurrencyManager.cs: push some of the original type checking from
16238         BindingContext.CreateBindingManager to here, and remove some of
16239         the finalType stuff.  Need more tests to make sure I've got the
16240         ListName part right, and we might need more in SetDataSource.
16241
16242         * PropertyManager.cs: add a ctor that takes just the datasource,
16243         and no property name.  Make SetDataSource work with a null
16244         property_name, and make Current return the data_source if the
16245         property descriptor is null.  this makes 'string foo = "hi";
16246         BindingContext[foo].Current' return "hi" as it should.
16247
16248         * RelatedCurrencyManager.cs: make this code more generic - there's
16249         no reason the parent manager has to be CurrencyManager, and
16250         there's no reason to pass the DataRelation.  It suffices to use a
16251         BindingManagerBase and PropetyDescriptor.
16252
16253         * RelatedPropertyManager.cs: make a similar change here.
16254         
16255         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
16256         flower I knew it could be.
16257
16258 2006-06-20  Chris Toshok  <toshok@ximian.com>
16259
16260         * PropertyManager.cs: the PropertyChangedHandler is invoked when
16261         data in the source has changed and we need to update the control,
16262         so s/PullData/PushData.
16263
16264         * CurrencyManager.cs: Refresh is meant to update the control from
16265         data in the datasource.  So, s/PullData/PushData.
16266
16267         * BindingContext.cs: add more ugliness (we weren't handling the
16268         case where data_source = DataTable and data_member = column_name).
16269
16270         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
16271         from the perspective of the datasource.  PullData pulls from the
16272         control, PushData pushes to the control.
16273
16274 2006-06-20  Chris Toshok  <toshok@ximian.com>
16275
16276         * BindingContext.cs: rewrite the CreateBindingManager code to
16277         handle navigation paths more or less properly.  This could
16278         definitely stand some more work, in particular to push the
16279         recursion up to the toplevel.  But that relies on fixes in other
16280         places (System.Data comes to mind).
16281
16282         Also, move to a flat hashtable (and encode the twolevel nature of
16283         the dictionary into the hash key).  This lets us implement the
16284         IEnumerable.GetEnumerator method.
16285
16286         * RelatedCurrencyManager.cs: new class.  Update our view based on
16287         our relation and our parent CurrencyManager's position.
16288
16289         * CurrencyManager.cs: split out some logic from the ctor into
16290         SetView, so it can be called from the new RelatedCurrencyManager
16291         subclass.
16292
16293         * RelatedPropertyManager.cs: new class.  Update our datasource
16294         based on the position of our parent CurrencyManager.
16295
16296         * PropertyManager.cs: split out some logic from the ctor into
16297         SetDataSource, so it can be called from the new RelatedDataSource
16298         subclass.  Also, make the Current getter return the value
16299         of the PropertyDescriptor, not the data_source.
16300
16301         * Binding.cs: no need to duplicate the string splitting code here.
16302
16303 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
16304
16305         * Control.cs:
16306           - set_Enabled: OnEnabledChanged is not called if the inherited state 
16307             of the control is not altered, even though  we might be changing the
16308             internal state of the control (#78458)
16309           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
16310             OnEnabledChanged, to allow easy altering of any child window state
16311           - OnEnabledChanged: Added code to enable/disable driver window state
16312           - OnParentEnabledChanged: Instead of firing the event, call 
16313             OnEnabledChanged, which will fire the event and also a) set driver
16314             window state and pass the enabled state to any grandchildren (#78458)
16315
16316 2006-06-19  Jackson Harper  <jackson@ximian.com>
16317
16318         * InternalWindowManager.cs: We don't set the cursor explicitly
16319         thats done via the response to NCHITTESTs.
16320         - Don't need to adjust for titlebar heights anymore, the
16321         coordinates are coming in the correct coordinates now (see peters
16322         last patch).
16323
16324
16325 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
16326
16327         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
16328           being translated relative to whole window, instead of client window.
16329           That caused broken offsets on mouseclick (and caused gas for our
16330           InternalWindowManager)
16331
16332 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
16333
16334         * TextControl.cs:
16335           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
16336           - Undo(): Added replay of cursor move on DeleteChars action; added
16337             calling Undo() again if a recorded cursor move is invalid (to
16338             ensure that some action is performed on Undo)
16339         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
16340
16341 2006-06-16  Jackson Harper  <jackson@ximian.com>
16342
16343         * MdiClient.cs: Instead of just sizing maximized windows when
16344         there is a resize we also have to adjust the Y of minimized
16345         windows, so they stay pinned to the bottom of the mdi container.
16346         - Eliminate separate tracking of the active control, we can just
16347         get this from the controls collection.
16348         - Paint the decorations for the newly activated titlebar so we get
16349         a pretty blue bar.
16350         * InternalWindowManager.cs:
16351         * ThemeWin32Classic.cs: Minimized windows get all three buttons
16352         even if they are a tool window.
16353         
16354 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
16355
16356         * TextControl.cs (Undo): Handle non-existent cursor locations in the
16357           undo buffer, these can happen when text was deleted and the cursor
16358           was recorded first. Since we will also have a recorded cursor
16359           after the delete this is not an issue. (Fixes #78651)
16360
16361 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
16362
16363         * AccessibleObject.cs: Remove dependence on Control.is_selected;
16364           instead properly track control states internally (allows us to
16365           remove is_selected from Control)
16366
16367 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16368
16369         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
16370         whose width is not a multiple of 8.
16371
16372 2006-06-13  Jackson Harper  <jackson@ximian.com>
16373
16374         * MdiClient.cs:  Only maximize the next child if the current one
16375         is maximized.
16376
16377 2006-06-13  Chris Toshok  <toshok@ximian.com>
16378
16379         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
16380         modified.  Also, guard against grid or grid_drawing being null in
16381         Invalidate.
16382
16383         * DataGrid.cs: Reformat tons of getters/setters.  In the
16384         DataMember setter, just call SetNewDataSource instead of
16385         duplicating some of its functionality.  In SetNewDataSource, don't
16386         check ListManager for null, since the property getter creates the
16387         object if needed.
16388
16389         * DataGridTableStyle.cs: don't set TableStyle or call
16390         SetDataGridInternal on the column here, it's done in
16391         GridColumnStylesCollection.Add.
16392
16393         * GridColumnStylesCollection.cs: fix all the explicit interface
16394         implementations to just call our methods.  Nuke AddInternal() and
16395         move the body of it to Add().  Also, add a call to
16396         column.SetDataGridInternal to Add().
16397
16398         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
16399         base()+duplicate code.  Also, use the Format property instead of
16400         format to generate an Invalidate ala MS.  Lastly, create the
16401         textbox here, unconditionally.
16402         (set_Format): call Invalidate.
16403         (get_TextBox): no need to call EnsureTextBox.
16404         (Commit): remove the message box.
16405         (Edit) remove the call to EnsureTextBox.
16406         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
16407         (EnterNullValue): no need to check textbox for null.
16408         (HideEditBox): no need to check textbox for null.
16409         (SetDataGridInColumn): add the textbox to the grid's controls.
16410         (EnsureTextBox): nuke.
16411         
16412 2006-06-13  Jackson Harper  <jackson@ximian.com>
16413
16414         * MdiWindowManager.cs: Hook up to the maximized menus paint event
16415         and redraw the buttons when needed. Unhook when the window is
16416         unmaximized.
16417         * MainMenu.cs: Add an internal Paint event, the mdi window manager
16418         needs this so that it can redraw its buttons when the menu is
16419         repainted.
16420         * InternalWindowManager.cs:
16421         * Form.cs: The method order has changed for DrawMaximizedButtons,
16422         so that it can be a PaintEventHandler.
16423         
16424 2006-06-13  Jackson Harper  <jackson@ximian.com>
16425
16426         * MdiClient.cs: When we close a maximized mdi window, the next mdi
16427         window is activated and maximized, even if it wasn't before.
16428         - When  a new window is activated repaint the decorations of the
16429         old one, so that it no longer has the Active "look" (the blue
16430         titlebar).
16431         * InternalWindowManager.cs: Open up CreateButtons to base classes
16432         so they can recreate the buttons on state changes.
16433         - If a window is maximized give it all three buttons
16434         * MdiWindowManager.cs: Create the titlebar buttons when the state
16435         is changed, this is needed because a toolwindow will not have all
16436         three buttons until it is maximized.
16437
16438 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
16439
16440         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
16441           Fixed bug #78609.
16442
16443 2006-06-12  Jackson Harper  <jackson@ximian.com>
16444
16445         * KeysConverter.cs: Make sure we handle the Ctrl special case
16446         if its the only key.
16447         
16448 2006-06-12  Jackson Harper  <jackson@ximian.com>
16449
16450         * Theme.cs: Add a method to get the size of a managed window
16451         toolbar button.
16452         * InternalWindowManager.cs: Remove the ButtonSize property, this
16453         should be retrieved from the theme.
16454         * MdiWindowManager.cs: Get the button size from the theme
16455         * ThemeWin32Classic.cs: Make the method to get the managed window
16456         titlebar button size public.
16457         - Handle the different button sizes of maximized toolwindows
16458         (should match any maximized window).
16459         - Get the titlebar height from the theme, not the WM (which gets
16460         it from the theme).
16461
16462 2006-06-12  Jackson Harper  <jackson@ximian.com>
16463
16464         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
16465         event down to the mdi window manager.
16466         - Expose some extra stuff to base classes
16467         - Make sure to end the Capture on an NC Mouse up, so that we can
16468         get double clicks properly, and the sizing doens't stick.
16469         - When doing PointToClient contain it in the workable desktop
16470         area, this prevents windows from changing size when the cursor is
16471         pulled outside of the working area while sizing.
16472         * MdiWindowManager.cs: When we get a double click maximize the
16473         window.
16474         - Reset the cursor after handling mode changes.
16475
16476 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
16477
16478         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
16479           current desktop, instead of just assuming a 0, 0 origin. This
16480           is needed for our internal window manager, to know the top
16481           margin of the desktop
16482
16483 2006-06-12  Chris Toshok  <toshok@ximian.com>
16484
16485         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
16486         we need this to get rid of the selected background in the bool
16487         column.
16488         (CancelEditing): move the ConcedeFocus call to above the Abort
16489         call.  Also, set is_changing to false and invalidate the row
16490         header if we were changing before.
16491         (ProcessKeyPreviewInternal): remove, since noone outside this
16492         class calls it anymore.  Roll the code into ProcessKeyPreview.
16493         (EndEdit): remove the internal version.
16494         (InvalidateCurrentRowHeader): make private.
16495
16496         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
16497         Keys.Escape handling (and with it the last call to
16498         DataGrid.EndEdit from outside the class.)
16499
16500
16501 2006-06-12  Chris Toshok  <toshok@ximian.com>
16502
16503         * DataGridTextBox.cs (.ctor): isedit defaults to false.
16504         (OnKeyPress): set isedit to true.
16505         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
16506         already handled by the grid.
16507
16508         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
16509         right.  ugh.
16510         (set_DataSource): SetDataSource always returns true, so stop
16511         putting it in an if statement.
16512         (EndEdit): get rid of some {}'s
16513         (ProcessGridKey): return true in case Keys.Escape.
16514         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
16515         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
16516         PositionChanged, stopped connecting to CurrentChanged.
16517         (GetDataSource): simplify this a bunch.
16518         (SetDataSource): change return type from bool to void.
16519         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
16520         to this, and make sure we don't set ListManager.Position inside
16521         set_CurrentCell.
16522         (OnListManagerItemChanged): if we're passed an actual index,
16523         redraw that row.
16524
16525         * CurrencyManager.cs (set_Position): don't call PullData here.
16526
16527 2006-06-09  Jackson Harper  <jackson@ximian.com>
16528
16529         * TreeNode.cs:  Recalculate the visible order before doing the
16530         Expand/Collapse Below calls, because those calls generate an
16531         expose.
16532         - Reduce calls to the TreeView property, which is mildly expensive
16533         by using a local var.
16534         * Form.cs: Layout the MDI child windows when creating the parent
16535         form.
16536         - Don't use the internal constructor anymore
16537         * MdiClient.cs: use the parent form width/height (if available)
16538         when laying out the child windows, we do this because the
16539         mdiclient isn't docked yet when the initial layout is done.
16540         - Don't need an internal constructor anymore.
16541
16542 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16543
16544         * FileDialog.cs: handle access errors when trying to create a folder
16545         or changing to a directory. No need to initialize out parameters.
16546
16547 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16548
16549         * FileDialog.cs: Append a number when creating a new folder if the
16550           folder already exists (use parenthesis instead of square brackets)
16551
16552 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16553
16554         * FileDialog.cs:
16555           - Disabled registry support for windows and added better registry
16556             error checking for other systems (need to investigate why it
16557             works perfectly on my system)
16558           - If a folder already exist show an error MessageBox instead of
16559             trying to create an indexed name.
16560           - Fixed a non intentional typo.
16561
16562 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16563
16564         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
16565
16566 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16567
16568         * FileDialog.cs: When creating a new folder don't crash if the
16569           folder already exists.
16570
16571 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16572
16573         * FileDialog.cs: Allmost a complete rewrite.
16574           - added a "virtual" file system that handles the differences
16575             between unix and windows file systems (especially the directory
16576             structure). Moved most of the directory and file handling code
16577             into the vfs.
16578             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
16579             UnixFileSystem and FSEntry.
16580           - Recently used folder/directory, size, location and used file names
16581             (file name ComboBox) are now stored in the registry and get read
16582             before the dialog shows up (fixes part 6 of bug #78446).
16583           - Creation of new folders/directories is now possible (context menu
16584             or ToolBar). Added TextEntryDialog for this that fills in the gap
16585             until ListView.LabelEdit works.
16586           - Fixed cursor handling (bug #78527) and focus handling for
16587             PopupButtonPanel
16588           - Various "Search in" ComboBox enhancements. The content of the
16589             dropdown listbox now almost matches ms.
16590           - Changed the behaviour when the user switches to SpecialFolder
16591             Recent to show the ListView in View.Details.
16592           - Beside using the ToolBar to change the View property of the
16593             file ListView it is now possible to use the context menu too.
16594
16595 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16596
16597         * ComboBox.cs: Don't create a new ObjectCollection when an item
16598           gets inserted. Just insert the item in the existing object_items
16599           ArrayList.
16600
16601 2006-06-08  Jackson Harper  <jackson@ximian.com>
16602
16603         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
16604         that the treeview and root node checks are done also, this fixes a
16605         regression i caused in the unit tests.
16606
16607 2006-06-07  Wade Berrier <wberrier@novell.com> 
16608
16609         * RichTextBox.cs: More ISO8859-1 -> unicode
16610
16611 2006-06-07  Mike Kestner  <mkestner@novell.com>
16612
16613         * ComboBox.cs : use items to hold highlight/selection so that
16614         collection insertions don't require synchronization.
16615
16616 2006-06-07  Jackson Harper  <jackson@ximian.com>
16617
16618         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
16619         routine.  We now always keep the sized edge at the cursor instead
16620         of computing movement and adjusting rects.  There is one buglet
16621         with this method though when the cursor is moved over area that
16622         the window can not expand too (such as the toolbars on the desktop).
16623
16624 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16625
16626         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
16627         here. Fixes crash on startup in AlbumSurfer.
16628
16629 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
16630
16631         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
16632           values
16633
16634 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16635
16636         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
16637         statement to avoid calling XNextEvent which will block if another thread
16638         took the event that we were expecting. Fixes bug #78605.
16639
16640 2006-06-07  Mike Kestner  <mkestner@novell.com>
16641
16642         * ListView.cs : isolated checkbox clicking from the selection logic.
16643         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
16644
16645 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16646
16647         * Form.cs: Check that the value passed to Form.DialogResult
16648         is a valid enum value.
16649
16650 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16651
16652         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
16653         Computer'. Clicking it in the network view goes to 'My Computer'.
16654         Added CIFS filesystem type. Display the mount point of filesystems.
16655         Avoid duplicate mount points (happens for me with CIFS);
16656
16657 2006-06-06  Jackson Harper  <jackson@ximian.com>
16658
16659         * InternalWindowManager.cs: Draw the maximized windows buttons
16660         when resizing.
16661
16662 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16663
16664         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
16665         all other dialogs. Fixes bug #78585.
16666
16667 2006-06-06  Mike Kestner  <mkestner@novell.com>
16668
16669         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
16670         Only invalidate checkbox on checkstate changes to avoid flicker.
16671         * ListBox.cs : avoid unselect/select when clicking selected item.
16672         avoid reselection flicker for already multiselected items.
16673         Fixes #78382.
16674
16675 2006-06-06  Jackson Harper  <jackson@ximian.com>
16676
16677         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
16678         the parent form so that the menu is removed if needed.
16679
16680 2006-06-06  Mike Kestner  <mkestner@novell.com>
16681
16682         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
16683         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
16684
16685 2006-06-06  Mike Kestner  <mkestner@novell.com>
16686
16687         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
16688
16689
16690 2006-06-06  Jackson Harper  <jackson@ximian.com>
16691
16692         * Control.cs: Use the property (instead of the field) to get the
16693         default cursor so it is instantiated correctly.
16694         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
16695         resizes so we need to manually repaint the window decorations here.
16696         - Set the titlebar button locations as soon as they are created,
16697         otherwise they are not set correctly on win32.
16698         
16699 2006-06-06  Chris Toshok  <toshok@ximian.com>
16700
16701         * CurrencyManager.cs (set_Position): call PullData before
16702         OnCurrentChanged.
16703         (AddNew): after calling IBindingList.AddNew, update our
16704         listposition, and call OnCurrentChanged/OnPositionChanged (without
16705         calling PullData).
16706         (OnCurrentChanged): remove the call to PullData from here.
16707         (OnItemChanged): remove the call to PushData from here.
16708         (OnPositionChanged): change the test from == null to != null to
16709         match the other methods.
16710         (ListChangedHandler): the grossest part of the patch.  Implement
16711         this such that it passes the unit tests in CurrencyManagerTest and
16712         the output more or less matches that of MS's implementation.
16713  
16714 2006-06-06  Mike Kestner  <mkestner@novell.com>
16715
16716         * ListView.cs : only update check state on single click.
16717         * ThemeWin32Classic.cs : fix focus drawing for details view without
16718         fullrowselect.  Fixes #78454.
16719         * XplatUIX11.cs : fix for double click emission.
16720
16721 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16722
16723         * PropertyGridView.cs : Applied Atsushi's patch to fix
16724         font dialog bug  (#78197).
16725
16726 2006-06-05  Jackson Harper  <jackson@ximian.com>
16727
16728         * TreeNode.cs: Compute the next node for expanding/collapsing
16729         correctly. We now factor in nodes without a NextNode
16730         correctly. (Fixes somes cases in nunit-gui).
16731         * InternalWindowManager.cs: Set the bounds when updating the
16732         virtual position of a tool window.
16733         
16734 2006-06-05  Chris Toshok  <toshok@ximian.com>
16735
16736         * DataGrid.cs: rename cached_currencymgr to list_manager.
16737         (set_CurrentCell): move SetCurrentCell code here, and clean it up
16738         some.
16739         (CurrentRow, CurrentColumn): single accessors so we can make the
16740         cursor movement code a lot easier to understand.
16741         (CurrentRowIndex): implement this in terms of CurrentRow.
16742         (BeginEdit): clean this up a bit.
16743         (CancelEditing): sort out the is_editing/is_changing/is_adding
16744         stuff a little.
16745         (EndEdit): minor changes.
16746         (OnKeyDown): add a comment about a (most likely) unnecessary
16747         check.
16748         (OnMouseDown): cancel editing when we click on a row header.  And
16749         use the CurrentRow setter, not CurrentCell.
16750         (ProcessDialogKey): directly call ProcessGridKey.
16751         (UpdateSelectionAfterCursorMove): factor out this common block of
16752         code (it's used everywhere that we move the cursor by updating row
16753         or column).
16754         (ProcessGridKey): pretty substantial overhaul.  Use the
16755         CurrentRow/CurrentColumn properties to make the code a lot more
16756         readable.  Only use the CurrentCell property when we have to
16757         modify both row and column at once.  Tab behavior is still broken,
16758         and Delete is untested.
16759         (Select): if we have no selected rows, set selection_start to
16760         @row.
16761         (EditCurrentCell): rename EditCell this.  It was only ever invoked
16762         with CurrentCell as the arg, so drop the arg and rename it.
16763
16764         * DataGridColumnStyle.cs: clean up the constructors a little, and
16765         drop CommonConstructor().
16766
16767         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
16768         actually get notified when the user hits it.
16769         (ProcessKeyMessage): *substantially* simplify this method.
16770         There's no reason (that I can see) for the textbox to be making
16771         calls into the datagrid at all.  Remove all of them but the ones
16772         for Enter handling.  those will take some more work.
16773
16774         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
16775         calling HideEditBox.
16776         (HideEditBox): if we have an active textbox, render it invisible
16777         without causing a re-layout of the datagrid.
16778
16779 2006-06-05  Mike Kestner  <mkestner@novell.com>
16780
16781         * ListView.cs : fix NRE crasher when focuseditem is cleared by
16782         collection changes by resetting it to Items[0].  Fixes #78587.
16783
16784 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16785
16786         * MessageBox.cs: if the height of the text is larger than the icon_size,
16787         use that. Fixes bug #78575.
16788
16789 2006-06-05  Jackson Harper  <jackson@ximian.com>
16790
16791         * TreeView.cs: Fix line drawing when scrolling.  To do this each
16792         node is basically responsible for drawing its entire horizontal
16793         area.  When drawing a node it draws its parent node lines if
16794         needed.
16795         - Adjust the clip area to the viewport rectangle
16796         - Fix Left/Right key handling to match MS. (It expand/collapses
16797         and moves to parents/first child but does not move selection to
16798         sibling nodes).
16799         - Fix SetTop to work with new bound calculation code
16800         - When scrollbars are no longer needed we need to reset scrolling
16801         vars and recalculate the visible order so the redraw is correct
16802         * TreeNode.cs: We can't expand/collapse nodes with no children.
16803
16804 2006-06-03  John Luke  <john.luke@gmail.com> 
16805
16806         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
16807         so the colors work without dev packages
16808         
16809 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
16810
16811         * Control.cs 
16812           - Select: Implemented to just use activate. Seems to match MS 
16813             behaviour closest. Documented to only do actual control walking 
16814             based on it's parameters if in a container control so I moved 
16815             the code there.
16816           - Removed selection check logic from our internal Select() method
16817         * ContainerControl.cs:
16818           - Select: Moved selection logic from Control here, since MS documents
16819             that containers obey the bool arguments. No longer calling base
16820
16821 2006-06-02  Jackson Harper  <jackson@ximian.com>
16822
16823         * TreeView.cs: If the selected node isn't changed when we get
16824         focus update the previously selected node so that we see the
16825         selection box.
16826
16827 2006-06-02  Mike Kestner  <mkestner@novell.com>
16828
16829         * ComboBox.cs: restructure grab and general mouse event handling.
16830         Make the composite control raise mouse events like it was a single
16831         control for leaves/enters/motion/up/down events.  fix dropdown list
16832         coordinate mangling and refactor it into the scrollbar subclass to
16833         reduce code duplication.  Fixes #78282 #78361 and #78457.
16834
16835 2006-06-02  Mike Kestner  <mkestner@novell.com>
16836
16837         * ScrollBar.cs: remove Capture setting/clearing, as it happens
16838         automatically in the Control.WndProc.
16839
16840 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16841
16842         * FileDialog.cs: fix crash when running SharpChess, which sets the
16843         FilterIndex to 2 with only one Filter.
16844
16845 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16846
16847         * ToolBar.cs: add SizeSpecified property.
16848         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
16849         try to figure out our real size, otherwise fallback to what the
16850         container says.
16851
16852 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16853
16854         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
16855         * Control.cs (WndProc): MS always calls the DefWndProc to pass
16856           up the event
16857
16858 2006-06-01  Mike Kestner  <mkestner@novell.com>
16859
16860         * ListView.cs: revamp the focus management in ListView.  It still
16861         causes churn of LostFocus/GotFocus emissions on clicks, but it's
16862         better than not handling focus at all.  Will revisit when pdb feels
16863         the general focus handling is solid.  Fixes #78526.
16864
16865 2006-06-01  Jackson Harper  <jackson@ximian.com>
16866
16867         * TreeView.cs: Set the default border style in the constructor.
16868         - Move painting to use OnPaintInternal instead of capturing
16869         WM_PAINT, this is the correct way of doing things
16870         - UpdateBelow shouldn't invalidate the scrollbar area
16871         - Cap the top on update below in case the node was above the top
16872         of the viewport rectangle.
16873         - ExpandBelow and Collapse below need to obey Begin/End Update.
16874         * TreeNode.cs: Make is_expanded internal so the treenode
16875         collection can change it without firing the whole event chain.
16876         * TreeNodeCollection.cs: When clearing all the child nodes make
16877         sure to recalc the visible order.
16878         - Improve algo for remove the top node
16879
16880 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16881
16882         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
16883           SendMessage directly calling window procedures, which in turn might
16884           call SetFocus()
16885
16886 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
16887
16888         * Control.cs: Don't handle WM_SETFOCUS if the same window already
16889           has focus (works around X11 sending a FocusIn after our SetFocus)
16890         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
16891
16892 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
16893
16894         * Mime.cs: Fix for the NET_2_0 build.
16895           NameValueCollection needs StringComparer now.
16896
16897 2006-05-31  Chris Toshok  <toshok@ximian.com>
16898
16899         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
16900         return (via an out parameter) the starting X of the column.
16901         (UpdateVisibleColumn): track change to FromPixelToColumn.
16902         (HitTest): add a ColumnResize case here.
16903         (DrawResizeLine): new function, probably poorly named.
16904
16905         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
16906         only need to keep one reference.
16907         (set_ListManager): same.
16908         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
16909         Also, add support for HitTestType.ColumnResize.
16910         (OnMouseMove): add column resize behavior here, and change the
16911         cursor to the correct one as we move around the datagrid.
16912         (OnMouseUp): terminate the column resize if we're resizing.
16913         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
16914         for the current cell.
16915         (ConnectListManagerEvents): use cached_currencymgr.
16916         (DisconnectListManagerEvents): fill this in, using
16917         cached_currencymgr.
16918         (SetCurrentCell): remove cached_currencymgr_events handling.
16919         (SetDataMember): only call DisconnectListManagerEvents if
16920         cached_currencymgr is != null.
16921         (SetDataSource): same.
16922         (OnListManagerCurrentChanged): cached_currencymgr_events ->
16923         cached_currencymgr.
16924
16925 2006-05-31  Jackson Harper  <jackson@ximian.com>
16926
16927         * BindingManagerBase.cs: Remove somedebug code that creeped into
16928         SVN.
16929         * TreeNode.cs: We get the indent level dynamically right now, so
16930         don't track it as a member.
16931         * TreeNodeCollection.cs: Make sure all nodes added to the list
16932         have parents, treeviews/topnodes setup properly.
16933         - Don't attempt to track indent level.
16934
16935 2006-05-30  Jackson Harper  <jackson@ximian.com>
16936
16937         * BindingContext.cs: Create the currency manager tables here.
16938         This allows us to more easily create null tables (when bad data
16939         members are used), and more easily create related currency
16940         managers.
16941         * CurrencyManager.cs: All the table creation stuff is done by the
16942         binding context now.
16943         - Current should throw an exception if listposition is -1.
16944         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
16945         been bound yet.
16946
16947 2006-05-30  Mike Kestner  <mkestner@novell.com>
16948
16949         * ListView.cs: allow reexpansion of zero-width column headers.
16950         Fixes #78528.
16951
16952 2006-05-28  Chris Toshok  <toshok@ximian.com>
16953
16954         * CurrencyManager.cs (get_Current): after the late binding
16955         listposition = -1 fix, we need to guard against it here and return
16956         null, otherwise we raise an exception (which is swallowed
16957         elsewhere, and breaks datagrid databinding.)
16958
16959 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
16960
16961         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
16962           than WM_SYSKEY, don't throw if get something unexpected (#78507)
16963
16964 2006-05-26  Jackson Harper  <jackson@ximian.com>
16965
16966         * ControlPaint.cs:
16967         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
16968         values, it's faster and it's all we care about (we don't care if
16969         the names aren't equal).
16970         * KeyboardLayouts.cs: Eliminate some dead code.
16971         - Lazy init things
16972         * X11Keyboard.cs: Lazy init keyboard detection.
16973         - Cleanup access modifiers a little.
16974
16975 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
16976
16977         * XplatUIX11.cs: Once again, attempting to get layout just right.
16978
16979 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
16980
16981         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
16982           the sizes of each link section, that will result in sizes that
16983           match DrawString's layout (Fixes #78391)
16984
16985 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
16986
16987         * FileDialog.cs: If AddExtension property is true autocomplete the
16988           extensions in SaveFileDialog correctly. Fixes bug #78453.
16989           Set MyNetwork and MyComputer to "C:\" for windows. This should
16990           fix part 8 of bug #78446 for now.
16991
16992 2006-05-26  Chris Toshok  <toshok@ximian.com>
16993
16994         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
16995         invalidate the current row header if we need to, but presumably
16996         we'll invalidate the row corrsponding to the bounds or
16997         editingControl.
16998         (GridHScrolled): switch back to this method, as it's part of the
16999         public api.  *sigh*.
17000         (GridVScrolled): same.
17001         (OnMouseWheel): hack up something that more or less works.  Call
17002         GridHScrolled/GridVScrolled directly, instead of duplicating much
17003         of their code here.
17004         (EnsureCellVisibility): reinstate a bunch of this code, since we
17005         can't just set the scrollbar Value and expect to do all the work
17006         in the ValueChanged handler.  Also, Call Update() after scrolling
17007         in one direction so the other XplatX11.ScrollWindow call has the
17008         proper stuff in the proper places.
17009         (EditCell): set is_editing to true before calling .Edit.
17010
17011         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
17012         don't bother comparing first.
17013         (OnKeyPress): call grid.ColumnStartedEditing before calling
17014         base.OnKeyPress.  this will set is_changing and invalidate the row
17015         header if necessary.
17016         (ProcessKeyMessage): for WM_CHAR messages, call
17017         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
17018         and WM_KEYDOWN.
17019         
17020         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
17021         it's done in the DataGrid.
17022         (NextState): call grid.ColumnStartedEditing, which takes care of
17023         invalidating the row header (and setting is_changing).
17024
17025         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
17026         here.  it's done in the DataGrid.
17027
17028 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17029
17030         * Control.cs: allow changing the cursor when the mouse position is
17031         out of bounds but Capture is set.
17032         * LinkLabel.cs: handle the case when the mouse button is pressed on the
17033         linklabel but released somewhere else.
17034
17035 2006-05-25  Jackson Harper  <jackson@ximian.com>
17036
17037         * TreeView.cs: When we get focus if there is no selected node make
17038         it the top node
17039         - Remove some uneeded setup code from Draw.
17040         * TreeNodeCollection.cs: If the tree doesn't have a top node when
17041         a new node is inserted make the new node the top.
17042         * XplatUIX11.cs:
17043         * Timer.cs: Use Utc time so that no local time zone stuff needs to
17044         be used (should be faster).
17045         
17046 2006-05-25  Chris Toshok  <toshok@ximian.com>
17047
17048         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
17049         problem with the last commit.
17050
17051 2006-05-25  Chris Toshok  <toshok@ximian.com>
17052
17053         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
17054         need the invalidate call here, while scrolling right-to-left via
17055         the left arrow key (i.e. moving the editing cell while scrolling).
17056
17057         * DataGrid.cs (.ctor): remove the initialization of
17058         ctrl_pressed/shift_pressed.  We no longer track them using key
17059         up/down handlers, but by using Control.ModifierKeys.  Also, switch
17060         to using ValueChanged handlers on the scrollbars instead of
17061         Scrolled event handlers.  This simplifies a bunch of the scrolling
17062         code.
17063         (GridHValueChanged): rename from GridHScrolled, and change it to
17064         work with the new event args.
17065         (GridVValueChanged): same.
17066         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
17067         (OnMouseWheel): actually scroll the datagrid.  Don't change the
17068         selected cell.
17069         (ProcessGridKey): correct all the keyboard navigation stuff I
17070         could find.  Ctrl up/down/left/right/home/end work now.
17071         (EnsureCellVisibility): correct method name spelling.  Also,
17072         simplify this a touch by not explicitly calling the
17073         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
17074         scrollbar value.
17075         (OnKeyUpDG): no need for this method now.
17076         
17077 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17078
17079         * LinkLabel.cs: display the OverrideCursor when hovering the label.
17080         Fixes bug #78392.
17081
17082 2006-05-25  Chris Toshok  <toshok@ximian.com>
17083
17084         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
17085         r61019.
17086
17087 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
17088
17089         * Application.cs: Moved setting of is_modal and closing to before
17090           we create the control, to allow the event handlers called as a
17091           result of creation affect closing. Also removed Gonzalo's previous
17092           change to setting DialogResult, the behaviour has been moved to 
17093           Form.ShowDialog()
17094         * Form.cs: 
17095           - ShowDialog(): Removed explicit creation of the form, let RunLoop
17096             handle it instead
17097           - ShowDialog(): If no dialog result is set, we need to return Cancel
17098           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
17099             the close is cancelled
17100
17101 2006-05-25  Jackson Harper  <jackson@ximian.com>
17102
17103         * StatusBar.cs: We only need to update the sizes of the other
17104         panels when we have auto size contents.  Also we are only updating
17105         the contents of the panel, not the borders, so compensate for the
17106         border width (TODO: get this width from the theme somehow).
17107         * TreeView.cs: Scrollable is true by default
17108         - Use invalidate instead of refresh where needed
17109         - Factor the scrollable value into scrollbar updating
17110         - Update the scrollbars if the Scrollable property is altered
17111         - Update the selected node if its ImageIndex is changed
17112         - Handle null nodes in UpdateNode (mainly so we don't have to
17113         check if selected is null when updating it
17114         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
17115         are factored into the visible count
17116         - Use VisibleCount for clarity in the code
17117         - When the font is changed we need to recurse through all the
17118         nodes and invalidate their sizes
17119         
17120 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17121
17122         * Application.cs: set the DialogResult to fixed when the main form is
17123         hidden or destroyed while being modal.
17124
17125 2006-05-25  Miguel de Icaza  <miguel@novell.com>
17126
17127         * Theme.cs: Use Tangoified messagebox icons. 
17128
17129         (GetSizedResourceImage): Also cope with width = 0 and do not
17130         trigger a warning in that case (0 means "give me your icon from
17131         the resouce, no special size needed).
17132
17133 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
17134
17135         * Application.cs: Leave runloop if the the main modal form is 
17136           hidden (fixes #78484)
17137
17138 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
17139
17140         * BindingContext.cs : reject null datasource in Contains() and
17141           Item[].
17142         * CurrencyManager.cs : check data_member validity when data_source
17143           is dataset. When it is late binding, the initial position is -1.
17144
17145 2006-05-24  Jackson Harper  <jackson@ximian.com>
17146
17147         * TreeNodeCollection.cs: Dont't recalculate the visible order on
17148         inserted nodes that aren't visible.  This changes the
17149         max_visible_order which confuses scrollbar settings.
17150         - Use the enumerator to get the prev node instead of duplicating
17151         code.
17152         * TreeView.cs: Use new method for setting scrollbar values
17153         - Don't set the bounds every time the scrollbar is updated
17154         - When updating below the root node use an invalidate instead of a
17155         refresh to prevent the child controls (scrollbars) from being
17156         refreshed. (UpdateBelow still needs to be reworked anyways).
17157         - Reenable SetBottom now that visible orders are set correctly,
17158         added some debug code incase we ever get bad values there again.
17159         - Set the scrollbar max to 2 less then the max value, this
17160         compensates for the max value being one above the node count, and
17161         for scrollbars adding one extra "notch".
17162         - When drawing image nodes if there is an imagelist we draw the
17163         first image in the list if the supplied image index is out of the
17164         image list's bounds.
17165         
17166 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
17167
17168         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
17169           we receive a size change from the WM (Fixes #78503)
17170
17171 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
17172
17173         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
17174           rectangle (Fixes #78501)
17175
17176 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
17177
17178         * ButtonBase.cs: 
17179           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
17180             as a bitfield.
17181           - Fixed MouseMove to no longer switch pressed state unless the left
17182             mouse button is pressed. Atsushi provided the original patch (#78485)
17183           
17184 2006-05-24  Jackson Harper  <jackson@ximian.com>
17185
17186         * ScrollBar.cs: New internal methods that allow us to change a
17187         couple values on the scrollbar (the most common case is maximum
17188         and large change) without getting multiple invalidates.
17189
17190 2006-05-24  Chris Toshok  <toshok@ximian.com>
17191
17192         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
17193         (Edit): save off the original state in oldState, and set
17194         grid.is_editing to true.
17195         (OnKeyDown): abort editing if escape is pressed.  also, call
17196         NextState if space is pressed.
17197         (OnMouseDown): call NextState.
17198         (NextState): factor out shared code from OnKeyDown and OnMouseDown
17199         here.  Also, only invalidate the row header once (on the initial
17200         is_changing switch) to save on redraws.
17201
17202 2006-05-24  Chris Toshok  <toshok@ximian.com>
17203
17204         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
17205         if the value in the cell is different than it was before.  This
17206         keeps us from triggering a layout when we move around a datarid
17207         with a highlighted cell.
17208         (Edit): suspend layout when creating/positining the text box, and
17209         resume passing false so we don't ever actually re-layout.
17210         (ReleaseHostedControl): same.
17211         (EnsureTextBox): reformat slightly, and set WordWrap to false.
17212
17213         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
17214         control-key sequences should go to the datagrid - remove that
17215         lock.  Also, modify the conditions under which we move between
17216         cells when moving the cursor within a cell, and remove the "this"
17217         and "base" from field accesses.  We weren't even consistent, given
17218         they all were in the base class.
17219
17220 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
17221
17222         * Binding.cs : (.ctor)
17223           An obvious NRE fix for BindingTest.CtorNullTest().
17224
17225 2006-05-23  Chris Toshok  <toshok@ximian.com>
17226
17227         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
17228         them between lines.  This fixes some quirks editing cells in the
17229         datagrid.
17230
17231 2006-05-23  Jackson Harper  <jackson@ximian.com>
17232
17233         * TreeView.cs: Use begin/end update when doing expand/collapse all
17234         so that we don't get flicker on the scrollbar.
17235
17236 2006-05-23  Jackson Harper  <jackson@ximian.com>
17237
17238         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
17239         treenode calculations to be independant of the painting code. To
17240         do this nodes track a visible order which is calculated by the
17241         treeview.
17242         - Call new methods for expanding/collapsing nodes.  These methods
17243         use scrollwindow so we don't have to update everything below the
17244         node.
17245         * TreeView.cs: Refactored drawing and scrolling code.  We don't
17246         need to update nodes when drawing anymore or calculate scrollbar
17247         stuff.
17248         - Added new methods for expanding/collapsing nodes. These methods
17249         use ScrollWindow so as to not have to redraw all the nodes below.
17250         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
17251         we add/remove nodes or sort.
17252         - Handle removing the selected and the top node properly.
17253
17254 2006-05-23  Chris Toshok  <toshok@ximian.com>
17255
17256         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
17257         maybe this should actually happen in the datagrid code?
17258         (EndEdit): no need to invalidate anything, given that
17259         ReleaseHostedControl causes the datagrid to relayout, which
17260         invalidates everything anyway.
17261
17262         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
17263         in SetCurrentCell).
17264         (set_SelectionBackColor): call InvalidateSelection instead of
17265         Refresh.
17266         (set_SelectionForeColor): same.
17267         (BeginEdit): Flesh this out a bit.
17268         (CancelEditing): only do any of this if we're editing/adding.
17269         (EndEdit): same.
17270         (OnMouseDown): there's no need to cancel editing here, it's done
17271         in SetCurrentCell.
17272         (SetCurrentCell): only invalidate the current row header if it's a
17273         different row than the new one.
17274         (ShiftSelection): fix this to work like MS does.
17275         (ResetSelection): factor out the invalidation of selected_rows to
17276         InvalidateSelection.
17277         (SetDataSource): cancel any editing that's going on.
17278
17279         * DataGridColumnStyle.cs
17280         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
17281         call the non-interface version.
17282
17283         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
17284         header rectangle with the clip rectangle so we don't redraw the
17285         entire header for just a small area.  Gets rid of the last flicker
17286         when horizontally scrolling.
17287         (DataGridPaintRow): same.
17288
17289 2006-05-23  Mike Kestner  <mkestner@novell.com>
17290
17291         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
17292         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
17293         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
17294         Critical bug report.
17295
17296 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
17297
17298         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
17299           and this fixes #78493
17300
17301 2006-05-23  Miguel de Icaza  <miguel@novell.com>
17302
17303         * Theme.cs (GetSizedResourceImage): Scale images if the proper
17304         size is not found.  
17305         
17306         * FileDialog.cs: Do not change the background for the side bar as
17307         it wont work nicely with the theme, and also reduces the artifacts
17308         in rendering the icons (which I want to fix too).
17309
17310         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
17311         resources, not resgen resources. 
17312
17313         (PlatformDefaultHandler): Pull images using the new API.
17314
17315 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
17316
17317         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
17318           a reference to the hwnd and will not remove it unless there are
17319           no pending exposures (fixes #78341)
17320         * XplatUI.cs: Improved debug
17321
17322 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
17323
17324         * MenuAPI.cs : don't handle OnClick event when it was not the left
17325           button. Fixed bug #78487.
17326
17327 2006-05-23  Mike Kestner  <mkestner@novell.com>
17328
17329         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
17330         prefer submenus to the top menu for item lookup, to avoid popping down
17331         top-row items.
17332
17333 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
17334
17335         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
17336           Graphics.FillRectangle as the visual results are really bad (even
17337           on win). We now draw perfect arrows (and perfect shadows when the
17338           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
17339           Pen.DashPattern to draw the dots of each line.
17340
17341 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
17342
17343         * FileDialog.cs: Update the filename combobox when navigating through
17344           the ListView with the cursor keys. Fixes part 7 of bug #78446.
17345
17346 2006-05-22  Mike Kestner  <mkestner@novell.com>
17347
17348         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
17349         Fixes #78463.
17350
17351 2006-05-22  Mike Kestner  <mkestner@novell.com>
17352
17353         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
17354         requests. Fix a misspelled parameter and a copy paste exception error
17355         in Select.
17356
17357 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
17358
17359         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
17360           to get the same width/height (5/13) on X11 as the default font has on
17361           win32. This means that our DefaultFont emSize is smaller than the 
17362           the MS SWF equivalent (even thought the width/height stays the same)
17363
17364 2006-05-20  Jackson Harper  <jackson@ximian.com>
17365
17366         * MdiClient.cs:
17367         * MdiWindowManager.cs:
17368         * InternalWindowManager.cs: Make sure to use the border width from
17369         the theme.
17370
17371 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
17372
17373         * PrintDialog.cs: Implements printer details
17374
17375 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
17376
17377         * FileDialog.cs: Added focus handling for PopupButtonPanel.
17378           Fixes part 1 and 2 of bug #78446
17379
17380 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
17381
17382         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
17383           instead of sticking to the first ever calculated value
17384
17385 2006-05-19  Mike Kestner  <mkestner@novell.com>
17386
17387         * ComboBox.cs: fix mouse motion selection to use MousePosition and
17388         PointToClient, since Capture is set. Fixes #78344.
17389
17390 2006-05-19  Mike Kestner  <mkestner@novell.com>
17391
17392         * ListView.cs: match MS behavior in Details view where items are not
17393         drawn if Columns.Count == 0. 
17394         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
17395         Use a separate pen to draw the check, since changing the width affects
17396         the box as well.  Fixes #78454.
17397
17398 2006-05-18  Miguel de Icaza  <miguel@novell.com>
17399
17400         * ListView.cs: ArgumentOutOfRangeException, single versions of the
17401         exception should throw the name of the invalid argument.
17402
17403         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
17404         there are no files listed. 
17405
17406 2006-05-18  Jackson Harper  <jackson@ximian.com>
17407
17408         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
17409         up.
17410
17411 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17412
17413         * Control.cs: Brought back our old UpdateZOrder method as a private
17414           function and switched our calls from UpdateZOrder to the new one.
17415           This fixes the Paint.Net canvas disappearing bug.
17416
17417 2006-05-18  Jackson Harper  <jackson@ximian.com>
17418
17419         * Theme.cs:
17420         * ThemeWin32Classic.cs:
17421         * InternalWindowManager.cs: Move the drawing into the theme,
17422         expose everything the theme should need from the window manager.
17423
17424 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17425
17426         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
17427           from the call to NativeWindow to avoid walking up the parent chain
17428           further than needed (speeds up setting cursors and avoids setting
17429           the wrong cursor if a parent has another cursor defined)
17430         * Cursor.cs: When loading an icon as cursor, MS uses the center of
17431           the icon as hotspot, not what's contained as hotspot in the icon
17432           file. This fixes the perceived drawing offset seen with Paint.Net
17433         
17434 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17435
17436         * XplatUIX11.cs: 
17437           - Store the calculated rectangle in Hwnd object and use it when 
17438             setting the client size
17439           - Force Toolwindows to always be type Dock, to ensure they're on top
17440
17441 2006-05-18  Mike Kestner  <mkestner@novell.com>
17442
17443         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
17444         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
17445         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
17446         Substantial refactoring to remove confusing nested classes. Coding
17447         standard and Get+Set->property refactorings.  Shift to index based
17448         highlighting in ComboListBox instead of constantly using IndexOf and
17449         Items[]. Add invalidations on resize for DropDownList to fix ugliness
17450         in FileDialog growth.  Draw borders manually since Simple mode needs
17451         to look like two independent controls.  Make listbox border
17452         conditional to DropDownStyle.  Improved OwnerDraw support.
17453
17454 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
17455
17456         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
17457         Don't set the disposed graphics to null, so we can throw the "right"
17458         exception if the graphics is reused later (added a flag to avoid 
17459         double disposing). Some behaviours are different under 2.0 and are
17460         filled under bug #78448.
17461
17462 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17463
17464         * Control.cs: When double-buffering is enabled, we need to reset
17465           our graphics context between paint calls. Otherwise, any 
17466           transformations and other alterations on the context will 
17467           become cumulative (#77734)
17468
17469 2006-05-18  Mike Kestner  <mkestner@novell.com>
17470
17471         * ListView.cs: do focused item selection like MS on clicks. 
17472         Rework focus handling for ItemControl so LostFocus invalidates as
17473         well.
17474         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
17475         the ListView ItemControl has focus.
17476
17477 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
17478
17479         * XplatUIX11.cs: If client_window ends up being width or height zero
17480           due to border settings, move it off window inside whole_window (#78433)
17481
17482 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17483
17484         * Mime.cs: Shrink the mime file cache correctly.
17485
17486 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17487
17488         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
17489
17490 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17491
17492         * XplatUIX11.cs (AddExpose): More sanity checks
17493
17494 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17495
17496         * XplatUIX11.cs:
17497           - AddExpose: Don't add expose ranges outside the size of our
17498             window
17499           - Cast opacity values to Int32 to avoid crashes with certain
17500             values
17501           - Added disabled code paths that protect against illegal cross-
17502             thread painting (Developers.exe)
17503
17504 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17505
17506         * ProgressBar.cs: Invalidate the control when it's resized
17507           since block size is based on control size. (#78388)
17508
17509 2006-05-16  Miguel de Icaza  <miguel@novell.com>
17510
17511         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
17512         of setting the incoming argument to the "reset" value, we set the
17513         this.datamember to string.empty (before we were invalidating the
17514         incoming data).   
17515
17516         Fixes 78420
17517
17518 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17519
17520         * Form.cs: Only apply transparency settings after the form
17521           is created. (Fixes #77800)
17522
17523 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17524
17525         * ApplicationContext.cs: Grab the HandleDestroyed event so
17526           we know when to fire OnMainFormClosed 
17527
17528 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17529
17530         * Application.cs: Introduced sub-class to allow tracking of
17531           threads and centralized triggering of the event mess for
17532           ThreadExit, AppExit, etc..  (#76156)
17533
17534 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
17535
17536         * MimeIcon.cs:
17537           - Do not return a null icon index value for a mime subclass.
17538             Instead try the main mime type class too.
17539           - Seems that some newer distributions don't have a link to some
17540             gnome default icons anymore. So check the default gnome dir too.
17541           
17542
17543 2006-05-16  Jackson Harper  <jackson@ximian.com>
17544
17545         * MdiClient.cs: Don't paint the parent background image if we have
17546         our own background image.
17547
17548 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17549
17550         * Control.cs:
17551           - PerformLayout: Do not shrink space filled by DockStyle.Fill
17552             controls, all filled controls are supposed to overlap (#78080)
17553           - UpdateZOrder is supposed to update the control's z-order in the
17554             parent's z-order chain. Fixed to behave like that
17555           - BringToFront: Removed obsolete code
17556           - SendToBack: Simplyfied
17557           - SetChildIndex: Trigger layout calculations when Z-order changes
17558             since layout is done by z-order
17559
17560 2006-05-16  Chris Toshok  <toshok@ximian.com>
17561
17562         [ fixes bug #78410 ]
17563         * DataGrid.cs (set_AlternatingBackColor): use
17564         grid_drawing.InvalidateCells instead of Refresh().
17565         (set_BackColor): call grid_drawing.InvalidateCells.
17566         (set_BackgroundColor): use Invalidate instead of Refresh.
17567
17568         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
17569         invalidate the cell area.
17570
17571 2006-05-15  Chris Toshok  <toshok@ximian.com>
17572
17573         [ fixes bug #78011 ]
17574         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
17575         on to DataGridPaintRow.
17576         (DataGridPaintRow): take a clip argument, and only draw the cells
17577         which intersect it.  same with the not_usedarea.
17578
17579         * Theme.cs (DataGridPaintRow) add @clip parameter.
17580
17581         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
17582         XplatUI.ScrollWindow.
17583         (ScrollToRow): same.
17584
17585         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
17586         with last column which was causing a gray swath to appear with the
17587         XplatUI.ScrollWindow code.
17588
17589 2006-05-15  Chris Toshok  <toshok@ximian.com>
17590
17591         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
17592         use XplatUI.ScrollWindow.
17593         (VerticalScrollEvent): use XplatUI.ScrollWindow.
17594
17595 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
17596
17597         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
17598
17599 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17600
17601         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
17602           file since there are no equivalent X11 cursors
17603
17604 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17605
17606         * MonthCalendar.cs : DateTimePicker should reflect selected date
17607           on mouse*up*, not mouse*down*. Fixed originally reported part of
17608           bug #76474.
17609
17610 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17611
17612         * TabControl.cs : When argument index is equal or more than tab
17613           count, just ignore. Fixed bug #78395.
17614
17615 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17616
17617         * Control.cs: Dispose all child controls when control is diposed (#78394)
17618
17619 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17620
17621         * ColorDialog.cs: Finally it is possible to select the color with
17622           the text boxes
17623
17624 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17625
17626         * PrintDialog.cs: Fix typo
17627
17628 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17629
17630         * PrintDialog.cs: PrintDialog is not resizable
17631         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
17632           color. Made some ToolBar drawing methods protected virtual.
17633
17634 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
17635
17636         * PrintDialog.cs: Implementation of the PrintDialog
17637
17638 2006-05-12  Chris Toshok  <toshok@ximian.com>
17639
17640         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
17641         thumb, instead use MoveThumb.  This has the side effect of making
17642         most of the other thumb moving machinery use MoveThumb as well.
17643         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
17644         need to actually invalidate the rectangle where the new thumb will
17645         go.
17646         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
17647         We force an Update() after, so it's not as fast as it could be,
17648         but at least there's zero flicker and no droppings.
17649         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
17650         (UpdateThumbPos): add another argument (dirty), which says whether
17651         or not to calculate/add dirty regions which we later invalidate.
17652         For cases where we know we're going to use MoveThumb, we pass
17653         false for this.  Otherwise, pass true.
17654
17655 2006-05-12  Jackson Harper  <jackson@ximian.com>
17656
17657         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
17658         the status bar.
17659         
17660 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
17661
17662         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
17663           and GetClipRegion methods and UserClipWontExposeParent property.
17664         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
17665           overriding UserClipWontExposeParent property, setting to false, since
17666           Win32 handles the required expose messages to draw our clipped parent
17667           areas internally
17668         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
17669           PaintEventStart to set the user clip region if set.
17670         * Control.cs: 
17671           - Now internally tracking the Region for the control since we need to
17672             store it if the handle is not yet created and only set it when it
17673             becomes created. Before setting the region forced handle creation
17674           - Added code to draw the parents underneath a user-clipped region
17675         * Hwnd.cs: Added UserClip property
17676
17677 2006-05-12  Chris Toshok  <toshok@ximian.com>
17678
17679         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
17680         (set_Maximum): same.
17681         (set_Minimum): same.
17682         (set_SmallChange): same.
17683         (OnMouseUpSB): remove the call to refresh when releasing the
17684         thumb.  We shouldn't need it.
17685         
17686 2006-05-12  Miguel de Icaza  <miguel@novell.com>
17687
17688         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
17689         AutoSize set to None, we do not need to relayout everything, we
17690         just need to invalidate the current region.
17691
17692         (Draw): Do not draw the entire ClientArea, just redraw the
17693         clip area being passed.
17694
17695         * MdiClient.cs: Make MdiClient constructor with the Form argument
17696         internal. 
17697
17698 2006-05-12  Jackson Harper  <jackson@ximian.com>
17699
17700         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
17701         parents background image,  but strangely not their own.
17702         - (DrawStatusBarPanel): Take into account horizontal alignment
17703         when drawing the strings and icons.
17704
17705 2006-05-12  Mike Kestner  <mkestner@novell.com>
17706
17707         * ListBox.cs: avoid invalidations for focus when the collection is
17708         empty. 
17709
17710 2006-05-12  Chris Toshok  <toshok@ximian.com>
17711
17712         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
17713         invalidate the entire thumb area.  Call InvalidateDirty which
17714         limits the redraw to the thumb itself and surrounding pixels.
17715
17716         * XplatUIX11.cs (ScrollWindow): optimize copying.
17717         
17718 2006-05-12  Chris Toshok  <toshok@ximian.com>
17719
17720         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
17721         Figure out the positioning/layout in a single pass instead of
17722         multiple recursive invocations.  Speeds up the initial display of
17723         the data grid.  Also, make many things private that were
17724         originally public but unused outside this class.
17725
17726 2006-05-11  Jackson Harper  <jackson@ximian.com>
17727
17728         * MdiClient.cs: Improved layout code.
17729
17730 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
17731
17732         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
17733           not SelectedObject.
17734
17735 2006-05-11  Chris Toshok  <toshok@ximian.com>
17736
17737         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
17738         union of that will always be {0,0,width,height}.
17739
17740 2006-05-11  Jackson Harper  <jackson@ximian.com>
17741
17742         * Form.cs: Match MS's DefaultSize for forms (they must have
17743         changed the size in sp2).
17744
17745 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17746
17747         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
17748
17749 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17750
17751         * TextControl.cs : Fixed bug #78109. This incorrect position
17752           comparison caused crash on automatic line split.
17753         * TextBoxBase.cs : reduce duplicate code.
17754
17755 2006-05-10  Jackson Harper  <jackson@ximian.com>
17756
17757         * MdiClient.cs: Active form is only sent to the back when using
17758         the Next form functionality, when a form is clicked the current
17759         active shouldn't be sent to the back.
17760         - Layout the mdi windows when the container is first made visible.
17761         * Form.cs: Give the MdiClient a ref to the containing form when we
17762         create it.
17763         
17764 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17765
17766         * LinkLabel.cs : link_font could be uninitialized, so populate one
17767           before actual use. Fixed bug #78340.
17768
17769 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17770
17771         * XplatUIX11.cs : clipboard format native value is IntPtr.
17772           Fixed bug #78283.
17773
17774 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17775
17776         * Control.cs: 
17777           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
17778             which is passed up the parent chain by DefWndProc
17779           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
17780             to DefWndProc (#77956)
17781         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
17782
17783 2006-05-10  Jackson Harper  <jackson@ximian.com>
17784
17785         * MdiClient.cs: We need to remove the controls from the mdi
17786         collection, when we close the window.
17787         * MdiWindowManager.cs: Special handling of closing mdi windows.
17788         * InternalWindowManager.cs: Make the close method virtual so the
17789         mdi window manager can handle it specially.
17790
17791 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
17792
17793         * DataGrid.cs:
17794           - Recalculate grid when the data source has changed
17795           - Matches styles provided by user from all data sources types
17796         * DataGridTableStyle.cs: For columns that provided by the user set the
17797         with the preferred value is there was unassigned.
17798         * CurrencyManager.cs: throw OnItemChanged event
17799
17800 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
17801
17802         * PictureBox.cs: Don't animate until handle is created. Start animation
17803           when handle is created.
17804
17805 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17806
17807         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
17808           current codebase.
17809         * XEventQueue.cs: We don't need to provide the extra info
17810
17811 2006-05-10  Jackson Harper  <jackson@ximian.com>
17812
17813         * MdiClient.cs: If the mdi clients parent form has a background
17814         image set, we draw that background image for the mdi area's
17815         background.
17816
17817 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17818
17819         * TextBoxBase.cs: Set IBeam cursor (#78347)
17820
17821 2006-05-10  Mike Kestner  <mkestner@novell.com>
17822
17823         * ToolBar.cs: fix some text padding issues with ButtonSize
17824         calculation. Update the default size to match MS documentation.
17825         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
17826         button size. Fixes #78296.
17827
17828 2006-05-10  Mike Kestner  <mkestner@novell.com>
17829
17830         * ListBox.cs: use is_visible for scrollbar positioning in case the
17831         control isn't on screen yet.  Fix off by one with Right vs Width
17832         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
17833         
17834 2006-05-10  Jackson Harper  <jackson@ximian.com>
17835
17836         * X11Dnd.cs: Drop to a control with another control on top of it.
17837         * ToolBar.cs: Work on a copy of the buttons list, so that it can
17838         be modified in click handlers. TODO: Look for similar problems in
17839         other controls.
17840
17841 2006-05-09  Jackson Harper  <jackson@ximian.com>
17842
17843         * Form.cs: Window managers need the old window state when setting
17844         window state now.
17845         * InternalWindowManager.cs: Allow the base mdi window manager to
17846         handle more of the MDI only stuff (like maximize buttons).
17847         * MdiWindowManager.cs: Fix some snafus in changing the window
17848         state.  Add all the menu functionality, for both popup and
17849         maximized menus.
17850         * MdiClient.cs: When a new form is selected the currently
17851         activated form is sent to the back, this matches MS.
17852         - Implement a new method to activate the next mdi child window.
17853
17854 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
17855
17856         * Control.cs: 
17857           - Added new InternalCapture method to allow controls to prevent
17858             the capture behaviour on the click handlers
17859           - Switched to use InternalCapture
17860         * ComboBox.cs:
17861           - Using InternalCapture to prevent mouse captures from being released
17862             on mouse button release (Fixes #78100)
17863         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
17864           returns Form borders if a caption is present. (Fixes #78310)
17865
17866 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
17867
17868         * TreeNode.cs: Changed serialization .ctor to not require every field
17869           to be present. (#78265)
17870         * OwnerDrawPropertyBag.cs: Added serialization .ctor
17871
17872 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
17873
17874         * MimeIcon.cs: for is faster than foreach for strings.
17875
17876 2006-05-05  Mike Kestner  <mkestner@novell.com>
17877
17878         * CheckedListBox.cs: update check handling code to not use selected.
17879         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
17880         behavior for visual feedback, motion response, shift/ctrl handling,
17881         and properly deal with all 4 selection modes. Updates to bounds
17882         handling logic.  Add scroll wheel support. [Fixes #77842]
17883
17884 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17885
17886         * ListView.cs:
17887           - Moved adding of Implicit controls into .ctor. That way, subsequent
17888             creation of the controls will not cause them to think they are 
17889             toplevel windows (fixes #78200 header problem)
17890           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
17891           - Switched visibility setting of header control to use internal field
17892             to avoid triggering handle creation
17893           - Now checking if handle is created before causing a refresh when items
17894             are added (This makes us now match handle creation time with MS)
17895         * Splitter.cs: Removed loading of private splitter cursor, switched to
17896           Cursors version now that that is loading the right ones
17897         * Cursors.cs: Load proper splitter cursors from resources
17898         * Cursor.cs: Added second method of loading resource cursors for the 
17899           VS.Net users amongst us
17900
17901 2006-05-05  Mike Kestner  <mkestner@novell.com>
17902
17903         * ListView.cs: give header_control a minimum size based on the
17904         ListView size.
17905
17906 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17907
17908         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
17909           window seems to do that with metacity, so set that type. (#78120)
17910
17911 2006-05-05  Mike Kestner  <mkestner@novell.com>
17912
17913         * ListViewItem.cs: fix Details mode checkbox layout bug.
17914         * ThemeWin32Classic.cs: draw a ListView column header for unused space
17915         at the end of the header, if it exists. [Fixes for #78200]
17916
17917 2006-05-04  Jackson Harper  <jackson@ximian.com>
17918
17919         * MdiClient.cs: Add a helper property to get the container form.
17920         * MdiWindowManager.cs: We have to make sure to use the menu origin
17921         when drawing the icons and buttons, this fixes maximized window
17922         icons/buttons on win32.
17923         * InternalWindowManager.cs: Reset the restore captions when a
17924         window goes from Maximized to Minimized and vice versa. Move the
17925         DrawMaximizedButtons into the MdiWindowManager source, tool
17926         windows can't be maximized. NOTE: This could use a little
17927         refactoring if time ever permits.
17928         
17929 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17930
17931         * TextBox.cs: Add MWFCategoryAttributes
17932         * TextBoxBase.cs: Add MWFCategoryAttributes
17933         * Form.cs: Add MWFCategoryAttributes
17934
17935 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17936
17937         * Control.cs: Add MWFCategoryAttributes
17938         * ScrollableControl.cs: Add MWFCategoryAttributes
17939
17940 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
17941
17942         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
17943           Divider is true. Fix a little glitch in PropertyToolBar
17944           drawing code
17945
17946 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
17947
17948         * Control.cs:
17949           - Dispose: Call base.Dispose, this causes the disposed event
17950             to be fired (and probably other, more important stuff)
17951           - SetVisibleCore: Set is_visible to true after creating the
17952             window so that the window still gets created invisible (if
17953             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
17954             to generate a WM_ACTIVE message
17955         * Form.cs: Call Dispose when we want to destroy the window, instead of
17956           just destroying the handle (Dispose will do that for us)
17957         * XplatUIX11.cs:
17958           - RootWindow also needs a queue, so we can properly process the
17959             property change events from RootWindow (like Activate)
17960           - Generatic synthetic WM_ACTIVE message when the active window is
17961             being destroyed
17962
17963 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
17964
17965         * LinkLabel.cs: Trigger a recalc of our label dimensions when
17966           bounds are changed
17967
17968 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
17969
17970         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
17971           for determining width and height (image might not be assigned if
17972           we're drawing an imagelist)
17973
17974 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
17975
17976         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
17977         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
17978           height from system
17979         * Theme.cs: No longer returns hardcoded menu height, instead calls
17980           new driver method
17981         * Form.cs (OnLoad): Scaling happens before triggering Load events 
17982           on MS (# 78257)
17983
17984 2006-05-01  Mike Kestner  <mkestner@novell.com>
17985
17986         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
17987
17988 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
17989
17990         * TextBoxBase.cs: Removed Fixme
17991         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
17992
17993 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
17994
17995         * XplatUIX11.cs:
17996           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
17997             the rectangle relative to the parent, considering borders. We
17998             don't really want that.
17999           - ScrollWindow: Fixed warning to be more understandable
18000         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
18001           scrollbars and scroll only the visible area
18002         * RichTextBox.cs: Removed debug output
18003
18004 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18005
18006         * NumericUpDown.cs (Text): Just use base
18007         * UpDownBase.cs: Ensure txtView is created before using it
18008
18009 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
18010
18011         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
18012           casting to IntPtr to avoid 64bit overflow errors
18013
18014 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18015
18016         * Control.cs:
18017           - AllowDrop: Don't force handle creation.
18018           - CreateHandle: Added call to tell driver if we're allowed to drop
18019
18020 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18021
18022         * FileDialog.cs: Remember the last directory not only for the
18023           current instance but also for new FileDialog instances.
18024
18025 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
18026         
18027         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
18028           broke sending async messages
18029
18030 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18031
18032         * XplatUIX11.cs:
18033           - ScrollWindow: Fixed method. We finally generate expose events again
18034             for scrolled areas. This was causing 'garbage' when scrolling
18035             textbox and other controls that used ScrollWindow
18036           - Switched from using the regular queue for paint events to the MS 
18037             model of 'generating' paint events when the queue is empty.
18038             We use the new XQueueEvent.Paint subclass to store which windows
18039             need painting.
18040           - AddExpose now takes the x/y/width/height of the exposed area
18041             and inserts the window into the paint queue if not already there
18042           - InvalidateWholeWindow: Switched to use new AddExpose method
18043           - UpdateMessageQueue: Added which queue to monitor for paint events
18044           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
18045             the unlikely case nothing above handles it. We reset the expose
18046             pending states to get them off the queue.
18047           - GetMessage: Now pulls a paint event if no other events are in the
18048             queue
18049           - Invalidate: Switched to new AddExpose method
18050           - PeekMessage: Updated to understand pending paint events
18051           - UpdateWindow: Fixed logic bug. We were only updating if the window
18052             didn't need updating. Also switched to sending WM_PAINT directly,
18053             like MS does.
18054         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
18055           and random access Remove(). The random access is needed to handle
18056           UpdateWindow() where a WM_PAINT is sent directly without accessing
18057           the queue.
18058         * ScrollBar.cs: Added Update() calls to cause immediate updates to
18059           allow for better feedback when scrolling. Scrollbars are small and
18060           the immediate update should make it 'feel' more responsive without
18061           slowing things down. ScrollBar still needs it's invaliate logic
18062           updated to not always invalidate the whole bar on certain changes.
18063
18064 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18065
18066         * Control.cs:
18067         (BackColor): if the control does not support a transparent background,
18068         return the default backcolor when the parent backcolor is transparent.
18069
18070 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
18071
18072         * Application.cs: Updated to new StartLoop/GetMessage API
18073         * RichTextBox.cs: Provide some output on RTF parsing errors
18074         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
18075           new queue_id argument to GetMessage and PeekMessage to allow faster
18076           handling of per-thread queues in drivers.
18077         * Hwnd.cs: Added Queue tracking and property
18078         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
18079         * XEventQueue.cs: Added thread trackingA
18080         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
18081         * XplatUIX11.cs:
18082           - Implemented new per-thread queue
18083           - GetMessage: Fixed return/break behaviour on several cases. We were
18084             returning stale messages in some cases, instead of just processing
18085             the next message
18086
18087 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
18088
18089         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
18090
18091 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
18092
18093         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
18094           fixed off-by-one comparisons between Width/Height and Right/Bottom.
18095
18096 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
18097
18098         * PropertyGridView.cs: Fix drop down width.
18099
18100 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18101
18102         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
18103           a mess in DrawToolBar, so I removed one of them.
18104
18105 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18106
18107         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
18108           needed (clip). Otherwise we get artifacts.
18109
18110 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
18111
18112         * FixedSizeTextBox.cs: Added constructor to allow specifying which
18113           dimension is fixed
18114         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
18115           and switched FixedSizeTextBox to only be fixed vertical (#78116)
18116         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
18117           if it matches the scale base font (avoids unneeded scaling)
18118
18119 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
18120
18121         * X11DesktopColors.cs: One gtk_init_check should be enough
18122
18123 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
18124
18125         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
18126           match MS behaviour
18127
18128 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
18129
18130         * TextBoxBase.cs: 
18131           - Generate OnTextChanged for Backspace even if we're only deleting
18132             the current selection
18133           - When setting the Text property, only select all text if the
18134             control does not have focus when it is being set. Otherwise
18135             just place the cursor at the beginning of the control
18136
18137 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
18138
18139         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
18140           Added a little helper to draw PropertyGrid ToolBar with a different
18141           border and a different BackColor.
18142         * PropertyGrid.cs: Some background parts didn't get painted with the
18143           correct background color. Added a class that helps us to draw the
18144           correct border for PropertyGridView and a class that helps us to
18145           draw ToolBars with a different backcolor
18146         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
18147
18148 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
18149
18150         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
18151         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
18152
18153 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
18154
18155         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
18156           into the palette entries. Also, since we're working on a copy
18157           we needed to copy the palette back onto the bitmap.
18158         * Cursor.cs: Same fix as XplatUIWin32.cs.
18159
18160 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
18161
18162         * ImageListStreamer.cs: Need to read the var (or we're off)
18163
18164 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
18165
18166         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
18167           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
18168           TextBoxBase.cs: Unused var fixes
18169         * AxHost.cs: Small 2.0 fix
18170         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
18171           as it seems that is what at least Metacity expects. This will make
18172           icons show up on 64bit platforms. We still have some 64bit size
18173           issues, though, since the startup app window size still won't match.
18174
18175 2006-04-25  Mike Kestner  <mkestner@novell.com>
18176
18177         * *.cs: cleanup newly reported exception var unused warnings.
18178
18179 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18180
18181         * ThemeWin32Classic.cs: Button image alignment now matches exactly
18182           ms
18183
18184 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18185
18186         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
18187           image. The image position is always the same, no matter if the
18188           button is pressed or not.
18189
18190 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18191
18192         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
18193           selection and set the correct filename for SaveFileDialog.
18194           Patch by Emery Conrad.
18195
18196 2006-04-24  Mike Kestner  <mkestner@novell.com>
18197
18198         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
18199         check for item.X outside the ClientRect instead of item.Y. Fixes
18200         #78151.
18201
18202 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18203
18204         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
18205         trust that value blindly and do some sanity check. Fixes bug #77814.
18206
18207 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18208
18209         * ImageListStreamer.cs: save the mask as a 1bpp image.
18210
18211 2006-04-21  Mike Kestner  <mkestner@novell.com>
18212
18213         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
18214         pass Checked and Indeterminate to the Theme Engine. Improve
18215         encapsulation with ListBox.
18216         * ListBox.cs: Keep a StringFormat instead of calculating it every item
18217         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
18218         nested types.  Move all CheckState functionality to CheckedListBox.
18219         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
18220         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
18221         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
18222         single base list. Fix scrollbar sizing and placement to mirror MS.
18223         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
18224         used.
18225         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
18226         for CheckedListBox by using new DrawItemState info.  Center the
18227         checkboxes on the items. Use new StringFormat property.
18228
18229 2006-04-18  Jackson Harper  <jackson@ximian.com>
18230
18231         * Form.cs: MdiChildren don't do default locations the same way as
18232         regular forms.  This prevents a crash when trying to position the
18233         mdi windows.
18234
18235 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
18236
18237         * PropertyGridTextBox.cs: Formatting, copyright
18238         * PropertiesTab.cs: Formatting
18239         * PropertyGrid.cs: Formatting
18240         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
18241           click toggling of values
18242           
18243 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
18244
18245         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
18246         * Control.cs (.ctor): verify_thread_handle is static, don't reset
18247           every time a control is created
18248         * Application.cs: Removed obsolete EnableRTLMirroring method
18249
18250 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
18251
18252         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
18253         SelectedIndex to -1. Fixes bug #78121.
18254
18255 2006-04-17  Jackson Harper  <jackson@ximian.com>
18256
18257         * Binding.cs: Handle null values for Current and BindingContext.
18258         This occurs when binding is a little delayed.
18259         * CurrencyManager.cs: return null for Current when there are no
18260         items in the list.
18261         - Hookup to the listchanged event on the DataView and update
18262         bindings when the list is changed.  This fixes late binding of
18263         controls.
18264
18265 2006-04-17  Jackson Harper  <jackson@ximian.com>
18266
18267         * X11Dnd.cs:
18268         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
18269         Ringenbach.
18270
18271 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
18272
18273         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
18274           place
18275         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
18276           with the correct ButtonState
18277
18278 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
18279
18280         * XplatUIX11.cs: Improved distinguishing between window types to
18281           tell the WM a type closer to what the app wants (Fixes #78107)
18282
18283 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
18284
18285         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
18286           GrabHandle
18287
18288 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
18289
18290         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
18291           drawing code to reflect the size grip changes
18292
18293 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18294
18295         * ImageListStreamer.cs: fix handling of the mask that follows the main
18296         bitmap when deserializing and serialize it properly. The generated mask
18297         should better be a 1bpp image, but I'll do that later.
18298
18299 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
18300
18301         * FileDialog.cs: Show something in the DirComboBox on *nix if the
18302           path doesn't fit into some of our Current.Places
18303
18304 2006-04-13  Jackson Harper  <jackson@ximian.com>
18305
18306         * ComboBox.cs: Use borders instead of drawing our own decorations,
18307         try to obey correct rules for heights.
18308         * Theme.cs:
18309         * ThemeNice.cs:
18310         * ThemeClearLooks.cs:
18311         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
18312         this is now handled by borders.
18313         - Remove unused DrawListBoxDecorationSize method.
18314         
18315 2006-04-13  Mike Kestner  <mkestner@novell.com>
18316
18317         * MenuAPI.cs: null guarding for the disbled click check fixes crash
18318         reported by Alex.
18319
18320 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
18321
18322         * ThemeWin32Classic.cs: 
18323           - Fixed CPDrawStringDisabled
18324           - Corrected drawing of disabled menu items
18325           - Fixed drawing of disabled radio buttons (bug #78095)
18326           - Draw check in a disabled CheckBox with color ControlDark 
18327
18328 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18329
18330         * Form.cs: Use the provided width when calculating the menu size;
18331           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
18332           and ClientSize.Width won't be updated yet
18333         * Application.cs: Use Visible instead of Show() to make form visible,
18334           this way we create the handle later and menusize is considered
18335
18336 2006-04-12  Mike Kestner  <mkestner@novell.com>
18337
18338         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
18339         reporting.
18340
18341 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18342
18343         * TextBox.cs: Implemented context menu
18344
18345 2006-04-12  Mike Kestner  <mkestner@novell.com>
18346
18347         * ListView.cs: implement box selection. fixes #77838.
18348         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
18349
18350 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18351
18352         * XplatUIX11.cs: Added setting of window type when transient window
18353           is created (metacity would move it otherwise)
18354         * X11Structs.cs: Added WINDOW_TYPE atoms
18355         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
18356           background (the control is Opaque but still wants transparent
18357           backgrounds)
18358
18359 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18360
18361         * Control.cs: Added OnPaintBackgroundInternal to allow controls
18362           that set Opaque but don't mean it (like all ButtonBase-derived
18363           controls) to still draw their background
18364         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
18365           the background
18366
18367 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18368
18369         * Control.cs (PaintControlBackground): Set the graphics object
18370           on our PaintEvent to null to prevent it from being disposed
18371           when the PaintEvent gets disposed
18372
18373 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
18374
18375         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
18376         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
18377
18378 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18379
18380         * Control.cs: 
18381           - Added transparency check to BackColor property. Transparent
18382             backgrounds are only allowed if the control styles permit it
18383           - Added recursive painting of parent control background and
18384             foreground if a control with a transparent backcolor is drawn
18385             (Thanks to Tim Ringenback for providing his 'hack' as a base
18386              for this patch) Fixes #77985 and #78026.
18387           - Added Opaque style check before calling OnPaintBackground, no
18388             need to draw the background if the control is opaque
18389           - Removed ControlAccessibleObject owner variable (inherited from
18390             base, no need to define again)
18391           - Added some documentation links explaining the drawing events
18392             and styles
18393
18394 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18395
18396         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
18397           that the affected control is the located at the left border of our
18398           parent (Fixes #77936)
18399
18400 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18401
18402         * TextBoxBase.cs: When rendering disabled or readonly controls,
18403           draw the background with 'Control' instead of 'Window' color as
18404           long as the user hasn't specifically set a color
18405
18406 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18407
18408         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
18409           since that won't be updated if the user types text (only if it's
18410           programatically set)
18411
18412 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18413
18414         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
18415           layout changes do to app-triggered resizes will have the proper
18416           display rectangle for layout
18417
18418 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
18419
18420         * ThemeWin32Classic.cs:
18421           - Make use of the SystemBrushes and SystemPens wherever possible
18422           - Corrected some highlight colors
18423           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
18424             drawing
18425         * Theme.cs: Added Empty field to CPColor struct
18426
18427 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18428
18429         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
18430           is displayed when calculating the display rectangle. Thanks to Mike
18431           for teaching me the err of my ways.
18432
18433 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
18434
18435         * ScrollableControl.cs:
18436           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
18437             (instead of 0,0) and we now return the real width/height instead of
18438             just the clientrectangle, adjusted for padding. The rectangle is
18439             now cached and created by the new CalculateDisplayRectangle method.
18440           - Created new CalculateDisplayRectange method, which basically does
18441             what get_DisplayRectangle() did originally, but now using the 
18442             right edge instead of DisplayRectangle to determine the size of
18443             our scrollbars
18444           - get_Canvas(): Fixed it to properly calculate canvas for 
18445             right/bottom controls which seem to be placed to the right/bottom
18446             of any controls that have a fixed location
18447           - Removed TODO that's taken care of
18448           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
18449             and SetDisplayRectLocation according to new MSDN2 docs
18450           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
18451             event when that is called, this is added for compatibility
18452           - ScrollControlIntoView(): Implemented.
18453           - Switched scrollbars to be implicit, they shouldn't be selectable
18454         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
18455           call it when the active control is set/changed
18456         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
18457         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
18458           implicit_control variable (used for native Win32 message generation)
18459         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
18460           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
18461         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
18462         * XplatUIStructs.cs: Added ScrollBarCommands enum
18463
18464 2006-04-10  Jackson Harper  <jackson@ximian.com>
18465
18466         * ButtonBase.cs:
18467         * CheckedListBox.cs:
18468         * ComboBox.cs:
18469         * DataGrid.cs:
18470         * DataGridView.cs:
18471         * Form.cs:
18472         * GroupBox.cs:
18473         * ListBox.cs:
18474         * PrintPreviewControl.cs:
18475         * ProgressBar.cs:
18476         * PropertyGrid.cs:
18477         * Splitter.cs:
18478         * StatusBar.cs:
18479         * TrackBar.cs:
18480         * UpDownBase.cs: Fixup base event overrides.
18481         
18482 2006-04-06  Mike Kestner  <mkestner@novell.com>
18483
18484         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
18485         all user-initiated value changes to min <= value <= max-thumbsz+1.
18486         (set_Value): check for vert/horiz when calculating new thumb position.
18487         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
18488         like MS does.
18489         (OnMouseMoveSB): refactor the thumb dragging code and refine
18490         invalidation logic to reduce flicker.
18491         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
18492         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
18493         (UpdateThumbPosition): small code readability cleanup
18494
18495 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
18496
18497         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
18498           different
18499
18500 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18501
18502         * ThemeNice.cs: Use a better graphics effect when a button is pressed
18503
18504 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18505
18506         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
18507         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
18508           This dramatically reduces the number of Pen.Dispose calls. 
18509           Where possible call ResPool methods only once instead of calling it
18510           over and over again (for example for the same color).
18511
18512 2006-04-06  Mike Kestner  <mkestner@novell.com>
18513
18514         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
18515         Also remove an unused private field on the collection. Fixes #77972.
18516
18517 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18518
18519         * ThemeNice.cs: Added ToolBar drawing code
18520
18521 2006-04-06  Mike Kestner  <mkestner@novell.com>
18522
18523         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
18524         I'm assuming that means we need to look up the toplevel for the
18525         provided control. Fixes the crash trace in #77911 but exposes another
18526         crash in some strange reflection usage in NDocGui.
18527
18528 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18529
18530         * ThemeNice.cs: Gave it a little silver touch and added Images
18531           method
18532         * FontDialog.cs: FontDialog is not resizable
18533         * FileDialg.cs: Added SizeGripStyle.Show
18534
18535 2006-04-05  Jackson Harper  <jackson@ximian.com>
18536
18537         * KeyboardLayouts.cs: Remove warning.
18538
18539 2006-04-05  Jackson Harper  <jackson@ximian.com>
18540
18541         * Control.cs: Enable OnPaintInternal so we can use it for drawing
18542         all of our controls instead of Paint +=.
18543         * ListBox.cs:
18544         * ListView.cs:
18545         * MenuAPI.cs:
18546         * MessageBox.cs:
18547         * NotifyIcon.cs:
18548         * ProgressBar.cs:
18549         * ScrollBar.cs:
18550         * Splitter.cs:
18551         * StatusBar.cs:
18552         * TabControl.cs:
18553         * TextBoxBase.cs:
18554         * ToolBar.cs:
18555         * TrackBar.cs:
18556         * UpDownBase.cs:
18557         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
18558         use OnPaintInternal. Remove Width/Height and Visible checks in
18559         paint handler, this is done at a higher level now.
18560         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
18561         * PaintEventArgs.cs: Add a handled flag so controls that don't
18562         want anymore painting after OnPaintInternal can make sure OnPaint
18563         isn't called.
18564
18565 2006-04-05  Mike Kestner  <mkestner@novell.com>
18566
18567         * Form.cs: fix the menu WndProc hacks to respect the native enabled
18568         state of the form, so that we don't process events when Modal dialogs
18569         are up. Fixes #77922.
18570
18571 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
18572
18573         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
18574           checking is done.
18575
18576 2006-04-05  Mike Kestner  <mkestner@novell.com>
18577
18578         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
18579
18580 2006-04-05  Mike Kestner  <mkestner@novell.com>
18581
18582         * ListView.cs (HeaderMouseMove): null guarding for the over column
18583         when setting up the drag_to_index.  Fixes #78015.
18584
18585 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
18586
18587         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
18588           in the taskbar. Transient windows seem to accomplish that.
18589
18590 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
18591
18592         * Form.cs:
18593           - Re-enabled CreateParams.X/Y code for FormStartPosition
18594           - Added code for manual placement when creating the Control
18595           - Incomplete patch to treat MDI forms differently when
18596             setting the ClientSizeCore. (Still need to figure out handling
18597             x/y coords there)
18598         * XplatUIX11.cs:
18599           - When we're explicitly setting the X/Y position of a non-Child
18600             window, let the WM know. Metacity really wants this.
18601
18602 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18603
18604         * ThemeNice.cs: Added CPDrawButton
18605
18606 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18607
18608         * ThemeNice.cs: Changed the color for focused buttons and activated
18609           the arrows for small scroll buttons.
18610
18611 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18612
18613         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
18614           anymore. Changed some method modifiers to protected (virtual)
18615         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
18616           changes
18617         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
18618           Updated drawing of menus, buttons and progressbars; added
18619           CPDrawBorder3D 
18620
18621 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18622
18623         * ImageListStreamer.cs: implemented serialization/deserialization
18624         of the images.
18625
18626 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
18627
18628         * ThemeWin32Classic.cs:
18629           - Removed all the DrawFrameControl stuff; CPDrawButton,
18630             CPDrawCheckBox and CPDrawRadioButton are now handled directly
18631             inside the methods
18632           - Updated and corrected the drawing code of CPDrawButton,
18633             CPDrawCheckBox and CPDrawRadioButton to better match ms
18634           - Updated theme checkbox and radiobutton code to use the CP*
18635             methods
18636
18637 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18638
18639         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
18640           bug is fixed
18641
18642 2006-03-31  Jackson Harper  <jackson@ximian.com>
18643
18644         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
18645         sometimes.
18646         * UpDownBase.cs: Don't CreateGraphics manually, use a
18647         Refresh. Ideally we would invalidate the correct areas here.
18648
18649 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18650
18651         * XplatUIX11.cs: 
18652           - We now track the mapping state of windows. If a window (or 
18653             one of it's parents) is not mapped we no longer permit
18654             WM_PAINT messages to be generated since we'd otherwise get 
18655             lots of BadMatch X errors. Jackson did all the work figuring
18656             out the problem.
18657           - Destroying the caret if the window it's contained in is 
18658             destroyed. Can't use regular DestroyCaret method since it
18659             might fall into a drawing function (trying to remove the
18660             caret) and with that generate new BadMatch errors. Again,
18661             Jackson tracked this down.
18662           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
18663             make sure we send the messages to all windows. (The old code
18664             would send the WM_DESTROY to the window, and then all child
18665             windows would be 'gone' because the WM_DESTROY handle lookup
18666             would no longer find the destroyed window)
18667         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
18668         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
18669
18670 2006-03-31  Jackson Harper  <jackson@ximian.com>
18671
18672         * ScrollableControl.cs: Dont recalc if we are not visible.
18673
18674 2006-03-31  Mike Kestner  <mkestner@novell.com>
18675
18676         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
18677         the visibility branch.
18678
18679 2006-03-31  Jackson Harper  <jackson@ximian.com>
18680
18681         * ScrollBar.cs: Cap values when incrementing/decrementing.
18682
18683 2006-03-31  Mike Kestner  <mkestner@novell.com>
18684
18685         * MenuAPI.cs: setup menu.tracker for popup/context menus.
18686         * ToolTip.cs: guard against timer expirations with no active control.
18687         Not sure why it happened.
18688
18689 2006-03-31  Mike Kestner  <mkestner@novell.com>
18690
18691         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
18692         text.
18693         * ToolTip.cs: Position the tooltip based on where the cursor is at
18694         popup time, not at MouseEnter time.  Add a Down state so that we don't
18695         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
18696         positioning offset. Lookup DisplaySize at positioning time, since it
18697         can theoretically change during invocation.
18698         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
18699         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
18700
18701 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18702
18703         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
18704           Fixes behaviour when the Text property of the box is String.Empty
18705
18706 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
18707
18708         * XplatUIX11.cs: Only send mouseleave for our client windows, not
18709           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
18710           a window)
18711
18712 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18713
18714         * FileDialog.cs: Visual enhancement for the popup buttons in 
18715           PopupButtonPanel
18716
18717 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18718
18719         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
18720           code
18721
18722 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
18723
18724         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
18725           highlighted menu items to match ms
18726
18727 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
18728
18729         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
18730
18731 2006-03-30  Mike Kestner  <mkestner@novell.com>
18732
18733         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
18734         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
18735         go active to account for HotLight to Selected transition.
18736         * MenuItem.cs: add internal Selected prop. Fill out the Status
18737         property by calculating it from item info. Add HotLight,
18738         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
18739
18740 2006-03-30  Mike Kestner  <mkestner@novell.com>
18741
18742         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
18743
18744 2006-03-29  Jackson Harper  <jackson@ximian.com>
18745
18746         * Form.cs: Implement TODO.
18747
18748 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
18749
18750         * PrintPreviewDialog.cs: Implemented missing methods and events; still
18751           missing proper dialog setup in the constructor
18752
18753 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
18754
18755         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
18756         * Control.cs:
18757           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
18758           - Fixed ResetBindings and removed TODO
18759           - Added check for cross-thread calls to get_Handle()
18760           - Added Marshaller attribute for set_Font to satisfy class status
18761         * FontDialog.cs: Removed TODOs that seemed implemented
18762         * UpDownBase.cs: Removed unneeded TODO and Fixme
18763         * MessageBox.cs: Implemented support for Default button and removed TODO
18764         * FileDialog.cs: Removed obsolete TODO
18765         * DomainUpDown.cs: Removed obsolete TODO
18766         * ButtonBase.cs: Removed obsolete TODO
18767         * XplatUIWin32.cs: Removed obsolete TODO
18768         * Form.cs:
18769           - Removed obsolete TODO
18770           - Calling CheckAcceptButton when the acceptbutton is changed to allow
18771             internal status updates
18772           - Making sure the active control is selected when the control is created
18773         * CurrencyManager.cs: Removed obsolete TODO
18774
18775 2006-03-29  Mike Kestner  <mkestner@novell.com>
18776
18777         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
18778         of PrintPreviewDialog and RichTextBox.
18779
18780 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18781
18782         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
18783           DarkDark, Light and LightLight colors for a specific color
18784         * ThemeWin32Classic.cs:
18785           - Use Button drawing code to draw RadioButtons and CheckBoxes with
18786             Appearance = Button 
18787           - Make use of the new ResPool helper CPColor
18788           - Draw ProgressBar and StatusBar with correct 3D borders
18789
18790 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18791
18792         * ColorDialog.cs: Return selected color. Fixes bug #77940.
18793
18794 2006-03-28  Mike Kestner  <mkestner@novell.com>
18795
18796         * ListView.cs: fix Icon layout to plan for scrollbar widths when
18797         calculating col/row counts.
18798
18799 2006-03-28  Mike Kestner  <mkestner@novell.com>
18800
18801         * ColumnHeader.cs:
18802         * ListView.cs:
18803         * ListViewItem.cs:
18804         * Menu.cs: 
18805         switch to explicit interface method implementation for some methods
18806         corcompare identifies as inconsistent with MS.
18807
18808 2006-03-28  Mike Kestner  <mkestner@novell.com>
18809
18810         * MainMenu.cs: 
18811         * Menu.cs:
18812         add a few missing methods from the class status output.
18813
18814 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
18815
18816         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
18817           correct.
18818
18819 2006-03-28  Mike Kestner  <mkestner@novell.com>
18820
18821         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
18822
18823 2006-03-27  Mike Kestner  <mkestner@novell.com>
18824
18825         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
18826         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
18827
18828 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
18829
18830         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
18831
18832 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18833
18834         * ThemeWin32Classic.cs:
18835           - GroupBox: Inserted a little gap between the text and the lines
18836             on the right side
18837           - Made the code in CPDrawBorder3D more readable
18838           - Corrected the drawing location of the up and down arrows in 
18839             CPDrawScrollButton
18840
18841 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18842
18843         * ControlPaint.cs: Corrected line widths in DrawBorder for
18844           ButtonBorderStyle Inset and Outset
18845
18846 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18847
18848         * ThemeWin32Classic.cs:
18849           - Rewrote the totally broken CPDrawBorder3D method. That was
18850             one of the main problems for the terrific ThemeWin32Classic
18851             look
18852           - Updated and corrected Button drawing
18853           - Correct the dimensions of the SizeGrip to match ms ones
18854           - Removed a small drawing glitch in DrawComboBoxEditDecorations
18855         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
18856           Border3DStyle.Sunken to match ms.
18857
18858 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18859
18860         * ThemeWin32Classic.cs: First small part of the "de-uglify
18861           ThemeWin32Classic" effort, SizeGrip
18862
18863 2006-03-24  Jackson Harper  <jackson@ximian.com>
18864
18865         * XplatUIX11.cs: Give a max idle time of one second, this matches
18866         MS and forces an Idle event every second when there are no other
18867         events in the queue.
18868
18869 2006-03-24  Mike Kestner  <mkestner@novell.com>
18870
18871         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
18872         * ListView.Item.cs: fix layout issues with null image lists and images
18873         smaller than checkbox size.
18874         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
18875         mode like MS does.  It's weird, but consistent.  ;-)
18876         Fixes #77890.
18877
18878 2006-03-24  Mike Kestner  <mkestner@novell.com>
18879
18880         * ListView.cs: Scroll wheel support for the item control.  Fixes
18881         #77839.
18882
18883 2006-03-23  Jackson Harper  <jackson@ximian.com>
18884
18885         * ScrollableControl.cs: Special case negative sized areas, not
18886         zero.
18887         * MonthCalendar.cs: Save the rect of the clicked date so we can
18888         use it for invalidation.
18889         - Try to cut down on the number of invalidates
18890         - Invalidate the rect the mouse is over and was over when moving
18891         the mouse, so we get the focus box following the cursor.
18892
18893 2006-03-23  Mike Kestner  <mkestner@novell.com>
18894
18895         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
18896         focus rectangle drawing. Fixes #77835.
18897
18898 2006-03-23  Mike Kestner  <mkestner@novell.com>
18899
18900         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
18901         the if and else if and reverting back to the original == check on the
18902         None conditional.
18903
18904 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18905
18906         * FontDialog.cs: Update the example panel if the selected index of
18907           the fontListBox changes.
18908
18909 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18910
18911         * FileDialog.cs: Make FileDialog remember which directory it was in
18912           last in the same execution.
18913
18914 2006-03-22  Mike Kestner  <mkestner@novell.com>
18915
18916         * FileDialog.cs: make the DropDownMenu on the toolbar display
18917         RadioChecks since they are mutually exclusive and that's what MS does.
18918
18919 2006-03-22  Mike Kestner  <mkestner@novell.com>
18920
18921         * Theme.cs: add Color param to CPDrawMenuGlyph.
18922         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
18923         checks and radio marks and arrows are visible on highlighted items.
18924         * ControlPaint.cs: update to use new Theme signature.
18925
18926 2006-03-22  Mike Kestner  <mkestner@novell.com>
18927
18928         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
18929         is active. Fixes #77870.
18930
18931 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
18932
18933         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
18934           to be focused/selected after startup
18935
18936 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
18937
18938         * ColorDialog.cs: 
18939           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
18940             CustomColors and ShowHelp properties
18941           - Some internal rewrites to get better results when using the
18942             ColorMatrix
18943
18944 2006-03-22  Mike Kestner  <mkestner@novell.com>
18945
18946         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
18947         HoverSelection.  Fixes #77836.
18948
18949 2006-03-22  Mike Kestner  <mkestner@novell.com>
18950
18951         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
18952         ToggleButtons.  (De)Sensitize the Back button around a stack count of
18953         1, not 0.  Update ButtonSize based on a pixel count of the win32
18954         control.  Adjust the toolbar size/location for new button size.
18955
18956 2006-03-22  Jackson Harper  <jackson@ximian.com>
18957
18958         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
18959         true.
18960         * ScrollBar.cs: When doing increments and decrements we need to
18961         set the Value property so that ValueChanged gets raised. A
18962         possible optimization here would be to make an internal SetValue
18963         that doesn't invalidate immediately.
18964         * ToolTip.cs: Tooltips get added to their container (when
18965         supplied) so they get disposed when the container is disposed.
18966         - Don't create tooltips for String.Empty. This prevents all these
18967         little 2-3 pixel windows from showing up when running nunit-gui
18968         and driving me mad.
18969         * Form.cs: Don't set topmost when setting the owner if the handles
18970         haven't been created yet.  The topmost set will happen when the
18971         handles are created.
18972
18973 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
18974
18975         * XplatUIX11.cs:
18976           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
18977           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
18978             visible (to allow them to recalculate their sizes)
18979
18980 2006-03-21  Mike Kestner  <mkestner@novell.com>
18981
18982         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
18983         methods. Removed a ton of redundant code.  Still not really happy with
18984         the border rendering, but I think that's mainly because of the
18985         ControlDarkDark being black instead of a dark grey. Depending on how 
18986         close we want to be, we might want to revisit those color choices.
18987         Among the new features added during the refactor were DropDownArrow
18988         pressed rendering, Disabled image rendering.  Proper flat appearance
18989         boundary rendering.  Removed the Divider and Wrapping dividers since I
18990         can't figure out any combination of themes and conditions to make the
18991         MS control draw a horizontal line on a toolbar despite what the
18992         Divider property docs indicate.
18993         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
18994         conditions and incorrect layout.  Updated to coding standard.
18995         * ToolBarButton.cs: refactored layout and positioning code from
18996         ToolBar to here.  Invalidate wherever possible instead of forcing
18997         redraws of the whole toolbar. 
18998         (Known remaining issues: explicit ButtonSize smaller than provided
18999         images.)
19000
19001 2006-03-21  Mike Kestner  <mkestner@novell.com>
19002
19003         * ContextMenu.cs (Show): use the position parameter instead of just
19004         showing at the MousePosition.
19005
19006 2006-03-21  Jackson Harper  <jackson@ximian.com>
19007
19008         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
19009         control handle this.
19010         * TreeNodeCollection.cs: If we are clearing the root node we need
19011         to reset top_node so calcs can still happen.
19012         * ThemeWin32Classic.cs: This is a Flags so we need to check
19013         properly.
19014         
19015 2006-03-21  Jackson Harper  <jackson@ximian.com>
19016
19017         * DataGrid.cs: Create columns when the binding context has been
19018         changed.
19019         * X11Structs.cs: Keysyms are uints.
19020         - Add size to fix build.
19021
19022 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
19023
19024         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19025           XplatUIOSX.cs: 
19026           - Added ResetMouseHover method to allow controls to retrigger
19027             hovering if they need it more than once
19028           - Implemented MouseHoverTime and MouseHoverSize properties
19029         * Timer.cs: Start() must reset the interval
19030         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
19031           properties
19032
19033 2006-03-21  Jackson Harper  <jackson@ximian.com>
19034
19035         * X11Keyboard.cs: improved layout detection. Move the nonchar
19036         tables into this file.
19037         * KeyboardLayouts.cs: Move the tables into resource files.
19038
19039 2006-03-21  Mike Kestner  <mkestner@novell.com>
19040
19041         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
19042
19043 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
19044
19045         * Mime.cs: Various speed optimizations. Looking up mime types
19046           is now 2 times faster than before
19047
19048 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
19049
19050         * CreateParams.cs: Added internal menu field
19051         * Control.cs: 
19052           - Switched call order for UpdateBounds; now we always call
19053             the one that also takes ClientSize, and we're calculating the 
19054             client size via driver method in the others. The previous
19055             method of tracking client size by difference wasn't working
19056             for forms where even the starting client size wouldn't match
19057             the overall form size (due to borders) (Part of fix for #77729)
19058           - CreateParams(): Do not use parent.Handle unless the handle is
19059             already created. Causes havoc with Nexxia and throws off our
19060             creation of controls
19061         * XplatUIX11.cs:
19062           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
19063           - Switched handling of ConfigureNotify over to new PerformNCCalc 
19064             method (consolidates code)
19065           - Changed RequestNCRecalc to use new PerformNCCalc method
19066           - Added calls to RequestNCRecalc when menus and borders are changed
19067             to allow app to set NC size. (Part of fix for #77729) This matches
19068             when MS send a WM_NCRECALC on Win32 windows.
19069           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
19070             (Part of fix for #77729). This matches what MS does, they also
19071             send that message when the form is made visible.
19072           - XException.GetMessage: Improved usability of X errors by including
19073             a translation of the window into Hwnd and Control class
19074           - Improved debug info for window creation, reparenting and destruction
19075           - Created helper method WindowIsMapped() [Currently not used]
19076         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
19077         * Form.cs:
19078           - CreateParams: Now setting our menu on the new internal menu field
19079           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
19080             avoid calculating the same property twice
19081         * Hwnd.cs:
19082           - Improved usability of ToString() for debugging purposes
19083           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
19084             determine the height of the menu, instead of just the font. This
19085             required to also create a graphics context and to keep a bmp 
19086             around (for performance reasons)
19087
19088 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
19089
19090         * MenuAPI.cs: Added OnMouseUp method
19091         * Form.cs:
19092           - Now remembering the requested client size, avoids size errors
19093           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
19094             instead of base if the menu is active. This is required due to
19095             control now capturing and releasing on down/up and it would
19096             prematurely release our menu capture
19097
19098 2006-03-17  Jackson Harper  <jackson@ximian.com>
19099
19100         * KeyboardLayouts.cs: Add the czech layouts.
19101
19102 2006-03-16  Jackson Harper  <jackson@ximian.com>
19103
19104         * Control.cs: Use the viewport space when sizing not the controls
19105         client size, so things like ScrollableControl that effect the
19106         viewport size (when scrollbars are added) are computed correctly.
19107         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
19108         of ManagerEntrys.
19109         - Handle creating BindingManagers for null data sources.
19110         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
19111         source, otherwise when rows are added they are added to the 'fake'
19112         datasource and we will crash when trying to set the position in
19113         those rows.
19114         - Use Implicit scrollbars on the datagrid so they arent
19115         selectable.
19116         
19117 2006-03-16  Jackson Harper  <jackson@ximian.com>
19118
19119         * Binding.cs:
19120         * InternalWindowManager.cs:
19121         * MdiWindowManager.cs:
19122         * X11Keyboard.cs: I really want Mike to love me again (fix
19123         compiler warnings).
19124
19125 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
19126
19127         * DataGrid.cs:
19128           - OnMouseDown: Switch to editing mode when clicking on the cell
19129                          even if we're clicking on the cell that's currently 
19130                          selected
19131           - ProcessGridKey: Left/Right now wrap like MS.Net does
19132           - ProcessGridKey: Tab now knows to add a new row when tab is
19133                             pressed in the cell of the last column of the 
19134                             last row
19135           - ProcessGridKey: Enter now adds another row  if pressed in the last
19136                             row and selectes the new row, same column cell
19137           - ProcessGridKey: Home/End navigate columns, not rows, like 
19138                             originally implemented
19139           - Broke ProcessKeyPreview code out into an extra Internal method
19140             so it can be called from the edit code
19141         * DataGridTextBox.cs (ProcessKeyMessage):
19142           - Switched to accept Tab keypresses
19143           - Added F2 handling to allow jumping to the end of the edited cell
19144           - Added logic to allow moving caret left/right inside edited cell
19145             and making the edited cell jump when the caret hits cell borders
19146           - Tab and Enter are now passed to the datagrid after being handled
19147         * TextBoxBase.cs:
19148           - Removed capture code now that Control handles it
19149           - set_SelectionStart now ensures caret is visible
19150
19151 2006-03-16  Jackson Harper  <jackson@ximian.com>
19152
19153         * TrackBar.cs: Debackwards the increment/decrement for handling
19154         mouse clicks on the bar with vertical trackbars.
19155         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
19156         bottom to match MS.
19157
19158 2006-03-16  Mike Kestner  <mkestner@novell.com>
19159
19160         * ListView.cs: make shift/ctrl keyboard and mouse selection 
19161         consistent with the MS control. Fix a bug in
19162         SelectedListViewItemCollection.Clear that was pissing me off for the
19163         better part of a day because the collection was being altered
19164         underneath us as we walked the list.
19165
19166 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
19167
19168         * Control.cs: Not sure how we could miss this so long, but it seems
19169           that MS.Net has Capture set all the way from before calling 
19170           OnMouseDown through sending the mouse events until after
19171           OnMouseUp. This will fix DataGrid's selection being set to end
19172           at the location of the MouseUp.
19173
19174 2006-03-15  Jackson Harper  <jackson@ximian.com>
19175
19176         * BindingContext.cs: Check the binding after its added so that it
19177           can initialize the binding managers and hookup to events.
19178         * Binding.cs: Data members seem to sometimes include rows/cols in
19179           the format Row.Column we now take this into account.
19180           - Hookup to the position changed event so we can update the
19181           control when the position has changed in the data set.
19182         * CurrencyManager.cs: Take into account the row/col naming
19183           convention when creating dataset tables.
19184         * BindingContext.cs: Using a newer better way of storing
19185           datasource/datamember pairs.  Hopefully this better matches MS for
19186           looking up binding managers.
19187
19188
19189 2006-03-15  Jackson Harper  <jackson@ximian.com>
19190
19191         * BindingContext.cs: The currency manager needs the data member
19192         name, if the member is a data set we use the name to find the
19193         correct table.
19194         * CurrencyManager.cs: When creating the list prefer an IList over
19195         an IListSource.
19196         - Attempt to create a DataTable from a DataSet (TODO: might need
19197         some better error checking here, although MS doesn't seem to have much)
19198         - If we have a DataTable create a view and use it as our list.
19199
19200 2006-03-15  Mike Kestner  <mkestner@novell.com>
19201
19202         * ListView.cs: keep a matrix of the icon mode layout to facilitate
19203         keyboard navigation. Support Up/Down/Left/Right selection correctly
19204         for all 4 View modes.
19205         * ListViewItem.cs: add internal row/col fields for icon layouts.
19206
19207 2006-03-15  Jackson Harper  <jackson@ximian.com>
19208
19209         * TabControl.cs: Redraw the tabs when we resize so their newly
19210         calculated sizes are drawn on screen.
19211         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
19212         composite characters.
19213         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
19214         - filter events so that composite characters can be created
19215         patches by peter
19216         * X11Structs.cs: Add XIMProperties enum.
19217
19218 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
19219
19220         * Control.cs (BringToFront, SendToBack): Don't use window or handle
19221           unless it's created
19222
19223 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
19224
19225         * Control.cs (PerformLayout): We don't need to consider visiblity
19226           for anchoring, only for docking. This fixes 'whacky' alignment
19227           in listbox and other controls that use implicit scrollbars after
19228           the previous PerformLayout patch
19229         * ListBox.cs: Switched to use implicit scrollbars
19230           
19231 2006-03-14  Mike Kestner  <mkestner@novell.com>
19232
19233         * ToolBar.cs: 
19234         * VScrollBar.cs:
19235         - chain up the "new event" overrides to base and use
19236         OnEvent to raise them.  Part of fix for bug #76509.
19237
19238 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
19239
19240         * FileDialog.cs: Do not select an item in the parent directory
19241           on backspace
19242
19243 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
19244
19245         * Control.cs (PerformLayout): It would seem that we considered
19246           invisible windows for our layout. Not quite the right thing
19247           to do. Now we don't any longer, thereby fixing bug #76889.
19248
19249 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
19250
19251         * Control.cs (CanFocus): I goofed. A control can have focus 
19252           even though it's not selectable. Made it match MS docs.
19253
19254 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19255
19256         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
19257           center by default (fixes #76895)
19258         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
19259           all uses of Border3DSides.All with the explicit ORd together
19260           Left|Right|Top|Bottom because I assume that nobody was aware 
19261           that All also implies a center fill. Most places I checked had
19262           a fill right above.
19263         * ProgressBarStyle.cs: Added
19264
19265 2006-03-13  Mike Kestner  <mkestner@novell.com>
19266
19267         * ListView.cs: fix breakage in drag shadow header positioning 
19268         from Peter's csc compilation fix.
19269
19270 2006-03-13  Mike Kestner  <mkestner@novell.com>
19271
19272         * ListView.cs: fix NRE produced by backspacing twice in a focused
19273         FileDialog.
19274
19275 2006-03-13  Mike Kestner  <mkestner@novell.com>
19276
19277         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
19278
19279 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19280
19281         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
19282           be changed
19283         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
19284           the allowed size before making programmatic size changes
19285
19286 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
19287
19288         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
19289           set, metacity is broken and will still use the emty sizes in 
19290           the struct. (Fix for #77089)
19291
19292 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19293
19294         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
19295           WindowExStyles and marked both enums as Flags
19296         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
19297           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
19298           to match WindowStyles split
19299         * XplatUIX11.cs:
19300           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
19301           - Updated to match WindowStyles split
19302         * XplatUIWin32.cs:
19303           - Fixed FosterParent creation, was using ExStyle on the Style field
19304             (This should help with Popup focus issues)
19305           - Updated to match WindowStyles split
19306
19307 2006-03-13  Jackson Harper  <jackson@ximian.com>
19308
19309         * MdiWindowManager.cs: Use the system menu height. Fixes some
19310         strange sizing issues.
19311
19312 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
19313
19314         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
19315         * TextBoxBase.cs:
19316           - Scroll to caret after inserting text (#77672)
19317           - Make scroll range one pixel higher, fixes off-by-one error (and
19318             makes underlines visible on the last line)
19319
19320 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
19321
19322         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
19323           the keyboard state from being stuck with keys in 'pressed' state when
19324           focus is switched away via keyboard
19325         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
19326           reset the keyboard if no X11 KeyUp events are expected to come
19327         * X11Structs.cs: Switched type of Visible to bool to match driver
19328
19329 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
19330
19331         * TextControl.cs:
19332           - Switched caret to be just 1 pixel wide, matches MS and looks less
19333             clunky
19334           - Moved caret display 1 pixel down from the top of the control
19335             to improve view
19336           - InsertCharAtCharet: Update the selection start if moving the caret
19337             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
19338           - No longer always creating the caret when the caret methods are
19339             called. Only the actual ShowCaret/HideCaret will do that now
19340           - Only setting caret visible if the owner control has focus
19341           - UpdateView: Added invalidation-shortcut logic for center and right 
19342             aligned text. Previously we'd update all according to the left
19343             logic which caused drawing errors. Also fixed height of invalidated
19344             areas, now properly invalidating the whole area (was off-by-one)
19345           - owner_HandleCreated: Always generate the document when the
19346             handle is created; this ensures that 
19347         * TextBoxBase.cs:
19348           - Fixed situation where caret would disappear under the right
19349             window border, also improved scrolling behaviour on left-
19350             aligned textboxes
19351           - Fixed right-aligned textboxes to have a border to the
19352             right instead of the caret being under the right border
19353         * XplatUIX11.cs:
19354           - Switched from 'nested' to simple visible/not visible tracking 
19355             for caret (part of fix for #77671)
19356           - No longer passing through translated FocusIn/FocusOut messages
19357             since we were notifying too often and the wrong windows. Instead
19358             we just notify our focussed window of receiving or loosing focus
19359         * XplatUIWin32.cs: Switched from 'nested' show/hide 
19360           counting for caret to simple visible yes/no behaviour (part of 
19361           fix for #77671)
19362
19363 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19364
19365         * Mime.cs: Remove debug code...
19366
19367 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19368
19369         * MimeGenerated.cs: Removed
19370         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
19371           and subclasses) from /usr/(local/)share/mime and
19372           $HOME/.local/share/mime.
19373
19374 2006-03-10  Jackson Harper  <jackson@ximian.com>
19375
19376         * MdiWindowManager.cs: Recalc the NC area when a window is
19377         maximized/restored so that the menu area is drawn on forms that
19378         don't have a menu.
19379
19380 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19381
19382         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19383           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
19384           us to force a WM_NCCALCRESIZE message being sent. This is needed
19385           for MDI maximizing.
19386
19387 2006-03-10  Jackson Harper  <jackson@ximian.com>
19388
19389         * Form.cs: We need to use the ActiveMenu when calculating menu
19390         height.
19391         - Fix nullref when the window manager hasn't been created yet.
19392         * Control.cs: Fix nullref when we try to bring a control to the
19393         front that has no parent.
19394         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
19395         height.
19396         - Add a dummy item to the maximized menu so it always has the
19397         correct height. Otherwise when there are no menus we don't get our
19398         icon and buttons.
19399         
19400
19401 2006-03-10  Jackson Harper  <jackson@ximian.com>
19402
19403         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
19404         stuff.
19405         * Form.cs: Make the window_state internal so the window managers
19406         can track it.
19407         - When an MDI child is maximized let its window manager create the
19408         main menu (so it can add its icon).
19409         - Notify the window managers of state changes
19410         - Let the window manager paint its buttons and handle button
19411         clicks on the menu when it is maximized.
19412         * InternalWindowManager.cs: Move the prev_bounds into the mdi
19413         window manager, since tool windows don't use it, only mdi windows.
19414         - Tell the main form that we don't want it to handle NCPAINT
19415         itself to avoid extra painting.
19416         - Handle clicks on a maximized windows menu.
19417         - Handle window state changes
19418         - Handle minimize/maximize clicks correctly by setting the window state.
19419         * MdiWindowManager.cs: Add an icon menu that (the menu you get
19420         when clicking on the forms icon).
19421         - New method to create a forms maximized menu. This is its normal
19422         menu + an icon.
19423         - Handle window state changes.
19424         - Handle sizing of maximized windows.  Maximized windows are just
19425         drawn bigger then the parent visible area. All controls are still
19426         there, they are just outside the visible area (this matches windows).
19427         * MdiClient.cs: No scrollbars when a child window is maximized.
19428         - Let the children windows figure out how big they should be when
19429         sizing maximized windows.
19430         - Implement a version of ArrangeIconicWindows somewhat similar to
19431         Windows version.  There are some little differences, but I don't
19432         think any app will rely on the layout of minimized mdi windows.
19433
19434 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19435
19436         * Padding.cs: Several fixes to allow compiling with csc 2.0
19437
19438 2006-03-09  Jackson Harper  <jackson@ximian.com>
19439
19440         * Menu.cs:
19441         * MenuItem.cs: Cheap hack so we can add items to the list without
19442         the events being raised.  This allows adding mdi items during
19443         drawing. TODO: Should probably find a better time to add the items.
19444
19445 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19446
19447         * ThemeWin32Classic.cs:
19448           - CheckBox_DrawText: Added logic to not wrap if not enough space
19449             is available (Fix for bug #77727)
19450           - RadioButton_DrawText: Added logic not to wrap if not enough
19451             space is available (Fix for bug #77727). Also removed some
19452             duplicate code, DrawString always drawing the regular text
19453             before hitting the if statement.
19454
19455 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
19456
19457         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
19458
19459 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19460
19461         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
19462         * ContainerControl.cs: Partial implementation of some 2.0 scaling
19463           methods. Moved the new 2.0 properties into alphabetical order with
19464           other properties and added MonoTODO tags
19465
19466 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19467
19468         * AutoScaleMode.cs: Added. Fix build.
19469
19470 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19471
19472         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19473           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
19474           and was requiring premature handle creation for calls from above
19475         * Form.cs, Control.cs: Removed handle arguments from calls to
19476           CalculateClientRect()
19477
19478 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19479
19480         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
19481           drag_column.column_rect is MarshalByRef and can't be used that way
19482
19483 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19484
19485         * AxHost.cs: Added deserialization constructor for 
19486           AxHost+State (fixes 77743)
19487
19488 2006-03-09  Mike Kestner  <mkestner@novell.com>
19489
19490         * ListView.cs: 
19491         - Added column drag reordering for details view.
19492         - fixed behavior when mouse is dragged off column and
19493         AllowColumnReorder is false.
19494         * ColumnHeader.cs: clone the format too in Clone.
19495         * Theme.cs: add DrawListViewHeaderDragDetails method.
19496         * ThemeWin32Classic.cs:
19497         - impl new method for drawing drag column shadows and targets.
19498         - support column offset for details mode in DrawListViewItem.
19499
19500 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19501
19502         * TextControl.cs: Reset the char_count when the document is cleared
19503           (Fixes bug reported on mono-winforms mailing list)
19504
19505 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19506
19507         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
19508           of calling base we simply process the key ourselves, since both
19509           DefWindowProc and the handled method would set m.Result. 
19510           (Fixes #77732)
19511
19512 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19513
19514         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
19515           method also moves the window; instead implemented a copy of
19516           Control.ScaleCore (Part of fix for #77456)
19517         * TextBoxBase.cs: 
19518           - Created new CreateGraphicsInternal method to allow providing
19519             a graphics context when no handle is created without triggering
19520             handle creation. (Part of fix for #77456)
19521           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19522         * TextControl.cs: 
19523           - Switched Constructor to require TextBoxBase instead of Control (to
19524             allow uncast access to CreateGraphicsInternal)
19525           - Safeguarded use of owner.Handle property. No longer accessing it
19526             unless the handle is already created.
19527           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19528           - Now triggering a recalc when owning control becomes visible
19529         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
19530           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
19531           premature handle creation (Part of fix for #77456)
19532         * Control.cs:
19533           - We now only destroy our double-buffering buffers when the
19534             control is resized or disposed, but not when visibility
19535             changes. (The code even re-created them twice every time)
19536           - Now requiring a redraw of the buffer on visibility changes
19537             (fixes bug 77654 part 2)
19538           - Not passing OnParentVisibleChanged up unless the control
19539             is visible
19540           - CanFocus: Fixed to match MS documentation
19541           - Focus: Fixed to return actual focus state and to check if
19542             setting focus is legal before setting it
19543
19544 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
19545
19546         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
19547           when to draw focus rectangle by looking at parent focus and
19548           selected state instead. This fixes TabPages on Linux sometimes
19549           having none or multiple focus rectangles.
19550         * XplatUIX11.cs (SetFocus): 
19551           - Don't set the focus if the same window already has focus
19552           - Use SendMessage instead of PostMessage (like it's Win32
19553             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
19554             to match MS behaviour
19555         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
19556           are not selectable.
19557
19558 2006-03-07  Jackson Harper  <jackson@ximian.com>
19559
19560         * PictureBox.cs: Revert line I accidently committed last week.
19561
19562 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19563
19564         * Control.cs: 
19565           - Added new IsRecreating and ParentIsRecreating properties to
19566             allow testing if RecreateHandle has been called on ourselves
19567             or one of our parents
19568           - WndProc(WM_DESTROY): If our control handle is being recreated
19569             we immediately need to create the handle when receiving the
19570             destroy, that way our child windows find a valid parent handle
19571             when they themselves are being recreated upon WM_DESTROY receipt
19572             (fix for bug #77654 part 1)
19573         * XplatUIX11.cs:
19574           - DestroyWindow: WM_DESTROY must be sent to our own window before
19575             notifying any child windows. MS documents that child windows
19576             are still valid when WM_DESTROY is received. (Control now relies on
19577             this behaviour)
19578           - Added some fine-grain debug options
19579
19580 2006-03-06  Jackson Harper  <jackson@ximian.com>
19581
19582         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
19583         box and base calculations off this.
19584         * MdiChildContext.cs:
19585         * MdiWindowManager.cs: Don't need to ensure scrollbars here
19586         anymore.
19587         
19588 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
19589
19590         * Splitter.cs: In situations where the affected control is added
19591           to the parent's control list after the splitter, we would not
19592           populate affected. Now we try populating it on mousedown, if
19593           it's not already set, and force it to be re-set whenever our
19594           parent changes.
19595
19596 2006-03-03  Matt Hargett  <matt@use.net>
19597
19598         * Control.cs: implement Control.Padding
19599         * Padding.cs: -Padding.All returns -1 when constructing with the
19600         implicit default ctor
19601         -Padding.ToString() matches MS.NET
19602         * ContainerControl.cs: implement
19603         ContainerControl.AutoScaleDimensions
19604         * ListControl.cs: implement ListControl.FormattingEnabled
19605         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
19606         * ButtonBase.cs:
19607         * TabPage.cs: Implement UseVisualStyleBackColor.
19608         * PictureBox.cs: Implement PictureBox.InitialImage.
19609
19610 2006-03-03  Mike Kestner  <mkestner@novell.com>
19611
19612         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
19613         event declarations to proxy to base event.
19614         * ListViewItem.cs: update to use ItemControl.
19615         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
19616         * ThemeWin32Classic.cs: update to new ListView theme API and fix
19617         column header label rendering for 0 width columns.
19618
19619 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
19620
19621         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
19622           that causes the control to be created. Fixes #77476.
19623
19624 2006-03-02  Jackson Harper  <jackson@ximian.com>
19625
19626         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
19627         expose_pending.
19628
19629 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
19630
19631         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
19632           passed in for the EventArgs (fixes #77690)
19633
19634 2006-03-01  Jackson Harper  <jackson@ximian.com>
19635
19636         * ScrollBar.cs: Refresh afterbeing resized.
19637
19638 2006-02-28  Mike Kestner  <mkestner@novell.com>
19639
19640         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
19641         Clean up a tracker compile warning.
19642         * MenuItem.cs: add internal PerformPopup method.
19643         [Fixes #77457]
19644
19645 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19646
19647         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
19648           implicit expose) when the text is set to null
19649
19650 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
19651
19652         * RichTextBox.cs (FlushText): When newline is true, we always
19653           need to split the line, even if no text is on it and we may
19654           never eat newlines. (Fixes #77669)
19655
19656 2006-02-28  Mike Kestner  <mkestner@novell.com>
19657
19658         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
19659         and set Selected instead.
19660         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
19661         collections.
19662
19663 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19664
19665         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
19666
19667 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
19668
19669         * FontDialog.cs:
19670           - Got rid of the panel. All controls are now directly added to
19671             the dialog form
19672           - It is now possible to set a font with the Font property
19673           - MinSize and MaxSize property do now what they should
19674           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
19675           - Searching and selecting a font with the font textbox works now,
19676             the same applies to the style and size textbox
19677           - Draw the correct 3D border in the example panel
19678           - Fixed a little mem leak (unused fonts didn't get disposed)
19679           - Many other internal updates/rewrites...
19680           - Fix typo
19681
19682 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19683
19684         * TextControl.cs: 
19685           - InsertRTFFromStream: Added 'number of characters inserted' argument
19686           - set_SelectedRTF: Now using the number of characters to calculate
19687             the new location for the selection and cursor (x/y cannot be used
19688             due to potentially already wrapped text)
19689
19690 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
19691
19692         * TextControl.cs: Added property and implemented means to allow 
19693           disabling recalculation of a document (can be used to speed up
19694           multiple inserts and is needed to make RTF inserts predictable, see
19695           bug #77659)
19696         * RichTextBox.cs: Using the new NoRecalc property of Document to
19697           keep x/y insert locations predictable. Also makes it faster inserting
19698           large chunks of RTF
19699
19700 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19701
19702         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
19703           it's easier for a child control to handle the other messages without
19704           having to duplicate the special functionality
19705         * TextBoxBase.cs
19706           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
19707             code to handle processing the key ourselves, in order to get 
19708             access to the result of KeyEventArgs.Handled. We now only call 
19709             ProcessKey if they key hasn't been handled already. Fixes #77526.
19710           - set_Text: If null or empty string is given, just clear the 
19711             document. Fixes part of #77526
19712
19713 2006-02-27  Jackson Harper  <jackson@ximian.com>
19714
19715         * SizeGrip.cs: Paint the background color before painting the grip
19716         so things look right.
19717         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
19718
19719 2006-02-27  Mike Kestner  <mkestner@novell.com>
19720
19721         * ListView.cs:
19722           - Restructure layout and invalidation model to remove a ton of
19723           flicker from the control and speed up performance in general.
19724           - Add manual column resize, flickers like crazy, but I already have
19725           some ideas on how I'll fix that. (#76822)
19726           - Merge the three Icon-based views into a single layout method.
19727           - Move item selection interaction logic from the item since 
19728           interaction with the collections is more appropriate to the view.
19729           - Deselection on non-item clicks.
19730         * ListViewItem.cs:
19731           - Encapsulate most of the layout. Add some internal props to trigger
19732           layout.  Move to a model where Items invalidate themselves instead
19733           of just invalidating the whole control every time something changes.
19734           - Invalidate on Text/Caption changes.
19735           - switch to an offset based layout model to avoid having to absolute
19736           position every element on item moves.
19737           - correct checkbox layout to conform to MS layout.
19738         * ThemeWin32Classic.cs:
19739           - refactor some column header drawing code.
19740           - fix string justification for column headers (#76821)
19741           - make SmallIcon labels top justified for compat with MS impl.
19742         * ThemeClearlooks.cs:
19743           - adjust to new ListViewItem internal checkbox bounds api.
19744
19745 2006-02-27  Jackson Harper  <jackson@ximian.com>
19746
19747         * Control.cs:  Change where implicit controls fall in the zorder.
19748         They are now on top of all children.
19749         - Synced AddImplicit code with Add
19750         - Removed unused enumerator.
19751         * SizeGrip.cs: Remove the TODO as its been TODONE.
19752
19753 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
19754
19755         * TextControl.cs(Insert): Combine the last lines unless the insertion
19756           string ends with \n\n, otherwise we leave one line too many (Fixes
19757           something I noticed with the testapp for #77526; the bug itself was
19758           already fixed in the previous checkin)
19759
19760 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
19761
19762         * RichTextBox.cs:
19763           - SelectionColor and SelectionFont methods no longer set absolute
19764             styles. Instead, the keep font or color respectively (This 
19765             resolves a long-standing FIXME in the code)
19766           - When flushing RTF text, the insert code now considers text trailing
19767             behind the insertion point (Fixes the bug where when replacing
19768             the selected text via SelectedRTF the remainder of the line behind 
19769             the selection would stay on the first insertion line)
19770         * TextBoxBase.cs:
19771           - AppendText now updates the selection points after inserting text
19772           - AppendText now ensures that the last tag (sometimes 0-length) of
19773             the document is used for the style information (Fixes part of 
19774             bug #77220)
19775         * TextControl.cs:
19776           - Created new FontDefiniton class to allow describing partial style
19777             changes
19778           - StreamLine() now takes a lines argument, to allow it to decide
19779             whether an encountered zero-length tag is the last in the document
19780             (which must be kept to not loose the font/color contained in it,
19781             for later appends)
19782           - Created Combine() and Split() methods for Marker structs, to 
19783             support marker updates due to reformatted documents (soft line
19784             wraps)
19785           - Implemented Document.CaretTag setter
19786           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
19787             of the last line (Not the cause, but also exposed by bug #77220)
19788           - Added LineTag argument to InsertString method, to allow callers
19789             to force a certain tag to be used (required to force use of the
19790             trailing zero-length tag of a document)
19791           - Now updating markers in Combine(), to avoid stale tag markers
19792           - Added some method descriptions to aid maintenance
19793           - Implemented new FormatText concept, allowing additive/subtractive
19794             formatting by only specifying the components that are to be 
19795             changed. This was needed for resolving the RTB.SelectedColor/
19796             RTB.SelectedFont fixmes
19797           - Added Break() support method to allow breaking up linetags (used
19798             for partial formatting)
19799           - Added GenerateTextFormat() method. It is used for partial 
19800             formatting and allows to generate a full font/color from given
19801             attributes and an existing tag.
19802
19803 2006-02-26  Jackson Harper  <jackson@ximian.com>
19804
19805         * XplatUIX11.cs:  Use the correct caption height.
19806         - Translate hittest coordinates to screen coords to match MS.
19807         * XplatUIWin32.cs: When we create MDI windows we need to reset
19808         some of the style flags, so we get a nice blank window, and can
19809         draw all the decorations ourselves.
19810         - Set a clipping rectangle on the non client paint event, the
19811         window manager drawing code needs one.
19812         * Form.cs: The window manager needs to know when the window state
19813         has been updated.
19814         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
19815         don't need to factor in border and title sizes in these
19816         methods. TODO: Remove the args and fix the call points.
19817         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
19818         properly.
19819         - Let the driver set the cursors.
19820         - Improve active window handling
19821         - Correct sizes for title bars and buttons.
19822         - Match MS drawing better
19823         * MdiWindowManager.cs: We don't need to handle border style
19824         updates specially anymore.
19825         - Check for scrollbars when windows are done moving
19826         - Handle Active properly.
19827         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
19828         correctly. I am spewing the exception though, so we don't hide the
19829         bugs.
19830         
19831 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
19832
19833         * DataGridViewRowPostPaintEventArgs.cs,
19834           DataGridViewCellPaintingEventArgs.cs,
19835           DataGridViewRowCollection.cs,
19836           DataGridViewRowPrePaintEventArgs.cs,
19837           DataGridViewCell.cs: Clear a few warnings and implement a few
19838           exceptions that should be thrown.
19839
19840 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19841
19842         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
19843           'inheriting' our parent's (non-default) cursor. (Part of
19844            the fix for #77479)
19845
19846 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
19847
19848         * XplatUIX11.cs: Fixed cast to make csc happy
19849
19850 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19851
19852         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
19853           it's for the client area (part of fix for #77479 and needed
19854           for MDI window cursor handling)
19855         * XplatUIX11.cs
19856           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
19857             the appropriate default cursors and also passing the message
19858             up the parent chain 
19859           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
19860             for non-client areas
19861
19862 2006-02-15  Jackson Harper  <jackson@ximian.com>
19863
19864         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
19865         is a real MDI window
19866
19867 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
19868
19869         * X11DesktopColors.cs: Instead of checking the desktop session
19870           string for "KDE" check if it starts with "KDE"
19871
19872 2006-02-10  Jackson Harper  <jackson@ximian.com>
19873
19874         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
19875         systems).
19876
19877 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19878
19879         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
19880           errors
19881         * ColorDialog.cs:
19882           - Got rid of the panel. All controls are now directly added to
19883             the dialog form
19884           - Changed to mono coding style
19885
19886 2006-02-10  Jackson Harper  <jackson@ximian.com>
19887
19888         * InternalWindowManager.cs: We don't need the set visibility to
19889         false hack anymore now that peter has written beautiful shutdown
19890         code.
19891
19892 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
19893
19894         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
19895           where already explicitly destroyed
19896
19897 2006-02-10  Jackson Harper  <jackson@ximian.com>
19898
19899         * MdiClient.cs: Handle the case where windows are too high or to
19900         the left and we need scrollbars.
19901
19902 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19903
19904         * MimeIcon.cs: Added some icons
19905         * FileDialog.cs:
19906           - Fixed bug #77477
19907           - Got rid of the panel. All controls are now directly added to
19908             the dialog form
19909           - Changed to mono coding style
19910           - On Linux "My Computer" and "My Network" will now show some
19911             more usefull information. A new class, MasterMount, gathers
19912             this information from /proc/mount. Updated MWFFileView to make
19913             use of this information
19914           - Fixed a bug that caused FileDialog to crash when
19915             ".recently_used" file had a zero size
19916           - FilterIndex does now what it should
19917           - Some Refactoring
19918         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
19919             FileDialog changes
19920
19921 2006-02-09  Jackson Harper  <jackson@ximian.com>
19922
19923         * ComboBox.cs: Don't touch if null.
19924
19925 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
19926
19927         * Cursor.cs: 64bit safeness fix
19928         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
19929
19930 2006-02-09  Jackson Harper  <jackson@ximian.com>
19931
19932         * Form.cs: If a form is made into an MDI form update the styles so
19933         all the props can get set correctly.
19934         - Kill the mdi_container when we dont need it anymore.
19935         * InternalWindowManager.cs: Add missing NOT
19936
19937 2006-02-08  Jackson Harper  <jackson@ximian.com>
19938
19939         * InternalWindowManager.cs: Respek clipping when drawing MDi
19940         decorations.
19941
19942 2006-02-08  Jackson Harper  <jackson@ximian.com>
19943
19944         * Hwnd.cs: Add bits to track non client expose events.
19945         * XplatUIX11.cs: Track non client expose events on the hwnd. This
19946         gives us a proper invalid rect and will allow for some nice
19947         optimizations with NC client drawing
19948         - MDI windows are children windows, so move their style handling
19949         into the child window block.
19950         * InternalWindowManager.cs: Remove a state reset that was
19951         getting invoked at the wrong time. Fixes managed windows getting
19952         into a 'stuck' captured state.
19953
19954 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
19955
19956         * TextControl.cs (Document.ctor): Now initializing 
19957           selection_anchor. Fixes #77493
19958
19959 2006-02-07  Jackson Harper  <jackson@ximian.com>
19960
19961         * TrackBar.cs: The increment/decrements were backwards.
19962
19963 2006-02-07  Mike Kestner  <mkestner@novell.com>
19964
19965         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
19966         to the instance itself.
19967
19968 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
19969
19970         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
19971           on ulongs and pointers, the size differs between 32bit and 64bit
19972           systems. 
19973
19974 2006-02-07  Mike Kestner  <mkestner@novell.com>
19975
19976         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
19977         for 64 bit platforms to work around a metacity bug. 
19978
19979 2006-02-07  Jackson Harper  <jackson@ximian.com>
19980
19981         * TrackBar.cs: Process the input keys we need, and hookup to
19982         KeyDown instead of using WndProc, so we get key messages.
19983
19984 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
19985
19986         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
19987           machine we're on. 
19988         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
19989           we need to translate the XdndVersion atoms array before sending it
19990
19991 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
19992
19993         * XplatUIX11.cs: 
19994           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
19995             number of bits for the property, not the number of bytes. The
19996             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
19997             but would not crash since it specified 8 bits instead of 4 bits)
19998           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
19999             defined as XID -> long in the C headers)
20000           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
20001             references since those are now IntPtr to begin with
20002           - Switched all Atom.XXX 'int' casts to IntPtr casts
20003           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
20004           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
20005           - Added XChangeActivePointerGrab DllImport (for X11DnD)
20006         * X11Structs.cs:
20007           - Changed 'int' type for Atoms in XEvent structures to IntPtr
20008           - Changed atom in HoverStruct to be IntPtr
20009         * X11DnD.cs:
20010           - Removed local DllImports, switched code to use those from XplatUIX11
20011           - Removed/fixed casts related to the switch of Atom to be a IntPtr
20012
20013 2006-02-06  Mike Kestner  <mkestner@novell.com>
20014
20015         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
20016         method signatures in the import region.  There may still be some
20017         lingering struct marshaling issues, as I didn't drill down into those.
20018         Yet.
20019
20020 2006-02-06  Jackson Harper  <jackson@ximian.com>
20021
20022         * ComboBox.cs: Dont manually set the top_item, this is computed
20023         when the scrollbar position is set.
20024
20025 2006-02-06  Mike Kestner  <mkestner@novell.com>
20026
20027         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
20028         startup crashes on amd64.  There's other fixes needed.  All pinvoke
20029         usage of Atom needs to be mapped to IntPtr for example.  And there are
20030         likely other int/long issues to be addressed.
20031
20032 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
20033
20034         * FileDialog.cs: One more...
20035
20036 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20037
20038         * FileDialog.cs: Next try
20039
20040 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20041
20042         * FileDialog.cs: First part of fix for #77464
20043
20044 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20045
20046         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
20047           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
20048           AcceptButton border drawing.
20049
20050 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
20051
20052         * Form.cs: Moved positioning of form after auto scaling is applied,
20053           otherwise it would possibly use wrong form size.
20054
20055 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
20056
20057         * Control.cs (RecreateHandle): No need to re-create any child
20058           controls, the child windows will get destroyed automatically by
20059           the windowing system or driver, and re-created when the handle
20060           is being accessed the first time. Fixes #77456
20061         * Form.cs: No longer setting the form to closing if the handle is 
20062           being recreated. This seems like the right thing to do, don't
20063           have a bug or testcase for this, though.
20064
20065 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
20066
20067         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
20068           controls to avoid unwanted side effects
20069
20070 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
20071
20072         * Control.cs: 
20073           - ScaleCore needs to scale the bounds, not the ClientSize of the 
20074             control. Fixes #77416.
20075           - DefaultSize is 0,0 for control
20076         * TextBoxBase.cs: 
20077           - DefaultSize is 100, 20
20078           - SetBoundsCore: Now enforcing the height, no matter if the provided
20079             height is more or less than the preferred one, as long as AutoSize
20080             is on
20081         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
20082
20083 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
20084
20085         * Control.cs:
20086           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
20087             call unless both performLayout is true *and* we have a pending
20088             layout change
20089           - ResumeLayout: MS does not completely nest Suspend and Resume,
20090             they bottom out at 0, fixed our code to match that.
20091           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
20092             SetBoundsCore, we were updating even when we shouldn't. This fixes
20093             swf-anchors mis-anchoring when resizing the app fast and lots.
20094           - UpdateDistances: Now only setting the left and top distance if 
20095             we have a parent and are not suspended, this is based on
20096             a suggestion by Don Edvaldson in bug #77355.
20097           - OnVisibleChanged: Fixed logic when to create the control. We may
20098             not create the control if we have no parent or if it's not visible;
20099             switched to using Visible property instead of is_visible field 
20100             since the property also considers parent states. This fixes a bug
20101             when starting Paint.Net
20102
20103 2006-02-02  Jackson Harper  <jackson@ximian.com>
20104
20105         * Form.cs: If the forms handle hasn't been created yet don't call
20106         into xplatui to make it top most, just set the topmost flag on the
20107         form in CreateParams
20108         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
20109
20110 2006-02-01  Jackson Harper  <jackson@ximian.com>
20111
20112         * ScrollableControl.cs: Refactored the Recalculate method a
20113         little, this wasn't handling all the variants of bottom and right
20114         bars needed to be added and added/removed based on their
20115         counterparts being added/removed (which changes the drawable
20116         size). Also we special case client widths and heights of 0 and
20117         don't add the scrollbar for those.
20118
20119 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
20120
20121         * XplatUIX11.cs: 
20122           - Added method to get AbsoluteGeometry(); currently unused, but might
20123             be used in the future, if we try again to figure out toplevel
20124             coordinates with some more crappy window managers
20125           - Added FrameExtents() method to retrieve the WM set decoration size
20126           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
20127             to deal with at least KDE, FVWM and metacity (Fixes #77092)
20128         * Hwnd.cs: 
20129           - Added whacky_wm tracking var for metacity
20130           - Added logic to have default menu height if the actual menu height
20131             has not yet been calculated (part of fix for #77426)
20132         * Form.cs: Keep track whether client size has been set and re-set 
20133           it if a menu is added/removed afterwards (Fixes #77426)
20134
20135 2006-01-31  Jackson Harper  <jackson@ximian.com>
20136
20137         * Control.cs: When a new Site is set on the component attempt to
20138         pull the AmbientProperties from it.
20139
20140 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
20141
20142         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
20143           in the background of the owning form. Fixes #77332
20144
20145 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
20146
20147         * MimeIcon.cs: Fix for #77409
20148
20149 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
20150
20151         * XplatUIX11GTK.cs: Initial import
20152
20153 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
20154
20155         * FixedSizeTextBox: fixes class signature
20156
20157 2006-01-30  Jackson Harper  <jackson@ximian.com>
20158
20159         * FixedSizeTextBox.cs: New internal class that represents a
20160         textBox that will not be scaled.
20161         * TreeView.cs:
20162         * ComboBox.cs:
20163         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
20164         standard TextBox.
20165                 
20166 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
20167
20168         * XplatUIX11.cs: Retrieve default screen number instead of
20169           assuming 0. Attempted fix for #77318
20170
20171 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
20172
20173         * XplatUIWin32.cs: 
20174           - GetWindowPos: When a window is parented by FosterParent, use 
20175             the desktop instead of FosterParent as the base to get coordinates
20176           - CreateWindow: Don't make FosterParent the parent window for Popups
20177             if we don't want a taskbar entry, Popups automatically don't get one
20178         * Hwnd.cs: Need to call remove to actually remove the key from the
20179           hash table
20180
20181 2006-01-30  Mike Kestner  <mkestner@novell.com>
20182
20183         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
20184
20185 2006-01-30  Jackson Harper  <jackson@ximian.com>
20186
20187         * TreeView.cs:
20188         * TreeNode.cs: Raise events no matter how the treenode is
20189         checked. Patch by Don Edvalson.
20190
20191 2006-01-30  Jackson Harper  <jackson@ximian.com>
20192
20193         * TreeNode.cs: Signature fix.
20194
20195 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
20196
20197         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
20198
20199 2006-01-20  Mike Kestner  <mkestner@novell.com>
20200
20201         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
20202         event forwarding when menus are active.
20203         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
20204         Most of the patch is pdb's with a little rework.
20205
20206 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
20207
20208         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
20209           Removed GetMenuDC and ReleaseMenuDC methods; replaced
20210           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
20211         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
20212         * InternalWindowManager.cs: Added use of PaintEventStart/End to
20213           handling of WM_NCPAINT message, now passing the PaintEventArgs to
20214           the PaintWindowDecorations method
20215         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
20216         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
20217         * MenuAPI.cs: Made tracker window invisible
20218         * XplatUIWin32.cs:
20219           - Removed GetMenuDC and ReleaseMenuDC methods
20220           - Implemented the client=false path for PaintEventStart and
20221             PaintEventEnd
20222
20223 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
20224
20225         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
20226         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
20227           styles
20228         * Form.cs: 
20229           - MaximizeBox, MinimizeBox: Recreate the handle when setting
20230             the style
20231           - CreateParams: Reworked the styles to match MS look'n'feel,
20232             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
20233             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
20234
20235 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
20236
20237         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
20238           window is not mapped, since otherwise every form that's being 
20239           created is considered minimized, which is wrong.
20240         * Form.cs: Catching the exception and returning our internal value
20241           instead
20242
20243 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
20244
20245         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
20246           SetWindowMinMax() to have means to tell the driver about the minimum,
20247           maximum and maximized state window sizes. (Part of the fix for #76485)
20248         * Form.cs:
20249           - Implemented tracking of minimum and maximum window size, now calling
20250             new SetWindowMinMax() driver method to tell the driver (Part of the
20251             fix for #76485)
20252           - Finished handling of WM_GETMINMAXINFO method, now setting all values
20253             (Completes fix for #76485)
20254           - Calling new SetWindowMinMax driver method when the handle for a 
20255             form is created, to make sure the driver knows about it even if
20256             the values have been set before the window was created
20257           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
20258             to avoid messing up our anchoring calculations (partial fix
20259             for #77355)
20260         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
20261         * XplatUIX11.cs:
20262           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
20263           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
20264             (and presumably other freedesktop.org compliant WMs). Left the
20265             assumption unmapped=minimized, needed for SetVisible to work.
20266           - Now setting the window state when creating windows
20267           - Fixed SetVisible to consider/set the window state when mapping
20268             a Form. We cannot set the state before it's mapped, and we cannot
20269             use Form.WindowState once it's mapped (since it would ask the
20270             driver and get 'normal'. Therefore, we grab the state before
20271             mapping, map, and then set state.
20272           - Implmemented SetWindowMinMax method; Metacity does not seem to
20273             honor the ZoomHints, though.
20274         * XplatUIWin32.cs:
20275           - Removed MINMAXINFO (moved to XplatUIStructs)
20276           - Added SetWindowMinMax stub (on Win32 the only way to set that
20277             information is in response to the WM_GETMINMAXINFO message, which
20278             is handled in Form.cs)
20279           - Added logic to SetVisible to set the proper window state when a 
20280             form is made visible (fixes #75720)
20281
20282 2006-01-26  Jackson Harper  <jackson@ximian.com>
20283
20284         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
20285         same way we handle them with Invoke.
20286
20287 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
20288
20289         * Form.cs:
20290           - Added tracking of window state so CreateParams can return
20291             the appropriate style
20292           - Moved setting of WS_CAPTION style in CreateParams to allow
20293             styles without caption
20294         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
20295           control if the TextBox property is accessed. Fixes #77345
20296         * Control.cs:
20297           - get_Created: now uses is_disposed and is_created to determine
20298             return value (suggested by Jackson)
20299           - CreateHandle: No longer exits if the handle is being recreated
20300           - RecreateHandle: If the handle is not yet created call the 
20301             appropriate method to create either control or handle. If the
20302             control is already created CreateHandle will simply exit instead
20303             of just creating the handle
20304         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
20305           now SendMessage WM_DESTROY directly to the control when DestroyWindow
20306           is called.
20307         * XplatUIX11.cs: 
20308           - When DestroyWindow is called, instead of waiting for the 
20309             DestroyNotification from X11, we directly post it to the WndProc
20310             and immediately dispose the hwnd object.
20311             Same applies to DestroyChildWindows, and this obsoletes the
20312             expose_pending tracking. Contrary to Win32 behaviour we destroy our
20313             child windows before our own, to avoid X11 errors.
20314           - Removed the direct sending of WM_PAINT on UpdateWindow
20315         * XplatUIWin32.cs:
20316           - Reworked DoEvents and GetMessage to allow access to internal queue
20317             even when trying non-blocking access to the queue.  Fixes #77335. 
20318             Based on a patch suggestion by Don Edvalson. The new private
20319             GetMessage can now also be used as a backend for a PeekMessage
20320             frontend version.
20321         * XplatUI.cs: Improved debug output for CreateWindow
20322
20323 2006-01-25  Jackson Harper  <jackson@ximian.com>
20324
20325         * Help.cs: Allow param to be null. Patch by Don Edvalson.
20326
20327 2006-01-24  Jackson Harper  <jackson@ximian.com>
20328
20329         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
20330         when we have a MaxDropItems lower then the selected index.
20331
20332 2006-01-24  Jackson Harper  <jackson@ximian.com>
20333
20334         * Control.cs: Don't allow selection of non visible controls, allow
20335         selection of controls without parents.
20336
20337 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
20338
20339         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
20340         * DataGridDrawingLogic.cs: Add editing row only when is necessary
20341
20342 2006-01-23  Jackson Harper  <jackson@ximian.com>
20343
20344         * UpDownBase.cs: Make the textbox handle all the selection and
20345         tabbing. This fixes tabing to updown controls.
20346
20347 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
20348
20349         * TextBoxBase.cs: fixes exception thown the object was null
20350
20351 2006-01-23  Jackson Harper  <jackson@ximian.com>
20352
20353         * ButtonBase.cs: Just use the base CreateParams. They set
20354         visibility and enabled correctly.
20355         * ComboBox.cs:
20356         * TrackBar.cs:
20357         * MonthCalendar.cs: Lets let the base set as much of the
20358         createparams as possible so we don't have duplicate code all over
20359         the place.
20360
20361 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
20362
20363         * ThemeGtk.cs: Added TrackBar and some experimental code to
20364           get double buffering back
20365
20366 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
20367
20368         * DataGrid.cs: Allows row number set internally higher than the last
20369         when creating a new row. Restores the editing functionality.
20370
20371 2006-01-20  Mike Kestner  <mkestner@novell.com>
20372
20373         * MimeIcon.cs: delay Image creation until the icons are accessed
20374         instead of creating 190 scaled images on GnomeHandler startup.
20375
20376 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
20377
20378         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
20379           first call base before processing the event. Fixes #77279
20380
20381 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
20382
20383         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
20384           that the stride for the GDI bitmap would match the stride of
20385           a DIB or a Cursor.
20386
20387 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
20388
20389         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
20390
20391 2006-01-19  Jackson Harper  <jackson@ximian.com>
20392
20393         * ComboBox.cs: Hookup the text controls keydown event so we get
20394         those when the text control has the focus.
20395
20396 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20397
20398         * Label.cs: Now using the base events instead of defining new ones;
20399           this allows us to just call the base properties without having to
20400           duplicate all base property logic 
20401
20402 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20403
20404         * Label.cs: A label by default is not a tabstop (Fixes one of our
20405           failing nunit tests)
20406
20407 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20408
20409         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
20410         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
20411
20412 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20413
20414         * Cursor.cs: Reimplemented creating cursor bitmaps without using
20415           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
20416           This fixes #77218
20417         * XplatUIWin32.cs: 
20418           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
20419             constructor creates images that can't be saved. Part of the fix
20420             for #76103
20421           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
20422           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
20423             bug fix for handling window state in forms properly)
20424
20425 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20426
20427         * ThemeGtk.cs: Simplify ScrollBar drawing
20428
20429 2006-01-18  Jackson Harper  <jackson@ximian.com>
20430
20431         * Splitter.cs: Set the default dock style for the splitter control
20432         in the constructor.
20433
20434 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20435
20436         * ThemeGtk.cs: Corrected StateType and ShadowType for
20437           gtk_paint_box
20438
20439 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20440
20441         * Control.cs: Make use of Theme.DoubleBufferingSupported
20442         * ThemeGtk.cs:
20443           - Added drawing for flat style buttons
20444           - Added ScrollBar drawing
20445
20446 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20447
20448         * ThemeClearlooks.cs: Removed some unneeded code.
20449         * ThemeGtk.cs: First part of ThemeGtk enhancements.
20450
20451 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20452
20453         * LinkLabel.cs: We need to update the hover drawing when
20454           leaving the control as well.
20455
20456 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
20457
20458         * DataGrid.cs: Clicking on non empty areas in the columns
20459            area was giving an exception
20460
20461 2006-01-17  Jackson Harper  <jackson@ximian.com>
20462
20463         * ThemeWin32Classic.cs:
20464         * ListView.cs: Do not draw/clip the headers when the header style
20465         is None.
20466
20467 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20468
20469         * DataGrid.cs: Fixes 77260
20470         
20471 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20472
20473         * DataGrid.cs: Clicking on a column on a empty grid was giving
20474           an exception
20475
20476 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20477
20478         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
20479           or any keypress will crash the grid.
20480
20481 2006-01-17  Mike Kestner  <mkestner@novell.com>
20482
20483         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
20484         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
20485         invisible/previously-visible items.
20486         [Fixes #76909]
20487
20488 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
20489
20490         * ThemeClearlooks.cs:
20491         - Added CL_Draw_Button method; now other theme controls that are 
20492           not derived from button or do not have a button can draw buttons
20493           too
20494         - Updated ComboBox drawing
20495         - Beautified RadioButton drawing
20496         - Corrected drawing of bottom and left tabs
20497         - Beautified DateTimePicker and MonthCalendar
20498         - Added CPDrawButton and CPDrawRadioButton
20499
20500 2006-01-16  Jackson Harper  <jackson@ximian.com>
20501
20502         * ComboBox.cs: Set the initial value of the scrollbar to the
20503         current index. Reduce the numbers of refreshs and IndexOfs called.
20504
20505 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
20506
20507         * FileDialog.cs: When the file listview is focused hitting the
20508           backspace key moves the fileview to the parent directory
20509
20510 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20511
20512         * Form.cs: 
20513           - Added RecreateHandle call when changing taskbar visibility to 
20514             trigger reparenting in Win32 driver (Fixes #75719)
20515           - If a window has minimize or maximize buttons, it cannot have
20516             a help button
20517         * XplatUIWin32.cs:
20518           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
20519             the toplevel form with FosterParent (A toolwindow not on the
20520             taskbar) (Fixes #75719)
20521           - Made FosterParent a toolwindow
20522
20523 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20524
20525         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
20526
20527 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20528
20529         * ToolTip.cs: If SetToolTip is called from a control and the mouse
20530           is currently over that control, make sure that tooltip_window.Text
20531           gets updated
20532
20533 2006-01-13  Mike Kestner  <mkestner@novell.com>
20534
20535         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
20536
20537 2006-01-13  Jackson Harper  <jackson@ximian.com>
20538
20539         * TreeView.cs: On MS GetNodeAt never actually factors in the X
20540         value passed.  Also redraw the selected node when we recieve
20541         focus, so tabbing between trees works correctly.
20542
20543 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20544
20545         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
20546           ~/.gconf/%gconf-tree.xml, so use
20547           .gconf/desktop/gnome/interface/%gconf.xml
20548
20549 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20550
20551         * TextControl.cs: Draw text in gray if control is disabled
20552
20553 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20554
20555         * TreeView.cs: Draw the focus rectangle outside the highlight, to
20556           make sure it's always visible. Fixes #76680.
20557
20558 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20559
20560         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
20561
20562 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
20563
20564         * PageSetupDialog.cs: Added.
20565         * PrintDialog.cs: Attributes.
20566         * PrintPreviewControl.cs: Updates.
20567         * PrintPreviewDialog.cs: Updates.
20568         
20569 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20570
20571         * Control.cs: Undid my selection check fix, since it's not needed
20572         * TextBoxBase.cs:
20573           - Now considering the presence of hscroll/vscroll when sizing
20574             vscroll/hscroll respectively. Fixed bug #77077
20575           - Added Left/Up/Down/Right to IsInputKey list to prevent
20576             ContainerControl from stealing them. This fixes what I broke
20577             with my last checkin.
20578
20579 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
20580
20581         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
20582           I finally understand how the property can be set without a setter :-)
20583
20584 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20585
20586         * Application.cs:
20587           - Switched RunLoop to use static Message.Create to create a 
20588             Message object
20589           - Added PreProcessMessage call in runloop for keyboard events; this
20590             is part of the fix for #77219, I overlooked this originally in the
20591             MSDN doc for PreProcessMessage
20592         * Control.cs:
20593           - Removed call to PreProcessMessage from handling of keyboard 
20594             messages; it's supposed to be done in the message pump
20595           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
20596             per MSDN documentation.
20597           - IsInputChar: All chars are input chars by default; removed the 
20598             parent calling chain, MS does not document that
20599           - PreProcessMessage: If IsInputChar is true, we want to return false
20600             to allow dispatching of the message
20601           - When selecting the next control, now also check that we're not
20602             selecting ourselves again and therefore return a false positive.
20603         * TextBoxBase.cs:
20604           - Tried to match return values for IsInputKey and ProcessDialogKey
20605             to what MS returns; moved processing of our special keys outside
20606             ProcessDialogKey since MS does not seem to return true on those.
20607           - Moved code that previously was in ProcessDialogKey into new private
20608             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
20609           - Reworked handling of WM_CHAR to not have to duplicate code from
20610             Control.cs anymore, instead we simply call down to base.
20611            
20612 2006-01-12  Jackson Harper  <jackson@ximian.com>
20613
20614         * ComboBox.cs: We always need to refresh the text area when
20615         EndUpdate is called. Fixes the combobox in the file dialog.
20616         * Control.cs: Don't create the creator_thread until the controls
20617         handle is created.  Also in InvokeRequired we check if the
20618         creator_thread is null. This gives the effect of InvokeRequired
20619         returning true if the controls handle is not created yet, and
20620         matches MS.
20621
20622 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20623
20624         * XplatUI.cs:
20625           - Added StartLoop() driver method. This is used to allow drivers to
20626             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
20627             loop for a particular thread
20628           - Added EndLoop() driver method. This is called once the message
20629             pump for the thread is shut down
20630           - Added SupportsTransparency method to allow the driver to indicate
20631             opacity support for windows
20632         * Form.cs:
20633           - Removed TODO attribute, completed AllowTransparency property
20634           - Added documented logic to Opacity
20635         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
20636           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
20637           versions of CompatibleTextRendering
20638         * X11Structs.cs: Added opacity atom to our atom enumeration
20639         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
20640           of a form might be set before it's reparented by the WM, and we need
20641           the opacity value without calling up to Form)
20642         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
20643           SupportsTransparency() driver methods
20644         * Application.cs: Now calling StartLoop and EndLoop driver methods
20645         * XplatUIX11.cs:
20646           - Added opacity atom registration
20647           - Added StartLoop()/EndLoop() methods. They're empty right now but
20648             will need to get implemented when we switch to a per-thread queue
20649           - Implemented SupportsTransparency() method
20650           - Implemented SetWindowTransparency() method
20651           - Added support for setting the opacity value when a window is
20652             reparented (since the opacity needs to be set on the WM frame)
20653         * XplatUIOSX.cs, XplatUIWin32.cs:
20654           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
20655
20656 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20657
20658         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
20659
20660 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20661
20662         * FileDialog.cs: Added ToolTip for MWFFileView
20663         * MimeIcon.cs: Rewrote GnomeHandler.
20664           - Get currently used gnome icon theme from
20665             ($HOME)/.gconf/%gconf-tree.xml
20666           - Make use of inherited icon themes
20667           - Support SVG icon themes like Tango via librsvg
20668
20669 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20670
20671         Revert's Jackson's revert which broke 2.0 builds.   Fix both
20672         builds. 
20673         
20674         * Application.cs: Move the use_compatible_text_rendering outside
20675         the NET_2_0 define.  If we ever need to use the
20676         use_compatible_text_rendering on the individual controls they will
20677         access the variable from the common shared code paths.
20678
20679 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20680
20681         * XplatUI.cs:
20682           - Added more granular debug options
20683           - Added method to print both window text and id
20684           - Switched debug output to use new Window() debug method
20685           - Added IsEnabled() driver method
20686           - Added EnableWindow() driver method
20687         * Form.cs:
20688           - Removed end_modal; no longer needed, new loop handles termination
20689             via 'closing' variable
20690           - If form is modal, setting DialogResult will now initiate loop
20691             termination via 'closing' variable
20692           - Added support for is_enabled/WS_DISABLED to CreateParams
20693           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
20694             does all the work
20695           - Removed code that's now in RunLoop from ShowDialog()
20696           - Added various documented sanity checks to ShowDialog()
20697           - Added handling of WM_DESTROY message; we set 'closing' on getting
20698             the message to indicate the message pump to terminate
20699           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
20700             send by the Application.ExitThread method. (We send the message
20701             to destroy the window after all other events have been
20702             processed through the queue, instead of destroying the handle 
20703             directly)
20704           - Moved code from Close() method to WM_CLOSE handler; added logic
20705             to only send close-related events if the form is not displayed
20706             modal
20707         * Splitter.cs (..ctor): Fixed typo in resource name
20708         * Control.cs:
20709           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
20710             brush now
20711           - set_Cursor: Now only setting calling into XplatUI if the handle for
20712             the control is already created; this avoids implict handle creation
20713             or crashes if it's not created
20714           - set_Enabled: Now setting the enabled state via the new driver method
20715             instead of just tracking it
20716           - CreateParams: Added logic to set WS_DISABLED based on enabled state
20717           - CreateControl: Reordered event firing and method calls to more
20718             closely fire events in the order MS does. Now setting the
20719             enabled state in the driver when creating the control.
20720           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
20721             match MS order
20722         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
20723           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
20724         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
20725         * Hwnd.cs:
20726           - Added tracking of window enabled state (get_Enabled/set_Enabled)
20727           - Added EnabledHwnd property to easily allow a driver to find the
20728             handle of the first enabled window in the parent chain (this is
20729             used by drivers to pass up input events of disabled windows)
20730         * XplatUIDriver.cs: Added IsEnabled() method
20731         * Application.cs:
20732           - Removed crude and obsolete exiting tracking variable
20733           - Removed internal ModalRun(); replaced by RunLoop()
20734           - Implemented private CloseForms() method to allow closing all 
20735             windows owned by a particular (or all) threads
20736           - Exit() now properly closes all windows without forcing the message
20737             pump to quit
20738           - Removed obsolete InternalExit() method
20739           - Changed Run() methods to use new RunLoop() message pump
20740           - Implemented new RunLoop() method for both modal and non-modal forms
20741         * CommonDialog.cs:
20742           - get_CreateParams: Added setting of WS_DISABLED
20743           - Simplified ShowDialog(); now all the work is done in RunLoop(),
20744             invoked via Form.ShowDialog()
20745         * NativeWindow.cs: We don't remove the window from the collection when
20746           the handle is destroyed; there might still be messages for it in the
20747           queue (mainly the resulting WM_DESTROY); instead it will be removed
20748           when Control calls InvalidateHandle in the WM_DESTROY handler
20749         * XplatUIX11.cs:
20750           - CreateWindow: Added logic to handle the WS_DISABLED window style
20751           - EnableWindow: Implemented based on Hwnd.Enabled
20752           - GetMessage: Reset PostQuitState so the method can be called again
20753           - Implemented support for disabled windows (passing messages to the
20754             first enabled parent) in handling all input messages
20755           - Added optimizations for handling Expose events
20756           - Implemeted new driver method IsEnabled()
20757           - Now always resetting paint pending tracking vars when we start paint
20758           - Re-implemented UpdateWindow via just sending a WM_PAINT message
20759         * XplatUIOSX.cs: Added IsEnabled method stub
20760         * XplatUIWin32.cs: Implemented new IsEnabled() method
20761
20762 2006-01-11  Jackson Harper  <jackson@ximian.com>
20763
20764         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20765         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
20766         variables a little.
20767         * ColorDialog.cs: Clear out the old form before adding the new
20768         panel.  
20769
20770 2006-01-11  Jackson Harper  <jackson@ximian.com>
20771
20772         * X11Dnd.cs: Make sure to add all the text formats when adding
20773         strings to the data object.
20774         * TreeNodeCollection.cs: When adding to a sorted tree we need to
20775         do some redrawing too.  Also change the UpdateNode to an
20776         UpdateBelow so the newly added node gets painted.
20777         
20778 2006-01-11  Miguel de Icaza  <miguel@novell.com>
20779
20780         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20781         LinkLabel.cs, PropertyGrid.cs: Implement the
20782         UseCompatibleTextRendering property for 2.x
20783
20784         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
20785
20786 2006-01-11  Jackson Harper  <jackson@ximian.com>
20787
20788         * TreeView.cs: Use the property for setting the selected node so
20789         the correct events get raised.
20790         * TreeNode.cs: Update the tree when the fore/back colours of a
20791         node are set.
20792
20793 2006-01-10  Jackson Harper  <jackson@ximian.com>
20794
20795         * TreeView.cs: Allow setting SelectedNode to null.
20796
20797 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20798
20799         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
20800
20801 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20802
20803         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
20804
20805 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20806
20807         * PrintDialog.cs: Added attributes and set default property values.
20808
20809 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20810
20811         * PrintControllerWithStatusDialog.cs: 
20812         Added PrintControllerWithStatusDialog.
20813
20814 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20815
20816         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
20817         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
20818
20819 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20820
20821         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
20822
20823 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
20824
20825         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
20826         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
20827
20828 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20829
20830         * MimeIcon.cs: Added internal class SVGUtil.
20831
20832 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20833
20834         * FileDialog.cs: Don't crash if there are two files with the
20835           same name but different locations.
20836
20837 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
20838
20839         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
20840         dates across multiple month grids. Used to not highlight entire 
20841         month, but does now.
20842         
20843 2006-01-06  Jackson Harper  <jackson@ximian.com>
20844
20845         * MonthCalendar.cs: Removed DoEvents call to prevent a running
20846         message loop. Change timer intervals to numbers that seem more
20847         natural.
20848
20849 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
20850
20851         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
20852           object for location info since screen object is now implemented.
20853
20854 2006-01-05  Jackson Harper  <jackson@ximian.com>
20855
20856         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
20857         * AsyncMethodResult.cs: We no longer use a WeakReference for the
20858         AsyncMethodResult, this is because we ALWAYS want the
20859         ManualResetEvent to get set.
20860         * Control.cs: When disposing use an async invoke to call shutdown
20861         code, so that thigns don't block on the finalizer thread.  Also
20862         check if we even have a message loop before trying to send
20863         messages, if we don't then don't bother sending messages.
20864         - No more weak references for async methods
20865         * XplatUIDriver.cs: No more weak references for async methods.
20866
20867 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20868
20869         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
20870           returns two FontFamily with the same name
20871
20872 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20873
20874         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
20875           drawing disabled text. Instead using the ColorGrayText color
20876
20877 2006-01-04  Jackson Harper  <jackson@ximian.com>
20878
20879         * TreeNode.cs: redraw the node when its image index is changed.
20880
20881 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20882
20883         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
20884           time I checked there are no others like it.
20885
20886 2006-01-04  Jackson Harper  <jackson@ximian.com>
20887
20888         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
20889         this gives the behavoir I was looking for.
20890         * Control.cs: Special case Invoking EventHandlers, this matches MS
20891         and fixes part of bug #76326.
20892
20893 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20894
20895         * ThemeClearlooks.cs, FileDialog.cs:
20896           - Reflect the latest Theme class changes
20897           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
20898             with DateTime
20899             
20900 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20901
20902         * Theme.cs: Cache UI resource images and resize them if needed
20903
20904 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20905
20906         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
20907           is called. This fixes the crash in Nexxia when setting the font
20908           attributes in the chat. [However, RTF needs a look-over to make sure
20909           that all SelectionXXX methods handle the special case that selection
20910           is empty and therefore the change must be applied to all text starting
20911           at the cursor/selection start]
20912
20913 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
20914
20915         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
20916           XplatUIOSX.cs: Added SendMessage and PostMessage methods
20917         * X11Keyboard.cs: Switched to new way of calling PostMessage
20918
20919 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20920
20921         * Theme.cs: Added theme interface for images to allow the theme to
20922           control what images are used for things like FileDialog, MessageBox
20923           icons, etc.
20924         * MessageBox.cs: Now uses the new Theme icon/image interfaces
20925
20926 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
20927
20928         * FileDialog.cs:
20929           - Removed some dead code
20930           - Opening a recently used file does work now
20931           - Small UI enhancements
20932           - Refactoring
20933
20934 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
20935
20936         * FileDialog.cs: Forgot too add __MonoCS__
20937
20938 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
20939
20940         * FileDialog.cs: We are able to read recently used files now let's
20941           go on and write them.
20942
20943 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
20944
20945         * FileDialog.cs: Breathe some life into "last open"/"recently used"
20946           button
20947         * MimeIcon.cs: Do a check for the top level media type also
20948
20949 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
20950
20951         * ThemeClearlooks.cs:
20952           - Added CPDrawStringDisabled
20953           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
20954             some chars if the text doesn't fit into text_rect
20955           - DrawListViewItem: If View = View.LargeIcon center the image;
20956             rewrote the drawing of ListViewItem.Text if View = 
20957             View.LargeIcon
20958
20959 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
20960
20961         * MimeIcon.cs: Use default KDE icon theme if there is no
20962           "48x48" directory for the current icon theme, fixes #77114
20963         * Mime.cs: Disable not working and actually not used code. 
20964         * ThemeWin32Classic.cs:
20965           - Replace "new SolidBrush" in GetControlBackBrush and
20966             GetControlForeBrush with ResPool.GetSolidBrush
20967           - Changed DrawListViewItem from private to protected virtual
20968         * FileDialog.cs:
20969           - Added form.MaximizeBox = true
20970           - Don't throw an exception if there is a broken symbolic link
20971
20972 2005-12-23  Jackson Harper  <jackson@ximian.com>
20973
20974         * TabControl.cs: Give the panels focus, keyboard navigation is
20975         fixed so this works correctly now.
20976         - We need these key events also.
20977         * ToolBar.cs: Remove some of the poor mans double buffering.
20978         
20979 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
20980
20981         * ComboBox.cs: The internal TextBox now returns the focus.
20982
20983 2005-12-23  Jackson Harper  <jackson@ximian.com>
20984
20985         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
20986
20987 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
20988
20989         * Control.cs: Removed debug code
20990         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
20991           implicit children
20992
20993 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
20994
20995         * Control.cs: When creating the control, update the Z-order after
20996           all it's children are created, too. (Fixes nexxia not showing
20997           picturebox bug)
20998
20999 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
21000
21001         * Control.cs: Do not update the anchoring distances if layout is
21002           suspended, instead do it once layout is resumed
21003
21004 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
21005
21006         * Control.cs: 
21007           - After many hours of debugging, for both Jackson and
21008             myself, it turns out that it helps to set the parent of a control
21009             if you want to actually see it onscreen. In the spirit of that
21010             discovery, we're now setting the parent of the control and
21011             it's children when the control's handle is created. This fix
21012             will make Lutz Roeder's Reflector run happily. 
21013           - now just creating the handle instead of the whole control when
21014             getting a graphics context for the control.
21015
21016 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
21017
21018         * ScrollableControl.cs: When calculating the canvas, don't consider
21019           the scrollbar widths. Instead, predict if horizontal scrollbar
21020           will affect canvas when deciding on vertical display and vice versa.
21021
21022 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
21023
21024         * RichTextBox.cs: Set default RTF font for documents that don't
21025           have a font table (Fixes #77076)
21026
21027 2005-12-22  Jackson Harper  <jackson@ximian.com>
21028
21029         * TextBoxBase.cs: It's difficult to do, but you can have an empty
21030         clipboard. This prevents a NullRef in that case.
21031         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
21032         clipboard. PRIMARY is for the currently selected text only. (We
21033         should implement PRIMARY at some point.
21034
21035 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21036
21037         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
21038           a Unicode function with a structure that was defined in Ansi way.
21039           This fixes #76942.
21040
21041 2005-12-21  Jackson Harper  <jackson@ximian.com>
21042
21043         * StatusBar.cs: Statusbar handles its fore/back colours on it's
21044         on. Because thats how it rolls. (and this avoids it using ambient
21045         colours).
21046         * ThemeWin32Classic.cs: Use the proper back color for filling.
21047         * Menu.cs: Use the system menu bar color for drawing menu
21048         bars. Using the window back color will bring ambient colours into
21049         the picture.
21050
21051 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
21052
21053         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
21054           Bitmaps were created and not disposed.
21055
21056 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21057
21058         * Control.cs (CreateControl): Don't do anything if the control is
21059           already created, otherwise we'd fire the OnCreated event more than
21060           once
21061
21062 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
21063
21064         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
21065           will always match. Instead return -1. Fixes #76464.
21066
21067 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21068
21069         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
21070           neither the beginning nor the end of the line (Fixes bug #76479)
21071
21072 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
21073
21074         * Control.cs:
21075           - ControlNativeWindow.ControlFromHandle(): Now handling situation
21076             where handle is invalid
21077           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
21078             instead of slower linear search
21079         * NativeWindow.cs: Don't remove the window from the hashtable until
21080           after the driver has destroyed it (since the driver might use
21081           Control.FromHandle to lookup the control object
21082         * Hwnd.cs: Added DestroyPending property to track if a window is 
21083           already destroyed as far as the driver is concerned and only hasn't
21084           yet notified the control
21085         * XplatUIX11.cs:
21086           - Activate(): Check if the window is still valid before using the 
21087             handle
21088           - Implemented DestroyChildWindow() method to mark child windows as
21089             destroyed when a window is destroyed. This prevents situations 
21090             where we might call an X method based on queued events for a
21091             window that already has been destroyed but we haven't yet pulled
21092             the destroy method from the queue.
21093           - Added a call to the new DestroyChildWindow() method to the drivers
21094             DestroyWindow code. Also now marking the destroyed window itself
21095             as pending
21096
21097 2005-12-20  Jackson Harper  <jackson@ximian.com>
21098
21099         * StatusBar.cs:
21100         * StatusBarPanel.cs: Don't calculate panel sizes on draw
21101         anymore. Just do them when needed, also track the rects of panels
21102         so that we can optimize refreshing more in the future.
21103
21104 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
21105
21106         * ColorDialog.cs: Fixed focus drawing in small color controls
21107
21108 2005-12-19  Jackson Harper  <jackson@ximian.com>
21109
21110         * InternalWindowManager.cs:
21111         * MdiWindowManager.cs: Cleanup some coordinate system changes so
21112         moving windows works properly.
21113
21114 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
21115
21116         * Control.cs: 
21117           - Removed call to InitLayout() from SetBoundsCore(); doc says
21118             it's only called when a control is added to a container
21119           - Split InitLayout logic, moved to separate UpdateDistances() method
21120             since we need to perform those calculations more often than just
21121             when adding the control to a container. (Needed to fix #77022)
21122           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
21123           - Reduced the OnBindingContextChanged events count, don't send them
21124             unless the control is created, we still aren't totally matching
21125             MS, but I can't quite figure out some of their rules
21126
21127 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21128
21129         * ThemeClearlooks.cs: Corrected distance between ProgressBar
21130           stripes
21131
21132 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21133
21134         * ThemeClearlooks.cs:
21135           - Updated ProgressBar drawing
21136           - Corrected drawing of ScrollBars and scroll buttons
21137           - Some temporary fixes for minor pixel artefacts
21138
21139 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
21140
21141         * Control.cs:
21142           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
21143             cause events to be sent in the same order as MS does.
21144           - Added ChangeParent() method to trigger various OnXXXChanged events
21145             that need to be fired when a parent changes (This is a reworking
21146             of the patch from r54254, with the X11 errors fixed)
21147           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
21148             since on MS we get OnLayoutChanged events when calling Clear()
21149           - Changed Enabled property to consider parent state as well, if a
21150             parent is not enabled, the control will not be either
21151           - Changed Parent property to simply call Controls.Add() since that
21152             now does all the work required, this way we avoid code duplication
21153           - Threw in a few OnBindingsContextChanged calls to try and match
21154             when MS sends them. We seem to send a few too many, though.
21155           - Added call to CreateControl when adding the control to a parent.
21156             We were never calling CreateControl. Still needs some work, in
21157             some places we treat HandleCreated and ControlCreated as equal, 
21158             which is wrong
21159           - Removed obsolete commented out code from UpdateZOrder()
21160
21161 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21162
21163         * ThemeClearlooks.cs: Updated TrackBar drawing.
21164
21165 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
21166
21167         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
21168
21169 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
21170
21171         * FileDialog.cs: Add the Help button and the open readonly
21172           checkbox only if needed
21173
21174 2005-12-16  Jackson Harper  <jackson@ximian.com>
21175
21176         * Control.cs: Make sure we have an active menu before trying to
21177         process commands on it. Prevents menu-less forms from crashing
21178         when Alt is pressed.
21179         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
21180         Dieter Bremes.
21181         * RichTextBox.cs: Expand statement to help out gmcs and fix the
21182         2.0 build.
21183
21184 2005-12-16  Jackson Harper  <jackson@ximian.com>
21185
21186         * InternalWindowManager.cs: Don't translate tool windows screen
21187         coordinates. This fixes windows 'bouncing' around when being moved.
21188
21189 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
21190
21191         * TextBoxBase.cs:
21192           - MaxLength now treats 2^31-1 equal to unlimited length (this is
21193             not quite MS compatible, MS uses that number only for single line
21194             and 2^32-1 for multi-line, but I figure it won't hurt keeping
21195             the limit at 2GB)
21196           - Now enforcing the MaxLength limit when entering characters
21197           - Added argument to internal Paste() method to track if it's called
21198             from programatically or via keyboard, since keyboard driven pastes
21199             need to enforce max-length
21200           - Added logic to Paste to only paste as many chars as MaxLength 
21201             allows
21202         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
21203         * TextControl.cs:
21204           - Added Length property to return number of characters in document
21205           - Added private CharCount property which only tracks actual chars
21206             in the document (no linefeeds) and fires event when CharCount
21207             changes
21208           - Added tracking of character count to all methods that alter it
21209           - Added LengthChanged event to allow applications to subscribe
21210             to any changes to the document
21211
21212 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
21213
21214         * TextBox.cs: 
21215           - Removed local password_char field (moved to TextBoxBase)
21216           - Now setting the document's password var when password is
21217             set
21218         * TextBoxBase.cs:
21219           - Added password_char field (needed here so MultiLine can
21220             access it)
21221           - Added logic to MultiLine property setter to set the document's
21222             variable when password display is allowed
21223           - Removed debug code and made some debug code conditional
21224         * TextControl.cs:
21225           - Added RecalculatePasswordLine() method to handle special password
21226             char only lines
21227           - Added PasswordChar property, also added related tracking vars
21228           - Draw() method now uses local text var for grabbing text to draw,
21229             this var is set to line.text unless we're doing password display,
21230             then it is set to the pre-generated all-password-chars line
21231           - Added calling RecalculatePasswordLine() method for password lines
21232
21233 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
21234
21235         * Hwnd.cs: 
21236           - Added Reparented property to allow tracking of Window Manager
21237             reparenting actions (which affect X/Y calculations of toplevel 
21238             windows)
21239           - Made ToString() print window handles in hex
21240         * XplatUIX11.cs:
21241           - AddConfigureNotify(): Now uses reparented state off Hwnd to
21242             determine if X/Y needs offsetting
21243           - AddConfigureNotify(): Fixed offset calculations
21244           - Now adds ReparentNotify messages into the queue
21245           - Now processes ReparentNotify messages and causes a 
21246             WM_WINDOWPOSCHANGED message to be sent upstream if a window
21247             is reparented (as most likely it's X/Y coordinates are changed
21248             due to that)
21249
21250 2005-12-14  Jackson Harper  <jackson@ximian.com>
21251
21252         * XplatUIX11.cs: Tool windows still need to respek focus.
21253
21254 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
21255
21256         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
21257           have a working release
21258
21259 2005-12-13  Jackson Harper  <jackson@ximian.com>
21260
21261         * Form.cs: Update styles after setting the border style regardless
21262         of whether or not the window is using a window manager.
21263
21264 2005-12-13  Jackson Harper  <jackson@ximian.com>
21265
21266         * Form.cs: We now hook into an internal window manager instead of just an
21267         MDI subsystem, this is so we can have properly behaving tool windows.
21268         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
21269         * InternalWindowManager.cs: New internal class that acts as a
21270         window manager for tool windows and as a base for mdi windows.
21271         * MdiWindowManager.cs: New class that acts as a window manager for
21272         mdi windows.
21273
21274 2005-12-12  Jackson Harper  <jackson@ximian.com>
21275
21276         * Control.cs: Updates so we match behavoir for for implicit
21277         controls. Fixes explosions in MDI.
21278
21279 2005-12-12  Jackson Harper  <jackson@ximian.com>
21280
21281         * Control.cs: Implement Invalidate (Region).
21282
21283 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
21284
21285         * Control.cs: 
21286           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
21287             the same events as MS does. MS fires events for each property 
21288             except, for unknown reasons, Cursor, when the control is reparented. 
21289             I can't seem to totally match add/remove since MS also fires some 
21290             VisibleChanged events, which makes no sense. Consolidated the
21291             parenting code into a separate method so it can be called from
21292             both Add and Remove. set_Parent no longer needs any special logic
21293             as it calls the parent's add method which implicitly fires
21294             all events
21295           - Removed some obsolete code and debug output
21296           - Enabled state is inherited from parents, if this is enabled
21297
21298 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
21299
21300         * Form.cs: Removed commented out code
21301
21302 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
21303
21304         * Control.cs:
21305           - Added internal version of Invoke, with additional argument 
21306             indicating if we're calling it from a Dispose() handler. That
21307             way we can avoid BeginInvoke throwing an exception if we're
21308             calling for an already destroyed window.
21309           - Added a dispose argument to BeginInvokeInternal, and made the
21310             check if a valid window handle chain exists conditional on
21311             it not being a dispose call
21312           - Removed code in DestroyHandle to destroy our children. Since we
21313             now handle the WM_DESTROY message we will catch all our children
21314             being destroyed.
21315           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
21316         * Form.cs:
21317           - Added a field to track the application context of the form.
21318           - No need to set closing variable as response to WM_CLOSE, instead
21319             we destroy the window. We also call PostQuitMessage if the form
21320             has an application context (which makes it the main app form,
21321             which, when closed terminates the app)
21322         * XplatUI.cs:
21323           - Dropped Exit() method, it's naming was confusing
21324           - Added PostQuitMessage() which causes GetMessage to return false
21325             once the message queue is empty
21326         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
21327           PostQuitMessage()
21328         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
21329           no longer a valid XplatUI method, but left it in since it's used
21330           internally. Added empty PostQuitMessage() method.
21331         * MenuAPI.cs: Replaced call to Exit() with call to
21332           PostQuitMessage, even though this is probably no longer needed.
21333         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
21334         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
21335         * Application.cs:
21336           - Replaced call to XplatUI.Exit() with PostQuitMessage()
21337           - Removed old debug code that would call XplatUI for exception
21338             display, enabled standard exception handling (Still not enabled
21339             though, until NativeWindow's ExternalExceptionHandler define
21340             is removed
21341         * NativeWindow.cs:
21342           - Added internal method to allow control to update NativeWindow
21343             after a window has been destroyed
21344           - Added handling of already destroyed windows when calling i
21345             DestroyWindow
21346           - Added removal of handle from list on ReleaseHandle
21347         * XplatUIX11.cs:
21348           - Dropped GetMessageResult var and related code
21349           - Added PostQuitState to field to track if PostQuitMessage has been
21350             called
21351           - Dropped Exit() method
21352           - Added PostQuitMessage() method
21353           - GetMessage now will return false if PostQuitState is set and no
21354             more messages are in the queue.
21355           - Expose handler will no longer generate WM_PAINT messages if we are
21356             in PostQuitState since it's very likely any windows have already
21357             been destroyed, and since Hwnd won't get updated until we have
21358             processed the DestroyNotify we'd be causing X errors.
21359         
21360 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21361
21362         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
21363           Thanks to Mike for pointing out the err of my ways.
21364
21365 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21366
21367         * Control.cs(PreProcessMessage): Moved menu handling back, but
21368           after all other key handling, to match MS (who handles Menu in
21369           DefWndProc)
21370         * Menu.cs (WndProc): Removed my brainfart
21371
21372 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21373
21374         * Control.cs(PreProcessMessage): Removed special menu handling 
21375         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
21376
21377 2005-12-07  Mike Kestner  <mkestner@novell.com>
21378
21379         * Control.cs : special case SYSKEYUP so that we can adjust keynav
21380         state according in tracker.
21381         * Menu.cs : promote tracker field to base class and provide a tracker
21382         lookup capability.  Add/Remove shortcuts dynamically if the top menu
21383         has a tracker. Unparent items that are removed from the collection.
21384         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
21385         * Theme*.cs: add always_show_hotkeys field to support configurability
21386         of mnemonic display.  win32 doesn't show mnemonics until Alt is
21387         pressed.
21388
21389 2005-12-07  Jackson Harper  <jackson@ximian.com>
21390
21391         * MdiChildContext.cs: Use Control.ResetCursor.
21392         * Control.cs: ResetCursor needs to set the property so that the
21393         correct XplatUI call gets made.
21394
21395 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21396
21397         * Control.cs: More fixes to make our key events match MS. We
21398           were not setting the modifier state on KeyData, and we were
21399           not generating any events when Alt was pressed with a key
21400           since handling of WM_SYSxxx was missing for the OnKey methods.
21401
21402 2005-12-07  Jackson Harper  <jackson@ximian.com>
21403
21404         * MdiChildContext.cs: reenable the sizing code.
21405         - When the mouse leaves a window reset its cursor.
21406
21407 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21408
21409         * ThemeClearlooks.cs: Reflect latest Hwnd changes
21410
21411 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21412
21413         * Hwnd.cs: Now using the theme 3d bordersize to calculate
21414           widths of Fixed3D borders
21415
21416 2005-12-07  Jackson Harper  <jackson@ximian.com>
21417
21418         * MdiClient.cs: Fix warnings. Earn Mike's love.
21419
21420 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21421
21422         * ThemeClearlooks.cs:
21423           - Adjusted mouse over button color
21424           - Added first parts of CheckBox drawing
21425           - Added correct color for selected text background
21426           - Fixed ComboBox drawing
21427           - Added CPDrawBorder3D and CPDrawBorder
21428
21429 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21430
21431         * XplatUIX11.cs: Added call to XBell for AudibleAlert
21432
21433 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
21434
21435         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
21436           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
21437           alert users via sound. We could add an enum arg with different
21438           types of alerts in the future
21439
21440 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21441
21442         * Control.cs: Fix behaviour problems pointed out by Mike
21443
21444 2005-12-05  Mike Kestner  <mkestner@novell.com>
21445
21446         * StatusBarPanel.cs: add Invalidate method and hook it into all the
21447         prop setters.  Calls parent.Refresh for now, but could be maybe be
21448         optimized with an internal method on StatusBar at some point.
21449         [Fixes #76513]
21450
21451 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
21452
21453         * RichTextBox.cs: Implemented get_SelectionColor
21454
21455 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
21456
21457         * ThemeClearlooks.cs:
21458           - Removed dead code
21459           - Draw black button border only if button is Form.AcceptButton
21460           - Draw correct button color for pressed RadioButton if the mouse 
21461             has entered the button
21462           - Updated ProgressBar drawing!
21463           - Updated CPDrawSizeGrip drawing
21464           - Updated StatusBarPanel drawing
21465
21466 2005-12-05  Mike Kestner  <mkestner@novell.com>
21467
21468         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
21469         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
21470
21471 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
21472
21473         * ThemeClearlooks.cs: Initial check-in, activate with
21474           export MONO_THEME=clearlooks
21475         * ThemeEngine.cs: Added ThemeClearlooks
21476
21477 2005-12-03  Mike Kestner  <mkestner@novell.com>
21478
21479         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
21480         [Fixes #76897]
21481
21482 2005-12-02  Jackson Harper  <jackson@ximian.com>
21483
21484         * Form.cs: If the child form has no menu the default main menu is
21485         used as the active menu.
21486
21487 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
21488
21489         * ListBox.cs: Check if any items exist before trying to resolve 
21490           coordinates into items
21491
21492 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21493
21494         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
21495           as the second color for the background hatch
21496
21497 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21498
21499         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
21500         * RichTextBox.cs: FormatText position arguments are 1-based, now making
21501           sure that what we pass to FormatText is always 1-based. Fixes #76885
21502
21503 2005-11-29  Miguel de Icaza  <miguel@novell.com>
21504
21505         * NumericUpDown.cs (EndInit): When we are done initializing,
21506         reflect any updates on the UI.
21507
21508 2005-12-02  Jackson Harper  <jackson@ximian.com>
21509
21510         * ImplicitHScrollBar.cs:
21511         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
21512         their container controls.
21513         * TreeView.cs: Use the new implicit scrollbars.
21514
21515 2005-12-02  Jackson Harper  <jackson@ximian.com>
21516
21517         * TreeView.cs: Make top_node internal so the TreeNodeCollections
21518         can play with it.
21519         * TreeNodeCollection.cs: If we remove the topnode we need to
21520         update topnode to the next node in line.
21521         - When clearing nodes go through the same process as removing
21522         them, so they get depareneted and checked if they are top node.
21523
21524 2005-12-01  Jackson Harper  <jackson@ximian.com>
21525
21526         * TreeView.cs: When imagelists are used the image area is
21527         selectable as well as the text.
21528         - If there are no selected nodes select the first one.
21529         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
21530         so don't do it more then we need to.
21531
21532 2005-12-01  Jackson Harper  <jackson@ximian.com>
21533
21534         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
21535         that arrows can be scaled.
21536
21537 2005-12-01  Jackson Harper  <jackson@ximian.com>
21538
21539         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
21540         fail. Patch by Dieter Bremes
21541
21542 2005-11-30  Jackson Harper  <jackson@ximian.com>
21543
21544         * Form.cs: Property is 2.0 only
21545         * PrintDialog.cs: Signature fix.
21546
21547 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21548
21549         * TextControl.cs: 
21550           - No longer artificially moves text 2 pixels down (now that we have
21551             borders this is no longer needed)
21552           - Added calcs for left, hanging and right indent
21553
21554 2005-11-23  Mike Kestner  <mkestner@novell.com>
21555
21556         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
21557
21558 2005-11-30  Jackson Harper  <jackson@ximian.com>
21559
21560         * MdiChildContext.cs: Set the cloned menus forms, as these don't
21561         get cloned as part of CloneMenu ().
21562         * Menu.cs: Make sure the parent of the items get set correctly
21563         when they are added.  And the owners are notified of the changes.
21564         * Form.cs: Create an ActiveMenu property, so that when MDI is used
21565         we can change the menu being displayed/handled by the form without
21566         changing the menu assosciated with the form.
21567         - Don't let Mdi children draw/handle menus.
21568         
21569 2005-11-30  Jackson Harper  <jackson@ximian.com>
21570
21571         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
21572         a MenuChanged event. Just to make the API a little more
21573         consistent.
21574         * MainMenu.cs:
21575         * MenuItem.cs: Use the new OnMenuChanged
21576         * MdiChildContext.cs: Handle menu merging.
21577         * Form.cs: Implement MergedMenu.
21578         
21579 2005-11-30  Jackson Harper  <jackson@ximian.com>
21580
21581         * Menu.cs: We were misusing Add. Add goes behind the specified
21582         index according to the docs, and does not replace the specified
21583         index. So I added an Insert method.
21584
21585 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21586
21587         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
21588           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
21589           is for Jackson
21590         * RichTextBox.cs: Added calls to base for DnD events
21591
21592 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
21593
21594         * TextControl.cs:
21595           - Fixed drag-selection related crash; style fixes
21596           - Implemented undo class
21597             o Implemented method to capture document state for specified
21598               range in document tree
21599             o Implemented method to restore captured document state
21600             o Implemented cursor tracking
21601             o Implemented basic undo stack
21602           - Added undo cursor tracking to methods altering cursor location
21603           - Added undo tracking to selection deletion (still missing
21604             other text-altering hookups)
21605         * RichTextBox.cs:
21606           - Added SelectionLength property
21607           - Implemented CanPaste()
21608           - Implemented Paste()
21609           - Added missing protected methods
21610           - Fixed RTF->Document conversion; now uses font index 0 and color 
21611             index 0 as the default font for the parsed text
21612           - Fixed RTF<->Document font size translation
21613           - Fixed RTF generation, now properly handles cross-tag boundaries
21614             for single line selection
21615           - No longer always appends blank line to generated RTF
21616           - Removed TODOs
21617           - Added missing attributes
21618           - Hooked up undo-related methods
21619         * TextBoxBase.cs:
21620           - Implemented Copy()
21621           - Implemented Paste()
21622           - Implemented Cut()
21623           - Fixed caret mis-behaviour on backspace across line-boundaries
21624
21625 2005-11-29  Jackson Harper  <jackson@ximian.com>
21626
21627         * MdiClient.cs: Add a method for activating mdi children. Very
21628         basic right now. I imagine someday it might need more girth.
21629         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
21630         children windows names are added to the menu item.
21631         * ThemeWin32Classic.cs: Draw the arrow if the item is an
21632         mdilist. This happens regardless of whether or not there are any
21633         mdi windows to see in the list, and according to my tests happens
21634         before the items are even added. Also happens if there isn't even
21635         an mdi client to get windows from.
21636
21637 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
21638
21639         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
21640         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
21641
21642 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
21643
21644         * DataGridTableStyle.cs:
21645           - Create always the styles for the missing columns even if they are
21646             provided by the user (not default table style)
21647         * DataGrid.cs:
21648           - Fixes bug 76770
21649           - Fixes SetDataBinding (always re-attach source)
21650           - Fixes SetNewDataSource (only clear styles if they are not for 
21651             this source)
21652          -  Expands OnTableStylesCollectionChanged to handle style refresh 
21653             and remove properly
21654
21655 2005-11-29  Jackson Harper  <jackson@ximian.com>
21656
21657         * FileDialog.cs: Implement missing bits, remove some dead
21658         code.
21659         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
21660         creation of the panel so that the options set on the dialog are
21661         seen when the panel is created.
21662         * TreeView.cs: raise a click when items are clicked.
21663         
21664 2005-11-29  Jackson Harper  <jackson@ximian.com>
21665
21666         * MdiClient.cs: Pass some signature methods through to base.
21667
21668 2005-11-28  Jackson Harper  <jackson@ximian.com>
21669
21670         * ListView.cs: Raise the click event when items are clicked.
21671
21672 2005-11-28  Jackson Harper  <jackson@ximian.com>
21673
21674         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
21675         a nullref.
21676
21677 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
21678
21679         * ThemeNice.cs: - Removed 1 pixel bitmaps
21680           - Use SmoothingMode.AntiAlias where it makes sense
21681             (ScrollButton arrow for example)
21682           - Enhanced Button focus drawing
21683           - Fixed ComboBox drawing (no artefacts anymore, focus
21684             rectangle is back again, reduced size of ComboButton, etc.)
21685           - Fixed RadioButton focus drawing for Appearence.Button
21686           - Slight ScrollButton redesign
21687           - Some LinearGradientBrush size fixes
21688           - GroupBoxes have now rounded edges
21689           - Fixed StatusBar drawing
21690
21691 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
21692
21693         * ThemeNice.cs: - Remove dead code
21694           - use correct background colors for menus, etc.
21695           - Fake pixel drawing with 1 pixel bitmaps
21696
21697 2005-11-24  Jackson Harper  <jackson@ximian.com>
21698
21699         * MdiClient.cs: Size the scrollbars when resizing the window.
21700         - Resize the maximized windows when the client is resized
21701         * Form.cs: Make the child context available
21702         
21703 2005-11-23  Jackson Harper  <jackson@ximian.com>
21704
21705         * MdiChildContext.cs: Don't size windows if they are maximized.
21706
21707 2005-11-23  Mike Kestner  <mkestner@novell.com>
21708
21709         * ContextMenu.cs: use MenuTracker.
21710         * Control.cs: remove menu handle usage.
21711         * Form.cs: remove menu handle usage.
21712         * Hwnd.cs: remove menu handle usage.
21713         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
21714         motion and clicks to the new Tracker handlers.
21715         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
21716         and handle usage.
21717         * MenuAPI.cs: refactored to combine popup and menubar event handling.
21718         Killed the MENU and MENUITEM data types and associated collections
21719         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
21720         MenuTracker class that exposes the leftovers from the old MenuAPI
21721         static methods. Restructured Capture handling so that only one grab is
21722         done for the entire menu hierarchy instead of handing off grabs to
21723         submenus. Tracker now has an invisible control to Capture when active.
21724         * MenuItem.cs: add sizing accessors, kill Create
21725         and handle usage.
21726         * Theme.cs: remove menu handle and MENU(ITEM) usage.
21727         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
21728         MENU(ITEM). remove menu handle usage, use Menu directly.
21729         * XplatUIDriver.cs: remove menu handle usage.
21730         * XplatUIOSX.cs: remove menu handle usage.
21731         * XplatUIWin32.cs: remove menu handle usage.
21732         * XplatUIX11.cs: remove menu handle usage.
21733
21734 2005-11-22  Jackson Harper  <jackson@ximian.com>
21735
21736         * Hwnd.cs: Don't compute the menu size for
21737         DefaultClientRectangle.
21738         - Reenable menu sizes being computed for GetClienRectangle.
21739         * Form.cs: Remove comment of trechery
21740         
21741 2005-11-22  Jackson Harper  <jackson@ximian.com>
21742
21743         * Hwnd.cs: The adjustments for the menu bar are made when it is
21744         attached to the form.
21745
21746 2005-11-19  Jackson Harper  <jackson@ximian.com>
21747
21748         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
21749         (just like on windows).
21750
21751 2005-11-19  Jackson Harper  <jackson@ximian.com>
21752
21753         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
21754         use real buttons anymore because they are in non client area. The
21755         one TODO here is that I need to somehow invalidate a section of
21756         the non client area.
21757
21758 2005-11-18  Jackson Harper  <jackson@ximian.com>
21759
21760         * Control.cs: Put the enum check back in now that MDI doesnt have
21761         to use this to set border styles.
21762         * Form.cs: Only set mdi child windows borders if the handle has
21763         been created.
21764         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
21765         this directly on to the driver.
21766         - Get the move start position before adjusting for the titlebar
21767         height, this fixes the windows "skipping" when they are first
21768         moved.
21769
21770 2005-11-18  Jackson Harper  <jackson@ximian.com>
21771
21772         * XplatUIX11.cs: Just compute the mdi borders separately as they
21773         don't totally match up with normal form borders.
21774
21775 2005-11-18  Jackson Harper  <jackson@ximian.com>
21776
21777         * Control.cs: Set WS_ styles for borders, so that the driver does
21778         not have to retrieve the control instance to figure out what kind
21779         of borders it should have.
21780         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
21781         driver can know its an mdi child easily.
21782         * XplatUIX11.cs: Get the border styles and whether the window is
21783         MDI from the Styles and ExStyles params instead of having to get a
21784         control. This prevents a chicken and egg problem.       
21785
21786 2005-11-18  Jackson Harper  <jackson@ximian.com>
21787
21788         * MdiClient.cs: Fix typo so scrollbars show up correctly.
21789
21790 2005-11-18  Jackson Harper  <jackson@ximian.com>
21791
21792         * MdiClient.cs: Calculate when to add and remove scrollbars
21793         correctly.
21794         * MdiChildContext.cs: Adjust the y position to take the titlebar
21795         into account.
21796         - No height for FormBorderStyle.None
21797
21798 2005-11-18  Jackson Harper  <jackson@ximian.com>
21799
21800         * Control.cs: Allow non enum values to be used for
21801         InternalBorderStyle.  MDI does this to set a special border style.
21802         - New utility methods for converting points to/from client coords
21803         - Add the newly created control to the Controls collection before
21804         updating its style. This way UpdateStyle can walk the control
21805         heirarchy to find the control if needed.
21806         so I don't need to create a new Point object all the time.
21807         * Form.cs: Let MDI windows handle their border styles.
21808         - Set styles on MDI windows so the correct title style is derived.
21809         * MdiChildContext.cs: Move all the painting and window handling
21810         into the non client area.
21811         - Use correct sizing and put correct buttons on frames based on
21812         the FormBorderStyle.
21813         - Notify the mdi client about scrolling
21814         - Need to handle the buttons ourselves now, because they are all
21815         in non client areas and we can't add controls there.
21816         * MdiClient.cs: Halfway to scrolling, this implementation is
21817         somewhat broken though, we need to check to make sure other
21818         windows aren't causing scrolling before removing the bars. Also
21819         the bars need to be drawn on top, maybe I can switch implicit
21820         controls to be on top.
21821         * Hwnd.cs: caption_height and tool_caption_height are now
21822         properties of an hwnd, this way they can be set by the driver
21823         based on the type of window they are.  In X11 the window manager
21824         handles the decorations so caption_height is zero unless its an
21825         MDI window.
21826         - Add 3 pixel borders for MDI windows (0xFFFF).
21827         - Get rid of some code duplication, have DefaultClientRectanle
21828         just call GetClientRectangle.
21829         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
21830         Hwnd now.
21831         - Set border styles differently for mdi windows.
21832         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
21833         Hwnd now.
21834         
21835 2005-11-15  Mike Kestner  <mkestner@novell.com>
21836
21837         * Menu.cs: when adding an item to the collection, if item is already 
21838         parented, remove it from the parent.
21839
21840 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
21841
21842         * X11DesktopColors.cs: Added KDE support
21843
21844 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
21845
21846         * XplatUIWin32.cs: 
21847           - Clipboard methods now can translate Rtf format
21848           - No longer removes clipboard contents whenever a new format is added
21849             to allow placing multiple formats on the clipboard
21850         * Clipboard.cs: Clipboard now supports getting a IDataObject and
21851           will place all formats contained in it onto the clipboard. Also
21852           now cleans the clipboard before placing a new object onto it
21853         * RichTextBox.cs:
21854           - Implemented set_Rtf
21855           - Implemented set_SelectedRtf
21856           - Created InsertRTFFromStream() method to allow single code base
21857             for all properties and methods that insert RTF into document
21858           - Removed debug output
21859         * TextControl.cs:
21860           - Fixed Delete(int) to fix up line numbers
21861           - Fixed ReplaceSelection to combine start and end line
21862           - Fixed serious DeleteChars bug that would leave the document tree
21863             broken
21864           - Improved DumpTree with several logic checks to detect broken
21865             document trees
21866           - Removed debug lines
21867           - Fixed Caret.WordForward/WordBack moving code, now always also 
21868             updates caret.tag (fixes crash when word-selecting across tag
21869             boundaries via keyboard)
21870           - Added Insert() method for inserting multiline text into documents
21871           - Fixed DeleteChars() calculation errors that would cause a broken
21872             tag chain with multiple tag lines
21873           - DeleteChars() no longer crashes on multi-tag lines if not all tags
21874           - Split() no longer moves caret if split is at caret location
21875           - ReplaceSelection() now updates the cursor and re-displays it
21876           - ReplaceSelection() now uses new Insert() method to avoid code
21877             duplication
21878           - FormatText() can now handle formatting partial lines
21879         * TextBoxBase.cs:
21880           - Append now uses new TextControl.Insert() method (this avoids 
21881             duplicate code)
21882           - Implemented Ctrl-X (Cut) (
21883           - Implemented Ctrl-C (Copy)
21884           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
21885             regeneration when pasting text; roundtripping Copy&Paste within
21886             edit control still fails due to some calculation bugs in GenerateRTF)
21887           - The Delete key will now remove the current selection if it is visible
21888         * TextBox.cs: Removed debug lines
21889         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
21890           driver to be initialized and can't therefore be done via a static ctor)
21891
21892 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
21893
21894         * TextControl.cs: Added backend code for finding char arrays and strings
21895         * TextBoxBase.cs:
21896           - Added mouse wheel scroll support
21897           - Added support for VScroll and HScroll events
21898         * RichTextBox.cs:
21899           - Implemented all seven Find() variants
21900           - Implemented GetCharFromPosition()
21901           - Implemented GetCharIndexFromPosition()
21902           - Implemented GetLineFromIndex()
21903           - Implemented GetPositionFromCharIndex();
21904           - Implemented SaveFile for PlainText and UnicodeText
21905           - Fixed set_Font, now setting a new font applies that font to
21906             the whole document
21907           - Implemented generic Document to RTF converter
21908           - Implemented SaveFile for RichText format (still missing unicode
21909             conversion for non-ansi chars)
21910           - Implemented get_Rtf
21911           - Implemented get_SelectedRtf
21912
21913 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
21914
21915         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
21916           to allow any captures to be released before triggering OnClick. This
21917           way a click handler may capture the mouse without interference.
21918         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
21919           This way we send them even though X may not allow a grab (if the window
21920           isn't visible, for example)
21921
21922 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
21923
21924         * DataGridViewRowEventArgs.cs: DataGridView implementation
21925         * DataGridViewElement.cs: DataGridView implementation
21926         * DataGridViewComboBoxCell.cs: DataGridView implementation
21927         * DataGridViewDataErrorContexts.cs: DataGridView implementation
21928         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
21929         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
21930         * ImageLayout.cs: DataGridView implementation
21931         * DataGridViewComboBoxColumn.cs: DataGridView implementation
21932         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
21933         * DataGridViewSelectionMode.cs: DataGridView implementation
21934         * IDataGridViewEditingControl.cs: DataGridView implementation
21935         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
21936         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
21937         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
21938         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
21939         * DataGridViewColumnSortMode.cs: DataGridView implementation
21940         * DataGridView.cs: DataGridView implementation
21941         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
21942         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
21943         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
21944         * Padding.cs: DataGridView implementation
21945         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
21946         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
21947         * DataGridViewRowEventHandler.cs: DataGridView implementation
21948         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
21949         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
21950         * DataGridViewButtonCell.cs: DataGridView implementation
21951         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
21952         * DataGridViewEditMode.cs: DataGridView implementation
21953         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
21954         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
21955         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
21956         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
21957         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
21958         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
21959         * DataGridViewCellEventHandler.cs: DataGridView implementation
21960         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
21961         * DataGridViewCellStyleConverter.cs: DataGridView implementation
21962         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
21963         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
21964         * DataGridViewColumnEventArgs.cs: DataGridView implementation
21965         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
21966         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
21967         * QuestionEventArgs.cs: DataGridView implementation
21968         * IDataGridViewEditingCell.cs: DataGridView implementation
21969         * DataGridViewTriState.cs: DataGridView implementation
21970         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
21971         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
21972         * DataGridViewColumnCollection.cs: DataGridView implementation
21973         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
21974         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
21975         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
21976         * DataGridViewColumn.cs: DataGridView implementation
21977         * DataGridViewCellBorderStyle.cs: DataGridView implementation
21978         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
21979         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
21980         * DataGridViewRow.cs: DataGridView implementation
21981         * DataGridViewImageCellLayout.cs: DataGridView implementation
21982         * DataGridViewImageCell.cs: DataGridView implementation
21983         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
21984         * DataGridViewCheckBoxCell.cs: DataGridView implementation
21985         * DataGridViewHeaderCell.cs: DataGridView implementation
21986         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
21987         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
21988         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
21989         * DataGridViewTextBoxColumn.cs: DataGridView implementation
21990         * QuestionEventHandler.cs: DataGridView implementation
21991         * DataGridViewCellStyleScopes.cs: DataGridView implementation
21992         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
21993         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
21994         * DataGridViewCell.cs: DataGridView implementation
21995         * DataGridViewCellEventArgs.cs: DataGridView implementation
21996         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
21997         * DataGridViewCellStyle.cs: DataGridView implementation
21998         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
21999         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
22000         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
22001         * TextFormatFlags.cs: DataGridView implementation
22002         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
22003         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
22004         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
22005         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
22006         * DataGridViewButtonColumn.cs: DataGridView implementation
22007         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
22008         * HandledMouseEventArgs.cs: DataGridView implementation
22009         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
22010         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
22011         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
22012         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
22013         * DataGridViewRowCollection.cs: DataGridView implementation
22014         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
22015         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
22016         * DataGridViewHitTestType.cs: DataGridView implementation
22017         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
22018         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
22019         * DataGridViewColumnEventHandler.cs: DataGridView implementation
22020         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
22021         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
22022         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
22023         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
22024         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
22025         * DataGridViewContentAlignment.cs: DataGridView implementation
22026         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
22027         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
22028         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
22029         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
22030         * DataGridViewPaintParts.cs: DataGridView implementation
22031         * DataGridViewCellCollection.cs: DataGridView implementation
22032         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
22033         * DataGridViewImageColumn.cs: DataGridView implementation
22034         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
22035         * DataGridViewElementStates.cs: DataGridView implementation
22036         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
22037         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
22038         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
22039         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
22040         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
22041         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
22042         * DataGridViewRowHeaderCell.cs: DataGridView implementation
22043         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
22044         * DataGridViewTextBoxCell.cs: DataGridView implementation
22045         * DataGridViewBand.cs: DataGridView implementation
22046         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
22047         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
22048         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
22049         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
22050         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
22051         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
22052         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
22053         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
22054         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
22055         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
22056         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
22057
22058 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
22059
22060         * ThemeWin32Classic.cs: 
22061           - Draw the outside focus rectangle around buttons
22062           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
22063             doesn't use end caps for every dash of a line anymore. This
22064             workaround ignores the forecolor.
22065
22066 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
22067
22068         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
22069           endian safe.
22070
22071 2005-11-07  Jackson Harper  <jackson@ximian.com>
22072
22073         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
22074
22075 2005-11-07  Jackson Harper  <jackson@ximian.com>
22076
22077         * ScrollableControl.cs: Calculate the maximum and change vars
22078         (more) correctly so that scrollbars appear as a sensible size.
22079
22080 2005-11-04  Jackson Harper  <jackson@ximian.com>
22081
22082         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
22083         collection.
22084         * TreeView.cs: When the tree is sorted null out the top_node so
22085         that it is recalculated.
22086         - Use dotted lines instead of dashed lines to match MS better.
22087
22088 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
22089
22090         * ListView.cs: 
22091           - Implements key search for items. Useful when browsing files with FileDialog
22092           - When changing view mode or when clear the items reset scrollbar positions
22093
22094 2005-11-04  Jackson Harper  <jackson@ximian.com>
22095
22096         * CurrencyManager.cs: Implement the MetaDataChanged event, the
22097         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
22098         as to what the method may do as there is no real way of creating a
22099         derived CurrencyManager and calling the method. 
22100
22101 2005-11-03  Jackson Harper  <jackson@ximian.com>
22102
22103         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
22104         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
22105         method which seems to just be used internally to refresh the tabs.
22106
22107 2005-11-03  Jackson Harper  <jackson@ximian.com>
22108
22109         * TabControl.cs: Implement the remove method. Fix some broken
22110         comments.
22111
22112 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22113
22114         * DateTimePicker.cs:
22115           - Added missing DateTimePickerAccessibleObject class
22116           - Added missing events
22117           - Added OnFontChanged method
22118         * Form.cs: Added missing attributes
22119         * TreeView.cs: Added missing attributes
22120
22121 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
22122
22123         * GridItemCollection.cs: Fix signatures
22124
22125 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22126
22127         * XplatUI.cs: Updated build rev/date
22128         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
22129           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
22130         * Application.cs: Trigger context-specific ExitThread events
22131
22132 2005-11-03  Jackson Harper  <jackson@ximian.com>
22133
22134         * Menu.cs:
22135         * MainMenu.cs:
22136         * GridTableStylesCollection.cs:
22137         * Timer.cs:
22138         * TabPage.cs:
22139         * HelpProvider.cs:
22140         * StatusBar.cs:
22141         * MonthCalendar.cs: Signature fixes
22142
22143 2005-11-03  Jackson Harper  <jackson@ximian.com>
22144
22145         * TreeNodeCollection.cs: Remove should not be virtual.
22146         * TreeView.cs: Implement the last of the missing methods.
22147
22148 2005-11-03  Jackson Harper  <jackson@ximian.com>
22149
22150         * TreeNodeConverter.cs: Implement to get off my class-status back.
22151
22152 2005-11-03  Jackson Harper  <jackson@ximian.com>
22153
22154         * TreeView.cs: Hookup the bits for drag and drop.
22155         * TreeNode.cs: Don't cache the tree_view or index anymore, now
22156         that nodes can be moved from tree to tree easily this just causes
22157         all sorts of problems.
22158         * TreeNodeCollection: Don't need to give treenodes an index and
22159         treeview anymore when they are added, these are computed on the
22160         fly. Also make sure to remove a node before its added.
22161
22162 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22163
22164         * TextControl.cs:
22165           - Added CaretSelection enum
22166           - Added comparison methods to Marker struct, makes selection code
22167             more readable
22168           - Added SelectionStart and SelectionEnd as 'moveable' location for
22169             the CaretDirection enum and handler
22170           - Added selection_prev variable to track optimized invalidation for
22171             word and line selection
22172           - Added SelectionVisible property (returns true if there is a valid 
22173             selection)
22174           - Switched CaretHasFocus to only display the caret if there is no
22175             visible selection
22176           - Avoiding StringBuilder.ToString to retrieve a single char, instead
22177             using the direct character index; should be much faster
22178           - Added various conditional debug statements
22179           - Fixed invalidation calculation for selection ranges
22180           - Added ExpandSelection() method to support word and line selection
22181           - Switched SetSelectionToCaret to use new Marker compare overloads
22182           - Added central IsWordSeparator() method to determine word 
22183             separators/whitespace and FindWordSeparator() to streamline common
22184             usage of IsWordSeparator()
22185         * TextBoxBase.cs:
22186           - Removed unneeded grabbed variable, it was just mirroring
22187             Control.Capture
22188           - No longer firing OnTextChanged event when Text setter is called,
22189             since the base will fire the event for us
22190           - Added handling of Ctrl-Up/Down selection
22191           - Added handling of Shift-Cursorkey selection
22192           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
22193             words
22194           - Added handling of Shift and Ctrl-Shift-Home/End selection
22195           - Removed some debug output
22196           - Added handling for single/double/tripple-click to place caret/
22197             select word/select line respectively (Fixes bug #76031)
22198           - Added support for drag expansion of word/line selection
22199         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
22200           current selection
22201
22202 2005-11-02  Jackson Harper  <jackson@ximian.com>
22203
22204         * X11Dnd.cs: If the drag is going to and from a MWF window just
22205         copy the data instead of sending it out through the X Selection
22206         mechanism.
22207
22208 2005-11-02  Jackson Harper  <jackson@ximian.com>
22209
22210         * X11Dnd.cs:
22211         * XplatUIX11.cs: When in a drag we don't want motion notify
22212         messages to get passed on to the other controls. This prevents
22213         mouse move messages from showing up in the drag source.
22214
22215 2005-11-02  Jackson Harper  <jackson@ximian.com>
22216
22217         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
22218         the correct button is release to end a drag.
22219         * XplatUIX11.cs: Make the button state internal so the drag system
22220         can access it.  Dragging needs to know about all button releases,
22221         not just left button.
22222
22223 2005-11-02  Miguel de Icaza  <miguel@novell.com>
22224
22225         * Form.cs (Icon): If the icon is null, reset the icon to the
22226         default value. 
22227
22228         * Cursor.cs: When writing the AND-mask bitmap do not include the
22229         number of colors, but hardcode those to two (black and white),
22230         fixes the loading of color cursors (Paint Dot Net).
22231
22232         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
22233         turn off autoscaling.
22234
22235         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
22236
22237 2005-11-02  Jackson Harper  <jackson@ximian.com>
22238
22239         * X11Dnd.cs: Make sure to send a status message if the pointer
22240         enters a control that can not accept a drop, otherwise the cursor
22241         isn't updated correctly. Also tried to compress the lines of code
22242         a bit.
22243
22244 2005-11-02  Jackson Harper  <jackson@ximian.com>
22245
22246         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
22247         set actions correctly.  This isn't perfect as XDND and win32 have
22248         some differences on how you allow actions. I'll clear this up by
22249         adding a path for drag from MWF to MWF windows.
22250         * XplatUIX11.cs: Hook into the dnd system.
22251
22252 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
22253
22254         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
22255         previously shown but they are no longer need it. Very obvious when 
22256         browsing files with FileDialog.
22257
22258 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
22259
22260         * Control.cs: We always need to call OnPaintBackground. We pretty much
22261           ignore AllPaintingInWmPaint and always do the painting there, whether 
22262           it's set or not, since we always ignore the WM_ERASEBKGND message 
22263           (which we don't generate on X11). This fixes #76616.
22264         * Panel.cs: Removed unneeded background painting. This happens properly
22265           in Control.cs already
22266
22267 2005-10-31  Mike Kestner  <mkestner@novell.com>
22268
22269         * Menu.cs: Add items to collection before setting their index.
22270         * MenuItem.cs : add range checking with ArgumentException like MS.
22271         [Fixes #76510]
22272
22273 2005-10-31  Jackson Harper  <jackson@ximian.com>
22274
22275         * ListBox.cs: Invalidate if the area is visible at all not just
22276         contained in the visible rect. Fixes unselection of semi visible
22277         items.
22278
22279 2005-10-31  Jackson Harper  <jackson@ximian.com>
22280
22281         * Control.cs: Consistently name the dnd methods. Make them
22282         internal so we can override them to match some MS behavoir
22283         internally.
22284         * Win32DnD.cs: Use the new consistent names.
22285
22286 2005-10-31  Jackson Harper  <jackson@ximian.com>
22287
22288         * TreeView.cs: Don't draw the selected node when we lose focus.
22289
22290 2005-10-31  Jackson Harper  <jackson@ximian.com>
22291
22292         * X11Dnd.cs: We still need to reset the state even though a full
22293         reset isn't being done, otherwise status's still get sent all over
22294         the place.
22295
22296 2005-10-31  Jackson Harper  <jackson@ximian.com>
22297
22298         * Control.cs: Make the dnd_aware flag internal so the dnd
22299         subsystem can check it. Catch exceptions thrown in dnd handlers to
22300         match MS behavoir.
22301         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
22302         * X11Dnd.cs: Handle null data in the converters. Set the XDND
22303         version when sending a XdndEnter. Use the control/hwnd dnd_aware
22304         flags to reduce the number of dnd enters/status's sent.
22305
22306 2005-10-31  Jackson Harper  <jackson@ximian.com>
22307
22308         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
22309
22310 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
22311
22312         * PictureBox.cs: Fixes 76512
22313
22314 2005-10-28  Jackson Harper  <jackson@ximian.com>
22315
22316         * X11Dnd.cs: Early implementation to support winforms being a drag
22317         source for data on X11. Also restructured the converters so they
22318         can go both ways now.
22319         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
22320         
22321 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
22322
22323         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
22324           clipboard requests
22325
22326 2005-10-27  Jackson Harper  <jackson@ximian.com>
22327
22328         * TreeNode.cs: Implement serialization so my DnD examples will work.
22329
22330 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
22331
22332         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
22333           TreeView.cs: Don't dispose objects that are not owned.
22334           
22335 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
22336
22337         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
22338           should retrieve the current cursor and report that, but XplatUI
22339           doesn't (yet) have an interface for that (and I'm not sure I even
22340           can, on X11)
22341         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
22342           until any message loop processing is done (and the WM_SETCURSOR
22343           replaces the cursor to the proper one)
22344         * XplatUIX11.cs: 
22345           - Fixed override behaviour, we can't set the cursor globally on X11, 
22346             just for our windows.
22347           - Invalidating the System.Drawing X11 display handle when we are
22348             shutting down
22349         * Control.cs: Fix to make csc happy
22350
22351 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
22352
22353         * TextBoxBase.cs: 
22354           - get_Text: Add last line (without trailing newline) to returned
22355             value (Fixes 76212)
22356           - get_TextLength: Count last line in returned length
22357           - ToString: Call Text property instead of duplicating code
22358
22359 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
22360
22361         * ImageList.cs: Dispose ImageAttributes objects.
22362
22363 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22364
22365         * ImageList.cs: Use attribute constructors with less arguments where
22366           possible.
22367
22368 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22369
22370         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
22371           Use typeof instead of strings when assembly is referenced. Added
22372           some more comments.
22373
22374 2005-10-21  Jackson Harper  <jackson@ximian.com>
22375
22376         * ListView.cs: Raise a double click event. Also tried to somewhat
22377         fix when the selectedindexchanged event is raised. Its still
22378         broken though.
22379
22380 2005-10-21  Jackson Harper  <jackson@ximian.com>
22381
22382         * TreeView.cs: New method to invalidate the plus minus area of a
22383         node without invalidating the whole node (maybe this can be used
22384         in some more places).
22385         * TreeNodeCollection.cs: When adding to an empty node we need to
22386         invalidate its plus minus area so the little block shows up.
22387         
22388 2005-10-21  Jackson Harper  <jackson@ximian.com>
22389
22390         * TreeView.cs: Make sure that when we invalidate a node the bounds
22391         are big enough to cover the selected box and the focus
22392         rectangle. Use a different colour for the lines connecting nodes
22393         so they show up with all themes.
22394
22395 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22396
22397         * NativeWindow.cs: Don't call anything that could call into the driver,
22398           we might be on a different thread.
22399
22400 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
22401
22402         * Control.cs(Dispose): Since Dispose might run on a different thread,
22403           make sure that we call methods that could call into the driver via
22404           invoke, to avoid thread issues
22405
22406 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22407
22408         * XplatUI.cs: Removed finalizer
22409         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
22410           not allowing to be called on the finalizer thread.
22411
22412 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
22413
22414         * ImageList.cs:
22415           - Reverted r51889 and r51891.
22416           - Added ImageListItem class that stores unmodified image items and image
22417             properties required to create list images until handle is created.
22418           - Added AddItem and moved image creation logic to AddItemInternal.
22419           - Added CreateHandle method that creates images based on unmodified items.
22420           - Added DestroyHandle that changes state to store unmodified items.
22421           - Add and AddStrip methods no more create handle.
22422           - ReduceColorDepth has no return value.
22423           - Dispose destroys handle.
22424           - Modified other methods to reflect the above changes.
22425           - Implemented key support.
22426           - Added profile 2.0 members and attributes.
22427           - Added private Reset and ShouldSerialize methods that provide the same
22428             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
22429             them as they are private.
22430           - Added some more comments about implementation details.
22431
22432 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22433
22434         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
22435
22436 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22437
22438         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
22439
22440 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22441
22442         * DataGridDrawingLogic.cs: Fixes column hit calcultation
22443         * DataGridColumnStyle.cs: Remove debug message
22444
22445 2005-10-20  Jackson Harper  <jackson@ximian.com>
22446
22447         * TreeView.cs: We can always get input keys regardless of whether
22448         or not editing is enabled. They are used for navigation.
22449
22450 2005-10-20  Jackson Harper  <jackson@ximian.com>
22451
22452         * TreeNode.cs: Use the viewport rect for determining if a node
22453         needs to be moved for visibility. Don't use Begin/End edit. This
22454         calls a full refresh when its done.
22455         * TreeView.cs: New SetBottom works correctly.  Make the viewport
22456         rect property internal so the treenodes can see it. When clicking
22457         on a node we need to ensure that its visible because it might just
22458         be partly visible when clicked.
22459
22460 2005-10-20  Jackson Harper  <jackson@ximian.com>
22461
22462         * TreeNodeCollection.cs: Remove debug code.
22463
22464 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22465
22466         * Datagrid.cs: Implements column sorting in Datagrid
22467         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
22468
22469 2005-10-20  Jackson Harper  <jackson@ximian.com>
22470
22471         * TreeNodeCollection.cs: Remove items properly. Update the correct
22472         area after removing them.
22473
22474 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22475
22476         * Datagrid.cs: Should not call base.OnPaintBackground
22477
22478 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22479
22480         * XplatUIX11.cs (GetMessage):
22481           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
22482             window instead of client window
22483           - Now properly calculates NC_xBUTTONUP message coordinates
22484           - ScreenToMenu now properly calculates it's coordinates of whole 
22485             window, since menus are in the whole window, not in the client
22486             window
22487           - Added WholeToScreen coordinate translation method
22488
22489 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
22490
22491         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
22492           want to return a message, loop back to the beginning of the function
22493           and grab the next real message to process instead.
22494
22495 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22496
22497         * Splitter.cs: Properly set limits if no filler control is used
22498
22499 2005-10-19  Jackson Harper  <jackson@ximian.com>
22500
22501         * ColorDialog.cs: Don't show the help button if it is not enabled
22502         instead of disabling it (this is what MS does). Don't create the
22503         panel until the dialog is run, otherwise the vars (such as
22504         ShowHelp) are not set yet.
22505
22506 2005-10-19  Jackson Harper  <jackson@ximian.com>
22507
22508         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
22509         are reduced when adding nodes.
22510         * TreeNode.cs:
22511         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
22512         tree.
22513         
22514 2005-10-19  Jackson Harper  <jackson@ximian.com>
22515
22516         * FolderBrowserDialog.cs: End editing our treeview so the window
22517         actually gets refreshed.
22518
22519 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22520
22521         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
22522           Obsoleted handling of WM_ERASEBKGND, now always draws our background
22523           inside of WM_PAINT
22524
22525 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22526
22527         * MenuAPI.cs: Returns after Hidding window
22528         * XplatUIX11.cs: Added TODO found while debugging menu issues
22529
22530 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22531
22532         * XplatUIX11.cs: Do not re-map the whole window when it's size
22533           becomes non-zero unless it's supposed to be actually visible
22534
22535 2005-10-18  Jackson Harper  <jackson@ximian.com>
22536
22537         * TreeView.cs: We don't need to keep a count anymore.
22538         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
22539         use the Grow method.
22540
22541 2005-10-18  Jackson Harper  <jackson@ximian.com>
22542
22543         * TreeNodeCollection.cs: Insert is not supported on arrays, so
22544         implement it manually here.
22545
22546 2005-10-18  Jackson Harper  <jackson@ximian.com>
22547
22548         * ImageList.cs: Dont kill the list when the colour depth is
22549         changed, just change the colour depth of all the images.
22550         - Same goes for setting the image size. Just resize them all
22551         instead of killing the list softly.
22552
22553 2005-10-18  Jackson Harper  <jackson@ximian.com>
22554
22555         * Control.cs: Don't invalidate empty rectangles.
22556
22557 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22558
22559         * ListViewItem.cs:
22560           - Adds checked item to the Checked/Item lists (where empty before)
22561           - Do not add items to the Selected lists if they are already present
22562         * ListView.cs:
22563           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
22564           - When deleting items make sure that we delete them for the Selected
22565           and Checked list also.
22566
22567 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22568
22569         * Label.cs: Dispose objects no longer used
22570         * ThemeWin32Classic.cs: Dispose objects no longer used
22571
22572 2005-10-18  Jackson Harper  <jackson@ximian.com>
22573
22574         * TabControl.cs: Don't refresh the whole control when the tabs are
22575         scrolled, we just need to refresh the tab area.
22576
22577 2005-10-17  Jackson Harper  <jackson@ximian.com>
22578
22579         * XplatUIX11.cs: Compress code a little bit. Only calculate the
22580         after handle when we need it.
22581
22582 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22583
22584         * Control.cs: When the parent size changes, recalculate anchor 
22585           positions. Partial fix for #76462
22586
22587 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22588
22589         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
22590           drawn. Fixes #76462
22591
22592 2005-10-17  Jackson Harper  <jackson@ximian.com>
22593
22594         * MonthCalendar.cs: Don't create the numeric up down until our
22595         handle is created. Otherwise our handle is created in the
22596         constructor and we don't know if we are a WS_CHILD or WS_POPUP
22597         yet.
22598
22599 2005-10-17  Jackson Harper  <jackson@ximian.com>
22600
22601         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
22602         correctly.
22603
22604 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22605         * TreeNode.cs : small logical fix (was using local var instead of field)
22606         
22607 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22608
22609         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
22610
22611 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22612
22613         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
22614
22615 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
22616
22617         * Control.cs: 
22618           - Re-implemented anchoring code. My first version was really broken.
22619             This fixes bug #76033. Unlike the previous implementation we will
22620             no longer have round errors since all numbers are calculated from
22621             scratch every time. Removed various anchor-related obsolete vars.
22622           - InitLayout no longer causes layout event firing and layout to be 
22623             performed
22624
22625 2005-10-16  Jackson Harper  <jackson@ximian.com>
22626
22627         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
22628         which was broken).
22629
22630 2005-10-16  Jackson Harper  <jackson@ximian.com>
22631
22632         * TabControl.cs: Remove debug code.
22633
22634 2005-10-16  Jackson Harper  <jackson@ximian.com>
22635
22636         * XEventQueue.cs: Increase the default queue size (very simple
22637         apps needed to grow the queue).
22638         * Hwnd.cs: No finalizer so we don't need to suppress
22639         finalization. Compute the invalid area manually so a new rectangle
22640         does not newto be created.
22641         * ScrollableControl.cs: Don't set any params (otherwise visibility
22642         isn't set correctly).
22643         * MdiChildContext.cs: New constructor takes the mdi parent so it
22644         doesn't have to be computed and avoids a crash on windows. Draw
22645         the window icon properly, and allow the text to be seen.
22646         * Form.cs: Use new MdiChildContext constructor. Make sure the
22647         child context isn't null in wndproc.
22648         * TabControl.cs: Don't set focus, this is muddling keyboard
22649         behavoir. Expand the tab rows when a window size increase will
22650         allow extra tabs to be seen. Don't allow tabs smaller than the
22651         width of a window to be scrolled out of view.
22652         * TreeNode.cs:
22653         * TreeView.cs: Use measure string to calculate a nodes width, the
22654         width is cached and only updated when the text or the font is
22655         changed. Don't check for expand/collapse clicks on the first level
22656         nodes if root lines are disabled.
22657         
22658 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
22659
22660         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
22661
22662 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22663
22664         * DataGridBoolColumn.cs: fixes warning
22665
22666 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22667
22668         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
22669         to match more to match more precisely the MS Net behavior
22670
22671 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22672
22673         * Hwnd.cs: Added field to track if window is mapped
22674         * XplatUIX11.cs: 
22675           - Unmap windows if they become 0-size, re-map when 
22676             they are >0 again; fixes #76035
22677           - Re-set our error handler after initializing X11Desktop
22678             to override any error handlers Gtk or whatever was called
22679             may have set.
22680
22681 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22682
22683         * CheckedListBox.cs: Removed unused vars
22684         * ListView.cs: Fixed signatures
22685         * RichTextBox.cs: Removed unused vars
22686         * TextBoxBase.cs: Removed unused vars
22687         * XplatUIWin32.cs: Removed unused vars
22688         * XplatUIX11.cs: Removed unused vars
22689         * XplatUI.cs: Updated version and date to latest published
22690
22691 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22692
22693         * Cursor.cs: Added private .ctor to work around a bug in
22694           resourceset (Thanks to Geoff Norton for the help on this)
22695         * SplitterEventArgs.cs: Made fields accessible so we don't
22696           waste boatloads of objects and can reuse the same one
22697           in Splitter
22698         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
22699           any captions and borders when generating screen coordinates
22700         * Splitter.cs: Reimplemented control, now fully complete, uses
22701           rubberband drawing, supports and obeys all properties, has
22702           proper cursors
22703
22704 2005-10-13  Miguel de Icaza  <miguel@novell.com>
22705
22706         * Form.cs (Form): Setup default values for autoscale and
22707         autoscale_base_size;  Make these instance variables, not static
22708         variables. 
22709
22710         (OnLoad): on the first load, adjust the size of the form.
22711
22712 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22713
22714         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
22715           width argument to DrawReversibleRectangle()
22716         * XplatUIWin32.cs, XplatUIX11.cs: 
22717           - Implemented width for DrawReversibleRectangle()
22718           - Added logic to DrawReversibleRectangle that recognizes a zero
22719             width or height and only draws a line in that situation
22720         
22721 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
22722
22723         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
22724         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
22725         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
22726           method (it uses our FosterParent window to get a graphics context)
22727
22728 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
22729
22730         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
22731           and SetWindowBackground methods
22732         * Control.cs:
22733           - Setting proper ControlStyles
22734           - We no longer call XplatUI.SetWindowBackground and XplatUI.
22735             EraseWindowBackground, instead we draw the window background
22736             ourselves in PaintControlBackground. This behaviour is
22737             required to match MS, where, when OnPaintBackground is not
22738             called, the background is not drawn.
22739           - Removed unneeded Refresh() in set_Text
22740         * Hwnd.cs: Dropped the ErasePending support. No longer needed
22741         * XplatUIX11.cs:
22742           - Created DeriveStyles method to translate from CreateParams to
22743             FormBorderStyle and TitleStyle, also handles BorderStyle (which
22744             matches FormBorderStyle enum values)
22745           - Consolidated SetHwndStyles and CalculateWindowRect border/title
22746             style calculations into single DeriveStyles method
22747           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
22748             from redrawing the whole window on any resize or expose.
22749           - Fixed CreateWindow usage of SetWindowValuemask. Before not
22750             all styles were applied to our whole/client window appropriately
22751           - Removed EraseWindowBackground() and SetWindowBackground() methods
22752           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
22753             no longer clear/redraw the background through X
22754           - Removed handling of erase_pending bit, we have no use for it (or
22755             so it seems)
22756         * XplatUIOSX.cs:
22757           - Removed generation and handling of WM_ERASEBKGND message
22758           - Removed EraseWindowBackground() and SetWindowBackground() methods
22759           - Removed handling of hwnd.ErasePending flag
22760         * XplatUIWin32.cs:
22761           - Removed EraseWindowBackground() and SetWindowBackground() methods
22762           - We no longer call EraseWindowBackground on PaintEventStart, we 
22763             ignore the fErase flag, erasing is handled in Control in the
22764             background handler
22765         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
22766           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
22767           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
22768           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
22769           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
22770           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
22771           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
22772
22773 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
22774
22775         * PropertyGrids.cs: Get sub properties
22776         * PropertyGridView.cs: Fix drawing code
22777
22778 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22779
22780         * ListBox.cs: Fixes 76383
22781
22782 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22783
22784         * DataGridTextBoxColumn.cs: Sets location and size before attachment
22785         * ThemeWin32Classic.cs: Fixes border drawing and calculations
22786         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
22787
22788
22789 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22790
22791         * ComboBox.cs: Fixes border drawing
22792
22793 2005-10-10  Miguel de Icaza  <miguel@novell.com>
22794
22795         * MimeIcon.cs: Ignore errors if the file can not be read.
22796
22797 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22798
22799         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
22800          - Fixed border calculations
22801          - Fixed horizontal scrolling in single column listboxes
22802          - Fixed drawing issues
22803
22804 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
22805
22806         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
22807           FormBorderStyle enum
22808         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
22809           code to determine FormBorderStyles from CreateParams
22810         * Form.cs:
22811           - Fixed bug where we'd set the wrong window styles if we were
22812             not creating an MDI window
22813           - Added call to XplatUI.SetBorderStyle when form borders are set
22814         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
22815         * Hwnd.cs:
22816           - Removed obsolete edge style
22817           - Switched from BorderStyle to FormBorderStyle
22818         
22819 2005-10-10  Jackson Harper  <jackson@ximian.com>
22820
22821         * Form.cs: Use the property to get the window handle instead of
22822         accessing it directly. Prevents a null reference exception.
22823
22824 2005-10-10  Jackson Harper  <jackson@ximian.com>
22825
22826         * TreeView.cs: Don't adjust the rect given to DrawString now that
22827         our libgdiplus draws correctly.
22828
22829 2005-10-08  Jackson Harper  <jackson@ximian.com>
22830
22831         * TreeView.cs: Don't try to find the clicked on node if there are
22832         no nodes in the tree.
22833
22834 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22835
22836         * RichTextBox.cs:
22837
22838           restore
22839
22840 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22841
22842         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
22843           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
22844           ErrorProvider.cs:
22845           Use ResPool for brushes and dispose System.Drawing objects that
22846           are not used anymore.
22847
22848 2005-10-07  Jackson Harper  <jackson@ximian.com>
22849
22850         * MdiChildContext.cs: Use the new borders instead of drawing them
22851         ourselves.
22852
22853 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22854
22855         * Calling UpdateBounds after changing the window's BorderStyle 
22856         since the style can change the ClientSize
22857
22858 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22859
22860         * Control.cs: Made PaintControlBackground virtual
22861         * Panel.cs: Overriding PaintControlBackground instead of using paint
22862           event; paint event method was interfering with 'real' users of the
22863           event.
22864
22865 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22866
22867         * ThemeWin32Classic.cs: remove border drawing since it is handled
22868         by the base control class now and was causing double border drawing.
22869
22870 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22871
22872         * Panel.cs: Redraw our background on paint. Not a pretty solution,
22873           but it does seem to match MS behaviour. This fixes bug #75324
22874
22875 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22876
22877         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
22878           somewhat hackish looking
22879
22880 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22881
22882         * TextBoxBase.cs:
22883           - We now accept Enter even if AcceptEnter is false, if the containing
22884             form does not have an AcceptButton configured (fixes bug #76355)
22885           - Calculations are now fixed to no longer use Width/Height, but
22886             ClientSize.Width/Height, since we now support borders (this was
22887             a result of fixing borders and therefore bug #76166)
22888           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
22889             true (fixes bug #76354)
22890         
22891 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22892
22893         * Control.cs: 
22894           - Defaulting BorderStyle and setting it in XplatUI when our window 
22895             is created
22896           - Added enum check to InternalBorderStyle setter
22897         * XplatUIX11.cs: 
22898           - Added drawing of window borders
22899           - Now properly calculates WM decorations offset for toplevel 
22900             windows (fixes bug #74763)
22901         * XplatUIWin32.cs: 
22902           - Implemented BorderStyles for windows (we're letting win32 draw 
22903             the border for us)
22904           - Fixed the signature for SetWindowLong
22905         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
22906           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
22907           setting borders
22908         * UpDownBase.cs: Remove drawing of borders, this is handled by
22909           the driver, outside the client area
22910         * ListView.cs: Removed bogus border calculations. The control should
22911           be oblivious to borders, since those are not part of the client
22912           area. 
22913         * X11DesktopColors.cs: Commented out (currently) unneeded variables
22914         * ThemeWin32Classic.cs: Removed border calculations from ListView 
22915           drawing code
22916
22917 2005-10-06  Jackson Harper  <jackson@ximian.com>
22918
22919         * MdiChildContext.cs: Clear out the old virtual position remove
22920         all the unneeded calls to CreateGraphics.
22921
22922 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22923
22924         * TextControl.cs: Use proper color for highlighted text; fixes #76350
22925
22926 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22927
22928         * Form.cs: 
22929           - Added loading and setting of our new default icon
22930           - Only set icon if window is already created
22931
22932 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22933
22934         * Label.cs:
22935           - Do not explicitly set the foreground and background colors, to
22936             allow inheriting from parents (fixes #76302)
22937           - Use Control's InternalBorderStyle property to deal with borders
22938
22939 2005-10-06  Jackson Harper  <jackson@ximian.com>
22940
22941         * MdiChildContext.cs: Use the new xplatui function to draw a
22942         reversible rect.
22943
22944 2005-10-06  Jackson Harper  <jackson@ximian.com>
22945
22946         * Form.cs: Add the parent before creating the child context cause
22947         we need the parent when setting up the child.
22948
22949 2005-10-06  Jackson Harper  <jackson@ximian.com>
22950
22951         * FolderBrowserDialog.cs: redo the tree population code so a
22952         second thread isn't used. Should be a lot faster and more stable
22953         now.
22954
22955 2005-10-05  Jackson Harper  <jackson@ximian.com>
22956
22957         * TreeView.cs: There are no expand/collapse boxes if the node has
22958         no children.
22959
22960 2005-10-05  Jackson Harper  <jackson@ximian.com>
22961
22962         * X11DesktopColors.cs: Get menu colours for the gtk theme.
22963
22964 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
22965
22966         * FileDialog.cs: Fix InitialDirectory
22967
22968 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
22969
22970         * ComboBox.cs:
22971                 - Fixes changing between styles
22972                 - Fixes simple mode
22973                 - Fixes last item crashing when navigating with keyboard
22974
22975 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
22976
22977         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
22978
22979 2005-10-05  Jackson Harper  <jackson@ximian.com>
22980
22981         * TreeView.cs: If updating the root node do a full refresh.
22982         * TreeNode.cs: The root node should be expanded by default. Also
22983         added a utility prop to tell if we are the root node.
22984         * TreeNodeCollection.cs: Only refresh if the node we are being
22985         added to is expanded. Also added a comment on a potential
22986         optimization.
22987         
22988 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
22989
22990         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
22991           in dispose method. Fixes #76330
22992
22993 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
22994
22995         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
22996
22997                 - Implements vertical and horizontal scrolling using XplatUI
22998                 - Fixes keyboard navagation
22999                 - Fixes EnsureVisible
23000                 - Drawing fixes
23001                 - Handles and draws focus properly
23002
23003
23004 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
23005
23006         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
23007           Create handle. NET_2_0: Destroy handle when value is null.
23008
23009 2005-10-03  Jackson Harper  <jackson@ximian.com>
23010
23011         * ScrollBar.cs: My last scrollbar patch was broken. This is a
23012         revert and a new patch to prevent the thumb from refreshing so
23013         much.
23014
23015 2005-10-02  Jackson Harper  <jackson@ximian.com>
23016
23017         * ScrollBar.cs: Don't update position if it hasn't actually
23018         changed. This occurs when you hold down the increment/decrement
23019         buttons and the thumb gets to the max/min.
23020
23021 2005-10-01  Jackson Harper  <jackson@ximian.com>
23022
23023         * Form.cs:
23024         * MdiChildContext.cs:
23025         * MdiClient.cs: Implement ActiveMdiChild in Form.
23026
23027 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
23028
23029         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
23030
23031 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
23032
23033         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
23034           be found
23035
23036 2005-09-30  Jackson Harper  <jackson@ximian.com>
23037
23038         * ListBox.cs: Don't do a full refresh unless some data has
23039         actually changed.
23040
23041 2005-09-30  Jackson Harper  <jackson@ximian.com>
23042
23043         * TreeView.cs: Make sure that the checkboxes size is factored in
23044         even when not visible.
23045
23046 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
23047
23048         * FileDialog.cs: Fix Jordi's build break
23049
23050 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
23051
23052         * FileDialog.cs: 
23053                 - Use standard the Windows colours for the combobox as espected
23054                 - Dispose objects that use resouces when no longer need them
23055
23056 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
23057
23058         * X11DesktopColors.cs: Initial incomplete implementation
23059         * XplatUIX11.cs: Added call to initialize X11DesktopColors
23060
23061 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
23062
23063         * Theme.cs: 
23064           - Switched Theme color names to match the names defined in 
23065             System.Drawing.KnownColors. Life's hard enough, no need to make 
23066             it harder.
23067           - Added setters to all theme color properties so themes can set
23068             their color schemes. The setters also propagate the color changes
23069             to System.Drawing.KnownColors via reflection
23070         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
23071           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
23072           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
23073           use the new, more logical theme color names
23074         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
23075           post-NT colors
23076         * ThemeWin32Classic.cs:
23077           - Removed code to set the old classic Windows colors. Instead it
23078             now relies on the colors returned by System.Drawing.KnownColors
23079             which will be either modern static colors (Unix) or colors
23080             read from the user's configuration (Win32)
23081           - Updated to use the new, more logical theme color names
23082           - Switched DataGrid drawing code to use only Theme colors instead of
23083             a mix of System.Drawing.KnownColors and Theme colors
23084           - DrawFrameControl(): Removed code that fills the button area, the
23085             fill would overwrite any previous fill done by a control. This
23086             fixes bug #75338 
23087           - Added DrawReversibleRectangle() stub
23088         * ScrollableControl.cs: Set visible state to false when scrollbars
23089           are removed (pdn fix)
23090         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
23091           DrawReversibleRectangle() method to allow drawing primitive 
23092           'rubber bands'
23093         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
23094
23095 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23096
23097         * ImageList.cs: Add(Icon): Create handle.
23098
23099 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
23100
23101         * ListView.cs:
23102         * ThemeWin32Classic.cs:
23103                 - Fixes detail mode
23104                 - Sets clippings
23105                 - Issues with drawing
23106
23107 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23108
23109         * ImageList.cs: Moved RecreateHandle back to ImageList as event
23110           source has to be the ImageList.
23111
23112 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23113
23114         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
23115
23116 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23117
23118         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
23119
23120 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23121
23122         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
23123
23124 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
23125         * GridItem.cs: Fixed TODOs
23126         * GridItemCollection.cs: Added ICollection interface
23127
23128 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23129
23130         * ImageList.cs: Resize icons when needed.
23131
23132 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
23133
23134         * ListViewItem.cs
23135                 - Fixes GetBounds and returns on screen rects
23136         * ListView.cs:
23137                 - Fixes vertical and horzintal scrolling of items
23138         * ThemeWin32Classic.cs:
23139                 - Fixes drawing
23140                 
23141 2005-09-29  Raja R Harinath  <harinath@gmail.com>
23142
23143         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
23144
23145 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
23146
23147         * ImageList.cs: Added comments about handle creation. Moved Handle,
23148           HandleCreated and OnRecreateHandle implementations to ImageCollection.
23149           Handle is created in Add methods.
23150
23151 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
23152          
23153         * DataGridDrawingLogic.cs: 
23154                 - Takes rows into account on Colum calculations
23155                 - Returns the column when clickig
23156         * DataGrid.cs:
23157                 - Fixes default HitTestInfo values
23158                 - Fixes HitTestInfo.ToString
23159                 - Fixes ResetBackColor          
23160         
23161 2005-09-28  Jackson Harper  <jackson@ximian.com>
23162
23163         * MdiChildContext.cs: Obey rules for fixed sized windows (no
23164         sizing or cursor changes). Also added some temp code to draw the
23165         titlebars text (Makes dev a little easier).
23166
23167 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
23168
23169         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
23170
23171 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
23172          
23173         * ListBox.cs: Fixes bug 76253
23174
23175 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
23176
23177         * ImageList.cs: Added comments about the current implementation. Added
23178           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
23179           Format32bppArgb to preserve transparency and can use Graphics.FromImage
23180           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
23181           with Bitmap.LockBits for better performance. Revised the whole file to
23182           match MS.NET behaviour and provide better performance. Non-public
23183           interface members are calling public members even when they throw
23184           NotSupportedException for better maintainability. Moved ColorDepth,
23185           ImageSize, ImageStream and TransparentColor implementations to
23186           ImageCollection for better performance as these properties are not used
23187           by ImageList.
23188         * ImageListStreamer.cs: Added a new internal constructor that takes an
23189           ImageList.ImageCollection and serializes Images based on
23190           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
23191           match ImageList property name.
23192
23193 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
23194
23195         * ListBox.cs: Fixes IndexFromPoint for last item
23196
23197 2005-09-27  Jackson Harper  <jackson@ximian.com>
23198
23199         * Form.cs: Set the position of new mdi children correctly.
23200
23201 2005-09-27  Jackson Harper  <jackson@ximian.com>
23202
23203         * MdiClient.cs: New mdi children need to be added to the back of
23204         the controls collection so the zorder is set correctly. Also add a
23205         count of all the child windows that have been created.
23206
23207 2005-09-27  Jackson Harper  <jackson@ximian.com>
23208
23209         * Form.cs (CreateParams): Setup MDI forms correctly.
23210
23211 2005-09-27  Jackson Harper  <jackson@ximian.com>
23212
23213         * MdiChildContext.cs:
23214         * MonthCalendar.cs:
23215         * UpDownBase.cs:
23216         * ListBox.cs:
23217         * ListView.cs:
23218         * TextBoxBase.cs:
23219         * TreeView.cs:
23220         * ScrollableControl.cs:
23221         * ComboBox.cs: Add implicit controls using the new implict control
23222         functionality in ControlCollection. Also try to block multiple
23223         control add in a suspend/resume layout to save some cycles.
23224         
23225 2005-09-27  Jackson Harper  <jackson@ximian.com>
23226
23227         * Control.cs: Add functionality to the controls collection to add
23228         'implicit controls' these are controls that are created by the
23229         containing control but should not be exposed to the user. Such as
23230         scrollbars in the treeview.
23231         * Form.cs: The list var of the ControlsCollection is no longer
23232         available because of the potential of implicit controls getting
23233         ignored by someone accessing the list directly.
23234
23235 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
23236
23237         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
23238           loose it's parent. (Fixed bug introduced in r49103 when we added
23239           setting the child parent to null on Remove)
23240
23241 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
23242
23243         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
23244         * Splitter.cs: Added missing attributes for BorderStyle property.
23245         * TextBoxBase.cs: Marked Calculate* methods internal.
23246         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
23247         MS.NET.
23248
23249 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
23250          
23251         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
23252
23253 2005-09-25  Jackson Harper  <jackson@ximian.com>
23254
23255         * TreeView.cs: Update the node bounds correctly regardless of
23256         whether the node is visible.
23257
23258 2005-09-25  Jackson Harper  <jackson@ximian.com>
23259
23260         * ImageList.cs: Don't dispose the image after it is added to the
23261         image list. Only reformat images that need to be resized.
23262
23263 2005-09-25  Jackson Harper  <jackson@ximian.com>
23264
23265         * ImageList.cs: Don't set the format when changing the image.
23266
23267 2005-09-25  Jackson Harper  <jackson@ximian.com>
23268
23269         * TreeView.cs: We can't just assume the node has a font. Use the
23270         treeviews font if no node font is available.
23271
23272 2005-09-25  Jackson Harper  <jackson@ximian.com>
23273
23274         * TreeView.cs: Allow the scrollbars to be reset with negative
23275         values.
23276         - Don't add scrollbars to negative sized windows.
23277
23278 2005-09-23  Jackson Harper  <jackson@ximian.com>
23279
23280         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
23281         old Mono.Posix. Also remove some stray code that shouldn't have
23282         been committed.
23283
23284 2005-09-23  Jackson Harper  <jackson@ximian.com>
23285
23286         * TreeView.cs: Attempt at proper sizing of the horizontal
23287         scrollbar. Also don't resize the scrollbars unless they are
23288         visible.
23289
23290 2005-09-23  Jackson Harper  <jackson@ximian.com>
23291
23292         * TreeView.cs: We don't need to expand the invalid area when the
23293         selection changes, as this is all drawn in the node's bounding
23294         box. The area needs to be expanded (previous typo was contracting
23295         it) when the focus rect moves.
23296
23297 2005-09-23  Jackson Harper  <jackson@ximian.com>
23298
23299         * TreeView.cs: Display the selection box under the correct
23300         circumstances. We were rendering white text with no selection box
23301         before.
23302
23303 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
23304
23305         * TextControl.cs(Split): Now updates selection start/end if it points 
23306           into a line that's being split. Fixes a FIXME and bug #75258
23307
23308 2005-09-23  Jackson Harper  <jackson@ximian.com>
23309
23310         * Binding.cs:
23311         * ListControl.cs: Don't use the path when retrieving binding
23312         managers from the binding context. My bat sense tells me that the
23313         path is only used on insertion.
23314
23315 2005-09-22  Jackson Harper  <jackson@ximian.com>
23316
23317         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
23318
23319 2005-09-22  Jackson Harper  <jackson@ximian.com>
23320
23321         * Splitter.cs: There are special cursors used for splitting.
23322         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
23323
23324 2005-09-22  Jackson Harper  <jackson@ximian.com>
23325
23326         * Splitter.cs: Change the cursor appropriately when the splitter
23327         is moused over, so the user actually knows there is a splitter
23328         there.
23329
23330 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23331
23332        * Label.cs : Fix ToString method to give same output as MS.NET
23333
23334 2005-09-22  Jackson Harper  <jackson@ximian.com>
23335
23336         * TreeView.cs: Create the scrollbars when the handle is created
23337         and add them right away, just make them invisble. Also account for
23338         the window being shrunk vertically to the point that the vert
23339         scrollbar needs to be added.
23340         - Remove some 0.5 adjustments to get around anti aliasing issues.
23341         
23342 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
23343          
23344         * MainMenu.cs: Fixes default value
23345         * MenuItem.cs: Fixes default value
23346
23347 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
23348
23349         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
23350
23351 2005-09-21  Jackson Harper  <jackson@ximian.com>
23352
23353         * Control.cs: Don't try to set the border style on the window if
23354         it hasn't been created. When the window is created the border
23355         style will be used.
23356
23357 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23358
23359         * Control.cs (Update): Don't call XplatUI if we don't have a
23360           window handle yet
23361
23362 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23363
23364         * ContainerControl.cs: Instead of throwing an exception, print
23365           a one-time warning about Validate not being implemented
23366         * XplatUIWin32.cs: Removed debug output
23367
23368 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23369
23370         * Control.cs: Only set XplatUI background if we expect the windowing
23371           system to handle the background. This stops controls that draw their
23372           own background from flickering
23373
23374         * XplatUIX11.cs: Support custom visuals and colormaps for window 
23375           creation. This allows, amongst other things, using MWF X11 windows 
23376           with OpenGL.
23377
23378 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23379
23380         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
23381           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
23382           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
23383           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
23384           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
23385           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
23386           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
23387           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
23388           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
23389           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
23390           GridColumnStylesCollection.cs, 
23391           IDataGridColumnStyleEditingNotificationService.cs,
23392           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
23393           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
23394           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
23395           TreeNodeCollection.cs, AmbientProperties.cs, 
23396           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23397           DataObject.cs, ErrorProvider.cs, Splitter.cs,
23398           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
23399           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
23400           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
23401           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
23402           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
23403           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
23404           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
23405           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
23406           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
23407           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
23408           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
23409           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
23410           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
23411           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
23412           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
23413           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
23414           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
23415           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
23416           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
23417           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
23418           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
23419           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
23420           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
23421           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
23422           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
23423           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
23424           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
23425           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
23426           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
23427           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
23428           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
23429           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
23430           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
23431           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
23432           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
23433
23434 2005-09-21  Jackson Harper  <jackson@ximian.com>
23435
23436         * TreeNode.cs: Call Before/After Expand not Collapse when
23437         expanding.
23438
23439 2005-09-20  Jackson Harper  <jackson@ximian.com>
23440         
23441         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
23442
23443 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23444          
23445         * ListViewItem.cs:
23446                 - Fixes bug 76120
23447                 - Fixes proper storing of subitems
23448                 - Fixes not updated items
23449
23450 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
23451
23452         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
23453           things if our window handle isn't created yet. Also disabled 
23454           debug for TextBoxBase
23455
23456 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
23457
23458         * MenuAPI.cs: Remove filtering of events to allow menu usage
23459
23460 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23461
23462         * Cursor.cs: Allow null to be passed to Cursor.Current.
23463
23464 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
23465
23466         * ThemeWin32Classic.cs:
23467           - Change some private methods/fields to protected virtual so that 
23468             they can be accessed and overriden in derived classes
23469           - First refactoring of some methods. Derived themes now don't 
23470             need to duplicate the complete code from ThemeWin32Classic
23471         * ThemeNice.cs:
23472           - Added nice StatusBar
23473           - Derive from ThemeWin32Classic and not Theme
23474           - Removed duplicate ThemeWin32Classic code
23475
23476 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23477
23478         * Control.cs (ControlCollection.Add): If the value null is passed
23479         the control is ignored. 
23480
23481         Optimize this loop.
23482
23483 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
23484
23485         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
23486           PostQuitMessage state.
23487         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
23488
23489 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
23490
23491         * Application.cs: Our constructor will never get called, move 
23492           initialization to fields; fixes bug #75933
23493
23494 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23495
23496         * FileDialog.cs :
23497                 - Allow files to be selected properly using file name
23498                 combo box.
23499                 - Add ability to change diretory (absolute / relative)
23500                 using file name combo box.
23501
23502 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23503          
23504         * ListBox.cs: 
23505                 - Fixes Multicolumn listboxes item wrong calculations
23506                 - Allows to click when only one item is in the listbox
23507                 - Fixes crash when no items using keyboard navigation
23508
23509 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
23510
23511         * ComboBox.cs: Reverted almost everything from the latest patch which
23512           broke ComboBox
23513
23514 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
23515         
23516         * ToolTip.cs:
23517                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
23518         * ComboBox.cs:
23519                 - When DropDownStyle is Simple, it does not show scrollbar 
23520                 to the last item of the list.
23521                 - When DropDownStyle is Simple, it crashed when the list was 
23522                 scrolled down with the down cursor key.
23523                 - Fixed a bug that when DropDownStyle is DropDownList, the 
23524                 selected item was not shown.
23525                 - The position of the selected item was not preserved when 
23526                 the next dropdown happened.
23527         * ThemeWin32Classic.cs:
23528                 - Items were wrapped at the right end.
23529         * CheckedListBox.cs:
23530                 - Fixed Add method
23531         * ListBox.cs:
23532                 - Items should be fully shown.
23533                 - When resizing and vertical scrollbar disappeared, the item 
23534                 of index 0 should be on the top of the list.
23535                 - GetItemRectangle should consider the size of ver. scrollbar
23536         * StatusBar.cs:
23537                 - SizingGrip area should not be allocated when it is not 
23538                 displayed.
23539                 - Now it reflects MinWidth of the containing panel and 
23540                 fixed a crash that happens when its width becomes so small.
23541
23542 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23543
23544         * CheckedListBox.cs: Fixes bug 76028
23545         * ListBox.cs: Fixes bug 76028
23546
23547 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23548
23549         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
23550         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
23551
23552 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
23553
23554         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
23555
23556 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23557
23558         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
23559
23560 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23561
23562         * IRootGridEntry.cs: Added
23563         * PropertyGridCommands.cs: Added
23564         * PropertiesTab.cs: Added missing methods and property
23565         * PropertyGridView.cs: Made class internal
23566         * PropertyGridTextBox.cs: Made class internal
23567
23568 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23569
23570         * MimeIcon.cs: Try to check some other environment variables
23571           if "DESKTOP_SESSION" returns "default"
23572
23573 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23574
23575         * ThemeNice.cs: Corrected background colors (e.g. menus)
23576         * ColorDialog.cs: Use correct background colors for controls
23577
23578 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23579
23580         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
23581
23582 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
23583
23584         * RichTextBox.cs: Added initial implementation
23585         * lang.cs: Removed. Was accidentally checked in long time ago
23586         * TODO: Removed. Contents were obsolete
23587
23588 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23589                                                                                 
23590         * PropertiesTab.cs : Added
23591
23592 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23593                                                                                 
23594         * PropertyGrid.cs : Update
23595         * PropertyGridView.cs : Update
23596         * System.Windows.Forms.resx : Added images and strings
23597
23598 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
23599
23600         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
23601  
23602 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
23603
23604         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
23605           a busy loop right after the Ungrab the X11 display is otherwise 
23606           blocked
23607
23608 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
23609
23610         * ThemeWin32Classic.cs: Optimise the use of clipping
23611
23612 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
23613
23614         * DataGrid.cs: fixes recursion bug
23615
23616 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
23617
23618         * ThemeNice.cs: 
23619           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
23620           - Cleanup
23621
23622 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
23623
23624         * ThemeNice.cs: Draw nice ProgressBars
23625
23626 2005-09-01  Miguel de Icaza  <miguel@novell.com>
23627
23628         * VScrollBar.cs: Another buglet found by Aaron's tool. 
23629
23630         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
23631         bug finder.
23632
23633 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
23634
23635         * ThemeNice.cs:
23636           - Added nicer menu drawing
23637           - Updated DrawTab
23638           - some refactoring
23639
23640 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23641
23642         * CreateParams.cs (ToString): Made output match MS
23643         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
23644             handle is already created (to avoid forcing window creation)
23645         * XplatUIX11.cs: Set window text to caption after creating window,
23646           in case Text was set before window was created
23647         * Form.cs: Use this.Text instead of a static string as caption
23648
23649 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23650
23651         * NotifyIcon.cs: Don't set the window to visible; this screws
23652           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
23653           OnPaint without a bitmap)
23654         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
23655           happen very often anyway; we could add the check to the WM_PAINT 
23656           event generation code
23657
23658 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23659
23660         * NotifyIcon.cs: Fill the icon area with a background color, to 
23661           avoid 'residue' when transparent icons are drawn
23662         * XplatUIX11.cs:
23663           - Handle whole_window == client_window when destroying windows
23664           - SystrayAdd(): Set client_window to whole_window value to
23665             get mouse and other events passed to NotifyIcon
23666
23667 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23668
23669         * Form.cs: Set proper default for Opacity property
23670         * NotifyIcon.cs:
23671           - ShowSystray(): Don't bother creating telling the OS
23672             about the systray item if no icon is provided
23673           - Now handles WM_NCPAINT message to deal with whole/client window
23674             split
23675           - Create window as visible to not get caught by Expose optimization
23676         * Hwnd.cs: Removed debug message
23677         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
23678           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
23679             PaintEventStart/End to use new client argument
23680         * TextBoxBase.cs:
23681           - Commented out debug messages
23682           - Switched PaintEventStart/End to use new client argument
23683         * XplatUI.cs: Added client window bool to PaintEventStart()/
23684           PaintEventEnd() calls, to support drawing in non-client areas
23685         * XplatUIDriver.cs: 
23686           - Added client window bool to PaintEventStart()/PaintEventEnd() 
23687             calls, to support drawing in non-client areas
23688           - Added conditional compile to allow using MWF BeginInvoke 
23689             on MS runtime
23690         * XplatUIX11.cs:
23691           - Added some conditional debug output
23692           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
23693             whole/client window split
23694           - Implemented handling of client argument to PaintEventStart()/End()
23695         * Control.cs:
23696           - Throw exception if BeginInvoke() is called and the window handle
23697             or one of the window's parent handles is not created
23698           - Added conditional compile to allow using MWF BeginInvoke on
23699             MS runtime
23700           - get_Parent(): Only sets parent if handle is created. This avoids
23701             forcing window handle creation when parent is set.
23702           - Now fires Layout and Parent changed events in proper order
23703           - Switched to use Handle instead of window.Handle for Z-Order setting,
23704             the get_Parent() patch above causes us to possibly get null for 'window'
23705           - Implemented handling of client argument to PaintEventStart()/End()
23706           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
23707             default handling)
23708           - Now sends a Refresh() to all child windows when Refresh() is called
23709
23710 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
23711
23712         * Form.cs: Added (non-functional) Opacity property
23713         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
23714
23715 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
23716         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
23717           use export MONO_THEME=nice to activate it.
23718           Currently supported controls:
23719           - Button
23720           - ComboBox
23721           - ScrollBar
23722           - TabControl (TabAlignment.Top only, other will follow)
23723         * ThemeEngine.cs: Add theme nice
23724         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
23725           if enabled
23726
23727 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
23728
23729         * Splitter.cs: Resize docked control and its neighbor.
23730
23731 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23732         -- Making Windows with Menus layout correctly --
23733         * Form.cs : The first leg of the fix
23734                 Menu setter - adjust Client Size as needed to make space for the menu
23735                 SetClientSizeCore - doesn't call base version to be able to pass the 
23736                         menu handle to XplatUI.CalculateWindowRect
23737         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
23738         * XplatUIX11.cs: The critical second leg of the fix
23739                 GetWindowPos needs to use a recalculated client_rect
23740                 so that resizing the window doesn't break layout of child controls. 
23741                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
23742                 Lots of \t\n killed
23743
23744 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
23745
23746         * Label.cs: Now properly recalculates width and height on Font and Text
23747           changes if AutoSize is set
23748
23749 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23750         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
23751
23752 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
23753
23754         * ImageList.cs: Makes ToString method compatible with MS
23755
23756 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
23757
23758         * MenuAPI.cs: fixes bug 75716
23759
23760 2005-08-11 Umadevi S <sumadevi@novell.com>
23761         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
23762
23763 2005-08-11 Umadevi S <sumadevi@novell.com>
23764         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
23765
23766 2005-08-10  Umadevi S <sumadevi@novell.com>
23767         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
23768
23769 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
23770
23771         * Menu.cs: fixes bug 75700
23772         * MenuAPI.cs: fixes navigation issues
23773
23774 2005-08-09  Umadevi S <sumadevi@novell.com>
23775         * CheckedListBox.cs - simple fix for GetItemChecked.
23776
23777 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
23778
23779         * ComboBox.cs: Serveral fixes
23780         * ListBox.cs: Serveral fixes
23781
23782 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23783
23784         * ComboBox.cs: Fixes FindString methods and GetItemHeight
23785         * ListBox.cs: Fixes FindString methods
23786
23787 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23788
23789         * DataGrid.cs: fixes bugs exposed by new tests
23790
23791 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
23792
23793         * Mime.cs: Compile Mono assembly references only if compiling
23794           with Mono (Allows to build with VS.Net again)
23795
23796 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
23797
23798         * Control.cs (PaintControlBackground): Draw background image
23799         corrrectly.
23800         (CheckForIllegalCrossThreadCalls): Stubbed.
23801         
23802         * Form.cs (OnCreateControl): Center when should be centered.
23803         
23804         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
23805
23806 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
23807
23808         * Binding.cs: Binding to properties should be case unsensitive
23809
23810 2005-07-18 vlindos@nucleusys.com
23811
23812         * DataGrid.cs: fixes setmember order
23813
23814 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
23815
23816         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
23817         * FileDialog.cs: FileDialog is now resizable and uses the new
23818           MimeIconEngine
23819
23820 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
23821
23822         * DataGridTextBoxColumn.cs: default value
23823         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
23824         * GridTableStylesCollection.cs: fixes checking MappingName
23825         * DataGridDrawingLogic.cs: fixes drawing logic issues
23826         * DataSourceHelper.cs: rewritten to make compatible with more data sources
23827         * DataGrid.cs: fixes    
23828
23829 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
23830
23831         * MimeGenerated.cs: Use case sensitive comparer for
23832           NameValueCollections
23833
23834 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
23835
23836         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
23837         * ThemeWin32Classic.cs: bug fixes, code refactoring
23838         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
23839         * DataGrid.cs: bug fixes, code refactoring
23840         * DataGridTextBox.cs: bug fixes, code refactoring
23841         * DataGridColumnStyle.cs:  bug fixes, code refactoring
23842         * Theme.cs:  bug fixes, code refactoring
23843
23844 2005-07-01  Peter Bartok  <pbartok@novell.com> 
23845
23846         * TextControl.cs: Quick fix for the reported crash on ColorDialog
23847           and other text box usage
23848
23849 2005-07-01  Jackson Harper  <jackson@ximian.com>
23850
23851         * TabControl.cs: Make sure the bottom of the tab covers the pages
23852         border.
23853
23854 2005-06-30  Peter Bartok  <pbartok@novell.com> 
23855
23856         * Form.cs (ShowDialog): Assign owner of the dialog
23857         * TextBoxBase.cs: Always refresh caret size when deleting, caret
23858           might have been moved to a tag with different height
23859
23860 2005-06-30  Jackson Harper  <jackson@ximian.com>
23861
23862         * Form.cs: Don't create an infinite loop when setting focus
23863         * MenuItem.cs: Don't dirty the parents if we don't have any
23864
23865 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
23866
23867         * LibSupport.cs: Rename
23868
23869 2005-06-29  Peter Bartok  <pbartok@novell.com>
23870
23871         * TextBoxBase.cs: Re-align caret after deleting a character
23872         * TextControl.cs:
23873           - DeleteChars(): Ensure that tag covers the provided position
23874           - StreamLine(): Drop reference for dropped tag
23875
23876 2005-06-29  Peter Bartok  <pbartok@novell.com> 
23877
23878         * TextControl.cs: 
23879           - Selections now work properly, anchoring at the initial location
23880             and properly extending in either direction (SetSelectionToCaret(),
23881             SetSelectionStart() and SetSelectionEnd())
23882           - No longer redraws the whole control on selection change, now
23883             calculates delta between previous and new selection and only
23884             invalidates/redraws that area
23885           - Fixed FindPos() math off-by-one errors
23886           - Changed DeleteChars() to verify the provided tag covers the
23887             provided position, selections may have a tag that doesn't cover
23888             the position if the selection is at a tag border
23889           - Fixed off-by-one errors in DeleteChars()
23890           - Added missing streamlining check in DeleteChars() to remove
23891             zero-length tags
23892           - Implemented Invalidate() method, now properly calculates exposures
23893             between two given lines/positions
23894           - Implemented SetSelection()
23895           - Obsoleted and removed FixupSelection()
23896           - Improved RecalculateDocument() logic, removing code duplication
23897
23898 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23899
23900         * LibSupport.cs: changes to match different input/output arguments.
23901
23902 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23903
23904         * LibSupport.cs: added libsupport.so init routine.
23905
23906 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
23907         
23908         * ControlBindingsCollection.cs
23909                 - Throws an exception on null datasource when adding
23910                 - Checks for duplicated bindings when adding
23911
23912 2005-06-28  Jackson Harper  <jackson@ximian.com>
23913
23914         * TreeView.cs (OnKeyDown): Support left and right properly
23915         (navigates as well as expanding and collapsing.
23916         - Add support for Multiply, this expands all the selected nodes
23917         children.
23918         - Fix some tabbing.
23919
23920 2005-06-28  Jackson Harper  <jackson@ximian.com>
23921
23922         * TreeView.cs: Implement keyboard navigation, currently supports,
23923         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
23924         support for toggling checkboxes with the space bar.
23925
23926 2005-06-28  Jackson Harper  <jackson@ximian.com>
23927
23928         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
23929         tree.
23930
23931 2005-06-28  Jackson Harper  <jackson@ximian.com>
23932
23933         * TreeView.cs: Add missing event.
23934
23935 2005-06-27  Peter Bartok  <pbartok@novell.com> 
23936
23937         * TextControl.cs:
23938           - Made line ending size configurable (now allows for counting 
23939             lineendings as \n or \r\n)
23940           - Added margin to viewport to keep caret visible on right side
23941           - Fixed translation routines for line/pos to documentpos to consider
23942             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
23943           - Fixed some line-endings to be unix style
23944           - Fixed Document.FormatText to perform it's calculations 1-based
23945           - Added descriptions for a few methods that might otherwise get 
23946             used wrong
23947           - Added NOTE section with some basic conventions to remember at 
23948             the top of the file
23949           - Major fixup for RichTextBox selection drawing:
23950             * Fixed crashes when multiple tags on a single line were selected
23951             * fixed selection box drawing not overlaying text
23952             * fixed bogus offset calculation for tags not starting at index 1
23953             * Switched behaviour from using multiple Substrings of a 
23954               StringBuilder.ToString() to using multiple 
23955               StringBuilder.ToString(start, length) statements, hoping this is
23956               faster (kept original version commented out in the code, in case
23957               original version was faster)
23958         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
23959           alignment != Left
23960         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
23961           call it as well
23962
23963 2005-06-27  Jackson Harper  <jackson@ximian.com>
23964
23965         * TabControl.cs: Move to the left and right with the arrow
23966         keys. These keys don't cycle beyond first and last like
23967         tab. Refresh all the tabs when scrolling them to the left or
23968         right.
23969
23970 2005-06-27  Jackson Harper  <jackson@ximian.com>
23971
23972         * TabControl.cs:
23973           - ToString: Added method
23974           - CreateParams: Remove TODO and comment
23975           - OnKeyDown: Cycle through bounds properly.
23976           - SelectedIndex: Scroll to the right or left if we need to
23977           display the newly selected tab.
23978
23979 2005-06-23  Jackson Harper  <jackson@ximian.com>
23980
23981         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
23982         set.
23983
23984 2005-06-23  Jackson Harper  <jackson@ximian.com>
23985
23986         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
23987         CTRL-SHIFT-TAB, and HOME, END are there any others?
23988
23989 2005-06-23  Jackson Harper  <jackson@ximian.com>
23990
23991         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
23992
23993 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
23994         
23995         * DataGridTextBoxColumn.cs: fixes and enhancements
23996         * ThemeWin32Classic.cs: fixes and enhancements
23997         * DataGridBoolColumn.cs:  fixes and enhancements
23998         * DataGridDrawingLogic.cs:  fixes and enhancements
23999         * CurrencyManager.cs: fixes and enhancements
24000         * DataGrid.cs: fixes and enhancements
24001         * DataGridColumnStyle.cs:  fixes and enhancements
24002
24003 2005-06-22  Jackson Harper  <jackson@ximian.com>
24004
24005         * TabControl.cs: Add some missing methods that just call into the
24006         base. Make the TabPageCollection's IList interface behave in the
24007         same manner as the MS implementation.
24008
24009 2005-06-22  Peter Bartok  <pbartok@novell.com> 
24010
24011         * TextControl.cs: Added sanity check
24012         * TextBoxBase.cs: 
24013           - Fixed wrapping behaviour, don't set wrap on single line controls
24014             (this fixes the breakage of colordialog introduced in an earlier
24015              checkin)
24016           - Added rudimentary support for autoscrolling right-aligned controls
24017             (still needs fixing, also, center alignment scroll is missing)
24018
24019 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
24020         
24021         * ScrollBar.cs: Fixes thumbpos on Maximum values
24022
24023 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
24024         
24025         * PropertyGridView.cs: Pass context information to UITypeEditors 
24026
24027 2005-06-21  Peter Bartok  <pbartok@novell.com> 
24028
24029         * TextBoxBase.cs:
24030           - Now calling PositionCaret with absolute space coordinates
24031           - Enabled vertical scrolling
24032           - Better tracking of scrollbar changes, tied into WidthChange
24033             event
24034           - Improved cursor tracking
24035           - Removed debug output
24036         * TextControl.cs:
24037           - PositionCaret coordinates are now works in absolute space, not 
24038             the canvas
24039           - Improved tracking of document size
24040           - Added events for width and height changes
24041
24042 2005-06-21  Peter Bartok  <pbartok@novell.com>
24043
24044         * Form.cs: Set focus to active control when form is activated
24045         * TextControl.cs: 
24046           - Added word-wrap functionality to RecalculateLine() 
24047           - Added some short function descriptions for VS.Net to aid in
24048             writing dependent controls
24049           - Added Caret property, returning the current coords of the caret
24050           - Added ViewPortWidth and ViewPortHeight properties
24051           - Added Wrap property
24052           - Added CaretMoved event
24053           - Removed some old debug code
24054           - Split() can now create soft splits
24055           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
24056           - Added method to format existing text
24057           - Fixed size/alignment calculations to use viewport
24058           - RecalculateDocument now can handle changing line-numbers while
24059             calculating lines
24060
24061         * TextBox.cs:
24062           - Added some wrap logic, we don't wrap if alignment is not left
24063           - Added casts for scrollbar var, base class switched types to
24064             also support RichTextBoxA
24065           - Implemented handling of scrollbar visibility flags
24066
24067         * TextBoxBase.cs:
24068           - Switched scrollbars type to RichTextBoxScrollBars to support
24069             RichTextBox
24070           - Added tracking of canvas width/height
24071           - Switched scrollbars to be not selectable (to keep focus on text)
24072           - Added central CalculateDocument() method to handle all redraw
24073             requirements
24074           - Added ReadOnly support
24075           - Added WordWrap support
24076           - Fixed handling of Enter key (we now treat it as a DialogKey)
24077           - Fixed caret positioning when h or v scroll is not zero
24078           - Fixed placing/generation of vertical scrollbar
24079           - Added CalculateScrollBars() method to allow updating scrollbar
24080             limits and visibility
24081           - Fixed handling of horizontal scroll
24082           - Added handling of vertical scroll
24083           - Implemented auto-'jump' when caret moves to close to a left or
24084             right border and there is text to be scrolled into view (currently
24085             there's the potential for a stack overflow, until a bug in
24086             scrollbar is fixed)
24087
24088 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
24089         
24090         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
24091
24092 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
24093
24094         * Mime.cs:
24095         - added inodes.
24096         - return application/x-zerosize for files with size zero
24097           (if no extension pattern matches).
24098         - check matches collection for strings too.
24099         - return only the first mime type if the name value
24100           collection has more than one mime type.
24101
24102 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
24103         
24104         * PropertyGrid.cs: Cleaned up some TODOs
24105         * PropertyGridView.cs: Added support for UITypeEditors
24106
24107 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
24108         
24109         * DataGrid.cs: clears cached value
24110
24111 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
24112
24113         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
24114         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
24115         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
24116         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
24117         
24118 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
24119
24120         * ThemeWin32Classic.cs: fixes colour
24121
24122 2005-06-15  Peter Bartok  <pbartok@novell.com>
24123
24124         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
24125         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
24126         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
24127         * Control.cs: Added some MWFCategory and MWFDescription attributes
24128         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
24129
24130 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
24131
24132         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
24133         usage
24134
24135 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
24136
24137         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
24138         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
24139         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
24140         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
24141         * DataGrid.cs: default datagrid settings for Default Styles, fixes
24142         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
24143
24144 2005-06-13  Jackson Harper  <jackson@ximian.com>
24145
24146         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
24147         isn't printed when the user enables dropping. (X11 does accept
24148         drops).
24149         
24150 2005-06-13  Jackson Harper  <jackson@ximian.com>
24151
24152         * TreeView.cs: Remove some TODOS.
24153
24154 2005-06-13  Jackson Harper  <jackson@ximian.com>
24155
24156         * Form.cs: Hook into the mdi framework.
24157         * MdiClient.cs: Use the base control collections add method so
24158         parents get setup correctly. Set the default back colour and dock
24159         style.
24160         * MdiChildContext.cs: New class, this bad actor handles an
24161         instance of an MDI window. Right now there is only basic
24162         support. You can drag, close, and resize windows. Minimize and
24163         Maximize are partially implemented.
24164
24165 2005-06-13  Jackson Harper  <jackson@ximian.com>
24166
24167         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
24168         freaky when both vals are negative. NOTE: There are probably other
24169         places in XplatUIX11 that this needs to be done.
24170
24171 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
24172
24173         * DataGrid.cs: implement missing methods, move KeyboardNavigation
24174         * DataGridColumnStyle.cs: fixes signature
24175
24176 2005-06-12  Jackson Harper  <jackson@ximian.com>
24177
24178         * XplatUIX11.cs: Use sizing cursors similar to the ones on
24179         windows.
24180
24181 2005-06-11  Jackson Harper  <jackson@ximian.com>
24182
24183         * StatusBarPanel.cs: Signature cleanups. Implement
24184         BeginInit/EndInit.
24185
24186 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
24187
24188         * DataGridTextBoxColumn.cs: Honors aligment
24189         * GridColumnStylesCollection.cs: Contains is case unsensitive
24190         * GridTableStylesCollection.cs: several fixes
24191         * DataGridTableStyle.cs: default column creation
24192         * DataGridDrawingLogic.cs: fixes
24193         * CurrencyManager.cs: ListName property
24194         * DataGrid.cs: multiple styles support
24195         * DataGridColumnStyle.cs: fixes
24196         
24197
24198 2005-06-10  Peter Bartok  <pbartok@novell.com>
24199
24200         * Control.cs(Select): Moved SetFocus call to avoid potential
24201           loops if controls change the active control when getting focus
24202         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
24203           the up/down buttons
24204
24205 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
24206
24207         * ImageListConverter.cs: Implemented
24208
24209 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
24210
24211         * MonthCalendar.cs: Wired in NumericUpDown control for year
24212
24213 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
24214
24215         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
24216           DoubleClick events, since they are not meant to be fired.
24217
24218 2005-06-09  Peter Bartok  <pbartok@novell.com>
24219
24220         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
24221           Jonathan's standalone controls into MWF, implemented missing
24222           events, attributes and methods; added xxxAccessible classes
24223         * AccessibleObject.cs: Made fields internal so other classes
24224           can change them if needed
24225
24226 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
24227
24228         * UpDownBase.cs: Complete implementation
24229         * NumericUpDown.cs: Complete implementation
24230         * DomainUpDown.cs: Complete implementation
24231
24232 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
24233
24234         * DataGridTextBoxColumn.cs: drawing fixes
24235         * DataGridCell.cs: fixes ToString method to match MSNet
24236         * DataGridTableStyle.cs: fixes
24237         * DataGridBoolColumn.cs: fixes, drawing
24238         * DataGridDrawingLogic.cs: fixes, new methods
24239         * DataGridTextBox.cs: Keyboard and fixes
24240         * DataGrid.cs:
24241                 - Keyboard navigation
24242                 - Scrolling fixes
24243                 - Row selection (single, multiple, deletion, etc)
24244                 - Lots of fixes
24245         
24246 2005-06-07  Jackson Harper  <jackson@ximian.com>
24247
24248         * ThemeWin32Classic.cs: Clear the background area when drawing
24249         buttons.
24250
24251 2005-06-06  Peter Bartok  <pbartok@novell.com>
24252
24253         * ImageListStreamer.cs: Fixed signature for GetData
24254         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
24255         * ComboBox.cs:
24256           - Added missing ChildAccessibleObject class
24257           - Added missing OnXXXFocus overrides, switched to using those
24258             instead of the event handler
24259         * Control.cs:
24260           - Added Parent property for ControlAccessibleObject
24261           - Fixed signatures
24262           - Fixed attributes
24263           - Added ResetBindings()
24264         * ListBindingConverter.cs: Implemented some methods
24265         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
24266         * ImageList.cs: Implemented basic handle scheme, removed TODOs
24267         * ContainerControl.cs: Fixed signature, now subscribing to the
24268           ControlRemoved event instead of overriding the handler, LAMESPEC
24269         * CurrencyManager.cs: Added missing attribute
24270         * MonthCalendar.cs: Added missing properties
24271
24272 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
24273
24274         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
24275         
24276 2005-06-06  Gaurav Vaish and Ankit Jain
24277
24278         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
24279         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
24280         
24281 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
24282
24283         * Control.cs: fixes CreateParams Width / Height.
24284
24285 2005-06-05  Peter Bartok  <pbartok@novell.com>
24286
24287         * Win32DnD.cs: Removed compilation warnings
24288
24289 2005-06-05  Peter Bartok  <pbartok@novell.com>
24290
24291         * Control.cs (CreateParams): Since we don't know if one of the
24292           properties we use is overridden, lets make sure if we fail accessing
24293           we continue with a backup plan
24294
24295 2005-06-05  Peter Bartok  <pbartok@novell.com>
24296
24297         * Win32DnD.cs:
24298           - Removed debug output
24299           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
24300             struct
24301           - Plugged resource leak
24302         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
24303           MS size
24304
24305 2005-06-05  Peter Bartok  <pbartok@novell.com>
24306
24307         * XplatUIWin32.cs: Removed DnD code
24308         * Win32DnD.cs: Implemented drop source and drop target functionality
24309
24310 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24311
24312         * UpDownBase.cs: remove duplicate addition of event, enable some code
24313         that was commented out.
24314         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
24315         Validate input when a key is pressed. It works fine now for every
24316         combination of Hexadecimal. Only missing some drawing love when sharing
24317         space with other controls.
24318
24319 2005-06-04  Peter Bartok  <pbartok@novell.com>
24320
24321         * Control.cs:
24322           - We need to pass a window for DragDrop, so enable callback events
24323           - Added DnD callback events when being a DragSource
24324         * XplatUI.cs (StartDrag): Added window handle argument
24325         * XplatUIDriver.cs (StartDrag): Added window handle argument
24326         * QueryContinueDragEventArgs: Made fields internally accessible so
24327           drivers can set them
24328         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
24329           can set them
24330
24331 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
24332
24333         * DataGridTextBoxColumn.cs: column text editing
24334         * DataGridTableStyle.cs: Respect columns styles created by the user
24335         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
24336         * DataGridBoolColumn.cs: bool column editing
24337         * DataGrid.cs: fixes to scrolling, properties, etc
24338         * DataGridTextBox.cs: handle keyboard
24339         * DataGridColumnStyle.cs: fixes
24340
24341 2005-06-02  Jackson Harper  <jackson@ximian.com>
24342
24343         * ImageListStreamer.cs: Somewhat broken implementation of
24344         GetObjectData. The RLE needs some work to match MS properly.
24345
24346 2005-06-02  Jackson Harper  <jackson@ximian.com>
24347
24348         * X11Dnd.cs: Attempting to keep at least one file in MWF
24349         monostyled.
24350
24351 2005-06-02  Peter Bartok  <pbartok@novell.com>
24352
24353         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
24354           that way
24355
24356 2005-06-02  Peter Bartok  <pbartok@novell.com>
24357
24358         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
24359         * XplatUI.cs: Added DoDragDrop() method
24360         * XplatUIDriver.cs: Added DoDragDrop() method
24361
24362 2005-06-02  Jackson Harper  <jackson@ximian.com>
24363
24364         * Splitter.cs: Implement BorderStyle.
24365
24366 2005-06-02  Jackson Harper  <jackson@ximian.com>
24367
24368         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
24369         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
24370         X11 using XDND.
24371
24372 2005-06-02  Peter Bartok  <pbartok@novell.com>
24373
24374         * DataObject.cs:
24375           - Added Data setter
24376           - Fixed broken insertion code for SetData, now also
24377             overwrites any existing entry of the same format name
24378         * Hwnd.cs: Added list of pointers that automatically gets
24379           freed when the window is disposed
24380         * XplatUI.cs: Call driver initialization method when loading
24381           a driver
24382         * Control.cs:
24383           - OnDragLeave takes EventArgs, not DragEventArgs
24384           - Added setting of WS_EX_ACCEPTFILES style when dropping is
24385             supported
24386           - Forces style update when drop state changes
24387         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
24388           not perfect since we cannot (yet) call the IDataObject.GetData()
24389           method, we keep getting 0x80004005 error, dunno why)
24390
24391 2005-06-02  Peter Bartok  <pbartok@novell.com>
24392
24393         * DragEventArgs.cs: Make fields internal so we can cache the
24394           object and re-set the fields from XplatUI
24395
24396 2005-06-02  Jackson Harper  <jackson@ximian.com>
24397
24398         * Control.cs: Add some internal methods so the DnD subsystem can
24399         raise DnD events. Also call into the driver when AllowDrop is set.
24400         * XplatUI.cs:
24401         * XplatUIDriver.cs: New method for setting whether or not a window
24402         is allowed to accept drag and drop messages.
24403                 
24404 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
24405         
24406         * ScrollBar.cs: Make sure that values sent in Scroll events
24407         are always between Maximum and Minimum.
24408
24409 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
24410
24411         * Menu.cs: Call MenuChanged when menuitem visibility has been
24412         changed.
24413         * MenuItem.cs: Rebuild menu when item is (not) visible.
24414         * MainMenu.cs: MainMenu has special MenuChanged.
24415         * Theme.cs: Caption and FrameBorderSize are not fixed.
24416         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
24417         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
24418         * XplatUIX11.cs,
24419         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
24420         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
24421
24422 2005-05-30  Jackson Harper  <jackson@ximian.com>
24423
24424         * DataFormat.cs: We can't statically initialize this stuff because
24425         it calls into the xplatui and could create a loop. So we lazy init
24426         it.
24427
24428 2005-05-28  Jackson Harper  <jackson@ximian.com>
24429
24430         * Control.cs: Proper implementation of Product(Name/Version).
24431
24432 2005-05-27  Jackson Harper  <jackson@ximian.com>
24433
24434         * DataObject.cs: Dont crash if no data is found.
24435
24436 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
24437         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
24438                 as per status page, guessing it should be set to true
24439
24440 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
24441
24442         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
24443         * DataGridTableStyle.cs: set proper formatting text, def header text
24444         * ThemeWin32Classic.cs: new themable paramaters
24445         * DataGridBoolColumn.cs: paint check box, get data, fixes
24446         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
24447         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
24448         * DataGridColumnStyle.cs: fixes
24449         * Theme.cs: new themable paramaters
24450                 
24451 2005-05-26  Peter Bartok  <pbartok@novell.com>
24452
24453         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
24454
24455 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24456         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
24457
24458 2005-05-24  Peter Bartok  <pbartok@novell.com>
24459
24460         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
24461           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
24462           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
24463           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
24464           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
24465           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
24466           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
24467           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
24468           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
24469           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
24470           missing attributes, etc
24471         * DataGridPreferredColumnWidthTypeConverter.cs: Added
24472
24473 2005-05-24  Peter Bartok  <pbartok@novell.com>
24474
24475         * Help.cs: Added, implemented trivial functions, throws up MessageBox
24476           when user tries to get help
24477         * DataObject.cs, DataFormats.cs, LinkArea.cs,
24478           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
24479           to suppress warnings
24480         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
24481           avoid unreachable code warning
24482
24483 2005-05-20  Peter Bartok  <pbartok@novell.com>
24484
24485         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
24486
24487 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24488
24489         * DataGridTextBoxColumn.cs: Basic painting methods
24490         * DataGridTableStyle.cs: Set table style in the column
24491         * ThemeWin32Classic.cs: Use Theme for colors
24492         * DataGridDrawingLogic.cs: Implement more drawing
24493         * DataGrid.cs: drawing, theming, enhacements, fixes
24494         * DataGridColumnStyle.cs: fixes, drawing
24495         * Theme.cs: theming for Datagrid
24496
24497 2005-05-20  Peter Bartok  <pbartok@novell.com>
24498
24499         * Cursor.cs: Implemented GetObjectData() method
24500
24501 2005-05-20  Peter Bartok  <pbartok@novell.com>
24502
24503         * Cursors.cs: Added setting of cursor name
24504         * Cursor.cs:
24505           - Implemented constructors
24506           - Implemented Draw and DrawStretched
24507           - Implemented Current property
24508           - Implemented == and != operators
24509           - Implemented Dispose()
24510           - Implemented ToString
24511           - Added missing attributes
24512         * XplatUIX11.cs:
24513           - Added missing reset for OverrideCursor when DoEvents is called
24514           - Fixed creation of cursor, logic was wrong
24515         * XplatUIWin32.cs:
24516           - Added missing reset for OverrideCursor when DoEvents is called
24517           - Fixed creation of cursor, bit arrays were swapped
24518         * Clipboard.cs: Removed obsolete MonoTODO attribute
24519
24520 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24521
24522         * ComboBox.cs: fixes OnSelectedItemChanged
24523         * ControlBindingsCollection.cs: fixes item range check
24524
24525 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24526
24527         * UpDownBase.cs:
24528                 - Calc preferred height properly
24529                 - Implement missing properties
24530                 
24531         * NumericUpDown.cs: Implement missing events
24532
24533 2005-05-19  Jackson Harper  <jackson@ximian.com>
24534
24535         * TabControl.cs: New method that resizes the tab pages before
24536         redrawing them. This as needed as the control is double buffered
24537         and sizing will not be recalculated unless ResizeTabPages is
24538         called.
24539         * TabPage.cs: Set base.Text instead of Text in the constructor so
24540         that UpdateOwner does not get called. Use the new Redraw method of
24541         TabControl instead of Refresh so the sizing is recalculated.
24542         * ThemeWin32Classic.cs: Draw the text for button tabs.
24543
24544 2005-05-19  Jackson Harper  <jackson@ximian.com>
24545
24546         * Control.cs: Paint control background images. Fix typo where
24547         PaintControlBackground was not getting called correctly.
24548
24549 2005-05-19  Peter Bartok  <pbartok@novell.com>
24550
24551         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
24552           I can investigate, apparently I broke FileDialog
24553
24554 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
24555
24556         * AxHost.cs: Some simple properties.
24557         * Control.cs: window must be accessible after ctor.
24558         * Form.cs: Added TransparencyKey property.
24559         * TextBoxBase.cs: Implemented Clear. Text property can be null.
24560         * XplatUIWin32.cs: SetBorderStyle implemented.
24561
24562 2005-05-18  Peter Bartok  <pbartok@novell.com>
24563
24564         * DataObject.cs: Entries are not global but particular to the
24565           DataObject, now it behaves that way
24566         * XplatUIWin32.cs: Implemented Clipboard methods
24567         * Clipboard.cs: Implemented
24568         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
24569         * XplatUIOSX.cs: Updated to final clipboard prototypes
24570         * XplatUIX11.cs: Implemented Clipboard methods
24571         * XplatUIDriver.cs: Updated to final clipboard prototypes
24572         * XplatUIStructs.cs:
24573           - Added BITMAPINFOHEADER struct
24574           - Added ClipboardFormats enum
24575         * X11Structs.cs:
24576           - Added ClipboardStruct
24577           - Added Atom enum items for clipboard types
24578           - Fixed atom types for Selection event structures
24579         * DataFormats.cs:
24580           - Added internal properties and methods for drivers to enumerate
24581             all known formats
24582           - Switched initialization method to allow drivers to assign their
24583             own IDs even for the MS predefined clipboard IDs
24584         * XplatUI.cs: Updated to final clipboard interface
24585
24586 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24587         * PropertyGridView.cs: Fixed compiler warnings.
24588
24589 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24590         * PropertyGrid.cs: Added some event calls
24591         * PropertyGridView.cs: Change drawing code to use double buffering
24592         * PropertyGridTextBox.cs: Changed Text property name
24593         * GridItem.cs: Added Bounds property.
24594         * GridEntry.cs: Added Bounds property.
24595
24596 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
24597
24598         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
24599         since GetType() may not return the correct type if the object is
24600         a remoting proxy.
24601
24602 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
24603
24604         * TreeNodeCollection.cs: fixes get/set item ranges
24605         
24606 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24607
24608         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
24609                 
24610 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24611
24612         * ComboBox.cs: Fix item range comparation
24613         * ListView.cs: Fix item range comparation
24614
24615 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24616
24617         * FontDialog.cs:
24618           - Clear example panel when OnPaint is called
24619           - Better solution for displaying the example panel text
24620           - Select default indexes in the ListBoxes
24621
24622 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24623
24624         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
24625
24626 2005-05-11  Peter Bartok  <pbartok@novell.com>
24627
24628         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
24629         * SelectionRangeConverter.cs: Implemented
24630         * PropertyGrid.cs: Fixed attribute value
24631         * Control.cs:
24632           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
24633           - Added Sebastien Pouliot's CAS Stack Propagation fixes
24634         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
24635           that's common to all drivers. First methods to go there are
24636           Sebastien Pouliot's CAS Stack Propagation helper methods
24637         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
24638           Sebastien Pouliot for CAS Stack Propagation
24639
24640 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24641
24642         * OSXStructs.cs:
24643           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
24644
24645 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
24646
24647         * DataGridTextBoxColumn.cs: fixed some members
24648         * GridColumnStylesCollection.cs: indexed column is case insensitive
24649         * DataGridTableStyle.cs: fixes
24650         * ThemeWin32Classic.cs: add new theme parameter
24651         * Theme.cs: add new theme parameter
24652         * DataGridDrawingLogic.cs: Datagrid's drawing logic
24653         * DataGrid.cs: fixes, new internal properties, etc.
24654         * DataGridColumnStyle.cs: allows to set grid value
24655         *
24656
24657 2005-05-10  Peter Bartok  <pbartok@novell.com>
24658
24659         * AccessibleObject.cs:
24660           - Removed MonoTODO attribute on help, method is correct
24661           - Fixed Bounds property
24662         * AxHost.cs: Moved MonoTODO
24663         * ButtonBase.cs: Now setting AccessibleObject properties
24664         * RadioButton.cs: Setting proper AccessibleObject role
24665         * CheckBox.cs: Setting proper AccessibleObject role
24666         * ControlBindingsCollection.cs: Added properties, methods and attributes
24667         * DataFormats.cs: Fixed awkward internal API, and changed to enable
24668           userdefined DataFormats.Format items as well
24669         * ListControl.cs: Removed data_member from the public eye
24670         * OpenFileDialog.cs:
24671           - Made class sealed
24672           - Added missing attributes
24673         * SaveFileDialog.cs: Added missing attributes
24674         * ImageListStreamer.cs: Fixed code that caused warnings
24675         * LinkLabel.cs: Removed unreachable code
24676         * TreeView.cs: Fixed code that caused warnings
24677         * PropertyGridView.cs: Fixed code that caused warnings
24678         * GridColumnStylesCollection.cs: Added missing attributes
24679         * GridTableStylesCollection: Added missing attribute
24680         * PropertyManager: Added .ctor
24681         * SecurityIDType: Added
24682         * DataObject.cs: Implemented class
24683         * LinkArea.cs: Added missing attribute
24684
24685 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
24686
24687         * RadioButton.cs: call base method to allow to fire OnClick event
24688         * UpDownBase.cs: OnMouseUp call base method
24689         * CheckedListBox.cs: call base method before returning
24690         * TrackBar.cs: call base method before returning
24691         
24692
24693 2005-05-10  Peter Bartok  <pbartok@novell.com>
24694
24695         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
24696           for messages
24697
24698 2005-05-10  Peter Bartok  <pbartok@novell.com>
24699
24700         * DataFormats.cs: Implemented
24701         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
24702           XplatUIX11.cs: Added Clipboard APIs
24703         * XplatUIWin32.cs: Implemented Clipboard APIs
24704         * FolderBrowserDialog.cs: Added missing event, attributes
24705
24706 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
24707
24708         * CheckBox.cs: call base method to allow to fire OnClick event
24709
24710 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
24711
24712         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
24713
24714 2005-05-06  Peter Bartok  <pbartok@novell.com>
24715
24716         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
24717         * Screen.cs: Implemented
24718         * HelpNavigator.cs: Added
24719         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
24720           property
24721         * HelpProvider.cs: Implemented all we can do until we have a CHM
24722           help library (which means that "What's This" does work now)
24723
24724 2005-05-06  Jackson Harper  <jackson@ximian.com>
24725
24726         * XplatUIX11.cs: Fix waking up the main loop.
24727                 
24728 2005-05-05  Peter Bartok  <pbartok@novell.com>
24729
24730         * XplatUI.cs: Updated revision
24731         * Form.cs: Removed enless loop
24732         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
24733         * Label.cs (OnPaint): Added call to base.OnPaint()
24734         * ToolTip.cs: Made ToolTipWindow reusable for other controls
24735         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
24736         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
24737         * AxHost.cs: Added
24738         * ButtonBase.cs: Moved base.OnPaint() call to end of method
24739         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
24740           to ToolTip.ToolTipWindow for drawing and size methods; this allows
24741           reuse of ToolTipWindow by other controls
24742         * SizeGrip.cs: Moved base.OnPaint() call to end of method
24743         * XplatUIX11.cs: Now clipping drawing area (experimental)
24744         * PictureBox.cs: Moved base.OnPaint() call to end of method
24745         * Theme.cs: Fixed ToolTip abstracts to match new format
24746         * ErrorProvider.cs: Implemented
24747
24748 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
24749
24750         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
24751         * LinkLabel.cs:
24752                 - Adds cursors
24753                 - Handles focus
24754                 - Implements LinkBehavior
24755                 - Fixes many issues
24756
24757 2005-05-03  Jackson Harper  <jackson@ximian.com>
24758
24759         * ListView.cs: Calculate the scrollbar positioning on resize and
24760         paint, so they get put in the correct place.
24761
24762 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24763
24764         * ColorDialogs.cs: The small color panels are now handled by
24765           SmallColorControl. This fixes drawing of the focus rectangle
24766           and adds a 3D border.
24767
24768 2005-05-03  Peter Bartok  <pbartok@novell.com>
24769
24770         * Control.cs: Modified version of Jonathan Chamber's fix for
24771           double-buffering
24772
24773 2005-05-03  Jackson Harper  <jackson@ximian.com>
24774
24775         * ListView.cs: Remove redraw variable. Control now handles whether
24776         or not a redraw needs to be done, and will only raise the paint
24777         event if redrawing is needed.
24778
24779 2005-05-03  Jackson Harper  <jackson@ximian.com>
24780
24781         * Splitter.cs: No decorations for the splitter form. Cache the
24782         hatch brush.
24783
24784 2005-05-03  Jackson Harper  <jackson@ximian.com>
24785
24786         * TreeView.cs: Use dashed lines to connect nodes. Use the
24787         ControlPaint method for drawing the focus rect instead of doing
24788         that in treeview.
24789
24790 2005-05-02  Peter Bartok  <pbartok@novell.com>
24791
24792         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
24793
24794 2005-04-29  Jackson Harper  <jackson@ximian.com>
24795
24796         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
24797         entire image buffer. Just clear the clipping rectangle.
24798
24799 2005-04-29  Jackson Harper  <jackson@ximian.com>
24800
24801         * ThemeWin32Classic.cs: Don't draw list view items that are
24802         outside the clipping rectangle.
24803
24804 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
24805
24806         * ListBox.cs: added horizontal item scroll
24807
24808 2005-04-29  Jackson Harper  <jackson@ximian.com>
24809
24810         * ThemeWin32Classic.cs: Remove some old debug code that was
24811         causing flicker with the new double buffering code.
24812
24813 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
24814
24815         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
24816         behave like combobox and comboboxlist (still not sure if this is
24817         correct though).
24818
24819 2005-04-28  Jackson Harper  <jackson@ximian.com>
24820
24821         * ThemeWin32Classic.cs: Don't fill the middle of progress
24822         bars. This fills areas outside of the clip bounds that don't need
24823         to be filled.
24824
24825 2005-04-28  Jackson Harper  <jackson@ximian.com>
24826
24827         * Control.cs: Don't expose functionality to touch the image buffers.
24828         * ProgressBar.cs:
24829         * ListView.cs: We do not need to (and no longer can) manipulate
24830         the image buffers directly. All of this is handled by Control.
24831
24832 2005-04-28  Peter Bartok  <pbartok@novell.com>
24833
24834         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
24835           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
24836           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
24837
24838 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24839
24840         * Combobox:
24841                 - Adjust control's height for non-simple comboboxes (bug fix)
24842                 - Remove dead code
24843         * MenuAPI.cs: remove unused var
24844         * ScrollBar.cs: remove unsed var
24845                  
24846         * ListBox.cs: unselect items when clearing
24847
24848 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24849
24850         * ListControl.cs: honors OnPositionChanged and default Selected Item
24851         * ListBox.cs: unselect items when clearing
24852
24853 2005-04-27  Jackson Harper  <jackson@ximian.com>
24854
24855         * X11Keyboard.cs: Initialize a default keyboard and give a warning
24856         if a "correct" keyboard is not found. This will make us not crash,
24857         but might give some users bad keyboard layouts...seems to be the
24858         same thing rewind does.
24859
24860 2005-04-27  Jackson Harper  <jackson@ximian.com>
24861
24862         * BindingManagerBase.cs: Attach the current/position changed
24863         handlers to their respective events.
24864
24865 2005-04-27  Jackson Harper  <jackson@ximian.com>
24866
24867         * Control.cs: Make sure that the first WM_PAINT does a full draw,
24868         not just a blit.
24869         * ThemeWin32Classic.cs: Don't fill the background for picture
24870         boxes. This could overright user drawing.
24871         * ComboBox.cs: Just fill the clipping rect not the entire client
24872         rect when drawing the background. This prevents pieces of the
24873         image buffer from getting overwritten and is theoretically faster.
24874
24875 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
24876
24877         * ComboBox.cs: Databinding support fixes, fire missing events
24878         * ListControl.cs: implement missing methods and properties, fixes
24879         * ThemeWin32Classic.cs: Databiding support on Drawing
24880         * CheckedListBox.cs: Databinding support fixes, fire missing events
24881         * ListBox.cs: Databinding support fixes, fire missing events
24882         
24883 2005-04-25  Peter Bartok  <pbartok@novell.com>
24884
24885         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
24886
24887 2005-04-25  Jackson Harper  <jackson@ximian.com>
24888
24889         * TreeView.cs: Use the horizontal scrollbars height not width when
24890         determining how much of the client area is available.
24891
24892 2005-04-25  Jackson Harper  <jackson@ximian.com>
24893
24894         * Control.cs: Double buffering is handled differently now. As per
24895         the spec, the extra buffer is created in the WM_PAINT message and
24896         passed down to the control's drawing code.
24897         * GroupBox.cs:
24898         * Label.cs:
24899         * CheckBox.cs:
24900         * ProgressBar.cs:
24901         * RadioButton.cs:
24902         * ColorDialog.cs:
24903         * ComboBox.cs:
24904         * PropertyGridView.cs:
24905         * UpDownBase.cs:
24906         * MessageBox.cs:
24907         * MenuAPI.cs:
24908         * ListView.cs:
24909         * ButtonBase.cs:
24910         * SizeGrip.cs:
24911         * ScrollBar.cs:
24912         * ListBox.cs:
24913         * TrackBar.cs:
24914         * ToolBar.cs:
24915         * PictureBox.cs:
24916         * DateTimePicker.cs:
24917         * StatusBar.cs:
24918         * TreeView.cs: Update to new double buffering system.
24919         * MonthCalendar.cs: Uncomment block, as Capture is now
24920         working. Update to new double buffering
24921         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
24922         * PaintEventArgs.cs: New internal method allows us to set the
24923         graphics object. This is used for double buffering.
24924         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
24925         rectangle. The internal paint_area var has been removed from
24926         StatusBar. The clipping rect should be used instead.
24927         * Theme.cs: Give the PictureBox drawing method a clipping rect.
24928         * TabPage.cs: The RefreshTabs method was removed, so just call the
24929         tab controls Refresh method now.
24930         * TabControl.cs: Update to new double buffering. Make sure the
24931         handle is created before sizing the tab pages, otherwise we will
24932         get stuck in a loop.
24933
24934 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
24935
24936         * LinkLabel.cs: Fix typo, bug #74719; patch
24937           from Borja Sanchez Zamorano
24938
24939 2005-04-22  Jackson Harper  <jackson@ximian.com>
24940
24941         * TreeNode.cs: Implement Handle stuff.
24942         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
24943
24944 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
24945
24946         * DataGridTextBoxColumn.cs: call base constructors, fixes
24947         * GridColumnStylesCollection.cs: missing events, methods, and functionality
24948         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
24949         * DataGridTableStyle.cs: implements create default column styles
24950         * DataGridBoolColumn.cs: which types can handle
24951         * DataGrid.cs: missing methods, fixes, new functionality
24952         * DataGridColumnStyle.cs: fixes
24953
24954 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
24955         * FolderBrowserDialog.cs:
24956         - Use a thread to fill the TreeView
24957         - Adjusted some sizes
24958
24959 2005-04-19  Peter Bartok  <pbartok@novell.com>
24960
24961         * LinkLabel.cs: (Re-)create the pieces when setting the Text
24962           property. Fixes #74360.
24963
24964 2005-04-19  Jackson Harper  <jackson@ximian.com>
24965
24966         * XEventQueue.cs: Lock when getting the lockqueue size.
24967         * PictureBox.cs: Call base OnPaint
24968         
24969 2005-04-19  Peter Bartok  <pbartok@novell.com>
24970
24971         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
24972           messages were no longer being processed (this broke BeginInvoke)
24973
24974           
24975 2005-04-18  Jackson Harper  <jackson@ximian.com>
24976
24977         * TreeView.cs: buglet that caused node images to get drawn
24978         regardless of whether or not they were in the clipping rectangle.
24979
24980 2005-04-18  Jackson Harper  <jackson@ximian.com>
24981
24982         * CurrencyManager.cs: There are four rules for GetItemProperties:
24983         - If the type is an array use the element type of the array
24984         - If the type is a typed list, use the type
24985         - If the list contains an Item property that is not an object, use
24986         that property
24987         - use the first element of the list if there are any elements in
24988         the list.
24989         
24990 2005-04-17  Jackson Harper  <jackson@ximian.oom>
24991
24992         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
24993         click. This handles offsets for scrolling properly and reduces
24994         memory. Also fixed GetNode to not offset now that TopNode works
24995         properly.
24996         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
24997         
24998 2005-04-17  Jackson Harper  <jackson@ximian.com>
24999
25000         * CursorConverter.cs: Initial implementation.
25001
25002 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
25003
25004         * ListControl.cs: work towards complex data binding support on ListControl
25005         * CurrencyManager.cs: work towards complex data binding support on ListControl
25006         * ListBox.cs: work towards complex data binding support on ListControl
25007
25008
25009 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
25010
25011         * GridTableStylesCollection.cs: fixes name and constructor
25012         * DataGridTableStyle.cs: fixes
25013         * DataGridBoolColumn.cs: fixes names and constructors
25014         * DataGrid.cs: define methods and properties. Some init implementations
25015         * DataGridCell.cs: define methods and properties. Some init implementations
25016         * GridTablesFactory.cs: Define methods and properties
25017
25018 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
25019
25020         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
25021         graphics port changes.  We still want the coordinates in global screen
25022         coordinates.
25023
25024 2005-04-14  Jackson Harper  <jackson@ximian.com>
25025
25026         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
25027         check plus minus or checkbox clicks unless those features are enabled.
25028
25029 2005-04-14  Jackson Harper  <jackson@ximian.com>
25030
25031         * TreeView.cs: Add methods for setting the top and bottom visible
25032         nodes. TreeNode::EnsureVisible uses these methods.
25033         * TreeNode.cs: Implement EnsureVisible
25034
25035 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
25036
25037         * Form.cs: Pospone menu assignation if the window has not been created yet
25038         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
25039         size and position
25040
25041 2005-04-12  Jackson Harper  <jackson@ximian.com>
25042
25043         * TreeView.cs: Set the TopNode properly when scrolling
25044         occurs. This has the added benifit of reducing the amount of
25045         walking that needs to be done when drawing. Also removed an old
25046         misleading TODO.
25047         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
25048         
25049 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
25050
25051         * Timer.cs: fixes interval setting when the timer is already enabled
25052         
25053 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
25054
25055         * FolderBrowserDialog.cs: First approach
25056
25057 2005-04-09  Peter Bartok  <pbartok@novell.com>
25058
25059         * FolderBrowserDialog: Added
25060
25061 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
25062
25063         * LinkLabel.cs: move drawing code into the theme
25064         * ThemeWin32Classic.cs: drawing code and painting background bugfix
25065         * Theme.cs: define DrawLinkLabel method
25066
25067 2005-04-05  Jackson Harper  <jackson@ximian.com>
25068
25069         * BindingContext.cs: Use weak references so these bad actors don't
25070         stay alive longer then they need to.
25071
25072 2005-04-05  Jackson Harper  <jackson@ximian.com>
25073
25074         * ListControl.cs: Basic implementation of complex databinding.
25075         * ComboBox.cs:
25076         * ListBox.cs: Add calls to ListControl databinding methods.
25077
25078 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
25079
25080         * FileDialog.cs:
25081           - Don't change PopupButtonState to Normal when the
25082             PopupButton gets pressed several times.
25083           - Renamed ButtonPanel to PopupButtonPanel
25084
25085 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
25086
25087         * ColorDialog.cs: Use cached objects instead of creating them
25088         * LinkLabel.cs: Use cached objects instead of creating them
25089         * Splitter.cs: Use cached objects instead of creating them
25090         * FontDialog.cs: Use cached objects instead of creating them
25091         * PropertyGridView.cs: Use cached objects instead of creating them
25092         * MessageBox.cs: Use cached objects instead of creating them
25093         * FileDialog.cs: Use cached objects instead of creating them
25094         * ThemeWin32Classic.cs: Use cached objects instead of creating them
25095         * TreeView.cs: Use cached objects instead of creating them
25096         
25097 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
25098
25099         * Control.cs: use Equals to compare the font since no == op
25100         * ScrollBar.cs: use Equals to compare the font since no == op
25101
25102 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
25103
25104         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
25105
25106 2005-04-01  Jackson Harper  <jackson@ximian.com>
25107
25108         * Binding.cs: Implement IsBinding.
25109         * BindingManagerBase.cs:
25110         * PropertyManager.cs:
25111         * CurrencyManager.cs: Add IsSuspended property.
25112
25113 2005-04-01  Jackson Harper  <jackson@ximian.com>
25114
25115         * Binding.cs: Had some IsAssignableFrom calls backwards.
25116
25117 2005-04-01  Jackson Harper  <jackson@ximian.com>
25118
25119         * Binding.cs: Handle null data members when pulling data.
25120         * PropertyManager.cs: Handle the data member being a property that
25121         does not exist.
25122
25123 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
25124
25125         * DataGridTextBoxColumn.cs: fixes signature
25126         * DataGrid.cs: calls right constructor
25127
25128 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
25129
25130         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
25131         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
25132         * GridTableStylesCollection.cs: implements GridTableStylesCollection
25133         * DataGridTableStyle.cs: implements DataGridTableStyle
25134         * DataGridBoolColumn.cs: implements DataGridBoolColumn
25135         * DataGridTextBox.cs: implements DataGridTextBox
25136         * DataGridColumnStyle.cs: implements DataGridColumnStyle
25137
25138 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
25139
25140         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
25141
25142 2005-03-29  Peter Bartok  <pbartok@novell.com>
25143
25144         * Application.cs:
25145           - Properly implemented CompanyName property
25146           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
25147             returns a path that includes CompanyName, ProductName and
25148             Version (fixes bug #70330)
25149
25150 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
25151
25152         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
25153           fixes bug #72588.
25154
25155 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
25156
25157         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
25158         
25159           - Added ReadOnly CheckBox
25160           - Further refactoring: moved some code from Open-/SaveFileDialog
25161             to FileDialog
25162
25163 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
25164
25165         * OpenFileDialog.cs: Fixed CheckFileExists
25166         * FileDialog.cs:
25167           Moved FileView and DirComboBox outside FileDialog class.
25168           They can now be used outside FileDialog
25169
25170 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
25171
25172         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
25173         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
25174
25175 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
25176
25177         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
25178           - Added missing CreatePrompt property in SaveDialog
25179           - Overall SaveDialog handling should be better now
25180           - Added non standard ShowHiddenFiles property
25181           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
25182           - Added InitialDirectory and RestoreDirectory support
25183
25184 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
25185
25186         * FileDialog.cs: Made dirComboBox usable
25187
25188 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
25189
25190         * FileDialog.cs: Added Filter support (case sensitiv)
25191
25192 2005-03-24  Jackson Harper  <jackson@ximian.com>
25193
25194         * TabControl.cs: Need a couple more pixels for the lines.
25195
25196 2005-03-23  Jackson Harper  <jackson@ximian.com>
25197
25198         * TabControl.cs: Give the tab page focus when it is selected.
25199
25200 2005-03-23  Jackson Harper  <jackson@ximian.com>
25201
25202         * TabControl.cs: Account for the drawing of tabs borders when
25203         invalidating. If the slider was clicked dont do click detection on
25204         the tabs.
25205
25206 2005-03-23  Jackson Harper  <jackson@ximian.com>
25207
25208         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
25209
25210 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
25211
25212         * CategoryGridEntry.cs: Added
25213         * GridItem.cs: Added helper properties
25214         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
25215         * GridEntry.cs: Updated code for collection
25216         * PropertyGrid.cs: Cleaned up some formatting
25217         * PropertyGridView.cs: Added drop down functionality for enums.
25218         * GridItemCollection.cs: Added enumerator logic
25219         * PropertyGridEntry.cs: Added
25220
25221 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
25222
25223         * FileDialog.cs:
25224           - Removed unnecessary commented code
25225           - Fixed handling for entering the filename manually in the combobox
25226
25227 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
25228
25229         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
25230
25231 2005-03-18  Peter Bartok  <pbartok@novell.com>
25232
25233         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
25234           them being touching the border
25235
25236 2005-03-18  Peter Bartok  <pbartok@novell.com>
25237
25238         * TextControl.cs: Quick hack to center text better
25239
25240 2005-03-18  Peter Bartok  <pbartok@novell.com>
25241
25242         * ControlPaint.cs:
25243           - Don't throw NotImplemented exceptions, just print a notice once
25244             instead (requested by Miguel). This makes running existing SWF
25245             apps a bit easier
25246         * Control.cs:
25247           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
25248           - Added context menu trigger on right click
25249         * Panel.cs: Trigger invalidate on resize
25250         * StatusBar.cs:
25251           - Removed old double-buffer drawing
25252           - Added ResizeRedraw style to force proper update of statusbar
25253         * ListView.cs:
25254           - Removed debug output
25255         * ThemeWin32Classic.cs:
25256           - Fixed drawing of status bar, now draws Text property if there
25257             are no defined panels
25258
25259 2005-03-18  Jackson Harper  <jackson@ximian.com>
25260
25261         * ImageList.cs: When the image stream is set pull all the images
25262         from it.
25263         * ImageListStreamer.cs: Implement reading image list streams.
25264
25265 2005-03-18  Peter Bartok  <pbartok@novell.com>
25266
25267         * ThemeWin32Classic.cs (DrawPictureBox):
25268           - Fixed calculations for centered drawing
25269           - Fixed drawing for normal mode, not scaling the image on normal
25270
25271 2005-03-18  Peter Bartok  <pbartok@novell.com>
25272
25273         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
25274           textbox
25275         * FileDialog.cs:
25276           - Made Open/Save button the accept button for FileDialog
25277           - Tied the cancel button to the IButtonControl cancel button
25278           - Save/Open now properly builds the pathname
25279           - Now handles user-entered text
25280           - Preventing crash on right-click if no item is selected
25281           - Fixed Text property, now uses contents of textbox
25282           - Fixed SelectedText property, now just returns the text part that
25283             is selected in the text box
25284
25285 2005-03-18  Jackson Harper  <jackson@ximian.com>
25286
25287         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
25288         rect, make sure to de-adjust the interior rect after drawing the
25289         tab text.
25290
25291 2005-03-18  Peter Bartok  <pbartok@novell.com>
25292
25293         * MenuAPI.cs: Remove menu *before* executing selected action to
25294           prevent the menu from 'hanging around'
25295           
25296 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
25297
25298         * XplatUIOSX.cs: Implemented WorkingArea property
25299
25300 2005-03-17  Peter Bartok  <pbartok@novell.com>
25301
25302         * XplatUIX11.cs: Fixed menu coord calculations
25303         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
25304           for calculating offsets
25305
25306 2005-03-17  Peter Bartok  <pbartok@novell.com>
25307
25308         * Hwnd.cs: Do not consider menu presence for default client
25309           rectangle location/size
25310         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
25311           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
25312           translation functions
25313         * FileDialog.cs: Fixed (what I presume is a) typo
25314
25315 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
25316
25317         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
25318           X access (avoids X-Async errors)
25319
25320 2005-03-16  Jackson Harper  <jackson@ximian.com>
25321
25322         * TabControl.cs: Raise the SelectedIndexChanged event.
25323
25324 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
25325
25326         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
25327           - Removed vertical ToolBar and replaced it with a custom panel
25328             (desktop and home button already work)
25329           - Added Help button (some controls get resized or relocated then)
25330           - Draw correct text depending on Open or Save.
25331           - Fixed some typos...
25332
25333 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
25334
25335         * ScrollBar.cs:
25336           - Only change Maximum and Minimum when need it (bug fix)
25337
25338 2005-03-15  Peter Bartok  <pbartok@novell.com>
25339
25340         * Form.cs: Use Handle for icon, to trigger creation if
25341           the window does not yet exist
25342         * Control.cs:
25343           - CanSelect: Slight performance improvement
25344           - Focus(): Preventing possible recursion
25345           - Invalidate(): Removed ControlStyle based clear flag setting
25346           - WM_PAINT: fixed logic for calling OnPaintBackground
25347           - WM_ERASEBKGND: Fixed logic, added call to new driver method
25348             EraseWindowBackground if the control doesn't paint background
25349         * XplatUIWin32.cs:
25350           - Moved EraseWindowBackground() method to internal methods
25351           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
25352             is sent via SendMessage on BeginPaint call on Win32
25353         * XplatUIX11.cs:
25354           - Added EraseWindowBackground() method
25355           - No longer sends WM_ERASEBKGND on .Expose, but on call to
25356             PaintEventStart, which more closely matches Win32 behaviour
25357           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
25358           - Fixed SetFocus() to properly deal with client and whole windows
25359         * Hwnd.cs: Added ErasePending property
25360         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
25361         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
25362
25363 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
25364
25365         * XplatUIOSX.cs:
25366           - Fix hard loop when timers exist.
25367           - Fix bugs with middle and right click for 3 button mice.
25368
25369 2005-03-11  Peter Bartok  <pbartok@novell.com>
25370
25371         * XplatUIX11.cs:
25372           - get_WorkingArea: Need to call X directly, GetWindowPos only
25373             returns cached data now
25374           - Added sanity check to GetWindowPos hwnd usage
25375
25376 2005-03-11  Jackson Harper  <jackson@ximian.com>
25377
25378         * BindingManagerBase.cs: This method isn't used anymore as
25379         PullData now updates the data in the control.
25380
25381 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
25382
25383         * Form.cs: fixes menu drawing on X11
25384         * MenuAPI.cs:  fixes menu drawing on X11
25385
25386 2005-03-11  Peter Bartok  <pbartok@novell.com>
25387
25388         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
25389           from Jonathan Gilbert; should fix bug #73606
25390         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
25391           in Screen coordinates. Thanks, Jordi.
25392         * Form.cs: Added missing attribute
25393
25394 2005-03-11  Peter Bartok  <pbartok@novell.com>
25395
25396         * Form.cs:
25397           - Rudimentary Mdi support
25398           - Removed outdated FormParent code
25399           - Implemented lots of missing properties and methods, still missing
25400             transparency support
25401           - Added missing attributes
25402           - Implemented support for MaximumBounds
25403           - Added firing of various events
25404         * XplatUI.cs: Added SetIcon() method
25405         * XplatUIDriver.cs: Added SetIcon() abstract
25406         * XplatUIOSX.cs: Stubbed out SetIcon() method
25407         * XplatUIX11.cs:
25408           - Implemented SetIcon() support
25409           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
25410           - Switched to unix line endings
25411         * XplatUIWin32.cs:
25412           - Made POINT internal so for can access it as part of MINMAX
25413           - Implemented SetIcon() support
25414           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
25415             native Mdi support again, might have to go managed)
25416         * Control.cs: Now fires the StyleChanged event
25417         * MdiClient.cs: Added; still mostly empty
25418
25419 2005-03-10  Peter Bartok  <pbartok@novell.com>
25420
25421         * SaveFileDialog.cs: Added emtpy file
25422
25423 2005-03-08  Peter Bartok  <pbartok@novell.com>
25424
25425         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
25426           in turn triggers OnCreateContro) when creating a handle for the
25427           first time.
25428         * TextControl.cs: Fixed endless loop in certain cases when
25429           replacing the current selection
25430
25431 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
25432
25433         * ScrollBar.cs:
25434           - Honors NewValue changes in Scroll events allowing apps to change it
25435           - Adds First and Last Scroll events
25436           - Fixes Thumb events
25437
25438 2005-03-07  Peter Bartok  <pbartok@novell.com>
25439
25440         * Hwnd.cs: Added DefaultClientRectangle property
25441         * XplatUI.cs: Now using the X11 driver Where() method, which provides
25442           more detailed debug information
25443         * XplatUIX11.cs:
25444           - Fixed size-change feedback loop, where we would pull an old size
25445             off the queue and mistakenly change our window's size to an
25446             earlier value
25447           - Now compressing ConfigureNotify events, to reduce looping and
25448             redraw issues
25449         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
25450           is called
25451
25452 2005-03-07  Jackson Harper  <jackson@ximian.com>
25453
25454         * Binding.cs: Push data pushes from data -> property. Check if the
25455         property is readonly when attempting to set it.
25456
25457 2005-03-07  Jackson Harper  <jackson@ximian.com>
25458
25459         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
25460         instead of IsSubclassOf. Pulling data now sets the value on the
25461         control.
25462         * PropertyManager.cs:
25463         * CurrencyManager.cs: Just need to pull data when updating now,
25464         because PullData will set the value on the control.
25465
25466 2005-03-04  Jackson Harper  <jackson@ximian.com>
25467
25468         * Binding.cs: Implement data type parsing and converting on pulled
25469         data. TODO: Are there more ways the data can be converted?
25470
25471 2005-03-04  Jackson Harper  <jackson@ximian.com>
25472
25473         * Binding.cs: Support <Property>IsNull checks. Also bind to the
25474         controls Validating method so we can repull the data when the
25475         control loses focus.
25476
25477 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
25478
25479         * ColumnHeader.cs:
25480           - Fixes null string format
25481           
25482         * ListView.cs:
25483           - Adds enum type checks
25484           - Fixes redrawing and recalc need after changing some properties
25485           - Fixes on focus_item set after the event
25486           - Fixes adding columns after the control has been created
25487           
25488         * ThemeWin32Classic.cs:
25489           - Fixes CheckBox focus rectangle
25490           - Fixes ColumnHeader drawing
25491
25492
25493 2005-03-03  Jackson Harper  <jackson@ximian.com>
25494
25495         * Binding.cs: Bind to <Property>Changed events so we can detect
25496         when properties are changed and update the data.
25497
25498 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
25499
25500         * ImageList.cs:
25501           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
25502           - Fixes ImageList constructor with ImageList container
25503           - Fixes image scaling (wrong parameters at DrawImage)
25504
25505 2005-02-02  Jackson Harper  <jackson@ximian.com>
25506
25507         * Binding.cs: Make property searches case-insensitive. Eliminate
25508         some duplicated code.
25509
25510 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
25511
25512         * ComboBox.cs:
25513                 - Handle focus event
25514                 - Fix scrollbar events
25515                 - Discard highlighted item if remove it
25516                 - Fixes SelectedItem with strings
25517
25518 2005-03-01  Peter Bartok  <pbartok@novell.com>
25519
25520         * Control.cs:
25521           - Fixed Visible property, now follows (once again) parent chain
25522             to return false if any control in the chain is visible=false
25523           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
25524           - Fixed several places where is_visible instead of Visible was used
25525           - Implemented FIXME related to focus selection when setting focused
25526             control to be invisible
25527
25528         * XplatUIWin32.cs: Now using proper method to find out if window is
25529           visible. Thanks to Jordi for pointing it out
25530
25531 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
25532
25533         * ComboBox.cs: show/hide scrollbar instead of creating it
25534
25535 2005-02-27  Jackson Harper  <jackson@ximian.com>
25536
25537         * CurrencyManager.cs: Add PositionChanged stuff.
25538
25539 2005-02-27  Peter Bartok  <pbartok@novell.com>
25540
25541         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
25542         * XplatUIOSX.cs: Added GetMenuOrigin() stub
25543         * XplatUIWin32.cs: Implemented GetMenuOrigin()
25544         * XplatUIX11.cs:
25545           - Implemented GetMenuDC()
25546           - Implemented GetMenuOrigin()
25547           - Implemented ReleaseMenuDC()
25548           - Implemented generation of WM_NCPAINT message
25549           - Implemented generation and handling of WM_NCCALCSIZE message
25550         * Form.cs: Added debug helper message for Jordi's menu work
25551         * Hwnd.cs:
25552           - Modified ClientRect property; added setter, fixed getter to handle
25553             setting of ClientRect
25554           - Added MenuOrigin property
25555
25556 2005-02-26  Peter Bartok  <pbartok@novell.com>
25557
25558         * XplatUIX11.cs:
25559           - Destroys the caret if a window that's being destroyed contains it
25560           - Ignores expose events coming from the X11 queue for windows that
25561             already are destroyed
25562           - Now uses the proper variable for handling DestroyNotify, before we
25563             marked the wrong window as destroyed
25564           - Improved/added some debug output
25565
25566 2005-02-26  Peter Bartok  <pbartok@novell.com>
25567
25568         * X11Keyboard.cs: Fixes to work on 64bit systems
25569
25570 2005-02-26  Peter Bartok  <pbartok@novell.com>
25571
25572         * Control.cs:
25573           - Now calling OnHandleDestroyed from DestroyHandle()
25574             instead of Dispose()
25575           - Removed bogus call to controls.Remove() from DestroyHandle()
25576
25577 2005-02-26  Peter Bartok  <pbartok@novell.com>
25578
25579         * Control.cs: Properly destroy child windows when our handle is
25580           destroyed
25581
25582 2005-02-25  Peter Bartok  <pbartok@novell.com>
25583
25584         * XplatUI.cs:
25585           - Added 'DriverDebug' define to allow tracing XplatUI API calls
25586           - Alphabetized Static Methods and Subclasses
25587
25588         * XplatUIX11.cs:
25589           - Added XException class to allow custom handling of X11 exceptions
25590           - Created custom X11 error handler, tied into XException class
25591           - Added support for MONO_XEXCEPTIONS env var to allow the user
25592             to either throw an exception on X errors or continue running
25593             after displaying the error
25594           - Added handling of DestroyNotify message
25595           - Added handler for CreateNotify message (still disabled)
25596           - Improved (tried to at least) Where method to provide file and lineno
25597         * X11Structs.cs:
25598           - Added XErrorHandler delegate
25599           - Added XRequest enumeration (to suppor translation of errors)
25600
25601 2005-02-25  Jackson Harper  <jackson@ximian.com>
25602
25603         * PropertyManager.cs: Implement editing features
25604         * CurrencyManager.cs:
25605         * Binding.cs: First attempt at UpdateIsBinding
25606         * BindingManagerBase.cs: Call UpdateIsBinding before
25607         pushing/pulling data.
25608
25609 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
25610
25611         * MenuAPI.cs: Respect disabled items
25612         * ThemeWin32Classic.cs
25613                 - Caches ImageAttributes creation for DrawImageDisabled
25614                 - Fixes vertical menu line drawing
25615                 - Draws disabled arrows in disable menu items
25616
25617 2005-02-24  Peter Bartok  <pbartok@novell.com>
25618
25619         * Hwnd.cs:
25620           - Added UserData property to allow associating arbitrary objects
25621             with the handle
25622           - Fixed leak; now removing Hwnd references from static windows array
25623         * XplatUIWin32.cs:
25624           - Fixed Graphics leak in PaintEventEnd
25625           - Removed usage of HandleData, switched over to Hwnd class
25626         * HandleData.cs: Removed, obsoleted by Hwnd.cs
25627
25628 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25629
25630         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
25631         * ScrollBar.cs: Fixes bug
25632         * TrackBar.cs: removes death code, clipping, mimize refreshes,
25633          keyboard navigation enhancements
25634
25635 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25636
25637         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
25638         * GroupBox.cs: Add control styles
25639         * Label.cs: Add control styles
25640         * UpDownBase.cs: Add control styles
25641         * ListBox.cs: Add control styles
25642         * XplatUIWin32.cs: Fixes wrong parameter order
25643
25644
25645 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
25646
25647         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
25648
25649 2005-02-23  Jackson Harper  <jackson@ximian.com>
25650
25651         * PropertyManager.cs: Implement property binding. This doesn't
25652         seem to work yet though as (I think) there are some bugs in
25653         System.ComponentModel.PropertyDescriptor.
25654         * BindingContext.cs: Use new PropertyManager constructor.
25655
25656 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
25657
25658         * ProgressBar.cs: use clip region in ProgressBar
25659         * ThemeWin32Classic.cs: use clip region in ProgressBar
25660
25661 2004-02-22  Jackson Harper  <jackson@ximian.com>
25662
25663         * BindingsCollection.cs: Remove some debug code.
25664
25665 2005-02-22  Jackson Harper  <jackson@ximian.com>
25666
25667         * BindingContext.cs:
25668         * ControlBindingsCollection.cs:
25669         * CurrencyManager.cs:
25670         * Binding.cs:
25671         * BindingManagerBase.cs: Initial implementation
25672         * BindingsCollection.cs: Add an internal contains method that the
25673         BindingManagerBase uses to ensure bindings aren't added twice to
25674         the collection.
25675         * PropertyManager.cs: Stubbed out.
25676         * Control.cs:
25677         * ContainerControl.cs: Hook up databinding
25678         
25679 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
25680
25681         * XplatUIOSX.cs:
25682           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
25683           Fixed Invalidate/Update chain.
25684           Fixed tons of other minor bugs (this is almost a complete rewrite).
25685
25686 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
25687
25688         * ComboBox.cs: do subcontrol creation when the control is created
25689
25690 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25691
25692         * Label.cs: fixes image drawing (image and imagelist)
25693         * ThemeWin32Classic.cs: cache brushes
25694         
25695 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25696
25697         * Form.cs: Move menu drawing code to Theme class
25698         * ComboBox.cs: Move ComboBox drawing code to Theme class
25699         * MenuItem.cs: Move menu drawing code to Theme class
25700         * MenuAPI.cs: Move menu drawing code to Theme class
25701         * ThemeWin32Classic.cs: New methods
25702         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
25703         * ListBox.cs: Move Listbox drawing code to Theme class
25704         * Theme.cs: New methods
25705
25706 2005-02-20  Peter Bartok  <pbartok@novell.com>
25707
25708         * Control.cs:
25709           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
25710             only process mnemonics on those)
25711           - Fixed event sequence for key handling; first calling
25712             ProcessKeyEventArgs now
25713         * TextBoxBase.cs:
25714           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
25715             for processing non-character keys
25716           - Fixed WM_CHAR to generate proper event sequence before processing
25717         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
25718           generation
25719
25720 2005-02-19  Peter Bartok  <pbartok@novell.com>
25721
25722         * UserControl.cs: Added TextChanged event; added attributes
25723         * SizeGrip.cs: Implemented resizing and optional display of grip
25724         * Form.cs: Fixed attribute
25725         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25726           Changed meaning of ScrollWindow bool argument; instead of the
25727           clear attribute (which will be true usually anyway), it gives the
25728           option of moving child controls as well.
25729         * XplatUIX11.cs:
25730           - Changed to match new ScrollWindow argument
25731           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
25732             now handles the implicit parent window a WM puts around us
25733         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
25734           to work)
25735         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
25736         * TreeView.cs: Adjusted to new ScrollWindow arguments
25737
25738 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25739
25740         * Form.cs: Menu integration with non-client area
25741         * MenuItem.cs: Menu integration with non-client area
25742         * MenuAPI.cs: Menu integration with non-client area
25743
25744 2005-02-18  Peter Bartok  <pbartok@novell.com>
25745
25746         * MethodInvoker.cs: Added
25747         * MdiLayout.cs: Added
25748         * SendKeys.cs: Started implementation
25749         * ErrorIconAlignment.cs: Added
25750
25751 2005-02-18  Peter Bartok  <pbartok@novell.com>
25752
25753         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
25754         * Form.cs: Added handling for Menu-related Non-client messages
25755
25756 2005-02-17  Peter Bartok  <pbartok@novell.com>
25757
25758         * UpDownBase.cs: Fixed typo, compilation errors
25759         * DomainUpDown.cs: Fixed attribute value
25760
25761 2005-02-16  Miguel de Icaza  <miguel@novell.com>
25762
25763         * UpDownBase.cs: Attach entry events.
25764         Propagate events.
25765         Add ForeColor property, Focused, InterceptArrowKeys (interception
25766         does not work yet).
25767
25768 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
25769
25770         * Form.cs:
25771                 - Redraw non client are on Setmenu
25772                 - Calc proper menu starting point
25773
25774 2005-02-17  Peter Bartok  <pbartok@novell.com>
25775
25776         * Application.cs: Fixed message_filter check
25777
25778 2005-02-17  Peter Bartok  <pbartok@novell.com>
25779
25780         * Application.cs: Now calls registered message filters
25781         * DockStyle.cs: Fixed attribute
25782         * Form.cs: Fixed attribute
25783         * Menu.cs: Fixed attribute
25784         * ToolTip.cs: Fixed attribute
25785         * TreeNode.cs: Added missing attributes and arranged in regions
25786         * PropertyGrid.cs: Fixed signatures
25787         * TreeNodeCollection.cs: Added attributes
25788         * Splitter.cs: Added missing attributes; arranged into regions
25789         * TabPage.cs: Added missing attributes; arranged into regions
25790         * TextBoxBase.cs: Added missing attributes
25791         * TextBox.cs: Added missing attributes
25792         * ArrangeDirection.cs: Added missing attributes
25793         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
25794         * ToolBarButton.cs: Fixed attributes
25795         * AnchorStyles.cs: Fixed attribute
25796         * TrackBar.cs: Fixed attributes
25797         * TabControl.cs: Added missing attributes and arranged into regions
25798         * ToolBar.cs: Fixed attribute
25799         * StatusBar.cs: Fixed signature, organized into regions and added
25800           attributes
25801         * StatusBarPanel.cs: Fixed attributes
25802         * ContentsResizedEventArgs.cs: Implemented
25803         * ContentsResizedEventHandler.cs: Implemented
25804         * DateBoldEventArgs.cs: Implemented
25805         * DateBoldEventHandler.cs: Implemented
25806         * UpDownEventArgs.cs: Implemented
25807         * UpDownEventHandler.cs: Implemented
25808         
25809 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
25810
25811         * Form.cs: first Menu NC refactoring
25812         * MenuAPI.cs: first Menu NC refactoring
25813         
25814 2005-02-16  Peter Bartok  <pbartok@novell.com>
25815
25816         * ImeMode.cs: Added missing attributes
25817         * Menu.cs: Fixed attribute
25818         * GroupBox.cs: Fixed attribute
25819         * Label.cs: Fixed attribute
25820         * ColorDialog.cs (RunDialog): Removed TODO attribute
25821         * ComboBox.cs: Fixed attributes
25822         * ListControl.cs: Added missing attributes
25823         * PropertyGrid.cs: Fixed attributes
25824         * Control.cs: Fixed attributes
25825         * ListViewItem.cs: Added TypeConverter attribute
25826         * NotifyIcon.cs: Fixed attributes
25827         * ListView.cs: Fixed attributes
25828         * ButtonBase.cs: Fixed attribute
25829         * ImageList.cs: Added missing attributes
25830         * ContainerControl.cs: Fixed signature
25831         * CheckedListBox.cs: Fixed attribute; added missing attributes
25832         * Panel.cs: Fixed attributes
25833         * PropertyTabChangedEventArgs.cs: Added missing attribute
25834         * PropertyValueChangedEventArgs.cs: Added missing attribute
25835         * Binding.cs: Fixed attribute
25836         * ListViewItemConverter: Implemented ListViewSubItemConverter class
25837         * ListBox.cs: Fixed attribute; added missing attributes;
25838         * ScrollableControl.cs: Added missing attributes
25839         * PictureBox.cs: Added missing attributes; implemented missing property
25840         * DateTimePicker.cs: Added missing attributes
25841         * Theme.cs (ToolWindowCaptionHeight): Fixed type
25842         * MonthCalendar.cs: Fixed attributes
25843         * StatusBarPanel.cs: Added missing attributes
25844         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
25845
25846 2005-02-16  Peter Bartok  <pbartok@novell.com>
25847
25848         * TextBoxBase.cs: The previous method to enforce height yet remember
25849           the requested high was less than ideal, this is an attempt to do
25850           it better.
25851         * Control.cs: Added comment about possible problem
25852         * Copyright: Updated format
25853         * GridItemType.cs: Fixed swapped values
25854
25855 2005-02-15  Jackson Harper  <jackson@ximian.com>
25856
25857         * BaseCollection.cs: Use property so we never access an
25858         uninitialized list. Also initialize the list in the property.
25859
25860 2005-02-15  Peter Bartok  <pbartok@novell.com>
25861
25862         * GroupBox.cs (ProcessMnemonic): Implemented
25863         * Label.cs (ProcessMnemonic): Implemented
25864         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
25865           hotkeys
25866
25867 2005-02-15  Peter Bartok  <pbartok@novell.com>
25868
25869         * RadioButton.cs (ProcessMnemonic): Implemented
25870         * CheckBox.cs (ProcessMnemonic): Implemented
25871         * Control.cs:
25872           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
25873             handling
25874           - Added internal method to allow calling ProcessMnemonic from other
25875             controls
25876         * ContainerControl.cs:
25877           - Started support for handling validation chain handling
25878           - Implemented ProcessMnemonic support
25879           - Added Select() call to Active, to make sure the active control
25880             receives focus
25881         * Form.cs: Setting toplevel flag for Forms (this was lost in the
25882           FormParent rewrite)
25883         * ThemeWin32Classic.cs:
25884           - DrawCheckBox(): Fixed stringformat to show hotkeys
25885           - DrawRadioButton(): Fixed stringformat to show hotkeys
25886         * CommonDialog.cs: Removed WndProc override, not needed
25887
25888 2005-02-14  Peter Bartok  <pbartok@novell.com>
25889
25890         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
25891           missed those in the rewrite
25892
25893 2005-02-14  Miguel de Icaza  <miguel@novell.com>
25894
25895         * NumericUpDown.cs (Increment, ToString): Add.
25896         (DecimalPlaces): implement.
25897         
25898         Add attributes.
25899         
25900         * UpDownBase.cs: Add the designer attributes.
25901
25902 2005-02-13  Peter Bartok  <pbartok@novell.com>
25903
25904         * Panel.cs: Removed border_style, now in Control
25905         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
25906           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
25907
25908 2005-02-13  Peter Bartok  <pbartok@novell.com>
25909
25910         * MouseButtons.cs: Added missing attributes
25911         * XplatUIStructs.cs: Added enumeration for title styles
25912         * LeftRightAlignment.cs: Added missing attributes
25913         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
25914           it compatible with Graphics.FromHwnd()
25915         * SelectedGridItemChangedEventArgs.cs: Fixed property type
25916         * Keys.cs: Added missing attributes
25917         * SelectionRange.cs: Added missing attributes
25918         * SelectionRangeConverter.cs: Added
25919         * XplatUI.cs:
25920           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
25921             ReleaseMenuDC methods
25922           - Renamed ReleaseWindow to UngrabWindow
25923           - Added proper startup notice to allow version identification
25924         * Form.cs:
25925           - Added missing attributes
25926           - Removed FormParent concept
25927         * Label.cs: Removed border_style field, now in Control
25928         * RadioButton.cs: Now properly selects RadioButton when focus is
25929           received
25930         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
25931         * Control.cs:
25932           - Added missing attributes
25933           - Added borderstyle handling
25934           - Removed FormParent concept support
25935           - Fixed calls to XplatUI to match changed APIs
25936           - Fixed bug that would case us to use disposed Graphics objects
25937           - Removed unneeded internal methods
25938           - PerformLayout(): Fixed to handle DockStyle.Fill properly
25939           - SelectNextControl(): Fixed to properly check common parents
25940         * TextBoxBase.cs: Removed border_style field (now in Control)
25941         * MessageBox.cs:
25942           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
25943             fixed calculations for form size
25944           - Added support for localized strings and icons
25945           - Improved form size calculations, added border
25946         * ListView.cs: Removed border_style field (now in Control)
25947         * X11Structs.cs: Moved several structs from X11 driver here
25948         * X11Keyboard.cs: Changed debug message
25949         * Application.cs: Removed FormParent concept support
25950         * CommonDialog.cs:
25951           - Resetting end_modal flag
25952           - Removed FormParent concept support
25953         * NativeWindow.cs: Removed FormParent concept support
25954         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
25955           Client area and Non-Client whole window to allow support for WM_NC
25956           messages
25957         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
25958           prevent using it until it supports Hwnd as per Geoff Norton's request
25959         * ToolBar.cs: Fixed drawing, was not doing proper drawing
25960         * PictureBox.cs: Removed border_style field, now in Control
25961         * XplatUIWin32.cs: Added new driver methods
25962
25963 2005-02-12  Peter Bartok  <pbartok@novell.com>
25964
25965         * OpacityConverter.cs: Implemented
25966         * Hwnd.cs: Internal class to support drivers that need to emulate
25967           client area/non-client area window behaviour
25968
25969 2005-02-11  Peter Bartok  <pbartok@novell.com>
25970
25971         * KeysConverter.cs: Implemented
25972
25973 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
25974
25975         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
25976         * LinkLabel: Added missing attributes
25977         * MainMenu.cs: fixes ToString
25978         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
25979         * ListBox.cs: fixes event position
25980         * TrackBar.cs: adds missing attributes and events
25981         
25982 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
25983
25984         * MenuItem.cs: Use SystemInformation and bug fixes
25985         * MenuAPI.cs: Use SystemInformation and bug fixes
25986
25987 2005-02-09  Jackson Harper  <jackson@ximian.com>
25988
25989         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
25990         their keystate otherwise things like VK_MENU get stuck "on".
25991
25992 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
25993
25994         * ListBox.cs: Fixes AddRange bug
25995         
25996 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
25997
25998         * ProgressBar.cs
25999                 - Add missing attributes
26000                 - Add missing method
26001                 
26002         * CheckedListBox.cs: Added missing attributes
26003                 - Add missing attributes
26004                 - Remove extra method
26005         
26006         * ComboBox.cs: Added missing attributes
26007         * VScrollBar.cs: Added missing attributes
26008         * ScrollBar.cs:  Added missing attributes
26009         * ListBox.cs: Fixes signature, add missing consts
26010         * LinkArea.cs:   Added missing attributes
26011         
26012
26013 2005-02-08  Peter Bartok  <pbartok@novell.com>
26014
26015         * Menu.cs: Added missing attributes
26016         * MainMenu.cs: Added missing attributes
26017         * GroupBox.cs: Added missing attributes
26018         * Label.cs: Added missing attributes
26019         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
26020         * ColorDialog.cs:
26021           - Added Instance and Options properties
26022           - Added missing attributes
26023         * Cursor.cs: Made Serializable
26024         * NotifyIcon: Added missing attributes
26025         * MenuItem.cs: Added missing attributes
26026         * TextBoxBase.cs: Implemented AppendText() and Select() methods
26027         * Panel.cs: Added Missing attributes
26028         * MonthCalendar.cs: Fixed CreateParams
26029
26030 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
26031         
26032         * LinkLabel.cs:
26033                 - Fixes signature
26034                 - Fixes issues with links
26035                 - Adds the class attributes
26036
26037 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
26038         
26039         * ComboBox.cs:
26040                 - Fixes button when no items available in dropdown
26041                 - Fixes repainting problems
26042                 - Adds the class attributes
26043                 
26044 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26045
26046         * XplatUIOSX.cs: Detect the menu bar and title bar height from
26047         the current theme.  Cache these on startup.
26048
26049 2005-02-07  Jackson Harper  <jackson@ximian.com>
26050
26051         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
26052         the scrollbar buttons when they are depressed.
26053
26054 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26055
26056         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
26057         Get the display size from the main displayid.  We currently dont
26058         support multiple display configurations.
26059
26060 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26061
26062         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
26063
26064 2005-02-07  Miguel de Icaza  <miguel@novell.com>
26065
26066         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
26067
26068 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
26069
26070         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
26071
26072 2005-02-04  Jackson Harper  <jackson@ximian.com>
26073
26074         * ThemeWin32Classic.cs: Respect the clipping rect when
26075         drawing. Only fill the intersection of clips and rects so there
26076         isn't a lot of large fills.
26077         * ScrollBar.cs: Pass the correct clipping rect to the theme
26078         engine. Remove some debug code.
26079
26080 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
26081         
26082         * DateTimePicker.cs:
26083                 - Fixed crash on DateTime.Parse, use Constructor instead
26084
26085 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
26086         
26087         * MenuItem.cs:
26088         * MenuAPI.cs:
26089                 - Owner draw support (MeasureItem and DrawItem)
26090
26091 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
26092         
26093         *  Menu.cs:
26094                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
26095                 - Fixes MenuItems.Add range
26096         * MenuItem.cs:
26097                 - MergeMenu and Clone and CloneMenu functions
26098
26099 2005-02-03  Jackson Harper  <jackson@ximian.com>
26100
26101         * ScrollBar.cs: Make abstract
26102         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
26103         is abstract.
26104
26105 2005-02-03  Jackson Harper  <jackson@ximian.com>
26106
26107         * ScrollBar.cs: First part of my scrollbar fixups. This removes
26108         all the unneeded refreshes and uses invalidates with properly
26109         computed rects.
26110
26111 2005-02-03  Peter Bartok  <pbartok@novell.com>
26112
26113         * ComponentModel.cs: Added
26114         * IDataGridEditingService.cs: Added
26115         * Timer.cs: Added missing attributes
26116         * ToolTip.cs: Added missing attributes
26117
26118 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
26119
26120         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
26121
26122 2005-02-03  Peter Bartok  <pbartok@novell.com>
26123
26124         * ListBox.cs: Added missing attributes
26125
26126 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
26127         
26128         * ListBox.cs:
26129                 - Fixes font height after font change
26130                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
26131                 
26132 2005-02-02  Peter Bartok  <pbartok@novell.com>
26133
26134         * HandleData.cs: Introduced static methods to allow class
26135           to be more self-contained and track it's own HandleData objects
26136         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
26137           HandleData to use new static methods
26138
26139 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
26140
26141         * Combobox.cs:
26142                 - Fixes default size and PreferredHeight
26143                 - Missing events
26144                 - ObjectCollection.Insert implementation
26145                 
26146         * ListControl.cs
26147                 - Fixes signature
26148         * ListBox.cs:
26149                 - Several fixes
26150                 - ObjectCollection.Insert implementation
26151                 - No selection after clean
26152                 - Small fixes
26153
26154 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
26155
26156         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
26157
26158 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
26159
26160         * Combobox.cs:
26161                 - Caches ItemHeight calculation for OwnerDrawVariable
26162                 - Handles dropdown properly
26163                 - Fixes several minor bugs
26164
26165 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
26166
26167         * ListBox.cs:
26168                 - Fixes 71946 and 71950
26169                 - Fixes changing Multicolumn on the fly
26170                 - Fixes keyboard navigation on Multicolumn listboxes
26171
26172 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26173         
26174         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
26175         crash reporter log.
26176
26177 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26178
26179         * XplatUIOSX.cs: Allow applications to actually exit.
26180
26181 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26182
26183         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
26184         their parent at creation time rather than lazily later.  Fixes a major
26185         regression we were experiencing.
26186
26187 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
26188
26189         * ThemeWin32Classic.cs: more date time picker painting fixes
26190         * DateTimePicker.cs: more monthcalendar drop down fixes
26191         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
26192
26193 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
26194
26195         * ScrollBar.cs:
26196                 - When moving the thumb going outside the control should stop the moving
26197                 - Adds the firing of missing events
26198                 - Fixes no button show if Size is not specified
26199                 - End / Home keys for keyboard navigation
26200
26201 2005-01-30  Peter Bartok  <pbartok@novell.com>
26202
26203         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
26204           sanity check to prevent theoretical loop
26205         * XplatUIWin32.cs (SetVisible): Removed debug output
26206         * XplatUIX11.cs (SystrayChange): Added sanity check
26207         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
26208         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
26209           behaviour, valid until the X11 client window rewrite is done
26210         * TextBox.cs (ctor): Setting proper default foreground and background
26211           colors
26212
26213 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
26214
26215         * Theme: Added DrawDateTimePicker to interface
26216         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
26217         * DateTimePicker.cs: Created (still needs keys and painting code)
26218         * DateTimePickerFormat.cs: added
26219         * MonthCalendar.cs: fixed CreateParams for popup window mode
26220           
26221 2005-01-29  Peter Bartok  <pbartok@novell.com>
26222
26223         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
26224           this should also the calculations for ligher/darker
26225         * Theme.cs: Fixed defaults for ScrollBar widths/heights
26226
26227 2005-01-29  Peter Bartok  <pbartok@novell.com>
26228
26229         * ArrangeDirection.cs: Added
26230         * ArrangeStartingPositon.cs: Added
26231         * SystemInformation.cs: Implemented
26232         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
26233           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
26234           used by SystemInformation class
26235         * X11Strucs.cs: Added XSizeHints structure
26236         * MenuAPI.cs:
26237           - Fixed CreateParams to make sure the menu window is always visible
26238           - TrackPopupMenu: Added check to make sure we don't draw the
26239             menu offscreen
26240
26241 2005-01-29  Peter Bartok  <pbartok@novell.com>
26242
26243         * HandleData.cs: Added method for altering invalid area
26244         * TextBoxBase.cs: Implemented TextLength
26245
26246 2005-01-28  Peter Bartok  <pbartok@novell.com>
26247
26248         * XplatUIX11.cs: Improvement over last patch, not sending
26249           the WM_PAINT directly anymore, instead we scroll any pending
26250           exposed areas and let the system pick out the WM_PAINT later
26251
26252 2005-01-28  Peter Bartok  <pbartok@novell.com>
26253
26254         * SWF.csproj: Deleted, no longer used. Instead,
26255           Managed.Windows.Forms/SWF.csproj should be used
26256         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
26257           directly, to avoid a potential race condition with the next
26258           scroll
26259
26260 2005-01-28  Peter Bartok  <pbartok@novell.com>
26261
26262         * XplatUI.cs: Made class internal
26263
26264 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
26265
26266         * CheckedListBox.cs:
26267                 - Draw focus
26268                 - Fixed Drawing
26269                 - Missing methods and events
26270
26271 2005-01-27  Peter Bartok  <pbartok@novell.com>
26272
26273         * Application.cs (Run): Don't use form if we don't have one
26274
26275 2005-01-27  Peter Bartok  <pbartok@novell.com>
26276
26277         * TextBoxBase.cs (get_Lines): Fixed index off by one error
26278
26279 2005-01-27  Peter Bartok  <pbartok@novell.com>
26280
26281         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
26282         * GridItem.cs: Added; Patch by Jonathan S. Chambers
26283         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
26284         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
26285         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
26286         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
26287         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26288         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
26289         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26290         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26291         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26292         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
26293
26294 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
26295
26296         * Combobox.cs:
26297                 - Draw focus on Simple Combobox
26298                 - Fixes drawing issues
26299                 - fixes 71834
26300
26301 2005-01-27  Peter Bartok  <pbartok@novell.com>
26302
26303         * Form.cs:
26304           - Place window in default location, instead of hardcoded 0/0
26305           - Send initial LocationChanged event
26306         * Control.cs:
26307           - UpdateBounds after creation to find out where the WM placed us
26308           - Make sure that if the ParentForm changes location the Form
26309             is notified
26310         * XplatUIX11.cs: XGetGeometry will not return the coords relative
26311             to the root, but to whatever the WM placed around us.
26312             Translate to root coordinates before returning toplevel
26313             coordinates
26314         * XplatUIWin32.cs: Removed debug output
26315         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
26316           flag to GetWindowPos, to allow translation of coordinates on X11
26317
26318 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
26319
26320         * ListBox.cs: connect LostFocus Event
26321
26322 2005-01-27  Peter Bartok  <pbartok@novell.com>
26323
26324         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
26325           XplatUIX11.cs: Extended the Systray API
26326         * Form.cs: Removed debug output
26327         * Application.cs: Fixed focus assignment, always need to call
26328           XplatUI.Activate() since Form.Activate() has rules that may
26329           prevent activation
26330         * NotifyIcon.cs: Should be complete now
26331         * ToolTip.cs: Worked around possible timer bug
26332
26333 2005-01-27  Jackson Harper  <jackson@ximian.com>
26334
26335         * TabControl.cs:
26336         - Only invalidate the effected tabs when the
26337         selected index changes. This reduces drawing and gets rid of some
26338         flicker.
26339         - Only refresh if the tabs need to be shifted, otherwise only
26340         invalidate the slider button.
26341         - On windows the tabs are not filled to right if the slider is
26342         visible.
26343         
26344 2005-01-27  Jackson Harper  <jackson@ximian.com>
26345
26346         * TabControl.cs: Only refresh on mouseup if we are showing the
26347         slider. Also only invalidate the button whose state has changed.
26348
26349 2005-01-26  Peter Bartok  <pbartok@novell.com>
26350
26351         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
26352         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
26353           and SystrayRemove() methods
26354         * XplatUIOSX.cs: Stubbed Systray methods
26355         * XplatUIX11.cs:
26356           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
26357             methods
26358           - Fixed broken XChangeProperty calls (marshalling messed up things)
26359         * X11Structs.cs: Added enums and structs required for Size hinting
26360         * NotifyIcon.cs: Added & implemented
26361
26362 2005-01-26  Jackson Harper  <jackson@ximian.com>
26363
26364         * TabControl.cs: Space vertically layed out tabs properly.
26365
26366 2005-01-26  Peter Bartok  <pbartok@novell.com>
26367
26368         * Form.cs (CreateClientParams): Always set the location to 0,0
26369           since we're a child window.
26370
26371         * Control.cs (SetVisibleCore): Always explicitly setting the location
26372           of a toplevel window, apparently X11 doesn't like to move windows
26373           while they're not mapped.
26374
26375 2005-01-26  Jackson Harper  <jackson@ximian.com>
26376
26377         * TabControl.cs: Implement FillToRight size mode with vertically
26378         rendered tabs.
26379
26380 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26381
26382         * ControlPaint.cs, ThemeWin32Classic.cs
26383                 - Fixes DrawFocusRectangle
26384
26385 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26386
26387         * MenuAPI.cs:
26388                 - MenuBar tracking only starts when item is first clicked
26389                 - Fixes menu hidding for multiple subitems
26390                 - Unselect item in MenuBar when item Executed
26391                 - Fixes bug 71495
26392
26393 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
26394
26395         * ListControl.cs:
26396                 - IsInputKey for ListBox
26397         * ListBox.cs:
26398                 - Focus item
26399                 - Shift and Control item selection
26400                 - Implement SelectionMode.MultiExtended
26401                 - Fixes RightToLeft
26402         * ComboBox.cs:
26403                 - IsInputKey implemented
26404                 - Do not generate OnTextChangedEdit on internal txt changes
26405                 
26406 2005-01-23  Peter Bartok  <pbartok@novell.com>
26407
26408         * AccessibleObject.cs: Partially implemented Select()
26409         * MonthCalendar.cs: Added missing attributes and events
26410         * Form.cs: Fixed CreateParams behaviour, now controls derived from
26411           form can properly override CreateParams.
26412         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
26413           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
26414           Control performs Invalidate & Update
26415         * NativeWindow (CreateHandle): Added special handling for Form
26416           and Form.FormParent classes to allow overriding of From.CreateParams
26417         * Control.cs:
26418           - ControlNativeWindow: Renamed 'control' variable to more intuitive
26419             name 'owner'
26420           - ControlNativeWindow: Added Owner property
26421           - Removed usage of Refresh() on property changes, changed into
26422             Invalidate(), we need to wait until the queue is processed for
26423             updates, direct calls might cause problems if not all vars for
26424             Paint are initialized
26425           - Added call to UpdateStyles() when creating the window, to set any
26426             styles that CreateWindow might have ignored.
26427           - Added support for Form CreateParent overrides to UpdateStyles()
26428         * MessageBox.cs: Removed no longer needed FormParent override stuff,
26429           CreateParams are now properly overridable
26430         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
26431           CreateParams are now properly overridable
26432
26433 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
26434
26435         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
26436         OnTextBoxChanged.
26437
26438         Capture LostFocus and OnTextBoxChanged.  The later introduces a
26439         recursive invocation that I have not figured out yet.
26440
26441         Reset the timer when not using (it was accumulating).
26442
26443
26444         (OnTextBoxChanged): Set UserEdit to true here to track whether the
26445         user has made changes that require validation.
26446
26447         Reset changing to avoid loops.
26448
26449 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
26450
26451         * NumericUpDown.cs: Display value at startup.
26452
26453         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
26454         ValidateEditText.
26455
26456         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
26457         filled in.  Added some basic parsing of text.
26458
26459         Still missing the OnXXX method overrides, and figuring out the
26460         events that must be emitted.
26461
26462         * UpDownBase.cs: Handle UserEdit on the Text property.
26463         
26464 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
26465
26466         * ComboBox.cs:
26467           - Fixes IntegralHeight
26468           - ToString method
26469
26470 2005-01-21  Jackson Harper  <jackson@ximian.com>
26471
26472         * TabControl.cs: Set the SelectedIndex property when SelectedTab
26473         is set so that the page visibility is updated and the tabs are
26474         sized correctly.
26475
26476 2005-01-21  Jackson Harper  <jackson@ximian.com>
26477
26478         * TabControl.cs: Use cliping rectangle for blitting. Give the
26479         theme the clipping rect so we can do clipping while
26480         drawing. Remove some debug code.
26481
26482 2005-01-21  Jackson Harper  <jackson@ximian.com>
26483
26484         * TabPage.cs: Add a new method so tab pages can force the tab
26485         control to recalculate the tab page sizes.
26486         * TabControl.cs: UpdateOwner needs to make the tab control recalc
26487         sizes.
26488
26489 2005-01-20  Jackson Harper  <jackson@ximian.com>
26490
26491         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
26492
26493 2005-01-20  Jackson Harper  <jackson@ximian.com>
26494
26495         * TreeView.cs: Set the bounds for nodes properly. They were
26496         getting screwed up when checkboxes were not enabled, but images
26497         were.
26498
26499 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
26500
26501         * ListBox.cs:
26502                 - Owner draw support
26503                 - Fixes
26504                 
26505 2005-01-20  Jackson Harper  <jackson@ximian.com>
26506
26507         * XplatUIStructs.cs: More misc keys
26508         * X11Keyboard.cs: Ignore some control keys.
26509
26510 2005-01-20  Jackson Harper  <jackson@ximian.com>
26511
26512         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
26513         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
26514
26515 2005-01-19  Peter Bartok  <pbartok@novell.com>
26516
26517         * Control.cs: Un-selecting the control when it is loosing focus
26518
26519 2005-01-19  Jackson Harper  <jackson@ximian.com>
26520
26521         * TreeView.cs: Hook up to the text controls leave event so we can
26522         end editing when the users clicks outside the text box.
26523         
26524 2005-01-19  Jackson Harper  <jackson@ximian.com>
26525
26526         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
26527         get set in the conversion array.
26528
26529 2005-01-19  Peter Bartok  <pbartok@novell.com>
26530
26531         * Application.cs (ModalRun): Added a call to CreateControl to ensure
26532           focus is properly set
26533         * Button.cs:
26534           - Added missing attributes
26535           - removed styles, those are already set in the base class
26536         * ButtonBase.cs:
26537           - Added missing attributes
26538           - Added clip window styles
26539         * CheckBox.cs: Added missing attributes
26540         * CommonDialog.cs:
26541           - FormParentWindow.CreateParams: Added required clip styles
26542         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
26543           also filters modifier keys
26544         * MessageBox.cs:
26545           - Added assignment of Accept and Cancel button to enable Enter
26546             and Esc keys in MessageBox dialogs
26547           - FormParentWindow.CreateParams: Added required clip styles
26548         * RadioButton.cs: Added missing attributes
26549         * TextControl.cs: No longer draws selection if control does not
26550           have focus
26551         * TextBoxBase.cs:
26552           - Now draws simple rectangle around test area to make it obvious
26553             there's a control. This is a hack until we properly support borders
26554           - A few simple fixes to support selections better, now erases selected
26555             text when typing, and resets selection when using movement keys
26556
26557 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
26558
26559         * UpDownBase.cs: Added some new properties.
26560
26561         * DomainUpDown.cs: Implement a lot to get my test working.
26562
26563 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26564
26565         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
26566
26567 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26568
26569         * OSXStructs (WindowAttributes): Fixed csc complaints
26570
26571 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26572
26573         * XplayUIOSX.cs:
26574           OSXStructs.cs: Initial refactor to move enums and consts into
26575           OSXStructs and use them in the driver for greater readability.
26576
26577 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26578
26579         * XplatUIOSX.cs: Initial support for Standard Cursors.
26580         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
26581
26582 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
26583
26584         * ComboBox.cs: ability to change style when the ctrl is already
26585         created, missing methods and events, bug fixes, signature fixes
26586
26587 2005-01-19  Peter Bartok  <pbartok@novell.com>
26588
26589         * Cursors.cs (ctor): Added ctor to fix signature
26590
26591 2005-01-18  Peter Bartok  <pbartok@novell.com>
26592
26593         * Button.cs: Implemented DoubleClick event
26594         * ButtonBase.cs:
26595           - Fixed keyboard handling to behave like MS, where the press of
26596             Spacebar is equivalent to a mousedown, and the key release is
26597             equivalent to mouseup. Now a spacebar push will give the same
26598             visual feedback like a mouse click.
26599           - Added missing attributes
26600           - Added ImeModeChanged event
26601           - Added support for generating DoubleClick event for derived classes
26602         * CheckBox.cs:
26603           - Implemented DoubleClick event
26604           - Added missing attributes
26605         * CommonDialog.cs: Added missing attribute
26606         * ContextMenu.cs: Added missing attributes
26607         * RadioButton.cs:
26608           - AutoChecked buttons do not allow to be unselected when clicked
26609             (otherwise we might end up with no selected buttons in a group)
26610           - Added missing attributes
26611           - Implemented DoubleClickEvent
26612         * ThreadExceptionDialog.cs: Enabled TextBox code
26613
26614 2005-01-18  Peter Bartok  <pbartok@novell.com>
26615
26616         * Form.cs: Removed debug output
26617         * Button.cs: Added support for DoubleClick method
26618
26619 2005-01-18  Peter Bartok  <pbartok@novell.com>
26620
26621         * Form.cs:
26622           - Added method to parent window that allows triggering size
26623             calculations when a menu is added/removed
26624           - set_Menu: Cleaned up mess from early days of Form and Control,
26625             now properly triggers a recalc when a menu is added/removed
26626           - Added case to select form itself as focused form if no child
26627             controls exist
26628           - Added PerformLayout call when showing dialog, to ensure properly
26629             placed controls
26630         * Control.cs:
26631           - Select(): Made internal so Form can access it
26632           - Focus(): Only call Xplat layer if required (avoids loop), and sets
26633             status
26634         * Application.cs (Run): Removed hack and calls PerformLayout instead
26635           to trigger calculation when Form becomes visible
26636
26637 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
26638
26639         * ComboBox.cs: fixes for ownerdraw
26640
26641 2005-01-18  Peter Bartok  <pbartok@novell.com>
26642
26643         * TextControl.cs:
26644           - Sentinel is no longer static, each Document gets it's own, this
26645             avoids locking or alternatively overwrite problems when more
26646             than one text control is used simultaneously.
26647           - Switched to use Hilight and HilightText brushes for text selection
26648
26649         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
26650
26651 2005-01-18  Peter Bartok  <pbartok@novell.com>
26652
26653         * Control.cs:
26654           - Hooked up the following events:
26655                 o ControlAdded
26656                 o ControlRemoved
26657                 o HandleDestroyed
26658                 o ImeModeChanged
26659                 o ParentChanged
26660                 o TabStopChanged
26661                 o Invalidated
26662                 o SystemColorsChanged
26663                 o ParentFontChanged
26664                 o Move
26665           - Removed debug output
26666           - Added a call to the current theme's ResetDefaults when a color change
26667             is detected
26668         * Form.cs: Now setting the proper ImeMode
26669         * Theme.cs: Defined a method to force recreation of cached resources
26670           and rereading of system defaults (ResetDefaults())
26671         * ThemeWin32Classic.cs: Added ResetDefaults() stub
26672
26673 2005-01-17  Peter Bartok  <pbartok@novell.com>
26674
26675         * Control.cs: Added missing attributes
26676
26677 2005-01-17  Jackson Harper  <jackson@ximian.com>
26678
26679         * TreeNode.cs: Implement editing. Add missing properties selected
26680         and visible.
26681         * TreeView.cs: Implement node editing. Also some fixes to use
26682         Invalidate (invalid area) instead of Refresh when selecting.
26683
26684 2005-01-17  Peter Bartok  <pbartok@novell.com>
26685
26686         * Control.cs:
26687           - Implemented InvokeGotFocus() method
26688           - Implemented InvokeLostFocus() method
26689           - Implemented InvokePaint() method
26690           - Implemented InvokePaintBackground() method
26691           - Implemented InvokeClick() method
26692           - Implemented FindForm() method
26693           - Implemented RectangleToClient() method
26694           - Implemented ClientToRectangle() method
26695           - Implemented ResetBackColor() method
26696           - Implemented ResetCursor() method
26697           - Implemented ResetFont() method
26698           - Implemented ResteForeColor() method
26699           - Implemented ResetImeMode() method
26700           - Implemented ResetLeftToRight() method
26701           - Implemented ResetText() method
26702           - Implemented Scale() methods
26703           - Implemented ScaleCore() method
26704           - Implemented Update() method
26705           - Removed unused variables
26706           - Stubbed AccessibilityNotifyClients and
26707             ControlAccessibleObject.NotifyClients() methods (dunno what to do
26708             with those yet)
26709           - Now setting proper default for RightToLeft property
26710           - Fixed bug in SetClientSizeCore that would cause windows to get
26711             really big
26712           - Now sending Click/DoubleClick events
26713           - Now selecting controls when left mouse button is clicked on
26714             selectable control
26715         * AccessibleEvents.cs: Added
26716         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
26717         * XplatUIOSX.cs: Stubbed UpdateWindow() method
26718         * XplatUIWin32.cs: Implemented UpdateWindow() method
26719         * XplatUIX11.cs: Implemented UpdateWindow() method
26720         * Form.cs: Removed stray semicolon causing CS0162 warning
26721         * ThemeWin32Classic.cs: Fixed unused variable warnings
26722         * ScrollableControl.cs: Now calls base method for ScaleCore
26723         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
26724           style to avoid interference with internal click handler (which is
26725           different than standard Control click handling)
26726         * RadioButton.cs:
26727           - Now unchecks all sibling radio buttons when control is
26728             selected (Fixes #68756)
26729           - Removed internal tabstop variable, using the one inherited from
26730             Control
26731
26732 2005-01-17  Jackson Harper  <jackson@ximian.com>
26733
26734         * NavigateEventArgs.cs: Fix base type.
26735         * LinkLabel.cs: Sig fix
26736         
26737 2005-01-17  Jackson Harper  <jackson@ximian.com>
26738
26739         * TreeView.cs: Only invalidate the effected nodes bounds when
26740         selecting nodes.
26741
26742 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26743
26744         * XplatUIWin32.cs: fixes Win32 marshaling
26745         * XplatUIX11.cs: fixes method signature
26746
26747 2005-01-17  Peter Bartok  <pbartok@novell.com>
26748
26749         * XplatUIX11.cs: Clean up resources when we no longer need them
26750
26751 2005-01-17  Peter Bartok  <pbartok@novell.com>
26752
26753         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
26754           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
26755           and DestroyCursor() methods.
26756         * Cursor.cs: Partially implemented, now supports standard cursors;
26757           still contains some debug code
26758         * Cursors.cs: Implemented class
26759         * Control.cs:
26760           - WndProc(): Added handling of WM_SETCURSOR message, setting the
26761             appropriate cursor
26762           - Implemented Cursor property
26763           - Replaced break; with return; more straightforwar and possibly
26764             faster
26765           - Now properly setting the result for WM_HELP
26766         * X11Structs.cs: Added CursorFontShape enum
26767         * XplatUIStructs.cs:
26768           - Added StdCursor enum (to support DefineStdCursor() method)
26769           - Added HitTest enum (to support sending WM_SETCURSOR message)
26770         * XplatUIX11.cs:
26771           - Now sends the WM_SETCURSOR message
26772           - Implemented new cursor methods
26773         * XplatUIOSX.cs: Stubbed new cursor methods
26774         * XplatUIWin32.cs:
26775           - Implemented new cursor methods
26776           - Added GetSystemMetrics function and associated enumeration
26777
26778 2005-01-15  Peter Bartok  <pbartok@novell.com>
26779
26780         * Control.cs:
26781           - WndProc(): Now handles EnableNotifyMessage
26782           - SelectNextControl(): Fixed bug where if no child or sibling
26783             controls exist we looped endlessly
26784
26785 2005-01-14  Jackson Harper  <jackson@ximian.com>
26786
26787         * TreeView.cs: Recalculate the tab pages when a new one is added
26788         so that the proper bounding rects are created.
26789
26790 2005-01-14  Jackson Harper  <jackson@ximian.com>
26791
26792         * TreeView.cs: Draw a gray box instead of a grip in the lower
26793         right hand corner when there are both horizontal and vertical
26794         scroll bars.
26795
26796 2005-01-14  Jackson Harper  <jackson@ximian.com>
26797
26798         * Control.cs: When erasing backgrounds use FromHwnd instead of
26799         FromHdc when there is a NULL wparam. This occurs on the X driver.
26800         * XplatUIX11.cs: Set the wparam to NULL.
26801
26802 2005-01-13  Jackson Harper  <jackson@ximian.com>
26803
26804         * PictureBox.cs: Implement missing methods (except ToString, need
26805         to test that on windows) and events. When visibility is changed we
26806         need to redraw the image because the buffers are killed. When size
26807         is changed refresh if the sizemode needs it.
26808
26809 2005-01-13  Peter Bartok  <pbartok@novell.com>
26810
26811         * Control.cs (SelectNextControl): Was using wrong method to select
26812           a control
26813
26814 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26815
26816         * ComboBox.cs: fixes dropstyle
26817
26818 2005-01-13  Peter Bartok  <pbartok@novell.com>
26819
26820         * Form.cs:
26821           - Implemented Select() override
26822           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
26823           - Now sets keyboard focus on startup
26824         * Control.cs (SelectNextControl): Now properly handles directed=true
26825         * TextBoxBase.cs:
26826           - WndProc: Now passes tab key on to base if AcceptTabChar=false
26827           - Added (really bad) focus rectangle (mostly for testing)
26828         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
26829           to enforce redraw on focus changes
26830         * ContainerControl.cs:
26831           - Fixed detection of Shift-Tab key presses
26832           - Fixed traversal with arrow keys
26833         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
26834           gonna keep this or if it's complete yet
26835         
26836 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26837
26838         * ComboBox.cs: missing properties, fixes
26839
26840 2005-01-13  Peter Bartok  <pbartok@novell.com>
26841
26842         * Panel.cs (ctor): Setting Selectable window style to off
26843         * Splitter.cs (ctor): Setting Selectable window style to off
26844         * GroupBox.cs (ctor): Setting Selectable window style to off
26845         * Label.cs (ctor): Setting Selectable window style to off
26846
26847 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
26848
26849         * UpDownBase.cs (InitTimer): If the timer has been already
26850         created, enable it.
26851
26852         Use a TextBox instead of a Label.
26853
26854 2005-01-12  Jackson Harper  <jackson@ximian.com>
26855
26856         * TreeView.cs: Refresh the tree after sorting the nodes. Always
26857         draw the connecting node lines (when ShowLines is true).
26858         * TreeNode.cs: The nodes index can now be updated. This is used
26859         when a node collection is sorted.
26860         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
26861         insert or an existing unsorted node collection can be sorted.
26862         
26863 2005-01-12  Peter Bartok  <pbartok@novell.com>
26864
26865         * ContainerControl.cs: Implemented ProcessDialogKeys()
26866
26867 2005-01-12  Peter Bartok  <pbartok@novell.com>
26868
26869         * Control.cs:
26870           - Implemented SelectNextControl() method
26871           - Several focus related bug fixes
26872           - Fixed Docking calculations to match MS documentation and
26873             behaviour
26874
26875 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
26876
26877         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
26878         bug fixes
26879
26880 2005-01-12  Peter Bartok  <pbartok@novell.com>
26881
26882         * Control.cs:
26883           - Fixed broken Contains() method
26884           - Implemented GetNextControl() method. Finally. This is the pre-
26885             requisite for focus handling.
26886
26887 2005-01-12  Peter Bartok  <pbartok@novell.com>
26888
26889         * OSXStrucs.cs: Added
26890
26891 2005-01-12  Peter Bartok  <pbartok@novell.com>
26892
26893         * XplatUIWin32.cs:
26894           - Removed PeekMessageFlags
26895           - Implemented SetWindowStyle() method
26896         * XplatUIStructs.cs: Added PeekMessageFlags
26897         * X11Structs: Added missing border_width field to XWindowChanges struct
26898         * XplatUIX11.cs:
26899           - PeekMessage: Now throws exception if flags which are not yet
26900             supported are passed
26901           - Implemented SetWindowStyle() method
26902           - Fixed SetZOrder to handle AfterHwnd properly
26903         * XplatUI.cs: Added SetWindowStyle() method
26904         * XplatUIDriver.cs: Added SetWindowStyle() abstract
26905         * Control.cs:
26906           - Implemented UpdateStyles() method
26907           - Implemented UpdateZOrder() method
26908         * XplatUIOSX.cs: Added SetWindowStyle() stub
26909
26910 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
26911
26912         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
26913         button mouse).
26914
26915
26916 2005-01-11  Jackson Harper  <jackson@ximian.com>
26917
26918         * TreeView.cs: Still need to draw lines to siblings even if out of
26919         the current node is out of the clip.
26920
26921 2005-01-11  Jackson Harper  <jackson@ximian.com>
26922
26923         * TreeView.cs: When setting the hbar/vbar/grip position use
26924         SetBounds so that perform layout is only called once. Also suspend
26925         and resume layout so layout is only done once for all controls.
26926         - Removed some debug fluff
26927         * SizeGrip.cs: Call base implmentation in overriding methods.
26928         - When visibility is changed the drawing buffers are killed so we
26929         need to redraw.
26930
26931 2005-01-11  Jackson Harper  <jackson@ximian.com>
26932
26933         * TreeView.cs: Calculate the open node count while drawing. This
26934         saves us an entire tree traversal for every paint operation. Use
26935         a member var for the open node count so less vars are passed around.
26936
26937 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
26938
26939         * MonthCalendar.cs:
26940         - fixed selection to use mousemove, not mouse polling on timer
26941         * ThemeWin32Classic.cs
26942         - removed redundant unused variable "no_more_content"
26943         
26944 2005-01-11  Peter Bartok  <pbartok@novell.com>
26945
26946         * XplatUIX11.cs (DoEvents): Needs to return when no more events
26947           are pending, so it now calls PeekMessage instead of GetMessage;
26948           implemented a incomplete version of PeekMessage
26949         
26950 2005-01-11  Peter Bartok  <pbartok@novell.com>
26951
26952         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
26953           I18n issues
26954         * TextBoxBase.cs: Added sending of TextChanged event
26955
26956 2005-01-10  Jackson Harper  <jackson@ximian.com>
26957
26958         * TreeView.cs: Try not to draw outside the clipping rectangle on
26959         each node element.
26960
26961 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
26962
26963         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
26964
26965 2005-01-10  Jackson Harper  <jackson@ximian.com>
26966
26967         * TreeView.cs:
26968         - Implement fast scrolling. Now only the newly
26969         exposed nodes are drawn and the old image is moved using the
26970         XplatUI::ScrollWindow method.
26971         - Factor in height of nodes when calculating whether or not the
26972         node is in the clipping rect.
26973
26974 2005-01-10  Jackson Harper  <jackson@ximian.com>
26975
26976         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
26977
26978 2005-01-10  Peter Bartok  <pbartok@novell.com>
26979
26980         * Application.cs: Added temporary hack to resolve all our resize
26981           required issues on startup. This will get fixed properly at
26982           some point in the future
26983
26984 2005-01-10  Jackson Harper  <jackson@ximian.com>
26985
26986         * SizeGrip.cs: New internal class that is used as a sizing
26987         grip control...hence the name.
26988
26989 2005-01-10  Peter Bartok  <pbartok@novell.com>
26990
26991         * Control.cs: Implemented proper TabIndex handling, now assigning
26992           a tabindex when a control is added to a container
26993         * GroupBox.cs (ctor): Now sets the Container style bit, required
26994           for Control.GetNextControl()
26995
26996 2005-01-09  Jackson Harper  <jackson@ximian.com>
26997
26998         * TextBoxBase.cs: Clear window when scrolling (fixes build).
26999
27000 2005-01-09  Peter Bartok <pbartok@novell.com>
27001
27002         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
27003           XplatUIX11.cs: Added ability to control ScrollWindow expose and
27004           an overload for ScrollWindow to allow only scrolling a rectangle
27005
27006 2005-01-09  Peter Bartok <pbartok@novell.com>
27007
27008         * Form.cs:
27009           - Implemented SetDesktopBounds method
27010           - Implemented SetDesktopLocation method
27011
27012 2005-01-08  Jackson Harper  <jackson@ximian.com>
27013
27014         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
27015         the node count has changed, this removes to VScroll::Refresh calls
27016         when drawing.
27017
27018 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
27019
27020         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
27021
27022 2005-01-07  Jackson Harper  <jackson@ximian.com>
27023
27024         * TreeNode.cs: Just update the single node when it is
27025         checked. Don't refresh after toggling, the Expand/Collapse already
27026         handles this.
27027         * TreeView.cs: Respect clipping a little more when drawing. Try
27028         not to redraw things that don't need to be redrawn. Just hide the
27029         scrollbars when they are no longer needed instead of removing
27030         them, so they don't have to be created again and again.
27031         
27032 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
27033
27034         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
27035         coordinates to window space to place the caret properly, FIXED.
27036         Implement GetWindowState & SetWindowState
27037
27038 2005-01-06  Peter Bartok <pbartok@novell.com>
27039
27040         * Form.cs:
27041           - Implemented ClientSize property
27042           - Implemented DesktopBounds property
27043           - Implemented DesktopLocation property
27044           - Implemented IsRestrictedWindow property
27045           - Implemented Size property
27046           - Implemented TopLevel property
27047           - Implemented FormWindowState property
27048         * Control.cs:
27049           - Implemented GetTopLevel() method
27050           - Implemented SetTopLevel() method
27051         * X11Structs.cs (Atom):
27052           - Added AnyPropertyType definition
27053           - Added MapState definiton and updated XWindowAttribute struct
27054         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
27055         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
27056         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
27057         * XplatUIWin32.cs:
27058           - Implemented GetWindowState() and SetWindowState() methods
27059           - Fixed Win32GetWindowLong return type
27060         * XplatUIX11.cs:
27061           - Introduced central function for sending NET_WM messages
27062           - Implemented GetWindowState() and SetWindowState() methods
27063         * TextBoxBase.cs (set_Lines):
27064           - Now uses Foreground color for text added via Text property (Duh!)
27065           - Added code to remember programmatically requested size (fixes
27066             behaviour when Multiline is set after Size)
27067           - Added AutoSize logic
27068
27069 2005-01-06  Jackson Harper  <jackson@ximian.com>
27070
27071         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
27072
27073 2005-01-06  Jackson Harper  <jackson@ximian.com>
27074
27075         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
27076         set to less then 0.
27077
27078 2005-01-06  Jackson Harper  <jackson@ximian.com>
27079
27080         * ScrollableControl.cs: Lazy init the scrollbars.
27081         
27082 2005-01-06  Jackson Harper  <jackson@ximian.com>
27083
27084         * Theme.cs: Speed up getting pens and solid brushes, by using
27085         their ARGB as a hash instead of tostring and not calling Contains.
27086
27087 2005-01-06  Peter Bartok <pbartok@novell.com>
27088
27089         * Form.cs:
27090           - Implemented OnActivated and OnDeactivate event trigger
27091           - Implemented Activate() method
27092           - Fixed ShowDialog() to activate the form that was active before
27093             the dialog was shown
27094         * XplatUIX11.cs:
27095           - Added global active_window var that tracks the currently active
27096             X11 window
27097           - Now always grabs Property changes from the root window to always
27098             catch changes on the active window property
27099           - Added code to PropertyNotify handler to send Active/Inactive
27100             messages when state changes. This puts X11 and Win32 en par on
27101             WM_ACTIVATE notifications (except for double notifications when
27102             the user clicks away from our modal window to another one of our
27103             windows)
27104
27105 2005-01-05  Jackson Harper  <jackson@ximian.com>
27106
27107         * ImageList.cs: Implment ctor
27108
27109 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27110
27111         * XplatUIOSX.cs: Implement Activate/SetTopmost
27112
27113 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27114
27115         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
27116
27117 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27118
27119         * XplatUIOSX.cs: Implement GetActive/SetFocus.
27120
27121 2005-01-05  Peter Bartok <pbartok@novell.com>
27122
27123         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
27124           XplatUIOSX.cs: Added GetActive method to return the currently
27125           active window for the application (or null, if none is active)
27126         * Form.cs:
27127           - Implemented ActiveForm
27128           - Commented out owner assignment for modal dialogs (causes problems
27129             on Win32, since the owner will be disabled)
27130           - Reworked some Active/Focus handling (still incomplete)
27131         * CommonDialog.cs: Commented out owner assignment for modal dialogs
27132           (causes problems on Win32, since the owner will be disabled)
27133         * IWin32Window: Added ComVisible attribute
27134
27135 2005-01-05  Peter Bartok <pbartok@novell.com>
27136
27137         * ToolTip.cs (WndProc): Enable setting focus now that we have the
27138           required XplatUI functions.
27139
27140 2005-01-05  Peter Bartok <pbartok@novell.com>
27141
27142         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
27143           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
27144           to implement focus and activation handling; still incomplete and
27145           with debug output
27146
27147 2005-01-04  Peter Bartok <pbartok@novell.com>
27148
27149         * TextBoxBase.cs: Changed access level for Document property to
27150           match switch to internal for TextControl
27151
27152 2005-01-04  Peter Bartok <pbartok@novell.com>
27153
27154         * AccessibleObject: Added ComVisible attribute
27155
27156 2005-01-04  Jackson Harper  <jackson@ximian.com>
27157
27158         * X11Keyboard.cs: Remove unneeded var.
27159
27160 2005-01-04  Jackson Harper  <jackson@ximian.com>
27161
27162         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
27163         but PAINT.
27164         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
27165         ClientMessage. This makes apps exit cleanly (more often).
27166         
27167 2005-01-04  Jackson Harper  <jackson@ximian.com>
27168
27169         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
27170         handling focus, return correct colors and fonts,
27171         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
27172         handle selection, horizontal scrolling, and mouse interaction.
27173
27174 2005-01-04  Peter Bartok <pbartok@novell.com>
27175
27176         * ICommandExecutor.cs: Added
27177         * IDataGridColumnStyleEditingNotificationService.cs: Added
27178         * IFeatureSupport.cs: Added
27179         * IFileReaderService.cs: Added
27180         * IDataObject.cs: Added ComVisible attribute
27181         * AmbientProperties.cs: Added
27182         * BaseCollection.cs: Added missing attributes
27183         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
27184         * BaseCollection.cs: Added missing attributes
27185         * Binding.cs: Added TypeConverter attribute
27186         * BindingContext.cs: Added DefaultEvent attribute
27187         * BindingsCollection.cs: Added DefaultEvent attribute
27188         * Button.cs: Added DefaultValue attribute
27189         * DragEventArgs.cs: Added ComVisible attribute
27190         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
27191         * KeyEventArgs.cs: Added ComVisible attribute
27192         * KeyPressEventArgs.cs: Added ComVisible attribute
27193         * MouseEventArgs.cs: Added ComVisible attribute
27194         * NavigateEventArgs.cs: Added
27195         * NavigateEventHandler.cs: Added
27196         * FeatureSupport.cs: Added
27197         * OSFeature.cs: Added
27198         * Theme.cs: Added abstract Version property to support OSFeature
27199         * ThemeWin32Classic.cs: Added Version property to
27200           support OSFeature.Themes
27201         * ProgressBar.cs: Removed OnPaintBackground override, not required since
27202           the proper styles to avoid background drawing are set, also doesn't
27203           match MS signature
27204         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
27205         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
27206         * ScrollEventArgs.cs: Added ComVisible attribute
27207         * SplitterEventArgs.cs: Added ComVisible attribute
27208         * AccessibleSelection.cs: Added Flags attribute
27209         * Appearance.cs: Added ComVisible attribute
27210         * Border3DSide.cs: Added ComVisible attribute
27211         * Border3DStyle.cs: Added ComVisible attribute
27212         * BorderStyle.cs: Added ComVisible attribute
27213         * DragAction.cs: Added ComVisible attribute
27214         * ErrorBlinkStyle.cs: Added
27215         * ScrollEventType.cs: Added ComVisible attribute
27216         * AnchorStyles.cs: Added Editor attribute
27217         * DockStyle.cs: Added Editor attribute
27218         * HorizontalAlignment.cs: Added ComVisible attribute
27219         * HelpEventArgs.cs: Added ComVisible attribute
27220         * PaintEventArgs.cs: Added IDisposable
27221
27222 2005-01-04  Peter Bartok <pbartok@novell.com>
27223
27224         * TextControl.cs: Switched Line, LineTag and Document classes to
27225           internal
27226
27227 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
27228
27229         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
27230         Simple mode, fixes, IntegralHeight, etc.
27231
27232 2005-01-04  Peter Bartok <pbartok@novell.com>
27233
27234         * TextBoxBase.cs: Using proper font variable now
27235
27236 2005-01-04  Peter Bartok <pbartok@novell.com>
27237
27238         * Form.cs (ShowDialog): Set parent to owner, if provided
27239         * GroupBox.cs: Removed unused vars
27240         * TextControl.cs:
27241           - Added GetHashCode() for Document and LineTag classes
27242           - Removed unused variables
27243           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
27244             to allow translation between continuous char position and line/pos
27245         * CheckBox.cs: Removed vars that are provided by base class
27246         * RadioButton.cs: Removed vars that are provided by base class, added
27247           new keyword where required
27248         * LinkLabel.cs: Added new keyword where required
27249         * Control.cs (WndProc): Removed unused variable
27250         * TextBoxBase.cs:
27251           - Finished SelectionLength property
27252           - Implemented SelectionStart property
27253           - Implemented Text property
27254           - Removed unused vars
27255         * MessageBox.cs: Added new keyword where required
27256         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
27257           WndProc signature
27258         * MenuAPI.cs: Added new keyword where required
27259         * ButtonBase.cs: Removed vars that are provided by base class, added
27260           new keyword where required
27261         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
27262           argument to double, to allow compiling with csc 2.0 (Atsushi ran
27263           into this)
27264         * Application.cs (Run): Now triggers the ThreadExit event
27265         * CommonDialog.cs: Added new keyword where required; now properly sets
27266           parent (owner) for dialog
27267         * XplatUIX11.cs: Commented out unused vars
27268         * StatusBar.cs: Fixed signature for Text property
27269         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
27270
27271 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
27272
27273         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
27274         TrackBar.cs, MonthCalendar.cs: remove unused vars
27275
27276 2005-01-03  Jackson Harper  <jackson@ximian.com>
27277
27278         * ThemeWin32Classic.cs:
27279         * X11Keyboard.cs: Remove unused vars.
27280
27281 2005-01-03  Peter Bartok  <pbartok@novell.com>
27282
27283         * TextBox.cs:
27284           - set_Text: Tied into TextControl
27285           - set_TextAlignment: Tied into TextControl
27286         * TextControl.cs:
27287           - Added alignment properties and implemented alignment handling
27288             and drawing (still has a bug, not generating proper expose events)
27289           - Added new Line() constructor to allow passing the line alignment
27290           - Fixed selection setting, properly handling end<start now
27291           - Added aligment considerations to RecalculateDocument()
27292         * TextBoxBase.cs:
27293           - Now properly enforces control height for single line controls
27294           - Added support for CharacterCasing
27295           - Added IsInputKey override
27296           - Fixed Keys.Enter logic
27297           - Added SetBoundsCore override
27298           - Fixed mouse selection handling
27299
27300 2005-01-03  Jackson Harper  <jackson@ximian.com>
27301
27302         * TreeView.cs:
27303           - Collapse and uncheck all nodes when CheckBoxes is disabled.
27304           - Checkboxes are always aligned to the bottom of the node,
27305           regardless of item height.
27306           - Use the node bounds to draw the text so we can center it when
27307           the item height is greater then the font height.
27308           - Node::Bounds are only the text part of the node.
27309         * TreeNode.cs: New method to combine collapsing and unchecking all
27310           nodes recursively.
27311
27312 2005-01-02  Jackson Harper  <jackson@ximian.com>
27313
27314         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
27315         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
27316         tree when a check is changed. TODO: Only refresh the checked node.
27317
27318 2004-12-30  Jackson Harper  <jackson@ximian.com>
27319
27320         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
27321         * TreeNode.cs: When collapsing make sure to never collapse the
27322         root node.
27323
27324 2004-12-29  Jackson Harper  <jackson@ximian.com>
27325
27326         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
27327         
27328 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
27329
27330         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
27331
27332 2004-12-28  Peter Bartok  <pbartok@novell.com>
27333
27334         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
27335           not yet assigned
27336
27337 2004-12-28  Peter Bartok  <pbartok@novell.com>
27338
27339         * Control.cs (WndProc): Added WM_HELP handler, now generates
27340           HelpRequested event
27341         * Form.cs: Added HelpButton property and required support code
27342         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
27343
27344 2004-12-28  Peter Bartok  <pbartok@novell.com>
27345
27346         * CommonDialog.cs:
27347           - Made DialogForm.owner variable internal
27348           - Added check to ensure owner form is set before setting
27349             owner properties in CreateParams
27350
27351 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
27352
27353         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
27354           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
27355           GetCursorPos.  Fix major visibility issues.  Rework the windowing
27356           system to support borderless/titleless windows (implements menus).
27357           Fix GetWindowPos.  Implement initial background color support for
27358           views.
27359
27360 2004-12-28  Peter Bartok  <pbartok@novell.com>
27361
27362         * Form.cs (get_CreateParams): Make sure we have an owner before using
27363           the owner variable. Implement proper default if no owner exists
27364
27365 2004-12-28  Peter Bartok  <pbartok@novell.com>
27366
27367         * In preparation for making Managed.Windows.Forms the default build target
27368           for System.Windows.Forms, the following stubbed files were added.
27369           Dialogs are currently being implemented by contributors and are only
27370           short-term place holders.
27371         * ColorDialog.cs: Initial check-in (minmal stub)
27372         * DataGrid.cs: Initial check-in (minimal stub)
27373         * DataGridLineStyle.cs: Initial check-in (minimal stub)
27374         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
27375         * DataGridTableStyle.cs: Initial check-in (minimal stub)
27376         * FontDialog.cs: Initial check-in (minimal stub)
27377         * FileDialog.cs: Initial check-in (minimal stub)
27378         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
27379         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
27380         * OpenFileDialog: Initial check-in (minimal stub)
27381         * IComponentEditorPageSite.cs: Initial check-in
27382         * Splitter.cs: Initial check-in (for Jackson)
27383         * SplitterEventArgs.cs: Initial check-in (for Jackson)
27384         * SplitterEventHandler.cs: Initial check-in (for Jackson)
27385         * TextBox.cs: Initial check-in; still needs some wiring to
27386           TextControl backend
27387         * Form.cs: Implemented ControlBox property
27388         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
27389         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
27390         * TextControl.cs: Added selection functionality; added todo header
27391         * TextBoxBase.cs:
27392           - Implemented Lines property
27393           - Implemented TextHeight property
27394           - Implemented SelectedText property
27395           - Implemented SelectionLength property
27396           - Implemented SelectAll method
27397           - Implemented ToString method
27398           - Removed and cleaned up some debug code
27399           - Implemented (still buggy) mouse text selection
27400
27401 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
27402
27403         * ComboBox.cs: Complete DropDownList implementation, fixes.
27404
27405 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
27406
27407         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
27408         * ComboBoxStyle.cs: ComboBoxStyle enum
27409         * ComboBox.cs: Initial work on ComboBox control
27410
27411 2004-12-21  Peter Bartok  <pbartok@novell.com>
27412
27413         * Control.cs (ctor, CreateParams): Moved setting of is_visible
27414           forward so that anything that creates a window gets the default,
27415           also no longer uses Visible property in CreateParams to avoid
27416           walking up the parent chain and possibly get the wrong visible
27417           status. Fixed IsVisible to no longer walk up to the parent.
27418
27419 2004-12-21  Peter Bartok  <pbartok@novell.com>
27420
27421         * Form.cs (ShowDialog): Unset modality for the proper window
27422  
27423 2004-12-20  Peter Bartok  <pbartok@novell.com>
27424
27425         * CommonDialog.cs: Initial check-in
27426
27427 2004-12-20  Peter Bartok  <pbartok@novell.com>
27428
27429         * Control.cs (Visible): Now uses the parent window instead of the
27430           client area window for the property
27431
27432         * Form.cs
27433           - ShowDialog(): Now uses the proper window for modality
27434           - The default visibility state for the form parent is now false. This
27435             will prevent the user from seeing all the changes to the form and
27436             its controls before the application hits Application.Run()
27437           - Removed some stale commented out code
27438
27439         * NativeWindow.cs:
27440           - Added FindWindow() method to have a method to check for existence
27441             of a window handle
27442           - Added ability to override default exception handling (for example
27443             when debugging with VS.Net; to do this the ExternalExceptionHandler
27444             define must be set
27445           - Removed some useless debug output
27446
27447         * XplatUIX11.cs:
27448           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
27449             not working as expected
27450           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
27451             property to allow switching back to the modal window if focus is
27452             given to another one of our windows (Application Modal)
27453           - Now only sets override_redirect if we create a window
27454             without WS_CAPTION
27455           - Moved EventMask selection before mapping of newly created window
27456             so we can catch the map event as well
27457           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
27458           - Added various Atom related DllImports
27459           - Implemented Exit() method
27460           - .ctor() : No longer shows window if WS_VISIBLE is not defined
27461             in the CreateParams
27462
27463         * MessageBox.cs: Now properly deals with the FormParent window by
27464           providing an override the FormParent CreateParams property to
27465           set as POPUP instead of OVERLAPPED window.
27466
27467 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27468
27469         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
27470         Minor code cleanup.
27471
27472 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27473         
27474         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
27475
27476 2004-12-18  Peter Bartok  <pbartok@novell.com>
27477
27478         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
27479           implementing SetModal() method
27480
27481 2004-12-18  Peter Bartok  <pbartok@novell.com>
27482
27483         * X11Structs.cs (XGCValues): Fixed type of function element
27484         * XplatUI.cs: Added ScrollWindow() method
27485         * XplatUIDriver.cs: Added ScrollWindow() abstract
27486         * XplatUIWin32.cs: Implemented ScrollWindow() method
27487         * XplatUIX11.cs: Implemented ScrollWindow() method
27488         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
27489
27490 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27491
27492         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
27493         Some more keyboard support (INCOMPLETE)
27494
27495 2004-12-17  Peter Bartok  <pbartok@novell.com>
27496
27497         * TextControl.cs:
27498         - Added color attribute to line tags.
27499         - Added color argument to all functions dealing with tags
27500         - Added color argument support to various functions
27501         - Fixed miss-calculation of baseline/shift in certain circumstances
27502
27503         * TextBoxBase.cs: Added new color option to test code
27504
27505 2004-12-17  Jackson Harper  <jackson@ximian.com>
27506
27507         * TreeNode.cs:
27508         * MonthCalendar.cs: Signature fixes
27509
27510 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27511
27512         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
27513         keyboard event moved it.  Create a new graphics context for each paint resolves this
27514
27515 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27516
27517         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
27518         Make caret exist and go blink blink.  Initial keyboard support.
27519         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
27520         works.
27521
27522 2004-12-17  Jackson Harper  <jackson@ximian.com>
27523
27524         * XplatUIStructs.cs: Updated set of virtual keycodes.
27525         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
27526
27527 2004-12-17  Jackson Harper  <jackson@ximian.com>
27528
27529         * XplatUIX11.cs: Prune old keyboard code.
27530
27531 2004-12-17  Jackson Harper  <jackson@ximian.com>
27532
27533         * XplatUIX11.cs: When generating mouse wparams get the modifier
27534         keys from the ModifierKeys property.
27535
27536 2004-12-17  Jackson Harper  <jackson@ximian.com>
27537
27538         * X11Keyboard.cs: Send up/down input when generating
27539         messages. Remove some unused vars.
27540
27541 2004-12-17  Jackson Harper  <jackson@ximian.com>
27542
27543         * TabControl.cs:
27544         * TreeView.cs: get rid of warnings.
27545
27546 2004-12-17  Jackson Harper  <jackson@ximian.com>
27547
27548         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
27549
27550 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
27551
27552         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
27553           CheckedListBox.cs: Implementation
27554
27555 2004-12-17  Peter Bartok  <pbartok@novell.com>
27556
27557         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
27558
27559 2004-12-16  Peter Bartok  <pbartok@novell.com>
27560
27561         * TextControl.cs:
27562           - InsertCharAtCaret(): Fixed start pos fixup
27563           - CaretLine_get: No longer derives the line from the tag, the tag
27564             could be stale if lines in the document have been added or deleted
27565           - RebalanceAfterDelete(): Fixed bug in balancing code
27566           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
27567           - Line.Streamline(): Now can also elminate leading empty tags
27568           - DumpTree(): Added a few more tests and prevented exception on
27569             uninitialized data
27570           - Added Debug section for Combining lines
27571           - Delete(): Now copies all remaining properties of a line
27572           
27573         * TextBoxBase.cs:
27574           - Left mousebutton now sets the caret (and middle button still acts
27575             as formatting tester, which must go away soon)
27576           - Added Debug section for Deleting/Combining lines
27577           - Fixed calculations for UpdateView after Combining lines
27578
27579 2004-12-16  Peter Bartok  <pbartok@novell.com>
27580
27581         * TextControl.cs: Now properly aligns text on a baseline, using the
27582           new XplatUI.GetFontMetrics() method. Simplified several calculations
27583         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
27584           defined
27585
27586 2004-12-16  Peter Bartok  <pbartok@novell.com>
27587
27588         * XplatUI.cs: Added GetFontMetrics() method
27589         * XplatUIDriver.cs: Added GetFontMetrics() abstract
27590         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
27591           into libgdiplus, our private GetFontMetrics function
27592         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
27593         * XplatUIWin32.cs: Implemented GetFontMetrics() method
27594
27595 2004-12-16  Jackson Harper  <jackson@ximain.com>
27596
27597         * XplatUIStruct.cs: Add enum for dead keys
27598         * X11Keyboard.cs: Map and unmap dead keys.
27599
27600 2004-12-16  Jackson Harper  <jackson@ximian.com>
27601
27602         * X11Keyboard.cs: Detect and use the num lock mask.
27603
27604 2004-12-16  Peter Bartok  <pbartok@novell.com>
27605
27606         * Control.cs (CreateGraphics): Added check to make sure the
27607           handle of the window exists before calling Graphics.FromHwnd()
27608
27609 2004-12-16  Peter Bartok  <pbartok@novell.com>
27610
27611         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
27612           contains a lot of code that's not supposed to be there for the
27613           real thing, but required for developing/testing the textbox
27614           backend.
27615
27616 2004-12-16  Peter Bartok  <pbartok@novell.com>
27617
27618         * TextControl.cs:
27619         - Fixed Streamline method
27620         - Added FindTag method to Line
27621         - Added DumpTree method for debugging
27622         - Added DecrementLines() method for deleting lines
27623         - Fixed UpdateView to update the cursor to end-of-line on single-line
27624           updates
27625         - Added PositionCaret() method
27626         - Fixed MoveCaret(LineDown) to move into the last line, too
27627         - Added InsertChar overload
27628         - Fixed InsertChar tag offset calculations
27629         - Added DeleteChar() method
27630         - Added Combine() method for folding lines
27631         - Fixed Delete() method, no longer allocates wasted Line object and
27632           now copies all properties when swapping nodes
27633         - Delete() method now updates document line counter
27634
27635 2004-12-15  Jackson Harper  <jackson@ximian.com>
27636
27637         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
27638         * X11Keyboard.cs: Expose the currently selected modifier keys
27639         through a property.
27640
27641 2004-12-15  Peter Bartok  <pbartok@novell.com>
27642
27643         * TextControl.cs: Initial check-in. Still incomplete
27644
27645 2004-12-15  Jackson Harper  <jackson@ximian.com>
27646
27647         * TreeNode.cs:
27648         * TreeView.cs: Fix build on csc (second time today ;-))
27649
27650 2004-12-15  Jackson Harper  <jackson@ximian.com>
27651
27652         * TreeView.cs: Store the treenodes plus/minus box bounds when it
27653         is calculated and use this for click testing.
27654         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
27655
27656 2004-12-15  Jackson Harper  <jackson@ximian.com>
27657
27658         * TreeView.cs: Pass the nodes image index to the image list when
27659         drawing that image.
27660
27661 2004-12-15  Jackson Harper  <jackson@ximian.com>
27662
27663         * X11Keyboard.cs: Set messages hwnd.
27664         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
27665         post_message calls.
27666
27667 2004-12-15  Jackson Harper  <jackson@ximian.com>
27668
27669         * X11Keyboard.cs: Fix to compile with csc.
27670         
27671 2004-12-15  Jackson Harper  <jackson@ximian.com>
27672
27673         * X11Structs.cs: Add key mask values
27674         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
27675         * X11Keyboard.cs: New file - Extrapolates and interpolates key
27676         down/up foo into WM_CHAR foo
27677         * KeyboardLayouts.cs: Common keyboard layouts
27678         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
27679         post messages into the main queue.
27680
27681 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
27682
27683         * Button.cs: implement ProcessMnemonic
27684         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
27685           brushes everytime
27686         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
27687         * ButtonBase.cs: Show HotkeyPrefix (not the &)
27688
27689 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
27690         
27691         * MonthCalendar.cs: Implemented click-hold for next/previous month
27692           and date selection
27693           
27694 2004-12-11  Peter Bartok  <pbartok@novell.com>
27695
27696         * X11Structs.cs:
27697           - Added XKeyboardState (moved from XplatUIX11.cs)
27698           - Added XCreateGC related enums and structures
27699           - Added GXFunction for XSetFunction
27700
27701         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
27702
27703         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
27704           CaretVisible() calls
27705
27706         * ToolTip.cs: Added code to prevent stealing focus from app windows
27707
27708         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
27709           DestroyCaret, SetCaretPos and CaretVisible)
27710
27711         * XplatUIX11.cs:
27712           - Added implementation for caret functions
27713           - Moved hover variables into a struct, to make it a bit easier
27714             on the eyes and to debug
27715           - Removed XKeyboardState (moved to XplatUIX11.cs)
27716           - Moved Keyboard properties into the properties region
27717
27718         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
27719           call to get a graphics context for our control
27720
27721         * XplatUIOSX.cs: Added empty overrides for the new caret functions
27722
27723         * TreeView.cs: Fixed bug. No matter what color was set it would always
27724           return SystemColors.Window
27725
27726         * XplatUIWin32.cs: Implemented caret overrides
27727
27728 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
27729
27730         * ListBox.cs: fire events, implement missing methods and properties,
27731         sorting.
27732
27733 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
27734
27735         * MonthCalendar.cs: invalidation bug fixing
27736         * ThemeWin32Classic.cs: paint fixing
27737
27738 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
27739
27740         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
27741         prepare the CGContextRef there now.
27742
27743 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
27744
27745         * MonthCalendar.cs:
27746           - optimisationL only invalidate areas that have changed
27747         * ThemeWin32Classic.cs:
27748           - only paint parts that intersect with clip_area
27749
27750 2004-12-09  Peter Bartok  <pbartok@novell.com>
27751
27752         * Application.cs: Undid changes from r37004 which cause problems
27753         on X11
27754
27755 2004-12-09  Ravindra  <rkumar@novell.com>
27756
27757         * ToolBar.cs: Added support for displaying ContextMenu
27758         attached to a button on ToolBar.
27759         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
27760         property.
27761
27762 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27763
27764         * Label.cs: autosize works in text change and removes unnecessary
27765         invalidate
27766
27767 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27768
27769         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
27770         remove warnings
27771
27772 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
27773
27774         * XplatUIOSX.cs: Added mouse move/click/grab support
27775         Remove some debugging WriteLines not needed anymore.
27776         Add window resizing/positioning.
27777         Fix visibility on reparenting.
27778
27779 2004-12-08  Peter Bartok  <pbartok@novell.com>
27780
27781         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
27782
27783 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
27784
27785         * XplatUIOSX.cs: Initial checkin
27786         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
27787
27788 2004-12-03  Ravindra <rkumar@novell.com>
27789
27790         * ListView.cs: Added some keybindings and fixed scrolling.
27791         ScrollBars listen to ValueChanged event instead of Scroll
27792         Event. This would let us take care of all changes being
27793         done in the scrollbars' values programmatically or manually.
27794         * ListView.cs (CanMultiselect): Added a check for shift key.
27795         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
27796         * ListViewItem.cs (Clone): Fixed. We need to make a copy
27797         of ListViewSubItemCollection as well.
27798
27799 2004-12-06  Peter Bartok <pbartok@novell.com>
27800
27801         * Control.cs (Parent): Added check and exception to prevent
27802         circular parenting
27803
27804 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
27805
27806         * ListBox.cs: implemented clipping, selection single and multiple,
27807         bug fixing
27808
27809 2004-12-03  Ravindra <rkumar@novell.com>
27810
27811         * ListView.cs (ListView_KeyDown):
27812         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
27813         when CTRL key is pressed.
27814         * ListViewItem.cs (Selected): Fixed setting the property.
27815
27816 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27817
27818         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
27819
27820         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
27821         MinimizeBox, ShowInTaskbar, TopMost properties.
27822
27823         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
27824         will be implemented).
27825
27826 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27827
27828         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
27829
27830         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
27831         tests.
27832         
27833         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
27834         
27835         * TreeView.cs: BackColor is Colors.Window.
27836
27837 2004-12-01  Jackson Harper  <jackson@ximian.com>
27838
27839         * TreeView.cs: When resizing the tree if the user is making it
27840         smaller we don't get expose events, so we need to handle adding
27841         the horizontal scrollbar in the size changed handler as well as
27842         the expose handler.
27843
27844 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
27845
27846         * DrawItemState.cs: fixes wrong enum values
27847
27848 2004-12-01  Jackson Harper  <jackson@ximian.com>
27849
27850         * TreeView.cs: Resize the hbar as well as the vbar on resize.
27851
27852 2004-12-01  Jackson Harper  <jackson@ximian.com>
27853
27854         * NodeLabelEditEventArgs.cs:
27855         * NodeLabelEditEventHandler.cs:
27856         * OpenTreeNodeEnumerator.cs:
27857         * TreeNode.cs:
27858         * TreeNodeCollection.cs:
27859         * TreeView.cs:
27860         * TreeViewAction.cs:
27861         * TreeViewCancelEventArgs.cs:
27862         * TreeViewCancelEventHandler.cs:
27863         * TreeViewEventArgs.cs:
27864         * TreeViewEventHandler.cs: Initial implementation.
27865
27866 2004-12-01  Ravindra <rkumar@novell.com>
27867
27868         * ListView.cs (CalculateListView): Fixed scrolling related
27869         calculations. Also, removed some debug statements from other
27870         places.
27871         * ListViewItem.cs: Changed access to 'selected' instance variable
27872         from private to internal.
27873         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
27874
27875 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
27876
27877         * ThemeWin32Classic.cs: remove cache of brush and pens for
27878         specific controls and use the global system, fixes scrollbutton
27879         bugs (for small sizes, disabled, etc)
27880         
27881         * ScrollBar.cs: does not show the thumb for very small controls
27882         (as MS) and allow smaller buttons that the regular size
27883
27884 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
27885
27886         * UpDownBase.cs: Add abstract methods for the interface.
27887         Add new virtual methods (need to be hooked up to TextEntry when it
27888         exists).
27889         Add override methods for most features.
27890         Computes the size, forces the height of the text entry.
27891
27892         * NumericUpDown.cs: Put here the current testing code.
27893
27894         * Set eol-style property on all files that do not have mixed line
27895         endings, to minimize the future problems.  There are still a few
27896         files with mixed endings, and someone should choose whether they
27897         want to move it or not.
27898
27899 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
27900
27901         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
27902         System.Colors
27903         
27904 2004-11-30  Ravindra <rkumar@novell.com>
27905
27906         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
27907         drawing and replaced use of SystemColors by theme colors.
27908         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
27909         * ListView.cs (ListViewItemCollection.Add): Throw exception when
27910         same ListViewItem is being added more than once.
27911
27912 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
27913
27914         * MonthCalendar.cs:
27915           - ControlStyles love to make the control not flicker
27916           
27917 2004-11-30  Peter Bartok  <pbartok@novell.com>
27918
27919         * CharacterCasing.cs: Added
27920
27921 2004-11-29  Peter Bartok  <pbartok@novell.com>
27922
27923         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
27924           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
27925           I am removing these files as they conflict with already completed
27926           work. While it is fantastic to get contributions to MWF, I
27927           respectfully ask that everyone please coordinate their contributions
27928           through mono-winforms-list or #mono-winforms at this time. We're
27929           explicitly avoiding stubbing and don't want controls that don't have
27930           their basic functionality implemented in svn. Please also see
27931           http://www.mono-project.com/contributing/winforms.html
27932
27933
27934 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
27935
27936         * Application.cs (ModalRun): Don't hang after exit.
27937
27938         * Theme.cs: New TreeViewDefaultSize property.
27939
27940         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
27941         with less hardcoded SystemColors constant.
27942         Implemented TreeViewDefaultSize.
27943
27944         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
27945         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
27946
27947
27948 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
27949
27950         * MonthCalendar.cs:
27951           - Fix NextMonthDate and PrevMonthDate click moving calendar
27952
27953 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
27954
27955         * MonthCalendar.cs:
27956           - Fix usage of ScrollChange Property when scrolling months
27957
27958 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
27959
27960         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
27961          - Fixes menu destroying
27962          - Support adding and removing items on already created menus
27963
27964 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
27965
27966         * MonthCalendar.cs:
27967           - Re-worked all bolded dates handling to match win32
27968         * ThemeWin32Classic.cs:
27969           - Fixed rendering with bolded dates
27970
27971 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
27972
27973         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
27974         - Horizontal scroolbar
27975         - Multicolumn
27976         - Fixes
27977
27978
27979 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
27980
27981         * MonthCalendar.cs:
27982           - Fix Usage of MaxSelectionCount from SelectionRange
27983           - Fixed Shift + Cursor Selection
27984           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
27985           - Fixed normal cursor selection to be compat with win32
27986           - Fixed Shift + Mouse Click selection
27987
27988 2004-11-24  Peter Bartok <pbartok@novell.com>
27989
27990         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
27991         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
27992         * XplatUIX11.cs:
27993           - CreatedKeyBoardMsg now updates keystate with Alt key
27994           - Added workaround for timer crash to CheckTimers, Jackson will
27995             develop a proper fix and check in later
27996           - Implemented DispatchMessage
27997           - Removed calling the native window proc from GetMessage (call
27998             now moved to DispatchMessage)
27999
28000         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
28001           the keydata (Fixes bug #69831)
28002
28003         * XplatUIWin32.cs:
28004           - (DispatchMessage): Switched to return IntPtr
28005           - Added DllImport for SetFocus
28006
28007 2004-11-24  Ravindra <rkumar@novell.com>
28008
28009         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
28010         background drawing.
28011         * ListViewItem.cs: Fixed various properties, calculations
28012         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
28013         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
28014         and some internal properties. Fixed MouseDown handler and Paint
28015         method.
28016
28017 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28018
28019         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
28020
28021 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28022
28023         * ContainerControl.cs: correct accidental check in of local changes
28024
28025 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28026
28027         * ThemeWin32Classic.cs:
28028                 - Fixed Drawing Last month in grid (sometimes not showing)
28029         * MonthCalendar.cs:
28030                 - Fixed title width calculation bug (makeing title small)
28031
28032 2004-11-23  Peter Bartok <pbartok@novell.com>
28033
28034         * XplatUIX11.cs:
28035           - Added generation of WM_MOUSEHOVER event
28036           - Added missing assignment of async_method atom
28037           - Fixed WM_ERASEBKGND; now only redraws the exposed area
28038
28039 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
28040
28041         * ThemeWin32Classic.cs:
28042                 - Fixed Drawing of today circle when showtodaycircle not set
28043                 - fixed drawing of first and last month in the grid (gay dates)
28044         * MonthCalendar.cs:
28045                 - Fixed Drawing of today circle
28046                 - Fixed drawing of grady dates
28047                 - Fixed HitTest for today link when ShowToday set to false
28048                 - Fixed DefaultSize to obey ShowToday
28049
28050 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
28051
28052         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
28053         * System.Windows.Forms/Theme.cs
28054         * MonthCalendar.cs: added for MonthCalendar
28055         * SelectionRange.cs: added for MonthCalendar
28056         * Day.cs: added for MonthCalendar: added for MonthCalendar
28057         * DateRangeEventArgs.cs: added for MonthCalendar
28058         * DateRangeEventHandler.cs: added for MonthCalendar
28059
28060 2004-11-22  Ravindra <rkumar@novell.com>
28061
28062         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
28063         property.
28064
28065 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
28066
28067         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
28068         event handler.
28069         
28070         * NumericUpDown.cs: Added new implementation.
28071         * UpDownBase.cs: Added new implementation.
28072
28073         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
28074         implementations.
28075         
28076         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
28077         implementations.
28078
28079         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
28080         methods.
28081
28082 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
28083
28084         * Timer.cs  (Dispose): Should call the base dispose when
28085         overriding.
28086
28087 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
28088
28089         * ScrollBar.cs: updates thumb position when max, min or increment
28090         is changed
28091
28092 2004-11-21  Ravindra <rkumar@novell.com>
28093
28094         * ListView.cs: Implemented item selection, activation and
28095         column header style. Fixed properties to do a redraw, if
28096         required. Added support for MouseHover, DoubleClick, KeyDown
28097         and KeyUp event handling and some minor fixes.
28098         * ListViewItem.cs: Fixed constructor.
28099         * ThemeWin32Classic.cs: Improved drawing for ListView.
28100
28101 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
28102
28103         * ThemeWin32Classic.cs: initial listbox drawing code
28104         * DrawMode.cs: new enumerator
28105         * ListControl.cs: stubbed class
28106         * ListBox.cs: initial implementation
28107         * Theme.cs: new methods definitions
28108         * SelectionMode.cs: new enumerator
28109
28110 2004-11-17  Peter Bartok  <pbartok@novell.com>
28111
28112         * XplatUIWin32.cs: Added double-click events to the class style
28113         * Control.cs (WndProc):
28114           - Added handling of click-count to MouseDown/ MouseUp events.
28115           - Added handling of middle and right mouse buttons
28116           - Removed old debug code
28117
28118 2004-11-17  Jackson Harper  <jackson@ximian.com>
28119
28120         * XplatUIX11.cs: Use the new Mono.Unix namespace.
28121
28122 2004-11-17  Ravindra <rkumar@novell.com>
28123
28124         * ListView.cs: Added event handling for MouseMove/Up/Down.
28125         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
28126         * ThemeWin32Classic.cs: We need to clear the graphics context and
28127         draw column header in a proper state.
28128
28129
28130 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
28131
28132         *  Menu.cs: fixes signature
28133
28134 2004-11-16  Peter Bartok  <pbartok@novell.com>
28135
28136         * XplatUIX11.cs (GetMessage): Implemented generation of
28137           double click mouse messages
28138
28139 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
28140
28141         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
28142         not by menu
28143
28144 2004-11-11  Peter Bartok  <pbartok@novell.com>
28145
28146         * HandleData.cs: Added Visible property
28147         * XplatUIX11.cs (IsVisible): Now uses Visible property from
28148           HandleData
28149         * XplatUIX11.cs: Removed old debug leftovers
28150         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
28151         * Control.cs (WndProc): Removed old debug leftovers,
28152           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
28153           needed WM_SIZE handling
28154
28155 2004-11-11  Jackson Harper  <jackson@ximian.com>
28156
28157         * OwnerDrawPropertyBag.cs:
28158         * TreeViewImageIndexConverter.cs: Initial implementation
28159
28160 2004-11-10  Jackson Harper  <jackson@ximian.com>
28161
28162         * ThemeWin32Classic.cs:
28163         * TabControl.cs: instead of moving tabs by the slider pos just
28164         start drawing at the tab that is offset by the slider. This way
28165         scrolling always moves by exactly one tab.
28166
28167 2004-11-10  Jackson Harper  <jackson@ximian.com>
28168
28169         * TabControl.cs: You can only scroll left when the slider has
28170         already ben moved right.
28171         
28172 2004-11-10  Jackson Harper  <jackson@ximian.com>
28173
28174         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
28175         the clip area.
28176         
28177 2004-11-10  Jackson Harper  <jackson@ximian.com>
28178
28179         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
28180         clip area.
28181         
28182 2004-11-09  Jackson Harper  <jackson@ximian.com>
28183
28184         * TabControl.cs (CalcXPos): New helper method so we can determine
28185         the proper place to start drawing vertical tabs.
28186         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
28187         
28188 2004-11-09  Jackson Harper  <jackson@ximian.com>
28189
28190         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
28191         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
28192         and Bottom, left and right are illegal values for this and
28193         multiline is enabled when the alignment is set to left or right.
28194         (DrawTab): Each alignment block should draw the text itself now
28195         because Left requires special love. Also add rendering for Left
28196         aligned tabs.
28197         
28198 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
28199
28200         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
28201         does not destroy the windows, removes debugging messages
28202
28203 2004-11-09  jba  <jba-mono@optusnet.com.au>
28204
28205         * ThemeWin32Classic.cs
28206         (DrawButtonBase): Fix verticle text rect clipping in windows
28207         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
28208         rendering and incorrect text rect clipping
28209         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
28210         rendering and incorrect text rect clipping
28211         
28212 2004-11-08  Jackson Harper  <jackson@ximian.com>
28213
28214         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
28215         bottom when they are bottom aligned so the bottoms of the tabs get
28216         displayed.
28217         * TabControl.cs (DropRow): Move rows up instead of down when the
28218         tab control is bottom aligned.
28219
28220 2004-11-08 13:59  pbartok
28221
28222         * XplatUIX11.cs:
28223           - Added handling for various window styles
28224           - Added handling for popup windows
28225           - Added SetTopmost handling
28226
28227 2004-11-08 13:55  pbartok
28228
28229         * XplatUIWin32.cs:
28230           - Added argument to SetTopmost method
28231           - Fixed broken ClientToScreen function
28232
28233 2004-11-08 13:53  pbartok
28234
28235         * XplatUIStructs.cs:
28236           - Added missing WS_EX styles
28237
28238 2004-11-08 13:53  pbartok
28239
28240         * XplatUI.cs, XplatUIDriver.cs:
28241           - Added argument to SetTopmost
28242
28243 2004-11-08 13:52  pbartok
28244
28245         * X11Structs.cs:
28246           - Added XSetWindowAttributes structure
28247           - Improved XWindowAttributes structure
28248           - Added SetWindowValuemask enum
28249           - Added window creation arguments enum
28250           - Added gravity enum
28251           - Added Motif hints structure
28252           - Added various Motif flags and enums
28253           - Added PropertyMode enum for property functions
28254
28255 2004-11-08 13:50  pbartok
28256
28257         * Form.cs:
28258           - Fixed arguments for updated SetTopmost method
28259
28260 2004-11-08 13:49  pbartok
28261
28262         * ToolTip.cs:
28263           - Fixed arguments for updated SetTopmost function
28264           - Fixed usage of PointToClient
28265
28266 2004-11-08 13:44  pbartok
28267
28268         * MenuAPI.cs:
28269           - Added Clipping of children and siblings
28270
28271 2004-11-08 13:41  pbartok
28272
28273         * MainMenu.cs:
28274           - Removed SetMenuBarWindow call. We do this in Form.cs
28275
28276 2004-11-08 13:40  jackson
28277
28278         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
28279           scrolling jimmi in the correct location with bottom aligned tabs
28280
28281 2004-11-08 13:36  pbartok
28282
28283         * ContainerControl.cs:
28284           - Implemented BindingContext
28285           - Implemented ParentForm
28286
28287 2004-11-08 12:46  jackson
28288
28289         * TabControl.cs: Put bottom rendered tabs in the right location
28290
28291 2004-11-08 07:15  jordi
28292
28293         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
28294           removes dead code
28295
28296 2004-11-05 17:30  jackson
28297
28298         * TabControl.cs: When selected tabs are expanded make sure they
28299           don't go beyond the edges of the tab control
28300
28301 2004-11-05 14:57  jackson
28302
28303         * TabControl.cs: Reset show_slider so if the control is resized to
28304           a size where it is no longer needed it's not displayed anymore
28305
28306 2004-11-05 13:16  jackson
28307
28308         * TabControl.cs: Make tab pages non visible when added to the
28309           control
28310
28311 2004-11-05 12:42  jackson
28312
28313         * TabControl.cs: Implement SizeMode.FillToRight
28314
28315 2004-11-05 12:16  jackson
28316
28317         * Control.cs: Do not call CreateHandle if the handle is already
28318           created
28319
28320 2004-11-05 11:46  jackson
28321
28322         * TabControl.cs: Remove superflous call to CalcTabRows
28323
28324 2004-11-05 09:07  jackson
28325
28326         * XplatUIX11.cs: Update for Mono.Posix changes
28327
28328 2004-11-05 07:00  ravindra
28329
28330         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
28331           scrolling.
28332
28333 2004-11-04 22:47  jba
28334
28335         * ThemeWin32Classic.cs:
28336           - Fix Button rendering for FlatStyle = Flat or Popup
28337           - Fix RadioButton and CheckBox rendering when Appearance = Button
28338             (normal and flatstyle).
28339           - Correct outer rectangle color when drawing focus rectangle
28340           - Adjust button bounds to be 1 px smaller when focused
28341           - Make button not draw sunken 3d border when pushed (windows compat)
28342           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
28343           - Offset the text in RadioButton and Checkbox when being rendered as
28344           a button.
28345           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
28346           radiobuttons
28347           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
28348           - Fixed disabled text rendering for normally rendered radiobuttons
28349
28350 2004-11-04 10:26  jackson
28351
28352         * TabControl.cs: Recalculate tab rows when resizing
28353
28354 2004-11-04 07:47  jordi
28355
28356         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
28357           collection completion, drawing issues, missing features
28358
28359 2004-11-04 05:03  ravindra
28360
28361         * ScrollBar.cs:
28362                 - We need to recalculate the Thumb area when
28363                 LargeChange/maximum/minimum values are changed.
28364           - We set the 'pos' in UpdatePos() method to minimum, if it's less
28365                 than minimum. This is required to handle the case if large_change is
28366                 more than max, and use LargeChange property instead of large_change
28367                 variable.
28368           - We return max+1 when large_change is more than max, like MS does.
28369
28370 2004-11-04 04:29  ravindra
28371
28372         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
28373                 - Changed default value signatures (prefixed all with ListView).
28374                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
28375                 ListView.
28376           - Fixed calculations for ListViewItem and implemented Clone()
28377           method.
28378
28379 2004-11-04 04:26  ravindra
28380
28381         * Theme.cs, ThemeWin32Classic.cs:
28382                 - Changed default ListView values signatures (prefixed all with
28383                 ListView).
28384           - Fixed default size values for VScrollBar and HScrollBar.
28385                 - Fixed DrawListViewItem method.
28386
28387 2004-11-04 04:05  ravindra
28388
28389         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
28390
28391 2004-11-04 04:04  ravindra
28392
28393         * ImageList.cs: Implemented the missing overload for Draw method.
28394
28395 2004-11-03 19:29  jackson
28396
28397         * TabControl.cs: Handle dropping rows on selection properly
28398
28399 2004-11-03 11:59  jackson
28400
28401         * TabControl.cs: remove debug code
28402
28403 2004-11-03 11:52  jackson
28404
28405         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
28406           the scrolly widgerywoo
28407
28408 2004-11-02 13:52  jackson
28409
28410         * TabControl.cs: Resize the tab pages and tabs when the tab control
28411           is resized
28412
28413 2004-11-02 13:40  jackson
28414
28415         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
28416           selected tab to the bottom
28417
28418 2004-11-02 13:39  jackson
28419
28420         * TabPage.cs: Store the tab pages row
28421
28422 2004-11-02 12:33  jordi
28423
28424         * MenuItem.cs: fixes handle creation
28425
28426 2004-11-02 11:42  jackson
28427
28428         * TabControl.cs: signature fix
28429
28430 2004-11-02 08:56  jackson
28431
28432         * TabControl.cs: Calculate whether the tab is on an edge properly.
28433           Remove top secret debugging code
28434
28435 2004-11-01 19:57  jackson
28436
28437         * TabControl.cs: Add click handling, and proper sizing
28438
28439 2004-11-01 19:47  jackson
28440
28441         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
28442           tab controls
28443
28444 2004-11-01 19:39  jackson
28445
28446         * TabPage.cs: add internal property to store the bounds of a tab
28447           page
28448
28449 2004-10-30 04:23  ravindra
28450
28451         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
28452           values.
28453
28454 2004-10-30 04:21  ravindra
28455
28456         * ListView.cs, ListViewItem.cs: Added support for scrolling and
28457           fixed calculations.
28458
28459 2004-10-30 03:06  pbartok
28460
28461         * XplatUIX11.cs:
28462           - Removed extension of DllImported libs
28463
28464 2004-10-29 09:55  jordi
28465
28466         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
28467           navigation, itemcollection completion, menu fixes
28468
28469 2004-10-27 22:58  pbartok
28470
28471         * XplatUIX11.cs:
28472           - Now throws a nice error message when no X display could be opened
28473
28474 2004-10-26 13:51  jordi
28475
28476         * ListView.cs: removes warning
28477
28478 2004-10-26 03:55  ravindra
28479
28480         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
28481           ThemeWin32Classic.cs: Some formatting for my last checkins.
28482
28483 2004-10-26 03:36  ravindra
28484
28485         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
28486           control and default values.
28487
28488 2004-10-26 03:35  ravindra
28489
28490         * Theme.cs: Added some default values for ListView control.
28491
28492 2004-10-26 03:33  ravindra
28493
28494         * ToolBar.cs: ToolBar should use the user specified button size, if
28495           there is any. Added a size_specified flag for the same.
28496
28497 2004-10-26 03:33  ravindra
28498
28499         * ColumnHeader.cs: Added some internal members and calculations for
28500           ColumnHeader.
28501
28502 2004-10-26 03:32  ravindra
28503
28504         * ListViewItem.cs: Calculations for ListViewItem.
28505
28506 2004-10-26 03:31  ravindra
28507
28508         * ListView.cs: Added some internal members and calculations for
28509           ListView.
28510
28511 2004-10-22 13:31  jordi
28512
28513         * MenuAPI.cs: speedup menus drawing
28514
28515 2004-10-22 13:16  jackson
28516
28517         * XplatUIX11.cs: Make sure to update exposed regions when adding an
28518           expose event
28519
28520 2004-10-22 11:49  jackson
28521
28522         * Control.cs: oops
28523
28524 2004-10-22 11:41  jackson
28525
28526         * Control.cs: Check to see if the window should have its background
28527           repainted by X when drawing.
28528
28529 2004-10-22 11:31  jackson
28530
28531         * XplatUIX11.cs: When invalidating areas only use XClearArea if
28532           clear is true, this way we do not get flicker from X repainting the
28533           background
28534
28535 2004-10-22 11:28  jackson
28536
28537         * XEventQueue.cs: Queue properly
28538
28539 2004-10-21 09:38  jackson
28540
28541         * XEventQueue.cs: Fix access modifier
28542
28543 2004-10-21 09:36  jackson
28544
28545         * XEventQueue.cs: Don't loose messages
28546
28547 2004-10-21 09:22  jackson
28548
28549         * XEventQueue.cs: Don't loose messages
28550
28551 2004-10-20 04:15  jordi
28552
28553         * BootMode.cs: enum need it by SystemInfo
28554
28555 2004-10-19 21:58  pbartok
28556
28557         * XplatUIWin32.cs:
28558           - Small sanity check
28559
28560 2004-10-19 21:56  pbartok
28561
28562         * Form.cs:
28563           - Added private FormParentWindow class which acts as the container
28564             for our form and as the non-client area where menus are drawn
28565           - Added/Moved required tie-ins to Jordi's menus
28566           - Fixed/Implemented the FormStartPosition functionality
28567
28568 2004-10-19 21:52  pbartok
28569
28570         * Control.cs:
28571           - Removed unneeded locals
28572           - Added code to all size and location properties to understand and
28573             deal with the parent container of Form
28574
28575 2004-10-19 21:33  pbartok
28576
28577         * Application.cs:
28578           - Fixed to deal with new Form subclasses for menus
28579
28580 2004-10-19 17:48  jackson
28581
28582         * XEventQueue.cs: commit correct version of file
28583
28584 2004-10-19 16:50  jackson
28585
28586         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
28587
28588 2004-10-19 16:15  jordi
28589
28590         * MenuAPI.cs: MenuBarCalcSize returns the height
28591
28592 2004-10-19 08:31  pbartok
28593
28594         * Control.cs:
28595           - Added missing call to PreProcessMessage before calling OnXXXKey
28596           methods
28597
28598 2004-10-19 00:04  ravindra
28599
28600         * ToolTip.cs: Fixed constructor.
28601
28602 2004-10-18 09:31  jordi
28603
28604         * MenuAPI.cs: menuitems in menubars do not have shortcuts
28605
28606 2004-10-18 09:26  jordi
28607
28608         * MenuItem.cs: fixes MenuItem class signature
28609
28610 2004-10-18 08:56  jordi
28611
28612         * MenuAPI.cs: prevents windows from showing in the taskbar
28613
28614 2004-10-18 00:28  ravindra
28615
28616         * ToolTip.cs: Suppressed a warning message.
28617
28618 2004-10-18 00:27  ravindra
28619
28620         * Control.cs: Default value of visible property must be true.
28621
28622 2004-10-17 23:19  pbartok
28623
28624         * ToolTip.cs:
28625           - Complete implementation
28626
28627 2004-10-17 23:19  pbartok
28628
28629         * XplatUIX11.cs:
28630           - Added EnableWindow method
28631           - Added SetModal stub
28632           - Added generation of WM_ACTIVATE message (still needs testing)
28633           - Added SetTopMost stub
28634           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
28635
28636 2004-10-17 23:17  pbartok
28637
28638         * XplatUIWin32.cs:
28639           - Removed VirtualKeys to XplatUIStructs
28640           - Implemented SetTopMost method
28641           - Implemented EnableWindow method
28642           - Bugfix in ScreenToClient()
28643           - Bugfixes in ClientToScreen()
28644
28645 2004-10-17 22:51  pbartok
28646
28647         * XplatUIStructs.cs:
28648           - Added WS_EX styles to WindowStyles enumeration
28649
28650 2004-10-17 22:50  pbartok
28651
28652         * XplatUI.cs, XplatUIDriver.cs:
28653           - Added method for enabling/disabling windows
28654           - Added method for setting window modality
28655           - Added method for setting topmost window
28656
28657 2004-10-17 22:49  pbartok
28658
28659         * ThemeWin32Classic.cs:
28660           - Added ToolTip drawing code
28661
28662 2004-10-17 22:49  pbartok
28663
28664         * Theme.cs:
28665           - Added ToolTip abstracts
28666
28667 2004-10-17 22:47  pbartok
28668
28669         * Form.cs:
28670           - Fixed Form.ControlCollection to handle owner relations
28671           - Added Owner/OwnedForms handling
28672           - Implemented Z-Ordering for owned forms
28673           - Removed unneeded private overload of ShowDialog
28674           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
28675             so I hope)
28676           - Fixed Close(), had wrong default
28677           - Added firing of OnLoad event
28678           - Added some commented out debug code for Ownership handling
28679
28680 2004-10-17 22:16  pbartok
28681
28682         * Control.cs:
28683           - Fixed/implemented flat list of controls
28684
28685 2004-10-17 22:14  pbartok
28686
28687         * Application.cs:
28688           - Added code to simulate modal dialogs on Win32
28689
28690 2004-10-17 16:11  jordi
28691
28692         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
28693           mouse event
28694
28695 2004-10-17 13:39  jordi
28696
28697         * MenuAPI.cs: menu drawing fixes
28698
28699 2004-10-15 09:10  ravindra
28700
28701         * StructFormat.cs: General Enum.
28702
28703 2004-10-15 09:09  ravindra
28704
28705         * SizeGripStyle.cs: Enum for Form.
28706
28707 2004-10-15 09:08  ravindra
28708
28709         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
28710           in Theme for ListView.
28711
28712 2004-10-15 09:06  ravindra
28713
28714         * ColumnHeader.cs: Flushing some formatting changes.
28715
28716 2004-10-15 09:05  ravindra
28717
28718         * ListViewItem.cs: Implemented GetBounds method and fixed coding
28719           style.
28720
28721 2004-10-15 09:03  ravindra
28722
28723         * ListView.cs: Implemented Paint method and fixed coding style.
28724
28725 2004-10-15 07:34  jordi
28726
28727         * MenuAPI.cs: fix for X11
28728
28729 2004-10-15 07:32  ravindra
28730
28731         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
28732                 - Renamed Paint() method to Draw() for clarity. Also, moved
28733                 DrawImage() to OnPaint().
28734
28735 2004-10-15 07:25  ravindra
28736
28737         * CheckBox.cs, RadioButton.cs:
28738                 - Removed Redraw (), we get it from ButtonBase.
28739                 - Implemented Paint (), to do class specific painting.
28740
28741 2004-10-15 07:16  ravindra
28742
28743         * ButtonBase.cs:
28744                 - Redraw () is not virtual now.
28745                 - Added an internal virtual method Paint (), so that
28746                 derived classes can do their painting on their own.
28747                 - Modified OnPaint () to call Paint ().
28748
28749 2004-10-15 06:43  jordi
28750
28751         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
28752           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
28753
28754 2004-10-15 00:30  ravindra
28755
28756         * MessageBox.cs:
28757                 - MessageBox on windows does not have min/max buttons.
28758                 This change in CreateParams fixes this on Windows. We
28759                 still need to implement this windowstyle behavior in
28760                 our X11 driver.
28761
28762 2004-10-14 05:14  ravindra
28763
28764         * ToolBar.cs:
28765                 - Changed Redraw () to do a Refresh () always.
28766                 - Fixed the MouseMove event handling when mouse is pressed,
28767                 ie drag event handling.
28768                 - Replaced the usage of ToolBarButton.Pressed property to
28769                 ToolBarButton.pressed internal variable.
28770
28771 2004-10-14 05:10  ravindra
28772
28773         * ToolBarButton.cs:
28774                 - Added an internal member 'inside' to handle mouse move
28775                 with mouse pressed ie mouse drag event.
28776                 - Changed 'Pressed' property to return true only when
28777                 'inside' and 'pressed' are both true.
28778                 - Some coding style love.
28779
28780 2004-10-14 00:17  ravindra
28781
28782         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
28783           public method.
28784
28785 2004-10-14 00:15  ravindra
28786
28787         * ButtonBase.cs: Redraw () related improvements.
28788
28789 2004-10-14 00:14  ravindra
28790
28791         * MessageBox.cs: Moved InitFormSize () out of Paint method and
28792           removed unnecessary calls to Button.Show () method.
28793
28794 2004-10-13 17:50  pbartok
28795
28796         * XplatUIX11.cs:
28797           - Formatting fix
28798           - Removed destroying of window until we solve the problem of X
28799             destroying the window before us on shutdown
28800
28801 2004-10-13 16:32  pbartok
28802
28803         * ButtonBase.cs:
28804           - Now Redraws on MouseUp for FlatStyle Flat and Popup
28805
28806 2004-10-13 14:18  pbartok
28807
28808         * XplatUIX11.cs:
28809           - Added code to destroy the X window
28810
28811 2004-10-13 14:18  pbartok
28812
28813         * XplatUIWin32.cs:
28814           - Added code to destroy a window
28815
28816 2004-10-13 14:12  pbartok
28817
28818         * ButtonBase.cs:
28819           - Added the Redraw on Resize that got dropped in the last rev
28820
28821 2004-10-13 09:06  pbartok
28822
28823         * ThemeWin32Classic.cs:
28824           - Path from John BouAntoun:
28825             * Fix check rendering (centre correctly for normal style, offset
28826               correctly for FlatStyle).
28827             * Fix border color usage (use backcolor) for FlatStyle.Popup
28828             * Use checkbox.Capture instead of checkbox.is_pressed when
28829               rendering flatstyle states.
28830
28831 2004-10-12 21:48  pbartok
28832
28833         * ThemeWin32Classic.cs:
28834           - Removed all occurences of SystemColors and replaced them with the
28835             matching theme color
28836
28837 2004-10-12 21:41  pbartok
28838
28839         * ThemeWin32Classic.cs:
28840           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
28841             him using the function for flatstyle drawing
28842           - Changed functions to use the new version of CPDrawBorder3D
28843
28844 2004-10-12 21:15  pbartok
28845
28846         * ControlPaint.cs:
28847           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
28848             match MS documentation. They need to return defined colors if the
28849             passed color matches the configured control color. Thanks to John
28850             BouAntoun for pointing this out.
28851
28852 2004-10-12 20:57  pbartok
28853
28854         * Control.cs:
28855           - Fix from John BouAntoun: Raise ForeColorChanged event when text
28856             color is changed
28857
28858 2004-10-12 20:46  pbartok
28859
28860         * CheckBox.cs:
28861           - Fix from John BouAntoun: Now properly sets the Appearance property
28862
28863 2004-10-12 20:45  pbartok
28864
28865         * ThemeWin32Classic.cs:
28866           - Fixes from John BouAntoun: now handles forecolors and backcolors
28867             for flatstyle rendered controls much better; It also fixes normal
28868             checkbox rendering when pushed or disabled.
28869
28870 2004-10-08 02:50  jordi
28871
28872         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
28873           work
28874
28875 2004-10-07 08:56  jordi
28876
28877         * ThemeWin32Classic.cs: Removes deletion of cached brushes
28878
28879 2004-10-06 03:59  jordi
28880
28881         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
28882           XplatUIWin32.cs: removes warnings from compilation
28883
28884 2004-10-05 12:23  jackson
28885
28886         * RadioButton.cs: Fix ctor
28887
28888 2004-10-05 11:10  pbartok
28889
28890         * MessageBox.cs:
28891           - Partial implementation by Benjamin Dasnois
28892
28893 2004-10-05 10:15  jackson
28894
28895         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
28896           by John BouAntoun
28897
28898 2004-10-05 03:07  ravindra
28899
28900         * ToolBar.cs:
28901                 - Removed a private method, Draw ().
28902                 - Fixed the ButtonDropDown event handling.
28903                 - Fixed MouseMove event handling.
28904
28905 2004-10-05 03:04  ravindra
28906
28907         * ThemeWin32Classic.cs:
28908                 - Added DrawListView method and ListViewDefaultSize property.
28909                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
28910                 - Changed DOS style CRLF to Unix format (dos2unix).
28911
28912 2004-10-05 03:03  ravindra
28913
28914         * Theme.cs:
28915                 - Added DrawListView method and ListViewDefaultSize property.
28916
28917 2004-10-05 02:42  ravindra
28918
28919         * ToolBarButton.cs: Added an internal member dd_pressed to handle
28920           clicks on DropDown arrow.
28921
28922 2004-10-04 22:56  jackson
28923
28924         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
28925           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
28926           Control handle the buffers, derived classes should not have to
28927           CreateBuffers themselves.
28928
28929 2004-10-04 21:20  jackson
28930
28931         * StatusBar.cs: The control handles resizing the buffers now.
28932
28933 2004-10-04 21:18  jackson
28934
28935         * Control.cs: When resizing the buffers should be invalidated. This
28936           should be handled in Control not in derived classes.
28937
28938 2004-10-04 14:45  jackson
28939
28940         * TabPage.cs: oops
28941
28942 2004-10-04 02:14  pbartok
28943
28944         * LeftRightAlignment.cs:
28945           - Initial check-in
28946
28947 2004-10-04 01:09  jordi
28948
28949         * ThemeWin32Classic.cs: fixes right button position causing right
28950           button not showing on horizontal scrollbars
28951
28952 2004-10-02 13:12  pbartok
28953
28954         * XplatUIX11.cs:
28955           - Simplified the Invalidate method by using an X call instead of
28956             generating the expose ourselves
28957           - Added an expose when the window background is changed
28958           - Implemented ClientToScreen method
28959
28960 2004-10-02 13:08  pbartok
28961
28962         * XplatUIWin32.cs:
28963           - Added Win32EnableWindow method (test for implementing modal
28964           dialogs)
28965           - Added ClientToScreen method and imports
28966
28967 2004-10-02 13:07  pbartok
28968
28969         * XplatUI.cs, XplatUIDriver.cs:
28970           - Added ClientToScreen coordinate translation method
28971
28972 2004-10-02 13:06  pbartok
28973
28974         * KeyPressEventArgs.cs:
28975           - Fixed access level for constructor
28976
28977 2004-10-02 13:06  pbartok
28978
28979         * NativeWindow.cs:
28980           - Changed access level for the window_collection hash table
28981
28982 2004-10-02 13:05  pbartok
28983
28984         * Form.cs:
28985           - Added KeyPreview property
28986           - Added Menu property (still incomplete, pending Jordi's menu work)
28987           - Implemented ProcessCmdKey
28988           - Implemented ProcessDialogKey
28989           - Implemented ProcessKeyPreview
28990
28991 2004-10-02 13:02  pbartok
28992
28993         * Control.cs:
28994           - Added private method to get the Control object from the window
28995           handle
28996           - Implemented ContextMenu property
28997           - Implemented PointToScreen
28998           - Implemented PreProcessMessage
28999           - Implemented IsInputChar
29000           - Implemented IsInputKey
29001           - Implemented ProcessCmdKey
29002           - Completed ProcessKeyEventArgs
29003           - Fixed message loop to call the proper chain of functions on key
29004           events
29005           - Implemented ProcessDialogChar
29006           - Implemented ProcessDialogKey
29007           - Implemented ProcessKeyMessage
29008           - Implemented ProcessKeyPreview
29009           - Added RaiseDragEvent stub (MS internal method)
29010           - Added RaiseKeyEvent stub (MS internal method)
29011           - Added RaiseMouseEvent stub (MS Internal method)
29012           - Added RaisePaintEvent stub (MS Internal method)
29013           - Added ResetMouseEventArgs stub (MS Internal method)
29014           - Implemented RtlTranslateAlignment
29015           - Implemented RtlTranslateContent
29016           - Implemented RtlTranslateHorizontal
29017           - Implemented RtlTranslateLeftRight
29018           - Added generation of KeyPress event
29019
29020 2004-10-02 05:57  ravindra
29021
29022         * ListViewItem.cs: Added attributes.
29023
29024 2004-10-02 05:32  ravindra
29025
29026         * ListView.cs: Added attributes.
29027
29028 2004-10-01 11:53  jackson
29029
29030         * Form.cs: Implement the Close method so work on MessageBox can
29031           continue.
29032
29033 2004-09-30 14:06  pbartok
29034
29035         * XplatUIX11.cs:
29036           - Bug fixes
29037
29038 2004-09-30 11:34  jackson
29039
29040         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
29041
29042 2004-09-30 07:26  ravindra
29043
29044         * ListViewItemConverter.cs: Converter for ListViewItem.
29045
29046 2004-09-30 07:26  ravindra
29047
29048         * SortOrder.cs: Enum for ListView control.
29049
29050 2004-09-30 07:25  ravindra
29051
29052         * ColumnHeader.cs: Supporting class for ListView control.
29053
29054 2004-09-30 07:24  ravindra
29055
29056         * ListView.cs, ListViewItem.cs: Initial implementation.
29057
29058 2004-09-30 07:20  ravindra
29059
29060         * ItemActivation.cs: Enum for ListView Control.
29061
29062 2004-09-29 20:29  pbartok
29063
29064         * XplatUIX11.cs:
29065           - Added lookup of pixel value for background color; tries to get a
29066             color 'close' to the requested color, it avoids having to create a
29067             colormap.  Depending on the display this could mean the used color
29068             is slightly off the desired color. Might have to change it to a more
29069             resource intensive colormap approach, but it will work as a
29070           workaround to avoid red screens.
29071
29072 2004-09-29 14:27  jackson
29073
29074         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
29075
29076 2004-09-28 12:44  pbartok
29077
29078         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
29079           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
29080           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
29081           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
29082           TrackBar.cs, VScrollBar.cs:
29083           - Streamlined Theme interfaces:
29084             * Each DrawXXX method for a control now is passed the object for
29085               the control to be drawn in order to allow accessing any state the
29086               theme might require
29087
29088             * ControlPaint methods for the theme now have a CP prefix to avoid
29089               name clashes with the Draw methods for controls
29090
29091             * Every control now retrieves it's DefaultSize from the current
29092             theme
29093
29094 2004-09-28 12:17  jackson
29095
29096         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
29097           drawing
29098
29099 2004-09-24 14:57  jackson
29100
29101         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
29102           Gives us a nice little performance boost.
29103
29104 2004-09-24 12:02  jackson
29105
29106         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
29107           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
29108           Control and supporting classes. Initial checkin
29109
29110 2004-09-23 13:08  jackson
29111
29112         * Form.cs: Temp build fixage
29113
29114 2004-09-23 01:39  ravindra
29115
29116         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
29117           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
29118           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
29119           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
29120           EventHandlers needed by ListView Control.
29121
29122 2004-09-22 14:12  pbartok
29123
29124         * ScrollableControl.cs:
29125           - Implemented DockPadding property
29126           - Implemented AutoScroll property
29127           - Implemented AutoScrollMargin property
29128           - Implemented AutoScrollMinSize property
29129           - Implemented AutoScrollPosition property
29130           - Implemented DisplayRectangle property (still incomplete)
29131           - Implemented CreateParams property
29132           - Implemented HScroll property
29133           - Implemented VScroll property
29134           - Implemented OnVisibleChanged property
29135
29136 2004-09-22 14:09  pbartok
29137
29138         * Form.cs:
29139           - Added Form.ControllCollection class
29140           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
29141             RemoveOwnedForm (still incomplete, missing on-top and common
29142             minimize/maximize behaviour)
29143           - Added StartPosition property (still incomplete, does not use when
29144             creating the form)
29145           - Added ShowDialog() methods (still incomplete, missing forcing the
29146             dialog modal)
29147
29148 2004-09-22 14:05  pbartok
29149
29150         * Application.cs:
29151           - Added message loop for modal dialogs
29152
29153 2004-09-22 14:02  pbartok
29154
29155         * GroupBox.cs:
29156           - Fixed wrong types for events
29157
29158 2004-09-22 14:00  pbartok
29159
29160         * Shortcut.cs, FormWindowState.cs:
29161           - Fixed wrong values
29162
29163 2004-09-22 12:01  jackson
29164
29165         * Control.cs: Text is never null
29166
29167 2004-09-20 22:14  pbartok
29168
29169         * XplatUIWin32.cs:
29170           - Fixed accessibility level for Idle handler
29171
29172 2004-09-20 18:54  jackson
29173
29174         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29175           XplatUIX11.cs: New message loop that uses poll so we don't get a
29176           busy loop
29177
29178 2004-09-17 10:43  pbartok
29179
29180         * ScrollBar.cs:
29181           - Fixed behaviour of arrow buttons. Now properly behaves like
29182             Buttons (and like Microsoft's scrollbar arrow buttons)
29183
29184 2004-09-17 10:14  pbartok
29185
29186         * ScrollBar.cs:
29187           - Added missing release of keyboard/mouse capture
29188
29189 2004-09-17 06:18  jordi
29190
29191         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
29192           Theme.cs: Very early menu support
29193
29194 2004-09-16 17:45  pbartok
29195
29196         * XplatUIWin32.cs:
29197           - Fixed sending a window to the front
29198           - Added overload for SetWindowPos to avoid casting
29199
29200 2004-09-16 17:44  pbartok
29201
29202         * Control.cs:
29203           - Added SendToBack and BringToFront methods
29204
29205 2004-09-16 07:00  ravindra
29206
29207         * Copyright: Added Novell URL.
29208
29209 2004-09-16 07:00  ravindra
29210
29211         * ToolBar.cs: Invalidate should be done before redrawing.
29212
29213 2004-09-15 21:19  ravindra
29214
29215         * ColumnHeaderStyle.cs: Enum for ListView Control.
29216
29217 2004-09-15 21:18  ravindra
29218
29219         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
29220           ListView Control.
29221
29222 2004-09-13 18:26  jackson
29223
29224         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
29225           properly
29226
29227 2004-09-13 18:13  jackson
29228
29229         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
29230           a second thread and post messages into the main threads message
29231           queue. This makes timing much more consistent. Both win2K and XP
29232           have a minimum timer value of 15 milliseconds, so we now do this
29233           too.
29234
29235 2004-09-13 15:18  pbartok
29236
29237         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29238           XplatUIX11.cs:
29239           - Added Z-Ordering methods
29240
29241 2004-09-13 10:56  pbartok
29242
29243         * Form.cs:
29244           - Fixed #region names
29245           - Moved properties and methods into their proper #regions
29246
29247 2004-09-13 10:51  pbartok
29248
29249         * Form.cs:
29250           - Added Accept and CancelButton properties
29251           - Added ProcessDialogKey() method
29252
29253 2004-09-13 08:18  pbartok
29254
29255         * IWindowTarget.cs:
29256           - Initial check-in
29257
29258 2004-09-10 21:50  pbartok
29259
29260         * Control.cs:
29261           - Added DoDragDrop() [incomplete]
29262           - Properly implemented 'Visible' handling
29263           - Added SetVisibleCore()
29264           - Implemented FindChildAtPoint()
29265           - Implemented GetContainerControl()
29266           - Implemented Hide()
29267
29268 2004-09-10 19:28  pbartok
29269
29270         * Control.cs:
29271           - Moved methods into their appropriate #regions
29272           - Reordered methods within regions alphabetically
29273
29274 2004-09-10 18:57  pbartok
29275
29276         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29277           - Added method to retrieve text from window
29278
29279 2004-09-10 18:56  pbartok
29280
29281         * Control.cs:
29282           - Moved some internal functions into the internal region
29283           - Implemented FontHeight
29284           - Implemented RenderRightToLeft
29285           - Implemented ResizeRedraw
29286           - Implemented ShowFocusCues
29287           - Implemented ShowKeyboardCues
29288           - Implemented FromChildHandle
29289           - Implemented FromHandle
29290           - Implemented IsMnemonic
29291           - Implemented ReflectMessage
29292           - All public and protected Static Methods are now complete
29293
29294 2004-09-10 16:54  pbartok
29295
29296         * Control.cs:
29297           - Implemented remaining missing public instance properties
29298           - Alphabetized some out of order properties
29299
29300 2004-09-10 05:51  ravindra
29301
29302         * PictureBox.cs: Added a check for null image.
29303
29304 2004-09-10 00:59  jordi
29305
29306         * GroupBox.cs: remove cvs tag
29307
29308 2004-09-09 05:25  ravindra
29309
29310         * ToolBar.cs: Make redraw accessible from ToolBarButton.
29311
29312 2004-09-09 05:23  ravindra
29313
29314         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
29315           parent redraw.
29316
29317 2004-09-09 02:28  pbartok
29318
29319         * ThemeWin32Classic.cs:
29320           - Improve disabled string look
29321
29322 2004-09-09 01:15  jordi
29323
29324         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
29325           args and handler
29326
29327 2004-09-08 23:56  ravindra
29328
29329         * ItemBoundsPortion.cs: It's enum, not a class!
29330
29331 2004-09-08 23:47  ravindra
29332
29333         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
29334           Enums for Form.
29335
29336 2004-09-08 21:13  ravindra
29337
29338         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
29339           ListView control.
29340
29341 2004-09-08 21:03  ravindra
29342
29343         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
29344           avoid crash.
29345
29346 2004-09-08 21:01  ravindra
29347
29348         * ScrollableControl.cs: Removed unreachable code.
29349
29350 2004-09-08 06:45  jordi
29351
29352         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
29353
29354 2004-09-08 01:00  jackson
29355
29356         * XplatUIX11.cs: Only run the timers when updating the message
29357           queue. This effectively gives X messages a higher priority then
29358           timer messages. Timers still need love though
29359
29360 2004-09-07 14:01  jackson
29361
29362         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
29363           this for us and the handle is no longer valid.
29364
29365 2004-09-07 13:59  jackson
29366
29367         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
29368           loop that manages to not crash. TODO: Add poll and cleanup timers
29369
29370 2004-09-07 11:12  jordi
29371
29372         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
29373
29374 2004-09-07 03:40  jordi
29375
29376         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
29377           fixes, methods, multiple links
29378
29379 2004-09-06 06:55  jordi
29380
29381         * Control.cs: Caches ClientRectangle rectangle value
29382
29383 2004-09-05 02:03  jordi
29384
29385         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
29386           certain situations
29387
29388 2004-09-04 11:10  jordi
29389
29390         * Label.cs: Refresh when font changed
29391
29392 2004-09-02 16:24  pbartok
29393
29394         * Control.cs:
29395           - Added sanity check to creation of double buffer bitmap
29396
29397 2004-09-02 16:24  pbartok
29398
29399         * ButtonBase.cs:
29400           - Fixed selection of text color
29401           - Fixed handling of resize event; now properly recreates double
29402             buffering bitmap
29403           - Added missing assignment of TextAlignment
29404           - Added proper default for TextAlignment
29405
29406 2004-09-02 14:26  pbartok
29407
29408         * RadioButton.cs:
29409           - Added missing RadioButton.RadioButtonAccessibleObject class
29410
29411 2004-09-02 14:26  pbartok
29412
29413         * Control.cs:
29414           - Added missing Control.ControlAccessibleObject class
29415           - Started to implement Select()ion mechanisms, still very incomplete
29416
29417 2004-09-02 14:25  pbartok
29418
29419         * AccessibleObject.cs:
29420           - Added missing methods
29421
29422 2004-09-02 14:23  pbartok
29423
29424         * AccessibleNavigation.cs, AccessibleSelection.cs:
29425           - Initial check-in
29426
29427 2004-09-02 10:32  jordi
29428
29429         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
29430           pool for pens, brushes, and hatchbruses
29431
29432 2004-09-01 15:30  jackson
29433
29434         * StatusBar.cs: Fix typo
29435
29436 2004-09-01 14:44  pbartok
29437
29438         * RadioButton.cs:
29439           - Fixed state
29440
29441 2004-09-01 14:39  pbartok
29442
29443         * Button.cs, RadioButton.cs:
29444           - Functional initial check-in
29445
29446 2004-09-01 14:01  pbartok
29447
29448         * CheckBox.cs:
29449           - Added missing default
29450           - Added missing region mark
29451
29452 2004-09-01 09:10  jordi
29453
29454         * Label.cs: fixes method signatures, new methods, events, fixes
29455           autosize
29456
29457 2004-09-01 07:19  jordi
29458
29459         * Control.cs: Init string variables with an empty object
29460
29461 2004-09-01 04:20  jordi
29462
29463         * Control.cs: fires OnFontChanged event
29464
29465 2004-08-31 20:07  pbartok
29466
29467         * ButtonBase.cs:
29468           - Enabled display of strings
29469
29470 2004-08-31 20:05  pbartok
29471
29472         * Form.cs:
29473           - Added (partial) implementation of DialogResult; rest needs to be
29474             implemented when the modal loop code is done
29475
29476 2004-08-31 19:55  pbartok
29477
29478         * CheckBox.cs:
29479           - Fixed to match the removal of the needs_redraw concept
29480
29481 2004-08-31 19:55  pbartok
29482
29483         * ButtonBase.cs:
29484           - Removed the rather odd split between 'needs redraw' and redrawing
29485           - Now handles the events that require regeneration (ambient
29486             properties and size)
29487
29488 2004-08-31 19:41  pbartok
29489
29490         * Control.cs:
29491           - Added firing of BackColorChanged event
29492           - Added TopLevelControl property
29493           - Fixed handling of WM_ERASEBKGRND message
29494
29495 2004-08-31 12:49  pbartok
29496
29497         * ButtonBase.cs:
29498           - Removed debug
29499           - Minor fixes
29500
29501 2004-08-31 12:48  pbartok
29502
29503         * CheckBox.cs:
29504           - Finished (famous last words)
29505
29506 2004-08-31 04:35  jordi
29507
29508         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
29509           scrolling bugs, adds new methods
29510
29511 2004-08-30 14:42  pbartok
29512
29513         * CheckBox.cs:
29514           - Implemented CheckBox drawing code
29515
29516 2004-08-30 14:42  pbartok
29517
29518         * ButtonBase.cs:
29519           - Made Redraw() and CheckRedraw() virtual
29520           - Improved mouse up/down/move logic to properly track buttons
29521
29522 2004-08-30 09:44  pbartok
29523
29524         * CheckBox.cs:
29525           - Updated to fix broken build. Not complete yet.
29526
29527 2004-08-30 09:28  pbartok
29528
29529         * CheckState.cs:
29530           - Initial checkin
29531
29532 2004-08-30 09:17  pbartok
29533
29534         * Appearance.cs:
29535           - Initial check-in
29536
29537 2004-08-27 16:12  ravindra
29538
29539         * ToolBarButton.cs: Added TypeConverter attribute.
29540
29541 2004-08-27 16:07  ravindra
29542
29543         * ImageIndexConverter.cs: Implemented.
29544
29545 2004-08-27 14:17  pbartok
29546
29547         * Control.cs:
29548           - Removed unneeded stack vars
29549           - First attempt to fix sizing issues when layout is suspended
29550
29551 2004-08-25 15:35  jordi
29552
29553         * ScrollBar.cs: more fixes to scrollbar
29554
29555 2004-08-25 14:04  ravindra
29556
29557         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
29558           Added the missing divider code and grip for ToolBar Control.
29559
29560 2004-08-25 13:20  pbartok
29561
29562         * Control.cs:
29563           - Control now properly passes the ambient background color to child
29564             controls
29565
29566 2004-08-25 13:20  jordi
29567
29568         * ScrollBar.cs: small bug fix regarding bar position
29569
29570 2004-08-25 12:33  pbartok
29571
29572         * Timer.cs:
29573           - Now only calls SetTimer or KillTimer if the enabled state has
29574           changed
29575
29576 2004-08-25 12:33  pbartok
29577
29578         * XplatUIWin32.cs:
29579           - Fixed timer handling, now seems to work
29580           - Improved error message for window creation
29581
29582 2004-08-25 12:32  pbartok
29583
29584         * Control.cs:
29585           - Fixed generation of MouseUp message
29586
29587 2004-08-25 12:29  jordi
29588
29589         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
29590           and fixes for progressbar
29591
29592 2004-08-24 18:43  ravindra
29593
29594         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
29595           in ToolBar control.
29596
29597 2004-08-24 17:15  pbartok
29598
29599         * Panel.cs:
29600           - Added #region
29601           - Added missing events
29602           - Alphabetized
29603
29604 2004-08-24 17:14  pbartok
29605
29606         * StatusBar.cs, PictureBox.cs:
29607           - Now uses Control's CreateParams
29608
29609 2004-08-24 16:36  pbartok
29610
29611         * XplatUIX11.cs:
29612           - Fixed background color handling
29613           - Fixed sending of enter/leave events on a grab
29614
29615 2004-08-24 16:35  pbartok
29616
29617         * X11Structs.cs:
29618           - Refined definitions for CrossingEvent
29619
29620 2004-08-24 12:37  jordi
29621
29622         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
29623           formmating, methods signature, and adds missing events
29624
29625 2004-08-24 12:24  jordi
29626
29627         * Control.cs: fire OnEnabledChanged event
29628
29629 2004-08-24 11:17  pbartok
29630
29631         * XplatUIWin32.cs:
29632           - Implemented SetTimer() and KillTimer()
29633
29634 2004-08-24 11:16  pbartok
29635
29636         * XplatUIX11.cs:
29637           - Now uses Remove instead of Add to kill the timer
29638
29639 2004-08-24 10:16  jackson
29640
29641         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
29642           picture boxes in the theme now. Draw picture box borders and obey
29643           sizing modes
29644
29645 2004-08-24 05:49  jackson
29646
29647         * Timer.cs: Remove top secret debugging code
29648
29649 2004-08-24 05:34  jackson
29650
29651         * PictureBox.cs: Temp hack to make picture boxes draw their full
29652           image
29653
29654 2004-08-24 05:29  jackson
29655
29656         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29657           XplatUIX11.cs: Move timers to the driver level. On X they are
29658           queued by the driver and checked on idle.
29659
29660 2004-08-24 01:07  jackson
29661
29662         * XplatUIX11.cs: Use a queue for async messages instead of passing
29663           them as ClientMessages since that was totally broken. Also simply
29664           check for events and return an idle message if none are found. This
29665           gives us an idle handler, and prevents deadlocking when no messages
29666           are in the queue.
29667
29668 2004-08-23 18:19  ravindra
29669
29670         * XplatUIWin32.cs: Removed the unwanted destructor.
29671
29672 2004-08-23 17:27  pbartok
29673
29674         * ButtonBase.cs:
29675           - Finishing touches. Works now, just needs some optimizations.
29676
29677 2004-08-23 16:53  jordi
29678
29679         * ScrollBar.cs: small fix
29680
29681 2004-08-23 16:45  pbartok
29682
29683         * Application.cs:
29684           - Removed debug output
29685           - Simplifications
29686
29687 2004-08-23 16:43  jordi
29688
29689         * ScrollBar.cs: [no log message]
29690
29691 2004-08-23 16:10  pbartok
29692
29693         * Form.cs:
29694           - Fixed handling of WM_CLOSE message
29695           - Removed debug output
29696
29697 2004-08-23 16:09  pbartok
29698
29699         * Application.cs:
29700           - Added handling of Idle event
29701           - Added handling of form closing
29702           - Fixed reporting of MessageLoop property
29703           - Removed some unneeded code, should provide a bit of a speedup
29704
29705 2004-08-23 15:22  pbartok
29706
29707         * Control.cs:
29708           - Added InitLayout() method
29709           - Added code to properly perform layout when Anchor or Dock property
29710             is changed
29711           - Changed 'interpretation' of ResumeLayout. MS seems to have a
29712             LAMESPEC, tried to do it in a way that makes sense
29713
29714 2004-08-23 14:10  jordi
29715
29716         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
29717           properties and methods
29718
29719 2004-08-23 13:55  pbartok
29720
29721         * Control.cs:
29722           - Properly fixed Jordi's last fix
29723           - Now uses Cursor's Position property instead of calling XplatUI
29724           directly
29725
29726 2004-08-23 13:44  jordi
29727
29728         * PaintEventHandler.cs: Adding missing attribute
29729
29730 2004-08-23 13:39  pbartok
29731
29732         * Cursor.cs:
29733           - Implemented Position property
29734
29735 2004-08-23 13:39  pbartok
29736
29737         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29738           - Added method to move mouse cursor
29739
29740 2004-08-23 13:39  pbartok
29741
29742         * XplatUIX11.cs:
29743           - Fixed setting of background color
29744           - Added method to move mouse cursor
29745
29746 2004-08-23 13:16  jordi
29747
29748         * Control.cs: avoids null exception
29749
29750 2004-08-22 17:46  jackson
29751
29752         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
29753           PictureBox
29754
29755 2004-08-22 17:40  jackson
29756
29757         * XplatUIX11.cs: Add some missing locks
29758
29759 2004-08-22 15:10  pbartok
29760
29761         * Control.cs, Form.cs:
29762           - Removed OverlappedWindow style from Control, instead it's default
29763             now is child
29764           - Made form windows OverlappedWindow by default
29765
29766 2004-08-22 13:34  jackson
29767
29768         * ScrollBar.cs: Update the position through the Value property so
29769           the OnValueChanged event is raised.
29770
29771 2004-08-22 12:04  pbartok
29772
29773         * SWF.csproj:
29774           - Added Cursor.cs and UserControl.cs
29775
29776 2004-08-22 12:03  pbartok
29777
29778         * Cursor.cs:
29779           - Started implementation, not usable yet
29780
29781 2004-08-22 12:00  pbartok
29782
29783         * UserControl.cs:
29784           - Implemented UserControl (complete)
29785
29786 2004-08-21 19:20  ravindra
29787
29788         * ToolBar.cs: Correcting the formatting mess of VS.NET.
29789
29790 2004-08-21 18:49  ravindra
29791
29792         * ToolBar.cs: Probably this completes the missing attributes in
29793           toolbar control.
29794
29795 2004-08-21 18:03  ravindra
29796
29797         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
29798           Fixed toolbar control signatures.
29799
29800 2004-08-21 16:32  pbartok
29801
29802         * LinkLabel.cs:
29803           - Signature Fixes
29804
29805 2004-08-21 16:30  pbartok
29806
29807         * Label.cs:
29808           - Signature fixes
29809
29810 2004-08-21 16:19  pbartok
29811
29812         * Control.cs, Label.cs:
29813           - Signature fixes
29814
29815 2004-08-21 15:57  pbartok
29816
29817         * ButtonBase.cs:
29818           - Added loads of debug output for development
29819           - Fixed typo in method name
29820
29821 2004-08-21 15:52  pbartok
29822
29823         * ToolBarButtonClickEventArgs.cs:
29824           - Added missing base class
29825
29826 2004-08-21 14:53  pbartok
29827
29828         * Control.cs:
29829           - Updated to match new GrabWindow signature
29830
29831 2004-08-21 14:51  pbartok
29832
29833         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29834           - Added method to get default display size
29835
29836 2004-08-21 14:23  pbartok
29837
29838         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29839           - Added method to query current grab state
29840           - Added argument to allow confining a grab to a window
29841
29842 2004-08-21 14:22  pbartok
29843
29844         * Keys.cs:
29845           - Added [Flags] attribute so that modifiers can be used in bitwise
29846           ops
29847
29848 2004-08-21 14:21  pbartok
29849
29850         * TrackBar.cs, ScrollBar.cs:
29851           - Replaced direct XplatUI calls with their Control counterpart
29852
29853 2004-08-21 13:32  pbartok
29854
29855         * Control.cs:
29856           - Implemented Created property
29857
29858 2004-08-21 13:28  pbartok
29859
29860         * Control.cs:
29861           - Implemented ContainsFocus
29862
29863 2004-08-21 13:26  pbartok
29864
29865         * Control.cs:
29866           - Implemented CausesValidation
29867
29868 2004-08-21 13:21  pbartok
29869
29870         * Control.cs:
29871           - Implemented CanFocus
29872           - Implemented CanSelect
29873           - Implemented Capture
29874
29875 2004-08-21 12:35  pbartok
29876
29877         * XplatUIWin32.cs:
29878           - Fixed bug with Async message handling
29879           - Implemented getting the ModifierKeys
29880
29881 2004-08-21 12:32  jackson
29882
29883         * AsyncMethodResult.cs: Make sure we have the mutex before we
29884           release it. Fixes BeginInvoke on windows
29885
29886 2004-08-21 11:31  pbartok
29887
29888         * XplatUIWin32.cs, XplatUIX11.cs:
29889           - Drivers now return proper mouse state
29890
29891 2004-08-21 10:54  jackson
29892
29893         * Control.cs: Implement EndInvoke
29894
29895 2004-08-21 10:48  jackson
29896
29897         * Timer.cs: Remove unneeded finalizer
29898
29899 2004-08-20 19:52  ravindra
29900
29901         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
29902           in mouse event handling in the ToolBar control.
29903
29904 2004-08-20 19:50  ravindra
29905
29906         * ImageList.cs: Changed draw method to use the arguments passed in
29907           to draw the image.
29908
29909 2004-08-20 18:58  pbartok
29910
29911         * XplatUIStructs.cs:
29912           - Added private message for async communication
29913
29914 2004-08-20 17:38  ravindra
29915
29916         * Control.cs: Made RightToLeft property virtual and removed a
29917           Console.WriteLine.
29918
29919 2004-08-20 14:39  jordi
29920
29921         * ThemeGtk.cs: use style_attach
29922
29923 2004-08-20 14:39  pbartok
29924
29925         * XplatUIWin32.cs:
29926           - Added jackson's Async code from X11 to Win32
29927
29928 2004-08-20 14:09  pbartok
29929
29930         * SWF.csproj:
29931           - Added all new files
29932
29933 2004-08-20 14:09  pbartok
29934
29935         * Control.cs:
29936           - Added call to set window background color
29937
29938 2004-08-20 14:03  pbartok
29939
29940         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
29941           - Added method for setting the window background
29942
29943 2004-08-20 14:02  pbartok
29944
29945         * XplatUIWin32.cs:
29946           - Added method for setting the background color
29947           - Added handling for erasing the window background
29948
29949 2004-08-20 13:45  jordi
29950
29951         * TrackBar.cs: fixes timer, new properties and methods
29952
29953 2004-08-20 13:34  jackson
29954
29955         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
29956           correct thread
29957
29958 2004-08-20 13:22  jackson
29959
29960         * Timer.cs: Timer Tick events are now handed through Controls Async
29961           mechanism so the callbacks are executed in the same thread as X
29962
29963 2004-08-20 13:19  jackson
29964
29965         * XplatUIDriver.cs: Expose functionality to send async messages
29966           through the driver
29967
29968 2004-08-20 13:18  jackson
29969
29970         * Control.cs: Implement Begininvoke
29971
29972 2004-08-20 13:14  jackson
29973
29974         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
29975           messages through the driver
29976
29977 2004-08-20 13:12  jackson
29978
29979         * XplatUIX11.cs: Lock before all X operations. Also added Async
29980           method functionality through XSendEvent
29981
29982 2004-08-20 13:11  jackson
29983
29984         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
29985           This will screw up on 64 bit systems)
29986
29987 2004-08-20 13:10  jackson
29988
29989         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
29990           Async messages through X/Win32
29991
29992 2004-08-19 19:39  pbartok
29993
29994         * XplatUIX11.cs:
29995           - Updated code to match new HandleData.DeviceContext type
29996
29997 2004-08-19 19:38  pbartok
29998
29999         * HandleData.cs:
30000           - Made DeviceContext a generic object to allow usage from various
30001           drivers
30002           - Added support for queueing Windows messages
30003
30004 2004-08-19 19:37  pbartok
30005
30006         * XplatUIWin32.cs:
30007           - Added generation of MouseEnter, MouseLeave and MouseHover events
30008           - Added cleanup on EndPaint
30009
30010 2004-08-19 19:17  pbartok
30011
30012         * Control.cs:
30013           - Added handling of WM_MOUSEHOVER
30014           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
30015           code
30016
30017 2004-08-19 18:55  jordi
30018
30019         * ThemeGtk.cs: fixes button order
30020
30021 2004-08-19 18:12  jordi
30022
30023         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
30024
30025 2004-08-19 17:09  pbartok
30026
30027         * Control.cs:
30028           - Added Right property
30029           - Added RightToLeft property
30030
30031 2004-08-19 16:27  jordi
30032
30033         * ThemeGtk.cs: experimental GTK theme support
30034
30035 2004-08-19 16:26  jordi
30036
30037         * ITheme.cs, Theme.cs: move themes from an interface to a class
30038
30039 2004-08-19 16:25  jordi
30040
30041         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
30042           theme enhancaments
30043
30044 2004-08-19 16:04  pbartok
30045
30046         * XplatUIX11.cs:
30047           - Added colormap basics
30048           - Added a way to re-initialize with a different display handle
30049           - Fixed setting of the window background color
30050           - Added various X11 imports related to colors and colormaps
30051
30052 2004-08-19 15:51  pbartok
30053
30054         * X11Structs.cs:
30055           - Removed packing hints (Paolo suggested this a while back)
30056           - fixed colormap type
30057           - Added default Atom types
30058           - Added Screen and color structs and enums
30059
30060 2004-08-19 15:39  pbartok
30061
30062         * ImageList.cs:
30063           - Added missing Draw() method
30064           - Added missing RecreateHandle event
30065
30066 2004-08-19 15:30  pbartok
30067
30068         * Form.cs:
30069           - Added handling of WM_CLOSE
30070
30071 2004-08-18 13:16  jordi
30072
30073         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
30074           a table
30075
30076 2004-08-18 09:56  jordi
30077
30078         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
30079
30080 2004-08-17 15:31  ravindra
30081
30082         * SWF.csproj: Updated project.
30083
30084 2004-08-17 15:25  pbartok
30085
30086         * Control.cs:
30087           - Drawing improvement; don't call UpdateBounds if we are not visible
30088             (or have been minimized)
30089
30090 2004-08-17 15:24  pbartok
30091
30092         * XplatUIWin32.cs:
30093           - Finished IsVisible
30094           - Added Win32GetWindowPlacement
30095
30096 2004-08-17 15:08  jackson
30097
30098         * Panel.cs: Initial checkin of the Panel
30099
30100 2004-08-17 14:25  pbartok
30101
30102         * Control.cs:
30103           - Fixed broken handling of default window sizes
30104
30105 2004-08-17 13:29  jackson
30106
30107         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
30108           has a large startup time.
30109
30110 2004-08-17 10:25  jackson
30111
30112         * HandleData.cs: union areas properly
30113
30114 2004-08-17 10:12  jackson
30115
30116         * HandleData.cs: union areas properly
30117
30118 2004-08-16 20:00  ravindra
30119
30120         * ToolBar.cs, ToolBarButton.cs: Added attributes.
30121
30122 2004-08-16 18:48  ravindra
30123
30124         * ToolBar.cs: Added attributes.
30125
30126 2004-08-16 17:17  ravindra
30127
30128         * SWF.csproj: Updated project.
30129
30130 2004-08-16 17:16  jackson
30131
30132         * XplatUIX11.cs: Check for more expose events before sending a
30133           WM_PAINT so they can all be grouped together. This makes dragging a
30134           window across another window redraw in a sane way.
30135
30136 2004-08-16 15:47  pbartok
30137
30138         * Control.cs:
30139           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
30140             support OnMouseEnter/Leave()
30141           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
30142             exposure handling
30143
30144 2004-08-16 15:46  pbartok
30145
30146         * XplatUIStructs.cs, XplatUIX11.cs:
30147           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
30148           OnMouseEnter/Leave()
30149
30150 2004-08-16 15:34  jackson
30151
30152         * XplatUIX11.cs: Group multiple expose events in HandleData, make
30153           sure messages get the message field set to WM_NULL if they are not
30154           handled.
30155
30156 2004-08-16 15:24  jackson
30157
30158         * HandleData.cs: HandleData is used for storing message information
30159           for window handles
30160
30161 2004-08-15 17:23  ravindra
30162
30163         * ColorDepth.cs: Added attribute.
30164
30165 2004-08-15 17:23  ravindra
30166
30167         * SWF.csproj: Updated project for ToolBar Control.
30168
30169 2004-08-15 17:20  ravindra
30170
30171         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
30172           control and also dos2unix format.
30173
30174 2004-08-15 17:13  ravindra
30175
30176         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
30177           ToolBarButtonClickEventArgs.cs,
30178           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
30179           ToolBarTextAlign.cs: First Implementation of ToolBar control.
30180
30181 2004-08-15 15:31  pbartok
30182
30183         * ButtonBase.cs:
30184           - First (mostly) working version
30185
30186 2004-08-13 16:15  pbartok
30187
30188         * Control.cs:
30189           - Fixed Anchor default
30190
30191 2004-08-13 15:43  pbartok
30192
30193         * Control.cs:
30194           - Changed GetCursorPos signature
30195
30196 2004-08-13 15:42  pbartok
30197
30198         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
30199           - Changed signature for GetCursorPos
30200
30201 2004-08-13 15:25  pbartok
30202
30203         * XplatUIX11.cs:
30204           - Cleanup
30205           - Fixed resizing/exposure handling
30206
30207 2004-08-13 15:22  jordi
30208
30209         * ThemeWin32Classic.cs: removes redundant code and fixes issues
30210           with tickposition
30211
30212 2004-08-13 14:55  jordi
30213
30214         * TrackBar.cs: change from wndproc to events
30215
30216 2004-08-13 13:00  jordi
30217
30218         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30219           XplatUIX11.cs: implements PointToClient (ScreenToClient)
30220
30221 2004-08-13 12:53  pbartok
30222
30223         * XplatUIWin32.cs:
30224           - Changed GetWindowPos to also provide client area size
30225           - Fixed broken prototypes for several win32 functions
30226
30227 2004-08-13 12:53  pbartok
30228
30229         * XplatUI.cs, XplatUIDriver.cs:
30230           - Changed GetWindowPos to also provide client area size
30231
30232 2004-08-13 12:52  pbartok
30233
30234         * XplatUIX11.cs:
30235           - Added generation of WM_POSCHANGED
30236           - Changed GetWindowPos to also provide client area size
30237
30238 2004-08-13 12:52  pbartok
30239
30240         * Control.cs:
30241           - Added Dispose() and destructor
30242           - Fixed resizing and bounds calculation
30243           - Fixed Layout
30244           - Added memory savings for invisible windows
30245
30246 2004-08-13 12:46  jordi
30247
30248         * TrackBar.cs: adds timer and grap window
30249
30250 2004-08-13 10:25  jackson
30251
30252         * Timer.cs: SWF Timer
30253
30254 2004-08-12 16:59  pbartok
30255
30256         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30257           - Implemented method to get current mouse position
30258
30259 2004-08-12 14:29  jordi
30260
30261         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
30262           enhancement, fix mouse problems, highli thumb, etc
30263
30264 2004-08-12 13:31  pbartok
30265
30266         * Control.cs:
30267           - Fixed Anchoring bugs
30268
30269 2004-08-12 13:01  jackson
30270
30271         * StatusBar.cs: Don't forget things
30272
30273 2004-08-12 12:54  jackson
30274
30275         * ThemeWin32Classic.cs: Handle owner draw status bars
30276
30277 2004-08-12 12:54  jackson
30278
30279         * StatusBar.cs: Implement missing properties, events, and methods.
30280           Handle mouse clicking
30281
30282 2004-08-12 10:19  jackson
30283
30284         * StatusBarPanelClickEventArgs.cs,
30285           StatusBarPanelClickEventHandler.cs: Classes for handling status
30286           bar panel click events
30287
30288 2004-08-12 10:10  jackson
30289
30290         * Control.cs: Add missing properties
30291
30292 2004-08-12 09:46  pbartok
30293
30294         * BindingsManagerBase.cs:
30295           - Name changed to BindingManagerBase.cs
30296
30297 2004-08-12 09:25  jordi
30298
30299         * ScrollableControl.cs: calls ctrlbase instead of exeception
30300
30301 2004-08-11 16:28  pbartok
30302
30303         * InputLanguageChangingEventArgs.cs:
30304           - Never check in before compiling. Fixes the last check-in
30305
30306 2004-08-11 16:26  pbartok
30307
30308         * InputLanguageChangingEventArgs.cs:
30309           - More signature fixes
30310
30311 2004-08-11 16:20  pbartok
30312
30313         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
30314           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
30315           ImageListStreamer.cs, InputLanguage.cs,
30316           InputLanguageChangedEventArgs.cs,
30317           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
30318           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
30319           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
30320           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30321           - Signature fixes
30322
30323 2004-08-11 16:16  pbartok
30324
30325         * Application.cs:
30326           - Fixed Signature
30327           - Added .Net 1.1 method
30328
30329 2004-08-11 15:25  pbartok
30330
30331         * SWF.csproj:
30332           - Fixed BindingManagerBase.cs filename
30333
30334 2004-08-11 15:22  pbartok
30335
30336         * BindingManagerBase.cs:
30337           - Was checked in with wrong filename
30338
30339 2004-08-11 14:50  pbartok
30340
30341         * SWF.csproj:
30342           - Updated
30343
30344 2004-08-11 13:41  jordi
30345
30346         * XplatUIWin32.cs: Fixes ClientRect
30347
30348 2004-08-11 13:19  pbartok
30349
30350         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30351           XplatUIX11.cs:
30352           - We had SetWindowPos and MoveWindow to set window positions and
30353             size, removed MoveWindow. We have GetWindowPos, so it made sense to
30354             keep SetWindowPos as matching counterpart
30355           - Added some X11 sanity checking
30356
30357 2004-08-11 12:59  pbartok
30358
30359         * Control.cs:
30360           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
30361             (It seems that SetBounds is just a front for SetBoundsCore and
30362              SetBoundsCore updates the underlying window system and
30363              UpdateBounds is responsible for updating the variables associated
30364              with the Control and sending the events)
30365           - Major cleanup of Size handling; we now have two sizes, client_size
30366             and bounds. Bounds defines the window with decorations, client_size
30367             without them.
30368
30369 2004-08-11 12:55  pbartok
30370
30371         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30372           - Added method to calculate difference between decorated window and
30373             raw client area
30374
30375 2004-08-11 12:54  pbartok
30376
30377         * Label.cs:
30378           - Forcing redraw on resize
30379
30380 2004-08-11 11:43  pbartok
30381
30382         * ImageList.cs:
30383           - Removed disposing of the actual images when the list is disposed
30384
30385 2004-08-11 09:13  pbartok
30386
30387         * Control.cs:
30388           - Now properly reparents windows
30389
30390 2004-08-11 08:37  pbartok
30391
30392         * Control.cs:
30393           - Duh!
30394
30395 2004-08-11 07:47  pbartok
30396
30397         * Control.cs:
30398           - Rewrote the collection stuff. Might not be as fast now, not
30399             keeping the number of children around and accessible directly, but
30400             it's more straightforward
30401
30402 2004-08-11 07:44  pbartok
30403
30404         * AccessibleObject.cs:
30405           - Fixed to match ControlCollection rewrite
30406
30407 2004-08-11 07:43  pbartok
30408
30409         * ImageList.cs:
30410           - Added missing creation of the collection list
30411
30412 2004-08-10 20:08  jackson
30413
30414         * StatusBar.cs: Get the paint message from WndProc
30415
30416 2004-08-10 19:31  jackson
30417
30418         * ThemeWin32Classic.cs: Create Brushes as little as possible
30419
30420 2004-08-10 19:20  jackson
30421
30422         * UICues.cs: Add Flags attribute
30423
30424 2004-08-10 19:19  jackson
30425
30426         * StatusBarPanel.cs: Signature cleanup
30427
30428 2004-08-10 19:10  jackson
30429
30430         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
30431           Initial implementation of status bar item drawing
30432
30433 2004-08-10 17:27  jordi
30434
30435         * TrackBar.cs: add missing methods, properties, and restructure to
30436           hide extra ones
30437
30438 2004-08-10 16:24  jackson
30439
30440         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
30441           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
30442           attribute
30443
30444 2004-08-10 13:21  jordi
30445
30446         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
30447           enhancements and standarize on win colors defaults
30448
30449 2004-08-10 12:52  jackson
30450
30451         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
30452           ThemeWin32Classic.cs: Implement DrawItem functionality
30453
30454 2004-08-10 12:47  jordi
30455
30456         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
30457
30458 2004-08-10 12:32  jordi
30459
30460         * Control.cs: throw ontextchange event
30461
30462 2004-08-10 11:43  pbartok
30463
30464         * Control.cs:
30465           - Added more to the still unfinished Dock/Anchor layout code
30466
30467 2004-08-10 11:39  pbartok
30468
30469         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
30470           - Added GetWindowPos method
30471
30472 2004-08-10 11:36  pbartok
30473
30474         * XplatUIWin32.cs:
30475           - Implemented several methods
30476
30477 2004-08-10 09:47  jackson
30478
30479         * TrackBar.cs: Allow control to handle buffering
30480
30481 2004-08-10 09:41  jackson
30482
30483         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
30484
30485 2004-08-10 09:24  jackson
30486
30487         * Label.cs, LinkLabel.cs: Let Control handle buffering.
30488
30489 2004-08-10 09:09  jackson
30490
30491         * StatusBar.cs: Let Control handle all the buffering.
30492
30493 2004-08-10 09:08  jackson
30494
30495         * Control.cs: Control will now handle the buffering code, so each
30496           control does not have to implement this.
30497
30498 2004-08-10 08:34  jackson
30499
30500         * XplatUIDriver.cs: Use default colors from the theme
30501
30502 2004-08-09 17:12  pbartok
30503
30504         * ImageList.cs:
30505           - Fixed several bugs Ravindra pointed out
30506
30507 2004-08-09 16:11  pbartok
30508
30509         * Control.cs:
30510           - Added incomplete dock layout code
30511           - Added support for mouse wheel
30512
30513 2004-08-09 16:09  pbartok
30514
30515         * XplatUIX11.cs:
30516           - Added handling for middle and right mousebutton
30517           - Added handling for mouse wheel
30518           - Added handling for key state and mouse state and position
30519           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
30520           messages
30521
30522 2004-08-09 15:40  jackson
30523
30524         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
30525           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
30526           checkin
30527
30528 2004-08-09 15:37  jackson
30529
30530         * StatusBar.cs: Initial implementation of StatusBar
30531
30532 2004-08-09 15:36  jackson
30533
30534         * ITheme.cs: Add support for drawing status bar and getting status
30535           bar item sizes
30536
30537 2004-08-09 15:35  pbartok
30538
30539         * MouseButtons.cs:
30540           - Fixed values
30541
30542 2004-08-09 15:34  jackson
30543
30544         * ThemeWin32Classic.cs: Add support for drawing status bar and get
30545           status bar item sizes
30546
30547 2004-08-09 15:21  jackson
30548
30549         * ThemeWin32Classic.cs: Use known colors for default control
30550           colours
30551
30552 2004-08-09 15:12  jackson
30553
30554         * ThemeWin32Classic.cs: Make the default font static, it is static
30555           in control so this doesn't change functionality and creating fonts
30556           is sloooooow.
30557
30558 2004-08-09 14:56  pbartok
30559
30560         * X11Structs.cs:
30561           - Added GrabMode enum
30562
30563 2004-08-09 14:55  pbartok
30564
30565         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30566           - Removed Run method, was only required for initial development
30567
30568 2004-08-09 14:51  pbartok
30569
30570         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30571           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
30572           capture
30573
30574 2004-08-09 13:48  pbartok
30575
30576         * XplatUIX11.cs:
30577           - Fixed default sizing for child windows
30578
30579 2004-08-09 12:56  pbartok
30580
30581         * XplatUIX11.cs:
30582           - Added generation of WM_DESTROY message
30583           - Added handling of window manager induced shutdown
30584
30585 2004-08-09 11:31  jackson
30586
30587         * ThemeWin32Classic.cs: New names for control properties
30588
30589 2004-08-09 11:25  jackson
30590
30591         * Control.cs: Use new color names
30592
30593 2004-08-09 11:02  jackson
30594
30595         * XplatUI.cs: Get default window properties from the theme
30596
30597 2004-08-09 11:01  jackson
30598
30599         * ITheme.cs: The theme engine now controls default window
30600           properties
30601
30602 2004-08-09 11:00  jackson
30603
30604         * ThemeWin32Classic.cs: Add default window color properties
30605
30606 2004-08-09 10:17  jackson
30607
30608         * ThemeWin32Classic.cs: Use correct default back color
30609
30610 2004-08-09 10:05  jackson
30611
30612         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
30613           the theme now.
30614
30615 2004-08-09 09:56  jackson
30616
30617         * XplatUI.cs: Remove defaults, these are handled by the theme now.
30618
30619 2004-08-09 09:54  jackson
30620
30621         * Control.cs: Get default properties from the theme.
30622
30623 2004-08-09 09:53  jackson
30624
30625         * ITheme.cs: Themes now handle default control properties
30626
30627 2004-08-09 09:53  jackson
30628
30629         * ThemeWin32Classic.cs: Themes now handle default control
30630           properties so coloring will be consistent
30631
30632 2004-08-08 16:54  jordi
30633
30634         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
30635
30636 2004-08-08 15:08  jordi
30637
30638         * XplatUIX11.cs: fixes keyboard crash
30639
30640 2004-08-08 13:47  jordi
30641
30642         * Label.cs: add cvs header info
30643
30644 2004-08-08 12:09  jackson
30645
30646         * ThemeWin32Classic.cs: Add pen_buttonface
30647
30648 2004-08-08 11:52  jordi
30649
30650         * Label.cs, LinkLabel.cs: [no log message]
30651
30652 2004-08-08 11:34  jordi
30653
30654         * ThemeWin32Classic.cs: Use Windows Standard Colours
30655
30656 2004-08-07 17:32  jordi
30657
30658         * TrackBar.cs: throw exceptions of invalid enums values
30659
30660 2004-08-07 17:31  jordi
30661
30662         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
30663           draw method name
30664
30665 2004-08-07 16:56  jackson
30666
30667         * HorizontalAlignment.cs: Initial checkin
30668
30669 2004-08-07 13:16  jordi
30670
30671         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
30672           methods
30673
30674 2004-08-07 13:05  jordi
30675
30676         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
30677           GetSysColor defines
30678
30679 2004-08-06 18:01  pbartok
30680
30681         * ThemeWin32Classic.cs:
30682           - Fixed some rounding issues with float/int
30683
30684 2004-08-06 18:00  jackson
30685
30686         * DockStyle.cs, AnchorStyles.cs:
30687
30688                   Add flags and serializable attributes.
30689
30690 2004-08-06 17:46  pbartok
30691
30692         * XplatUIX11.cs:
30693           - Implemented GetParent
30694
30695 2004-08-06 17:18  pbartok
30696
30697         * TrackBar.cs:
30698           - Fixed some rounding issues with float/int
30699
30700 2004-08-06 17:17  pbartok
30701
30702         * X11Structs.cs, XplatUIX11.cs:
30703           - Fixed Refresh and Invalidate
30704
30705 2004-08-06 15:30  pbartok
30706
30707         * Control.cs, X11Structs.cs, XplatUIX11.cs:
30708           - Fixed recursive loop when resizing
30709           - Improved/fixed redrawing on expose messages
30710
30711 2004-08-06 09:53  jordi
30712
30713         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
30714           keyboard navigation
30715
30716 2004-08-06 08:02  pbartok
30717
30718         * X11Structs.cs, XplatUIX11.cs:
30719           - Fixed reparenting
30720           - Fixed window border creation
30721
30722 2004-08-05 15:38  pbartok
30723
30724         * XplatUIX11.cs:
30725           - Attempted fix for reparenting problems
30726
30727 2004-08-04 15:14  pbartok
30728
30729         * Control.cs:
30730           - Fixed Invalidation bug (calculated wrong client area)
30731           - Added ClientSize setter
30732
30733 2004-08-04 15:13  pbartok
30734
30735         * Form.cs:
30736           - Added AutoScale properties
30737
30738 2004-08-04 15:13  pbartok
30739
30740         * SWF.csproj:
30741           - Added latest files
30742
30743 2004-08-04 14:11  pbartok
30744
30745         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30746           XplatUIX11.cs:
30747           - Added Invalidate handling
30748
30749 2004-08-03 17:09  jordi
30750
30751         * XplatUIDriver.cs: fixes spelling mistake
30752
30753 2004-07-27 09:53  jordi
30754
30755         * TrackBar.cs: fixes trackbar events, def classname, methods
30756           signature
30757
30758 2004-07-27 09:29  jordi
30759
30760         * ScrollBar.cs: fixes scrollbar events
30761
30762 2004-07-27 04:38  jordi
30763
30764         * Control.cs: changes to be able to run winforms samples
30765
30766 2004-07-26 11:42  jordi
30767
30768         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
30769           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
30770
30771 2004-07-26 05:41  jordi
30772
30773         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
30774           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
30775           implementation
30776
30777 2004-07-22 09:22  jordi
30778
30779         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
30780           check link overlapping, implement events, and fixes
30781
30782 2004-07-21 10:28  jordi
30783
30784         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
30785
30786 2004-07-21 10:19  jordi
30787
30788         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
30789           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
30790           LinkLabelLinkClickedEventArgs.cs,
30791           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
30792           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
30793           implementation
30794
30795 2004-07-19 13:09  jordi
30796
30797         * Control.cs, Label.cs: label control re-written: added missing
30798           functionlity, events, and properties
30799
30800 2004-07-19 10:49  jordi
30801
30802         * Control.cs: fixes SetBounds logic
30803
30804 2004-07-19 01:29  jordi
30805
30806         * Control.cs: Call RefreshWindow only if the window has created
30807
30808 2004-07-15 14:05  pbartok
30809
30810         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
30811           - Implemented ImageList and ImageList.ImageCollection classes
30812           - Added ColorDepth enumeration
30813           - Updated SWF VS.Net project
30814
30815 2004-07-15 11:06  jordi
30816
30817         * XplatUIStructs.cs: added MsgButons enum
30818
30819 2004-07-15 11:03  jordi
30820
30821         * Control.cs: added basic mouse handeling events
30822
30823 2004-07-15 03:38  jordi
30824
30825         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
30826           Vertical TrackBar control implementation
30827
30828 2004-07-13 09:33  jordi
30829
30830         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
30831
30832 2004-07-13 09:31  jordi
30833
30834         * Control.cs, Form.cs: commit: new properties and fixes form size
30835           problems
30836
30837 2004-07-09 14:13  miguel
30838
30839         * ProgressBar.cs: Spelling
30840
30841 2004-07-09 11:25  pbartok
30842
30843         * ProgressBar.cs:
30844           - Removed usage of Rectangle for drawing. Miguel pointed out it's
30845           faster
30846
30847 2004-07-09 11:17  miguel
30848
30849         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
30850
30851                 * ProgressBar.cs: Fixed spelling for `block'
30852
30853                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
30854                 style guidelines.
30855
30856                 Avoid using the += on rect.X, that exposed a bug in the compiler.
30857
30858 2004-07-08 23:21  pbartok
30859
30860         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
30861           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
30862           BaseCollection.cs, Binding.cs, BindingContext.cs,
30863           BindingMemberInfo.cs, BindingsCollection.cs,
30864           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
30865           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
30866           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
30867           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
30868           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
30869           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
30870           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
30871           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
30872           FrameStyle.cs, GiveFeedbackEventArgs.cs,
30873           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
30874           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
30875           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
30876           InputLanguageChangedEventArgs.cs,
30877           InputLanguageChangedEventHandler.cs,
30878           InputLanguageChangingEventArgs.cs,
30879           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
30880           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
30881           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
30882           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
30883           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
30884           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
30885           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
30886           QueryAccessibilityHelpEventArgs.cs,
30887           QueryAccessibilityHelpEventHandler.cs,
30888           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
30889           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
30890           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
30891           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
30892           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
30893           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
30894           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
30895           XplatUIX11.cs, lang.cs:
30896           - Initial check-in
30897
30898