2007-12-28 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-12-28  Jonathan Pobst  <monkey@jpobst.com>
2
3         * TextBoxTextRenderer.cs: Implement a cache for measuring each
4         character.  This is effective because the typical usage of a
5         TextBox is with a limited amount of fonts and characters, and
6         the current implementation of TextBox measures everything one
7         character at a time.  Another second or two speedup for bug #347238.
8
9 2007-12-28  Jonathan Pobst  <monkey@jpobst.com>
10
11         * Control.cs: Rewrite the Font getter to only query the parent's
12         Font property once instead of twice.  Since this operation is
13         recursive, the queries were growing exponentially as the control
14         tree got deeper.  Another second or two speedup for bug #347238.
15
16 2007-12-28  Jonathan Pobst  <monkey@jpobst.com>
17
18         * Control.cs: Avoid setting a parent (and more importantly, updating
19         the zorder of all its children) if the parent is already correct in
20         WmShowWindow.  Decreases the startup time of the test case on bug
21         #347238 from 35 seconds to 11 seconds.
22
23 2007-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
24
25         * X11Dnd.cs: When the dnd operation has started and we are 
26         in the dnd loop, don't dispatch either WM_LBUTTONUP nor WM_RBUTTONUP.
27         This is done to match .Net, which doesn't send those messages after
28         dnd operation was completed/cancelled.
29         Fixes #349922.
30
31 2007-12-27  Jonathan Pobst  <monkey@jpobst.com>
32
33         * ToolStrip.cs: Previous change should be != null, not == null.
34         Thanks Gert!
35
36 2007-12-27  Jonathan Pobst  <monkey@jpobst.com>
37
38         * ToolStrip.cs: Guard against an NRE after ItemClicked is called, the
39         user may have moved the mouse off the current item during the event.
40
41 2007-12-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
42
43         * ListView.cs: In ItemControl.ItemsMouseMove, try to avoid
44         calling GetItemAt for every MouseMove event by also taking into
45         account whether any mouse button is pressed (probably dragging); 
46         if so, we can call GetItemAt, and if not, try to not call it 
47         (GetItemAt can be quite expensive when used with a large number of items).
48
49 2007-12-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
50
51         * ListView.cs: Implement -finally- support for dnd, by calling
52         OnItemDrag as needed. Also, remove the dnd TODO, and add myself to the
53         authors list ;-).
54         * ListViewInsertionMark.cs: Implement NearestIndex method, by doing a
55         simple calculation of distances for all the items in the owner
56         listview.
57
58 2007-12-21  Geoff Norton  <gnorton@novell.com>
59
60         * XplatUICarbon.cs:  Ensure that we create WindowMapping handles
61         for windows that are originally created as invisible.  Fixes missing
62         main window in paint-mono.
63
64 2007-12-21  Geoff Norton  <gnorton@novell.com>
65
66         * XplatUICarbon.cs:  Register our D&D handler.  Register our custom
67         subclass handler for com.novell.mwfview subclassing HIView.  Implement
68         Pasteboard and Dnd methods.
69
70 2007-12-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
71
72         * ListBox.cs: When we got focus, give focus to first item if there
73         wasn't any pervious focused item. Also update navigation to depend on
74         SelectedIndex rather than FocusedItem, just as .Net does.
75         Fixes #349174.
76
77 2007-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
78
79         * ListBox.cs: Both FindString and FindStringExact methods must do an
80         case insensitive search, should allow the last valid index to be
81         passed in the overload taking an initial index, and should also
82         continue searching from the top back to the specified index when it
83         reaches the bottom.
84
85 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
86
87         * TextControl.cs: Apply patch from Luke Page that fixes a scrolling
88         redraw issue, and allows RichTextBox to draw colored text even while
89         disabled or readonly.
90
91 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
92
93         * RichTextBox.cs, TextBoxBase.cs: Apply patch from Luke Page that
94         disallows cut/paste in a readonly textbox, adds support for Shift-Insert,
95         and doesn't grey text in a disabled RichTextBox.
96
97 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
98
99         * RichTextBox.cs: Apply patch from Luke Page that adds better support
100         for many RTF commands: quad alignment, separate formatting for blocks
101         inside groups, and ParDef support.  Makes the test case from bug #324589
102         look much better.
103
104 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
105
106         * LineTag.cs: Fix an error in the new Draw method that caused
107         a crash when rendering the document on bug #324589.
108
109 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
110
111         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs,
112         TextControl.cs: Apply patch from Luke Page that adds support
113         for URL links in RichTextBox.
114         [Fixes enhancement #342516]
115
116 2007-12-18  Everaldo Canuto  <ecanuto@novell.com>
117
118         * MenuItem.cs: When cloning menuitem clone also name and tag properties for
119         2.0 profile. Thanks Ernesto Carrea and Luke Page. Fixes bug #340289.
120
121 2007-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
122
123         * ListBox.cs: When a key gets pressed, try to find a string
124         if the key is a character or a digit.
125         Fixes #343971.
126
127 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
128
129         * TableLayoutPanel.cs: Remove some unused variables.
130
131 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
132
133         * DateTimePicker.cs: Commit patch from Luke Page that ensures
134         we don't end up at an invalid date when we click the up/down
135         spinner to change the month or year.  Fixes bug #348682.
136
137 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
138
139         * Application.cs: Calling Exit in 2.0 should chain to the
140         Exit (CancelEventArgs) version so it can be cancelled.
141         * Form.cs: Create a flag to allow raising the Closing
142         events to be skipped.  We raise them once in Application.Exit
143         and don't want to raise them again when the Form is actually
144         closed.  [Fixes bug #349073]
145
146 2007-12-16  Jonathan Pobst  <monkey@jpobst.com>
147
148         * ToolStripDropDown.cs: Guard against an NRE when there
149         hasn't been a mainform set in the application context.
150         [Fixes bug #349108]
151
152 2007-12-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
153
154         * ListBox.cs: When SetBoundsCore gets called, besides
155         calling UpdateScrollBars, update the value of
156         last_visible_index, since we could need to show more items
157         than before, and we need to let the paint routines know that.
158         Fixes #344445.
159
160 2007-12-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
161
162         * ListView.cs: Add DesignerSerializationVisibility attribute to
163         InsertionMark property.
164         * ListViewItem.cs: Add same attribute to Position property.
165
166 2007-12-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
167
168         * ListViewItem.cs: .ctor (SerializationInfo, StreamingContext)
169         is 2.0 only.
170
171 2007-12-14  Jonathan Pobst  <monkey@jpobst.com>
172
173         * ThemeWin32Classic.cs: Don't draw the background on a
174         flat button if there is a background image.
175         [Fixes bug #348649]
176
177 2007-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
178
179         * ListBox.cs: If we remove the item currently selected,
180         remove it not only from SelectedItems, but also
181         resetting selected_index. Moreover, set focused_item to Items.Count - 1 if 
182         the items count decreased and focused_item has bigger value than that.
183
184 2007-12-13  Jonathan Pobst  <monkey@jpobst.com>
185
186         * Control.cs: Perform our layout after we resize ourselves
187         if we had to adjust our AutoSize.  Missed commit for bug
188         #346246.
189
190 2007-12-13  Jonathan Pobst  <monkey@jpobst.com>
191
192         * TableLayoutPanel.cs: Override GetPreferredSizeCore so
193         we can provide an implementation of AutoSize.
194         [Fixes bug #346246]
195
196 2007-12-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
197
198         * ListBox.cs: Add the internal overload Sort (bool paint),
199         to indicate whether we actually need a paint or we will
200         call Refresh ourselves. This way we don't request a paint
201         _before_ having an updated and valid layout.
202         Fixes #347233.
203
204 2007-12-12  Andreia Gaita <avidigal@novell.com>
205
206         * XPlatUIX11.cs: Send paint messages when updating a systray icon
207         * NotifyIcon.cs: Invalidate the window before doing a systray change so it is
208         properly invalidated. 
209         Fixes #324237
210
211 2007-12-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
212
213         * ListViewItem.cs: When using a .ctor taking a ListViewGroup,
214         don't simply assign it to our internal group field, but instead 
215         use our Group property, which should do all the neccessary work
216         required to support groups. Fixes an issue reported to me (mail) by a 
217         guy using this new feature.
218
219 2007-12-11  Jonathan Pobst  <monkey@jpobst.com>
220
221         * Control.cs: Use Scale instead of ScaleControl to ensure the
222         whole hierarchy gets scaled.
223         [Fixes bug #347282]
224
225 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
226
227         * DateTimePicker.cs: Don't set the internal MonthCalendar's
228         Parent property.  Doing this causes the control to be hosted by
229         the Form instead of being a popup window.
230         [Fixes bug #347665]
231
232 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
233
234         * ToolStripItemCollection.cs: If we try to insert a ToolStripItem
235         at an index higher than Count, just use Add instead of Insert.
236         [Fixes bug #347669]
237
238 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
239
240         * ThemeWin32Classic.cs: Don't draw a PictureBox's background in
241         DrawPictureBox, this is handled by Control.PaintBackground.
242         [Fixes bug #347276]
243
244 2007-12-10  Everaldo Canuto  <ecanuto@novell.com>
245
246         * MenuAPI.cs: When process menu keys return true by default only if menu is
247         active. Fixes bug #342892.
248
249 2007-12-09  Andreia Gaita <avidigal@novell.com>
250
251         * Control.cs: check if windows are actually mapped before
252         trying to zorder. Fixes #342509, #346955
253
254 2007-12-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
255
256         * ListView.cs:
257         * ListViewInsertionMark.cs:
258         * ThemeWin32Classic.cs: Implement the drawing side of the
259         new 2.0 ListView.InsertionMark property.
260
261 2007-12-07  Jonathan Pobst  <monkey@jpobst.com>
262
263         * CurrencyManager.cs: Silence some debug spew.
264
265 2007-12-07  Geoff Norton  <gnorton@novell.com>
266         
267         * Hwnd.cs: Refactor GetClippingRectangles to suppose returning the
268         masks for our children as well as siblings to avoid having to query
269         Quartz for this information.
270         * XplatUICarbon.cs: Implement a delegate based system to pass
271         information to System.Drawing.  Implement Async methods.  Remove
272         the hack for the resize thumb and imlpement a transparent Grow Box.
273         Rework the messaging system to proplery create window's and messages,
274         fixes TabControl.
275
276 2007-12-06  Andreia Gaita <avidigal@novell.com>
277
278         * X11Keyboard.cs: Use Xutf8LookupString to support international 
279         characters under alternate codepages. Patch from #340878
280
281 2007-12-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
282
283         * ListView.cs: When doing layout computations, set position in the
284         ListView instances (we cache the position just as .Net does).
285         * ListViewItem.cs: New internal setter method for Position. Also set
286         position field as also available in 1.1, since we are going to use it
287         now in the common case.
288
289 2007-12-06  Andreia Gaita <avidigal@novell.com>
290
291         * Control.cs: When removing controls, get the actual container
292         to notify about active control changes. Fixes 341314.
293
294 2007-12-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
295
296         * ListViewItem.cs: Forgot to add Font to our serialization stuff.
297
298 2007-12-05  Andreia Gaita <avidigal@novell.com>
299
300         * Control.cs: When updating the zorder, ignore windows that are not
301         mapped. Fixes #342509
302
303 2007-12-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
304
305         * ListViewItem.cs: Actually implement serialization on this class.
306
307 2007-12-05  Gert Driesen  <drieseng@users.sourceforge.net>
308
309         * LinkLabel.cs: Fixed paramname of ArgumentNullException in ctor of
310         LinkCollection. Spaces to tabs, and removed extra tabs.
311
312 2007-12-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
313
314         * XplatUIX11.cs: Make toolwindows' decorations show up without causing any
315           tests to fail (hopefully).
316
317 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
318
319         * ToolStripDropDownMenu.cs: Fill in AffectedBounds when drawing
320         the image margin so custom renderers can correctly place it.
321
322 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
323
324         * StatusStrip.cs: Fill in AffectedBounds when drawing the grip
325         so custom renderers can correctly place it.
326
327 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
328
329         * Application.cs: Let WM_CHAR messages flow through to controls
330         hosted in Strips.  [Fixes bug #343972]
331
332 2007-12-02  Jonathan Pobst  <monkey@jpobst.com>
333
334         * ToolStripManager.cs: Guard against an NRE I ran into.
335
336 2007-12-02  Jonathan Pobst  <monkey@jpobst.com>
337
338         * LinkLabel.cs: Apply patch from George to fix bug 344012.  If
339         a Link is manually added to the Links collection, we need to set
340         its owner, so it can invalidate properly.
341         [Fixes bug #344012]
342
343 2007-11-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
344
345         * ListView.cs: When changing ListViewItem.Position (which calls
346         ListView.ChangeItemLocation), invalidate not only the area
347         corresponding to the main item, but also to the area occupied
348         by the items being moved.
349
350 2007-11-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
351
352         * ListView.cs: When changing the position of a given item,
353         don't use item bounds, but item areas (which includes the item spacing
354         between them). Also, use first/last position if the requested
355         position is outside bounds (as .Net does). Invalidate the previous and
356         new bounds. Finally, in ItemControl.ItemsMouseDown use the actual item
357         in a specific position, instead of directly accessing Items collection
358         (this is done to get the right item - remember an Item can have a
359         different position in the grid than in the Items collection).
360
361 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
362
363         * MessageBox.cs: Calculate text area instead of just top left, this rect 
364         area will be used in DrawString. Fixes bug #343364.
365
366 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
367
368         * MessageBox.cs: Calculate max amount for text area width, it must be 60% of
369         screen width. Partially fixes bug #343364.
370
371 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
372
373         * NotifyIcon.cs: Remove duplicated code before call realculate and put this
374         code inside recalculate, it makes code more simple.
375
376 2007-11-22  Everaldo Canuto  <ecanuto@novell.com>
377
378         * NotifyIcon.cs: When recalculate icon verify if icon is active to decide
379         between update or add icon. Fixes bug #324344.
380
381 2007-11-21  Andreia Gaita <avidigal@novell.com>
382
383         * XPlatUIX11.cs: Do not treat tool windows as if they have no 
384         window manager, since that stretches the drawing area to include
385         the window decorations, and they get hidden. Reverts r84444 and fixes
386         #335849 and #342790 (mdi and pdn3 regression)
387
388 2007-11-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
389
390         * ListView.cs: When setting focused item, try to give focus to the
391         previous one _only_ if the previous one remains valid. 
392         Fixes #342504.
393
394 2007-11-20  Jonathan Pobst  <monkey@jpobst.com>
395
396         * Application.cs: Revert r89650, as it broke a common case to fix
397         an obscure case.  Fixes bug #342606.
398
399 2007-11-20  Everaldo Canuto  <ecanuto@novell.com>
400
401         * ThemeWin32Classic.cs: Fix extra space on end of tooltip.
402
403 2007-11-20  Everaldo Canuto  <ecanuto@novell.com>
404
405         * ThemeWin32Classic.cs: Fix tooltip text align removing horizontal 
406         alignment. [Fixes #324228]
407
408 2007-11-19  Jonathan Pobst  <monkey@jpobst.com>
409
410         * ToolStrip.cs: Handle flow layout in GetPreferredSize to fix PDN3.
411         [Fixes bug #342123]
412
413 2007-11-19  Everaldo Canuto  <ecanuto@novell.com>
414
415         * Form.cs: Check for empty Text before assign to cp.Caption in CreateParams
416         it prevent problems when empty captions. [Fixes #342141]
417
418 2007-11-19  Jonathan Pobst  <monkey@jpobst.com>
419
420         * Label.cs: Use Size instead of None.  Fixes bug #342077.
421
422 2007-11-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
423
424         * ListViewItem.cs: Implement 2.0 FindNearestItem method.
425
426 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
427
428         * MenuStrip.cs: Guard against a NRE when a MdiWindowItem is set
429         but there isn't a MdiContainer.
430         [Fixes bug #342358]
431
432 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
433
434         * TextControl.cs: Don't recalculate document if the recalc_start and
435         recalc_end hasn't changed.
436         [Fixes bug #342505]
437
438 2007-11-17  Gert Driesen  <drieseng@users.sourceforge.net>
439
440         * DataGridViewTextBoxCell.cs: Removed CWL.
441
442 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
443
444         * ListView.cs: Implement 2.0 SearchForVirtualItem event support.
445
446 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
447
448         * TextControl.cs: Missed some code for bug 341534 to trigger a
449         recalculation when the font changes.
450
451 2007-11-16  Andreia Gaita <avidigal@novell.com>
452
453         * Control.cs: When updating the zorder, check if the child to update is
454         the same control that is set to always be on top (i.e., scrollbars), and 
455         just put it on top directly. Fixes BadMatch error on pdn3
456
457 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
458
459         * ListView.cs: Throw the needed exceptions for FindNearestItem.
460
461 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
462
463         * Control.cs: Don't perform a new layout when a label changes its text,
464         cause label handles its own autosizing.
465         [Fixes bug #342077]
466
467 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
468
469         * ListView.cs: Implement 2.0 FindNearestItem methods.
470
471 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
472
473         * ToolStripPanel.cs: Make Join at least add the control to the panel,
474         even if the rest of what Join does isn't supported.  Add some more
475         support for vertical toolbars.
476         * ToolStripPanelRow.cs: Add some more support for vertical toolbars.
477         [Fixes the application breaking parts of bug #341998]
478
479 2007-11-15  Jonathan Pobst <monkey@jpobst.com>
480
481         * ToolStripItem.cs: When determining if we have a check/image margin,
482         we need to look at ShowCheckMargin as well as ShowImageMargin.
483
484 2007-11-15  Geoff Norton  <gnorton@novell.com>
485
486         * XplatUIOSX.cs: Rename to...
487         * XplatUICarbon.cs: and refactor all event handling out to the new event handling
488         system in System.Windows.Forms.CarbonInternal.  Lots of code cleanup as well.
489
490 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
491
492         * KeysConverter.cs: The default values should be an array of Keys, not
493         strings.  Also, the array has more values for 2.0.
494         [Fixes bug #341851]
495
496 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
497
498         * Application.cs: Change ExecutablePath to use 
499         Process.GetCurrentProcess ().MainModule.FileName instead of Assembly.GetEntryAssembly.
500         [Fixes bug #323552]
501
502 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
503
504         * LineTag.cs: Don't attempt to draw '\r', treat it like it doesn't exist.
505         When measureing CR or LF, use /u000D instead of /u0013. (Hex, not decimal.)
506         * TextControl.cs: Fix a case in GetLineEnding where a \n before a \r would
507         be ignored.  Create a new GetLineEnding that can specify which types of
508         line endings to look for.  On Insert, only create new lines for \n and \r\n.
509         [Fixes bug #324274]
510
511 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
512
513         * TextBoxBase.cs: As we loop through each line changing the font, tell
514         the document that the line needs to be recalculated.  Fixes bug #341534.
515
516 2007-11-13  Jonathan Pobst  <monkey@jpobst.com>
517         [Another round of refactoring]
518         * Line.cs: Add DeleteCharacters.
519         * LineTag.cs: Add Delete.
520         * TextBoxBase.cs: Update to use new methods.
521         * TextControl.cs: Refactor the Delete* methods.
522
523 2007-11-13  Everaldo Canuto  <ecanuto@novell.com>
524
525         * Win32DnD.cs: Implement Win32 Drop files, thank you Srikanth Madikeri for
526         the patch. [Fixes #324856]
527
528 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
529
530         * ListView.cs:
531         * ListViewItem.cs: Add an initial implementation of
532         2.0 ListViewItem.Position getter.
533
534 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
535
536         * ListView.cs: Add a reordered_items_indices array, to allow us
537         to have a different sorting than that of Items (the sorting in Items
538         could not match the actual sorting in screen). This is needed to
539         implement a pair of 2.0 features.
540         * ListViewItem.cs: Add a DisplayIndex property to keep track of the
541         actual position in the ListView grid, since it could have a position
542         different than its Index (position in ListViewItemCollection). 
543
544 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
545
546         * Label.cs: Add StringFormatFlags.LineLimit.  This tells DrawString to
547         not draw partial lines.
548         * LinkLabel.cs: Change FormatFlags setter from = to |= so that the
549         LineLimit flag from the base is preserved.
550         Fixes the windows part of bug #338965.
551
552 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
553
554         * TextBoxBase.cs: Move handling of the enter key from KEYDOWN to CHAR
555         so that it can be canceled in KeyPress.
556         Fixes bug #340078.
557
558 2007-11-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
559
560         * ListView.cs: In ItemControl, reset mouse-handling related
561         fields even if we dont' have items (we still should reset them when
562         we had items but then called Items.Clear). Partially based in a patch
563         by George Giolfan.
564         Fixes #338399.
565
566 2007-11-08  Gert Driesen  <drieseng@users.sourceforge.net>
567
568         * Application.cs: In ProductVersion first try AssemblyFileVersion
569         before falling back to assembly version. Fixes bug #339787.
570
571 2007-11-08  Andreia Gaita <avidigal@novell.com>
572
573         * HtmlElement.cs: Implement InnerText setter.
574         * WebBrowserBase.cs: Implement Navigated event support.
575         Add flag to track when the browser "document" is ready to be retrieved.
576         * WebBrowser.cs: Implement CanGoBack, CanGoForward, Title, Url.
577         Make sure browser document is ready before retrieving it.
578         Clean up cached objects (document) when moving to a new page through
579         any of the navigation methods.
580         Use the new Mono.WebBrowser.INavigation interface to control navigation.
581         Implement OnNavigated event.
582
583 2007-11-07  Jonathan Pobst  <monkey@jpobst.com>
584
585         * ThemeWin32Classic.cs: Don't draw the background in DrawLabel or
586         DrawLinkLabel, this is handled by OnPaintBackground.
587         Fixes bug #339565, part II.
588
589 2007-11-07  Andreia Gaita <avidigal@novell.com>
590
591         * Control.cs: Revert r88915. Selecting text on a textbox depends on
592         getting a Select call on click, so this call needs to be here for now.
593         Unfixes #325809
594
595 2007-11-07  Geoff Norton  <gnorton@novell.com>
596
597         * OSXStructs.cs: Add the kEventClassApplication constants.
598         * XplatUIOSX.cs: Send a WM_LBUTTONDOWN to the Grab window when the 
599         application is deactivated otherwise Menu overlays linger on top of
600         other application windows.
601
602 2007-11-07  Geoff Norton  <gnorton@novell.com>
603
604         * XplatUIOSX.cs: Dont throw an exception on OverrideCursor as we
605         dont support cursors yet anyways.  This allows Reflector to run.
606
607 2007-11-07  Geoff Norton  <gnorton@novell.com>
608
609         * XplatUIOSX.cs: Implement DragSize.
610
611 2007-11-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
612
613         * ListView.cs: When we receive a WM_LBUTTONDOWN message in
614         ItemControl, request the focus, as .Net does. This is needed after 
615         Control does not request focus anymore when it receives a
616         WM_LBUTTONDOWN.
617
618 2007-11-06  Jonathan Pobst  <monkey@Jpobst.com>
619
620         * Label.cs: Make DrawImage internal so it can be called from Theme code.
621         Remove the DrawImage call from OnPaint.
622         * LinkLabel.cs: Remove the DrawImage call from OnPaint.
623         * ThemeWin32Classic.cs: Call DrawImage after we paint the background,
624         but before we draw the text for DrawLabel and DrawLinkLabel.
625         Fixes bug #339565.
626
627 2007-11-05  Andreia Gaita <avidigal@novell.com>
628
629         * Control.cs: Remove select call on click. Fixes #325809
630
631 2007-11-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
632
633         * ListViewItem.cs: Add 2.0 Position property getter.
634
635 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
636
637         * ListView.cs: Add 2.0 BackgroundImageTiled property.
638         Also, to make it work properly, change item's BackColor and
639         BackgroundImageLayout as needed.
640         * ThemeWin32Classic.cs: Don't fill any background rectangle 
641         in ListView.ItemControl when drawing items; just let the Control
642         base implementation fill it.
643
644 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
645
646         * ListViewGroup.cs: Adda TypeConverter attribute for this class,
647         as well as adding a custom 'dummy' Converter, as .net does.
648
649 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
650
651         * PropertyGridView.cs: When clicking drop-down button,
652         select an index in the listbox only if our standard values collection 
653         has one or more items.
654
655 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
656
657         * ListViewItem.cs: Add a DefaultValue attribute to 2.0 IndentCount
658         property.
659
660 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
661
662         * PropertyGrid.cs: In PropertySort, update the toolbar buttons even if
663         the value is not changed. This ensure a pushed button remains in that
664         state when clicked again. When switching the value of PropertySort
665         between Categorized and CategorizedAlphabetical, do not update the
666         grid items and do not fire a PropertyChangedEvent. When clicking the
667         sorting buttons, do not modify the PropertySort value when switching
668         between Categorized and CategorizedAlphabetical but only update the
669         button state.
670
671 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
672
673         * Label.cs: Make AutoEllipsis internal on 1.0 profile. Code
674         formatting.
675         * PropertyGrid.cs: Also put Categorized button in pushed state when
676         PropertySort is CategorizedAlphabetical. Set AutoEllipsis to true
677         for help description label.
678
679 2007-11-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
680
681         * ListView.cs: When calculating the biggest item for a given column,
682         take into account 2.0 LIstViewItem.IndentCount, since it directly affects
683         the item's width.
684
685 2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
686
687         * PropertyGrid.cs: Fixed default value for PropertySort. Allow invalid
688         value for PropertySort on 1.0 profile. PropertySortChanged event
689         should only be fired on 2.0 profile. Fixed NullReferenceException
690         in UpdateSortLayout when PropertyGrid contains no items.
691
692 2007-11-02  Jonathan Pobst  <monkey@jpobst.com>
693
694         * MessageBox.cs: Patch from George to implement MessageBoxDefaultButton.
695         [Fixes bug #338554]
696
697 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
698
699         * ListViewItem.cs: Implement 2.0 IndentCount property.
700
701 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
702
703         * X11Dnd.cs: When sending status in a dnd operation, compare current
704         effect with the 'allowed' field instead of 'drag_data.Allowed', since
705         the later is only created when a Winforms application is both the
706         source and the target, but not when we are the target only.
707         Fixes part of #324251.
708
709 2007-11-01  Geoff Norton  <gnorton@novell.com>
710
711         * XplatUI*.cs: Add GetPreviousWindow utility method to return windows in
712         order of Z-Order.
713         * Hwnd.cs: Add initial implementation of GetClippingRectangles to clip sibling 
714         children out of the drawing view on mac.
715         * XplatUIOSX.cs: Code cleanup.  Handle more window grab cases.  Fix SetParent
716         to handle the orphan and invisible case (1/2 fixes TabStrip drawing in FormsTest)
717         
718 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
719
720         * ToolStrip.cs: Don't process MouseUp for a ToolStripControlHost, clicking
721         on the non-hosted-control part of it shouldn't do anything.
722         Fixes part of bug #327498.
723
724 2007-11-01  Andreia Gaita <avidigal@novell.com>
725
726         * WebBrowserBase.cs: revert previous change, resize can be called anytime
727
728 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
729
730         * Application.cs: When a toolstrip has the keyboard input loop, let messages
731         it does not use flow through to controls that are hosted in menus.
732         Same with mouse clicks.
733         * Form.cs: Don't close all menus on click if the click is on a
734         control hosted in a menu.
735         Fixes part of bug #327498, and part of bug #325969.
736
737 2007-10-31  Andreia Gaita <avidigal@novell.com>
738
739         * WebBrowserBase.cs: Only call resize on gluezilla when it is active
740
741 2007-10-31  Jonathan Pobst  <monkey@jpobst.com>
742
743         * TextBoxBase.cs: Use int.MaxValue for MaxLength instead of magic number.
744         Addresses an issue raised in bug #336218.
745
746 2007-10-30  Jonathan Pobst  <monkey@jpobst.com>
747
748         * Form.cs: Patch from George that moves the conversion of ClientSize->Size
749         for PreferredSize from OnLayout to PreferredSize.  Fixes bug #325242.
750
751 2007-10-30  Andreia Gaita <avidigal@novell.com>
752
753         * ContainerControl.cs: Check if the active control is a
754         child of a removed control and update active_control accordingly.
755         Fixes #329718
756
757 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
758
759         * DateTimePicker.cs: Throw ArgEx if the Value is set outside the MinDate
760         or the MaxDate.  Fixed bug #337693.
761
762 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
763
764         * XplatUIWin32.cs: Always call SetWindowPos with SWP_FRAMECHANGED flag
765         after calling SetWindowLong for a form, to force an immediate NC refresh.
766         Fixes first part of bug #325150.
767
768 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
769
770         * ComboBox.cs: Don't try to resize the listbox when we are DropDownStyle
771         simple.  Fixes the last part of bug #322668.
772
773 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
774
775         * MessageBox.cs: If the owner is TopMost, then the MessageBox form
776         needs to be TopMost as well, or else the MessageBox is under the form.
777         Patch by George fixes bug #325300.
778
779 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
780
781         * X11Dnd.cs: When starting a new drag operation, reset the static
782         'dropped' field to false (previously the implementation didn't reset
783         it and got confused after the first drag).
784         Fixes #325071.
785
786 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
787
788         * PropertyGrid.cs: When PropertySort changes, re-organize the grid
789         items instead of re-creating them all. For this purpose we now cache
790         both CategoryGridEntry items and the GridEntries for the main object's
791         properties.
792         * GridItem.cs: Make SetParent method abstract.
793         * GridEntry.cs: Override the SetParent method (already there, but now
794         we override it).
795         Fixes #324866.
796
797 2007-10-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
798
799         * PropertyGridView.cs: Set the plus/minus bounds of a grid item
800         depending on its depth (as .Net does). Update the needed values in
801         MouseDown handler. Also draw the plus/minus rect after the label,
802         so we don't draw on top of it.
803
804 2007-10-24  Everaldo Canuto  <ecanuto@novell.com>
805
806         * MenuAPI.cs: Return true as default in ProcessKeys to prevent keys to be
807         processed by forms or controls when menu is active. [Fixes #333548]
808
809 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
810
811         * ToolStripItem.cs: Don't focus a ToolStripControlHost on Select of the
812         parent doesn't have focus.  This was causing ToolStripTextBoxes to take
813         focus on mouse over.
814
815 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
816
817         * TextControl.cs: Code cleaning, simplifying.
818
819 2007-10-24  Geoff Norton  <gnorton@novell.com>
820
821         * XplatUIOSX.cs: Route mouse events to the grab hwnd on mouse down as well.
822         * XplatUIStructs.cs: Fix the ToString method of POINT and MSG.
823
824 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
825
826         * TextBoxBase.cs: If the user sets maxlength to 0, it should mean
827         the cap is maxvalue, not actually 0.  [Fixes bug #336218]
828
829 2007-10-24  Andreia Gaita <avidigal@novell.com>
830
831         * SendKeys.cs: apply jpobst's patch to bug #332409
832
833 2007-10-23  Andreia Gaita <avidigal@novell.com>
834
835         * TextBoxTextRenderer.cs: Lower bounds max size to Int16.MaxValue, the 
836         Windows 2000 gdi DrawText call doesn't draw if it's higher than that
837         for some reason
838
839 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
840
841         * PropertyGridView.cs: If a property has an UIEditor available,
842         make the drop-down/editor button available only if the property
843         is _not_ read only.
844
845 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
846
847         * PropertyGridView.cs: Don't make the grid item textbox 
848         editable when a drop-down control is available, but 
849         CanConvertFrom (typeof (string)) is false or GetStandardValuesExclusive () is
850         true. The same bur the color of the grid item value's label.
851
852 2007-10-22  Geoff Norton  <gnorton@novell.com>
853
854         * OSXStructs.cs: Add the needed constants for keyboard modifiers.
855         * OSXKeyboard.cs: Initial support for keyboard and limited modifiers.
856         * XplatUIOSX.cs: New reversible frame support.  Wire in the new keyboard
857         driver.  Padd the bottom of all real windows so the resize thumb doesn't
858         obscure scroll/status bars.
859
860 2007-10-22  Jonathan Pobst  <monkey@jpobst.com>
861
862         * WindowsFormsSection.cs: Implement.
863
864 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
865
866         * MdiClient.cs: Maximize new active mdi child when a maximized child is 
867         closed see #325434 patch.
868
869 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
870
871         * MdiClient.cs: Fix remaining issues from layout vertical and horizontal,
872         see #325434 patch.
873
874 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
875
876         * PropertyGridView.cs: When showing the textbox for a grid item,
877         have two local variables to store the read-only and non-editable
878         status of a grid item (we were previously using just one variable
879         to do this, when actually they are slightly different).
880         Fixes part of #325023.
881
882 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
883
884         * PropertyGridView.cs: When showing a drop-down list, try to get the
885         values using TypeConverter.ConvertTo (to convert to a string). Fixes
886         part of #325023.
887
888 2007-10-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
889
890         * PropertyGrid.cs: When updating a property and populating sub grid
891         items, remove the previous ones, and invalidate the specific area.
892         * PropertyGridView.cs: A new InvalidateBelowGridItem to invalidate the
893         area behind a grid item.
894         * GridItemCollection.cs: Add an internal Clear method, to allow us to
895         clean the items if needed (specially for controls implementing 
896         ICustomTypeDescriptor and returning a variable number of properties).
897         Fixes #324865.
898
899 2007-10-19  Jonathan Pobst  <monkey@jpobst.com>
900
901         * TextControl.cs: Clean up and document the Insert function.
902
903 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
904
905         * TextControl.cs: Make sure we know our start point for updating the view
906         in ReplaceSelection.  Fixes an issue where pasting multiline text wouldn't
907         update the view.
908
909 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
910
911         * ListView: Couple of corcompare fixes.
912
913 2007-10-17  Geoff Norton  <gnorton@novell.com>
914
915         * XplatUIOSX.cs: Implement support for window icons in the dock.  Set
916         the title caption of real window.
917
918 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
919
920         * ErrorProvider.cs: Add the error provider's internal window to a 
921         containercontrol when the parent changes.  [Fixes bug #329714]
922
923 2007-10-17  Geoff Norton  <gnorton@novell.com>
924
925         * XplatUIOSX.cs: Implement ScrollWindow.  Properly create TOOLWINDOWs.
926         When we make a new window; restore the old active window - fixes dialogs.
927
928 2007-10-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
929
930         * PropertyGridView.cs: Look for RefreshPropertiesAttribute
931         when modifying a property, and if found then invalidate as
932         requested.
933         Fixes part of #324865.
934
935 2007-10-17  Geoff Norton  <gnorton@novell.com>
936
937         * XplatUIOSX.cs: Re-enable the native driver on the Mac.  This is still
938         highly experimental.  Fixed coordinate translation.  Fixed window locations.
939         Initial support for clipping. Implemented NC areas and menus.  Support for
940         launching from command line from Will Johansson (wjohansson@atacomm.com).
941         * OSXStructs.cs: Add ProcessSerialNumer (Patch from Will Johansson
942         wjohansson@atacomm.com)
943         * Hwnd.cs: Add some internal structures for tracking Mac cursors.
944         Hwnds now track the existence of all of their children for Mac clipping.
945     * XplatUI.cs: Re-enabled the native driver on the Mac.
946
947 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
948
949         * Line.cs: Move the InsertString function to here.
950         * TextControl.cs: Cleanup some duplicate code, move some InsertString
951         functionality to Line.
952
953 2007-10-17  Geoff Norton  <gnorton@novell.com>
954
955         * ComboBox.cs: Destroy the popup after hiding it.  Fixes #322582
956
957 2007-10-16  Gert Driesen  <drieseng@users.sourceforge.net>
958
959         * ButtonBase.cs: Fixed IsDefault to use assigned value instead of
960         always setting value to true.
961         * Form.cs: When changing AcceptButton, notify new and original button.
962
963 2007-10-16  Jonathan Pobst  <monkey@jpobst.com>
964
965         * Form.cs: Guard against an NRE when the user sets the AcceptButton to
966         a custom control that implements IButtonControl instead of an actual
967         button.  [Fixes bug #334244]
968
969 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
970
971         * Form.cs: Change SelectActiveControl to internal, we need to call it in
972         MdiWindowManager.
973         
974         * MdiWindowManager.cs: In RaiseActivated call SelectActiveControl to select
975         active control when activate a new mdi window.
976         
977         [Fixes bug #330495]
978
979 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
980
981         * ComboBox.cs: Dont implicit add listbox_ctrl on OnHandleCreated because it
982         is already added.
983         [Fixes bug #333617]
984
985 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
986
987         * TextControl.cs: When SuspendRecalc is first called, reset the recalc_start
988         to MaxValue and recalc_end to MinValue.  Currently, recalc_start is always 1,
989         so we always recalculate the whole document instead of just the new part.
990         [Fixes bug #325082]
991
992 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
993
994         * LineTag.cs: Fix a case where the GetCharIndex would not return 0
995         when the mouse was to the left of the first character in the line.
996
997 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
998
999         * TextBox.cs, TextBoxBase.cs: When setting the document's password
1000         character, use the property instead of the variable so that the
1001         UseSystemPasswordChar property is taken into account.
1002         [Fixes bug #333748]
1003
1004 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1005
1006         * FolderBrowserDialog.cs: When a node is right clicked and the "New
1007         folder" contex menu appears, actually add the new folder to it, even
1008         if the node is not currently selected. Still use SelectedNode in case 
1009         there wasn't found a node under the pointer.
1010         Fixes #325452.
1011
1012 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1013
1014         * ListViewItem.cs: When retrieving the focused state, the index check
1015         should be done only when ListView is in virtualmode, as it is an
1016         expensive check for normal mode.
1017
1018 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1019
1020         * ListViewItem.cs: Make the focus state information be stored
1021         in the ListView, not in the items. This is done to match the MS
1022         behaviour for items that are not yet part of a ListView control;
1023         besides that, since just one item can be focused at the same time,
1024         we save a little space in our items.
1025         Fixes part of #331643.
1026
1027 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1028
1029         * ComboBox.cs: When focus is lost, deselect the text. When setting
1030         text of control, select all text. Do not hide selection when control
1031         does not have focus. Fixes bug #333663.
1032
1033 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1034
1035         * TextBoxBase.cs: On 2.0 profile, throw ArgumentOutOFRangeException
1036         instead of ArgumentException when SelectionLength is set to negative
1037         value. Added same check to SelectionStart. Code formatting.
1038
1039 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1040
1041         * TextBoxBase.cs: Invalidate selection before changing SelectionLength
1042         or SelectionStart. Code formatting.
1043
1044 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1045
1046         * TreeView.cs: drag_begin_x and drag_begin_y are now set to -1,
1047         indicating that there was not a previous drag-and-drop operation going
1048         on.
1049         Fixes part of #325071.
1050
1051 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1052
1053         * X11Dnd.cs: When DragEventArgs.Effect is set to a value not part of
1054         AllowedEffect, don't let the drop operation happen. 
1055         Fixes #32580.
1056
1057 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
1058
1059         * TextRenderer.cs: Use GDI on Windows in both the 1.1 and 2.0 profiles.
1060
1061 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
1062
1063         * Line.cs, LineTag.cs: Guard against an exception when Document.Clear
1064         is called.
1065
1066 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
1067
1068         * Line.cs: Add a method that finds the tag that contains an x-coord.
1069         * LineTag.cs: Add a method that finds the character at an x-coord using
1070         a binary search, the old way was a linear search.
1071         * TextControl.cs: Change FindCursor to use the above new methods.
1072
1073 2007-10-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1074
1075         * DragEventArgs.cs: Allow Effect to have a non allowed value (a
1076         value different than AllowedEffect). This should be possible to
1077         indicate that dragging is not possible in some control/area.
1078
1079 2007-10-11  Jonathan Pobst  <monkey@jpobst.com>
1080
1081         * LineTag.cs: Encapsulate all variables with properties.  Calculate ascent/
1082         descent internally when font changes instead of outside code being responsible
1083         for setting it.
1084         * Line.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Use Tag properties
1085         instead of accessing internal variables.
1086
1087 2007-10-09  Everaldo Canuto  <ecanuto@novell.com>
1088
1089         * MdiClient.cs: Always call ArrangeIconicWindows before any arrangement and
1090         remove special treatment for ArrangeIcons since it is already arranged.
1091
1092 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1093
1094         * TextBoxTextRenderer.cs: Draw takes a Color now instead of a Brush, as
1095         the Win32 backend uses Color.
1096         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs:
1097         Refactor to store a Color instead of a Brush for Color.
1098
1099 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1100
1101         * Line.cs, LineTag.cs: Override GetHashCode to make a compiler warning go
1102         away.  I didn't realize I needed this when I refactored these earlier.
1103
1104 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1105
1106         * LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Refactor to
1107         store a Color structure and use the ResPool for back color instead of
1108         holding onto brushes.
1109
1110 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1111
1112         * TextControl.cs: Fix how we calculate the end of the tag we are drawing.
1113         [Fixes bug #325592]
1114
1115 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1116
1117         * MonthCalendar.cs: When ShowWeekNumbers is changed, force the calendar
1118         to recalculate its size.  Fixes a part of bug #331052.
1119
1120 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1121
1122         * NotifyIcon.cs: Set the correct mouse button when handling right mouse
1123         button.  Fixes a part of bug #331052.
1124
1125 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1126
1127         * Form.cs: Trim NewLine before setting XPlatUI.SetText, and when setting
1128         the CreateParams.
1129         * ThemeWin32Classic.cs: Trim NewLine before drawing MDI children window
1130         decorations.
1131         [Fixes bug #330986]
1132
1133 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1134
1135         * TextBoxTextRenderer.cs: Don't make this a static class, as static
1136         doesn't exist in 1.1.  (Thanks jb!)
1137
1138 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1139
1140         * TextBoxTextRenderer.cs: Abstract text measuring and drawing to this
1141         class to allow us to use different backends on different platforms.
1142         Linux uses the current [Draw|Measure]String backend.  Windows uses
1143         the TextRenderer.[Draw|Measure]Text backend, which uses GDI instead
1144         of GDI+.  This leads to better looking text and more accurate measurements
1145         on Windows, fixing many of the reported issues.
1146         * Line.cs, LineTag.cs: Update to use TextBoxTextRenderer.
1147
1148 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1149
1150         * FolderBrowserDialog.cs: When running on Windows,
1151         try to detect paths such "C:" and add Path.DirectorySeparatorChar,
1152         since we must match both "C:" and "C:\" forms. A little hackish, but
1153         works.
1154         Fixes #325247.
1155
1156 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1157
1158         * ListView.cs: When calling EndEdit (after editing an item),
1159         create a new instance of LabelEditEventArgs to keep clean the fields
1160         in case we get a new call to BeginEdit; also do Application.DoEvents
1161         to have focus in synch. This is a fix similar to TreeView's #325244.
1162
1163 2007-10-07  Andreia Gaita <avidigal@novell.com>
1164
1165         * HtmlDocument.cs, HtmlElement.cs, WebBrowser.cs: Added dom support
1166         * WebBrowserBase.cs: Added dialog support, calling the
1167           WebBrowserDialogs classes for each specific dialog type.
1168
1169 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1170
1171         * ListView.cs: When the last item is focused and is removed,
1172         move the focus to the previous item (in Items order). This is what MS
1173         does.
1174         Fixes #330415.
1175
1176 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1177
1178         * ListView.cs: In ListViewItemCollection, make Remove call RemoveAt,
1179         instead of the opposite (RemoveAt call Remove). This is a better
1180         approach since we don't need to to a pair of traversals when using
1181         RemoveAt.
1182
1183 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1184
1185         * TreeView.cs: When Keys.Left is pressed, before trying to Collapse
1186         check that the node actually has nodes, and if not, move to the
1187         parent node instead. 
1188         Fixes #325265.
1189
1190 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1191
1192         * TreeView.cs: Move the previous change to the general case (to
1193         call Application.DoEvents in cases where the method was called by
1194         different places).
1195
1196 2007_10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1197
1198         * TreeView.cs: When calling EndEdit and we need to hide the textbox,
1199         call Application.DoEvents. This is neccessary when we get a call to
1200         BeginEdit from an AfterLabelEdit handler, because the focus always
1201         goes to the TreeView, even if we try to give it to our
1202         LabelEditTextBox. The call do Application.DoEvents seems to
1203         synchronize the focus, basically.
1204         Fixes #325244.
1205
1206 2007-10-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1207
1208         * TreeView.cs: When AfterLabelEdit event is fired, TreeNode.IsEditing
1209         should be false. This also removes some nasty recursive paths. Fixes
1210         part of #325244.
1211
1212 2007-10-04  Everaldo Canuto  <ecanuto@novell.com>
1213
1214         * MdiClient.cs: When cascade (layout) mdi window that is maximized, set the
1215         state to normal. Also resize window when cascading. Fixes #325433. 
1216
1217 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
1218
1219         * RichTextBox.cs: When SelectionColor is set to Color.Empty, use
1220         DefaultForeColor, as drawing empty colored lines isn't very useful.
1221         [Fixes the not drawn lines part of bug #324358]
1222
1223 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
1224
1225         * TextControl.cs: Move Line and LineTag classes into separate files to
1226         make things easier to find.
1227         * Line.cs, LineTag.cs: Bring coding standards up to Mono's guidelines.
1228         * RichTextBox.cs: Capitalize LineTag.Length property access.
1229         - This is purely an organizational/formatting change, no logic changed. -
1230
1231 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1232
1233         * ThemeWin32Classic.cs: Do not show focus rectangle in radio buttons when
1234         text is empty.
1235
1236 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1237
1238         * ThemeWin32Classic.cs: Do not show focus rectangle in checkboxes when
1239         text is empty.
1240
1241 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1242
1243         * ComboBox.cs: On contructor use backgound_color instead of BackColor to
1244         prevent calling of OnBackColorChanged. Fixes #325321.
1245
1246 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1247
1248         * TextBox.cs: When check enabled uses Enabled property instead of is_enabled
1249         because control can be disabled because owner is disabled.
1250
1251 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
1252
1253         * ComboBox.cs: For the 1.1 profile, the default SelectedText is
1254         string.Empty, test failed from previous change.
1255
1256 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
1257
1258         * TextBoxBase.cs: For the 1.1 profile, the default SelectedText
1259         is null, not String.Empty.  See bug #323038.
1260
1261 2007-10-01  Jonathan Pobst  <monkey@jpobst.com>
1262
1263         * TextControl.cs: Change the margins to match MS a little better.
1264         Still not perfect for X11 due to some DrawString differences, but
1265         is still an improvement over the old stuff.
1266         Partially fixes #324467.
1267
1268 2007-09-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1269
1270         * FolderBrowserDialog.cs: When using MyComputer as 
1271         RootFolder, let absolute paths be considered as valid ones. Also, use
1272         Path.DirectorySeparatorChar instead of Path.AltDirectorySeparatorChar,
1273         for Windows compatibility.
1274         Partially fixes #325247.
1275
1276 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1277
1278         * FolderBrowserDialog.cs: Fix the recursive FindPathInNodes method.
1279         Also remove the stack.Count > 0 check in FBTreeView.SetSelectedNode
1280         method, since it causes the dialog to not select folders directly
1281         under the root path (when setting SelectedPath property).
1282
1283 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1284
1285         * TreeNode.cs: When calling Expand/Collapse and need to call 
1286         ExpandBelow/CollapseBelow respectively, take into account
1287         partially visible nodes (previously Expanding/Collapsing
1288         a partially visible node in the bottom was not updating its +- sign).
1289
1290 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1291
1292         * TreeView.cs: When calling Expand on a TreeNode, and we need to
1293         expand nodes below (ExpandBelow), scroll the entire Viewport
1294         area if the node is above it and not visible (instead of scrolling
1295         the area from node's Bottom, which applies only when the node is
1296         visible).
1297         Fixes #325266.
1298
1299 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1300
1301         * TreeView.cs: When calling ExpandAll, set SelectedNode to the top
1302         node in the bottom area (as .Net does). This is done to preserve the
1303         scroll position when ExpandAll is called before handle is created for
1304         the 1.1 profile (bottom area, as opposed to top area in 2.0).
1305         Fixes #324103.
1306
1307 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1308
1309         * TreeView.cs: When calling ExpandAll, don't move the scroll to the 
1310         bottom area if we are in fact not using the vertical scroll bar.
1311         Fixes #324824.
1312
1313 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
1314
1315         * Control.cs: Comment out a double buffering optimization that doesn't
1316         take into account invalidates created in OnPaint, causing the control
1317         to never be redrawn.  It would take quite a bit of work to work around
1318         this, but I left it commented with an explanation for later possible
1319         optimization.
1320         [Fixes bug #328681]
1321
1322 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
1323
1324         * Control.cs: Ask parent to perform a layout if control is AutoSize and
1325         the text changes.
1326         * RadioButton.cs: Implement GetPreferredSizeCore.
1327         [Fixes bug #328672]
1328
1329 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
1330
1331         * RichTextBox.cs, TextBoxBase.cs, WindowsFormsSynchronizationContext.cs:
1332         corcompare stuffs.
1333
1334 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
1335
1336         * Application.cs: Move the sync context stuff to Run instead of RunLoop
1337         so that it doesn't get uninstalled on modal forms.
1338         * Control.cs: Install a sync context when a control is created.
1339         * WindowsFormsSyncronizationContext.cs: Create a private static control
1340         to invoke on.  This is easier than trying to find a created control we
1341         can use.
1342         [Fixes bug #327608]
1343
1344 2007-09-25  Jonathan Pobst  <monkey@jpobst.com>
1345
1346         * Application.cs: Install a WindowsFormsSynchronizationContext in the
1347         run loop, and uninstall it when done.
1348         * WindowsFormsSynchronizationContext.cs: Implement.
1349         [Fixes the common case in bug #327608]
1350
1351 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
1352
1353         * DataGridViewCellCollection.cs: Added argument checks for indexers.
1354         Use case-insensitive lookup of column name in indexer. Code
1355         formatting.
1356
1357 2007-09-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1358
1359         * TreeNode.cs: When collapsing or expanding a node, check whether its
1360         change will affect the visible area (we were previously doing a
1361         IsVisible check, but that check is not enough since children nodes
1362         could be still visible). Fixes part of #325266.
1363
1364 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
1365
1366         * TreeView.cs: Always select the first node when the TreeView gets
1367         focus if there is no currently selected node.
1368         [Fixes bug #324279]
1369
1370 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
1371
1372         * TreeView.cs: Do not raise BeforeSelect or AfterSelect when the
1373         node being selected is null.
1374         [Patch from Yves Bastide fixes bug #326858]
1375
1376 2007-09-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1377
1378         * TreeNode.cs: Add an internal ArePreviousNodesExpanded, to know
1379         whether all the parent nodes are expanded.
1380         * TreeNodeCollection.cs: When adding a new node an calling SetupNode,
1381         call RecalculateVisibleOrder if all previous nodes are expanded.
1382         Before that we were doing a IsVisible check, but sometimes the node
1383         is not in the visible area, but _should_already be ready, because of
1384         all previous nodes are expanded. Fixes #325259.
1385
1386 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1387
1388         * ToolStripSplitButton.cs: Call the ButtonClick event if the button
1389         portion of the item is clicked.
1390
1391 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1392
1393         * TextControl.cs: Do not tell the system to move the cursor if the
1394         textbox isn't focused.  Fixes part of bug #322668.
1395
1396 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1397
1398         * ComboBox.cs: When there are no items, do not show the dropdown if
1399         the down arrow is clicked.  Fixes part of bug #322668.
1400
1401 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1402
1403         * ToolStripComboBox.cs: Manually set the size of this control in the
1404         constructor, as it doesn't seem to be the same as DefaultSize.
1405         Fixes a failing monobuild test.
1406
1407 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
1408
1409         * DateTimePicker.cs: If the user sets MinDate to DateTime.MinValue,
1410         change it to DateTimePicker.MinDateTime.  [Fixes bug #326609]
1411
1412 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
1413
1414         * Theme.cs: FileDialogs should be using DesktopDirectory instead of
1415         Desktop.  This lets it work for people who have moved their desktops
1416         from the default location on windows.  For people who have not, both
1417         values are the same, so it shouldn't hurt anything.  [Fixes bug #325270]
1418
1419 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1420
1421         * ToolStripControlHostTest.cs: DefaultSize is based off hosted control,
1422         but when the base constructor sets this, the control is null.  Set it
1423         again in the constructor.  Fixes a failing monobuild test.
1424
1425 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1426
1427         * ToolStripDropDownItem.cs: Make sure Click and DropDownOpened events
1428         get called.
1429         * ToolStripSplitButton.cs: Make sure MouseDown and MouseUp events get
1430         called.
1431
1432 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1433
1434         * ToolStrip.cs: Don't show tooltips for ToolStripTextBoxes, they
1435         will handle it themselves.
1436         * ToolStripItem.cs: When deciding what the text of a tooltip should
1437         be, use the Text property instead of the text field.
1438         * ToolStripTextBox.cs: Handle tooltips.
1439         [Fixes bugs #325417 and #325973]
1440
1441 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1442
1443         * ToolStripDropDownButton.cs: Only drop down overflow menu with a
1444         left click.  Fixes the easy part of bug #325969.
1445
1446 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1447
1448         * ToolStrip.cs: Set AutoSizeMode back to GrowAndShrink to refix
1449         bug #325406, but set a minimum for StatusStrip to 22 to keep
1450         bug #325390 fixed.  I think this minimum would have been figured
1451         up automatically if the grip was actually a ToolStripItem, but it
1452         currently is not.
1453
1454 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1455
1456         * ListView.cs: max_label_wrapping is now 30 pixels instead of 38,
1457         as this is apparently the actual value used by .Net. Also apply
1458         ItemPadding in Details view only, and decrease the general width padding,
1459         to have only the needed. This should fix #324340 in Windows too.
1460
1461 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1462
1463         * ListViewItem.cs: Don't Invalidate item if parent is inside
1464         a BeginUpdate/EndUpdate block. This prevents to have differences
1465         between the ListView and items state, as well as avoid some exceptions
1466         there.
1467         * ListView.cs: Make 'updating' field internal.
1468
1469 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1470
1471         * ToolStripControlHost.cs: Realign control when ControlAlign changes.
1472         * ToolStripItem.cs: Use ImageScalingSize when calculating preferred
1473         size if appropriate.
1474         Fixes reopened bug #325414.
1475
1476 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1477
1478         * ToolStrip.cs: Set AutoSizeMode back to GrowOnly.
1479         * ToolStripItem.cs: Invalidate before and after our new autosize when
1480         text changes.
1481         Fixes reopened bug #325390.
1482
1483 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1484
1485         * ToolStripMenuItem.cs: Make sure we invalidate when clicked so
1486         mnemonics can be drawn or undrawn correctly.  Fixes reopened bug 
1487         #325044.
1488
1489 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1490
1491         * Control.cs: Do WM_CONTEXTMENU before OnMouseUp.  [Fixes bug #325535]
1492
1493 2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1494
1495         * ColumnHeader.cs: When drawing column text, use EllipsisCharacter
1496         instead of EllipsisWord (by equistango at gmail.com). Fixes part of
1497         #82734.
1498
1499 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1500
1501         * ToolStrip.cs: Make ToolStrip selectable when TabStop = true.  Find an
1502         item to select when the ToolStrip is selected.
1503         * ToolStripControlHost: Realign the control when the bounds or visibility
1504         change.
1505         * ToolStripItem.cs: When selected, if it's a control host, focus the control.
1506         * ToolStripOverflow.cs: When laying out the drop down, respect the item's
1507         preferred height.
1508         * ToolStripTextBox.cs: OnPaintInternal should call base.OnPaintInternal, not
1509         base.OnPaint.  Was causing text not to be drawn.
1510
1511 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1512
1513         * SplitterPanel.cs: Ignore attempts to set AutoSizeMode.
1514
1515 2007-09-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1516
1517         * TreeView.cs: When creating the label edit text box,
1518         set is initially to Visible = false. This is done to
1519         prevent a confusion in the layout which makes it to lose
1520         focus when shown the first time. Fixes part of #82592.
1521
1522 2007-09-13 Andreia Gaita <avidigal@novell.com>
1523
1524         * WebBrowserBase.cs: add FocusOption enumeration for finer focus control
1525
1526 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1527
1528         * ToolStrip.cs: Take Margin into account when calculating preferred
1529         size.  Also, allow preferred size to get smaller than the explicit
1530         size.
1531         * ToolStripTextBox.cs: Don't change the GetPreferredSize implementation.
1532         First step towards fixing bug #82747.
1533
1534 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1535
1536         * TreeView.cs: Applied patch from latency@gmx.de to not paint the
1537         full row select background over the plus/minus glyph.  Also, turn
1538         off the focus rectangle for full row select since MS doesn't seem
1539         to ever paint it.  [Fixes bug #81839]
1540
1541 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1542
1543         * ToolStrip.cs: Don't FocusInternal if there is no selected item.
1544         This was causing keyboard opened dropdowns to lose focus.
1545         [Fixes bug #82803]
1546
1547 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1548
1549         * Control.cs: If Rectangle.Empty is passed to Invalidate, use
1550         ClientRectangle instead.  [Fixes bug #82838]
1551
1552 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1553
1554         * SplitContainer.cs: We can't reset Visible on every layout because
1555         someone may have set Visible = false explicitly on a SplitterPanel.
1556         Make sure when we switch orientation the SplitterDistance does not
1557         change.  Fixes two failing tests.
1558
1559 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1560
1561         * TreeView.cs: Use MeasureTextInternal instead of MeasureText in
1562         TextRenderer, since the latter is only available in 2.0.
1563
1564 2007-09-13  Ivan N. Zlatev <contact@i-nz.net>
1565
1566         * Cursor.cs: Fix Cursor.Current to apply Cursor.Default.
1567         * SplitContainer.cs: Implement FixedPanel layouting.
1568
1569 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1570
1571         * WebBrowserBase.cs: setup shutdown routine
1572
1573 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1574
1575         * Application.cs: Let keyboard events that are targetted 
1576                 to non-mwf windows hosted inside mwf (as in, webbrowser),
1577                 propagate properly. Fixes keyboard handling on the webbrowser.
1578
1579 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1580
1581         * ListView.cs: When handling MouseUp event and we are 
1582         highligting a node with the mouse right button, don't trigger
1583         Before/AfterSelecting event, since we are not actually selecting
1584         the node.
1585
1586 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1587
1588         * TreeView.cs: When editing a node, modify the edit text box
1589         depending on the text length (as you are typing), like MS does.
1590
1591 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1592
1593         * ToolStrip.cs: Fixup preferred size calculations for vertical toolbars. 
1594         Override GetPreferredSizeCore to perform calculations.  Remove custom
1595         autosize logic.  [Fixes bug #82739]
1596
1597 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1598
1599         * TextBoxBase.cs: Modified should default to false.
1600
1601 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1602
1603         * Control.cs: Update the anchoring distances even when layout is supspended.
1604         Patch provided by George fixes bug #82805.
1605
1606 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1607
1608         * Control.cs: Provide a setter for ExplicitHeight.
1609         * TextBoxBase.cs: Now that we have the implementation for explicit heights,
1610         remove the hacks in here for requested_height.
1611         [Fixes bug #82749]
1612
1613 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1614
1615         * ScrollBar.cs: Fix an issue reported on the lists where setting a scrollbar's
1616         Maximum to lower that its current Value caused an ArgumentException by setting
1617         the Value to the new Maximum.
1618
1619 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1620
1621         * ThemeWin32Classic.cs: Math is hard!  Fix some math so that the TrackBar
1622         handle moves to the closest tick when it is being dragged.
1623         [Fixes bug #82751]
1624
1625 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1626
1627         * ToolStripManager.cs: When we have added MDI buttons onto a MenuStrip, we
1628         can't let them count as real items when calculating where to merge in the
1629         user's items.  [Fixed bug #82786]
1630
1631 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1632
1633         * ToolStripMenuItem.cs: Add a parent type check so we don't crash on people
1634         who want to add a menu item directly onto a toolstrip.
1635         [Fixes bug #82775, part II]
1636
1637 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1638
1639         * StatusStrip.cs: Synchronize SetDisplayedItems with the ToolStrip version.
1640         * ToolStrip.cs: If a ToolStripItem set to not visible is added to a ToolStrip,
1641         don't set it to available.
1642         * ToolStripItem.cs: When Visible is changed, tell the owner to perform a layout.
1643         [Fixes bug #82727, part II]
1644
1645 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1646
1647         * StatusStrip.cs: Change item placement to None if not visible.
1648         * ToolStripItem.cs: Invalidate when InternalVisible changes.
1649         These should have been committed to fix 82723, but I missed them.
1650
1651 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1652
1653         * ToolStrip.cs: Make sure ItemClicked is raised before the ToolStripItem's
1654         Click, and that it is only called once.
1655         * ToolStripMenuItem.cs: Call OnClick even when there are dropdown items.
1656         * ToolStripDropDownItem.cs: Override HandleItemClick so dropdowns stay
1657         dropped down.
1658         [Fixes bug #82775]
1659
1660 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1661
1662         * ColumnHeaderSample.cs: Use 5 pixels as extra height instead of 8
1663         to match .Net.
1664         * ThemeWin32Classic.cs: For the columns text, use 5 pixels as left padding
1665         instead of 8, just like above. Partially fixes #82734.
1666
1667 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1668
1669         Patch by Ernesto Carrea <equistango at gmail.com>. Partially 
1670         fixes #82734.
1671
1672         * ListView.cs: Remove extra space between rows in Details view (match
1673         .Net). 
1674         * ThemeWin32Classic.cs: Header text should use ListView.Font, not
1675         the DefaultFont.
1676
1677 2007-09-08  Gert Driesen  <drieseng@users.sourceforge.net>
1678
1679         * Application.cs: Modified ProductVersion to return value of
1680         AssemblyInformationVersion if available, and fallback to assembly
1681         version. Fixes bug #82746. Code formatting.
1682         * BindingSource.cs: Remove NIE from Dispose, and mark it MonoTODO
1683         instead.
1684
1685 2007-09-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1686
1687         * Control.cs: When updating ZOrder for a child control,
1688         take into account the implicit ones (we need it in our controls
1689         using them). Fixes #82642.
1690
1691 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1692
1693         * ToolStripItem.cs: Add support for animated images.
1694         [Fixes bug #82726]
1695
1696 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1697
1698         * ToolStrip.cs: Make sure we aren't drawing anything that isn't 
1699         visible.  [Fixes bug #82727]
1700
1701 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1702
1703         * ToolStripItem.cs: If AutoSize changes the size of our item, invalidate
1704         so we repaint using the new size.  [Fixes bug #82723]
1705
1706 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1707
1708         * TreeView.cs: If ShowLines is true, we should ignore the FullRowSelect
1709         option.  [Fixes bug #81779]
1710
1711 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1712
1713         * TreeView.cs: Override HandleClick because the StandardClick style is
1714         set to false.  According to MSDN (and testing), the click events should
1715         only be raised when the click occurs on a TreeNode.  [Fixes bug #81739]
1716
1717 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1718
1719         * ToolStripTextBox.cs: Invalidate our textbox when it loses focus, so
1720         the border will disappear.  Fixes reopened #82653.
1721
1722 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1723
1724         * Control.cs: If the control is autosize, and its preferred size changes
1725         when it lays out its children, tell its parent so it can be re-layed out.
1726         Fixing some of the fallout from r85433.
1727
1728 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1729
1730         * ThemeWin32Classic.cs: Fix a NRE caused by r85427 because RadioButton
1731         and CheckBox share some code.
1732
1733 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1734
1735         * TrackBar.cs: Only call OnScroll if we actually changed the Value of
1736         the TrackBar, not every mouse move.  [Fixed bug #82718]
1737
1738 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1739
1740         * ThemeWin32Classic.cs: Allow a CheckBox to be rendered like a Button
1741         under 2.0 rendering.  [Fixes bug #82657]
1742
1743 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1744
1745         * TreeView.cs: If we found a TreeNode to display a context menu, but
1746         it doesn't have one to show, let the TreeView display its menu
1747         instead.  [Fixes bug #82680]
1748
1749 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1750
1751         * ToolStripTextBox.cs: TextBox no longer call OnPaint, we need to use
1752         OnPaintInternal instead.  Give the internal TextBox a Border property
1753         so it can draw itself more correctly.  [Fixes bug #82653]
1754
1755 2007-09-06  Zoltan Varga  <vargaz@gmail.com>
1756
1757         * HtmlHistory.cs HtmlWindow.cs HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs WindowsFormsSynchronizationContext.cs: Stubs for missing 2.0 classes.
1758
1759 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1760
1761         * ComboBox.cs: Adjust combobox button state to reflect current state when
1762         back to enabled = true. Fixes first issue of #82654.
1763
1764 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1765
1766         * Control.cs: Fix last patch regression, prevent forms to update zorder when
1767         setting visible property.
1768
1769 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1770
1771         * Control.cs: Update zorder after control creation in SetVisibleCore, it 
1772         fix zorder for controls initially created as non visible. Fixes #82667.
1773
1774 2007-09-04  Everaldo Canuto  <everaldo@simios.org>
1775
1776         * ThemeWin32Classic.cs: Adjust checkbox light color to ControlLightLight to
1777         mimic win32 look. Fixes #82656.
1778
1779 2007-09-01  Zoltan Varga  <vargaz@gmail.com>
1780
1781         * FileDialogCustomPlace.cs FileDialogCustomPlacesCollection.cs: 
1782         Stubs for new net 3.5 classes.
1783
1784 2007-08-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1785
1786         * ListViewItem.cs: In ListViewItemCollection operations calculate
1787         Layout for owner as well as invalidate it. Fixes part of #82642.
1788
1789 2007-08-31  Jonathan Pobst  <monkey@jpobst.com>
1790
1791         * ToolStripItem.cs: Take Parent/Owner's Enabled state in to account
1792         when returning Enabled.  [Fixes bug #82651]
1793
1794 2007-08-30  Everaldo Canuto  <everaldo@simios.org>
1795
1796         * ToolBar.cs: Fix button size for non flat toolbars. Fixes #82368.
1797
1798 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1799
1800         * ListView.cs: Put item padding info in a single place
1801         (Theme.ListViewItemPaddingWidth) to have working AutoResize on
1802         columns again.
1803         * ThemeWin32Classic.cs:
1804         * Theme.cs: Likewise.
1805
1806 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1807
1808         * ListView.cs: When a ListViewSubItem instance is invalidated,
1809         invoke Invalidate on parent ListViewItem, not parent ListView.
1810         Fixes #81570.
1811
1812 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1813
1814         * ListView.cs, ListViewItem.cs: corcompare stuffs.
1815
1816 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1817
1818         * BindingMemberInfo.cs: Implement == and != operators.
1819
1820 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1821
1822         * HtmlElementEventArgs.cs: Implement properties.
1823
1824 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1825
1826         * HtmlElementErrorEventArgs.cs, HtmlElementErrorEventHandler.cs: Added.
1827
1828 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1829
1830         * TabControl.cs: I was looking into the MonoTODO on TabPageCollection.
1831         Add (string,string,string) to implement the imagekey.  It turns out, we
1832         use the requested imagekey whereas .Net does not.  So I broke ours to match
1833         theirs.  :(
1834
1835 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1836
1837         * Form.cs, UserControl.cs: Override ValidateChildren, AutoValidate.
1838
1839 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1840
1841         * ContainerControl.cs: Implement ValidateChildren and new Validate overload.
1842
1843 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
1844
1845         * FolderBrowserDialog.cs: Set Tag of newly created node, and keep it
1846         up-to-date. Fixes bug #82618.
1847
1848 2007-08-29  Everaldo Canuto  <everaldo@simios.org>
1849
1850         * TextBoxBase.cs: Call CalculateDocument after changes Lines property to
1851         reflect document changes. Fixes #82367.
1852
1853 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1854
1855         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
1856         as well as add new ones. This should make work the BackgroundImage
1857         property for ListView again.
1858
1859 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1860
1861         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
1862         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
1863         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
1864
1865 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1866
1867         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
1868         IsKeyLocked.
1869
1870 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1871
1872         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
1873         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
1874
1875 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1876
1877         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
1878         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
1879
1880 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1881
1882         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
1883
1884 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1885
1886         * GridEntry.cs: Implement GetService.
1887
1888 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
1889
1890         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
1891         for label editting, make sure we focus back on the TreeView.
1892         [Fixes bug #82590]
1893
1894 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1895
1896         * ListView.cs: Add some 2.0 overrides.
1897
1898 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1899
1900         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
1901         because getter dont returns right value before handle creation. Thanks 
1902         to George. Fixes #82569.  
1903
1904 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1905
1906         * Theme.cs: Revert last patch, it causes error under win32. 
1907
1908 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1909
1910         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
1911         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
1912         logical Desktop rather than the physical file system location. Fixes #82603. 
1913
1914 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
1915
1916         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
1917         for the patch. Fixes #82568.
1918
1919 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1920
1921         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
1922         methods.
1923
1924 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1925
1926         * ListViewInsertionMark.cs: New stubbed class.
1927
1928 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1929
1930         * FolderBrowserDialog.cs: When adding folder, immediately create the
1931         directory with temporary name and rename the directory when editing
1932         finishes. This matches MS. Ensure the node for the new folder is 
1933         selected and LabelEdit is disabled, when editing is either finished
1934         or cancelled.
1935
1936 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1937
1938         * TreeView.cs: When editing label of node, ensure node is visible.
1939
1940 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
1941
1942         * PropertyGridView.cs: Set the value only if it has changed.
1943
1944 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1945
1946         * ListView.cs: Some more code refactoring to add support sorting
1947         with groups (now for Details view). Remove unused code also.
1948
1949 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1950
1951         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
1952         Not a big fan of reacting immediately to a field in an EventArg, but that's
1953         the way it's done.  (This is part of the previous commit that got left out.)
1954
1955 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1956
1957         * FolderBrowserDialog.cs: Removed need for separate description field.
1958         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
1959         has focus when dialog box is displayed again, regardless of what
1960         button was pressed the previous time. Set RootFolder and SelectedPath
1961         each time dialog box is displayed. This ensures the treeview is
1962         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
1963         when it does not have focus. Added support for more special folders.
1964
1965 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1966
1967         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
1968         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
1969         it resets the edit_args.
1970         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
1971         [Fixes bug #82577]
1972
1973 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
1974
1975         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
1976         button to match MS. Provide more meaningful exception message for
1977         invalid RootFolder value. Use zero-length string when SelectedPath
1978         is set to null. Allow non-rooted paths in SelectedPath, but ignore
1979         them in FolderBrowserTreeView. Allow folders to be created in
1980         RootFolder. Fixes bug #82576.
1981
1982 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1983
1984         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
1985         since we need to take into account the group headers and the margin
1986         between them.
1987         * ListViewGroup.cs: Add a rows field to store the number of rows per
1988         group.
1989
1990 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1991
1992         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
1993           Anyways, let's just follow the lead.
1994
1995 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1996
1997         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
1998         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
1999         controls in GetPreferredSizeCore.
2000         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
2001         [Fixes bug #82488]
2002
2003 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
2004
2005         * PrintDialog.cs: Need to instantiate the form variable here too.
2006
2007 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2008
2009         * ListView.cs: Do some reorganization to support sorting in groups,
2010         by doing the layout sequentially in ListView.Items. Also add support
2011         for the Default Group, which should be available for items with no
2012         group assigned.
2013         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
2014         for storing layout info also.
2015         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
2016         collection, as well as providing internal members to do a traversal
2017         including the default group (needed when doing layout/drawing).
2018         * ThemeWin32Classic.cs: When drawing group headers use internal
2019         ListViewGroupCollection members to take into account the default
2020         group.
2021
2022 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
2023
2024         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
2025
2026 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2027
2028         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
2029         been created.  If handle is created, we want arror keys.  If we are editing
2030         a node, we want things like enter, esc, home, end, page up, page down.
2031         Allows Esc to work for FolderBrowserDialog.
2032
2033 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2034
2035         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
2036         they close when ESC is pressed.  Thanks Andy!
2037
2038 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2039
2040         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
2041         This way we can tell if this is a CommonDialog provided with mono, or one
2042         that is being implemented outside by a developer.  If it is an external one,
2043         the developer is responsible for showing their own form.  We were showing
2044         our blank form after the developer showed his.
2045         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
2046         PageSetupDialog.cs: Instantiate form variable in our constructor.
2047         [Fixes bug #82531]
2048
2049 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2050
2051         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
2052         and always return true.  [Fixes bug #81616]
2053
2054 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2055
2056         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
2057         TextBox.  [Fixes bug #82549]
2058
2059 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
2060
2061         * FileDialog.cs: When Save/Open is clicked and no filename is selected
2062         or entered then do not close the dialog. Fixes bug #82539. Removed
2063         CWLs.
2064
2065 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
2066
2067         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
2068         code to this method. It is calling every time filter changes. This method
2069         will help to fix the bug #80887.
2070
2071 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
2072
2073         * CheckBox.cs: Implement AutoSize calculation.
2074
2075 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
2076
2077         * CheckBox.cs: Use new 2.0 rendering for 2.0.
2078         * Theme.cs: Method declarations for 2.0 rendering path.
2079         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
2080
2081 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2082
2083         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
2084
2085 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2086
2087         * ListViewGroupCollection.cs: Implement AddRange the right way, to
2088         only call Redraw on the parent one time.
2089
2090 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2091
2092         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
2093           GetClipboardContent.
2094         * DataGridViewCell.cs: Implemented GetClipboardContent,
2095           GetEditedFormattedValue, GetFormattedValue.
2096         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
2097
2098 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
2099
2100         * TableLayoutStyleCollection.cs: corcompare fix.
2101
2102 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2103
2104         * DataObject.cs: Implemented retrieval of convertible / not convertible
2105           objects.
2106
2107 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
2108
2109         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
2110         ourselves.  This ensures the entire old bounds are repainted, in case our new
2111         size is smaller.  [Fixes bug #82518]
2112
2113 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
2114
2115         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
2116         flag to make fast handle of mouse events, without this the mouse move is
2117         handled in some manner, whether it is a mouse move or not. Fixes #81588.
2118
2119 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2120
2121         * ListView.cs: When doing layout calculations don't use a ref
2122         param to keep the current item; instead use its Index value (this 
2123         is specially important when doing the layout with Groups
2124         and Items being sparse). Also don't take into account items added to
2125         the Group but not yet added to the main ListView.Items collection.
2126
2127 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2128
2129         * ListViewGroupCollection.cs: Forgot to mimic an issue
2130         in the indexer (don't assign the ListView owner for new values).
2131
2132 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2133
2134         * ListViewGroupCollection.cs: Make the string indexer use
2135         the int based indexer to re-use code, instead of duplicate the code.
2136         Also Redraw as needed and take into account null values.
2137
2138 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
2139
2140         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
2141         [Fixes bug #82481]
2142
2143 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
2144
2145         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
2146         when other buttons are clicked or navigated to.
2147
2148 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2149
2150         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
2151           it's XplatUIX11 that attaches them.
2152
2153 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2154
2155         * DataGridView.cs: If a column has been added, recreate the editing row.
2156           Fixes #82226.
2157
2158 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2159
2160         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
2161           of the tag to draw. Makes disappearing text show up again.
2162
2163 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2164
2165         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
2166           Contents. Fixes #82487.
2167
2168 2007-08-19  Andreia Gaita  <avidigal@novell.com>
2169
2170         * Added HtmlElement.cs, HtmlElementCollection.cs, 
2171           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
2172           
2173 2007-08-19  Andreia Gaita  <avidigal@novell.com>
2174
2175         * BindingSource.cs: Implement this, dispose and getenumerator.
2176         * DataGridViewRowCollection.cs: Move the InvalidOperationException
2177         out of AddInternal, throw it only on public Add calls. The 
2178         UsingWebBrowser sample was blowing up with this when setting the
2179         DataSource after adding DataBindings, so it's likely that .net
2180         only throws this exception when Add is called directly. 
2181         
2182         * ToolStripControlHost.cs: Return the hosted control's text
2183         property, and not the ToolStripItem one (it would always return
2184         the initial value).
2185         
2186         * HtmlDocument.cs: Implement GetElementById and All
2187         * WebBrowser.cs: Remove exception on set_DocumentStream.        
2188
2189 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2190
2191         * Form.cs: Fix the max and min value for opacity (0~1).
2192
2193 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2194
2195         [Fixes #80118]
2196         * DataGridTableStyle.cs: Default header font is now null, on getter it 
2197         returns datagrid font when is null. On setter permits null.
2198
2199         * DataGrid.cs:
2200         - When ResetHeaderFont set header font to null.
2201         - On EndInit set grid_style.DataGrid.
2202
2203 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2204
2205         * TabControl.cs: Fix regression in default padding x.
2206
2207 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2208
2209         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
2210
2211 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2212
2213         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
2214         not 2. Fixes #82229.
2215
2216 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2217
2218         * TabControl.cs: Fix tab size when image height is less than text height.
2219         Partially fixes #81837.
2220
2221 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2222
2223         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
2224         "alt + tab". It works only for Win32, for X11 theres no way to remove window
2225         from taskbar and keep it on "alt_tab". Fixes #81722.
2226
2227 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2228
2229         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
2230         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
2231         Fixes #80877 and #79418.
2232
2233 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2234
2235         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
2236         between position and one of the screen borders. Fixes #82349.
2237
2238 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2239
2240         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
2241         the MessageBox in the taskbar. Fixes #82457.
2242
2243 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2244
2245         * MessageBox.cs: Fix form size when icon is set and text height is bigger
2246         than icon. Fixes #82468.
2247
2248 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2249
2250         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
2251         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
2252           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
2253           Refactored HandleNCCalcSize somewhat to avoid code duplication.
2254         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
2255           FormBorderStyle to decide if we're calculating a new size from the
2256           client size or not. CreateParams: Don't fake tool windows, only the X11
2257           backend manages toolwindows manually.
2258
2259 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2260
2261         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
2262         ObjectDisposedException.
2263
2264 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2265
2266         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
2267         in OnLoad should not have any effect.  [Fixes bug #82470]
2268
2269 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2270
2271         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
2272         paint for controls that create their own ToolTipWindow instead of
2273         going through ToolTip.
2274
2275 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2276
2277         * ToolTip.cs: Make Hide internal instead of public to match MS API.
2278
2279 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2280
2281         * ListViewGroupCollection.cs: Use generic List instead of an
2282         ArrayList, since this collection is 2.0 only.
2283
2284 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
2285
2286         * ToolTip.cs (Hide): Made public to make the build work (should
2287         this not be public?).
2288
2289 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2290
2291         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
2292         ToolTipWindow.
2293         * ToolTip.cs: Add an internal Visible property to facilitate transition.
2294
2295 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2296
2297         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
2298         PopupEventHandler.cs: Make these internal for 1.1.
2299         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
2300         use ToolTipWindow internals.
2301         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
2302         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
2303
2304 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2305
2306         * X11Dnd.cs: Add a null check.
2307
2308 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2309
2310         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
2311           nothing else succeeds. Fixes #82453.
2312
2313 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2314
2315         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
2316           rectangle if we're painting to another window than the one the paint
2317           message was generated on. Simplify the code somewhat, which makes
2318           PaintEventEnd also simpler.
2319
2320 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2321
2322         * Control.cs: When changing parent of a form, let the form decide whether
2323           XplatUI.SetParent should be called or not.
2324         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
2325           recreating the handle. If the new parent's handle isn't created, don't
2326           recreate our handle, just destroy it. CreateParams: Check if the
2327           parent's handle is created before fetching it.
2328
2329 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2330
2331         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
2332           Update calls to PaintEventStart/End to take a Message argument.
2333         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
2334           take a Message argument.
2335         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
2336           Message argument, and handle the case where we don't paint to the window
2337           for which the paint message was generated.
2338
2339 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2340
2341         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
2342           Marshal.GetLastWin32Error. Plug nasty memory leak in
2343           PaintEventStart/End, we were creating a DC we weren't releasing.
2344
2345 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2346
2347         * ListView.cs: Add Groups support in Details view. Also have a small
2348         method to do the layout of the group header. Don't use a separate
2349         method to do the groups calculation in Icons view, since our methods
2350         are now a little simpler.
2351         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
2352         `Bounds'.
2353         * ThemeWin32Classic.cs: Likewise.
2354
2355 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
2356
2357         * Application.cs: Add FilterMessage method and rework our message loop
2358         logic to use it.
2359
2360 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
2361
2362         * Application.cs: Add some methods and stub a few methods that are
2363         pretty much never used.
2364
2365 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
2366
2367         * TreeNode.cs: Add some serialization methods.
2368
2369 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2370
2371         * ListView.cs: In ListViewItemCollection have a 
2372         'is_main_collection' field to not modify ListViewItem.ListView
2373         when using it as ListViewGroup.Items (and not ListView.Items)
2374         and also don't modify selection state (.Net behaviour). 
2375         Instead, set group for items contained in a ListViewGroup.Items collection.
2376         * ListViewItem.cs: Simplify some code in Group setter.
2377         * ListViewGroup.cs: use the new .ctor to pass the current instance
2378         to the ItemsCollection.
2379         * ListViewGroup.cs: Set the ListView property for ListViewGroup
2380         instances when adding/removing. Also make Remove use RemoveAt, which
2381         should perform better.
2382
2383 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2384
2385         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
2386         that crept into the 1.1 profile.
2387
2388 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2389
2390         * ToolBarButton.cs: Implement ImageKey.
2391
2392 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2393
2394         * ToolBar.cs: Implement ScaleControl/ScaleCore.
2395
2396 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2397
2398         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
2399           created, it might have gotten destroyed since we last checked. Fixes
2400           #82405.
2401
2402 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
2403
2404         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
2405         tooltip will hide when mouse is moved off the control.
2406         [Fixes bug #82407]
2407
2408 2007-08-11 Andreia Gaita <avidigal@novell.com>
2409
2410         * WebBrowserBase.cs, WebBrowser.cs: add implementation
2411         using Mono.Mozilla for loading and navigating webcontrol
2412         with xulrunner.
2413         The initial implementation was done on 
2414         /trunk/mozembed/tests/browser , and copied here.
2415
2416 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
2417
2418         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
2419         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
2420
2421 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2422
2423         * DataGridView.cs: Add support for an editing row. Fixes #82226.
2424           RowTemplateFull: throw an exception if a column doesn't have a template.
2425         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
2426           add the row just before it.
2427         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
2428           selected.
2429         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
2430           DataGridView field to be able to reach the grid's editing row.
2431
2432 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2433
2434         * ToolTip.cs: If the control's handle hasn't been created when it has a
2435         tooltip set on it, don't check to see if we need to show the tooltip.  This
2436         check was causing the control's handle to be created.
2437         [Fixes bug #82399]
2438
2439 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2440
2441         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
2442                                         1.1             2.0
2443         Handle Not Created      -1              0
2444         Handle Created          0               0
2445         [Fixes bug #82371]
2446
2447 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2448
2449         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
2450         [Fixes bug #82348]
2451
2452 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2453
2454         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
2455         * ToolTip.cs: Implement some properties and owner draw.
2456
2457 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2458
2459         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
2460           show them again, since setting visibility causes a paint, causing an
2461           endless loop (instead use a temporary and set it all when it's known if
2462           they should be shown or not). Fixes #79265.
2463
2464 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2465
2466         * DataGridView.cs: Only do a full column/row selection if a header was
2467           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
2468           isn't pressed, deselect everything before selecting something.
2469
2470 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2471
2472         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
2473           behaviour according to bug #81075 - they are returned in the order they
2474           are selected. Fix HitTest to check if the point is within any of the
2475           headers. Allow for row/column selection when in ColumnHeader or
2476           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
2477           the row and column to call when their selected state changes, and
2478           updated selected_[rows|columns] whenever SetSelected* is called.
2479         * DataGridViewBand.cs: Initialize isRow correctly. Call
2480           SetSelected[Row|Column]CoreInternal when the selected state changes, and
2481           add a SelectedInternal to avoid StackOverflows.
2482         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
2483           ReadOnly no matter what.
2484         * DataGridViewSelectedColumnCollection.cs,
2485           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
2486           the items in reverse order (just as MS does...)
2487
2488 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2489
2490         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
2491         itself, not part of a mnemonic.  [Fixes bug #82378]
2492
2493 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2494
2495         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
2496         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
2497           the DGV, the column, the row, or the cell itself is readonly.
2498
2499 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2500
2501         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
2502         OSVersion.Platform.
2503         * FileDialog.cs: Same.
2504         * TextRendered.cs: Same.
2505         * FolderBrowserDialog.cs: Same.
2506         * TextBoxBase.cs: Same.
2507         * Application.cs: Same.
2508         * Cursors.cs: Same.
2509         * ThemeClearLooks.cs: Same.
2510
2511 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2512
2513         * XplatUI.cs: Added RunningOnUnix property to be used by controls
2514         instead of duplicating these checks everywhere.
2515         * FileDialog.cs: Use case-insensitive comparison for populating the
2516         DirComboBox when not running on unix. Fixes bug #82385.
2517         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
2518         "Look in".
2519
2520 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2521
2522         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
2523           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
2524           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
2525           cell and column selection with ctrl and shift pressed. Call the correct
2526           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
2527           the corresponding virtual method (PaintBackground to paint background,
2528           etc).
2529         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
2530           either the column, row or the cell itself is selected.
2531         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
2532           OnRowsAdded.
2533         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
2534           here. When the row is selected, don't select all cells. Each cell now
2535           queries the row to see if the row is selected.
2536
2537 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2538
2539         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
2540           SelectionMode.
2541
2542 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2543
2544         * ListView.cs: In ListViewItemsCollection check that owner is
2545         not null before trying to access it (this happens quite often
2546         using Groups). Also don't duplicate calls by calling CollectionChanged
2547         method.
2548
2549 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2550
2551         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
2552         when we are dismissed to clear keyboard mnemonics.
2553         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
2554         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
2555         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
2556         was activated by keyboard or the OS tells us to always draw them.
2557         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
2558         [Fixes bugs #82376, #82377]
2559
2560 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2561
2562         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
2563         shot at having it because Alt was pressed.
2564         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
2565         the first real menu item.
2566         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
2567         a mnemonic if Text is null.
2568         [Fixes bug #82374]
2569
2570 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2571
2572         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
2573         search do check whether the item is already contained in the
2574         collection or not; instead check if the owner of the item is the same
2575         as ours. Also, remove a redundant check in the same method. 
2576
2577 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2578
2579         * Control.cs: Allow the clip region to be set back to null.
2580         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
2581         [Fixes button still showing up in bug #82370 when Show Through is turned off]
2582
2583 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2584
2585         * GridEntry.cs: Add a null check.
2586         * PropertyGrid.cs: When checking for existing grid entries, ignore category
2587           entries. Fixes #82297.
2588
2589 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2590
2591         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
2592         for 2.0.
2593
2594 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2595
2596         * ListBox.cs: Implement ScaleControl.
2597
2598 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2599
2600         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
2601           have a menu strip.
2602         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
2603           parent has a menu strip. Fixes #81689.
2604
2605 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2606
2607         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
2608           moments, so apply some fuzzy logic to determine if the mouse is still
2609           inside a control or not. Fixes #82288 (for the third time).
2610
2611 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2612
2613         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
2614           Don't create the child if it has been disposed already (may happen if
2615           the user closes the form the Load event).
2616
2617 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2618
2619         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
2620           #82288.
2621
2622 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2623
2624         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
2625           might call us after we've been destroyed, in which case our own private
2626           parent field is null. Fixes #82326.
2627
2628 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2629
2630         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
2631         check for setting the dropdown's owner.
2632
2633 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2634
2635         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
2636         before removing system menu items.
2637
2638 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
2639
2640         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
2641         folding.
2642         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
2643         folding.
2644         * ToolStrip.cs: Add a null check to mnemonics.
2645         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
2646         no ConnectedArea.
2647         [Fixes most of bug #81689]
2648
2649 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2650
2651         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
2652
2653 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2654
2655         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
2656
2657 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2658
2659         * DataGridViewCell.cs: EditType: returns
2660           DataGridViewTextBoxEditingControl always.
2661
2662 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
2663
2664         * TextRenderer.cs: Remove the LineLimit string format flag from the
2665         DrawString fallback method so that things like buttons that aren't
2666         tall enough to draw a full line will still draw part of the text.
2667         [Fixes part of bug #82272]
2668
2669 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2670
2671         * DataGridView.cs: Implemented AutoResizeColumn(s).
2672         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
2673           according to the Alignment.
2674         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
2675           Implement alignment and padding when painting.
2676         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
2677           exists.
2678         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
2679           way.
2680         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
2681           a column is added.
2682
2683 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2684
2685         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
2686         which is internal.
2687
2688 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2689
2690         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
2691         hide GetPreferredSize from public API.
2692         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
2693         * ToolStripItem.cs: Stub out drag and drop methods and events.
2694         * ToolStripManager.cs: Stub out Save/LoadSettings.
2695         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
2696         * ToolStripPanel.cs: Fix corcompare error.
2697         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
2698         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
2699         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
2700
2701 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2702
2703         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
2704         bounds height instead of PreferredHeight.  Puts things back the way 
2705         they were for height while still fixing the width.  Fixes broken unit
2706         tests.
2707
2708 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2709
2710         * Binding.cs: Implement 2.0 constructors and add a null check.
2711
2712 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2713
2714         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
2715           and fix row index (off by one).
2716
2717 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2718
2719         * PropertyGridView.cs: Remove debug output.
2720
2721 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2722
2723         * Control.cs: We need to reset the is_created flags when the handle is
2724           destroyed. Fixes #82187.
2725         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
2726           client coordinates if the window doesn't have a parent.
2727           Win32GetParent returns the parent or the owner, and for top-level
2728           windows with no parent (but with an owner) we were calculating the
2729           location from the location of the owner.
2730         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
2731           form has been disposed.
2732         * MdiClient.cs: Add a null-check.
2733
2734 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2735
2736         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
2737         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
2738         so we can provide an implementation that returns the current width
2739         and preferred height.  Allows anchor = right to work with TextBox 2.0.
2740         [Fixes bug #82233]
2741
2742 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2743
2744         * ListView.cs: Add support for navigating items in Groups mode, by
2745         creating a big matrix containing all rows and cols of all groups. When
2746         are in other mode than Details, pressing Up should have a similar
2747         behaviour as that one of Down (moving to the next available column if
2748         current one doesn't have an item in the requested row). Also, don't
2749         proceed to use groups if ShowGroups is false.
2750         * ListViewGroup.cs: Add an internal int field to store the starting
2751         row of the group (used by the big matrix used for navigating the
2752         ListView).
2753         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
2754         false.
2755
2756 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2757
2758         * ToolStripDropDown.cs: When we do Show, start with the 
2759         DefaultDropDownDirection, but if our popup menu is going to off-screen,
2760         modify the direction to keep it on screen.  [Fixes bug #82210]
2761
2762 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
2763
2764         * FileDialog.cs: Accept any FilterIndex value, and store it
2765         unmodified. When FilterIndex is less than 1, or greater than number
2766         of filters, then default to first filter. Only add filter extension to
2767         file if user did not specifiy an extension. When type of dialog is
2768         OpenFileDialog and DefaultExt is set, then only use filter extension
2769         if: CheckFileExists is true and no file wih the default extension
2770         exists, or CheckFileExists is false, and user specified file does not
2771         exist. When CheckFileExists is true, then add first extension of 
2772         selected filter that matches existing file. Perform checks for
2773         existing file, overwrite and create after extension has been added to
2774         file name. When CheckFileExists is true and type is SaveFileDialog,
2775         then only consider first filter extension if DefaultExt is set.
2776         When CheckFileExists is true, then ignore DefaultExt if file with that
2777         extension does not exist. Also perform check for existing file when
2778         type is SaveFileDialog. Changed some field to constants.
2779
2780 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2781
2782         * ListView.cs: Take into account the region used by header
2783         control when doing the vertical scroll (this way we invalidate
2784         the precise area, and don't get any dirty one).
2785
2786 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
2787
2788         * FileDialog.cs: Check for valid filterIndex on button open/save. 
2789         Fixes #82184.
2790
2791 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2792
2793         * ListView.cs: Update some layout calculations in details view
2794         and clean the code in a pair of assignations.
2795
2796 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2797
2798         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
2799         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
2800         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
2801         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
2802
2803 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2804
2805         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
2806         performance of thread-safe Graphic methods.  (Thanks rolf!)
2807
2808 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2809
2810         * ListView.cs: When doing the layout calculations, don't calculate
2811         scroll bars before handle is created. This is unnecessary and also
2812         calculating them before handle creation item causes a number of random
2813         bugs (which begin to appear after Chris' big patch for handle creation
2814         fixes). 
2815
2816 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2817
2818         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
2819         for things that don't have a Graphics object.  Currently, things just use
2820         the static Hwnd.bmp_g which is not thread safe.
2821
2822 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2823
2824         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
2825           dialog. Fixes #82187.
2826
2827 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2828
2829         * DataGridViewElement.cs: Initialize state.
2830         * DataGridView.cs: Forward a few Mouse events to cells. Add
2831           GetRowInternal and GetCellInternal that doesn't unshare rows.
2832           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
2833           don't use the index, but look it up. Add
2834           DataGridViewControlCollection.RemoveInternal to remove controls
2835           that Remove won't remove (scrollbars, edit control).
2836         * DataGridViewColumn.cs: Initialize State correctly.
2837         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
2838           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
2839           implementing this.
2840         * DataGridViewRowCollection.cs: Implemented shared rows.
2841         * DataGridViewRow.cs: Throw exceptions as MS do.
2842         * DataGridViewCell.cs: A few properties are implemented by a
2843           Get<Property> method, so move implementation there and remove the
2844           NIEX in the method. Add a bunch of OnXInternal that DataGridView
2845           calls when necessary.
2846         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
2847           complicates matters.
2848         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
2849           unshare any rows.
2850
2851 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2852
2853         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
2854         the children controls.  Instead, we will just set up the proper docking for the
2855         children controls so we don't have to worry about it.  [Fixes bug #82188]
2856
2857 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2858
2859         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
2860         canceling and correct Before/AfterLabelEdit properties as layed out in bug
2861         81847.  [Fixes bug #81847]
2862
2863 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2864
2865         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
2866         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
2867         an explicit size based on the design-time size of the text.  Since our fonts
2868         may not match this explicit size, we tend to cut off the ends of people's labels.
2869
2870 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
2871
2872         * Menu.cs: Add some missing methods to MenuItemCollection.
2873
2874 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2875
2876         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
2877         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
2878         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
2879         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
2880         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
2881         * DataGridViewElement.cs: State defaults to Visible.
2882         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
2883         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
2884
2885 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2886
2887         * Control.cs: Minor 1.1 corcompare fix.
2888
2889 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2890
2891         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
2892         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
2893
2894 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2895
2896         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
2897           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
2898           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
2899           DataGridViewSelectedColumnCollection.cs,
2900           DataGridViewSelectedRowCollection.cs: Corcompare work.
2901
2902 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2903
2904         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
2905         it is autoset by VS2005 designer and the effect is barely noticeable.
2906
2907 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2908
2909         * TreeView.cs: Implement HitTest.
2910
2911 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2912
2913         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
2914           manually adding and removing the control from the Controls
2915           collecftion.
2916         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
2917           EditingControlInternal property that tracks the editing control.
2918           Always keeping the scrollbars in the Controls collection, as MS
2919           testing confirms is the right behaviour.
2920
2921 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2922
2923         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
2924           according to MSDN and new test.
2925
2926 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2927
2928         * TreeNode.cs: Implement ToolTipText.
2929         * TreeView.cs: Implement tooltips, NodeMouse* events.
2930
2931 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2932
2933         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
2934
2935 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2936
2937         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
2938         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
2939
2940 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
2941
2942         * Control.cs, Form.cs, ContainerControl.cs,
2943         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
2944         for misc properties.
2945
2946 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2947
2948         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
2949         * TreeView.cs: Implement StateImageList.
2950
2951 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2952
2953         * Form.cs: Don't check if the current form is the active form before
2954           activating it. Fixes #81904.
2955
2956 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2957
2958         * Form.cs: Don't check if the current form is the active form before
2959           activating it. Fixes #81904.
2960
2961 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2962
2963         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
2964
2965 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2966
2967         * Form.cs: Don't try to position the form after loading if the form was
2968           disposed. Fixes #81969.
2969
2970 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2971
2972         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
2973           properties. Had to change ToolBar into ToolStrip, which required a
2974           few #ifs.
2975
2976 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2977
2978         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
2979           resized, fixes part of #79829 (vertical lines in toolbar).
2980           PropertyGrid: Refactored Populate* to something that's easier to
2981           follow at least for me, as well as splitting it up into several new
2982           methods, required to update only subitems when something has
2983           changed by a popup editor or listbox. Don't use events to check
2984           when any values are changed, since the events are unreliable (we're
2985           changing the objects the events are registered with, and if the
2986           event handling requires the objects to be immutable (objects stored
2987           in hashtables for instance), the events will never be raised).
2988         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
2989           everytime we change a value, since events are unreliable.
2990           DropDownButtonClicked: For the same reason don't compare objects to
2991           check if it has changed or not, it would require all objects to
2992           derive Equals. Fix dialog location on windows, MS is doing weird
2993           things when creating parented forms.
2994         * GridEntry.cs: Add a SelectedObject setter.
2995
2996 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
2997
2998         * TreeNode.cs: Add some corcompare attributes.
2999         * TreeNodeCollection.cs: Implement 2.0 stuffs.
3000         * TreeView.cs: Implement some 2.0 stuffs.
3001
3002 2007-07-18  Andreia Gaita  <avidigal@novell.com>
3003
3004         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
3005         for moma.
3006
3007 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
3008
3009         * ListBox.cs: Implement custom tab offsets.
3010
3011 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3012
3013         * ToolStripContentPanel.cs: Support System renderer.
3014         * ToolStripControlHost.cs: Set RightToLeft to default to No.
3015
3016 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3017
3018         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
3019
3020 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3021
3022         * CheckBox.cs: Chain TextAlign to base implementation instead of
3023         maintaining another one.
3024
3025 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3026
3027         * ButtonBase.cs: Fix an incorrect string constant.
3028
3029 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3030
3031         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
3032         of creating one for measuring strings.
3033
3034 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3035
3036         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
3037         Implement MaxItemSize.
3038
3039 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
3040
3041         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
3042         for DeviceContext.  Instead, use the static one available in Hwnd.
3043         Informal tests show this saves about 500k on formtest.exe.
3044
3045 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
3046
3047         * ContainerControl.cs: Implement 2.0 AutoScaling.
3048
3049 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3050
3051         * ComboBox.cs: Work around bug #82120 (bug in mcs).
3052
3053 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
3054
3055         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
3056         Darken the focus color.
3057
3058 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
3059
3060         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
3061         for the checkbox.
3062         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
3063         X, Y instead of a rect for drawing text.
3064         - For ControlPaint.DrawCheckBox, center the check a little better when the
3065         checkbox is odd width.  When drawing a flat checkbox, use a white background
3066         when state != inactive.
3067         [Fixes bugs #82097, 82100]
3068
3069 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
3070
3071         * ListControl.cs: When changing CurrencyManager, disconnect event
3072         handlers from previous one. Fixes bug #81771. Code formatting.
3073
3074 2007-07-15  Andreia Gaita <avidigal@novell.com>
3075
3076         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
3077         full preview invalidation from layout invalidation, and only invalidate
3078         the layout when setting zoom or other properties. Invalidation should
3079         always be done even when resetting properties with the same values as
3080         what is there. Fixes #81744 and #79830.
3081
3082 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3083
3084         * ListView.cs: Implement initial support for Groups. Split some of the
3085         LayoutIcons code to render a partial list of the items (needed by
3086         items contained in ListViewGroup instances). Let the
3087         ListViewItemsCollection.ListView property be modifiable (needed when
3088         using Groups, too).
3089         * ListViewGroup.cs: Use a Bounds property rather than a Location
3090         one. Also invalidate the bounds when they get changed.
3091         * ThemeWin32Classic.cs: When drawing items, also draw the group header
3092         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
3093         method as well.
3094
3095 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3096
3097         * ListView.cs: When space gets pressed and CheckBoxes is true, 
3098         don't invoke the Begin and EndUpdate methods. We are generating 
3099         a redraw of the entire control without need to do so.
3100
3101 2007-07-13  William Holmes <billholmes54@gmail.com> 
3102
3103         * Control.cs: Changing logic in FindFlatForward and 
3104           FindFlatBackward to handle multiple Controls with 
3105           the same TabIndex.  
3106           This fixes bug 81687.
3107
3108 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
3109
3110         * OSFeature.cs: Enable IsPresent.
3111
3112 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3113
3114         * Control.cs: Don't do anything in WmShowWindow if the control has been
3115           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
3116           control is created, put on a form, the control is disposed (the
3117           form is never shown), and then we get a MapNotify, triggering a
3118           WM_SHOWWINDOW.
3119         * Form.cs: Exclude the current form when sending Deactivate to all
3120           MdiChildren.
3121         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
3122           there was a race condition because assigning the handle raises
3123           events, we can get more messages, therefore trying to assign the
3124           handle again, which would fail if any of those event handlers
3125           closed/disposed the control.
3126
3127 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3128
3129         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
3130
3131 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
3132
3133         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
3134         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
3135
3136 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3137
3138         * DateTimePicker.cs: If there's no part format specifier, return an
3139           empty string.
3140
3141 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
3142
3143         * FlatButtonAppearance.cs: Throw NotSupportedException for a
3144         Transparent BorderColor.
3145
3146 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3147
3148         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
3149           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
3150           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
3151           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
3152           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
3153           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
3154           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
3155           Remove warnings.
3156         * X11Structs.cs: Remove warnings, add ToString implementations.
3157
3158 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3159
3160         * XplatUIX11.cs: Translate min/max size according to the actual min/max
3161           size, and not the current size. Fixes #81798.
3162
3163 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3164
3165         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
3166           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
3167           to the control yet).
3168
3169 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3170
3171         * PropertyGridTextBox.cs: Add a method that sends any forwarded
3172           mousedowns to the contained textbox.
3173         * X11Structs.cs: More ToString implementation.
3174         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
3175           #81791.
3176
3177 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3178
3179         * PropertyGridView.cs: Add a null-check, fixes a few tests.
3180
3181 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
3182
3183         * TableLayoutPanelCellPosition.cs: TypeConverter.
3184
3185 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3186
3187         [ Fixes #79761]
3188         
3189         * PropertyGridTextBox.cs: Propagate any color changes to all contained
3190           controls.
3191         * PropertyGridView.cs: A few color fixes.
3192
3193 2007-07-10  Jackson Harper  <jackson@ximian.com>
3194
3195         * TextControl.cs: Remove some old unused text formatting stuff.
3196
3197 2007-07-10  Jackson Harper  <jackson@ximian.com>
3198
3199         * TreeView.cs: Update full row select invalidation to match the
3200         newer DrawSelection... method.
3201         - Make sure to invalidate the entire width when selecting a new
3202         node, if we have full row selection enabled.
3203
3204 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3205
3206         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
3207           display of properties again.
3208
3209 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
3210
3211         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
3212         to existing collections.
3213
3214 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3215
3216         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
3217         that changed between 1.1 and 2.0.
3218
3219 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3220
3221         * PowerStatus.cs: Added.  This is just a data class, it is filled
3222         in by SystemInformation.
3223
3224 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3225
3226         * Message.cs: Add op_Equality and op_Inequality.
3227
3228 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3229
3230         * MenuStrip.cs: Finish corcompare work.
3231
3232 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3233
3234         * LinkArea.cs: Add op_Equality and op_Inequality.
3235
3236 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3237
3238         * Application.cs: Add MessageLoopCallback delegate.
3239
3240 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3241
3242         * ListBox.cs: First set of 2.0 stuffs.
3243
3244 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3245
3246         * Control.cs: Make an internal Height property we can override
3247         without messing up the public API.
3248         * ListBox.cs: Override HeightInternal to always return the size
3249         the user set.  [Fixes bug #80466]
3250
3251 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
3252
3253         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
3254         paint cell borders if we haven't calculated where they go yet.
3255         [Fixes bugs #82040 and #82041]
3256
3257 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3258
3259         * ListView.cs: In Details view, set the location of item_control
3260         in the (0,0) position (and the header_control is thus on the
3261         item_control). This way the Bounds of the Items are relative to the
3262         ListView control (before this, they had a Bounds value without the
3263         header_control offset, which wasn't matching .Net). Fixes #82004.
3264
3265 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3266
3267         * ListControl.cs: When DataSource is set to null, pass an empty
3268         array of object to SetItemsCore. This is done to clean the items
3269         in the ListContol children. Fixes #81788.
3270
3271 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3272
3273         * ListControl.cs: Add 2.0 stuffs.
3274
3275 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3276
3277         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
3278         Refresh is overkill for just about every repaint request.
3279
3280 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3281
3282         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
3283         so remove my custom Get method and fix the property getter.
3284
3285 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3286
3287         * Label.cs: DefaultMargin for 2.0.
3288
3289 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3290
3291         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
3292         reported issue where other controls with mnemonics would steal strokes
3293         from a selected ComboBox.
3294
3295 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3296
3297         * ScrollOrientation.cs: Make internal for 1.1.
3298         * ScrollEventArgs.cs: Add 2.0 stuffs.
3299
3300 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
3301
3302         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
3303         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
3304         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
3305
3306 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3307
3308         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
3309
3310 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3311
3312         * ListView.cs: Implement the so-incredibly broken 2.0 
3313         VirtualItemsSelectionRangeChanged event.
3314
3315 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3316
3317         * ListView.cs: When enter is pressed and selection is non empty,
3318         an OnItemActivate event must be fired.
3319
3320 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3321
3322         * ListView.cs: Store the FocusedItem information as an
3323         int instead of a ListViewItem (needed by VirtualMode).
3324         Update the calls to SetFocusedItem to pass an index instead of
3325         an item.
3326         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
3327         the Focused state from the owner ListView. 
3328
3329 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3330
3331         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
3332         property. Also, invalidate previous focused item in the mentioned
3333         property (match .Net).
3334
3335 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3336
3337         * ListView.cs: Implement 2.0 FocusedItem property setter.
3338
3339 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3340
3341         * ListView.cs: Implement 2.0 TopItem property setter.
3342
3343 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
3344
3345         * StatusStrip.cs: The default renderer is System.
3346         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
3347         if the user specifies it.
3348         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
3349         if we are ManagerRenderMode.
3350         * ToolStripMenuItem.cs: Calculate our text color better.
3351         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
3352         from Professional to the base class based off working with the System renderer.
3353         * ToolStripSystemRenderer.cs: Added.
3354
3355 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3356
3357         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
3358
3359 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
3360
3361         * ToolTip.cs: Implement 2.0 Tag property.
3362
3363 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3364
3365         * ListView.cs: Implement 2.0 HitTest methods.
3366
3367 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3368
3369         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
3370         item is under the pointer or not (sugar). Also remove the TODO
3371         regarding to the cursor changes in OneClick activation.
3372         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
3373         the subitems use the parent's HotFont if UseItemStyleForSubItems is
3374         true; otherwise don't show the underline style.
3375
3376 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3377
3378         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
3379         the code to retrieve the item at position only one time. Also
3380         change cursor when Activation is ItemActivation.OneClick as well
3381         as invalidate the item if HotTracking is true (to show/hide the
3382         underline style). Add an internal HotItemIndex property to retrieve
3383         the current hot item's index.
3384         * ListViewItem.cs: Add an internal HotFont property to cache the
3385         font used when HotTracking is true and the pointer moves within the
3386         item's borders.
3387         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
3388         HotFont depending on the hot state of the item.
3389
3390 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3391
3392         * ListView.cs: Implement 2.0 HotTracking property.
3393
3394 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3395
3396         * ToolStripControlHost.cs: If our hosted control never got created,
3397         don't try to dispose it.  [Fixes bug #81909]
3398
3399 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3400
3401         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
3402
3403 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3404
3405         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
3406
3407 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3408
3409         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
3410         Details view.
3411         * DrawListViewColumnHeaderEventArgs.cs:
3412         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
3413         using the DrawText () methods.
3414
3415 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
3416
3417         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
3418         background which got erased in my changes yesterday.
3419
3420 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3421
3422         * ListViewItem.cs: Actually set bounds for subitems in Details view
3423         (2.0 feature).
3424         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
3425         can invoke from the owner draw routines if we need it. Also, add
3426         support for Owner draw in Details view.
3427
3428 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3429
3430         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
3431         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
3432         ShowImageMargin setting, properly align text in a ToolStripLabel
3433         hosted on a ToolStripDropDown.
3434
3435 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3436
3437         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
3438         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
3439
3440 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3441
3442         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
3443
3444 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3445
3446         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
3447         location to match ToolStripMenuItems.
3448
3449 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3450
3451         * DrawListViewColumnHeaderEventArgs.cs:
3452         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
3453         column headers in ListView. 
3454
3455 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3456
3457         * UserControl.cs: Implement AutoSize.
3458
3459 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3460
3461         * DrawListViewItemEventArgs.cs:
3462         * ListView.cs:
3463         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
3464         ListView.
3465
3466 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3467
3468         * ToolStripDropDownItemAccessibleObject.cs: Added.
3469         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
3470         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
3471         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
3472         ToolStripTextBox.cs: corcompare work.
3473
3474 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3475
3476         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
3477         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
3478         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
3479                 corcompare.
3480
3481 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3482
3483         * OSFeature.cs: Add IsPresent.
3484         * PrintPreviewControl.cs: Add RightToLeft.
3485         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
3486         * SplitterPanel.cs: Add AutoSizeMode.
3487
3488 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3489
3490         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
3491         * MdiClient.cs: Add 2.0 ScaleControl.
3492         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
3493         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
3494
3495 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3496
3497         * Form.cs: Implement some scaling methods, stub some RTL methods,
3498         corcompare work.
3499
3500 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3501
3502         * Control.cs: corcompare work.
3503         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
3504
3505 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3506
3507         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
3508         ControlPaint 2.0 stuffs.
3509
3510 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3511
3512         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
3513
3514 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3515
3516         * UpDownBase.cs: Add 2.0 stuffs.
3517
3518 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3519
3520         * NumericUpDown.cs: Add 2.0 stuffs.
3521
3522 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3523
3524         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
3525
3526 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3527
3528         * ErrorProvider.cs: Implement 2.0 stuffs.
3529
3530 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3531
3532         * DomainUpDown.cs: Implement 2.0 stuffs.
3533
3534 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3535
3536         * CheckedListBox.cs: Fix RefreshItems signature.
3537
3538 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3539
3540         * PictureBox.cs: Implement 2.0 stuffs.
3541
3542 2007-06-12  Andreia Gaita  <avidigal@novell.com>
3543         
3544         * TabControl.cs: Check if there are tabpages before checking
3545         the selected index - fix #81802 (font changes raise a ResizeTabs
3546         call on controls.add, which blew up nicely with no tabpages)
3547
3548 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3549
3550         * ListView.cs:
3551         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
3552
3553 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3554
3555         * ListView.cs:
3556         * ListViewItem.cs: In VirtualMode the selection information
3557         resides in the ListView, rather than in the Items. Also, throw
3558         InvalidOperationExceptions when VirtualMode is being used and
3559         CheckedItemCollection is accessed.
3560
3561 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3562
3563         * ComboBox.cs: Add ScaleControl.
3564
3565 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3566
3567         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
3568
3569 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3570
3571         * GroupBox.cs: Add 2.0 stuffs.
3572
3573 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3574
3575         * Panel.cs: Add autosize properties/event.
3576
3577 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3578
3579         * Control.cs:
3580         - When we remove a control, remove it from the collection before performing the layout.
3581         - Setup an internal property for explicit_bounds.
3582         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
3583         - Perform a layout when we set a new AutoSizeMode.
3584
3585 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3586
3587         * ScrollableControl.cs: Add 2.0 stuffs.
3588
3589 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3590
3591         * ScrollBar.cs: Add 2.0 stuffs.
3592
3593 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3594
3595         * Splitter.cs: Add 2.0 stuffs.
3596
3597 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3598
3599         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
3600         to have BindingContext simply use base implementation.
3601
3602 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3603
3604         * ColumnHeader.cs: corcompare fix.
3605
3606 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3607
3608         * Button.cs: corcompare fixes.
3609         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
3610
3611 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3612
3613         * Button.cs: Override GetPreferredSizeCore.
3614         * ButtonBase.cs: PerformLayout after changing properties that can affect
3615         AutoSize.  Simplify some mouse/keyboard code.
3616         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
3617         * MouseEventArgs.cs: Make Location internal for 1.1.
3618         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
3619         * Theme.cs: Add CalculateButtonAutoSize.
3620         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
3621
3622 2007-06-05  Miguel de Icaza  <miguel@novell.com>
3623
3624         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
3625
3626 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3627
3628         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
3629         since we can get different item instances every time we retrieve it.
3630
3631 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3632
3633         * ListView.cs: Work around for #81602, since an unkown an pretty
3634         infrequent condition appears only in some systems (old linux boxes, it
3635         seems).
3636
3637 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3638
3639         * Button.cs: Completely reformat and a little refactor to bring
3640         this closer to Mono circa 2007.
3641
3642 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3643
3644         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
3645         to be ButtonBase.Invalidate.
3646
3647 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3648
3649         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
3650
3651 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3652
3653         * ButtonBase.cs: Completely reformat and a little refactor to bring
3654         this closer to Mono circa 2007.
3655
3656 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
3657
3658         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
3659         values for autosize. Fixes #80137.
3660
3661 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3662
3663         * Control.cs: Don't perform layout when AutoSize changes.
3664         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
3665         directly when autosizing, use SetBounds with BoundsSpecified.None.
3666         Fixes unit tests my last commit broke.
3667
3668 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3669
3670         * Control.cs: Perform layout when AutoSize changes.
3671         * Form.cs: Implement AutoSizing.
3672
3673 2007-06-01  Chris Toshok  <toshok@ximian.com>
3674
3675         * DataGrid.cs: remove the XXX'ed check at the top of
3676         ProcessGridKey.  fixes #80464.
3677
3678 2007-06-01  Chris Toshok  <toshok@ximian.com>
3679
3680         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
3681         adding idempotent (add/remove in Edit()), and also make sure we
3682         don't add it until after we set the text, so it's not tripped in
3683         Edit().  Fixes unit test regression.
3684
3685 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3686
3687         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
3688         change is user explicit, not when the layout engine moves stuff.  Fixes
3689         anchoring to bottom and right.  [Fixes bug #81790]
3690
3691 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3692
3693         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
3694
3695 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3696
3697         * ContainerControl.cs: 
3698         Fire enter event for common ancestor if it is not a ContainerControl.
3699         Send focus to the active_control and not the 'value', the active 
3700         control might have been changed in one of the events fired.     
3701         Definitely fixes #80159.
3702
3703 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3704
3705         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
3706
3707 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3708
3709         * PropertyGrid.cs: Anchor the help description to the bottom of the
3710           help panel and refactor SelectGridItem into a
3711           SelectGridItemInternal that can be set to null (and update it to
3712           clear the help texts when it is set to null). Set root item to null
3713           when there's no SelectedObject. Fixes #80438.
3714         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
3715           when we're recalculating after a resize (only).
3716
3717 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3718
3719         * ListView.cs: Implement 2.0 RedrawItems method.
3720
3721 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3722
3723         * ListControl.cs: Disconnect PositionChanged and ItemChanged
3724         handlers from previous data manager when DataSource is set to
3725         null. Fixes #81771.
3726
3727 2007-05-31  Jackson Harper  <jackson@ximian.com>
3728
3729         * TextBoxBase.cs: These seem to be the correct values.
3730
3731 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
3732
3733         * FileDialog.cs: When close dialog with ok set filterindex using combobox
3734         value. Fixes #81784.
3735
3736 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
3737
3738         * Control.cs: Implement 2.0 scaling methods.
3739
3740 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3741
3742         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
3743           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
3744           corcompare issues.
3745
3746 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3747
3748         * ProgressBar.cs: Implemented missing 2.0 members.
3749
3750 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3751
3752         * Control.cs: Corcompare issues.
3753         * MessageBox.cs: Implemented missing 2.0 functions.
3754
3755 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3756
3757         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
3758           Implemented more 2.0 members.
3759
3760 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3761
3762         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
3763           null (strange, but it seems to happen when running unit tests).
3764
3765 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3766
3767         * ContainerControl.cs: Set active_control even earlier, before 
3768         firing any events, and undo it if validation returns false.
3769
3770 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3771
3772         * ContainerControl.cs: Raise Validation and Enter/Leave events
3773         even if there is no Form and set active_control earlier, just
3774         before firing Enter events (toshok's patches). Fixes #80647.
3775
3776 2007-05-30  Jackson Harper  <jackson@ximian.com>
3777
3778         * TextControl.cs: Redid the pageup/pagedown a little to simplify
3779         things and fix bug #81311.
3780
3781 2007-05-30  Jackson Harper  <jackson@ximian.com>
3782
3783         * X11Dnd.cs: Now that we have our own event loop, we need to
3784         cancel when we get a mouseup but it won't be accepted.
3785
3786 2007-05-30  Chris Toshok  <toshok@ximian.com>
3787
3788         * DataGrid.cs (set_CurrentCell): guard against negative
3789         column/row.
3790
3791         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
3792         array index syntax instead of looping over the property names.
3793
3794         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
3795         and set IsInEditOrNavigateMode to false there.
3796
3797 2007-05-30  Jackson Harper  <jackson@ximian.com>
3798
3799         * TreeView.cs: Make sure we don't get a bad visible order when
3800         setting to the top node.  Fixes some misc crashing in
3801         ControlInspector.
3802
3803 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3804
3805         * UserControl.cs: Add 2.0 AutoSizeMode
3806
3807 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3808
3809         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
3810
3811 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3812
3813         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
3814         lines. Fixes #80285. 
3815
3816 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3817
3818         * DataGridColumnStyle.cs: Add char trimming column header text format. 
3819
3820 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3821
3822         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
3823         Fixes #80147.
3824
3825 2007-05-29  Jackson Harper  <jackson@ximian.com>
3826
3827         * TreeNode.cs: Fix off by one on calculating whether or not a node
3828         is visible.
3829
3830 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
3831
3832         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
3833         * ScrollableControl.cs: Force an UpdateDistances when we move the
3834         scrollbars.
3835         [Fixes bug #80605]
3836
3837 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3838
3839         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
3840         update the page setup screen.
3841
3842 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3843
3844         * PageSetupDialog.cs: Fix landscape mode.
3845
3846 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3847
3848         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
3849         IconSizeHorizontalSpacing.
3850
3851 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3852
3853         * ListView.cs: The declaration of prev_tooltip_item should be inside
3854         a NET_2_0 conditional (avoid a warning).
3855
3856 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3857
3858         * PageSetupDialog.cs: Implement PrintPreview control to display
3859         the preview thumbnail. Change unit conversion to use 
3860         PrinterUnitConvert methods.
3861         
3862         Note: there is a huge bug in ms.net where the default margins are 
3863         interpreted as centimeters (?), when in fact they are set in inches. When 
3864         loading the page setup dialog initially (ms.net), the default margins 
3865         are set to 1 inch, and the dialog shows them with value 10, when in fact 
3866         it should be 25 (properly converted). Our dialog doesn't have this bug.
3867         
3868         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
3869         RectangleF.
3870         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
3871
3872 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3873
3874         * ListView.cs:
3875         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
3876         items.
3877
3878 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3879
3880         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
3881         an IntPtr on csc (it builds fine on mcs, could it be a compiler
3882         bug?), convert the ptr to Int32 first.
3883
3884 2007-05-28  Jackson Harper  <jackson@ximian.com>
3885
3886         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
3887         recieved, we will exit the dnd tracking loop.
3888
3889 2007-05-28  Jackson Harper  <jackson@ximian.com>
3890
3891         * X11Dnd.cs: Keep tracking until the xdnd finished event is
3892         recieved. TODO: I should probably stick a timer on the dropped
3893         event, and finish the drag if the XDND Finished event never shows
3894         (because some apps don't seem to send it).
3895
3896 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
3897
3898         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
3899         #81733.
3900
3901 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3902
3903         * MonthCalendar.cs: Only mark the keypresses we actually handle as
3904           handled.
3905
3906 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3907
3908         * MonthCalendar.cs: Set the size after initializing all the relevant
3909           variables. Fixes #81742.
3910
3911 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3912
3913         * KeyEventArgs.cs: Fix typo.
3914
3915 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
3916
3917         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
3918         to match MS. Fixed MinDate to only accept value less than or equal
3919         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
3920         Removed TODO's that are now verified by unit tests.
3921
3922 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
3923
3924         * TreeNodeCollection.cs: Minor corrections to exceptions to match
3925         MS.
3926
3927 2007-05-25  Jackson Harper  <jackson@ximian.com>
3928
3929         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
3930         it's own message loop.
3931         * XplatUIX11.cs: Remove some of the dnd hooks
3932
3933 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
3934
3935         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
3936         instead of MinimizedWindowSize.
3937
3938 2007-05-25  Jackson Harper  <jackson@ximian.com>
3939
3940         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
3941
3942 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3943
3944         * KeyEventArgs.cs: Added SuppressKeyPress.
3945         * Control.cs: Added support for SuppressKeyPress.
3946
3947 2007-05-24  Andreia Gaita  <avidigal@novell.com>
3948
3949         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
3950         problems with PieChart. suppress_validation should not be a counter,
3951         if there are several BeginInit calls, the first EndInit will 
3952         activate validation. Fix exceptions thrown by set_Value.
3953         * UpDownBase.cs: ValidateText only if it's the user editing it.
3954
3955 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3956
3957         * ListControl.cs: FilterItemOnProperty should return the filtered
3958         item proeprty even if DataSource is null. The same applies for
3959         GetItemText. Fixes #80427.
3960
3961 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3962
3963         * Control.cs: If a control doesn't have a parent when it's Dock is
3964         set, but it has children, it needs to do a layout.  Fixes some nested
3965         controls issues.  [Fixes bug #81199]
3966
3967 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3968
3969         * ComboBox.cs: If there are few items in the drop down list, make it
3970           the exact size the items need, no bigger. Fixes #81612.
3971
3972 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3973
3974         * Application.cs: When we have captured the keyboard for a menu,
3975         check for mouse down events in case we need to close the menu.
3976         * Control.cs, Form.cs: Remove mouse down checks for menus.
3977
3978 2007-05-24  Jackson Harper  <jackson@ximian.com>
3979
3980         * TextControl.cs: Handle tabs in non multiline mode a little
3981         differently.
3982
3983 2007-05-24  Jackson Harper  <jackson@ximian.com>
3984
3985         * TextControl.cs: We need to manually break apart tabbed text and
3986         move the tabs, since the system.drawing tabbing mechanism relies
3987         on tab stops.
3988         * TextBoxBase.cs: Move the caret properly when the user enters a
3989         tab.
3990
3991 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3992
3993         * ContainerControl.cs: Don't check CanSelect before calling
3994         ProcessMnemonic.
3995         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
3996         release a KeyboardActive on click if it's not ours.
3997
3998 2007-05-23  Andreia Gaita  <avidigal@novell.com>
3999
4000         * ColumnHeader.cs: Add TypeConverter
4001
4002 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4003
4004         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
4005
4006 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4007
4008         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
4009
4010 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4011
4012         * LinkLabel.cs: Implement public Padding property.
4013
4014 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4015
4016         * LinkLabel.cs: Implement public FlatStyle.
4017
4018 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
4019
4020         * Control.cs: Apply patch from George to call parent.PerformLayout
4021         when Visible is changed.  [Fixes bugs #81118, 81718]
4022
4023 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4024
4025         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
4026
4027 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4028
4029         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
4030
4031 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4032
4033         * ContextMenu.cs: Implement Collapse.
4034
4035 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
4036
4037         * ToolBarButton.cs: Implement Name.
4038
4039 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
4040
4041         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
4042         use current_item, it prevents some NRE. Fixes #81675.  
4043
4044 2007-05-22  Andreia Gaita  <avidigal@novell.com>
4045
4046         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
4047         without updating the text.
4048
4049 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
4050
4051         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
4052         without calling DeleteObject.  [Should fix bug #81709]
4053
4054 2007-05-22  Jackson Harper  <jackson@ximian.com>
4055
4056         * RichTextBox.cs: Set the line endings correctly, when flushing
4057         RTF text.
4058
4059 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
4060
4061         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
4062          {Width=0,Height=0}.
4063
4064 2007-05-22  Jackson Harper  <jackson@ximian.com>
4065
4066         * TreeView.cs: Setting top with a null node should set to the very
4067         top.
4068
4069 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4070
4071         * Form.cs: ShowDialog: destroy the handle when message loop is
4072           finished, matches MS behaviour. Refactor parts of WmClose into
4073           RaiseCloseEvents, that only raises events if they haven't already
4074           been raised. Fixes #81688 and #81521.
4075         * Application.cs: Don't call close on the form when exiting a modal
4076           loop, it will raise all the (Form)Closed/Closing events again if
4077           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
4078           which doesn'r raise any events it they have been raised before.
4079
4080 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
4081
4082         * Control.cs: Add OnPrint.
4083         * ToolStrip.cs: Add GetChildAtPoint.
4084         * ToolStripContainer.cs: Add OnRightToLeftChanged.
4085         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
4086
4087 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
4088
4089         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
4090
4091 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4092
4093         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
4094           isn't visible anymore. Fixes #81651.
4095
4096 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4097
4098         * Control.cs: WmShowWindow: Update children's z-order after setting
4099           their parent. SetParent may show the window, thereby corrupting
4100           z-order, since the window will be shown on top.
4101         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
4102           multiple (and redundant) WM_SHOWWINDOW messages.
4103         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
4104           event has already been raised.
4105         * Form.cs: Change is_changing_visible_state to a counter, since
4106           SetVisibleCore can be called recursively. CreateHandle: when
4107           creating mdi children, send (De)Activated events.
4108         * MdiClient.cs: Update use of is_changing_visible_state.
4109         * Application.cs: OnThreadException: Surround exception handling with
4110           try/finally to ensure we always reset the error-handling state
4111           before leaving.
4112
4113 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4114
4115         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
4116           (#81704).
4117
4118 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4119
4120         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
4121         SmallIcon views, now that we have a standarized horizontal spacing.
4122
4123         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
4124         4, just like the other views (Match .Net).
4125
4126 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
4127
4128         * Control.cs: Delay calculating anchor distances until we actually layout.
4129         Always query the WM for the actual size and location it put us at instead of
4130         only when we send negative values.
4131         [Fixes bugs #81694, 81695]
4132
4133 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4134
4135         * Application.cs: Avoid a possible stack overflow when trying to exit
4136           the application.
4137
4138 2007-05-19  Marek Safar  <marek.safar@gmail.com>
4139
4140         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
4141         enum value.
4142
4143 2007-05-19  Andreia Gaita  <avidigal@novell.com>
4144
4145         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
4146         * NumericUpDownAcceleration.cs, 
4147           NumericUpDownAccelerationCollection.cs: Added 2.0
4148           implementation.
4149
4150 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
4151
4152         * RichTextBox.cs: Recalculate the document after the ScrollBars
4153         property is changed. Fixes bug #81681.
4154
4155 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
4156
4157         * DataObject.cs: Implement 2.0 methods.
4158
4159 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4160
4161         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
4162         in the center of the checkbox, not in the left-top corner. 
4163         Fixes #80037.
4164
4165 2007-05-18  Jackson Harper  <jackson@ximian.com>
4166
4167         * RichTextBox.cs: Recalculate the document after the scrollbars
4168         property is changed.
4169         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
4170         81486.
4171
4172 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4173
4174         * CreateParams.cs: Make HasWindowManager marginally faster.
4175         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
4176           into Hwnd so that other drivers can use it as well.
4177         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
4178           the default location from Hwnd. Fixes MDI client windows always
4179           showing up at (0,0) in Windows (Win32 won't set the default
4180           location since the window styles aren't correct).
4181
4182 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
4183
4184         * TreeView.cs: Modified DoubleBuffered to just use the base
4185         implementation.
4186
4187 2007-05-18  Jackson Harper  <jackson@ximian.com>
4188
4189         * TreeView.cs: Set the top node to the last child node when
4190         expanding all
4191         - When we get focus, if there is no selected node, use the top
4192         node.
4193
4194 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
4195
4196         * KeysConverter.cs: Add CanConvertTo.
4197         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
4198         * LinkConverter.cs: Added.
4199
4200 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4201
4202         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
4203         it prevents error when file dont have write access. Fixes #81669 and #81667.  
4204
4205 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4206
4207         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
4208         button text. Fixes #79640.  
4209
4210 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4211
4212         * Control.cs: According to MSDN controls created in the designer theres 
4213         keyboard accelerators visible by default. So included check for design
4214         in ShowKeyboardCuesInternal.  
4215
4216 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4217
4218         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
4219         text. Fixes #81621.  
4220
4221 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4222
4223         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
4224         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
4225
4226 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4227
4228         * Control.cs: Finish implementation of UI State using WmChangeUIState
4229         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
4230         in some controls to check for show_keyboard_cues to draw accell keys "_".  
4231
4232 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4233
4234         * ListBox.cs: When calculating the horizontal scrollbar
4235         in single column mode, don't use values less than 0 for
4236         Maximum. Fixes #81474.
4237
4238 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4239
4240         * ListBox.cs: Throw the some missing exceptions in
4241         ListBox.ObjectCollection methods.
4242
4243 2007-05-17  Jackson Harper  <jackson@ximian.com>
4244
4245         * TextBoxBase.cs: Recalculate the document when the word wrap
4246         value has changed. This fixes 81488.
4247
4248 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4249
4250         * Clipboard.cs: Implement missing GetText overload.
4251
4252 2007-05-17  Chris Toshok  <toshok@ximian.com>
4253
4254         * Control.cs (CheckDataBindings): remove the binding_context arg
4255         to binding.Check.
4256
4257         * CurrencyManager.cs (OnItemChanged): fix this now that
4258         BindingManagerBase is fixed. also remove the comment telling where
4259         the fix should go.  We set transfering_data to true/false around
4260         the call to PushData to keep UpdateIsBinding from being called.
4261         (ListChangedHandler): remove the extra OnMetaDataChanged call for
4262         PropertyDescriptorAdded in the 1.1 case.  The extra call is
4263         actually generated by System.Data generating 2 metadata changed
4264         events of its own per column add.  The fix should go there.  Add a
4265         comment to that affect in our test's Assert.Ignore.
4266
4267         * BindingManagerBase.cs: Rework PullData and PushData slightly.
4268         we keep a boolean flag (transfering_data) that keeps us from
4269         calling UpdateIsBinding multiple times if we re-enter either of
4270         them.
4271
4272         * ControlBindingsCollection.cs (AddCore): remove the
4273         binding_context arg to binding.Check.
4274
4275         * Binding.cs (IsBinding): don't check if we're binding here, just
4276         return our cached value.  we update it in UpdateIsBinding.
4277         (Check): don't take the binding_context arg, we'll just use our
4278         control's.  Also, for some reason MS doesn't use the data member
4279         field when getting the bindingmanager for this binding.  it just
4280         uses the datasource.  Make this method callable multiple times,
4281         and only do the is_null_desc stuff if manager.Position != -1 (so
4282         we don't get an exception accessing manager.Current).
4283         (UpdateIsBinding): move the code from IsBinding here.
4284         (PositionChangedHandler): call Check here to we can initialize
4285         things that require a non- -1 position.
4286
4287 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4288
4289         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
4290         control.
4291
4292 2007-05-17  Andreia Gaita  <avidigal@novell.com>
4293
4294         * TabControl.cs: Add 2.0 methods and events, including
4295         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
4296         * TabPage.cs: Add 2.0 methods
4297
4298 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4299
4300         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
4301         keyboard_cues is properly handled by message method.  
4302
4303 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4304
4305         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
4306
4307 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4308
4309         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
4310
4311 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
4312
4313         * Control.cs: 
4314         - WmUpdateUIState added to handle state changes, it make call to
4315         OnChangeUICues event.
4316         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
4317         SystemInformation.
4318
4319 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
4320
4321         * ImageKeyConverter.cs: Added.
4322         * TreeViewImageKeyConverter.cs: Added.
4323
4324 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4325         
4326         * ToolTips.cs: Update Text if SetToolTip is called for a control
4327         already showing the tooltip, as well as restarting its timer; show
4328         tooltip if we are inside the control bounds by the time of calling
4329         SetToolTip. Inside ShowTooltip remove the check to not show the 
4330         tooltip again for the active control (it is allowed by .Net to 
4331         show the tooltip on the same control multiple times).
4332
4333 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4334
4335         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
4336
4337 2007-05-16  Andreia Gaita <avidigal@novell.com> 
4338
4339         * ContainerControl.cs: only process tab key if there are no 
4340         modifier keys present, otherwise the control does the 
4341         tab processing, if it needs to. Fixes #81622
4342         * TabControl.cs: Fixes calculation for which tab to select on
4343         shift+ctrl+tab.
4344
4345 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4346
4347         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
4348
4349 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
4350
4351         * Control.cs: Make IsInputCharInternal to allow controls to
4352         override it and still match MS API.
4353         * TextBoxBase.cs: Override IsInputCharInternal and always
4354         return true.
4355         [Fixes bug #81616]
4356
4357 2007-05-15  Jackson Harper  <jackson@ximian.com>
4358
4359         * TextBox.cs: Disable some of the menu options when using a
4360         readonly textbox.
4361
4362 2007-05-15  Jackson Harper  <jackson@ximian.com>
4363
4364         * TextBox.cs:
4365         * TextBoxBase.cs:
4366         * RichTextBox.cs: Some new 2.0 methods
4367
4368 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
4369
4370         * FileDialog.cs: On 1.0 profile, do not support multidotted 
4371         extensions.
4372
4373 2007-05-14  Jackson Harper  <jackson@ximian.com>
4374
4375         * TextBoxBase.cs: Implement some of the new 2.0 methods.
4376         * RichTextBox.cs: We need to override these methods on 2.0.
4377         * MaskedTextBox.cs: These are implemented now
4378         * TextControl.cs: This was off by one.
4379
4380 2007-05-14  Jackson Harper  <jackson@ximian.com>
4381
4382         * TextControl.cs: Because the line endings are including in the
4383         text, we don't need to add them in anymore.
4384
4385 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4386
4387         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
4388         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
4389
4390 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4391
4392         * ToolBar.cs: Adjust size to default size when button theres no text and
4393         image, it fixes remaining issues from #81524.
4394
4395 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4396
4397         * ToolBar.cs: 
4398         - When not flat call redraw to recalculate sizes on creare handle to match
4399         win32 behavior.
4400         - Revert 77220 because it causes some regressions in toobar
4401         button.
4402
4403 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4404
4405         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
4406           now actually enters a usable state.
4407
4408 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4409
4410         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
4411         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
4412         3 buttons.
4413
4414 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4415
4416         * ToolBar.cs: Save default_size on create handle to use later for buttons
4417         without text, needed to mimic win32 behavior.
4418
4419 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4420
4421         * ToolBar.cs: Fix button layour to best fit width or height according to
4422         vertical or not. Fixes #81524.
4423
4424 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4425
4426         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
4427         toolbar size info because different styles theres different sizes.
4428         Fixes #81522.
4429
4430 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4431
4432         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
4433         if we are using checkboxes, checked is true, and we have less
4434         than two images in StateImageList; for the 1.1 in the same scenario
4435         draw the first image if we have at least one image in StateImageList.
4436         Fixes part of #81191.
4437
4438 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4439
4440         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
4441         the owner's Items collection on merge.
4442
4443 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4444
4445         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
4446         * ToolStripItemCollection.cs: Lots of fixes to when events get called
4447         and parent/owner gets changed based on gert's unit tests.
4448
4449 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4450
4451         * MaskedTextBox.cs: Started implementing parts of it.
4452
4453 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4454
4455         * ListView.cs: When clicking the checkbox on the items
4456         take into account the double clicks even if we have only
4457         one image in StateImageList (only for 1.0/1.1). Also 
4458         generate an extra change of checked state when we receive
4459         the second click on checkbox (match .Net behaviour). 
4460         Fixes part of #81191.
4461
4462 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4463
4464         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
4465
4466 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4467
4468         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
4469         even if OnLoad is overriden and base.OnLoad is not called.
4470         [Fixes bug #81582]
4471
4472 2007-05-10  Andreia Gaita  <avidigal@novell.com>
4473
4474         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
4475         shame. (I blame my ever-persisting and annoying cold)
4476
4477 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4478
4479         * ListView.cs: Don't eat navigation keys.  Let them flow through to
4480         KeyDown/KeyPress routines.  [Fixes bug #81569]
4481
4482 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4483
4484         * ListView.cs: When handling keys for selecting the item based off
4485         keyboard input, do not consider keys pressed with Alt or Control.  Also,
4486         correctly handle keys when the Shift key is down. [Fixes bug #81578]
4487
4488 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4489
4490         * Control.cs: When using UseWaitCursor, we have to store the requested
4491         Cursor to use when UseWaitCursor is turned off.
4492
4493 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4494
4495         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
4496         to false.
4497         * Application.cs: Use PreProcessControlMessage instead of
4498         PreProcessMessage.
4499         * PreProcessControlMessage.cs: Make internal for 1.1.
4500
4501 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4502
4503         * Control.cs: Add InternalContains focus property, which hast the same
4504         functionality of ContainsFocus, but also including implicit controls.
4505         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
4506         since we need to know if the focus is contained in our implicit
4507         ItemControl when calculating Layout. Fixes part of #80888.
4508
4509 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
4510
4511         * ToolTip.cs: Remove center form string alignment as it must be align to
4512         left.
4513
4514 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
4515
4516         * ToolStripItemCollection.cs: Set the new item's parent and owner
4517         in Insert like we do in Add.  [Fixes bug #81568]
4518
4519 2007-05-08  Jackson Harper  <jackson@ximian.com>
4520
4521         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
4522         - Off by one error in SetTop
4523         - Disable DoubeBuffering
4524         
4525 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4526
4527         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
4528           control as much as necessary in order to make it entirely visible,
4529           instead of centering the control in the container (matches MS
4530           behaviour). CalculateCanvasSize: we need to take the current scroll
4531           position into account when calculating the maximum canvas,
4532           otherwise the following scenario will fail: resize so that the
4533           scrollbars appear, use the scrollbars to scroll, resize again
4534           smaller, and now the canvas size is too small. Recalculate: when
4535           showing scrollbars make sure they start off at 0, and try to scroll
4536           the active control into view. Fixes #79540. HandleScrollBar: don't
4537           scroll anywhere if the scrollbar isn't visible.
4538
4539 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4540
4541         * ListView.cs: When focus changed, call Layout/Invalidate
4542         in the focused item to update the selected state (should show
4543         entire label when ListView is focused, and a part of it if is not).
4544         * ListViewItem.cs: When doing layout for LargeIcon, take into account
4545         for displaying the entire label not only the Focused state of the
4546         item, but also the Focused state of the ListView (match .Net
4547         behaviour).
4548
4549 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4550
4551         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
4552         Implement UseWaitCursor. 
4553
4554 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4555         Applying contributed patch from Sergey Volk.
4556
4557         * Clipboard.cs: Implement SetDataObject retry logic and new overload
4558         of SetDataObject.
4559         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
4560
4561 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4562
4563         * Control.cs: Implement DrawToBitmap.
4564
4565 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4566         Applying contributed patch from Stefan Noack.
4567         
4568         * Control.cs: Add [Get|Set]AutoSizeMode.
4569
4570 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4571
4572         * MdiClient.cs: Unmerge menus when the last child is closed.
4573
4574 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4575
4576         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
4577         * ToolStripManager.cs: Call Merge on DropDowns.
4578         [Fixes bug #81477]
4579
4580 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4581
4582         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
4583           uints.
4584         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
4585           visibility. We can't create forms visible, since we have to set the
4586           owner before making the form visible (otherwise Win32 will do
4587           strange things with task bar icons). The problem is that we set the
4588           internal is_visible to true before creating the control, so
4589           is_changing_visible_state is the only way of determining if we're
4590           in the process of creating the form due to setting Visible=true -
4591           this works because SetVisibleCore explicitly makes the form
4592           visibile afterwards anyways. Fixes #80775.
4593
4594 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4595
4596         * ThemeWin32Classic.cs: When drawing ListViewItems,
4597         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
4598         or LargeIcon _and_ item is not focused (match .Net behaviour).
4599
4600 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4601
4602         * Control.cs, Form.cs: Fix some obsolete method warnings.
4603
4604 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4605
4606         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
4607         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
4608
4609 2007-05-04  Andreia Gaita  <avidigal@novell.com>
4610
4611         * ContainerControl.cs: Fix active_control attribution when going
4612         up the parent chain so that the first parent container gets the control
4613         and the rest of the parent containers get the child containers (skips
4614         non-containers). Fixes #80729
4615
4616 2007-05-04  Randolph Chung  <tausq@debian.org>
4617
4618         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
4619         [Fixes bug #81499]
4620
4621 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4622
4623         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
4624           takes a size parameter, since the CreateParam's size isn't true for
4625           minimized forms. Fixes #81518,
4626
4627 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4628
4629         * Form.cs: Add OnDeactivateInternal.
4630         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
4631
4632 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4633
4634         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
4635           accessing the parent. Fixes #81508.
4636
4637 2007-05-03  Chris Toshok  <toshok@ximian.com>
4638
4639         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
4640         2.0 block, pass listposition + 1 to ChangeRecordState when a row
4641         was added before the current listposition.  Fixes the
4642         TestInsertRowBeforeCurrent unit test.
4643
4644 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
4645
4646         * Application.cs: Add RaiseIdle.
4647         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4648         XplatUIX11.cs: Implement RaiseIdle.
4649
4650 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
4651         corcompare work: N - Z
4652         * NotifyIcon.cs
4653         * ProgressBar.cs
4654         * RadionButton.cs
4655         * ScrollableControl.cs
4656         * SplitContainer.cs
4657         * SplitterPanel.cs
4658         * StatusBar.cs
4659         * SystemInformation.cs
4660         * TabControl.cs
4661         * TableLayoutControlCollection.cs
4662         * TableLayoutPanel.cs
4663         * TabPage.cs
4664         * ToolBar.cs
4665         * ToolBarButton.cs
4666         * ToolStrip.cs
4667         * ToolStripComboBox.cs
4668         * ToolStripContainer.cs
4669         * ToolStripContentPanel.cs
4670         * ToolStripDropDown.cs
4671         * ToolStripDropDownItem.cs
4672         * ToolStripDropDownMenu.cs
4673         * ToolStripItem.cs
4674         * ToolStripItemCollection.cs
4675         * ToolStripMenuItem.cs
4676         * ToolStripPanel.cs
4677         * ToolStripSplitButton.cs
4678         * ToolTip.cs
4679         * TreeNode.cs
4680         * TreeNodeCollection.cs
4681         * TreeNodeMouseHoverEventArgs.cs
4682         * TreeView.cs
4683
4684 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
4685
4686         * ContextMenu.cs: Add public method Show with alignment property to 2.0
4687         stuff. Thanks aatdark for the patch. 
4688
4689 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4690
4691         * GridItem.cs: Implement 2.0 Tag property.
4692
4693 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
4694
4695         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
4696         count instead of Nodes.Length.  [Fixes bug #81448]
4697
4698 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4699
4700         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
4701         [Fixes bug #81506]
4702
4703 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4704         corcompare work: A - M
4705         * BindingNavigator.cs
4706         * Button.cs
4707         * ButtonBase.cs
4708         * CheckBox.cs
4709         * Control.cs
4710         * FlowLayoutPanel.cs
4711         * Form.cs
4712         * Label.cs
4713         * LinkLabel.cs
4714         * ListView.cs
4715
4716 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4717
4718         * Application.cs: Give toolstrips a chance to process mnemonics.
4719         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
4720         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
4721         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
4722
4723 2007-05-01  Jackson Harper  <jackson@ximian.com>
4724
4725         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
4726         wider area too.
4727         - Don't set the BoundsSpecified
4728
4729 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4730
4731         * Application.cs: When using the toolstrip shortcut mechanism, allow the
4732         message to pass through to a regular control if it hosted by a toolstrip.
4733         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
4734         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
4735
4736 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4737
4738         * TextRenderer.cs: Use the flags argument when using the MeasureString
4739         fallback algorithm.
4740
4741 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4742
4743         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
4744         the MDI menu item.  [Fixes bug #81483]
4745
4746 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
4747
4748         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
4749         string. When setting Name to null, use zero-length string instead.
4750
4751 2007-04-29  Andreia Gaita  <avidigal@novell.com>
4752
4753         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
4754         DeselectTab). Implement missing 2.0 TabPageCollection methods
4755         (Add, ContainsKey, RemoveByKey, IndexOfKey)
4756
4757 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
4758
4759         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
4760
4761 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
4762
4763         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
4764         Fixes bug #81479. Include details of exception when LoadFile fails.
4765
4766 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
4767
4768         * DrawListViewSubItemEventArgs.cs: Added missing setter
4769
4770 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4771
4772         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
4773         Hide methods (not complete). Implement missing 2.0 OnPopup event.
4774
4775 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4776
4777         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
4778         removed in ly last commit (it was breaking the Label edit feature).
4779
4780         * ThemeWin32Classic.cs: When drawing a ListViewItem use
4781         StringAlignment.Near for LineAlignment (match .Net).
4782
4783 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4784
4785         * TabControl.cs: Change SetTab so it adds the tabpage to the list
4786         of controls if it isn't already there - was blowing up when doing
4787         tabcontrol.TabPages[i]=new TabPage(). 
4788         SetTab now does a replace by removing the page at the index. 
4789         Add a new InsertTab method that inserts a page in a given index 
4790         instead of replacing. 
4791         Implements TabPageCollection.Insert(int, TabPage).
4792
4793 2007-04-27  Chris Toshok  <toshok@ximian.com>
4794
4795         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
4796         internal handler that can be invoked from our subclasses.)  Also,
4797         add a comment to PushData about how we need to fix it.
4798
4799         * CurrencyManager.cs: tons of changes here.  trying to get things
4800         matching the behavior of .net wrt event orders (ItemChanged,
4801         CurrentChanged, PositionChanged.)  I've implemented a private .net
4802         symbol (ChangeRecordState) that appears in stack traces because
4803         it's actually easier to do this than to effective inline all its
4804         various behaviors at every call site.
4805
4806         * RelatedPropertyManager.cs: guard against an exception here by
4807         not using parent.Current if the position is set to -1 (if the
4808         parent datasource is cleared, for instance).
4809
4810         * Binding.cs: don't parse data in PushData (this might be wrong,
4811         but it jives with MS's behavior.)  Also, don't call PushData when
4812         we get a CurrentChanged event.
4813
4814 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4815
4816         * WebBrowser.cs,
4817           WebBrowserBase.cs,
4818           WebBrowserSiteBase.cs,
4819           HtmlDocument.cs: Added stubbed out classes, no real implementations 
4820           yet.
4821
4822 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4823
4824         * MainMenu.cs: In draw method without parameters call draw method with 
4825         PaintEvent, another one (just rect) adjust rectangle and we dont need it
4826         as Rect property is already adjusted. Fixes #80694.
4827
4828 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
4829
4830         * Application.cs: Need to handle keyboard menu deselection here.
4831         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
4832         navigation, allowing keyboard to work on X11.
4833         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
4834
4835 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4836
4837         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
4838         menu bar. It fixes some drawing issues in menu bar.
4839
4840 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4841
4842         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
4843         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
4844         when <alt> key is pressed.
4845
4846 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4847
4848         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
4849         example just set visible to false and make this prevent from other problems.
4850         In SystrayAdd always remove pending expose. Fixes #81072.
4851
4852 2007-04-26  Marek Safar  <marek.safar@gmail.com>
4853
4854         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
4855         value is set.
4856
4857 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4858
4859         * ListView.cs: Added three missing 2.0 events and corresponding
4860         EventHandlers. Added the OwnerDraw property.
4861         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
4862
4863 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4864
4865         * DrawListViewItemEventArgs.cs
4866         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
4867
4868 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4869
4870         * TextControl.cs: Fixed typo in constructor
4871
4872 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
4873
4874         * Application.cs: Create a shortcut path so that currently selected
4875         MenuStrips can intercept keyboard events without having focus.
4876         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
4877         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
4878         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
4879         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
4880         generate WM_SYSCOMMAND message in X11 for other platforms.
4881         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
4882         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
4883         * ToolStripSplitButton.cs: Add DefaultItem property.
4884         
4885 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4886
4887         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
4888         fixes some menu draw problem on Windows with border diferent from default
4889         it also fixes #81403.
4890
4891 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4892
4893         * Form.cs: Refactor WndProc into separate methods, just like Control is
4894           doing it.
4895
4896 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4897
4898         * Control.cs: set_Text: move the call to the driver into a seperate
4899           virtual method so that Form can override it.
4900         * MaskedTextBox.cs: Corcompare fixes.
4901         * Form.cs: Override UpdateWindowText and only update the styles if the
4902           form has been shown (fixes #81405).
4903
4904 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4905
4906         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
4907         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
4908         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
4909         the form lost focus or another control was clicked.
4910
4911 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
4912
4913         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
4914         fixed.
4915
4916 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4917
4918         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
4919           DrawListViewItemEventHandler.cs,
4920           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
4921           Added.
4922         * X11Structs.cs: More ToString implementation.
4923
4924 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4925
4926         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
4927         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
4928
4929 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4930
4931         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
4932           handle.
4933         * FormCollection.cs: Don't add a form if it's already in the
4934           collection.
4935         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
4936           according to behaviour and MSDN. The ownerWin32 is the active
4937           window at the moment when we call ShowDialog, not the context's
4938           main form (the context's main form may open another form that opens
4939           a form with ShowDialog, the win32 owner is the second form). Add
4940           and remove forms to the Application.OpenForms in other places to
4941           better match MS behaviour. Add an IsActive property that raises
4942           On(de)Activated only if the active state has changed (we were
4943           raising OnDeactivated before OnActivated while creating forms).
4944         * Application.cs: Refactor Enabling/Disabling of windows for modal
4945           dialog loops out to separate methods, and restore the thread
4946           context when we quit the method. Fixes #81407.
4947
4948 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4949
4950         * ListView.cs: In ItemControl.HandleClicks, also fire 
4951         2.0 MouseClick or MouseDoubleClick events on the parent,
4952         not only the Click/DoubleClick events.
4953
4954 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4955
4956         * TableLayoutSettings.cs: 
4957         - Added a GetControls method and a support structure to help the 
4958         TypeConverter to enumerate the controls for     serialization. 
4959         - Added a new serialization constructor. 
4960         - Added a isSerialized flag initialized to true on the 
4961         serialization constructor so that the TableLayoutPanel.LayoutSettings 
4962         setter does not throw the designed NotSupportedOperation exception
4963         when the object is built through deserialization.
4964         - Implemented GetObjectData
4965         
4966         * TableLayoutPanel.cs: Added check on LayoutSettings.
4967
4968 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4969
4970         * ListView.cs: Report Click and DoubleClick events to the parent
4971         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
4972         from breaking the click count state when using dialog forms (Control
4973         reports the clicks in a similar fashion). In the previous behaviour
4974         the last WM_LBUTTONUP message in a  double click was sent to the
4975         ListView's form, instead of the ListView, which was breaking the click
4976         count for it. Fixes #80387.
4977
4978 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
4979
4980         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
4981
4982 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
4983
4984         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
4985         us from created dropdowns for menu items that do not have subitems.
4986         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
4987         Check HasDropDownItems before calling DropDown so a dropdown will not be
4988         created if it isn't needed.
4989
4990 2007-04-24  Jackson Harper  <jackson@ximian.com>
4991
4992         * TreeView.cs: Set the first node to the selected node when we get
4993         focus if there is no selected node.
4994
4995 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4996
4997         * MimeIcon.cs: remove using blocks so that image streams are
4998         not disposed of. Fixes #80151
4999
5000 2007-04-24  Jackson Harper  <jackson@ximian.com>
5001
5002         * TextBoxBase.cs: Fixup the height of textboxes when the control
5003         is created.
5004
5005 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
5006
5007         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
5008         for each ToolStripItem when the parent's RightToLeftChanged is called.
5009
5010 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5011
5012         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
5013           Fixes #80163.
5014         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
5015           property, so that the setter can be overriden too.
5016         * TextBox.cs: Change GetContextMenuInternal() to use
5017           ContextMenuInternal.
5018
5019 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5020
5021         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
5022           #81406.
5023
5024 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5025
5026         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
5027           #81406.
5028
5029 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5030
5031         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
5032           avoid duplicate work. Mostily skeleton code, it's not working at
5033           all yet.
5034
5035 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
5036
5037         * NotifyIcon.cs : stub for MouseClick event
5038         * Application.cs: stub for SetUnhandledExceptionMode
5039
5040 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
5041
5042         * BindingNavigator.cs : Initial (partial) implementation
5043
5044 2007-04-23  Jackson Harper  <jackson@ximian.com>
5045
5046         * TreeView.cs: Do not create the treeview's handle when setting
5047         the scroll position.
5048         - ExpandAll needs to compute the scrollbars so it knows which
5049         position to set the bar too.
5050         * TreeNode.cs: 
5051         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
5052
5053 2007-04-23  Jackson Harper  <jackson@ximian.com>
5054
5055         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
5056         key. Fixes #81408.
5057
5058 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
5059
5060         * ToolStripItem.cs: Make GetImageSize internal.
5061         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
5062         need to draw an item.  Fixes a reported issue where images on menus
5063         that were not 16x16 were drawing incorrectly.
5064
5065 2007-04-21  Miguel de Icaza  <miguel@novell.com>
5066
5067         * Padding.cs: Use the converter, fixes the resgen2 issue with
5068         XMLNotePad. 
5069
5070 2007-04-21  Jackson Harper  <jackson@ximian.com>
5071
5072         * TreeView.cs: Dont try to unhighlight the selected node if there
5073         isn't a selected node.
5074
5075 2007-04-21  Jackson Harper  <jackson@ximian.com>
5076
5077         * UpDownBase.cs:
5078         * TextBoxBase.cs:
5079         * ListView.cs:
5080         * ListBox.cs:
5081         * TreeView.cs: Use the InternalBorderStyle property to set the
5082         initial border style, this forces the client rectangle to be sized
5083         correctly.
5084
5085 2007-04-20  Jackson Harper  <jackson@ximian.com>
5086
5087         * TreeView.cs: Simplify scrolling to the last node after expanding
5088         all.
5089         - Fix some off by ones with setting the bottom.
5090
5091 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
5092
5093         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
5094         that.  We were incorrectly doing it the other way around.  Also,
5095         update ClientSize if we change the BorderStyle before the control
5096         is created.
5097
5098 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
5099
5100         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
5101         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
5102         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
5103         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
5104         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
5105         Caption to CaptionHeight.
5106         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
5107         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
5108         and FixedFrameBorderSize to return value from current XplatUI driver.
5109         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
5110         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
5111         and FixedFrameBorderSize using win32 API. Renamed Caption to
5112         CaptionHeight.
5113         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
5114         * SystemInformation.cs: Fixed typo in BorderSize.
5115
5116 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
5117
5118         * XplatUI.cs: Added MenuAccessKeysUnderlined.
5119         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
5120         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
5121         returning false.
5122         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
5123         value from XplatUI driver.
5124         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
5125         SystemParametersInfo.
5126         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
5127         override.
5128         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
5129         returning false.
5130
5131 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5132
5133         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
5134
5135 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5136
5137         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
5138
5139 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
5140
5141         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
5142         MenuStrips that contain ToolStripSeparators.
5143
5144 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5145
5146         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
5147           DefineStdCursorBitmap.
5148         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
5149           has been created off a standard cursor. This is used to get a
5150           bitmap of the standard cursor when Draw or DrawStretched is called
5151           in order to draw the cursor.
5152         * X11Structs.cs: Added XcursorImage and XcursorImages.
5153         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
5154           DefineStdCursorBitmap.
5155         * Cursors.cs: Update all relevant creations of Cursor to use the new
5156           internal constructor.
5157
5158 2007-04-19  Jackson Harper  <jackson@ximian.com>
5159
5160         * TextBox.cs: Move the has_been_focused into the base control, so
5161         some of the text adding methods can manipulate it (probably time
5162         for a better name for this flag too).
5163         - Call a new version of selectall that doesn't scroll
5164         * TextBoxBase.cs: When we append text, if the document is empty,
5165         don't scroll.  If the document has text already, we scroll to the
5166         end of the appended text.
5167         - When the text is changed, we reset the has_been_focused, so the
5168         next time the control gets focused, all the text is selected.
5169
5170 2007-04-19  Jackson Harper  <jackson@ximian.com>
5171
5172         * TextControl.cs: Move the margins to the document, add a method
5173         so the margin sizes can be updated.
5174         * TextBoxBase.cs: When the border style is changed, update the
5175         border sizes.
5176
5177 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
5178
5179         * Control.cs: Respect DefaultPadding.
5180         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
5181         padding into account.
5182         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
5183
5184 2007-04-19  Jackson Harper  <jackson@ximian.com>
5185
5186         * TextControl.cs: Oops, we need to use the ClientRect not the
5187         bounds here.
5188
5189 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5190
5191         * ListView.cs: In ItemControl.ItemsMouseDown, take into
5192         account the double clicks when CheckBoxes are used and
5193         the pointer is inside the checkbox. Fixes part of #81191.
5194
5195 2007-04-18  Jackson Harper  <jackson@ximian.com>
5196
5197         * TextControl.cs: Pressing the end key shouldn't move the caret
5198         past the line ending.
5199         * TextBoxBase.cs: We can still delete if we are in the line
5200         ending and the combine will just kill the existing line ending.
5201
5202 2007-04-18  Jackson Harper  <jackson@ximian.com>
5203
5204         * TextControl.cs: We can't move lines, then invalidate their
5205         bounds, we need to get the old bounds and combine that with the
5206         new bounds.
5207         * TextBoxBase.cs: Before combining two lines for a delete, we need
5208         to invalidate the area of the old line, since that will be moved
5209         in the combine operation.
5210
5211 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
5212
5213         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
5214         with transparent background. Fixes #80482.
5215
5216 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
5217
5218         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
5219         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
5220         [Fixes bug #81391]
5221
5222 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5223
5224         * CreateParams.cs: Add a couple of helper methods and do a less string
5225           concatenation in ToString.
5226         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
5227           overload that takes a Control parameter, since this method may be
5228           called before a control is assigned to the hwnd (from
5229           CreateWindow), and update CreateWindow to use the new overload. In
5230           GetMenuOrigin subtract the title bar from the y position if the
5231           form has a window manager (since we're painting it and not X).
5232         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
5233           CreateParams to calculate the origin (since border sizes may vary).
5234           In ScreenToMenu only subtract the title height if we actually have
5235           a title.
5236         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
5237           mdi children never have menus of themselves.
5238         * InternalWindowManager.cs: Implement menu handling like form does.
5239           Added GetMenuOrigin to calculate the menu origin, can't use the
5240           CreateParams from the form like normally since it's lying.
5241         * Hwnd.cs: Implement GetBorderSize better (in the sense more
5242           windows-like) and add Inflate and comparison operators to the
5243           Borders type. When calculating MenuOrigin and it's a form with a
5244           window manager, use the window manager to calculate it.
5245
5246 2007-04-17  Chris Toshok  <toshok@ximian.com>
5247
5248         * Control.cs (CreateControl): turns out in 2.0 we don't need this
5249         OnBindingContextChanged thing here.  It's only generated from
5250         ContainerControl.OnCreateControl.  Fixes a newly written unit test
5251         - BindingTest.BindingContextChangedTest4.
5252         
5253 2007-04-17  Jackson Harper  <jackson@ximian.com>
5254
5255         * ScrollBar.cs: When setting values, make sure the current
5256         position stays within the new values range.
5257
5258 2007-04-17  Chris Toshok  <toshok@ximian.com>
5259
5260         * Control.cs (CreateControl): talk about a bizarre corner case.
5261         Don't emit OnBindingContextChanged here if we're a parentless
5262         control (i.e. if we're a form.).  Fixes
5263         BindingTest.BindingContextChangedTest2.
5264
5265 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
5266
5267         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
5268         from win32. Fixes #81255.
5269
5270 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
5271
5272         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
5273         already present in CalculateButtonTextAndImageLayout.
5274
5275 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5276
5277         * XplatUIX11.cs: When setting min/max size for a window we need to
5278           translate the coordinates to x coordinates. Create an overload of
5279           SetWindowMinMax that takes a CreateParams handling this, and change
5280           SetWMStyles to call this function (can't use Control.FromHandle in
5281           the SetWindowMinMax to get the control/CreateParams from the handle
5282           because the handle might not have been assigned to the control
5283           yet). Fixes #81371.
5284
5285 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5286
5287         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
5288         if StateImageList is non-null and it has less than two items (match MS
5289         behaviour). Also, in HandleNavKeys handle the Space key, calling
5290         the new ToggleItemsCheckState method, which tries to change the
5291         checked state of the selected items. Fixes part of #81191.
5292
5293 2007-04-16  Jackson Harper  <jackson@ximian.com>
5294
5295         * RichTextBox.cs: namespace cleanup.
5296
5297 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
5298
5299         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
5300
5301 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
5302
5303         [Fixes #79447]
5304         * Control.cs: Call invalidate in set_Region.
5305
5306         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
5307         it dont works here.
5308
5309 2007-04-16  Jackson Harper  <jackson@ximian.com>
5310
5311         * TextBoxBase.cs: When enter is pressed, we need to update all
5312         lines below the current.
5313
5314 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
5315
5316         * MdiClient.cs: Implement implicit menu merging for MDI
5317         children.  When a child form is active, if it has a menustrip
5318         and the parent form has a MainMenuStrip, automatically merge
5319         the menus.
5320
5321 2007-04-15  Andreia Gaita  <avidigal@novell.com>
5322
5323         * TabControl.cs: Refactored sizing methods to not repeat
5324         code all over the place. Tab bounds are now calculated
5325         as if alignment is top and single line, and only when 
5326         setting the bounds are the positions adjusted according
5327         to alignment. Replaced hardcoded positions, spacings and
5328         paddings by getting the values the ThemeEngine. 
5329         Fixes #79619.
5330         
5331         * Theme.cs: Change TabControl properties and methods so
5332         that all start with TabControl*. Added more properties
5333         to help remove hardcoded values on tabcontrol.
5334         Add CPDrawBorder3D declaration so the Theming classes
5335         can access it.
5336         
5337         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
5338
5339         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
5340         on the Theming namespace, and call the appropriate methods here.
5341         Change CPDrawBorder3D to public.
5342
5343 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5344
5345         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
5346         the control after firing the OnMouseUp event, instead of sending
5347         the message before the mentioned event. This is so we can match the
5348         MS behaviour. Fixes part of #80385.
5349
5350 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
5351
5352         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
5353         RightToLeft property.
5354
5355 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
5356
5357         * ToolStrip.cs: Add properties and internal methods to support merging.
5358         * ToolStripItem.cs: Add MergeAction and MergeIndex.
5359         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
5360         not trigger reparenting or layouts.
5361         * ToolStripManager.cs: Add Merge and RevertMerge methods.
5362         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
5363         is hosting the overflow menu.
5364
5365 2007-04-13  Jackson Harper  <jackson@ximian.com>
5366
5367         * TextControl.cs: Set the line ending correctly for the first
5368         inserted line.
5369
5370 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
5371
5372         * Theme.cs: Update GetMethod to get the new definition for 
5373         KnownColors.Update (and fix theme color updates).
5374
5375 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
5376
5377         * MessageBox.cs: Fix some test and button position.
5378
5379 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5380
5381         * Form.cs: Consider the implicit controls in
5382         GetRealChildAtPoint. We need it since this method
5383         is called on Form when handling the some messages in
5384         WndProc, and need to consider those implicit ones too.
5385         Fixes #80385.
5386
5387 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
5388
5389         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
5390         if there are no ShortcutKeys set.
5391         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
5392         set, use it when painting.
5393
5394 2007-04-12  Jackson Harper  <jackson@ximian.com>
5395
5396         * TextControl.cs: Fix some off-by-one issues in line duplication
5397         and insertion in the undo manager. Also, overwrite the first tag
5398         of a line on insert, if it is just a zero lengthed tag. This
5399         prevents us from getting an extra stranded tag at the beginning of
5400         the first line.
5401
5402 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
5403
5404         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
5405         to calculated proper size including when handle was not created yet.
5406
5407 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5408
5409         * MdiWindowManager.cs: When moving a form, allow the form to be moved
5410           when the mouse is outside of it's parent's client rectangle. Fixes
5411           #79982 (take 3, part 2).
5412
5413 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5414
5415         * X11Structs.cs: Add a few ToString() overrides.
5416         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
5417           the window location in a window-manager independent way. Reworked
5418           FrameExtents, it now actually works. Reworked AddConfigureNotify
5419           and ReparentNotify handling to use GetTopLevelWindowLocation
5420           instead of the earlier, more hacky solution. Reworked SetWMStyles,
5421           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
5422           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
5423           for all other windows (fixes #81281 part 1), a toolwindow is hidden
5424           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
5425           and generally refactored to do as few calculations as possible
5426           inside the lock.
5427
5428 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
5429
5430         * Theme.cs: Change "reflective-contract" between MWF and SD to 
5431         minimize # of calls, avoid Color serialization and avoid updating 
5432         every "known colors" each time a single one is updated.
5433
5434 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5435
5436         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
5437         when not readonly and the text is explicitly set. Code style updates.
5438         * DataGridTableStyle.cs: Removed extra line.
5439         * DataGrid.cs: Code style updates. Removed extra whitespace.
5440         * DataGridColumnStyle.cs: Code style updates. Removed extra 
5441         whitespace.
5442
5443 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5444
5445         * XplatUIX11.cs: Added comment that "fixes" #80021.
5446
5447 2007-04-09  Jackson Harper  <jackson@ximian.com>
5448
5449         * TextControl.cs: We don't need this -1 on the line count anymore.
5450
5451 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5452
5453         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
5454         entered value to underlying type, and convert it back to a string to
5455         apply formatting. Modified GetFormattedValue to use TypeConverter
5456         if available.
5457
5458 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
5459
5460         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
5461         Use SubItems property when we want to ensure there's at least one
5462         subitem. Modified SubItems property to ensure there's always at least
5463         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
5464         the NRE's reported by MS.
5465
5466 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
5467
5468         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
5469         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
5470         Spaces to tabs. Removed extra tabs.
5471
5472 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
5473
5474         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5475         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
5476
5477 2007-04-06  Jackson Harper  <jackson@ximian.com>
5478
5479         * TextBoxBase.cs: When a delete removes a line, recalculate all
5480         lines below that line (they need to get offsets setup correctly)
5481         and invalidate.
5482
5483 2007-04-05  Jackson Harper  <jackson@ximian.com>
5484
5485         * TextControl.cs: We need to invalidate across the width of the
5486         document when we are invalidating multiple lines.
5487         * TextBoxBase.cs: Don't delete into the line ending.
5488
5489 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5490
5491         * ListView.cs: Restore the check for the MouseHover event
5492         in ListView. It looks like the ListView fires more than one MouseHover
5493         event when HoverSelection is true  _only_ in weird-corner scenarios, but
5494         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
5495         event.
5496
5497 2007-04-05  Mike Kestner  <mkestner@novell.com>
5498
5499         * ListView.cs : raise MouseDown before updating selection.
5500         [Fixes #80373 tab 1&3]
5501
5502 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5503
5504         * ToolStripRenderer.cs: Add static method to mirror image.
5505         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
5506         and RightToLeftAutoMirrorImage.
5507         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
5508
5509 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5510
5511         * ToolStripSplitStackLayout.cs: Support Alignment property.
5512         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
5513
5514 2007-04-05  Jackson Harper  <jackson@ximian.com>
5515
5516         * TextControl.cs: Move around the line endings when crossing line
5517         boundaries.
5518         - When combining lines, strip the ending text off the first line.
5519
5520 2007-04-05  Jackson Harper  <jackson@ximian.com>
5521
5522         * TextControl.cs:
5523         * TextBoxBase.cs: Try to never move the cursor into the line
5524         ending.
5525         
5526 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5527
5528         * ToolStripItem.cs: Make sure we aren't firing mouse events when
5529         the item is disabled.  Also add a few missing methods.
5530
5531 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5532
5533         * ListView.cs: We don't need the MouseEnter/MouseLeave check
5534         to fire just one MouseHover event when HoverSelection is true, since
5535         .Net does fire more than one MouseHover event in that scenario. Also,
5536         fix the selection in HoverSelection, by invoking UpdateMultiSelect
5537         if MultiSelect is true, instead of only setting ListViewItem.Selected.
5538         Finally, we need to reset the Hover logic in MouseMove, even when we
5539         don't have a selected item.
5540
5541 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5542
5543         * ToolStrip.cs: Add several missing methods, properties, and events.
5544
5545 2007-04-04  Chris Toshok  <toshok@ximian.com>
5546
5547         * DataGridTextBoxColumn.cs: set the bounds of the text box to
5548         (0,0,0,0) in Commit, as MS does.
5549
5550         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
5551         make sure we set CurrentRow on a row header click *before* calling
5552         Select.  This moves the current cell (and the textbox) to the new
5553         row.  The call to Select then hides the textbox, giving us the
5554         correct behavior.  Fixes #80362.
5555
5556         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
5557         (ListChangedHandler): reorder the position/current changed events,
5558         and call UpdateIsBinding in the ItemAdded case.
5559
5560         * GridColumnStylesCollection.cs: add some columns events, one of
5561         which raises the CollectionChanged event.
5562
5563 2007-04-04  Jackson Harper  <jackson@ximian.com>
5564
5565         * TextControl.cs: When we delete multiple selection lines
5566         invalidate the selection area, don't need to do that for single
5567         lines because the final update view will handle it.
5568
5569 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5570
5571         * Control.cs: When we CreateControl, we need to also create all of the
5572         control's children.  The child's OnLoad must also fire before the parent's
5573         OnLoad.  Fixes the toolbox size in PDN.
5574
5575 2007-04-04  Jackson Harper  <jackson@ximian.com>
5576
5577         * TextBoxBase.cs: When the user presses enter, insert a line
5578         ending into the text. (Maybe this would be a good spot for
5579         Environment.NewLine).
5580         * TextControl.cs: Remove undo manager hack, line endings get
5581         inserted properly now.
5582         
5583 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5584
5585         * MenuAPI.cs: 
5586         - Remove unneeded parameters in UpdateCursor.
5587         - Fix UpdateCursor to check if menu is active.
5588         - Call UpdateCursor when menu deactivate my click.
5589         [Fixes remaining issues from #80410]
5590
5591 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5592
5593         * Control.cs: GetRealChildAtPoint method added, it make an
5594         recursive child control search for the point. 
5595
5596         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
5597         menu.
5598
5599         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
5600
5601 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5602
5603         * Form.cs: Fix mouse position when send back mouse event after closes
5604         menu.
5605
5606 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5607
5608         * Form.cs: Simplify the BUTTONDOWN for active tracker.
5609
5610 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5611
5612         * Control.cs: Fix an issue where if a user resized a control inside
5613         a sizing method like OnResize, we would overwrite their explicit
5614         value.  Also, only call DefaultSize once in the constructor instead
5615         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
5616         nothing actually changed.
5617
5618 2007-04-03  Jackson Harper  <jackson@ximian.com>
5619
5620         * TextControl.cs: Don't attempt to copy text for lines with no
5621         text in them (technically this shouldn't happen, but we aren't
5622         always inserting line endings when we should be).
5623
5624 2007-04-03  Jackson Harper  <jackson@ximian.com>
5625
5626         * TextBoxBase.cs: Calculate the scrollbars before calculating the
5627         document, because this sets some of the document size properties
5628         that are needed.
5629
5630 2007-04-03  Jackson Harper  <jackson@ximian.com>
5631
5632         * TextBoxBase.cs: We need to calculate maximums even if this is
5633         not a multiline control, because the maxs are used for scrolling.
5634         - Display the caret after doing a page up/down, we need to
5635         manually display it because a proper CaretMoved event isn't
5636         triggered (this is because of the way the math is done to
5637         determine how far to scroll).
5638
5639 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5640
5641         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
5642         (ToolBar was relying on SetBoundsCore to default the values sent 
5643         base off of BoundsSpecified.)
5644
5645 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5646
5647         * DateTimePicker.cs: Change Text so that when a null value or empty
5648           string is assigned to the test we always raise ValueChanged and
5649           TextChanged (earlier implementation would only raise ValueChanged
5650           if the current date value was different from DateTime.Now).
5651
5652 2007-04-03  Andreia Gaita <avidigal@novell.com> 
5653
5654         * ButtonBase: Call update after invalidation, fixes #80194
5655
5656 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5657
5658         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
5659           #79335.
5660
5661 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5662
5663         * XplatUIX11.cs: SetWMStyles: If the control is a form with
5664           FormBorderStyle = None, don't give the window any decorations.
5665           Fixes #81276.
5666
5667 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5668
5669         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5670         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
5671           to check for is a mix of several styles (such as WS_CAPTION for
5672           instance).
5673         * Control.cs: Don't paint an area bigger than the client area when
5674           painting the background colour. Add an internal GetCreateParams.
5675           Update calls to XplatUI.CalculateWindowRect due to API change.
5676         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
5677           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
5678           the size if it hasn't been handled by any windows. When creating
5679           and moving windows, X wants the location of the entire window, but
5680           the size of the client window, so add
5681           TranslateClientRectangleToXClientRectangle,
5682           TranslateWindowSizeToXWindowSIze and
5683           TranslatedXWindowSizeToWindowSize to cope with this, and call them
5684           before every window creation and move. Update CalculateWIndowRect
5685           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
5686           In AddConfigureNotify don't do anything if the hwnd is a zombie
5687           (fixes the BadWindow we were getting while running the tests),
5688           always calculate the offsets when it's a parentless window, not
5689           only when reparented, and translate the window size, since we're
5690           getting the client size of the whole window, excluding entire
5691           window.
5692         * Theme.cs: Added BorderSizableSize.
5693         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5694           anymore. Update calls to XplatUI.CalculateWindowRect due to API
5695           chang
5696         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
5697           change. Fake the window styles here instead of in XplatUIWin32 so
5698           that all back-ends get the same window styles (and it's Form that's
5699           deciding when to use wm, not the Win32 backend anyways)
5700         * Hwnd.cs: Completely reworked GetWindowRectangle and
5701           GetClientRectangle - they are now passed a CreateParams and they
5702           only use Style and ExStyle to determine the rectangles (they should
5703           now work just like Win32AdjustWindowRectEx - though quite a few
5704           special cases are probably missing). They should also be 100%
5705           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
5706           == rect), and all numbers (borders, menu sizes) are taken from the
5707           current theme. Added a GetBorders helper function that will return
5708           the borders for any given CreateParams (including captions and
5709           menus), and GetBorderSize that returns the given border size only.
5710         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5711           Hwnd.GetClientRectangle.
5712
5713 2007-04-02  Chris Toshok  <toshok@ximian.com>
5714
5715         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
5716         logic between the values we present to the user and the values
5717         which are stored in the column's property.  Also, don't call
5718         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
5719
5720 2007-04-02  Jackson Harper  <jackson@ximian.com>
5721
5722         * TextBoxBase.cs: Scroll faster!
5723
5724 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5725
5726         * StatusStrip.cs: Layout fixes for PDN.
5727         * ToolStrip.cs: Set item's available to true, and placement to main when
5728         added.
5729         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
5730         changing in setter before doing any work, add InternalVisible.
5731         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
5732         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5733         infinite loop.
5734
5735 2007-04-02  Jackson Harper  <jackson@ximian.com>
5736
5737         * TextBox.cs: LBUTTON does not make the textbox select all of it's
5738         text on focus.
5739
5740 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5741
5742         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
5743           Makes ToolStripComboBoxes show up again.
5744
5745 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5746
5747         * ListView.cs: Add a hover_pending field in ListView
5748         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
5749         cycle (we are resetting the MouseHover logic in XplatUI
5750         to handle HoverSelection). Fixes #80429.
5751
5752 2007-04-02  Jackson Harper  <jackson@ximian.com>
5753
5754         * TextControl.cs: Make sure the attributes get set on the last
5755         tag.
5756         - Still have to do the end tag if we have stepped all the ways to
5757         the end.
5758
5759 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5760
5761         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
5762         on an internal libgdiplus call when the information is already 
5763         available via the public API.
5764
5765 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5766
5767         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
5768           control is removed from a control collecftion.
5769         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
5770           Fixes FormPropertyTest (failed on rare occasions).
5771         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
5772           of Win32SetParent (when changing from no parent to a parent it
5773           might add the new parent's location in screen coordinates to this
5774           window's location).
5775         * Form.cs: Rework ChangingParent once again, now the handle is
5776           recreated whenever a FormWindowManager is added or removed (that is
5777           whenever a normal form is parented or abandoned). Also change
5778           CreateParams so that all non-toplevel windows always get the
5779           specified sice (StartupPosition is never considered for
5780           non-TopLevel forms).
5781         * ContainerControl.cs: Add ChildControlRemoved, the container control
5782           needs to be notified when a control is removed from it's
5783           collection, in the case the removed control is the active control.
5784
5785 2007-04-02  Jackson Harper  <jackson@ximian.com>
5786
5787         * RichTextBox.cs: Use the new methods for setting the font and
5788         color, these methods set the specified attribute without
5789         overriding the other attributes.
5790
5791 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5792
5793         * ToolStripPanel.cs: Fixes for better layouts in PDN.
5794
5795 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
5796
5797         * TextBox.cs: Added internal ChangeBackColor method to special-case
5798         Color.Empty. Added check for invalid ScrollBars value.
5799         * TextBoxBase.cs: Added internal ChangeBackColor method.
5800         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
5801         internal ChangeBackColor method to special-case Color.Empty. Added
5802         check for invalid ScrollBars value.
5803
5804 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
5805
5806         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
5807
5808 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5809
5810         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
5811         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
5812         [Based on submitted patch from Olivier Duff.]
5813
5814 2007-03-30  Jackson Harper  <jackson@ximian.com>
5815
5816         * TextBox.cs: Only select all on initial focus if the user has not
5817         specified a selection area.
5818
5819 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5820
5821         * UserControl.cs: Override CreateParams.
5822
5823 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5824
5825         [ Fixes #80995 ]
5826
5827         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5828         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
5829           check for is a mix of several styles (such as WS_CAPTION for instance).
5830         * Control.cs: Don't paint an area bigger than the client area when painting
5831           the background colour. Add an internal GetCreateParams. Update calls to
5832           XplatUI.CalculateWindowRect due to API change.
5833         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
5834           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
5835           hasn't been handled by any windows. When creating and moving windows, X
5836           wants the location of the entire window, but the size of the client
5837           window, so add TranslateClientRectangleToXClientRectangle,
5838           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
5839           to cope with this, and call them before every window creation and move.
5840           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
5841           removing DeriveStyles). In AddConfigureNotify don't do anything if the
5842           hwnd is a zombie (fixes the BadWindow we were getting while running the
5843           tests), always calculate the offsets when it's a parentless window, not
5844           only when reparented, and translate the window size, since we're getting
5845           the client size of the whole window, excluding entire window.
5846         * Theme.cs: Added BorderSizableSize.
5847         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5848           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
5849         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
5850           Fake the window styles here instead of in XplatUIWin32 so that all
5851           back-ends get the same window styles (and it's Form that's deciding when
5852           to use wm, not the Win32 backend anyways)
5853         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
5854           they are now passed a CreateParams and they only use Style and ExStyle
5855           to determine the rectangles (they should now work just like
5856           Win32AdjustWindowRectEx - though quite a few special cases are probably
5857           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
5858           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
5859           sizes) are taken from the current theme. Added a GetBorders helper
5860           function that will return the borders for any given CreateParams
5861           (including captions and menus), and GetBorderSize that returns the given
5862           border size only.
5863         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5864           Hwnd.GetClientRectangle.
5865
5866 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5867
5868         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
5869           layout of the mdi children is handled by CreateParams. Fixes
5870           #79964,
5871
5872 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5873
5874         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
5875         processed.
5876
5877         * Form.cs: When active tracker mouse down is not processed, send event 
5878         back to control inside mouse position. [Fixes #81227]
5879
5880 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5881
5882         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
5883         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
5884         stealing focus from the active form on Windows.  (Control will be made
5885         visible in ShowWindow.)
5886
5887 2007-03-29  Mike Kestner  <mkestner@novell.com>
5888
5889         * ImageList.cs : add internal Changed event.
5890         * ListView.cs : hook up to StateImageList.Changed to perform
5891         invalidations when the the state icon list changes. [Fixes #81191]
5892
5893 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5894
5895         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
5896         to prevent tooltips from stealing focus from the active form on Windows.
5897
5898 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5899
5900         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
5901
5902         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
5903
5904 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5905
5906         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
5907         balloons.
5908
5909 2007-03-29  Jackson Harper  <jackson@ximian.com>
5910
5911         * TextControl.cs: When deleting text from non multiline textboxes,
5912         we need to update the entire document, because line offsets will
5913         be shifting.
5914
5915 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5916
5917         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
5918         added to theme, now we can create themes that uses diferent notify engines
5919         like notification-daemon from galago project or growl for Mac OS.
5920
5921 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5922
5923         * NotifyIcon.cs: Prevent Balloon to show in task bar.
5924
5925 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5926
5927         * XplatUIX11.cs: Prevent system to open more than one balloon.
5928
5929         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
5930         some compiler warning messages.
5931
5932 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5933
5934         [Fixes #79149]
5935
5936         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
5937
5938         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
5939         implemented, this methods is used by NotifyIcon.BalloonWindow class.
5940
5941         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
5942         systems.
5943
5944 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5945
5946         * ListViewItem.cs: Forgot to make Invalidate internal.
5947
5948 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5949
5950         * ListView.cs: Add a InvalidateSelection method to
5951         invalidate methods which are currently selected, and call
5952         it when setting FullRowSelect and HideSelection, instead of
5953         calling Redraw.
5954
5955 2007-03-28  Chris Toshok  <toshok@ximian.com>
5956
5957         * XplatUIX11.cs (UnmapWindow): reindent this block.
5958
5959         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
5960         the selection_start if we're moving the selection (that is, not
5961         extending it). Fixes bug #80461.
5962
5963 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5964
5965         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
5966         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
5967         create private ControlCollection.
5968
5969 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5970
5971         * Control.cs: We need to call OnVisibleChanged for our implicit
5972         children as well as our normal children.  Fixes scrollbars in
5973         comboboxes not showing up.
5974
5975 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5976
5977         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
5978         the check for IsHandleCreated first.  The check in CreateHandle is not
5979         good enough because CreateHandle can be overriden, and the override 
5980         should not be called if the handle is already created.
5981
5982 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5983
5984         * ToolStrip.cs: Remove MonoTODO for tooltips.
5985         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
5986         * ToolStripContainer.cs: Add custom ControlCollection class.
5987         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
5988         * ToolStripDropDown.cs: Add some missing properties/methods.
5989         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
5990         * ToolStripItem.cs: Remove MonoTODO for tooltips.
5991         * ToolStripManager.cs: Add IsShortcutDefined.
5992         * ToolStripOverflow.cs: Override LayoutEngine.
5993         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
5994         * ToolStripSeparator.cs: Add ImageKey.
5995
5996 2007-03-28  Jackson Harper  <jackson@ximian.com>
5997
5998         * TextControl.cs: If a char delete removes a line ending, we need
5999         to update the ending style.
6000         - Make sure the line ending calcs get called.
6001
6002 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6003
6004         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
6005           it was making the new code not work. Fixed a typo in the new code
6006           as well. Fixes #79826.
6007
6008 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6009
6010         * XplatUIWin32.cs:
6011         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
6012         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
6013         - SystrayBalloon method implemented.
6014         [Add support for notifyicon balloon on win32, #79149]
6015
6016 2007-03-27  Mike Kestner  <mkestner@novell.com>
6017
6018         * ThemeWin32Classic.cs : update StateImageList selection to mirror
6019         the ms behavior when only one image is added to the list.
6020         [Fixes #81191]
6021
6022 2007-03-27  Jackson Harper  <jackson@ximian.com>
6023
6024         * TextControl.cs: Improvements to non multiline line ending
6025         drawing/measuing.
6026
6027 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6028
6029         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
6030
6031 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6032
6033         * NotifyIcon.cs: 
6034         - Balloon message handling added.
6035         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
6036
6037         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6038         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
6039         to SystrayBalloon to me like other Systray method, also a
6040         handle parameter added.
6041
6042 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6043
6044         * ListView.cs: Show scrollbars even when items.Count == 0
6045         but the columns Width is bigger than the ListView.Width.
6046         Also, when columns.Count == 0 set layout_wd and layout_ht
6047         to the ClientRectangle values, so we don't show any scrollbar
6048         in that case.
6049
6050 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6051
6052         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
6053
6054 2007-03-27  Jackson Harper  <jackson@ximian.com>
6055
6056         * RichTextBox.cs: The RTF library decodes the text properly for us
6057         now.
6058
6059 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6060
6061         * ListView.cs: Display HeaderControl even when columns.Count == 0.
6062         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
6063         ListView header (HeaderControl), instead of Control.BackColor.
6064
6065 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
6066
6067         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
6068         Fixes tab control issues where controls would not show up because they
6069         never received their OnVisibleChanged call.
6070
6071 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6072
6073         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
6074         BalloonTipShown).
6075
6076 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
6077
6078         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
6079         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
6080         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
6081         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
6082         the handle.  Fix WindowState by using the internal variable until we are 
6083         sure that we've been shown.
6084         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
6085         max or min.
6086         [Fixes bug #81198]
6087
6088 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6089
6090         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
6091           (at least borders). Fixes #79386 on Linux (with a small difference
6092           in behaviour: when trying to resize a caption-less window metacity
6093           shows the sysmenu. Resizing is still possible though).
6094         * XplatUIWin32.cs: When setting window styles send request an extra
6095           WM_NCCALCSIZE when it's a form without title (due to no text and no
6096           caption), since Win32 seems to calculate it wrong the first time we
6097           get the message, though the second time things work as they should.
6098         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
6099           newly reparented window might show up unparented. Update
6100           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
6101           there's no title text. Fixes #79386.
6102
6103 2007-03-27  Mike Kestner  <mkestner@novell.com>
6104
6105         * ListBox.cs : don't perform invalidations if the handle hasn't been
6106         created.  [Fixes #80753]
6107
6108 2007-03-27  Mike Kestner  <mkestner@novell.com>
6109
6110         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
6111         [Fixes #80428]
6112
6113 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6114
6115         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
6116         needed to implement Balloon.
6117
6118 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6119
6120         * ListViewItem.cs: In the constructors that take
6121         an array of strings, don't use ListViewSubItemCollection.AddRange
6122         method to add items, since we need to have a different behaviour (in
6123         the constructors we add an item for each null string, opposed to
6124         the behaviour of AddRange, which adds nothing).
6125
6126 2007-03-26  Andreia Gaita  <avidigal@novell.com>
6127
6128         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
6129
6130 2007-03-26  Jackson Harper  <jackson@ximian.com>
6131
6132         * TextControl.cs: Draw and measure line endings when in non
6133         multiline mode.
6134         - When searching the text, count the end of the last line as a
6135         word boundary.
6136
6137 2007-03-26  Jackson Harper  <jackson@ximian.com>
6138
6139         * RichTextBox.cs: The selection_start and selection_end don't
6140         really track the correct tags for the selection. So we'll manually
6141         compute the correct tag here.
6142
6143 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6144
6145         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
6146           and Continuous styles. Fixes #79469.
6147
6148 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
6149
6150         * ToolStrip.cs: Implement Tooltips.
6151         * ToolStripItem.cs: Create internal method for determining tooltip.
6152
6153 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
6154
6155         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
6156
6157 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6158
6159         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
6160         it prevents a problem thak keeps icon visible after application 
6161         closes on win32.
6162
6163 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6164
6165         * NotifyIcon.cs: Balloon properties and methods created.
6166
6167         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6168         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
6169
6170 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
6171
6172         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
6173
6174 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
6175
6176         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
6177         parameter indicates which aspects were explicit/user-set.
6178         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
6179
6180 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
6181
6182         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
6183         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
6184         SmallChange, and Value (2.0).
6185         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
6186
6187 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6188
6189         * ListView.cs: Always set item_control.Width in LayoutDetails
6190         if View is Details. Setting it later in CalculateScrollBars
6191         in a not-so-corner scenario (the sum of columns width is
6192         not bigger than the ListView width when handle is created, and then
6193         that sum gets bigger by increasing the width of the columns)
6194         causes a very weird recursion path (which shouldn't be happening,
6195         since header_control sets it in CalculateScrollBars too). This bug
6196         appeared after Chris' fixes for handle created issues, so probably
6197         it's related to some handle-creation time.
6198
6199 2007-03-23  Chris Toshok  <toshok@ximian.com>
6200
6201         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
6202         case where there's an add row, just so we don't end up in a case
6203         where it's not displayed (this happens when the row is partially
6204         obscured).  Fixes bug #79574.
6205
6206 2007-03-23  Jackson Harper  <jackson@ximian.com>
6207
6208         * TextControl.cs:
6209         * TextBoxBase.cs:
6210         * RichTextBox.cs: Preserve line endings in the lines text buffer,
6211         also added an enum that represents the line ending type. 
6212
6213 2007-03-23  Andreia Gaita  <avidigal@novell.com>
6214
6215         * NumericUpDown.cs: Fix logic so Text and Value properties are not
6216         messed with in every method call, but only from DownButton, 
6217         UpButton, UpdateEditText() and ValidateText. Fixes #80346
6218
6219 2007-03-23  Chris Toshok  <toshok@ximian.com>
6220
6221         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
6222         format objects if the format spec is "".  Fixes bug #80889.
6223
6224 2007-03-22  Miguel de Icaza  <miguel@novell.com>
6225
6226         * ToolStripPanel.cs (Join): added stubs to build PDN3
6227
6228         * Control.cs (AutoScrollOffset): Add.
6229
6230         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
6231         property, its only implemented for Win32, on X11 it defaults to
6232         some hardcoded value.
6233
6234         * ToolStripItem.cs (AllowDrop): Add property
6235
6236 2007-03-22  Mike Kestner  <mkestner@novell.com>
6237
6238         * ListView.cs : in FullRowSelect Details mode, only enable box
6239         selection if the user clicks over the "item" column outside of the
6240         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
6241
6242 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6243
6244         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
6245           handle is not created yet.
6246         * Form.cs: Select: Don't call CreateHandle if the handle is already
6247           created, avoids a stack overflow on Windows when we are recreating
6248           controls.
6249         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
6250           they are made visible, and override AfterTopMostControl to keep
6251           them on top when other controls are brought to front.
6252           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
6253           or force_*scroll_visible is true (old implementation always shows
6254           scrollbars when needed, no matter what auto_scroll was set to).
6255         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
6256           IsHandleCreated check.
6257
6258 2007-03-22  Andreia Gaita  <avidigal@novell.com>
6259
6260         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
6261         row or col separator.
6262         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
6263
6264 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6265
6266         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
6267
6268 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6269
6270         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
6271         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
6272         every time. Fixes #80410.
6273
6274 2007-03-22  Chris Toshok  <toshok@ximian.com>
6275
6276         * BindingSource.cs (AddNew): partially implement.
6277
6278         remove a couple of NotImplementedException's
6279         to get bug #81148 closed.
6280
6281 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6282
6283         [Fixes #80380]
6284         
6285         * Control.cs:
6286         - UpdateCursor method added to update the screen cursor.
6287         - GetAvailableCursor method added to return cursor for enabled tree,
6288         it searches for cursor on control and it's parent's for enabled control.
6289         - Call UpdateCursor method on setter of Cursor property.
6290         - On setter of Enabled call UpdateCursor when it is false, we need to
6291         change cursor to normal (or to this parent cursor) because cursor 
6292         setting theres no effect to disabled controls.
6293         - Some minor source changes to follow the coding style guidelines.
6294
6295         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
6296         controls.
6297
6298 2007-03-22  Chris Toshok  <toshok@ximian.com>
6299
6300         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
6301         generates.
6302
6303 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6304
6305         * XplatUIX11.cs: Implement default locations for forms.
6306         * Form.cs: Completely rework startup location for forms. Fixes #79964.
6307         * Hwnd.cs: Add previous_child_startup_location (to track the current
6308           startup location for any child forms of the current form) and
6309           previous_main_startup_location (to track the startup location for
6310           the current toplevel form).
6311
6312 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6313
6314         * Control.cs: Don't trigger a layout if an implicit control is added
6315         that isn't visible.  Also, don't notify the owner when an implicit control
6316         is added.  (Owners shouldn't even know about their implicit controls.)
6317
6318 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6319
6320         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
6321         to save some re-layouts.
6322
6323 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
6324
6325         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
6326         [Fixes #81203]
6327
6328 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6329
6330         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
6331         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
6332
6333 2007-03-21  Mike Kestner  <mkestner@novell.com>
6334
6335         * ListView.cs : disable selection update for non-left button clicks
6336         with mods and over selected items.  [Fixes #80524]
6337
6338 2007-03-20  Jackson Harper  <jackson@ximian.com>
6339
6340         * TextControl.cs:
6341         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
6342         \r\r\n, \n.
6343
6344 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6345
6346         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
6347           very probably a more complicated calculation there. Update the
6348           textbox' ForeColor and BackColor when the ComboBox' colors are
6349           changed. Change the border change in LayoutComboBox to only affect
6350           the textbox, not all the calculations there. Seems to fix most of
6351           #79436.
6352
6353 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6354
6355         * ComboBox.cs: Handle Home and End keys as well as all combinations of
6356           modifiers + navigation keys as input keys, enables advanced text
6357           selection in the combobox (like Shift+Left Arrow for instance).
6358           ComboTextBox now overrides Focused and returns whatever
6359           ComboBox.Focused returns, since it really should be focused
6360           whenever the ComboBox is. Fixes #80795. Also make the border around
6361           the text box one pixel bigger, as mentioned in #79436.
6362
6363 2007-03-20  Jackson Harper  <jackson@ximian.com>
6364
6365         * TreeView.cs: Don't offset the images, this was causing some
6366         artifacts when expanding/collapsing with images that were the
6367         exact height of the treenode.
6368
6369 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6370
6371         * TrackBar.cs: Query the theme for the correct value when the mouse
6372           moves and the thumb is pressed. 
6373         * Theme.cs: Added TrackBarValueFromMousePosition
6374         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
6375           implementation was updating the trackbar value when drawing, now
6376           the drawing methods only draw. Fixes #80900. Refactored the
6377           calculations out to TrackBarValueFromMousePosition and
6378           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
6379           according to the mouse position whenever it wants to. Changed the
6380           light coloured pen when drawing the thumb from ControlLight to
6381           ControlLightLight, because the ControlLight is the same colour as
6382           the background so the 3D effect is lost. 
6383
6384 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6385
6386         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
6387         defined. Fixes #80784.
6388
6389 2007-03-20  Marek Habersack  <mhabersack@novell.com>
6390
6391         * ContextMenuStrip.cs: align with the change introduced in
6392         revision 74664.
6393
6394 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6395
6396         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
6397         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
6398         in SetTopmost.
6399
6400 2007-03-19  Chris Toshok  <toshok@ximian.com>
6401
6402         * Control.cs (WmPaint): don't make use of the Handle property
6403         after an event is emitted, as the user could have closed the
6404         form/destroyed the control.  Store the Handle in a local variable
6405         and make use of that.  Fixes bug #80768.
6406
6407 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6408
6409         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
6410         behavior in X11 environments.
6411
6412 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6413
6414         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
6415         because on setter of topmost we dont call SetTopmost when handle is not
6416         created.
6417
6418 2007-03-20  Jackson Harper  <jackson@ximian.com>
6419
6420         * TextControl.cs: Need to use SelectionLength () not
6421         selection_length, since that var is reset to -1.
6422         - Draw the caret when we don't have focus.
6423         * TextBox.cs: The selectall actually doesn't occur until the first
6424         focus.
6425         * TextBoxBase.cs: Need to update the caret position after a
6426         selectall.
6427         
6428 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6429
6430         * ListView.cs: Enable scrolling when using Tile view.
6431
6432 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6433
6434         [Fixes #80902]
6435
6436         * XplatUIDriver.cs: Abstract SetOwner method created.
6437
6438         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
6439         must be implemented and was masked as todo.
6440
6441         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
6442         GWL_HWNDPARENT.
6443
6444         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
6445         cheking for null owner to remove transient. The SetTopmost will be change
6446         on a decond step.
6447
6448         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
6449         SetTopmost. Now owned forms will work properly in win32 and X11.
6450
6451 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6452
6453         * MdiWindowManager.cs: Update function name.
6454         * Form.cs: After closing a form MdiParent is always null.
6455         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
6456           better what it should do: necessary book-keeping when the form is
6457           closed, it should not close the form itself.
6458
6459 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6460
6461         * ListViewItem.cs: Fix back and fore color. The subitems only
6462         use their own colors if they are set, otherwise use the listview's
6463         colors. Don't set default colors on constructor for subitem.
6464         Fixes #79315.
6465
6466 2007-03-19  Mike Kestner  <mkestner@novell.com>
6467
6468         * ListView.cs : make box selection for Details views with 
6469         FullRowSelect conform to MS behavior when clicking in the "item" 
6470         column and clicking outside the defined columns.
6471         [Fixes case 5-6 of #80374]
6472
6473 2007-03-19  Chris Toshok  <toshok@ximian.com>
6474
6475         * ScrollableControl.cs: create the controls from within the ctor,
6476         but don't actually add them until our handle is created.  this
6477         fixes a NRE possibility jpobst found (if you override OnLayout in
6478         a subclass, it's called before your ctor).  Also, add a
6479         IsHandleCreated guard to UpdateSizeGripVisibility as well.
6480
6481 2007-03-19  Jackson Harper  <jackson@ximian.com>
6482
6483         * TextBox.cs: Reduce the amount of invalidation we do.
6484         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
6485         some of them are true by default on MS.
6486         - Add some functions to reduce the amount of invalidates we do.
6487         * TextControl.cs: Less invalidation.
6488
6489 2007-03-19  Chris Toshok  <toshok@ximian.com>
6490
6491         [ Fixes #81773, and *seems* to fix #81553 as well ]
6492
6493         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
6494         AccumulateDestroyedHandles.  We need to do it *after* we send
6495         WM_DESTROY, as the user's code can access Control.Handle in
6496         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
6497         move the WM_DESTROY/zombie handling to before the call to
6498         XDestroyWindow.  For some reason without this ordering
6499         FormTest.RecreateHandle hangs.  This ordering is semantically
6500         equivalent, however, as XDestroyWindow is async anyway.
6501
6502 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
6503
6504         * RichTextBox.cs: Reset backcolor_set after setting default.
6505
6506 2007-03-19  Chris Toshok  <toshok@ximian.com>
6507
6508         * ScrollableControl.cs: the scroll position should not effect the
6509         canvas size.  commit patch from georgegiolfan@yahoo.com, which
6510         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
6511         
6512 2007-03-19  Chris Toshok  <toshok@ximian.com>
6513
6514         * ScrollableControl.cs: clean this up a bit.  create the
6515         scrollbars in the ctor and just show/hide them as needed.  Also,
6516         make hscroll_visible/vscroll_visible internal to Recalculate, and
6517         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
6518         everywhere else.  This seems to fix the scrollbars appearing
6519         beneath the content for me (i have *no* idea why that is,
6520         however.)
6521
6522 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6523
6524         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
6525         some redundacy for stuff in Anchor and Dock that base will take care of.
6526         [Fixes #80762]
6527
6528 2007-03-19  Mike Kestner  <mkestner@novell.com>
6529
6530         * ListView.cs : make box selection for Details views without 
6531         FullRowSelect dependent on the text bounds, not item bounds.
6532         * ListViewItem.cs : add an internal property to obtain the TextBounds
6533         in Details view.  [Fixes case 1-4 of #80374]
6534
6535 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6536
6537         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
6538         we're < 2.0. #78448 && #80316
6539
6540 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6541
6542         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
6543         have the same style available as the previously selected one.  Also,
6544         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
6545
6546 2007-03-19  Jackson Harper  <jackson@ximian.com>
6547
6548         * TextControl.cs: Add an alignment property that all new lines
6549         will be given.
6550         - Make sure to use the align shift when calculating the line's X
6551         position.
6552         * TextBox.cs: Set the alignment on the document as well as on all
6553         the document lines.
6554
6555 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6556
6557         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
6558           throw if setting the parent of an mdichild that already has an
6559           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
6560           AssemblyProductAttribute in the assembly, use the type's namespace (as
6561           MS seems to do). CreateControl: don't create the handle if the control
6562           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
6563           create handle if the control is not a form. Change FocusInternal to
6564           virtual so that it can be overriden by Form.
6565         * TextBox.cs: Update call to FocusInternal.
6566         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
6567           form is not a toplevel form when it's a mdi child, so update is_toplevel
6568           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
6569           hasn't been created. Show (IWin32Window): Don't allow this overload for
6570           toplevel windows. CenterToParent/CenterToScreen/Select: create the
6571           handle as MS does. SetVisibleCore: if called on a MdiChild and the
6572           parent isn't visible yet, save the visibility and restore it when the
6573           parent is made visible.
6574         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
6575           methods, since the visibility of the scrollbars can be changed from
6576           several places, not only from AutoScroll.
6577           [Fixes #81179]
6578
6579 2007-03-19  Jackson Harper  <jackson@ximian.com>
6580
6581         * RichTextBox.cs: Enable shortcuts by default.
6582         * TextBoxBase.cs: Add conditional shortcuts.  
6583
6584 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6585
6586         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
6587
6588 2007-03-19  Chris Toshok  <toshok@ximian.com>
6589
6590         [ Fixes bug #80604]
6591         
6592         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
6593         swallow the message we're waiting on, instead of delivering it, as
6594         this is only used for the WM_SHOWWINDOW raised from
6595         MapWindow/UnmapWindow, and the message needs to be generated
6596         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
6597         before doing the Map/Unmap.  Also make sure that the Hwnd is still
6598         alive after the message has been handled.
6599
6600         *before* the window is shown.
6601
6602         * Control.cs (CreateControl): guard a few more things inside the
6603         if (!is_created) block, as we might end up being called again -
6604         yay .net.
6605         (WmShowWindow): call CreateControl if we're showing the control.
6606
6607 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6608
6609         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
6610           controls without a handle if they have any parent with a handle. In
6611           Dispose add a check whether the handle is created or not before
6612           calling BeginInvoke, this removes the need of the extra disposing
6613           parameter (which was bogus anyway since it didn't prevent the
6614           invoke from happening, it only skipped the check for an existing
6615           handle, meaning that the invoke would call on an inexistent
6616           handle).
6617
6618 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6619
6620         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
6621         appears in taskbar.
6622
6623 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6624
6625         * MessageBox.cs:
6626         - Fixed a problem that dont show help button for messages with 3 buttons.
6627         - Refactory button size and position calculations, now dont use fixed 
6628         values, also fixed button sizes (#80043) and form's border space.
6629         - AddButton method created, now all other AddButton methods call this one.
6630         - Some other source code cosmetic changes.
6631
6632 2007-03-18  Jackson Harper  <jackson@ximian.com>
6633
6634         * RichTextBox.cs: Don't do this all fonts must match check if
6635         there is only one char selected.
6636
6637 2007-03-18  Jackson Harper  <jackson@ximian.com>
6638
6639         * TreeView.cs: ScrollWindow works properly now, so we don't need
6640         to screw around with the scroll area.  This fixes some artifacts
6641         when expanding and collapsing.
6642
6643 2007-03-18  Jackson Harper  <jackson@ximian.com>
6644
6645         * TextBoxBase.cs: Allow updating the selection position when the
6646         cursor is outside the textarea, but we have a capture.
6647         * TextControl.cs: A special case for when the cursor is outside
6648         the bounds of the TB.
6649         
6650 2007-03-18  Jackson Harper  <jackson@ximian.com>
6651
6652         * TextBoxBase.cs: Remove image pasting code for now.  There is no
6653         way to get an image on the clipboard right now anyways.
6654         * TextControl.cs:
6655         * RichTextBox.cs: Use the new RTF Picture class for pictures.
6656
6657 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6658
6659         * MessageBox.cs:
6660         - Set window properties in constructor intead of on CreateParams.
6661         - Remove topmost from Window ExStyle.
6662         - Set ShowInTaskbar to false.
6663         - Set form border to FixedDialog.
6664         - Some cosmetic changes and remove unneeded comments.
6665         - It fixes itens 2,3 and 4 of bug #80043.
6666
6667 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
6668
6669         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
6670         none was explicitly set. Fixes part of bug #79949.
6671
6672 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6673
6674         * ToolStripComboBox.cs: Add AutoComplete*.
6675
6676 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6677
6678         * ToolStripComboBox.cs: Add FlatStyle.
6679
6680 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
6681
6682         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
6683         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
6684
6685 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6686
6687         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
6688           CheckBox.cs, RadioButton.cs, BindingSource.cs,
6689           DataGridColumnStyle.cs: Remove warnings.
6690
6691 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6692
6693         * Menu.cs: MergeMenu: Check menu argument for null before looping over
6694           it.
6695         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
6696           visibility of mdi child forms. FormSizeChangedHandler: update the
6697           maximized size if size has changed while maximized.
6698         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
6699           creating the handle.
6700         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
6701           avoid creating the handle if not created.
6702         * XplatUI.cs: Update debug output.
6703         * XplatUIStructs.cs: Added ToString's for a couple of structs.
6704
6705 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
6706
6707         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
6708         ProcessCmdKey().
6709         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
6710         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
6711         Implement keyboard shortcuts.
6712
6713 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6714
6715         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
6716         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
6717         ColorDialog and all derived classes.
6718
6719 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6720
6721         [ Fixes bug #79828 ]
6722
6723         * ToolBar.cs:
6724         - Rename ToolBarButtonInfor to ToolBarItem.
6725         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
6726         - Maintain an array of ToolBarItem, used instead of ToolBarButton
6727         collection to be able add same button more than one time on a toolbar.
6728         - Refactory all properties and methods to use ToolBarItem. 
6729
6730         * ToolBarButton.cs: 
6731         - Remove all propeties and methods that is now in ToolBarItem.
6732         - Rectangle propery now gets the rectangle from first ToolBarItem to
6733         mimic win32 behavior.
6734         - Size calculation and layout methods also removed.
6735
6736         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
6737         ToolBarItem instead of ToolBarButton to right drawing buttons when
6738         same button/separator was added more than one time to ToolBar.
6739
6740         * ThemeNice.cs: Same as above. 
6741
6742 2007-03-15  Andreia Gaita  <avidigal@novell.com>
6743
6744         * XplatUIX11.cs: Fire extra MouseMove events right after
6745         MouseDown and MouseUp, emulating win32's <censored> behaviour
6746         for apps that rely on it.
6747
6748 2007-03-15  Jackson Harper  <jackson@ximian.com>
6749
6750         * TextControl.cs:
6751         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
6752         it is drawn on the controls client window and there is no NC
6753         area.
6754         - Set the background color to gray on 2.0 when we are readonly.
6755
6756 2007-03-15  Chris Toshok  <toshok@ximian.com>
6757
6758         [ Fixes bug #81144 ]
6759         
6760         * XplatUIX11.cs: implement VirtualScreen independently of
6761         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
6762         property.
6763
6764 2007-03-15  Chris Toshok  <toshok@ximian.com>
6765
6766         * Hwnd.cs: add an internal field for the cached_window_state.
6767
6768         * XplatUIX11.cs: cache the window state, invalidating the cache
6769         (and thus re-querying the X server) only when we see an update to
6770         the _NET_WM_STATE property.
6771
6772 2007-03-15  Chris Toshok  <toshok@ximian.com>
6773
6774         * BindingSource.cs: get a lot of the unit tests working.
6775
6776 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6777
6778         * Control.cs: Modify UpdateStyles to store distances when bounds >=
6779         0 instead of just bounds > 0.  [Fixes bug #80912]
6780
6781 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6782
6783         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
6784         and methods.
6785
6786 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
6787         
6788         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
6789         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
6790         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
6791         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
6792
6793 2007-03-15  Chris Toshok  <toshok@ximian.com>
6794
6795         [ Fixes #81101 ]
6796         
6797         * Control.cs: add Ivan's fix for 81101, with a slight modification
6798         - you can set control.Target to null.
6799
6800 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
6801
6802         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
6803         HideDropDown, use Hide instead to prevent an NRE.
6804         [Fixes bug #81147]
6805
6806 2007-03-14  Jackson Harper  <jackson@ximian.com>
6807
6808         * TextBoxBase.cs: Mess with the creation stuff a little. We need
6809         to calculate the document before the handle is created, in some
6810         cases. (Actually just one case).
6811
6812 2007-03-14  Jackson Harper  <jackson@ximian.com>
6813
6814         * TextBoxBase.cs: Need to display the caret after letting the base
6815         wndproc handle the focus methods, because the caret display
6816         methods check the focus state.
6817         - Try to display the caret after updating it's position with SelectWord.
6818         - Don't need to do an immediate update on this recalc, since there
6819         will be an invalidate anyways.
6820
6821 2007-03-14  Jackson Harper  <jackson@ximian.com>
6822
6823         * TreeView.cs: Some workarounds so that we can match event order a
6824         little better.
6825
6826 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
6827
6828         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
6829         #80803. Avoid NullReferenceException when Control does not have
6830         parent. Fixed different blinkstyle issues. Only subscribe to Tick
6831         event a single time. Only draw error icon when control is created and
6832         visible. Fixes failing unit tests.
6833
6834 2007-03-14  Andreia Gaita  <avidigal@novell.com>
6835
6836         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
6837         Selecting events. Fire Leave and Enter events when changing tabs.
6838
6839 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
6840
6841         * TreeView.cs: Add TreeViewNodeSorter.
6842         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
6843
6844 2007-03-14  Chris Toshok  <toshok@ximian.com>
6845
6846         * Form.cs: go ahead and remove the RecreateHandles that jpobst
6847         removed earlier and I had him add back it.  It turns out metacity
6848         *does* in fact handle the MOTIF_WM_HINTS property changing, it
6849         just doesn't redraw the window titlebar until you resize the
6850         window.  This also means we aren't recreating the entire window
6851         hierarchy on X when you change this property.  And it looks better
6852         on windows, too.
6853
6854 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6855
6856         * ListViewItem.cs:
6857         * ListView.cs: Collecting selection information
6858         is now done in SelectedIndexCollection rather than in
6859         SelectedListViewItemCollection. This is done so we can
6860         have the selection information code in one single place
6861         (virtual mode selection information entirely depends on
6862         SelectedIndexCollection).
6863
6864 2007-03-13  Miguel de Icaza  <miguel@novell.com>
6865
6866         * ErrorProvider.cs: Add stubs for ISupportInitialize
6867
6868 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6869
6870         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
6871         in the right order with the right values, from the Checked property, 
6872         just as MS does (instead of triggering them from ListView).
6873
6874         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
6875
6876 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6877
6878         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
6879         the correct handler in OnItemCheck method (ItemCheckEventHandler 
6880         instead of EventHandler). This used to throw an InvalidCastException.
6881
6882 2007-03-13  Jackson Harper  <jackson@ximian.com>
6883
6884         * TextBoxBase.cs: Calculate the document before the handle is
6885         created, so there isn't an extra invalidate called.
6886
6887 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
6888
6889         * Form.cs: Don't set owner in ShowDialog until we are sure
6890         that we aren't going to throw an exception.  [Fixes bug #80773]
6891
6892 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
6893
6894         * TreeView.cs: Make it compile.
6895
6896 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6897
6898         * Control.cs: Another place we don't call SizeFromClientSize.
6899         * Form.cs: Another place we don't call SizeFromClientSize.
6900         [Fixes bug #81125]
6901
6902 2007-03-12  Jackson Harper  <jackson@ximian.com>
6903
6904         * TreeView.cs: Basically emulating some strangness here with
6905         exanding nodes and setting node positions when windows aren't
6906         created.
6907         - Also attempting to walk the node tree less than previously, and
6908         just use visible order calculations for determining offsets.
6909         - oops made scrolling backwards.
6910         * TreeNode.cs: We need to start nodes with a zero visible order,
6911         because the order calcs are based on the first nodes order.
6912
6913 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6914
6915         * Form.cs: Don't exit the program if RecreateHandle is called on
6916         the main form.
6917
6918 2007-03-12  Chris Toshok  <toshok@ximian.com>
6919
6920         * XEventQueue.cs: remove the use of PostQuitState.
6921
6922         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
6923         WM_QUIT message in GetMessage, return false (and if we're in the
6924         nested WaitForHwndMessage, repost the WM_QUIT message).
6925
6926 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6927
6928         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
6929         or the MaximizeBox properties.  [Part of bug #80640]
6930
6931 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
6932
6933         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
6934         no links.
6935
6936 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6937
6938         * ToolStripItem.cs: Fix some tests I broke by checking Visible
6939         instead of visible.
6940
6941 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
6942
6943         * FileDialog.cs: Use text of File name combobox to determine what
6944         files the user selected. Added tokenizer to parse the file names.
6945         Fixes bug #81123.
6946
6947 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6948
6949         * Control.cs: We can't call SizeFromClientSize in the constructor,
6950         but we still need to do the same work, so make an internal version.
6951         [Fixes bug #80621]
6952
6953 2007-03-12  Jackson Harper  <jackson@ximian.com>
6954
6955         * TreeView.cs:
6956         * TreeNode.cs:
6957         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
6958         IsExpanded.
6959
6960 2007-03-12  Jackson Harper  <jackson@ximian.com>
6961
6962         * TextBoxBase.cs: Now that the handles are being created a little
6963         later, we need to make sure that the document is recalculated when
6964         the handle is created.
6965
6966 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
6967
6968         * Theme.cs: GetLinkFont abstract method added.
6969         
6970         * LinkLabel.cs: 
6971         - Remove CalcTrimRectangle, no longer needed.
6972         - Factor also remove, position issues must be fixed in libgdiplus.
6973         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
6974         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
6975         care about font used to draw links.
6976         - Set TabStop to true when control is "Selectable", control is selectable
6977         when have one or more links. Fixes #80501 (test case is also added).
6978         - Set the LinkArea values after links change, LinkArea values must be
6979         based in first link position and size, a test case was created.
6980         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
6981         the attribute must be true LinkArea.Length > 0. The same was applied to
6982         TabStop.
6983         
6984         * ThemeWin32Classic.cs: 
6985         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
6986         in draw method.
6987         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
6988         color change.
6989         - Draw focus rectangle for every parts focused, including parts that 
6990         is on another line, its because regions returns various rectangles
6991         and not only one. Needed to mimic W32 look.
6992         - Uses Graphics.Clip to delimite region painted, it mean that now 
6993         complete text is passed to DrawString, with this we solve layout
6994         issues without create another text renderer.
6995         - Uses Region.Intersect to fix some flickers problems, now only needed
6996         parts will redrawed.
6997         - This changes fixes #79614 and some other unreported issues, on Linux 
6998         some layout problems still remain, the problem is under 
6999         MeasureCharacterRanges but it is an libgdiplus bug.
7000
7001 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
7002
7003         * TextBox.cs: Set for foreground color.
7004         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
7005         this is already done in Control.
7006
7007 2007-03-10  Jackson Harper  <jackson@ximian.com>
7008
7009         * TextBox.cs: Set the background color, but reset the
7010         backcolor_set flag which is just for the user setting the
7011         background color.
7012
7013 2007-03-09  Chris Toshok  <toshok@ximian.com>
7014
7015         * Control.cs: really remove the call to XplatUI.SetVisible from
7016         CreateHandle(), like I said I did when I merged the branch.
7017
7018         * BindingSource.cs: implement some more of this stuff.
7019
7020 2007-03-09  Jackson Harper  <jackson@ximian.com>
7021
7022         * TextBox.cs: Don't explicitly set our background colors.
7023         * TextControl.cs:
7024         * TextBoxBase.cs: Draw readonly text.
7025         - Need to invalidate when backcolor or readonly are changed.
7026         
7027 2007-03-09  Jackson Harper  <jackson@ximian.com>
7028
7029         * TextBoxBase.cs: Don't set the forecolor until the handle is
7030         created.
7031         - Do not raise OnPaint, and removed some old debug code.
7032
7033 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
7034
7035         * ScrollableControl.cs: Fix mouse wheel scrolling.
7036
7037 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
7038
7039         * Control.cs: Wire up MouseDoubleClick event.
7040
7041 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
7042
7043         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
7044         top or bottom.
7045         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
7046         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
7047         item is added.  This logic was moved to ToolStrip.OnItemAdded.
7048         [Fixes bug #81090]
7049
7050 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7051
7052         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
7053
7054 2007-03-08  Jackson Harper  <jackson@ximian.com>
7055
7056         * TreeView.cs: Show the correct image for selected node (this used
7057         to work, not sure how the code got deleted). Also implemented 2.0 feature
7058         SelectedImageKey.
7059
7060 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7061
7062         * ListView.cs:
7063         * ListViewItem.cs: Cache index in items when retrieving them
7064         in VirtualMode.
7065
7066 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7067
7068         * ToolStripItem.cs: Don't return the explicit_size if we are using 
7069         AutoSize.  Fixes invalidation issue when user has explicitly set a
7070         size and has AutoSize = true.
7071
7072 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7073
7074         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
7075
7076 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7077
7078         * DataGridView.cs: Remove event handler from DataView when a
7079         DataTable is used as DataSource.
7080
7081 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7082
7083         * Control.cs: Create internal setter for client_size to allow it to be
7084         set without triggering resizing code.
7085         * Form.cs: Calculate client_size in constructor, only change client_size
7086         in FormBorderStyle property if Handle has been created.
7087         [Fixes #80574, #80791]
7088
7089 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
7090
7091         * SystemInformation.cs: Add TerminalServerSession.
7092
7093 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7094
7095         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
7096         TreeView code.
7097
7098 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7099
7100         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
7101         Handle before we were supposed to.  Now checks ActivateOnShow property
7102         in Control.
7103         * Control.cs: Add internal ActivateOnShow property.
7104         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
7105         for ActivateOnShow.
7106         * Hwnd.cs Remove no longer needed no_activate field.
7107
7108 2007-03-07  Jackson Harper  <jackson@ximian.com>
7109
7110         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
7111         2.0 properties
7112         * DrawTreeNodeEventHandler.cs: Add
7113         * DrawTreeNodeEventArgs.cs: Correct default value.
7114         
7115 2007-03-07  Chris Toshok  <toshok@ximian.com>
7116
7117         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
7118         to be called before NativeWindow.WndProc.  Put the HwndCreating
7119         magic there to hook up our Hwnd's to handles.
7120
7121 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
7122
7123         * DataGridView.cs: Comment out debug code.
7124
7125 2007-03-07  Chris Toshok  <toshok@ximian.com>
7126
7127         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
7128         to make the rest of the world happy]
7129
7130         * Control.cs (CreateHandle): there's no need to call
7131         XplatUI.SetVisible here, it's effectively done by
7132         XplatUI.CreateWindow on X now, and always was on windows.
7133
7134         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
7135         shortcircuit out of the loop if we have a message loop running on
7136         this thread.
7137
7138         [Changelog from merge]
7139
7140         2007-03-05  Chris Toshok  <toshok@ximian.com>
7141
7142                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
7143                 causes handle creation.
7144
7145         2007-02-28  Chris Toshok  <toshok@ximian.com>
7146
7147                 * ApplicationContext.cs: Add a flag to make sure we only raise the
7148                 ThreadExit event once (ExitThreadCore can be indirectly called
7149                 from a few places.)  I don't like the additional flag, but it
7150                 makes the event ordering/count correct.
7151
7152                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
7153                 without locking the collection.  An enumerator doesn't give us any
7154                 protection from modification anyway.  Lock the thread hash and
7155                 replace the complicated enumerator loop with a foreach.
7156                 (Application.CloseForms): make internal so it can be called from
7157                 ApplicationContext.  This should probably be moved to MWFThread.
7158                 (Application.ExitThread): don't call MWFThread.Current.Exit()
7159                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
7160                 when the runloop exits (in response to WM_QUIT.)
7161                 (Application.RunLoop): add a comment (and check) for
7162                 context.MainForm being null after setting context.MainForm.Visible
7163                 = true.  This is because you're perfectly free to dispose of a
7164                 form in VisibilityChanged.  Chalk this up to another case where we
7165                 need to synchronously generate WM_ACTIVATE from Control.Show.
7166                 Also, add handling for WM_QUIT here so we'll exit the loop.
7167                 
7168                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
7169                 fact that we don't wait if we're only unmapping the whole_window
7170                 makes me a bit nervous, but it doesn't seem to cause any problems
7171                 yet.
7172
7173                 also, add a comment about the stupid, broken and wrong resetting
7174                 of PostQuitState to false in GetMessage().
7175
7176                 In PostQuitMessage, we need to add a WM_QUIT message to the
7177                 thread's queue.  We use the FosterParent to get the right
7178                 handle/hwnd/queue.
7179
7180                 Lastly, in SetVisible, we need to unmap both windows, since the
7181                 waiting only happens when we're unmapping the client window.  So
7182                 now, the *only* time we unmap just the whole_window is in the hack
7183                 for resizing a control to 0,0.
7184                 
7185         2007-02-21  Chris Toshok  <toshok@ximian.com>
7186
7187                 * Application.cs (CloseForms): rewrite this so that we don't
7188                 modify the list while we're traversing it.
7189
7190         2007-02-20  Chris Toshok  <toshok@ximian.com>
7191
7192                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
7193                 of OnHandleCreated.
7194                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
7195                 handle is created.  otherwise we'll create it here.
7196                 (VerticalScrollEvent): same here.
7197
7198                 * Application.cs (CloseForms): call Form.Dispose, don't post
7199                 WM_CLOSE_INTERNAL.
7200
7201                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
7202                 here. Application should Dispose() of the Form's.
7203
7204                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
7205                 WM_DESTROY as well.
7206                 (MapWindow,UnmapWindow): only actually do the waiting for
7207                 SHOWWINDOW if the control we're dealing with is a Form.
7208                 (CreateWindow): if the control isn't a form, SendMessage
7209                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
7210
7211                 * Control.cs (SetVisibleCore): always use is_visible here, not
7212                 value.  If we use value, we can end up re-setting something
7213                 visible if, for instance, you do Control.Hide() in a delegate
7214                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
7215
7216         2007-02-20  Chris Toshok  <toshok@ximian.com>
7217
7218                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
7219                 the message we need.  PeekMessage returning false should not be a
7220                 condition under which we exit the loop.
7221
7222         2007-02-15  Chris Toshok  <toshok@ximian.com>
7223
7224                 * Control.cs (Refresh): only refresh if we've got a handle and are
7225                 visible.
7226                 (CreateAccessibilityInstance): CreateControl() here.
7227                 (UpdateChildrenZOrder): complicate the code loop even more by
7228                 taking into account controls that haven't had their handle
7229                 created, and those that aren't visible.  But on the flip side,
7230                 simplify the code by splitting it into two loops.  one which
7231                 builds up the list of child controls we're interested in, and the
7232                 other that sets the z order of those children.
7233
7234         2007-02-14  Chris Toshok  <toshok@ximian.com>
7235
7236                 * Control.cs: Control.AccessibilityObject causes the control to be
7237                 created, not just the handle.
7238
7239         2007-02-14  Chris Toshok  <toshok@ximian.com>
7240
7241                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
7242                 problem on X where a window might have its handle created (and be
7243                 visible) while the window is unmapped.  calling XConfigureWindow
7244                 on an unmapped window is bad, and generates X errors.
7245
7246         2007-02-13  Chris Toshok  <toshok@ximian.com>
7247
7248                 * Control.cs (CreateHandle): don't loop over our children setting
7249                 their parent here.  do it when in WndProc when we're shown.
7250                 (UpdateChildrenZOrder): make this internal so we can call it from
7251                 ScrollableControl.
7252                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
7253                 creating its handle.  Also, remove the calls to PerformLayout from
7254                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
7255                 OnVisibleChanged only seems to be called directly here for the
7256                 toplevel control.  It's propagated down the window hierarchy by
7257                 calls to child.OnParentVisibleChanged.
7258                 (OnVisibleChanged): don't do layout here - it's done (oddly
7259                 enough, according to a glance at stack traces on ms.net..) in
7260                 ScrollableControl.
7261                 
7262                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
7263                 z order of our children before calling PerformLayout.
7264
7265         2007-02-12  Chris Toshok  <toshok@ximian.com>
7266
7267                 [big change, fixes #80020]
7268                 
7269                 * AccessibleObject.cs: we need to make owner internal again to fix
7270                 some of ControlAccessibleObject.
7271
7272                 * Control.cs: lots of changes here.  add support for WM_CREATE,
7273                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
7274                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
7275                 we create child controls.  leave the MonoTODO's for the
7276                 accessibility calls, but fix the exceptions so the tests pass.
7277
7278                 Add the InvalidOperationExceptions to Invoke methods, and remove a
7279                 couple of InvokeInternal methods we aren't using.
7280                 
7281                 Also, add a couple of CreateHandle calls in places where we know
7282                 the handles are being created but our code doesn't reference
7283                 .Handle.
7284
7285                 Make SetVisibleCore call OnVisibleChange if the handle isn't
7286                 created.  If the handle is created, we rely on XplatUI.SetVisible
7287                 generating the event synchronously.
7288                 
7289                 Lastly, make sure we don't use this.Handle inside CreateHandle,
7290                 because we can call back into client (and that code can dispose of
7291                 the control).
7292
7293                 * XplatUIStructs.cs: misc/cleanup.
7294
7295                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
7296                 although we don't populate the wParam properly.
7297                 (CreateWindow): generate WM_CREATE.
7298                 (MapWindow,UnmapWindow): make these calls synchronous, at great
7299                 performance expense (particularly in the unmap case), to match
7300                 win32 behavior.
7301
7302                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
7303                 to call it.
7304                 (set_MdiParent): don't recreate the handle unless it's been
7305                 created already.
7306                 
7307                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
7308                 it's created.
7309
7310                 * NativeWindow.cs: this is probably the weirdest part of the
7311                 patch.  We need a way to link up the window being created to the
7312                 WM_CREATE message.  Since we can only be creating one window at a
7313                 time on a given thread, we keep track of a per-thread reference so
7314                 we can dispatch it properly.  We also need to keep track of the
7315                 Hwnd currently being created so that the win32 backend doesn't
7316                 have problems.
7317                 
7318                 * XplatUIWin32.cs: a similar change to the one we made in
7319                 NativeWindow.cs.
7320
7321 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7322
7323         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
7324         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
7325         to draw the menu shortcut string.
7326
7327 2007-03-07  Jackson Harper  <jackson@ximian.com>
7328
7329         * TreeNode.cs: Add the 2.0 collapse method.
7330
7331 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7332
7333         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
7334
7335 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7336
7337         * DataGridView.cs: Change DataSource will clear column and row
7338         lists. Call Invalidate() to reflect DataSource change.
7339
7340 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7341
7342         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
7343         and a new row is added to it.
7344
7345 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7346
7347         * DataGridView.cs: Add columns when DataSource is en empty list but
7348         is a System.Data.DataView (from a System.Data.DataTable).
7349
7350 2007-03-06  Andreia Gaita  <avidigal@novell.com>
7351
7352         * Label.cs: Implement AutoEllipsis (2.0)
7353
7354 2007-03-06  Jackson Harper  <jackson@ximian.com>
7355
7356         * TreeView.cs: Implement 2.0 TopNode setter property.
7357         - Use a local var instead of the skipped_nodes field for computing
7358         how many nodes to skip.  Otherwise we won't scroll because the
7359         valuechanged handler checks if skipped_nodes is equal to the new
7360         value.
7361         - Implement 2.0 Sort method.
7362         - Add useless 2.0 DoubleBuffer property
7363         - Implement 2.0 LineColors property.  Lets you change the color of
7364         the lines in the tree. Terribly useful for creating non cohesive
7365         desktops.
7366         - Implement 2.0 image key feature.
7367
7368 2007-03-06  Jackson Harper  <jackson@ximian.com>
7369
7370         * TreeView.cs: We can't get the bounds of the nodes before raising
7371         the AfterSelect event, because that event could change the node's
7372         bounds (scrolling, font change, etc).
7373
7374 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7375
7376         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
7377         * Form.cs: Don't recreate handle when creating FormWindowManager, just
7378           update window styles. In CreateParams us VisibleInternal instead of
7379           VIsible to get the actual visible flag set for this form.
7380         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
7381           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
7382           handle the case when the form is already maximized, in which case
7383           it should be restored. Fixes #81043.
7384
7385 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7386
7387         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
7388
7389 2007-03-05  Jackson Harper  <jackson@ximian.com>
7390
7391         * TreeViewHitTestInfo.cs: implement.
7392
7393 2007-03-05  Jackson Harper  <jackson@ximian.com>
7394
7395         * InternalWindowManager.cs: class status fix.
7396
7397 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7398
7399         * InternalWindowManager.cs: All windows that have a parent
7400         are confined to their parent when they're being moved.
7401         Fixes #80822.
7402
7403 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
7404
7405         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
7406         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
7407
7408 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7409
7410         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
7411           buttons invisible before deciding which ones should be visible
7412           (fixes minimize/maximize buttons showing up in toolwindows). Remove
7413           an unused variable.
7414         * InternalWindowManager.cs: Remove warning.
7415
7416 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7417
7418         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
7419         to throw an InvalidOperationException is virtual mode is being used.
7420
7421 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7422
7423         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
7424         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
7425         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
7426         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
7427         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
7428         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
7429
7430 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7431
7432         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
7433           driver.KeyboardDelay from XplatUI.KeyboardDelay 
7434         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
7435           (patch by Sergey Volk)
7436
7437 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7438
7439         * ToolWindowManager.cs: Added, contains logic for
7440           tool windows.
7441         * CreateParams.cs: Add a few helper methods and an
7442           internal variable to know which control the CreateParams belongs
7443           to.
7444         * Control.cs: Call Form.ChangingParent when the
7445           parent is about to be changed.
7446         * XplatUIX11.cs: DeriveStyles (): Set
7447           caption_height for all windows that have captions and are children.
7448           Update to use ToolWindowManager instead of InternalWindowManager
7449           for ToolWindows.
7450         * XplatUIWin32.cs: Set fake window styles for all
7451           windows that have window managers.
7452         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
7453           now duplicated for mdi windows when they are
7454           maximized, first for the buttons the window itself has, then for
7455           the buttons that appear in the menu bar. Makes things a little
7456           easier). Updated UpdateWindowDecorations, SetWindowState and the
7457           mouse eventhandlers accordingly.
7458         * Form.cs: Add ChangingParent (), contains the
7459           logic of what should happen when the parent changes. In MdiParent
7460           don't set things that ChangingParent () is doing. When handling
7461           WM_CLOSE, we can close the form if there are any other modal forms
7462           and the current form is a descendent of the modal form.
7463         * InternalWindowManager.cs: A lot of refactoring,
7464           the title buttons are now extracted to a separate container class
7465           that takes care of all button code (clicks, tooltips, etc). Moved
7466           Iconic|Maximized|Normal Bounds properties to this class from
7467           MdiWindowManager, so that the window state logic can succeed for
7468           other than mdi wm's. Implemented general window state change logic.
7469           Moved CreateButtons to ThemeWin32Classic, since the theme might
7470           override which buttons are available when as well as the exact
7471           location.
7472         * FormWindowManager.cs: Added, contains logic for
7473           normal forms.
7474         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
7475           which buttons go where (and if they are at all visible). 
7476           Removed special handling of maximized windows, since they aren't special. 
7477           In DrawManagedWindowDecorations don't try to draw the text if it is
7478           empty.
7479         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
7480           use whatever the wm gives us.
7481
7482 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7483
7484         * ButtonBase.cs: Add 2.0 properties.
7485         * Button.cs: Override Draw for 2.0.
7486         * Control.cs: Add Entered and Selected properties.
7487         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
7488         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
7489         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
7490         buttons.
7491         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
7492
7493 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7494
7495         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
7496
7497 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7498
7499         * XplatUIWin32.cs: Register a new class with Windows each time we get
7500         a new ClassStyle.  [Fixes bugs #79432, #80817]
7501         * Controls.cs: Set the correct ClassStyle in CreateParams.
7502         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
7503
7504 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
7505
7506         * ListView.cs: Add fireEvent argument to ReorderColumn since the
7507         ColumnReordered event must not be signaled when modifying DisplayIndex
7508         of a ColumnHeader. Added internal ReorderColumns method which takes
7509         care of drawing, and updating the internal DisplayIndex of the
7510         ColumnHeader. Added AddColumn method which is invoked from
7511         ColumnHeaderCollection when adding or inserting columns, and which
7512         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
7513         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
7514         Recalculated dispay indices after removing a ColumnHeader.
7515         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
7516         match MS. Allows last display index to be returned after ListView
7517         is disposed. Update actual location of ColumnHeader when DisplayIndex
7518         is modified.
7519
7520 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
7521
7522         * LinkLabel.cs: Improve CalcTrimRectangle.
7523         
7524         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
7525
7526 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7527
7528         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
7529         get rectangle as a result value.
7530
7531 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7532
7533         * LinkLabel.cs: Theres some diferences between rectangle return from 
7534         MeasureCharacterRanges and the area used for DrawString to fix this 
7535         CalcMeasurementFactor method was created, it calcules the diferences
7536         to be use later to adjust rectangle in draw operations. Fixes #80473.
7537         
7538         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
7539         to adjust draw rectangle.
7540
7541 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7542
7543         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
7544         text and some other changes to reduce and optimize source code.
7545
7546 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7547
7548         * RadioButton.cs: Implement 2.0 event.
7549         * RelatedImageListAttribute.cs: Implement new class.
7550
7551 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7552
7553         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
7554
7555 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7556
7557         * CheckBox.cs: Implement 2.0 functionality.
7558
7559 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7560
7561         * ListView.cs: Refactor Add and AddRange methods of
7562         ListViewItemCollection, to not update the ListView
7563         everytime an item is added in AddRange. Also move the update
7564         code to a new CollectionChanged method, and call it
7565         from other methods that need it as well (this should also fix some
7566         bugs when Sorting is used).
7567
7568 2007-02-27  Jackson Harper  <jackson@ximian.com>
7569
7570         * TextControl.cs: Try to never let the caret stay in a non-text
7571         tag.
7572         * TextBoxBase.cs: Update the caret.
7573
7574 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
7575
7576         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
7577         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
7578         delete POINT structure, duplicate of one in XplatUIStructs.
7579         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
7580
7581 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
7582
7583         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
7584         edit box since otherwise the Label would immediately be set (even if
7585         the user did not modify the label). In OnKeyDown set Handled to true
7586         if Return or Escape was pressed. In ColumnHeaderCollection unlink
7587         columns that are to be removed. In ListViewItemCollection unlink items
7588         that are to be removed.
7589
7590 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
7591
7592         * TextRenderer.cs: If we set a GDI clip region, we need to clear
7593         it when we are done.  [Fixes bug #80949]
7594
7595 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7596
7597         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
7598
7599 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7600
7601         * ListView.cs: I forgot to commit the changes for ListView 
7602         in my previous patch.
7603
7604 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7605
7606         * Clipboard.cs: Partially implement an overload of SetDataObject.
7607         * Form.cs: Implement ShowWithoutActivation.
7608         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
7609
7610 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7611
7612         This is a first set of changes to make the Virtual mode works,
7613         by avoiding the retrieval of ListViewItem instances until
7614         draw time.
7615
7616         * ListView.cs: Store item position in the ListView instead of the
7617         ListViewItem, this way we don't request the Bounds property of
7618         ListViewItem inside the ListView calculations, as well as cache the item
7619         size in item_size field. Store indexes instead of ListViewItem
7620         instances in the matrix used by icon view. Add a ItemMatrixLocation
7621         struct to hold the row and col info of the matrix info.
7622
7623         * ListViewItem.cs: Don't store the location anymore, and only cache
7624         the rectangles for GetBounds. Use the ListView.GetItemLocation
7625         method to retrieve the actual location.
7626
7627 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7628
7629         * TextRenderer.cs: Add clipping support, thanks to George.
7630         [Fixes bug #80949]
7631
7632 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7633
7634         * ListViewItem.cs: Cancel label edit when item is removed from 
7635         ListView.
7636         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
7637         event before the edit textbox is displayed.  Added CancelEdit method
7638         which is used end to editing while ignoring the value set by the
7639         user. In EndEdit, set focus to ListView to avoid losing focus to
7640         other controls. In ListViewItemCollection.Clear, cancel editing of
7641         any of the items.  In Remove, cancel editing of item being removed.
7642         Avoid udplicate code by modifing RemoveAt to invoke Remove.
7643
7644 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7645
7646         * FileDialog.cs: Update FSEntry when move is successful. Fixes
7647         bug #80948.  
7648
7649 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7650
7651         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
7652         compatible with non X11 systems. Fixes #80901.
7653
7654 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7655
7656         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
7657         whether the item should be unselected and reselect. We do no want this
7658         when we're starting to edit the label. Do not fire the 
7659         SelectedIndexChanged event from ListView when its already been fired
7660         by modifying ListViewItem.Selected. Fixes bug #80943.
7661
7662 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7663
7664         * TextRenderer.cs: Previos commit logic was backwards.
7665
7666 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7667
7668         * TextRenderer.cs: Don't add padding on MeasureText if we were
7669         sent the NoPadding flag.
7670
7671 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7672
7673         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
7674         after DrawButton. To prevent image overlaps button borders SetClip and 
7675         ResetClip added before and after draw image. Fixes #79129.
7676
7677 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7678
7679         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
7680         window size, it fix problem when you run under win32 that theres
7681         Size diferent than ClientSize. Also fix controls size and positions
7682         to mimic Win32. Fixes #80837.
7683
7684 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
7685
7686         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
7687         menu area to fix some problems for non X11 systems. Fixes #80613.
7688
7689 2007-02-22  Jackson Harper  <jackson@ximian.com>
7690
7691         * TreeNode.cs: When a node is expanded, set its is_expanded flag
7692         even if it doesn't have any children.
7693
7694 2007-02-22  Jackson Harper  <jackson@ximian.com>
7695
7696         * TreeView.cs: Calculate the top node 'on the fly', this
7697         eliminates issues where you need to click on the tree before
7698         scrolling it to get the top node computed correctly.
7699         * TreeNodeCollection.cs: We don't need to mess with the top node
7700         anymore.
7701
7702 2007-02-22  Jackson Harper  <jackson@ximian.com>
7703
7704         * DataGridViewRow.cs: Fix typo so height can actually be set.
7705         Patch by Peter Grimm.
7706
7707 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7708
7709         * FileDialog.cs: Fixed support for renaming files and directories.
7710         * ListView.cs: Do not lose focus when edit is canceled. Process
7711         Escape as regular key (to prevent closing of dialogs).
7712
7713 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7714
7715         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
7716         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
7717
7718 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7719
7720         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
7721         did not modify label.
7722         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
7723         modified the text. Reset Label when user presses Escape in edit mode.
7724         Move focus to ListView after having cancelled or finished editing the
7725         label.
7726
7727 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
7728
7729         * ComboBox.cs: Removed unnecessary initializations. Marked items field
7730         private. Clear textbox when Text is set to null and SelectedIndex is
7731         already -1.
7732         * FileDialog.cs: Removed unnecessary initializations. Removed 
7733         workarounds for ComboBox bugs that are now fixed. Modified
7734         DefaultExt, InitialDirectory and Title property to change null to
7735         zero-length string in getters. Avoid directly accessing fields.
7736
7737 2007-02-20  Jackson Harper  <jackson@ximian.com>
7738
7739         * TextControl.cs: Remove RecalAlignments call, that was some
7740         debugging leftovers.
7741         - Don't use the line indent when we shouldn't.
7742         * RichTextBox.cs: Add support for paragraph left indents.
7743
7744 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7745
7746         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
7747         Seems like the class status pages doesn't catch params differences.
7748
7749 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7750
7751         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
7752
7753 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7754
7755         * ComboBox.cs: Setting Text should have no effect if item text of
7756         selected item exactly matches value. First lookup text using
7757         case-sensitive comparison, and fallback to case-insensitive comparison.
7758         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
7759         allow startIndex to be last index. Changed ArgumentOutOfRangeException
7760         paramname to match MS. Restart from first item if string is not found
7761         after startIndex. Fixed paramname of ArgumentNullException that is
7762         thrown for null value in ObjectCollection.Contains.
7763
7764 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7765
7766         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
7767
7768 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7769
7770         * ListControl.cs: In SelectedValue use value.Equals to compare for
7771         equality instead of ==, otherwise it will fail for strings.
7772         Fixes #80794.
7773
7774 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7775         
7776         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
7777         since the caret won't show up unless ShowSelection is true. 
7778         Fixes #80795.
7779
7780 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7781
7782         * Application.cs: When disabling all forms but the main form, do not
7783           disable any descendants of the main form (such as mdi children or
7784           other parented forms). Fixes #80822 on Windows.
7785         * Form.cs: If we have a parent, set the WS_CHILD style.
7786         * Control.cs: Update the window styles if the control whose parent has
7787           changed is a form (the WS_CHILD style has to be switched).
7788
7789 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7790
7791         * XplatUIStructs.cs: MsgUIState structure added.
7792
7793 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7794
7795         * FileDialog.cs: Removed need for separate fileName field. On 2.0
7796         profile, do not check filename(s) for illegal character if filename(s)
7797         were set non-interactively but always check on 1.0 profile. Fixed NRE
7798          in DefaultExt and only strip off first leading dot. Improve exception
7799         message when invalid Filter is set. Do not ignore InitialDirectory if
7800         it does no exist. Store specified Title, and if empty use default
7801         title (depending on type of dialog). Added an internal DialogTitle 
7802         property for retrieving dialog title. Fixed logic of displayed dir to
7803         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
7804         string as its buggy.
7805         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
7806         FileName is a zero-length string (it can never be null). Override 
7807         DialogTitle property to set default title of dialog box.
7808         * SaveFileDialog.cs: Override DialogTitle property to set default
7809         title of dialog box.
7810
7811 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7812
7813         * FileDialog.cs: Modify default text of filename and filetype labels
7814         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
7815         after we've updated the SelectedIndex. Fixes part of bug #80887.
7816         * SaveFileDialog.cs: Set text of filetype label.
7817
7818 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7819
7820         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
7821         label field. Needed by latest Jackson's fixes for ListView.
7822
7823 2007-02-16  Andreia Gaita  <avidigal@novell.com>
7824
7825         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
7826         print preview images.
7827
7828 2007-02-16  Jackson Harper  <jackson@ximian.com>
7829
7830         * ListView.cs: Make AfterLabelEdit work correctly.
7831         * FileDialog.cs: After changing the name of the folder, we have to
7832         make sure that it is created, or that we pop up an error because
7833         it already exists.
7834
7835 2007-02-16  Jackson Harper  <jackson@ximian.com>
7836
7837         * X11Dnd.cs: Implement aliases on mime handlers, so things like
7838         System.String are mapped to text.
7839         - Handle dataobjects, getting all the possible formats out of them
7840         - We dont need the drag event args before we give feedback. This
7841         allows feedback cursors to be immediate before selections have
7842         been converted.
7843
7844 2007-02-16  Jackson Harper  <jackson@ximian.com>
7845
7846         * TextBoxBase.cs: Modified the method for inserting images to
7847         taking a line and position instead of tag and position.
7848         * RichTextBox.cs: Handle PngBlip data by inserting the png image
7849         into the RTF file.
7850         * TextControl.cs: Allow images to be inserted as the first tag of
7851         a line.
7852         - Fix some off by one issues when we assume the first tag is a
7853         text tag, not an image tag.
7854
7855 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7856
7857         * ListView.cs: Set focus to ListView when ItemControl gets a
7858         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
7859         Fixes part of #80467.
7860
7861 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7862
7863         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
7864           validate Text input (if null or empty string reset Value to default
7865           value). Fixes #80830.
7866
7867 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7868
7869         * ListView.cs: Set owner as null for columns and items when
7870         Dispose is invoked. Fixes #80607.
7871
7872 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
7873
7874         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
7875         showing DropDowns, don't show a Grip when doing Flow layout.
7876         [This fixes the toolbox in PDN 2.72.]
7877         * ToolStripItem.cs: Add Anchor property and some internal properties to
7878         reduces needed changes to FlowLayout.
7879         * ToolStripOverflow.cs: Remove unused variable.
7880         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
7881         use it in the layout calculations.
7882
7883 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7884
7885         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
7886         reported in #79640.
7887         
7888         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
7889         size calculation.
7890
7891 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7892
7893         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
7894         MeasureString format, it can make button very large in some cases, it is
7895         strange but is what win32 do.
7896
7897 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7898
7899         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
7900         size calculation.
7901
7902         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
7903         rendering, the value is based on MenuAccessKeysUnderlined.
7904
7905 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7906
7907         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
7908         for most themes.
7909         
7910         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
7911         
7912         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
7913         and use MenuAccessKeysUnderlined instead.
7914
7915 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7916
7917         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
7918         A selected control would not get a Focus call if:
7919                 - the default active control of the container is the same as
7920                   the one that was selected
7921                 - we are switching from one container to another
7922         Under these conditions, the container being selected already has
7923         an active_control, which is the same as the one being activated, 
7924         so set_ActiveControl would always return and not send the Focus
7925         call. Fix to check if the currently active control of the container
7926         is actually focused.
7927
7928 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
7929
7930         * StatusStrip.cs: Implement the spring layout.
7931         * ToolStripControlHost.cs: Make sure the hosted control's visibility
7932         always matches the host.
7933         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
7934         and TextAfterImage.
7935
7936 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7937
7938         * Control.cs: Code reorganization only.
7939           - Reorganize the WndProc cases so that each case has it's own handling method, 
7940           to help with the no-line-numbering stack traces.
7941           - Formatting changes (it's vstudio's fault, really :p)
7942
7943 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7944
7945         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
7946           Thread.CurrentUICulture to match DateTimePicker's (and MS)
7947           behaviour.
7948
7949 2007-02-12  Jackson Harper  <jackson@ximian.com>
7950
7951         * RichTextBox.cs:
7952         * TextBox.cs: By default we have a non multiline document
7953         - use the multiline property instead of the internal variable
7954         * TextBoxBase.cs: Treat multiline and non multiline the same in
7955         most places.
7956         - Use the documents multiline flag instead of tracking it ourself
7957         * TextControl.cs: Attempt at getting multiline to match MS
7958         behavior.  Lines now track an offset, which is either their X or Y
7959         offset depending on whether or not we are in multiline mode.
7960         - Update all the methods to understand that lines have an X value.
7961         - Fix crash in Undo::Duplicate when empty lines are deleted.
7962
7963 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7964
7965         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
7966         code moved to properties PreferredHeight and PreferredWidth. It solve the
7967         all problems when preferred sizes must be recalculated. Fixes #80801.
7968
7969 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7970
7971         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
7972         font height when compatible_text_rendering is false. Partially fix #80801.
7973
7974 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7975
7976         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
7977
7978 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7979
7980         * Form.cs: Improved exception messages in ShowDialog.
7981
7982 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7983
7984         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
7985         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
7986         if not set. Fixes bug #80764. Avoid accessing current_settings field
7987         directly.
7988
7989 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
7990
7991         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
7992         false.
7993
7994         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
7995         public in 2.0 and for easy maintenance and dont break compatibility it is 
7996         internal in 1.1.
7997         
7998 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7999
8000         * ToolStripItem.cs: Implement using images from ImageList.
8001
8002 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8003
8004         * DateTimePicker.cs: Change default date-formatting culture from
8005           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
8006           seems to be the way MS does it.
8007
8008 2007-02-08  Andreia Gaita  <avidigal@novell.com>
8009
8010         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
8011         (the 6 was cut off on the right side)
8012
8013 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
8014
8015         * Form.cs: Tell MenuStrips to close when the form is clicked.
8016         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
8017         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
8018         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
8019         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
8020         support for Overflow, where items that do not fit are automatically
8021         reparented to a drop down menu.
8022         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
8023         Also: fixes bug #80747.
8024
8025 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8026
8027         * ComboBox.cs: Remove warning (unused code).
8028         * ScrollableControl.cs: Remove warning for 1.1 profile.
8029
8030 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8031
8032         * Form.cs: Remove a warning.
8033
8034 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8035
8036         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
8037           'g' specifier, not documented anywhere, but seems to always show up
8038           as a single space (might have something to do with the DateTime 'g'
8039           specifier, which is the era format, but since DateTimePicker can't
8040           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
8041           won't crash if the format has an unmatched quote. Now shows
8042           single-character formats correctly. Fixes #80744.
8043
8044 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
8045
8046         * StatusStrip.cs: Stretch property needs to call base.Stretch,
8047         not this.Stretch to fix stack overflow. [Fixes bug #80760]
8048
8049 2007-02-07  Chris Toshok  <toshok@ximian.com>
8050
8051         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
8052         background color.  it overwrites the background image we've
8053         already painted.  Fixes #80599.
8054
8055 2007-02-07  Chris Toshok  <toshok@ximian.com>
8056
8057         * DataGrid.cs: return immediately from Edit() when there are no
8058         columns.  Fixes #80662.
8059
8060 2007-02-07  Chris Toshok  <toshok@ximian.com>
8061
8062         * MessageBox.cs: fix #80625.  don't always show the Help button in
8063         2.0.  use the displayHelpButton parameter to determine if we
8064         should show it. Also, make the internal show_help field private.
8065
8066 2007-02-07  Chris Toshok  <toshok@ximian.com>
8067
8068         * Control.cs (SetVisibleCore): check in the proposed patch for
8069         80604, and set is_visible before calling CreateControl.
8070
8071 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
8072
8073         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
8074         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
8075         on it.
8076
8077 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
8078
8079         * MenuAPI.cs: hotkey_active internal field added, it is required because
8080         we need to know when hotkeys must be draw, before this change a keystate
8081         Navigating was used but we can have menu in navigating state without
8082         hotkeys. Fixes #80694.
8083         
8084         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
8085
8086 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8087
8088         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
8089           corresponding events and methods to be internal for 1.1 profile and
8090           public for 2.0 profile (required by SizeGrip).
8091         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
8092           implicit control list). Don't set the size nor the location of the
8093           SizeGrip anymore as it's not needed.
8094         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
8095           draw directly on the captured control (fixes #80656). Removed
8096           ShowGrip (it wasn't used anywhere), redraw (always true), added
8097           GetDefaultSize and GetDefaultRectangle to calculate defaults.
8098         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
8099           be called from SizeGrip.
8100
8101 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8102
8103         * Timer.cs: Throw ArgumentException if Interval <= 0.
8104
8105 2007-02-05  Jackson Harper  <jackson@ximian.com>
8106
8107         * TreeView.cs: We need to check scrollbar visibility when window
8108         visibility is updated, because non visible trees don't ever add
8109         scrollbars.
8110         * Cursor.cs: We want the override cursor to be reset to NULL when
8111         we set current cursor to the default cursor.
8112
8113 2007-02-05  Jackson Harper  <jackson@ximian.com>
8114
8115         * TextControl.cs: Don't have crlfs when we are non multiline.
8116         - Consolidate the line position.
8117
8118 2007-02-05  Jackson Harper  <jackson@ximian.com>
8119
8120         * X11Keyboard.cs: BACK+CTRL gets a special char code.
8121
8122 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8123
8124         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
8125           handling LeaveNotify->NotifyUngrab in order to send
8126           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
8127           after calling XUngrabPointer, so we call WindowUngrabbed directly
8128           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
8129         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
8130           MouseCaptureChanged correctly. Also create handles if changing
8131           Capture (matches MS behaviour).
8132
8133 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8134
8135         * SizeGrip.cs: Make the last change 2.0 only.
8136
8137 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8138
8139         * SizeGrip.cs: If resizing and the capture is lost, revert any size
8140           changes to initial size (fixes #80597).
8141
8142 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8143
8144         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
8145
8146 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8147
8148         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
8149           background) and only allow dragging if enabled. This way the
8150           sizegrip can be used to fill the open square that otherwise would
8151           have been shown in the bottom right corner of ScrollableControl
8152           when ScrollableControl is not suppose to support sizing.
8153         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
8154           sizegrip is shown and enabled, and hook up with necessary events.
8155
8156 2007-02-01  Chris Toshok  <toshok@ximian.com>
8157
8158         * DataGridTextBoxColumn.cs: clean up the
8159         GetFormattedString/GetColumnValueAtRow combination of functions.
8160         Also fix UpdateUI, and the initial state of
8161         IsInEditOrNavigateMode.
8162
8163         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
8164         aren't supposed to scroll the textbox here, we're supposed to
8165         scroll the datagrid.
8166
8167 2007-02-01  Chris Toshok  <toshok@ximian.com>
8168
8169         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
8170         setting the position.
8171
8172 2007-02-01  Chris Toshok  <toshok@ximian.com>
8173
8174         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
8175         here, since the most recent focus fixes keep us from generating
8176         the Leave event when our textbox gets focus.
8177         (Edit): we should be passing null for the column style's
8178         instantText parameter.
8179         
8180 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
8181
8182         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
8183         raised.  Fixes menu text/icons not showing up in PDN.
8184
8185 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8186
8187         * Control.cs: Remove code in constructor that makes every
8188         control with WS_CHILD set have initial location -1, -1.
8189
8190 2007-01-31  Jackson Harper  <jackson@ximian.com>
8191
8192         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
8193         XplatUIX11.
8194         * XplatUIX11.cs: Give teh keyboard to teh dnd.
8195
8196 2007-01-31  Jackson Harper  <jackson@ximian.com>
8197
8198         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
8199         - Remove some debug code.
8200
8201 2007-01-31  Jackson Harper  <jackson@ximian.com>
8202
8203         * XplatUIX11.cs: If you set the override cursor during a grab, it
8204         should actually override the grab cursor.  This comes into play
8205         when you are setting custom cursors in a DND feedback method.
8206
8207 2007-01-31  Jackson Harper  <jackson@ximian.com>
8208
8209         * X11Dnd.cs: Add support for handling the QueryContinue and
8210         GiveFeedback events.
8211         - Cancel drag and drop actions when the escape key is clicked.
8212         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
8213         can handle the ESCAPE key.
8214         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
8215         done when dnd events are continued after the button is released.
8216         - Add a new helper method so that dnd can translate key events.
8217
8218 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
8219
8220         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
8221         make it more obvious what is happening.
8222
8223 2007-01-30  Jackson Harper  <jackson@ximian.com>
8224
8225         * XplatUIX11.cs: Don't break when handling button release in drag
8226         and drop operations. We need that BUTTONUP message to get through
8227         so capture is released.
8228         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
8229         this is handled automatically when the mouse is down.
8230
8231 2007-01-30  Jackson Harper  <jackson@ximian.com>
8232
8233         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
8234         is closed, so we need to make sure that we aren't changing the
8235         dialog result when the OK (Open or Save) button has been clicked
8236         and we are closing the window ourselves.  Note we don't need to
8237         worry about the cache being written in this case, because it was
8238         already done in the previous FilOk call.
8239
8240 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8241         
8242         * DateTimePicker.cs: Remove a warning.
8243         * ComboBox.cs: Remove a couple of warnings.
8244
8245 2007-01-29  Chris Toshok  <toshok@ximian.com>
8246
8247         * XplatUIX11.cs: don't crash, and remove the icon if the user has
8248         set one, if SetIcon is passed a null icon.
8249
8250 2007-01-29  Andreia Gaita  <avidigal@novell.com>
8251
8252         * TextBox.cs: Redraw when the password characters changes
8253         * TextControl.cs: Check if textbox has a password char and draw 
8254         a line of password chars instead of the text in the line. LineTag gets 
8255         an extra Draw() method which allows document.Draw to override the text 
8256         that will be drawn. Removes 1024 char limitation on length of passworded 
8257         lines.
8258
8259 2007-01-29  Jackson Harper  <jackson@ximian.com>
8260
8261         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
8262         single chars is not.
8263
8264 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
8265
8266         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
8267         one pixel.  Fix a StackOverflowException caused by an overload wrongly
8268         calling itself.
8269
8270 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
8271
8272         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
8273         also remove ProcessArrowKey and put the code inside ProcessKeys.
8274
8275 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
8276
8277         * PaddingConverter.cs: Added.
8278
8279 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8280         
8281         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
8282         ShowPanels is false (fixes #80600). Only draw up to 127 characters
8283         of text (fixes #80601). For panels clip the text to draw to the
8284         panel (fixes #80603).
8285
8286 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8287
8288         * ComboBox.cs: Fixed implementation of ResetText.
8289
8290 2007-01-25  Jackson Harper  <jackson@ximian.com>
8291
8292         * TextControl.cs: For the last char of a line we need to use the
8293         line size, not that chars width, since it won't actually be
8294         computed since the right side of a char is based on the start of
8295         the left side of the next char, and the next char does not exist.
8296
8297 2007-01-25  Chris Toshok  <toshok@ximian.com>
8298
8299         * Splitter.cs: fix the new unit tests, and reindent some switch
8300         statements.
8301
8302 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8303
8304         * ComboBox.cs: Implemented 2.0 methods and events.
8305         * TextBoxBase.cs: Added OnTextUpdate, so that
8306         ComboBox.ComboTextBox can inform ComboBox of it.
8307
8308 2007-01-25  Jackson Harper  <jackson@ximian.com>
8309
8310         * TextControl.cs: Respect ShowSelection when deciding whether or
8311         not to display the caret, this allows comboboxes to have carets
8312         when the combotextbox does not have focus.
8313
8314 2007-01-25  Jackson Harper  <jackson@ximian.com>
8315
8316         * TextControl.cs: Add a Suspend/Resume for updating, basically the
8317         same as the Suspend/Resume for recalc, except this will do actual
8318         Invalidates.
8319         - New Undo manager, works much like the MS version.
8320         - Implemented Redo
8321         * TextBoxBase.cs: The Cut operation is undoable.
8322
8323 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8324         
8325         * TextBoxBase.cs: Don't antialias text. Makes it look way better
8326         on Windows (no difference on Linux).    
8327
8328 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8329
8330         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
8331         we don't want to activate any windows. Fixes #79433.
8332
8333 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
8334
8335         - ButtonBase.cs: Fix capitalization of parameter: disposing.
8336         [Fixes bug #80609]
8337
8338 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
8339
8340         * FileDialog.cs:
8341         - Move to using System.ComponentModel.EventHandlerList
8342         - Replace Refresh with Invalidate
8343         - Clear the mime filecache on closing
8344         - Some other memory reducing work. After beeing closed FD now uses
8345           only about 300 KB for the fdo mime stuff plus the memory of the
8346           cached icons.
8347         * Mime.cs: Changed coding style and removed unnecessary commented
8348         code. Some more memory memory reducing work.
8349
8350 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8351
8352         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
8353         a few other missing 2.0 properties.
8354         * Theme.cs: Added DrawFlatStyleComboBox.
8355         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
8356
8357 2007-01-24  Chris Toshok  <toshok@ximian.com>
8358
8359         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
8360         wake_waiting flag, not just when there's data to be read.  if we
8361         don't, then future wakeup's won't reach us and we'll be doomed to
8362         wait for the entire 1 second timeout forever (unless there are X
8363         events to be had).
8364
8365 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
8366
8367         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
8368         until you pass Items.Count, not Items.Count - 1 like 1.1.
8369
8370 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
8371
8372         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
8373
8374 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
8375
8376         * ToolStripContainer.cs: The recent Dock fix exposed that I was
8377         adding the panels in the wrong order.
8378
8379 2007-01-24  Jackson Harper  <jackson@ximian.com>
8380
8381         * TextBoxBase.cs: When we move the caret we also need to move the
8382         selection, this fixes some random crashing after doing select
8383         text, unselect, delete a char, paste.
8384
8385 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8386
8387         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
8388
8389 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8390
8391         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
8392         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
8393         * ToolBar.cs: Force redraw in BackgroundImageChanged.
8394
8395 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8396
8397         * ToolBar.cs:
8398         - Implement support for vertical toolbars. Fixes #80539;
8399         - Call LayoutToolBar when resize, it fix some other problems in layout.
8400         - Rename requested_height to requested_size, as we can have width on it
8401         when toolbar is vertical.
8402         - Create a private property "Vertical" that uses Dock to verify when 
8403         toolbar is vertical or not.
8404         - Set ControlStyles when change Dock property.
8405         - Refactory in LayoutToolBar to have better variables names and to support
8406         vertical toolbars.
8407         - Fixes default value for ButtonSize when button count is equal zero, size
8408         must be (39, 36) test case writed.
8409
8410 2007-01-23  Chris Toshok  <toshok@ximian.com>
8411
8412         * Control.cs: fix the checks so that they work correctly for mdi
8413         parents/children.
8414
8415 2007-01-23  Chris Toshok  <toshok@ximian.com>
8416
8417         * Control.cs: ControlCollection seems to have super-secret
8418         abstraction breaking knowledge of Mdi containers.  allow MdiClient
8419         to add toplevel controls.
8420
8421 2007-01-23  Chris Toshok  <toshok@ximian.com>
8422
8423         * Control.cs: throw an ArgumentException if a toplevel control is
8424         added to our control collection from ControlCollection.Add, as
8425         well as from ControlCollection.IList.Add.  This fixes the
8426         ControlSetTopLevelTest.TestTopLevelAdd unit test.
8427
8428         Also, in ControlCollection.IList.Add, don't through an
8429         ArgumentNullException, throw an ArgumentException, when value ==
8430         null.  This matches MS.
8431
8432 2007-01-23  Chris Toshok  <toshok@ximian.com>
8433
8434         * BindingSource.cs: initial, incomplete, implementation of
8435         BindingSource.
8436
8437 2007-01-23  Jackson Harper  <jackson@ximian.com>
8438
8439         * TextControl.cs:
8440         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
8441         that I can fix a broken unit test (TextBoxTest::ClearUndo)
8442         
8443 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8444
8445         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
8446
8447 2007-01-23  Andreia Gaita  <avidigal@novell.com>
8448
8449         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
8450         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
8451         IndexOfKey() for 2.0
8452
8453 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8454
8455         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
8456         to prevent it from changing z-order.
8457         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
8458         leave UI updates in MdiWindowManager.
8459         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
8460         1 sized (NC handling goes weird on Linux otherwise).
8461         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
8462         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
8463         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
8464         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
8465         and SetWindowState(s) to allow for changing the size of an activated child
8466         before activating it (reduces a lot of flicker).
8467
8468 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8469
8470         * Form.cs: Changing FormBorderStyle has different semantics based
8471         on whether the Form is visible or not.  If not visible, don't change
8472         the Size.  But InvalidateNC needs to be called to force the window
8473         to pick up the changes and redraw itself.  [Fixes bug #80574]
8474
8475 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8476
8477         [Moma work]
8478         * ContainerControl.cs: ProcessCmdKey.
8479         * ErrorProvider.cs: new constructor.
8480         * Form.cs: fix AutoValidateEvent compiler warning.
8481         * Label.cs: fix OnAutoSizeChanged compiler warning.
8482         * MenuStrip.cs: fix CanOverflow compiler warning.
8483         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
8484         * TextBox.cs: Dispose.
8485         * ToolStrip.cs: CanOverflow, re-enable double buffering.
8486         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
8487         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
8488         * ToolStripItem.cs: Overflow, RightToLeft properties.
8489
8490 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8491
8492         * Form.cs: Move the layout of the main form to MdiWindowManager.
8493         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
8494         do a layout of the main window to update MdiClient's client area to
8495         the right area. Fixes #80533. Remove the calculation of nc size, 
8496         it was just wrong and the correct one is the same as for 
8497         InternalWindowManager. 
8498
8499 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
8500
8501         * Control.cs: Setting Anchor or Dock needs to reset the other
8502         to its default.  [Fixes bug #80556]
8503
8504 2007-01-20  Chris Toshok  <toshok@ximian.com>
8505
8506         * CheckedListBox.cs: class status changes.
8507
8508         * ScrollableControl.cs: same.
8509
8510         * RichTextBox.cs: same.
8511
8512         * ContainerControl.cs: same.
8513
8514         * ListView.cs: same.
8515
8516         * NotifyIcon.cs: same.
8517
8518         * MenuStrip.cs: same.
8519
8520         * RadioButton.cs: same.
8521
8522         * CheckBox.cs: same.
8523
8524         * PrintPreviewDialog.cs: same.
8525
8526         * Form.cs: same.
8527
8528 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
8529
8530         * TreeNode.cs: Apply Alan's patch for Name property.
8531
8532 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8533         
8534         * Form.cs: Implemented SizeGripStyle.
8535         * SizeGrip.cs: Check for minimum and maximum size for the
8536         control being resized and only resize if size has actually
8537         changed.
8538
8539 2007-01-19  Chris Toshok  <toshok@ximian.com>
8540
8541         * DataGridColumnStyle.cs: stop setting _readonly in the
8542         PropertyDescriptor setter.  fixes a unit test failure.
8543
8544         also, rename ParentReadOnly to TableStyleReadOnly, and have it
8545         just consult our table style (if we have one).  We don't need to
8546         consult the datagrid readonly attribute because that's passed in
8547         as the _ro arg to Edit.  this simplifies things a little.
8548         
8549         * DataGrid.cs: use CurrentColumn instead of
8550         current_cell.ColumnNumber just to simplify some of the code.
8551
8552         switch the order of some things in the CurrentCell setter to keep
8553         the previous cell from getting a textbox again -
8554         EnsureCellVisibility causes scrolling to happen, which calls Edit.
8555         So we need to set the new cell before calling it.
8556         
8557         call Edit in OnEnter, as does Microsoft.
8558         
8559         also, make sure the current table style isn't the one we create
8560         initially when checking to see if it's different than the one
8561         we're setting it to in BindColumns (this fixes #80421).
8562
8563         * GridTableStylesCollection.cs: table styles can have "" for a
8564         mapping name.  part of the fix for #80421.
8565
8566         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
8567         Edit significantly.
8568
8569 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8570
8571         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
8572         and less GDI object leaky-er.
8573
8574 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8575
8576         * LinkLabel.cs: Add opaque control style
8577
8578 2007-01-18  Jackson Harper  <jackson@ximian.com>
8579
8580         * TextControl.cs: Calculate width properly.
8581         - Don't store the tag's X offset, this can be figured out very
8582         easily.
8583         - When getting the caret tag make sure to get the last empty tag.
8584
8585 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8586
8587         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
8588         [Fixes bug #79959]
8589
8590         * Control.cs: Color.Empty shouldn't count for previous transparent
8591         redraw changes.
8592
8593 2007-01-18  Jackson Harper  <jackson@ximian.com>
8594
8595         * TextBox.cs:
8596         * RichTextBox.cs:
8597         * TextControl.cs: Starting to merge in some pieces of my older
8598         undo work.  Basically just some slight cleanup of the undo API.
8599
8600 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8601
8602         * TrackBar.cs: Fix signature of RightToLeftLayout.
8603         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
8604         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
8605         * Application.cs: Implemented UseWaitCursor.
8606
8607 2007-01-18  Jackson Harper  <jackson@ximian.com>
8608
8609         * TextControl.cs: We can't skip tags if any part of the tag is
8610         visible.
8611
8612 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8613
8614         * ContainerControl.cs: Override OnLayout.
8615
8616 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8617
8618         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
8619
8620         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
8621         everything else.
8622
8623 2007-01-18  Chris Toshok  <toshok@ximian.com>
8624
8625         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
8626         (leftover from the container_selected days, I'd wager).  fixes bug
8627         #80546.
8628
8629 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8630
8631         * Control.cs: Apply patch from George to fix the new testcase on
8632         bug #80451.  We can't just check for Color.Transparent, we need 
8633         to check if the back color's alpha channel is < 255.
8634
8635 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8636
8637         * Form.cs: Move setting show_icon = true to before the constructor
8638         so that the base constructor has that information when it calculates
8639         the form's size.  Was causing forms to be (6, 6) bigger than they
8640         were supposed to be.  Thanks for catching this Rolf!
8641
8642 2007-01-18  Jackson Harper  <jackson@ximian.com>
8643
8644         * TextControl.cs: When replacing a selection we need to invalidate
8645         from the initial selection start, because selection start is moved
8646         to the end of the replacement.
8647
8648 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8649
8650         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
8651
8652 2007-01-18  Chris Toshok  <toshok@ximian.com>
8653
8654         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
8655         I just added.
8656
8657 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
8658
8659         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
8660         layout methods and properties from ToolBarButton must be available
8661         into ToolBarButtonInfo.
8662
8663 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8664
8665         * Control.cs: If the control has a transparent background, we
8666         need to refresh it when it moves and when it's parent's background
8667         image changes.  [Fixes bug #80451]
8668
8669 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8670
8671         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
8672
8673 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8674
8675         * XplatUIWin32.cs: Implement proper double buffering for Windows.
8676         [Fixes bug #80447, and probably speeds up things as well]
8677
8678 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8679
8680         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
8681         * XplatUIWin32.cs: We need to recalculate NC size after changing 
8682         window style to toolwindow (otherwise the client rectangle will be
8683         3 pixels to small for some reason).
8684         * MdiWindowManager.cs: Revert NC size calculations to match how
8685         they are calculated only based on window styles (to match
8686         Win32AdjustWindowRectEx, since otherwise when setting size or 
8687         location, Control will call Win32AdjustWindowRectEx to update client 
8688         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
8689         calculate a different value of client size causing another paint 
8690         (and flickering))
8691         * InternalWindowManager.cs: When moving or resizing a window only
8692         update size or location if they actually changed.
8693         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
8694         (seems to match Windows behaviour better). Cleaned up 
8695         ManagedWindowDecorations to draw what's needed and nothing else
8696         (was drawing borders and lines where they shouldn't be)
8697         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
8698         (style = 0xFFFF) and takes into account caption height when 
8699         calculating window rectangle.   
8700
8701 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8702
8703         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
8704         can be added to toolbar multiple times, we need to maintain a list of 
8705         button information for each positions.
8706
8707 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8708
8709         * ToolBar.cs: Some small stetic changes.
8710
8711 2007-01-16  Jackson Harper  <jackson@ximian.com>
8712
8713         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
8714         that allow us to have nested recalc = false blocks.
8715         - Add paste support for images in the RichTextBox
8716         * RichTextBox.cs: flush the text after the color is changed, so
8717         the change takes effect.
8718         - Use SuspendRecalc
8719         - Some extra debugging info
8720         * TextControl.cs: Tags no longer track their length, it is just
8721         computed from the next tags length, this makes things a little
8722         simpler and reduces places that we have to track length changes.
8723         - Refactored the linetag class a little so we could make it
8724         a base class for different kinds of tags
8725         - Created a image tag, a tag that can have a single image inserted
8726         into it
8727         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
8728         that we can call suspend multiple times.
8729         - Add some debugging methods
8730
8731 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8732
8733         * MdiClient.cs: Add ActivatePreviousChild for 
8734         mdi child window navigation.
8735         * Form.cs: Use MdiClient.ActivateNextChild/
8736         ActivatePreviousChild instead of Form.SelectNextControl
8737         to select the next/previous child since 
8738         SelectNextControl doesn't do it in the same order
8739         as mdi children should do it.
8740
8741 2007-01-16  Chris Toshok  <toshok@ximian.com>
8742
8743         * Control.cs: remove container_selected field.
8744
8745 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8746
8747         * MdiClient.cs: Update main form's ActiveChild when
8748         updating keyboard focus for the mdi child.
8749
8750 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
8751
8752         * Control.cs: PreferredSize fix.
8753
8754         * Form.cs: Add several 2.0 events, properties, and methods.
8755
8756 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
8757
8758         * Form.cs: Provide meaningful message when MdiParent is assigned a
8759         Form that is not an MdiContainer.
8760
8761 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8762
8763         * MdiClient.cs: Update main form's ActiveChild when
8764         activating a mdi child.
8765
8766 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8767
8768         * MdiWindowManager.cs: Fix NRE when merging menus and main form
8769         doesn't have a menu.
8770
8771         * Form.cs: Request NCRecalc after creating a mdi child window.
8772         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
8773         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
8774         
8775         * MdiClient.cs: Add new method SendFocusToActiveChild that either
8776         sends keyboard focus to the active child, or to the MdiClient
8777         if there are no child forms.
8778         
8779 2007-01-15  Chris Toshok  <toshok@ximian.com>
8780
8781         * ListView.cs: drop the *Internal overrides, just do our work in
8782         ItemControl's WndProc instead.
8783
8784         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
8785         of the various controls, and forward the events properly (in the
8786         same manner as MS) from the textbox to the UpDown.  Also the
8787         ActiveControl of the UpDownBase gets set properly now.  Finally,
8788         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
8789
8790         * NumericUpDown.cs: set Text in the ctor.
8791
8792         * DomainUpDown.cs: call UpdateEditText in the ctor.
8793         
8794         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
8795         so even a Selectable = false textbox can be focused if you click
8796         in it.  Go figure.
8797
8798         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
8799         just add their handling in their respective WndProc's.  Also add
8800         an explicit FocusInternal method that doesn't consult CanFocus
8801         before calling Select(this).
8802
8803         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
8804         do our work in WndProc instead.
8805
8806         * TabControl.cs: same.
8807
8808         * ComboBox.cs: same.
8809
8810 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8811
8812         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
8813         Fixes #80006.
8814
8815 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8816
8817         * ListViewItem.cs:
8818         * ThemeWin32Classic.cs: Don't draw the item text outside
8819         item bounds in Details view, as well as use trimming.
8820         Fixes bug #80376.
8821
8822 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8823
8824         * Form.cs: Implement Form.ShowIcon.
8825         
8826         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
8827         null, which when combined with the DlgModalFrame window style removes
8828         the icon from the title bar.
8829
8830 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8831
8832         * Control.cs: Call OnMouseClick after OnClick. (2.0)
8833
8834 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8835
8836         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
8837         menu when mdi child windows theres a menu, uses insert to get icon
8838         at first position. Partially fix #80006.
8839
8840 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8841
8842         * Clipboard.cs: Implement 2.0 methods.
8843
8844 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8845
8846         * Menu.cs: Implement Insert method of MenuItemCollection class
8847         to fix MenuMerge.
8848
8849 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8850
8851         * ListView.cs: Implement 2.0 FindItemWithText method.
8852
8853 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8854
8855         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
8856         to calculate menu bar size. Fixes #80290.
8857
8858 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8859
8860         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
8861
8862 2007-01-11  Chris Toshok  <toshok@ximian.com>
8863
8864         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
8865         initial form.
8866
8867 2007-01-11  Chris Toshok  <toshok@ximian.com>
8868
8869         * LinkLabel.cs: make sure to call base.Select in our Select method
8870         if it turns out we're going to be selected (i.e. if we have a link
8871         that is going to receive focus).  That way our container's
8872         ActiveControl is updated properly.
8873
8874 2007-01-11  Chris Toshok  <toshok@ximian.com>
8875
8876         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
8877         they have 1 or more links.  this fixes the crash gert reported.
8878
8879 2007-01-11  Andreia Gaita  <avidigal@novell.com>
8880
8881         * ContainerControl.cs: Remove ContainerSelected flag, not needed
8882         anymore.
8883
8884         * Control.cs (Controls.Add): Check if control to be added to the collection
8885         is a top level control, and throw an ArgumentException if it is.
8886         Remove ContainerSelectedFlag, not needed anymore.
8887
8888         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
8889         top most control doesn't activate the form. This fixes a problem in the
8890         MessageBox, where the default button wouldn't get focus because the form
8891         was activated before being Loaded - when the Owner is set, SetTopMost is
8892         called, and it would activate it.
8893
8894 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
8895
8896         * Button.cs: When clicked and setting the parent form's DialogResult,
8897         use FindForm instead of Parent, since parent could be a container
8898         control and not the Form.  Fixes bug #80495.
8899
8900 2007-01-10  Chris Toshok  <toshok@ximian.com>
8901
8902         * Form.cs: move the call to SendControlFocus into the same
8903         is_loaded check.
8904
8905 2007-01-10  Chris Toshok  <toshok@ximian.com>
8906
8907         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
8908         It breaks in the face of the new ActiveControl stuff, and should
8909         be unnecessary.
8910
8911         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
8912         activecontrol's focus if it's not already set, after we set
8913         ActiveControl, but before we call OnActivated.  Re-fixes #79667
8914         after the previous focus/active control fixes regressed it.
8915
8916         * Control.cs: reindent some code.
8917         
8918 2007-01-10  Chris Toshok  <toshok@ximian.com>
8919
8920         * Splitter.cs: clearing some outstanding changes from my tree.
8921         Replace all accesses (not writes) to the internal dock_style field
8922         with the Dock property.
8923
8924 2007-01-10  Chris Toshok  <toshok@ximian.com>
8925
8926         * Control.cs: make FireEnter, FireLeave, FireValidating, and
8927         FireValidated virtual.
8928
8929         * Form.cs: override and don't chain up calls to FireEnter and
8930         FireLeave.
8931
8932 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8933
8934         * ListView.cs: Add more text padding space when using
8935         auto resize for columns (the previous value didn't work fine).
8936
8937         * ThemeWin32Classic.cs: Update text position inside columns,
8938         to match the appeareance of .Net.
8939
8940         * ColumnHeader.cs: When using auto resize, only the Width should
8941         depend on the sub items, not the Height. Also, set width after
8942         auto resizing (the value of Width should never remain as -1 or -2).
8943
8944 2007-01-10  Chris Toshok  <toshok@ximian.com>
8945
8946         * Application.cs: fix compilation errors when debug is enabled.
8947
8948 2007-01-10  Chris Toshok  <toshok@ximian.com>
8949
8950         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
8951         add some nice ascii art pictures and explanation of the process).
8952         (GetMostDeeplyNestedActiveControl): new utility function we need
8953         because our ActiveControl can refer to a child container with its
8954         own ActiveControl.
8955
8956         * Form.cs (OnActivated): remove the call to SelectActiveControl
8957         from here, since you can override this method and not chain up,
8958         and winforms still sets the active control.
8959         (OnCreateControl): also remove the unnecessary SelectActiveControl
8960         call from here.
8961         (WndProc): it's actually called from the WM_ACTIVATE block, just
8962         before calling OnActivated.
8963
8964         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
8965         inside the else.  the ActiveControl setter will end up setting
8966         focus on @control.  This keeps us from setting it again (and
8967         generating an extra LostFocus/GotFocus pair).
8968         (Select (bool, bool)): reindent.
8969
8970 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
8971
8972         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
8973         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
8974         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
8975         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
8976         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
8977         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
8978         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
8979         ToolStripTextBox.cs: Another wave of corcompare work.
8980
8981 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8982
8983         * ColumnHeader.cs: Implement 2.0 AutoResize method using
8984         the Width property.
8985
8986         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
8987         methods by callling Column.AutoResize method on columns.
8988
8989 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8990
8991         * Control.cs: Provide proper implementations of PreferredSize
8992         and GetPreferredSize (2.0).
8993
8994 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8995
8996         * Form.cs: Remove one character (!) to make my previous OnClosing
8997         stuff work for modal windows like MessageBox.
8998
8999 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9000
9001         * ListView.cs:
9002         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
9003         ListView.Columns to get the last displayed column. Fixes #80452.
9004
9005 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
9006
9007         * Label.cs, LinkLabel.cs: Source code identation fixes.
9008
9009 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
9010
9011         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
9012         we dont need to invalidate only borders because when we invalidate four
9013         border lines the invalidate's generates a complete redraw of button, 
9014         because it now invalidate a complete rect some other redraws operations
9015         are fixed. Fixes #80196.
9016         
9017         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
9018         Remove ToolBarInvalidateEntireButton as it is not used.
9019
9020 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
9021         
9022         * Form.cs: Make sure that both OnClosing and OnFormClosing are
9023         called for 2.0 profile.
9024         * CloseReason.cs: Make class internal for 1.1.
9025
9026 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
9027
9028         * ToolStripManager.cs: Implement FindToolStrip functionality.
9029         * ToolStrip.cs: Register and unregister with ToolStripManager.
9030
9031 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
9032
9033         * Control.cs: This was messy.  2.0 moves much of ControlCollection
9034         to ArrangedElementCollection.  Implemented this with as few #if's as 
9035         possible (which is still too many).
9036
9037 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
9038
9039         * Control.cs: Implement SizeFromClientSize() [2.0].
9040
9041 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
9042
9043         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
9044         use Theme.BorderSize to calculate area instead of static value 1, 
9045         by the way use new BorderStaticSize instead     Border3DSize when 
9046         border_static is true. Fixes #79537.
9047         
9048         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
9049         
9050         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
9051         it is not needed.
9052
9053 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
9054
9055         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
9056
9057 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
9058
9059         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
9060         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
9061         
9062         * Hwnd.cs: 
9063         - border_static field added, it will used to define when a control 
9064         theres 3D border but it must be static (thin).
9065         - In GetWindowRectangle use Theme.BorderSize to calculate area 
9066         instead of static value 1, by the way use new BorderStaticSize instead
9067         Border3DSize when border_static is true.
9068
9069         * XplatUIX11.cs, XplatUIOSX.cs: 
9070         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
9071         
9072         * Theme.cs: BorderStaticSize field added.
9073
9074 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
9075
9076         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
9077
9078 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
9079
9080         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
9081         mimic same behavior than win32 that set border only in CreateParams,
9082         it fix problems under CreateParams overrides. Fix #79442 and partial
9083         fix #79537.
9084         
9085         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
9086         of thi control you must call recreate handle. 
9087         
9088         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
9089         need to do anything as RecreateHangle will take care about borders.
9090
9091 2007-01-05  Mike Kestner  <mkestner@novell.com>
9092
9093         * ListView.cs: hack to eliminate Lost/Got focus notifications on
9094         cycles between the ItemControl and parent.  Fixes #80388.
9095
9096 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
9097
9098         * Control.cs: Lazy init layout engine. Do not directly use 
9099         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
9100
9101 2007-01-05  Chris Toshok  <toshok@ximian.com>
9102
9103         * DataGrid.cs: don't forceably rebind columns in SetDataSource
9104         unless our list manager has changed (i.e. unless we have reason to
9105         believe our columns have changed).  Fixes #80422.
9106         
9107         also, disable the call do BindColumns in
9108         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
9109         1.1 the event isn't raised in response to a column addition on a
9110         table.)
9111
9112 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
9113
9114         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
9115         that inheritors can not call it if they choose.  Fixes bug #80456.
9116
9117 2007-01-05  Andreia Gaita  <avidigal@novell.com>
9118
9119         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
9120         doesn't blow up with a null exception on marshalling.
9121         
9122 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
9123
9124         * Control.cs: Implement several 2.0 protected properties and methods.
9125         Ensure that all necessary events are being called when properties
9126         are set.
9127
9128 2007-01-05  Mike Kestner  <mkestner@novell.com>
9129
9130         * ListView.cs: implement PgUp/PgDn for Details view.  Also
9131         fixes First/LastVisibleIndex to use the item_control.ClientRect 
9132         instead of the parent control.  Fixes #80378.
9133
9134 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
9135
9136         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
9137           determine whether to use yard-pound or not (bug #78399).
9138
9139 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9140
9141         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
9142         problems. So it is time to bring back the old popupbutton colors.
9143
9144 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9145
9146         * ColumnHeader.cs:
9147         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
9148         property by using the internal information of the
9149         columns order in ListView.
9150
9151 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
9152
9153         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
9154         Add 2.0 Tag properties.
9155
9156         * LinkArea.cs: Add 2.0 ToString method.
9157
9158 2007-01-03  Chris Toshok  <toshok@ximian.com>
9159
9160         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
9161         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
9162         when we're editing, which fixes #80047.
9163
9164 2007-01-03  Chris Toshok  <toshok@ximian.com>
9165
9166         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
9167         #80404.
9168
9169 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
9170
9171         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
9172         property and implementation.
9173
9174         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
9175         for MdiWindowListItem property.
9176
9177         * ToolStripDropDown.cs: Don't consider hidden menu items while
9178         laying out the menu.
9179
9180 2007-01-03  Andreia Gaita  <avidigal@novell.com>
9181
9182         * SendKeys.cs: window handle is not needed in win32, so just
9183         get the active window for X after parsing keys and don't use
9184         it when building the message; it is passed by parameter to the 
9185         Xplat method and used there to build the message instead. Also,
9186         wait for events to be processed on SendWait, as opposed to Send,
9187         which doesn't wait :) Playing with threads and Send() completely 
9188         hangs on ms.net, only SendWait() works.
9189         
9190         XplatUIX11.cs
9191         X11Display.cs: Check for valid window handle.
9192
9193 2007-01-03  Jackson Harper  <jackson@ximian.com>
9194
9195         * TextControl.cs: Need to prevent wrap calculations when replacing
9196         text (this was there before i removed it accidently).
9197         - Don't update the cursor during the positioning, just set it to
9198         selection_start at the end of the operaion.
9199
9200 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9201
9202         * Control.cs:
9203         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
9204         
9205 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9206
9207         * MonthCalendar.cs: Added Click and DoubleClick events again,
9208         but this time they only hide Control's Click and DoubleClick.
9209         
9210 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
9211
9212         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
9213         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
9214
9215 2007-01-02  Jackson Harper  <jackson@ximian.com>
9216
9217         * TextBoxBase.cs: We move the caret with the split now, so we
9218         don't need to explicitly move the caret after splitting.  This
9219         fixes the caret bumping down an extra line on Enter.
9220
9221 2007-01-02  Miguel de Icaza  <miguel@novell.com>
9222
9223         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
9224         2.72). 
9225
9226         * ScrollableControl.cs: Add Scroll event.
9227
9228 2007-01-02  Mike Kestner  <mkestner@novell.com>
9229
9230         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
9231         to fix all hdr height padding codepaths.  Fixes #80207.
9232
9233 2007-01-02  Chris Toshok  <toshok@ximian.com>
9234
9235         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
9236         setting it to the Control defaults anyway, and it being after the
9237         Dock set was screwing up layout.
9238         (set_Dock): don't short circuit out of setting base.Dock.  Also,
9239         no need to call UpdateStatusBar here, as it'll be re-layed out if
9240         it needs to be.
9241
9242 2007-01-02  Mike Kestner  <mkestner@novell.com>
9243
9244         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
9245         to header height for width == -1. Fixes the rest of #80207.
9246
9247 2007-01-02  Mike Kestner  <mkestner@novell.com>
9248
9249         * ListView.cs: rework the mouse event forwarding everaldo added
9250         to translate the coordinates to the parent control not
9251         raise the parent events until after we've done our work. Hover
9252         needs more work, in the case where HoverSelection is on, because
9253         the item control receives more than one MouseHover per Enter
9254         event, so we need to ensure only the "first" hover gets forwarded.
9255         Opening a minor bug for that.
9256
9257 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
9258
9259         * CheckedListBox.cs: Fixed SelectionMode to match MS.
9260         * ListControl.cs: Implemented AllowSelection property. Removed extra
9261         tabs.
9262         * ListBox.cs: Implemented AllowSelection property.
9263
9264 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9265
9266         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
9267         SelectedItem, it prevent for errors when you must disable item
9268         before perform click. Fixes #80409.
9269
9270 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9271
9272         * MenuAPI.cs: Prevent second level and beyond submenus to close
9273         until first level when move out side of popup.
9274         
9275 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9276
9277         * MenuAPI.cs:
9278         - Down submenu positin in three pixels.
9279         - Closes sub menu when mouse leaves from menu. Fixes #80402.
9280
9281 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9282
9283         * ThemeWin32Classic.cs:
9284         - Fix popup menu size adding one pixel on the top.
9285         - Down menu item border from two to one to mimic Win32.
9286         - Some source identation fixes. 
9287
9288 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
9289
9290         * ThemeWin32Classic.cs: Use float numbers to calculate size and
9291         position of menu arrows, it fix wrong arrow size.
9292
9293 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
9294
9295         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
9296         instead of line, it simplify draw operation and fix it using 3D
9297         borders to mimic Win32.
9298
9299 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
9300
9301         * StatusStrip.cs: Add implementation of the sizing grip.
9302
9303         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
9304         StatusStrip rendering.
9305
9306 2006-12-31  Chris Toshok  <toshok@ximian.com>
9307
9308         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
9309         override the layout style (anchor/dock) of the control.  assign to
9310         Dock instead.  Fixes bug #80416.
9311
9312         * ToolStrip.cs: same.
9313
9314 2006-12-31  Andreia Gaita  <avidigal@novell.com>
9315
9316         * ContainerControl.cs: Use ContainerSelected flag to check if 
9317         a Container is directly selected, or if Select is called on a 
9318         non-container. If a container is directly selected, focus events 
9319         should not be raised.
9320         Apply #80411 patch to throw exception on set_ActiveControl if 
9321         control is the same as the current one.
9322         
9323         * Control.cs: Use ContainerSelected flag (see above).
9324         Add invalidation check to raise event but not invalidate if 
9325         dimensions are 0.       
9326         Apply #80411 patch.
9327         
9328
9329 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
9330
9331         * MenuAPI.cs: After click, dont close popup menu when menu is
9332         ContextMenu. Fixes #80399.
9333
9334 2006-12-30  Chris Toshok  <toshok@ximian.com>
9335
9336         * ContainerControl.cs: make sure we throw the exception if the
9337         container control doesn't contain the control we're setting
9338         ActiveControl to.
9339
9340 2006-12-30  Chris Toshok  <toshok@ximian.com>
9341
9342         * Control.cs (SetTopLevel): fix the exception raised by
9343         SetTopLevel for child controls.
9344         (set_Anchor): call UpdateDistances when setting the anchor type.
9345         This fixes bug #80336.
9346
9347 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9348
9349         * Theme.cs: For now, revert back to 8pt font.
9350
9351 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
9352
9353         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
9354         Fixes #80395.
9355
9356 2006-12-29  Chris Toshok  <toshok@ximian.com>
9357
9358         * Control.cs: reorder the code in OnResize to give the same event
9359         ordering as MS.
9360
9361 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9362
9363         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
9364         TileHorizontally and TileVertically.
9365         
9366 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
9367
9368         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
9369         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
9370         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
9371         Corrected copyright and email adress.
9372
9373 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9374
9375         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
9376         of Exception in FullPath property if no TreeView is associated with
9377         the TreeNode.
9378
9379 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9380
9381         * Theme.cs: Marked default_font as private, and initialize it in ctor
9382         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
9383         on 2.0 profile.
9384         * ThemeGtk.cs: Removed default_font intialization.
9385         * ThemeWin32Classic.cs: Removed default_font initialization.
9386
9387 2006-12-28  Chris Toshok  <toshok@ximian.com>
9388
9389         * Control.cs: fix a couple of place where we were creating handles
9390         more aggressively than we should be.  Fixes ControlRefresh unit
9391         tests.
9392
9393 2006-12-28  Chris Toshok  <toshok@ximian.com>
9394
9395         * Control.cs: contrary to what the comment said, Control.Dock does
9396         not supercede Control.Anchor - the last one you assign to decides
9397         the layout behavior.  so we need to keep track of which was the
9398         last set.  Also, fix some of the affected property arguments in
9399         PerformLayout calls, and remove an redundant parent.PerformLayout
9400         call in OnResized.
9401
9402         Add a VisibleInternal property, which returns is_visible.  We
9403         can/should get rid of all the usage of this field elsewhere.
9404
9405 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9406         
9407         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
9408         control style, not DoubleBuffer. Added UseDoubleBuffering property
9409         that indicates whether doublebuffering is enabled and supported.
9410         (comment from and code based on Gert Driesen's patch in #80324).
9411         Fixes #80324.
9412
9413 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9414         
9415         * Control.cs: Fixed a NRE.
9416
9417 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9418
9419         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
9420         for 2.0.
9421
9422 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9423
9424         * Control.cs: Rewrote double buffering, now a seperate
9425         class handles all the buffering, no Graphics is disposed of
9426         until the painting is finished (earlier implementation 
9427         would crash if the control was resized in the OnPaint, 
9428         since it would cause the double buffer to be recreated
9429         and the old one disposed), a separate Graphics is 
9430         created for every paint (MS behaviour and anyways the state
9431         of the Graphics would have to be saved and restored otherwise)
9432         
9433         * XplatUIDriver.cs: 
9434         * XplatUIX11.cs:
9435         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
9436         so that we can get the graphics for the back buffer without
9437         having to create a new one and remove the offscreen_dc parameter
9438         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
9439         
9440 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9441
9442         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
9443         Also make virtual all the key-related methods.
9444
9445         * ListViewItem.cs: Make virtual the key related methods for
9446         ListViewSubItemCollection.
9447
9448 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9449
9450         * ListView.cs:
9451         * ListViewItem.cs:
9452         * ThemeWin32Classic.cs:
9453         * Theme.cs: Initial support for Tile view in ListView,
9454         as well as the implementation of the required bits for it (Item
9455         and Subitem).
9456
9457 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9458
9459         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
9460         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
9461         Provide useful exception messages.
9462
9463 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9464
9465         * TrackBar.cs: Remove a warning.
9466         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
9467         when used by DateTimePicker, fixes #80287. This also requires that 
9468         MonthCalendar implements it's own drawing for the yearly updown control,
9469         otherwise the Capture tracking would be too complicated. Removed the Click 
9470         and DoubleClick events (according to comments they were hiding the base class
9471         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
9472         raise these events, not that they cannot be raised. It is possible to raise 
9473         them by calling OnClick and OnDoubleClick). Added two internal fields in 
9474         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
9475         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
9476         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
9477         event, no longer needed.
9478         
9479 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9480
9481         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
9482         true if new value differs from current value.
9483
9484 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9485
9486         * Control.cs: ControlCollection.Count must be public. Fixed build of
9487         unit tests.
9488
9489 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9490
9491         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
9492
9493 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9494
9495         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
9496
9497 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9498
9499         * Control.cs: Invalidates control including when Width and Height is 
9500         equal zero or is not visible, only Paint event must be care about 
9501         this. Fixes #79913.
9502
9503 2006-12-26  Chris Toshok  <toshok@ximian.com>
9504
9505         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
9506         more corcompare work.
9507
9508         * DataGridView.cs: fix compiler warning.
9509
9510         * ColumnHeader.cs: some corcompare work, and also take the
9511         opportunity to make the internal fields private.
9512
9513         * ListView.cs: fix the fallout from the above field change.
9514
9515 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9516
9517         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
9518         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
9519         ToolStripTextBox.cs: Fixes to events and corcompare.
9520
9521 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9522
9523         * ListView.cs: Call owner.OnMousexx event to propagate events from
9524         item to ListView. Fixes #80367.
9525
9526 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9527
9528         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
9529         if value is less than one. ItemHeight should not be set to a value
9530         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
9531         Removed extra tabs.
9532
9533 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9534
9535         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
9536         * ToolStripStatusLabel.cs: Add Spring for Moma.
9537
9538 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9539
9540         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
9541         Fixed code formatting. Removed debug code.
9542         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
9543
9544 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9545
9546         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
9547         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
9548         ArgumentOutOfRangeException if ColumnCount is negative. In 
9549         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
9550         less than 4 or higher than 32768.
9551         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
9552         Fixed FormatProvider to return CurrentCulture unless explicitly set.
9553         Fixed IsFormatProviderDefault to return true if FormatProvider has
9554         not been explicitly set.
9555
9556 2006-12-25  Chris Toshok  <toshok@ximian.com>
9557
9558         * Application.cs: add a couple of 2.0 events.
9559
9560 2006-12-25  Chris Toshok  <toshok@ximian.com>
9561
9562         * Control.cs: fix compiler warning.
9563
9564         * AxHost.cs: corcompare fixes.
9565
9566         * ApplicationContext.cs: corcompare fixes.
9567
9568 2006-12-25  Chris Toshok  <toshok@ximian.com>
9569
9570         * Control.cs: only update dist_right/dist_bottom if the
9571         width/height is > 0.  this fixes anchored controls being resized
9572         smaller until they disappear and then resized larger again.
9573
9574 2006-12-25  Chris Toshok  <toshok@ximian.com>
9575
9576         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
9577         since they're nothing more than X/Left and Y/Top, respectively.
9578
9579         Also, move back to a per-control Bitmap/Graphics for
9580         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
9581         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
9582         Height.
9583
9584 2006-12-25  Miguel de Icaza  <miguel@novell.com>
9585
9586         * MessageBox.cs: Implemented overload that takes a new "bool
9587         displayHelpButton" by adding a new internal field "show_help".
9588         When clicked this will raise the HelpRequested on the owner or the
9589         main form. 
9590
9591         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
9592         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
9593
9594         * ListView.cs: Add support ColumnWidthChanged and
9595         ColumnWidthChanging. 
9596
9597         Add support for ColumnReordered event.
9598         (ReorderColumn): Add NET_2_0 specific support for cancelling the
9599         reorder.
9600
9601         Very nice codebase!
9602
9603         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
9604
9605         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
9606
9607 2006-12-24  Chris Toshok  <toshok@ximian.com>
9608
9609         * GridTablesFactory.cs: 2.0 corcompare work.
9610
9611         * ToolStripContainer.cs: add "override" to
9612         ContextMenuStripChanged, and remove the local event object.
9613
9614         * ToolStripDropDown.cs: same with a couple properties.
9615
9616         * ToolStripPanel.cs: same with AutoSizeChanged event.
9617
9618         * TextBoxBase.cs: add "override" to AutoSizeChanged.
9619
9620         * Form.cs: add the remaining 2.0 events, and do some corcompare
9621         attribute work.
9622
9623         * DateTimePicker.cs: add "new" to padding.
9624
9625         * ButtonBase.cs: use Control's use_compatible_text_rendering.
9626
9627         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
9628
9629         * DataGridView.cs: PaddingChanged is overridden.
9630
9631 2006-12-24  Chris Toshok  <toshok@ximian.com>
9632
9633         * Control.cs: corecompare work here too.
9634
9635         * DataGridViewElement.cs, DataGridView.cs,
9636         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
9637         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
9638         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
9639         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
9640         work.
9641
9642 2006-12-24  Miguel de Icaza  <miguel@novell.com>
9643
9644         * Control.cs: Switched the error message on the console for a
9645         todo.  A review of the code will have to cope with this anyways
9646         (since its a large feature, it is in our radar) and it was
9647         producing too much output when running PDN.
9648
9649         * ToolStripComboBox.cs: Set the text when the SelectedIndex
9650         changes.  Applications depend on this (PDN 2.72)
9651
9652 2006-12-23  Chris Toshok  <toshok@ximian.com>
9653
9654         * TableLayoutSettings.cs: finish up the corcompare work for this
9655         class.
9656
9657 2006-12-23  Chris Toshok  <toshok@ximian.com>
9658
9659         * Control.cs: make SetImplicitBounds internal, do some futzing
9660         with LayoutEngine so that it's available in 1.1, and remove the
9661         entire duplicated code mess from PerformLayout.  Use
9662         System.Windows.Forms.Layout.DefaultLayout instead.
9663
9664         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
9665
9666 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9667
9668         * Form.cs: Add MainMenuStrip property.
9669
9670 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9671
9672         * Control.cs: Add ContextMenuStrip property and implementation.
9673         Fix ContextMenu implementation to show menu centered on control when
9674         activated using the keyboard instead of showing at screen (0,0).
9675
9676         * ToolStripDropDown.cs: Fix needed overload of Show ().
9677
9678 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9679
9680         * Menu.cs: Name property added for 2.0 profile.
9681         
9682 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9683
9684         * Menu.cs: Update information about FindMenuItem, method to be
9685         implemented soon.
9686
9687 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9688
9689         * MenuAPI.cs: When deselect items deselect also selected subitems.
9690         
9691 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9692
9693         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
9694         FindSubItemByCoord to found itens that is not active, also an
9695         cheking added to FindSubItemByCoord to search for items only 
9696         in visible popup windows. Fixes #80274.
9697
9698 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
9699
9700         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
9701         internal property, it be care about change ExStyle. 
9702
9703 2006-12-22  Andreia Gaita  <avidigal@novell.com>
9704
9705         * ContainerControl.cs: set activeControl for parent forms up the 
9706         tree when the new activecontrol is a container.
9707         When validating the active control, if it is a container, also
9708         raise up the validation for it's active control. Fixes #80280
9709         
9710         * Control.cs: Add internal property flag and check to prevent
9711         Focus events from getting raised when Select() is called for
9712         a ContainerControl. There are still too many focus events being
9713         raised at the moment though.
9714         Cleaned up the code a bit.
9715
9716 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9717
9718         * Control.cs: Added all missing 2.0 events.and
9719         fixed a couple of corcompare issues.
9720         * TrackBar.cs: Implemented missing 2.0 bits.
9721         * MonthCalendar.cs, 
9722         * DateTimePicker.cs, 
9723         * MdiClient.cs: Fixed some corcompare issues.
9724
9725 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9726
9727         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
9728         SplitterPanel.cs: corecompare work.
9729
9730 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9731
9732         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
9733         Clean up warnings for BackgroundImageChanged and PaddingChanged
9734         events now that they are implemented in Control.cs.
9735
9736 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9737
9738         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
9739         
9740         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
9741         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
9742         of TableLayoutPanel and supporting cast.
9743
9744 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9745
9746         * XplatUIWin32.cs: 
9747         - GrabWindow now confines the mouse pointer to the confine window.
9748         - Added Win32ClipCursor and Win32GetClipCursor.
9749
9750         * Control.cs: 
9751         - Added CaptureWithConfine to be able to capture and confine 
9752         mouse pointer.
9753         
9754         * InternalWindowManager.cs: 
9755         - Call CaptureWithConfine instead of Capture if we're an
9756         MdiChild (fixes #79982).
9757
9758 2006-12-21  Chris Toshok  <toshok@ximian.com>
9759
9760         * DataGrid.cs: guard against the initial state of selection, where
9761         selection_start == -1.  make sure we only select from index >= 0.
9762         Fixes bug #80291.
9763
9764 2006-12-21  Chris Toshok  <toshok@ximian.com>
9765
9766         * Control.cs: we don't need to be so draconian with
9767         UpdateDistances, and we thusly don't need to call it before
9768         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
9769
9770 2006-12-21  Daniel Nauck  <dna@mono-project.de>
9771
9772         * ComboBox.cs,
9773         TextBox.cs: Implemented AutoComplete properties.
9774
9775 2006-12-20  Chris Toshok  <toshok@ximian.com>
9776
9777         * DataGridView*.cs: some corecompare work.
9778
9779 2006-12-20  Jackson Harper  <jackson@ximian.com>
9780
9781         * XplatUIX11.cs: We need to hide the caret when deleting it,
9782         otherwise you get carets left lying around everywhere.
9783         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
9784         prevents getting some weird half drawn caret tracers when
9785         scrolling.
9786         * TextControl.cs: Attempt to reduce the number of times we need to
9787         recreate the caret.
9788
9789 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
9790
9791         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
9792
9793 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9794
9795         * DateTimePicker.cs:
9796         - Implemented missing 2.0 bits.
9797         - Changed some default values to match MS.
9798         
9799 2006-12-20  Jackson Harper  <jackson@ximian.com>
9800
9801         * TextBoxBase.cs: When changing the font across the document we
9802         can't recalculate after changing each line, since that will cahnge
9803         the line count.
9804         - PreferredHeight is a little different than i thought.
9805         - When backspacing, move the caret before we do the actual char
9806         delete, because when that delete crosses a wrap boundary the
9807         positional information will change.
9808
9809 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9810
9811         * Control.cs: Added some missing 2.0 bits: 
9812         BackgroundImageLayout, BackgroundImageLayoutChanged, 
9813         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
9814         add IBindableComponent and IDropTarget implementation.
9815         
9816         * MonthCalendar.cs: 
9817         - Added all missing 2.0 features:
9818         BackgroundImageLayout, RightToLeftLayout, 
9819         OnHandleDestroyed, RightToLeftLayoutChanged, 
9820         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
9821         PaddingChanged.
9822         - Rewrote all the BoldDate code, it was completely broken.
9823         - Fixed all the tests (the tests can now be re-enabled, the
9824         problems were not with the tests, but with the control, it was
9825         mostly broken).
9826         
9827         * DateTimePicker.cs: Changed the location where the 
9828         MonthCalendar is shown.
9829         
9830 2006-12-19  Chris Toshok  <toshok@ximian.com>
9831
9832         * DataGridView.cs: add IDropTarget implementation.
9833
9834         * ToolStripPanel.cs: add IDropTarget implementation.
9835
9836 2006-12-19  Jackson Harper  <jackson@ximian.com>
9837
9838         * TextControl.cs: soft now means something different than what it
9839         used to mean, we want to move the caret regardless of whether or
9840         not this break was soft (would we really have wanted the caret
9841         to not move with the break in the old context?)
9842         * TreeView.cs: Make sure we factor in the vert scrollbar when
9843         calculating the horizontal scrollbar's maximum.
9844
9845 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9846
9847         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
9848         check for keywords in alternate casing, close bug #80049.
9849
9850 2006-12-19  Chris Toshok  <toshok@ximian.com>
9851
9852         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
9853         methods (which all do nothing).
9854
9855         * IDropTarget.cs: add the 4 missing methods.
9856
9857 2006-12-19  Chris Toshok  <toshok@ximian.com>
9858
9859         * TableLayoutRowStyleCollection.cs: corcompare work.
9860         
9861         * TableLayoutSettings.cs: same.
9862
9863         * TableLayoutStyle.cs: same.
9864
9865         * TableLayoutColumnStyleCollection.cs: same.
9866
9867 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
9868
9869         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
9870         TableLayoutPanel I've had in my local tree for way too long.
9871
9872 2006-12-19  Miguel de Icaza  <miguel@novell.com>
9873
9874         * TableLayoutSettings.cs: Finish the public API (still needs all
9875         the logic to update on changes). 
9876
9877         * TableLayoutPanelCellPosition.cs: new file.
9878         
9879         * TableLayoutRowStyleCollection.cs,
9880         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
9881         TableLayoutSettings.cs: Track the final 2.0 table api.
9882
9883 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9884
9885         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
9886         and Image List 2.0 members for ColummnHeader.
9887         * ListView.cs: Add key-related 2.0 methods for
9888         ColumnHeaderCollection.
9889
9890 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9891
9892         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
9893         ArgumentNullException if items argument is null. Ignore null item in
9894         arrays. Removed extra tabs.
9895
9896 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9897
9898         * MonthCalendar.cs: Fixed InvalidCastException.
9899
9900 2006-12-19  Jackson Harper  <jackson@ximian.com>
9901
9902         * TextControl.cs: Don't increment the position here.
9903         - When calculating char positions only add in the line break size
9904         for hard line breaks.
9905
9906 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9907
9908         * SendKeys.cs: Changed some things to match ms.net behaviour
9909         when parsing shifted capital letters.
9910         
9911         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
9912         Add window handle as parameter to SendInput. X11 needs the 
9913         window handle, and the handle being passed      to it in the keys 
9914         queue is the active control handle (which windows needs), not 
9915         the window handle.
9916         
9917         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
9918         to support SendKeys on X.       
9919         
9920         * X11Keyboard: Implement helper method to lookup a linux keycode
9921         given the virtual keycode. Added table of keycode-2-virtualkey
9922         values to support this.
9923
9924 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9925
9926         * ListView.cs: Add support for SelectedIndexCollection
9927         and SelectedItemCollection 2.0 methods. Implement support
9928         for ImageKey too.
9929         * ListViewItem.cs: Add support for ListViewSubItemCollection
9930         2.0 methods. Also, fix an incorrect behavior of AddRange method
9931         (it shouldn't call Clear).
9932         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
9933
9934 2006-12-19  Jackson Harper  <jackson@ximian.com>
9935
9936         * RichTextBox.cs: 
9937         * TextBoxBase.cs: New args for FormatText
9938         * TextControl.cs: Rewrote the main drawing method, this version
9939         feels a little easier to understand and debug to me.  Hopefully it
9940         does to others also
9941         - Fix FormatText to OR in the new formating values.  Added
9942         FormatSpecified param, basically this works in the same way as
9943         BoundsSpecified in Control.
9944         - Set the caret properties when the caret is positioned.
9945         - When wrapping text make sure that we calculate the width of the
9946         last character
9947         - when calculating alignments we might have wrapped down to the
9948         next line, so don't search for an individual tag, search for the
9949         end of the line
9950         - We need to invalidate the selection area when we replace the
9951         selection.
9952         
9953 2006-12-19  Daniel Nauck  <dna@mono-project.de>
9954
9955         * Application.cs: add Restart () 2.0 support
9956
9957 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9958
9959         * MenuItem.cs: Invalidate menu item rectangle after change Enable
9960         property. Fixes #80268.
9961         
9962 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9963
9964         * MenuAPI.cs: Dont trigger select event when closes top menu
9965         item. Fixes #80270.
9966
9967 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9968
9969         * MenuAPI.cs: When you click on menuitem only trigger onselect
9970         event for top menu itens. Fixes #80271.
9971         
9972 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9973
9974         * MdiWindowManager.cs: Make IconicBounds depend on
9975         the bottom of MdiClient, not the top (fixes #80267)
9976         
9977 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9978
9979         * MdiClient.cs: Added missing 2.0 attribute
9980
9981 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9982
9983         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
9984         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
9985
9986 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9987
9988         * MenuAPI.cs: Fix click when menuitem is not popup,
9989         this regression was caused by last commit (#80272).
9990
9991 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
9992
9993         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
9994         fire click event or close menu. Fixes #80272.
9995
9996 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9997
9998         * ListViewHitTestInfo.cs: add
9999
10000 2006-12-17  Daniel Nauck  <dna@mono-project.de>
10001
10002         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
10003         * FlatButtonAppearance.cs: add
10004         * DockingAttribute.cs: add
10005
10006 2006-12-17  Chris Toshok  <toshok@ximian.com>
10007
10008         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
10009         and rebind our columns when it does - this way, if you make
10010         changes to the DataTable (or set the Table attribute on a DataView
10011         after setting it as the DataGrid's DataSource, the changes are
10012         made visible.)  Fixes bug #80107.
10013
10014 2006-12-17  Daniel Nauck  <dna@mono-project.de>
10015
10016         * ListViewGroup.cs: add internal Location property for layouting.
10017         * Theme.cs: add abstract ListViewGroupHeight function.
10018         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
10019
10020 2006-12-16  Andreia Gaita  <avidigal@novell.com>
10021
10022         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
10023         Added reset of selected index to 0 when adding first tab page.
10024         Fixes #80264
10025         
10026         * NumericUpDown.cs: Fix NET_2_0 check
10027
10028 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10029
10030         * ListViewGroup.cs: fixed DefaultValueAttribute value
10031
10032 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10033
10034         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
10035
10036 2006-12-15  Miguel de Icaza  <miguel@novell.com>
10037
10038         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
10039         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
10040         ScrollableControl.cs: Add a handful of methods that are
10041         overwritten in 2.0 
10042
10043 2006-12-15  Chris Toshok  <toshok@ximian.com>
10044
10045         * XplatUIWin32.cs: initial implementation of the Reversible
10046         drawing functions.  there are some problems.  DrawReversibleFrame
10047         doesn't seem to work at all for Dashed FrameStyle, and in the
10048         Thick case there are drawing errors at the corners (we probably
10049         need to bind Rectangle instead of doing moveto/lineto's.)
10050
10051 2006-12-16  Andreia Gaita  <avidigal@novell.com>
10052         
10053         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
10054         to send blocks of key messages. Send accumulates keys to send with Flush, 
10055         while SendWait sends all keys immediately.
10056                 
10057         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
10058         XplatUIX11.cs,  XplatUIX11-new.cs:
10059         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
10060         to Win32 SendInput.
10061         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
10062         
10063         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
10064         testing for ms.net on this class is very tricky, as the tests run too fast 
10065         to allow the hook to release, essentially freezing the keyboard and the 
10066         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
10067         category :p
10068
10069 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10070
10071         * Padding.cs: fixed serialization compability to MS ("_var" field names),
10072                         added missing attributes.
10073  
10074 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10075
10076         * ListViewGroup.cs: Added missing attributes.
10077         * ListViewGroupCollection.cs: Added missing attributes.
10078
10079 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10080
10081         * ListViewItem.cs: fixed ListViewSubItem text property.
10082
10083 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10084         
10085         * Control.cs: Added missing 2.0 attributes
10086         
10087 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10088         
10089         * MdiClient.cs: Added missing 2.0 attribute.
10090         * MonthCalendar.cs: Added some missing 2.0 attributes 
10091         and properties.
10092         
10093 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10094
10095         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
10096
10097 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
10098
10099         * MainMenu.cs: Add the new 2.0 constructor to help out people
10100         using the MainMenu in VS2005.
10101
10102 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10103         
10104         * MdiChildContext.cs: Removed it, no longer used.
10105         * MdiClient.cs: Added missing 2.0 attributes.
10106         
10107 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10108         
10109         * InternalWindowManager.cs: Fix a NullRef with previous 
10110         changes for toolwindows.
10111         
10112 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10113
10114         * Control.cs: 
10115         - Added AfterTopMostControl to allow for certain controls 
10116         to always stay on top when normal controls are brought to 
10117         front.
10118         
10119         * XplatUIWin32.cs: 
10120         - (DrawInversibleRectangle): Get window rectangle from Win32 
10121         in stead of from control, since Win32 doesn't calculate
10122         screen coords correctly from control's Location if it 
10123         have docked siblings.
10124         
10125         * MdiWindowManager.cs:
10126         - Correct the control menu popup location when clicked on
10127         the maximized form icon. (fixes #80223.1)
10128         - Don't show moving rectangle if mouse hasn't moved from
10129         the original clicked point.
10130         - Removed FormGotFocus handler (not used).
10131         - Calculate the control buttons location from the main
10132         window's size and not client size (fixes #79770).
10133         - Form is now closed when the form icon is double-clicked
10134         (fixes #79775). 
10135         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
10136         
10137         * InternalWindowManager.cs:
10138         - Moved some MDI-only methods to MdiWindowManager.
10139         - Removed unused properties and methods.
10140         - Unified method naming for methods handling wm messages.
10141         - Moved all message handling to seperate methods for
10142         each message.
10143         
10144         * ThemeWin32Classic.cs:
10145         - DrawManagedWindowDecorations now draws the title bar 
10146         with a gradient brush.
10147         - Add a CPDrawButtonInternal that allows us to specify
10148         light, normal and dark colors for the buttons (control 
10149         buttons for MDI children were drawn with the same light
10150         color as the background, therefore loosing the 3D effect).
10151         
10152         * SizeGrip.cs:
10153         - Add a CapturedControl property that is used to 
10154         determine the control to resize (defaults to parent). 
10155         Needed for MdiClient, since its SizeGrip's parent is
10156         MdiClient, but the control to resize is the main form.
10157         
10158         * MdiClient.cs:
10159         - Set SizeGrip's CapturedControl to the main form in order
10160         to resize the main form and not the MdiClient.
10161         - Override AfterTopMostControl to leave the scrollbars 
10162         always on top.
10163
10164 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10165
10166         * ListView.cs: fixed ListViewItemCollection AddRange and
10167                         implemented ListViewItemCollection AddRange 2.0 support.
10168
10169 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10170
10171         * ListViewGroup.cs: Add.
10172         * ListViewGroupCollection.cs: Add
10173         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
10174         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
10175                                 stub for ImageKey 2.0 support.
10176
10177 2006-12-14  Mike Kestner  <mkestner@novell.com>
10178
10179         * ListView.cs: add text padding to the autocalculation for columns
10180         of width -2.  Fixes #80207.
10181  
10182 2006-12-14  Mike Kestner  <mkestner@novell.com>
10183
10184         * ListView.cs: add some index guarding for partial row navigation 
10185         logic.  Fixes #80250.
10186
10187 2006-12-14  Mike Kestner  <mkestner@novell.com>
10188
10189         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
10190         are added or inserted to the collection.  Fixes #81099.
10191
10192 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
10193
10194         * MenuAPI.cs: Closes menu when right click out side of popup
10195         it fix problem in ContextMenu and MainMenu. Fixes #80252.
10196
10197 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10198
10199         * ListViewItem.cs: Fix dumb error.
10200
10201         * ListView.cs: Add Find and ContainsKey methods in 
10202         ListViewItemCollection, and also return true for IsReadOnly
10203         and IsFixedSize (changes for 2.0). 
10204
10205 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
10206
10207         * Control.cs: Allow Region to be set to null.
10208
10209 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10210
10211         * MdiWindowManager.cs: Remove unused (commented out) code.
10212         * Form.cs: When the MdiChild is maximized, the form needs 
10213         WM_NCMOUSELEAVE, so request it.
10214         * InternalWindowManager.cs: 
10215         - Added tooltips to control buttons.
10216         - Removed duplicated control button handling code.
10217         - Removed unused (commented out) code.
10218         
10219 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
10220
10221         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
10222         was used because we must set cursor without trigger ChangeCursor event
10223         and without change Cursor control property. Fixes #79963.
10224
10225 2006-12-12  Andreia Gaita  <avidigal@novell.com>
10226         
10227         * Control.cs: Check if Region setter value is null, and ignore
10228
10229 2006-12-12  Jackson Harper  <jackson@ximian.com>
10230
10231         * TextControl.cs: We were almost always drawing one more line then
10232         needed, since the GetLineByPixel will return the last line found
10233         at that pixel. In most cases though, we were invalidating up to
10234         the junction between two lines.
10235         - Improve debug code.
10236
10237 2006-12-12  Chris Toshok  <toshok@ximian.com>
10238
10239         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
10240         and FillReversibleRectangle.
10241
10242         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
10243         and FillReversibleRectangle.
10244
10245         * XplatUIWin32.cs: add stubs which do nothing for
10246         DrawReversibleFrame, DrawReversibleLine, and
10247         FillReversibleRectangle.
10248
10249         * XplatUIOSX.cs: add stubs which raise NIE for
10250         DrawReversibleFrame, DrawReversibleLine, and
10251         FillReversibleRectangle.
10252
10253         * XplatUIX11.cs: add working implementation for
10254         DrawReversibleFrame, DrawReversibleLine, and
10255         FillReversibleRectangle.
10256         
10257         * ControlPaint.cs: implement DrawReversibleFrame,
10258         DrawReversibleLine, and FillReversibleRectangle, by calling into
10259         the appropriate XplatUI method.
10260
10261 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10262
10263         * Form.cs: Make MdiClient have the focus even if it's
10264         not selectable, since it should receive WM_KEY* and WM_MOUSE 
10265         messages. Fixes #79907.
10266         
10267 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10268
10269         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
10270         queried after the window is created.
10271         
10272         * XplatUIX11.cs: Added SendParentNotify to implement 
10273         WM_PARENTNOTIFY logic. Fixes #79965.
10274         
10275         * Control.cs: Added MakeParam.
10276         
10277 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10278
10279         * MdiClient.cs: Resume Layout before setting window
10280         states (fixes #80201).
10281
10282 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10283
10284         * MenuAPI.cs: Deselect a menu item after performing
10285         the click (fixes #80197).
10286
10287 2006-12-11  Jackson Harper  <jackson@ximian.com>
10288
10289         * TextBoxBase.cs: We need to cap this value, since Maximum -
10290         ViewPortHeight can be less than zero.
10291         - Only do selection with the left mouse button.
10292         * TextBox.cs: Don't tell the world that we have a context menu.
10293         * Control.cs: New method so that we can control whether or not the
10294         context menu is visible outside MWF.
10295
10296 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
10297
10298         * ToolBarButton.cs: Fix text positon. 
10299
10300 2006-12-11  Miguel de Icaza  <miguel@novell.com>
10301
10302         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
10303
10304         * Control.cs (DoubleBuffered): Add implementation.
10305
10306         * Application.cs (OpenForms): Add.
10307
10308 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
10309
10310         * Form.cs: Use opacity instead of Opactiy to determine if we need
10311         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
10312
10313 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
10314
10315         * Control.cs: Fix NRE if Control.Site was set to null.
10316
10317 2006-12-11  Chris Toshok  <toshok@ximian.com>
10318
10319         * Control.cs: ControlCollection.Remove should return if the arg is
10320         null, and ControlCollection.SetChildIndex should raise a ANE.
10321
10322 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
10323
10324         * Control.cs: Verify value set for Dock property. Code formatting
10325         updates.
10326
10327 2006-12-11  Jackson Harper  <jackson@ximian.com>
10328
10329         * TextControl.cs: Draw the caret and the selection when a flag is
10330         set on the owner.
10331         * TextBoxBase.cs: We want to draw the caret and the selection for
10332         TextBox but not for TextBoxBase.
10333         - If the window is resized and scrolling is no longer needed (the
10334         whole doc is visible) set the scroll position to zero.
10335         - The default SelectWord (the one TextBox uses) should move the
10336         caret to the end of the word.
10337         - SelectAll moves the caret to the end of the selection.
10338         * TextBox.cs: We don't selectall on focus, we just do it when the
10339         control is created.
10340         
10341 2006-12-11  Mike Kestner  <mkestner@novell.com>
10342
10343         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
10344
10345 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10346
10347         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
10348         2.0 support.
10349         * ListViewItem.cs: Add Name 2.0 property.
10350
10351 2006-12-11  Andreia Gaita  <avidigal@novell.com>
10352
10353         * TabControl.cs: Set visibility on selected or default tab 
10354         when tabcontrol handle is created, so that it's contents
10355         actually show up (duh). Fixes #80193
10356         Don't redraw the control if there is no handle created, as
10357         the selected index might be completely invalid. Added some tests
10358         to check for this.
10359
10360 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
10361
10362         * ToolBar.cs: Uses maximun width and height of all buttons as 
10363         button rectangle when ButtonSize specified, it looks strange but
10364         is what happens in Win32. Fixes #80189.
10365
10366 2006-12-11  Jackson Harper  <jackson@ximian.com>
10367
10368         * TextControl.cs: Need to track undo levels ourself, since
10369         compound actions will mess them up.
10370
10371 2006-12-10  Andreia Gaita  <avidigal@novell.com>
10372
10373         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
10374         SelectedIndex value is changed (even if it's not valid).
10375         Reset SelectedIndex to 0 when the handle is created and if
10376         the current index is invalid.
10377         Fixes SelectdeIndex unit tests and #80128
10378
10379 2006-12-08  Chris Toshok  <toshok@ximian.com>
10380
10381         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
10382         calls EndEdit, it needs to be called before we set current_cell to
10383         its new value.  Otherwise, we end up committing the value in the
10384         textbox to the new cell as well.  Fixes bug #80160.
10385
10386 2006-12-08  Chris Toshok  <toshok@ximian.com>
10387
10388         * Form.cs (set_CancelButton): if the button's DialogResult is
10389         None, set it to Cancel.  Fixes bug 80180.
10390
10391 2006-12-08  Jackson Harper  <jackson@ximian.com>
10392
10393         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
10394         to watch ourselves when setting the canvas size and setting the
10395         scrollbar values.
10396
10397 2006-12-08  Chris Toshok  <toshok@ximian.com>
10398
10399         * DataGrid.cs: comment out the two MakeTransparent calls for the
10400         time being so people using trunk (and not 1.2.2) on windows can
10401         actually use the datagrid.  This deals with bug #80151.
10402
10403 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
10404
10405         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
10406         Graphics.DrawImage (image, int, int, int, int) overload instead
10407         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
10408         the dpi difference and was blurring images it drew.
10409         [Fixes bug #79960]
10410
10411 2006-12-08  Chris Toshok  <toshok@ximian.com>
10412
10413         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
10414         rowcnt is 0 (such as with an empty datasource), and make sure we
10415         initialize not_usedarea.Y to cells.Y, so we don't draw over the
10416         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
10417
10418 2006-12-08  Chris Toshok  <toshok@ximian.com>
10419
10420         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
10421         grid.
10422
10423 2006-12-08  Chris Toshok  <toshok@ximian.com>
10424
10425         [ Fixes bug #80167 ]
10426         
10427         * ThemeWin32Classic.cs: don't draw the image if the button's flat
10428         style is FlatStyle.System.
10429
10430         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
10431         ButtonBase.flat_style private, and switch uses of it to the public
10432         property.
10433         
10434 2006-12-08  Chris Toshok  <toshok@ximian.com>
10435
10436         [ Fixes bug #80121 ]
10437         
10438         * ThemeWin32Classic.cs: center the caption text in the datagrid
10439         when we draw it.
10440
10441         * DataGrid.cs: lessen the amount we add to the caption height from
10442         6 to 2.  6 was making it huge.
10443
10444 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10445
10446         * UpDownBase: Handle MouseWheel call directly instead of capturing
10447         the inner textbox's OnMouseWheel. Fixes #80166
10448
10449 2006-12-08  Jackson Harper  <jackson@ximian.com>
10450
10451         * TextControl.cs: We need to invalidate the textbox when we empty
10452         it (how had this not been discovered before?)
10453
10454 2006-12-08  Jackson Harper  <jackson@ximian.com>
10455
10456         * TextBoxBase.cs: Reworked the mouse down code so I could get it
10457         to behave like MS, we now ignore the eventargs.Click and just
10458         track state ourself, which we were already doing anyways.
10459         - Constrain the double click handler to the double click size.
10460         
10461 2006-12-08  Chris Toshok  <toshok@ximian.com>
10462
10463         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
10464         direction if that scrollbar isn't shown.  fixes bug #80158.
10465
10466 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10467
10468         * NumericUpDown.cs: Update value on getter. Fixes #79950
10469
10470 2006-12-08  Chris Toshok  <toshok@ximian.com>
10471
10472         * MenuItem.cs: add back in the event cloning code.  I didn't know
10473         how to do it in the face of the EventHandlerList work i'd done
10474         last week.  Fixes bug #80183.
10475
10476 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
10477
10478         * Control.cs: Add an invalidate to the BackgroundImage setter.
10479         [Fixes 80184]
10480
10481 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10482
10483         * ToolStrip*: Add some small properties reported by MoMA, fix event
10484         firing and default properties based off of unit tests, and add some
10485         attributes based off of the class status page.
10486
10487 2006-12-07  Jackson Harper  <jackson@ximian.com>
10488
10489         * TextBoxBase.cs: Take HideSelection into account when determining
10490         whether or not to show the selection.
10491         * RichTextBox.cs: After inserting the RTF into the document move
10492         the cursor to the beginning of the document.
10493
10494 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10495
10496         * Control.cs: Remove static ArrayList "controls" which maintained
10497         a reference to every control created.
10498         * Application.cs: Create a static FormCollection to maintain a reference
10499         to every form created.  Use it in places that formerly enumerated through
10500         the controls one looking for forms.
10501         * Form.cs: Add and remove self from above FormCollection.
10502
10503 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
10504
10505         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
10506           not libgdk (though it makes me wonder why I didn't have any
10507           problems)
10508
10509 2006-12-07  Chris Toshok  <toshok@ximian.com>
10510
10511         [ you had to know this was coming after that last commit...]
10512         
10513         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
10514         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
10515         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
10516         XCopyArea).
10517
10518 2006-12-07  Chris Toshok  <toshok@ximian.com>
10519
10520         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
10521         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
10522         all the behavior we need for double buffering.
10523
10524         * XplatUIDriver.cs: implement the 3 double buffer methods using a
10525         client side Bitmap, just like the old Control-based double buffer
10526         code did.  The methods are virtual, so each XplatUI driver
10527         subclass can replace the implementation to use a faster, platform
10528         specific approach.
10529
10530         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
10531         double buffer code, and clean things up a bit in the process.
10532
10533 2006-12-06  Chris Toshok  <toshok@ximian.com>
10534
10535         * Control.cs: reindent WndProc.
10536
10537 2006-12-06  Chris Toshok  <toshok@ximian.com>
10538
10539         [ I wanna be like BenM when I grow up ]
10540         
10541         * Hwnd.cs: create a single static Graphics object on the static
10542         Bitmap we create.  use this for our text measurements.
10543
10544         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
10545         This was causing us to allocate a backbuffer for every control,
10546         even when it wasn't flagged as double buffered.  Instead use the
10547         single graphics instance.  This might have implications for
10548         multithreaded applications.  If we run into problems we can switch
10549         to creating 1 Graphics per control, on the static Hwnd bitmap.
10550
10551         this change nets us a 7M savings in private dirty mappings when
10552         running FormsTest.exe.
10553
10554 2006-12-06  Chris Toshok  <toshok@ximian.com>
10555
10556         * ListView.cs: the BackgroundImage override is just to set
10557         attributes.  chain up to base.BackgroundImage.
10558
10559         * RichTextBox.cs: same.
10560
10561         * ToolBar.cs: same, but we need to also redraw the toolbar when it
10562         changes, so instead a handler for BackgroundImageChanged.
10563         
10564         * Control.cs: make background_image private.
10565
10566 2006-12-06  Chris Toshok  <toshok@ximian.com>
10567
10568         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
10569         sure we even need this assignment, but roll with it for now.
10570
10571         * Control.cs: make the cursor field private.
10572
10573 2006-12-06  Chris Toshok  <toshok@ximian.com>
10574
10575         * Form.cs: we don't need to explicitly set ImeMode to
10576         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
10577         behavior in the face of ImeMode.Inherit.
10578
10579         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
10580         change the ctor's assignment to use ImeMode instead of ime_mode.
10581
10582         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
10583         ImeModeInherit.  Only check for the parent's imemode (and return
10584         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
10585         This fixes the button unit test, which sets both ImeMode and
10586         DefaultImeMode to ImeMode.Disable.
10587
10588         also make the ime_mode field private.
10589
10590 2006-12-06  Chris Toshok  <toshok@ximian.com>
10591
10592         * Control.cs: make control_style private.
10593
10594         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
10595         setting the styles to true, then setting them to false instead of
10596         reverting to their previous values.
10597
10598         also, call SetStyle on the scrollbars instead of using
10599         control_style directly.
10600
10601 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
10602
10603         * FormCollection.cs: Implement. [2.0]
10604
10605 2006-12-06  Chris Toshok  <toshok@ximian.com>
10606
10607         * Control.cs: make tab_stop private.
10608
10609         * Label.cs: set TabStop, not tab_stop.  reformat some event
10610         add/remove methods to make them more compact.
10611
10612 2006-12-06  Chris Toshok  <toshok@ximian.com>
10613
10614         * RadioButton.cs: fix TabStop handling.
10615
10616 2006-12-06  Chris Toshok  <toshok@ximian.com>
10617
10618         * TextBox.cs: remove the explicit assignments to has_focus.
10619         Control does that.
10620
10621         * ButtonBase.cs: remove the assignment to has_focus.  Control will
10622         manage that.
10623         
10624 2006-12-06  Chris Toshok  <toshok@ximian.com>
10625
10626         * ButtonBase.cs: remove all uses of is_enabled from this code.
10627         it's always true when any of the code containing the checks is
10628         executed.
10629
10630 2006-12-06  Chris Toshok  <toshok@ximian.com>
10631
10632         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
10633         with different semantics (some are present in both 1.1 and 2.0
10634         profiles) so that we match MS's behavior in our unit tests.
10635
10636 2006-12-06  Jackson Harper  <jackson@ximian.com>
10637
10638         * TextControl.cs: Make this operation undoable.
10639         * TextBoxBase.cs: Factor the border width into the preferred
10640         height.
10641         - implement Modified as per the spec.
10642
10643 2006-12-06  Chris Toshok  <toshok@ximian.com>
10644
10645         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
10646
10647 2006-12-06  Chris Toshok  <toshok@ximian.com>
10648
10649         * Control.cs: make right_to_left and context_menu fields private.
10650
10651 2006-12-06  Chris Toshok  <toshok@ximian.com>
10652
10653         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
10654         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
10655         Control.child_controls private.  switch all uses over to
10656         Control.Controls.
10657
10658 2006-12-06  Chris Toshok  <toshok@ximian.com>
10659
10660         * System.Windows.Forms/GroupBox.cs,
10661         System.Windows.Forms/AccessibleObject.cs,
10662         System.Windows.Forms/ErrorProvider.cs,
10663         System.Windows.Forms/Control.cs,
10664         System.Windows.Forms/UpDownBase.cs,
10665         System.Windows.Forms/ScrollBar.cs,
10666         System.Windows.Forms/DateTimePicker.cs,
10667         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
10668         System.Windows.Forms/ToolTip.cs,
10669         System.Windows.Forms/RadioButton.cs,
10670         System.Windows.Forms/LinkLabel.cs,
10671         System.Windows.Forms/Splitter.cs,
10672         System.Windows.Forms/TextBoxBase.cs,
10673         System.Windows.Forms/ToolStripTextBox.cs,
10674         System.Windows.Forms/ContainerControl.cs,
10675         System.Windows.Forms/ThemeWin32Classic.cs,
10676         System.Windows.Forms/SizeGrip.cs,
10677         System.Windows.Forms/ToolStripDropDown.cs,
10678         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
10679         private.  switch all uses over to Control.Parent.
10680
10681 2006-12-06  Chris Toshok  <toshok@ximian.com>
10682
10683         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
10684         Control does this before calling emitting these events.
10685
10686         * TabControl.cs: same.
10687
10688         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
10689         Control.client_rect.
10690
10691         * ButtonBase.cs: use the ClientSize property instead of the
10692         client_size field.
10693
10694         * ScrollableControl.cs: same.
10695
10696         * Control.cs: another pass at making properties private.  also,
10697         move the initialization of tab_stop to the ctor.
10698
10699 2006-12-05  Andreia Gaita <avidigal@novell.com>
10700
10701         * TabControl.cs: Let the selected index be set freely if the 
10702         control handle is not yet created.
10703
10704 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10705
10706         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
10707         internal until I can rewrite DefaultLayout.
10708         * ToolStrip.cs: Fix build error and some general cleaning.
10709         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
10710         Fix build errors caused by making some of Control's fields private.
10711
10712 2006-12-05  Jackson Harper  <jackson@ximian.com>
10713
10714         * TextControl.cs: Redo Insert a little so that it use IndexOf
10715         instead of Split, this prevents it from messing up on things like
10716         \n\n\n. Also more effecient since the split array doesn't need to
10717         be created.
10718         * TextBoxBase.cs: AppendText doesnt handle multiline and non
10719         multiline text differently, this is the first of many fixes that
10720         will make multiline/non-multiline the same thing as far as the
10721         TextBoxBase is concerned.
10722         - Don't split the text and insert lines, this can lose some line
10723         endings (like is the last line a soft or hard break). Instead use
10724         the new Insert.
10725         - Fix an off by one when combining all the lines in the Text
10726         getter.
10727         - Remove separate multiline handling from the Text getter/setter.
10728
10729 2006-12-05  Chris Toshok  <toshok@ximian.com>
10730
10731         * ButtonBase.cs: a few changes:
10732
10733         - don't reinitialize internal Control fields in the ctor when they
10734         have the same values as Control sets them.
10735
10736         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
10737         this before calling those methods.
10738
10739         - we don't need to call Refresh for anything.  use Invalidate
10740         instead.
10741
10742         - OnEnabledChanged doesn't need to redraw at all - Control.cs
10743         calls Refresh in its OnEnabledChanged.
10744         
10745         - several of the events we were registered for in the ctor to
10746         redraw ourselves already include calls to Invalidate in the
10747         property setters that raise the events.  remove the extra
10748         invalidation.
10749
10750         - reformat a switch statement that was 83274658 columns wide.
10751         
10752 2006-12-05  Mike Kestner  <mkestner@novell.com>
10753
10754         * ComboBox.cs: fix a unit test regression from a TextBox
10755         SelectionLength return of -1 when there's no selection.  
10756
10757 2006-12-05  Chris Toshok  <toshok@ximian.com>
10758
10759         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
10760         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
10761         cleaning up some of the internal Control fields being used by
10762         subclasses.
10763
10764 2006-12-05  Mike Kestner  <mkestner@novell.com>
10765
10766         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
10767         listbox after AddImplicit calls since it defaults to hidden. Add a 
10768         hack to preserve requested heights across DropDownStyle changes.
10769
10770 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10771
10772         * PropertyGrid.cs: Hide FindFirstItem method from public API.
10773
10774 2006-12-05  Chris Toshok  <toshok@ximian.com>
10775
10776         * DataGridView.cs: fix compiler warnings.
10777
10778         * PrintControllerWithStatusDialog.cs: same.
10779
10780         * ToolBar.cs: same.
10781
10782         * FolderBrowserDialog.cs: same.
10783
10784         * Splitter.cs: same.
10785
10786         * DataGridViewComboBoxCell.cs: same.
10787
10788         * XplatUIWin32.cs: same.
10789
10790         * PictureBox.cs: same.
10791
10792         * Win32DnD.cs: same.
10793
10794         * PageSetupDialog.cs: same.
10795
10796         * FileDialog.cs: same.
10797
10798         * PrintDialog.cs: same.
10799
10800         * DataGridTextBoxColumn.cs: same.
10801
10802         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
10803
10804 2006-12-05  Chris Toshok  <toshok@ximian.com>
10805
10806         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
10807         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
10808         System.ComponentModel.EventHandlerList work.
10809
10810 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
10811
10812         * DrawTreeNodeEventArgs.cs: Added.
10813
10814 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10815         
10816         * InternalWindowManager.cs: Remove an unused field.
10817         
10818 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10819
10820         * InternalWindowManager.cs:
10821         - Save the point where the title bar is clicked.
10822         
10823         * MdiWindowManager.cs:
10824         - Only allow moving of the window as long as the 
10825         clicked point on the title bar does not get out of
10826         MdiClient's rectangle. Fixes #79982.
10827         
10828         * MdiClient.cs:
10829         - Added Horizontal/VerticalScrollbarVisible.
10830         - Simplified the scrollbar sizing algorithm.
10831         - Cache the difference in scrolled value in
10832         H/VBarValueChanged and move the calculation out
10833         of the for loop.
10834
10835 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10836
10837         * Control.cs: Make the Console.WriteLine in WndProc 
10838         write more info.
10839
10840 2006-12-05  Chris Toshok  <toshok@ximian.com>
10841
10842         * ToolStripManager.cs, ToolStripButton.cs,
10843         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
10844         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
10845         ToolStripSplitButton.cs, ToolStripSeparator.cs,
10846         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
10847         ToolStripProgressBar.cs, ToolStripContainer.cs,
10848         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
10849         to using System.ComponentModel.EventHandlerList.
10850
10851 2006-12-04  Chris Toshok  <toshok@ximian.com>
10852
10853         * LinkLabel.cs: fix up compiler warnings.
10854
10855         * TableLayoutSettings.cs: same.
10856
10857         * TreeView.cs: same.
10858
10859         * ToolBar.cs: same.
10860
10861         * TabControl.cs: same.
10862
10863         * RichTextBox.cs: same.
10864
10865         * ListViewItem.cs: same.
10866
10867         * PropertyGrid.cs: same.
10868
10869         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
10870
10871         * ToolTip.cs same.
10872
10873         * TextRenderer.cs: fix up compiler warnings.
10874
10875         * Label.cs: same.
10876
10877         * Form.cs: corcompare fixes.
10878
10879         * PictureBox.cs: fix up compiler warnings.
10880
10881         * ImageListStreamer.cs: same.
10882
10883         * TrackBar.cs: corcompare fix.
10884
10885         * Control.cs: fix up compiler warnings.
10886
10887         * SplitterPanel.cs: same.
10888
10889         * NumericTextBox.cs: same.
10890
10891         * ImageList.cs: same.
10892
10893         * StatusStrip.cs: same.
10894
10895         * ProgressBar.cs: corcompare fix.
10896
10897         * ToolStripButton.cs: fix up compiler warnings.
10898
10899         * ToolStripStatusLabel.cs: same.
10900
10901         * ToolStripSplitButton.cs: same.
10902
10903         * ToolStripSeparator.cs: same.
10904
10905         * ToolStripProgressBar.cs: same.
10906
10907         * ToolStripDropDownMenu.cs: same
10908
10909         * ToolStripDropDown.cs: same.
10910
10911         * ToolStripDropDownButton.cs: same.
10912
10913         * ToolStrip.cs: same.
10914
10915         * ToolStripControlHost.cs: same.
10916
10917         * ToolStripContentPanel.cs: same.
10918
10919         * ToolStripDropDown.cs: same.
10920
10921         * ToolStripContainer.cs: same.
10922
10923         * ToolStripPanel.cs: same, and add "new" where we need it to work
10924         with the new ArrangedElementCollection.
10925
10926         * ToolStripItemCollection.cs: add "new" where we need it to work
10927         with the new ArrangedElementCollection.
10928
10929 2006-12-04  Andreia Gaita <avidigal@novell.com>
10930
10931         * TabControl.cs: Fix default tab selection to after TabControl
10932         gets focus and not before. Fixes #80128
10933
10934 2006-12-04  Chris Toshok  <toshok@ximian.com>
10935
10936         * DataGridTableStyle.cs: remove the gross calling of
10937         datagrid.Refresh from here.  It's a broken idea and it doesn't
10938         work anyway.
10939
10940         * DataGrid.cs: instead, just register/unregister from the
10941         DataGridTableStyle events in CurrentTableStyle.  we play it
10942         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
10943         even though some would most likely not require it.  Fixes bug
10944         #80115 (and one portion of #80117 as a side effect).
10945
10946 2006-12-04  Chris Toshok  <toshok@ximian.com>
10947
10948         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
10949         so the textbox (if any) goes away.  Fixes bug #80117.
10950
10951 2006-12-04  Chris Toshok  <toshok@ximian.com>
10952
10953         * DataGridColumnStyle.cs: set the column's readonly property
10954         initially based on the property descriptor's IsReadOnly.  Fixes
10955         bug #80044.
10956
10957 2006-12-04  Chris Toshok  <toshok@ximian.com>
10958
10959         * ComboBox.cs: wrap the dropdown style changing work in
10960         SuspendLayout/ResumeLayout.  Fixes bug #79968.
10961
10962 2006-12-04  Jackson Harper  <jackson@ximian.com>
10963
10964         * TextBoxBase.cs: Fix off by one, since these are one-based.
10965         * TextBox.cs: Select all the text when we get focus.  The TextBox
10966         does this but the RTB does not.
10967
10968 2006-12-04  Chris Toshok  <toshok@ximian.com>
10969
10970         * DataGridTextBoxColumn.cs: remove some spew.
10971
10972         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
10973         but some part of me is saying "it shouldn't be here.."  At any
10974         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
10975         setting the value.
10976
10977 2006-12-04  Chris Toshok  <toshok@ximian.com>
10978
10979         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
10980         to reassign the propertydescriptor.
10981
10982 2006-12-04  Jackson Harper  <jackson@ximian.com>
10983
10984         * TextBoxBase.cs:
10985         * TextControl.cs: Remove some unused variables.  Maybe this will
10986         patch things up between mike and I.
10987         - don't split lines less then one char wide, if the viewport is
10988         that small text won't be visible anyways.
10989         
10990 2006-12-04  Jackson Harper  <jackson@ximian.com>
10991
10992         * TextBoxBase.cs: Default selection length is -1, need to do some
10993         more testing on windows to see when this is used for the property.
10994         - Redid the Lines [] property to that we properly remove soft line
10995         breaks
10996         - added support for preserving carriage returns
10997         -  CanUndo is not a variable like 'is undo enabled' it just returns
10998         true if there is undo operations available.
10999         - AppendText doesn't need to grab the last tag itself anymore,
11000         this happens automatically when we move the cursor.
11001         * TextControl.cs: Add CompoundActions to the undo class. This
11002         allows combining the other operations into one big option.  ie a
11003         paste will combine { delete old, insert new, move cursor }
11004         - Add InsertString undo operation
11005         - New method for deleting multiline text
11006         - Add carriage returns to lines. So we can preserve carriage
11007         returns when text is 'roundtripped'
11008
11009 2006-12-04  Chris Toshok  <toshok@ximian.com>
11010
11011         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
11012         minimum 0.  Fixes the scrollbar exception in bug #80136.
11013
11014 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11015
11016         * MdiClient.cs: 
11017         * MdiWindowManager: Removed unused fields and methods.
11018         
11019 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11020         
11021         * StatusBar.cs: Update all panels when a AutoSize=Contents
11022         panel needs updating.
11023         
11024         * StatusBarPanel.cs: Remove twidth and only use initialize.
11025         Fixes #80031.
11026                 
11027 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11028
11029         * Form.cs: When a form's MdiParent is set add it directly
11030         on top of the z-order in stead of relying on MdiClient's
11031         ActivateChild to do it. Fixes #80135.
11032         
11033         * MdiClient.cs: 
11034         - Remove original_order, mdi_child_list is already doing
11035         the same thing.
11036         - Create mdi_child_list on construction in
11037         stead of first use (avoids a few null checks).
11038
11039         * MenuItem.cs: Use an already existing list of mdi children
11040         to get the correct order of children and remove the other
11041         redundant list.
11042
11043 2006-12-04  Chris Toshok  <toshok@ximian.com>
11044
11045         * PropertyGridView.cs: cached_splitter_location is only used in
11046         !DOUBLEBUFFER code.
11047
11048         * PropertyGrid.cs: implement the ComComponentNameChanged event
11049         using Events, hoping that would fix the warning.  Looks like a
11050         compiler bug instead (#80144).
11051
11052         * PropertyManager.cs: remove unused method.
11053
11054 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
11055
11056         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
11057         include parentesis to fix expression evaluation. Fixes #79634.
11058
11059 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
11060         
11061         * MenuAPI.cs:
11062         - Changes to fix behavior in Menu control, some reported in #80097
11063         and other detected during behavior refactory like a select event
11064         problems.
11065         - Remove unneded "if's" conditions.
11066         - Created an internal to flag when popup is active in control, we need 
11067         it because in .NET you can have menu active but without popup active
11068         when you active menu using popup without visible items.
11069         - Mimic win32 behavior for Select and Popup events.  
11070         - Dont open popup menu when you dont have visible subitems.
11071         - Do nothing when click on disabled menu item.
11072         - Some small changes to follow the coding style guidelines.
11073         - Unselect menu only when another control gives focus. Fixes #80097.
11074         - Remove unused code.
11075         
11076         * MenuItem.cs: internal VisibleItems method to check if menu
11077         theres visible subitems, it will be usefull to fix some 
11078         behavior in Menu control.
11079         
11080 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
11081         
11082         * Timer.cs: Tag property for 2.0 profile.
11083         
11084 2006-12-01  Chris Toshok  <toshok@ximian.com>
11085
11086         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
11087         
11088         * Win32DnD.cs: comment out some unused fields.
11089
11090         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
11091         some unused properties/methods.
11092
11093         * XplatUIX11.cs: fix MousePosition so we override the base class's
11094         property instead of conflicting with it.
11095
11096         * PictureBox.cs: comment out some unused fields
11097
11098         * OSXStructs.cs: make some struct fields public.
11099
11100         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
11101         MousePosition so we override the base class's property instead of
11102         conflicting with it.
11103
11104         * X11Dnd.cs: comment out some unused fields
11105
11106         * X11DesktopColors.cs: fix some struct field visibility to quiet
11107         the compiler.
11108
11109         * X11Dnd.cs: remove some debug code.
11110
11111         * ThemeClearlooks.cs: comment out unused field.
11112
11113         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
11114
11115         * ThemeGtk.cs: comment out some unused pinvokes.
11116
11117         * Timer.cs: remove some unused fields.
11118
11119         * ThemeClearlooks.cs: comment out unused field.
11120
11121         * UpDownBase.cs: comment out unused field.
11122
11123         * DataObject.cs: comment out unused field.
11124
11125         * DataGridBoolColumn.cs: reomve unused field.
11126
11127         * DataGrid.cs: remove unused field.
11128
11129         * Cursor.cs: remove old ToBitmap code.
11130
11131         * ControlPaint.cs: remove unused method.
11132
11133         * ScrollBar.cs: remove unused fields.
11134
11135         * ComboBox.cs: remove unused field, and chain up to
11136         AccessibleObject ctor.
11137
11138         * ListBox.cs: remove unused field.
11139
11140         * ButtonBase.cs: wrap a couple fields in NET_2_0.
11141
11142         * GridEntry.cs: remove unused fields.
11143
11144         * Binding.cs: remove unused fields.
11145
11146         * AxHost.cs: remove unused method.
11147
11148         * ContainerControl.cs: remove unused field.
11149
11150         * ScrollableControl.cs: remove unused fields.
11151
11152 2006-12-01  Chris Toshok  <toshok@ximian.com>
11153
11154         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
11155         the Where/WhereString stuff.  it's easy enough to CWL
11156         Environment.StackTrace.
11157
11158         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
11159         unused private fields.
11160
11161 2006-12-01  Jackson Harper  <jackson@ximian.com>
11162
11163         * TextControl.cs: Do not update the view while inserting multiline
11164         text. If we update the view we might wrap lines, before entering
11165         the new lines, which causes the new line insertion calculations to
11166         be totally fubared.
11167         - Remove an old TODO
11168         - Make debug output a little nicer
11169         
11170 2006-12-01  Chris Toshok  <toshok@ximian.com>
11171
11172         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
11173
11174 2006-12-01  Chris Toshok  <toshok@ximian.com>
11175
11176         [ fix the majority of the CS0108 warnings we've been suppressing ]
11177         
11178         * TreeView.cs: mark BackgroundImageChanged as 'new'.
11179
11180         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
11181         to "LayoutToolBar" to quiet mcs.
11182         
11183         * TabControl.cs: mark our ControlCollection class as 'new'.
11184
11185         * TextBoxBase.cs: mark some events as 'new'.
11186
11187         * Splitter.cs: TabStop is 'new'.
11188
11189         * ControlBindingsCollection.cs: mark a few methods as new since
11190         they change the visibility from protected to public.
11191
11192         * RadioButton.cs: DoubleClick -> base class, and remove unused
11193         HaveDoubleClick.
11194
11195         * MonthCalendar.cs: ImeMode property -> base class, and mark many
11196         events as new.
11197
11198         * NumericUpDown.cs: TextChanged -> base class.
11199
11200         * CheckedListBox.cs: mark our ObjectCollection class as new to
11201         quiet mcs.
11202
11203         * FolderBrowserDialog.cs: make HelpRequest event new and have it
11204         muck with the base class.
11205
11206         * StatusBar.cs: fix some mcs warnings about Update being the same
11207         name as a base class method.
11208
11209         * RichTextBox.cs: mark some events as new, and make them do things
11210         to the base class impl.
11211
11212         * UserControl.cs: mark TextChanged as new, and have it manipulate
11213         base.TextChanged.
11214
11215         * UpDownBase.cs: mark some things new.
11216
11217         * CheckBox.cs: mark DoubleClick "new", and add some text about
11218         what we need to look at.
11219
11220         * Panel.cs: make the events "new", and manipulate the base
11221         version.  these are just here for attributes.
11222
11223         * AccessibleObject.cs: make owner private.
11224
11225         * Control.cs: deal with AccessibleObject.owner being private.
11226         cache our own copy if we need it.
11227
11228         * Button.cs: add "new" to the DoubleClickEvent.
11229
11230         * ListBox.cs: no need to track our own has_focus here.  let
11231         Control.has_focus do it for us.  Also some other work to clear up
11232         warnings about not overriding base class methods of the same name.
11233         
11234         * ComboBox.cs: clear up some warnings about not override base
11235         class methods of the same name.
11236
11237 2006-12-01  Chris Toshok  <toshok@ximian.com>
11238
11239         * Form.cs: flag a few things as "new" to quiet some of the mcs
11240         warnings.
11241
11242         * AxHost.cs: same.
11243
11244         * PrintPreviewDialog.cs: same.
11245
11246         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
11247         now DGV isn't so horrible on the class status page.  also, move
11248         all events to using System.ComponentModel.EventHandlerList.  my
11249         wrists hurt.
11250
11251 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11252
11253         * MdiWindowManager.cs:
11254         - Set form to active mdi child if shown,
11255         and update the active mdi child to the next 
11256         remaining child in the z-order if the form is hidden.
11257
11258         * Form.cs: 
11259         - Track if the form has been visible and if its 
11260         visibility is beeing changed, so that the MdiClient
11261         can properly decide the ActiveMdiChild. The MdiClient 
11262         cannot track this since the form can change visibility 
11263         before MdiClient is created.
11264
11265         * MdiClient.cs:
11266         - Don't activate anything of the parent form is changing
11267         its visibility.
11268         - Rework ActiveMdiChild to only return visible mdi 
11269         children and take into account several other corner 
11270         cases.
11271
11272 2006-12-01  Chris Toshok  <toshok@ximian.com>
11273
11274         * IBindableComponent.cs: new 2.0 interface.
11275
11276 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
11277
11278         * DataGrid.cs: Font for caption area is bold by default.
11279
11280 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
11281
11282         * Menu.cs: Tag property for 2.0.
11283         
11284 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
11285
11286         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
11287         
11288 2006-12-01  Chris Toshok  <toshok@ximian.com>
11289
11290         * TreeView.cs: doh, the Begin* events should be
11291         TreeViewCancelEventHandler.
11292
11293 2006-12-01  Chris Toshok  <toshok@ximian.com>
11294
11295         * Form.cs: Form.ControlCollection already stores off the
11296         form_owner field.  don't access the base class's internal "owner"
11297         field.
11298
11299         * Control.cs: make all the fields in Control.ControlCollection
11300         private.  there's no need for any internal fields here.
11301
11302 2006-12-01  Chris Toshok  <toshok@ximian.com>
11303
11304         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
11305         OnHandleCreated.  Fixes bug #80109.
11306
11307 2006-12-01  Chris Toshok  <toshok@ximian.com>
11308
11309         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
11310         SplitContainer.cs, Control.cs, StatusStrip.cs,
11311         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
11312         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
11313         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
11314         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
11315         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
11316         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
11317         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
11318         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
11319         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
11320         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
11321
11322         do most of the work to convert our code over to use
11323         System.ComponentModel.Component.Events for
11324         adding/removing/dispatching events.
11325
11326
11327 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
11328
11329         * DataGridView.cs: Fix an ArgumentNullException reported 
11330         twice today in IRC.
11331
11332 2006-11-30  Mike Kestner  <mkestner@novell.com>
11333
11334         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
11335         grabbed listbox.  Fixes #80036 and #80101.
11336
11337 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
11338
11339         * Message.cs: Changed ToString() to match MS.
11340         
11341 2006-11-30  Jackson Harper  <jackson@ximian.com>
11342
11343         * TextBoxBase.cs: You can still change the selected text on a read
11344         only textbox.
11345         * TextControl.cs: Lower magic number for wrap calculations. This
11346         lets text get closer to the right (far) edge.
11347
11348 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
11349
11350         * Control.cs: Tweak 2.0 layout properties.
11351         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
11352         * TextRenderer.cs: Add a new overload.
11353         * ToolStrip*: Huge amount of changes and new features.
11354
11355 2006-11-30  Mike Kestner  <mkestner@novell.com>
11356
11357         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
11358         scroll range correct.  Fixes #79994.
11359
11360 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
11361
11362         * MdiWindowManager.cs: Update main form's text when
11363         a form is closed. (fixes #80038)
11364         
11365 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
11366
11367         * ToolBar.cs:
11368         - Fix an regression in ButtonSize.
11369         - Get ImeMode default value change to "Disable".
11370         - Get ShowTooltips default value change to true, default value is 
11371         "false" but after make a test in .NET we get "true" result as default.
11372         
11373 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
11374
11375         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
11376
11377 2006-11-29  Chris Toshok  <toshok@ximian.com>
11378
11379         * XplatUIWin32.cs (GetWindowTransparency): check return value of
11380         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
11381         SetWindowTransparency hasn't been called.
11382
11383 2006-11-29  Chris Toshok  <toshok@ximian.com>
11384
11385         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
11386         if it's supported.
11387         (set_AllowTransparency): reorder things a little so that the
11388         WS_EX_LAYERED style is removed properly.
11389
11390 2006-11-29  Chris Toshok  <toshok@ximian.com>
11391
11392         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
11393         
11394         * Form.cs: only call the XplatUI transparency method (get/set) if
11395         SupportsTransparency says it's supported. Otherwise fallback to
11396         doing nothing (in the set case) or returning the instance field we
11397         cache (in the get case).
11398
11399         * XplatUIStructs.cs: add TransparencySupport flag enum.
11400         
11401         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
11402         change to SupportsTransparency.
11403
11404         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
11405         TransparencySupport.None from SupportsTransparency.
11406
11407         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
11408         TransparencySupport.Set from SupportsTransparency.
11409
11410         * XplatUIWin32.cs: implement GetWindowTransparency calling
11411         GetLayeredWindowAttributes, and implement SupportsTransparency by
11412         checking whether or not both
11413         GetWindowTransparency/SetWindowTransparency are available
11414         entrypoints.  We need to do this since SetWindowTransparency is
11415         available as of win2k, but GetWindowTransparency requires winxp.
11416         yay win32 api.
11417
11418         * XplatUI.cs: Add GetWindowTransparency, and change
11419         SupportsTransparency to allow for either/both Get/Set.
11420
11421 2006-11-29  Chris Toshok  <toshok@ximian.com>
11422
11423         * DataGrid.cs: keep from going into an infinite loop redrawing a
11424         datagrid that has no datasource.  Fixes bug #80033.
11425
11426 2006-11-29  Chris Toshok  <toshok@ximian.com>
11427
11428         * MenuItem.cs: fix the NRE when we assign text (and therefore call
11429         Invalidate) before the mainmenu has been assigned to a control.
11430
11431 2006-11-29  Chris Toshok  <toshok@ximian.com>
11432
11433         * DataGrid.cs: detect when we should be double the double click
11434         row/column autosize stuff, although that codepath has yet to be
11435         written.  part of the work for bug #79891.
11436
11437 2006-11-29  Chris Toshok  <toshok@ximian.com>
11438
11439         * Binding.cs (SetControl): fix unit test.
11440
11441 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11442
11443         * PageSetupDialog.cs: Validate the margins and set them in
11444         PageSettings. 
11445         * NumericTextBox.cs: New class to mimic the behavior of the
11446         textboxes used in the printing dialogs.
11447
11448 2006-11-29  Andreia Gaita  <avidigal@novell.com>
11449         
11450         * Form.cs: Revert previous change (remove call UpdateBounds
11451         from form constructor), because it messes with the handle creation
11452         order, and that one needs lots and lots of love.
11453         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
11454         for valid printer and throw InvalidPrinterException if document
11455         is set but printer not valid), adding a MonoTODO. Once 
11456         handle creation is done properly, we can put this back in.
11457
11458 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11459
11460         * MenuItem.cs: Create a invalidate method for menu item, to be
11461         calling from set text, it make text changes to imadiate update
11462         on screen. Fixes #80013. 
11463         
11464 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11465
11466         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
11467         fixes bug #80070 and some other problem on toolbar buttons
11468         layout.
11469
11470 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11471
11472         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
11473         with dotted brush.      Fixes #79564
11474         
11475 2006-11-28  Andreia Gaita  <avidigal@novell.com>
11476
11477         * Form.cs: Removed call to UpdateBounds on Form
11478         constructor, it was causing a call to CreateHandle
11479         before it was supposed to.
11480         * PrintControllerWithStatusDialog: Applied patch
11481         by Chris Toshok to hide controller when there are
11482         no printers available.
11483         PrintDialog.cs: initialize printer settings to 
11484         null - correct DefaultValues test #5
11485         * PrintPreviewControl.cs: Move PrintController
11486         initialization to GeneratePreview
11487         * PrintPreviewDialog.cs: 
11488         - Remove Preview generation     from Document_set(). It is 
11489         called on OnPaint
11490         - Throw InvalidPrinterException on CreateHandle if
11491         a Document is set but there are no printers or 
11492         printer is not valid.
11493         * ThemeWin32Classic: don't paint PrintPreviewControl
11494         if there is nothing to paint    
11495
11496 2006-11-28  Miguel de Icaza  <miguel@novell.com>
11497
11498         * Form.cs: Add another popular method.
11499
11500         * TabPage.cs: ditto.
11501
11502 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11503
11504         * MenuItem.cs: Fixed a warning.
11505         * InternalWindowManager: Fixed a warning.
11506
11507 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11508
11509         * MenuItem.cs:
11510         - When cloning a menu also clone MdiList and clone the 
11511           window menu items properly (as the forms and menuitems
11512           are kept in an internal hashtable, these need updating 
11513           as well)
11514         - Rewrote the window menu code, menu items are added in the
11515           order the forms were added to their parent, and they are
11516           updated every time the window menu is shown (before the
11517           list was only generated once, in the current order of the
11518           forms, and would never be updated). A checkmark is shown
11519           next to the item corresponding to the active mdi child.
11520
11521 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11522
11523         * XplatUIStructs.cs: 
11524         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
11525         
11526         * XplatUIWin32.cs: 
11527         - Added TME_NONCLIENT to TMEFlags.
11528         - Handles WM_NCMOUSEMOVE in GetMessage to 
11529           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
11530
11531         * MdiWindowManager:
11532         - Now merges mdi child menu to parent menu when maximized.
11533         - Recalculate NC areas of both mdi child and mdi parent. 
11534           Fixes #79757 (4).
11535           on window state and size changes.Fixes #79844 (3).
11536         - Handle WM_NCCALCSIZE to properly calculate borders.
11537
11538         * Form.cs:
11539         - Add/remove to the mdi containers list of mdi children 
11540           in the order they are added.
11541         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
11542           to the maximized mdi child.
11543         
11544         * InternalWindowManager.cs:
11545         - Only execute a click on the control buttons on the mouse up,
11546           not on the mouse down. Show the state of the button 
11547           (was only showing Normal state, never Pressed state). The
11548           pressed button now follows the mouse (if you click the Close 
11549           button and move the mouse over the Maximize button, the 
11550           Maximize button will be shown as pressed). Since Win32 does
11551           not generate WM_NCLBUTTONUP if you release the button outside
11552           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
11553           it as a mouse up.
11554         
11555         * ThemeWin32Classic.cs:
11556         - Draw a missing border around mdi child forms. Fixes #79844 (2).
11557
11558         * MdiClient.cs:
11559         - Added a list of forms which contains the order the forms are
11560           added to the mdi parent.
11561         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
11562         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
11563         - If the active form changes set the scrollbars to the top
11564           of the Z order, otherwise the form could hide them.
11565         - Scrollbars are now sized according to ClientSize, not 
11566           to Size, and they take into account the other scrollbar
11567           to determine maximum.
11568         
11569 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
11570         
11571         * XplatUI.cs:
11572         * XplatUIDriver.cs:
11573         * XplatUIX11.cs:
11574         * XplatUIWin32.cs:
11575         * XplatUIOSX.cs:
11576         - Added RequestAdditionalWM_NCMessages for windows to 
11577           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
11578           Currently only implemented in XplatUIWin32.
11579
11580 2006-11-27  Chris Toshok  <toshok@ximian.com>
11581
11582         * Hwnd.cs: only add the hwnd to the windows hash in
11583         set_WholeWindow and set_ClientWindow if whole_window/client_window
11584         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
11585
11586 2006-11-27  Mike Kestner  <mkestner@novell.com>
11587
11588         * ComboBox.cs: remove redundant OnDropDown call.  It is called
11589         from the ComboListBox.ShowWindow code. Fixes #79969.
11590
11591 2006-11-27  Chris Toshok  <toshok@ximian.com>
11592
11593         * Hwnd.cs: remove the setters for ExposePending and
11594         NCExposePending - noone uses them.
11595
11596 2006-11-27  Jackson Harper  <jackson@ximian.com>
11597
11598         * TextControl.cs: new param for ReplaceSelection which determines
11599         whether we select the new selection, or set the cursor to the end
11600         of the new selection.
11601         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
11602         pasting, select the new text.
11603         * RichTextBox.cs: Use new param for ReplaceSelection.
11604
11605 2006-11-27  Jackson Harper  <jackson@ximian.com>
11606
11607         * TextBoxBase.cs: Set the selection to the caret after the caret
11608         is moved, otherwise they get out of sync.
11609
11610 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11611
11612         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
11613         it fixes #80015
11614
11615 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11616
11617         * ThemeWin32Classic.cs: 
11618         - Fix toolbar drop down arrow position.
11619         - Fix drop down appearance when ToolBar.Appearance is normal,
11620         it fixes #80018.
11621         
11622 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
11623
11624         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
11625         * Control.cs: Same.
11626         * UpDownBase.cs: Same.
11627         * ButtonBase.cs: Same.
11628         * ScrollBar.cs: Same.
11629         * TrackBar.cs: Same.
11630         * PictureBox.cs: Same.
11631         * UserControl.cs: Same.
11632         * Label.cs: Same.
11633         * ListControl.cs: Same.
11634         * TextBoxBase.cs: Same.
11635         * ListView.cs: Same.
11636         * RichTextBox.cs: Same.
11637         * TreeView.cs: Same.
11638
11639 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
11640
11641         * PrintDialog.cs:
11642         - Text label for where 
11643         - Text label comment was not shown
11644
11645 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
11646
11647         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
11648
11649 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11650
11651         * InternalWindowManager.cs: 
11652         - Handle WM_PARENTNOTIFY to activate the form
11653         if any child control is clicked.
11654         - The form is only sizable if not minimized.
11655
11656         * MdiWindowManager.cs:
11657         - Save the IconicBounds if the form is moved.
11658         - Rework SetWindowState, now the window bounds 
11659         are stored only if the old window state is Normal.
11660         
11661         * MdiClient.cs:
11662         - In SetWindowStates store the old window state if 
11663         the window is maximized and restore window state if
11664         the window looses focus.
11665         - Don't handle any scrollbar value changes if 
11666         initializing the scroll bars. Fixes #79771.
11667         - Reworked ArrangeIconicWindows. Current algorithm
11668         tests bounds agains all other minimized windows, if
11669         any intersections create new bounds (going left to 
11670         right, bottom to top) and then test again. When 
11671         successful the bounds are saved and never computed
11672         again. Fixes #79774.
11673
11674 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11675
11676         * InternalWindowManager.cs: Added HandleTitleBarUp.
11677
11678 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11679
11680         * NumericUpDown.cs: In .NET 1.1, user entered text is still
11681         hexadecimal in ParseUserEdit.
11682
11683         
11684 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11685
11686         * MdiWindowManager.cs: 
11687         - Handle a click on the form's icon to show the 
11688         system menu (when maximized). Fixes #79775.
11689         - Change the existing click handler for the form's
11690         icon when not maximized to show on MouseUp.
11691         Fixes #79776.
11692
11693         * Form.cs: In OnResize only layout the mdi child's
11694         parent if it actually has a parent. Might not if
11695         the window is closing.
11696
11697
11698 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11699
11700         * MdiClient.cs: Ignore active MDI client for text of parent, if
11701         child has no text set.
11702
11703 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11704
11705         * ToolBar.cs: Fixed ToString to match MS.
11706
11707 2006-11-22  Andreia Gaita  <avidigal@novell.com>
11708
11709         * NumericUpDown: 
11710         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
11711         update inner values on set. Fixes #79966.
11712         - Override OnLostFocus to update value on NET 2. Fixes #79950.
11713         - Fix hexadecimal parsing.
11714         
11715         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
11716         parent. Fixes #79957
11717
11718 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11719
11720         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
11721         the actual size has to be queried, since if height /
11722         width is negative Win32 changes it to 0. 
11723         Fixes #79999 on Windows.
11724         
11725         * XplatUIX11.cs: Set height / width to 0 if negative
11726         in SetWindowPos. Fixes #79999 on Linux.
11727         
11728 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11729
11730         * ThemeWin32Classic.cs: Fix text redenring when button is
11731         pressed.
11732
11733 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11734
11735         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
11736         and later navigate by mouse. Fixes #79528.
11737
11738 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11739
11740         * ToolBar.cs: Set default value for TabStop to false in
11741         constructor, it fixes remaining behavior of bug #79863.
11742
11743 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11744
11745         * MdiWindowManager.cs:
11746         * InternalWindowManager.cs:
11747         - Moved a few methods specific to Mdi from 
11748         InternalWindowManager to MdiWindowManager.
11749         Fixes #79996.
11750         
11751 2006-11-21  Chris Toshok  <toshok@ximian.com>
11752
11753         * XplatUIOSX.cs: stub out InvalidateNC.
11754
11755         * XplatUIWin32.cs: implement InvalidateNC using the call I found
11756         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
11757
11758         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
11759
11760         * XplatUIDriver.cs: add InvalidateNC abstract method.
11761
11762         * XplatUI.cs: add InvalidateNC.
11763
11764 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11765
11766         * ToolBar.cs: Invalidate complete button area when pressed status 
11767         was changed.
11768         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
11769         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
11770         by 1 when button is pressed.
11771
11772 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11773
11774         * ToolButton.cs: Invalidate middle of DropDown button when
11775         ToolBar theres DropDownArrows.
11776         * ThemeWin32Classic.cs: Change position of DropDown arrow and
11777         fix DropDown drawing operations.
11778
11779 2006-11-20  Chris Toshok  <toshok@ximian.com>
11780
11781         * NativeWindow.cs: fix the formatting of functions ('{' on the
11782         following line), and enable the thread exception dialog.
11783
11784         * Application.cs: remove the duplicate exception catching from
11785         here.
11786
11787 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11788
11789         * Toolbar.cs: Triggers button click event when click on icon
11790         of dropdown ToolBarButton. Fixes #79912.
11791         
11792 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11793
11794         * Theme.cs:
11795         * ThemeWin32Classic.cs:
11796         - Added a property WindowBorderFont to enable themeing
11797           of mdi child windows' Text.
11798           
11799 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11800
11801         * InternalWindowManager.cs:
11802         * Form.cs:
11803         * MdiClient.cs:
11804         * MdiWindowManager.cs: 
11805         - If mdi child is maximized, set mdi parent's
11806           text to "Parent - [Child]". Fixes #79770.
11807         - If there is any maximized mdi child windows, only the active 
11808           window (and any new windows) is maximized, the rest are normal.
11809         - On a WindowState change only save mdi child's window bounds 
11810           if the old window state was normal. Fixes #79774.
11811         - The scroll bars are now calculated on hopefully all
11812           necessary events. Fixed #79771 / #79844->6 / #79906.
11813         - MdiClient.SizeScrollBars() now takes into account docked 
11814           controls in the parent when calculating available space.
11815         - InternalWindowManager now always repaints the entire title
11816           area. Fixes #79844->1/4/5.
11817         - Added RequestNCRecalc on mdi child windowstate changes.
11818           Fixes #79772.
11819
11820 2006-11-20  Mike Kestner  <mkestner@novell.com>
11821
11822         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
11823         in the MouseUp handler of the listbox and move the return handling
11824         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
11825
11826 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11827
11828         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
11829
11830 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11831
11832         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
11833           working in 1.2.x anymore. So, updated.
11834
11835 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
11836
11837         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
11838         NumberGroupSeparator of current culture instead of assuming en-US.
11839         Fixed bug #79967.
11840
11841 2006-11-17  Mike Kestner  <mkestner@novell.com>
11842
11843         * Control.cs: Add the concept of implicit bounds setting so that
11844         dock/undock round trips preserve explicitly set size/locations.
11845         Fixes #79313.
11846
11847 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11848
11849         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
11850           can't handle those filters. (Fixes bug #79961)
11851
11852 2006-11-17  Chris Toshok  <toshok@ximian.com>
11853
11854         [ fixes the exit/crashes associated with #79835.  it's clearly
11855         suboptimal though, we need to figure out a better way to solve
11856         this. ]
11857         
11858         * PrintPreviewControl.cs: deal with the new invalid printer
11859         exceptions.
11860
11861         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
11862         and return false (so CommonDialog.ShowDialog doesn't actually show
11863         the form.)
11864
11865         * PrintDialog.cs: enable/disable the Ok button depending on
11866         whether or not the printer is valid.
11867
11868         * CommonDialog.cs (ShowDialog): only actually show the form if
11869         RunDialog returns true.
11870
11871 2006-11-17  Jackson Harper  <jackson@ximian.com>
11872
11873         * TextControl.cs: When soft splitting a line, mark it as a soft
11874         split line. Also carry over the current line break to the next
11875         line.
11876
11877 2006-11-17  Chris Toshok  <toshok@ximian.com>
11878
11879         * XplatUIX11.cs: when scrolling a window with an invalid area, we
11880         only want to shift the part of the invalid area that overlaps the
11881         area we're scrolling.  we also don't want to clear the invalid
11882         area unless the invalid area was entirely contained within the
11883         scrolling area.
11884
11885 2006-11-16  Chris Toshok  <toshok@ximian.com>
11886
11887         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
11888         also make sure to free the memory returned by XGetWindowProperty
11889         in GetText().
11890
11891         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
11892
11893 2006-11-16  Chris Toshok  <toshok@ximian.com>
11894
11895         * XplatUI.cs: add a new super secret way to get at the totally
11896         unsupported X11 backend.
11897
11898 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
11899
11900         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
11901
11902 2006-11-16  Jackson Harper  <jackson@ximian.com>
11903
11904         * TreeView.cs: Allow more explicit setting of top node position
11905         for scrollbars. Slower algo, but more accurate.
11906         - CollapseAll should maintain the current top node.
11907         * TextBoxBase.cs: When positioning the caret, use the line, pos
11908         method, since the x, y method does not grab the correct tag, and
11909         the caret height never gets set correctly. (Maybe I should just do
11910         away with the caret having its own height, and always use the
11911         carets current tag for height).
11912
11913 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
11914
11915         [Fixes 79778, 79923]
11916
11917         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
11918         Parent to the FosterParent instead.
11919
11920 2006-11-16  Jackson Harper  <jackson@ximian.com>
11921
11922         * TreeView.cs: Need to recalc the topnode when we expand or
11923         collapse. The scrolling methods can't handle this on their own,
11924         since they use differences between the last scroll position, and
11925         those difference get completely messed up since we are expanding
11926         nodes.  This problem should probably be fixed in the scrolling
11927         methods, so they can figure out exactly where they are, but this
11928         will slow things down a little.
11929         * ThemeWin32Classic.cs: Special case for groupboxes with empty
11930         strings, makes nunit-gui look a lot nicer.
11931
11932 2006-11-16  Chris Toshok  <toshok@ximian.com>
11933
11934         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
11935         the broken multithreaded event handling we have in here.  File
11936         this entry under "Why we should move to the new X11 backend".
11937
11938         Any thread can make it into UpdateMessageQueue, which gets events
11939         from the X socket - some of which could belong to hwnds being
11940         managed by a different thread.  We can also have multiple threads
11941         in UpdateMessageQueue at the same time, with each one reading from
11942         the X socket.  This leads to many problems, with the following
11943         solutions:
11944
11945         We can't use hwnd.Queue.Enqueue anywhere in here and must use
11946         EnqueueLocked.
11947
11948         The MotionNotify compression we do can't work across threads
11949         (without locking the entire queue, perhaps) since we call
11950         hwnd.Queue.Peek, so we just punt and don't compress motion events
11951         unless the owning thread is the one which got the X event.
11952
11953         ConfigureNotify is another fun one, since it modifies the hwnd's
11954         bounds and then enqueues the event.  We add a lock to Hwnd which
11955         is held when setting configure_pending to true (and enqueuing the
11956         event).
11957
11958         There is a race wrt the wake socket.  we need to make sure that
11959         only 1 thread is waiting on that socket, or else a thread could
11960         sleep waiting for data that never comes.  It's difficult (but not
11961         impossible) to make happen, because it seems to require something
11962         like the following:
11963
11964             1. Thread 1 polls on wake_receive
11965         
11966             2. poll returns saying there's data to be read on
11967                wake_receive.
11968         
11969             3. Thread 2 polls on wake_receive and immediately returns
11970                saying there's data to be read.
11971
11972             4. Thread 2 reads the wakeup byte from wake_receive
11973
11974             5. Thread 1 attempts to read the wakeup byte from
11975                wake_receive.
11976
11977             6. Thread 2 exits (due to a form closing, perhaps).
11978
11979             7. Thread 1 blocks forever.
11980         
11981         Fun, eh?
11982
11983         Fixing the Expose handling isn't done yet, and the races inherent
11984         in that piece of code are responsible for the drawing mistakes you
11985         see when generating expose events in a MT app (like NPlot).  This
11986         one is the likely to be the hardest to bandaid, and it doesn't
11987         appear to cause anything but drawing problems.  The other issues
11988         caused apps to exit or hang.
11989
11990         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
11991         called from a different thread than the one that should be calling
11992         these functions.
11993
11994         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
11995
11996 2006-11-15  Chris Toshok  <toshok@ximian.com>
11997
11998         * Application.cs: null out the context's MainForm when we exit
11999         RunLoop.  Fixes a newly checked in unit test as well as the last
12000         ODE from bug #79933.
12001
12002 2006-11-15  Chris Toshok  <toshok@ximian.com>
12003
12004         * Form.cs (set_Owner): allow a null value so we can clear the
12005         form's owner.
12006         (Dispose): set all our owned_form's Owner properties to null, and
12007         clear the owned_forms collection.
12008         (WM_CLOSE): clean up this a little bit.. still not right though.
12009
12010         * ApplicationContext.cs: OnMainFormClosed should only call
12011         ExitThreadCore if the main form isn't recreating.  Fixes unit
12012         test.
12013
12014 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
12015
12016         [Fixes 78346]
12017
12018         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
12019
12020 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
12021
12022         [Fixes 79433]
12023
12024         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
12025         keep popup window types from stealing focus from the main form
12026         on Windows.
12027
12028         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
12029
12030         * MenuAPI.cs: Set above flag to true.
12031
12032 2006-11-15  Chris Toshok  <toshok@ximian.com>
12033
12034         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
12035         the button being released is not in wParam.
12036
12037 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
12038
12039         * Form.cs: Add the released button to MouseEventArgs.Button
12040         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
12041         on Win32.
12042
12043 2006-11-15  Chris Toshok  <toshok@ximian.com>
12044
12045         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
12046         GetText().  untested because it's unused in our implementation.
12047         Control.Text always caches the text, even if
12048         ControlStyles.CacheText is not set.
12049
12050         fixes bug #79939.
12051
12052 2006-11-15  Chris Toshok  <toshok@ximian.com>
12053
12054         [ fixes #79933 ]
12055         
12056         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
12057         message.  no hiding, no disposing.
12058
12059         in the WM_CLOSE handler, hide the form if it's modal.
12060
12061 2006-11-15  Chris Toshok  <toshok@ximian.com>
12062
12063         * XplatUIX11.cs: use AddExpose instead of sending a message.
12064         fixes textbox border drawing.
12065
12066 2006-11-15  Chris Toshok  <toshok@ximian.com>
12067
12068         * PropertyGridView.cs: keep from crashing on mouse move/down when
12069         the property grid is empty.
12070
12071 2006-11-14  Jackson Harper  <jackson@ximian.com>
12072
12073         * TextControl.cs: Make PageUp and PageDown more like the MS
12074         versions.
12075         * TextBoxBase.cs: When we set the text property position the
12076         cursor at the beginning of the document.
12077
12078 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12079
12080         * Form.cs: if a mdi child's WindowState has changed
12081         before it's creation, it would display wrong control
12082         buttons.
12083         
12084 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
12085
12086         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
12087           (Fixes bug #79927)
12088
12089 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
12090
12091         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
12092         the window gets to paint its borders even if the window is
12093         getting smaller.
12094         
12095         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
12096         otherwise the old control buttons would still be painted 
12097         if the window gets bigger.
12098         
12099         * PaintEventArgs.cs: add an internal method so that the clip 
12100         rectangle can be changed.
12101         
12102 2006-11-13  Chris Toshok  <toshok@ximian.com>
12103
12104         [ fixes bug #79745 ]
12105         
12106         * NotifyIcon.cs: lots of cleanup.
12107
12108         * X11Structs.cs: add an enum for XEMBED messages.
12109
12110         * XplatUIX11.cs: reindent one of the giant switch statements, it
12111         was taking up an additional tab stop, and this file is already way
12112         too wide for my laptop's screen.
12113
12114         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
12115         we get it, resize the hwnd to the WMNormalHints max_width/height.
12116
12117 2006-11-13  Jackson Harper  <jackson@ximian.com>
12118
12119         * TextBoxBase.cs: Compute the value changes for the mouse wheel
12120         teh simple way.
12121
12122 2006-11-13  Chris Toshok  <toshok@ximian.com>
12123
12124         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
12125         #79898.  force a reference to the Region to stick around so the
12126         unmanaged object isn't collected (rendering our handle in the MSG
12127         stale).
12128
12129 2006-11-13  Chris Toshok  <toshok@ximian.com>
12130
12131         * XplatUIX11.cs: fix #79917 for window managers which support
12132
12133         using XStoreName on the raw utf8, and we need to convert to
12134         COMPOUND_TEXT if it's non-latin1.
12135
12136 2006-11-13  Chris Toshok  <toshok@ximian.com>
12137
12138         * Form.cs (set_DialogResult): we need to set closing to false if
12139         we're setting our result to None.  fixes bug #79908.
12140
12141 2006-11-13  Jackson Harper  <jackson@ximian.com>
12142
12143         * TextControl.cs: When formatting text, compute the adjusted tag
12144         lengths correctly, using FindTag for the end tag instead of trying
12145         to figure it out outselves.
12146         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
12147         the item, ItemHeight doesn't work, because trees with large
12148         imagelists use those for their height
12149         * TreeView.cs: ActualItemHeight factors in the image height
12150         - compute left edge of checkboxes correctly
12151         - when expanding/collapsing move the bottom down one pixel, so we
12152         aren't moving part of the node
12153
12154 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12155
12156         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
12157         stack in PaintEventStart so that it won't get disposed by the gc
12158         before reaching PaintEventEnd.
12159
12160 2006-11-13  Jackson Harper  <jackson@ximian.com>
12161
12162         * TextBoxBase.cs: Don't select the word if we are on a line with
12163         no text.
12164         - We don't need to position the caret on mouse up, since the mouse
12165         move handler should be doing this
12166         - When double clicking a blank line, the caret is advanced to the
12167         next line.
12168
12169 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
12170
12171         * TreeNodeCollection.cs: Avoid duplicating indexer code.
12172
12173 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
12174
12175         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
12176         Fixes part of bug #79910.
12177
12178 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
12179
12180         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
12181           (bug #79903). Some minor string updates to match ms.
12182
12183 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12184
12185         * FileDialog.cs: Don't add an extension if the filename
12186           already ends with that extension.
12187
12188 2006-11-10  Jackson Harper  <jackson@ximian.com>
12189
12190         * TreeView.cs: Use the currently highlighted node for the
12191         BeforeSelect event.
12192         * TextBoxBase.cs: There is no need to expand selection on
12193         MouseMove.
12194         - CanUndo means 'is there any undo operations', not 'is undo
12195         allowed on this textcontrol. Fixed ClearUndo unit test.
12196
12197 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
12198
12199         * Button.cs: only perform click when button is Selectable (so as 
12200         not to activate default buttons when they're disabled)
12201         
12202         * Control.cs: Rewrite of the SelectNextControl and related 
12203         methods. HandleClick now selects next control if the current one
12204         is being disabled.
12205         
12206         * Form.cs: OnActivated selects next active control only if Load 
12207         has already occurred. If Load hasn't run, there's no point in 
12208         selecting here, Load might change the state of controls.
12209         
12210         * FocusTest.cs: Tests marked as working again for these fixes
12211
12212 2006-11-10  Chris Toshok  <toshok@ximian.com>
12213
12214         * XplatUIX11.cs: a couple of fixes.
12215
12216         - use XInternAtoms with almost all the atoms we need to register,
12217         instead of many, many calls to XInternAtom.  should help a bit on
12218         startup time, at the expense of making the code look a little
12219         worse.
12220
12221         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
12222         isn't reparented (which seems to be a clue that we're running fon
12223         compiz) and they have an Owner form.  This fixes the tool windows
12224         in paint.net when running under compiz.
12225
12226         - when setting the opacity of a window, support both the case
12227         where the window has been reparented and also when it hasn't been.
12228         Since compiz/beryl doesn't seem to reparent windows, and these are
12229         the only window managers which support translucency, I'm not sure
12230         why we need the hwnd.reparented case at all.. but leave it in.
12231         now we get translucent windows in paint.net under compiz/beryl.
12232
12233 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12234
12235         * FileDialog.cs: Always return the value for FilterIndex that
12236           was set. Internally convert it to values that make sense.
12237
12238 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
12239         
12240         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
12241
12242 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
12243
12244         * Toolbar.cs: Change default value of DropDownArrows to true, the 
12245         signature still using false to make it compatible with MS but the 
12246         initial value is true. Fixes #79855.
12247
12248 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12249
12250         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
12251           only available on Linux.
12252
12253 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
12254
12255         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
12256         reduce number of calls to redraw method during toolbar creation.
12257
12258 2006-11-09  Mike Kestner  <mkestner@novell.com>
12259
12260         * ListView.cs : raise SelectedIndexChanged when an item is selected
12261         programmatically via the Item.Selected property.  Gert's nice 
12262         ListViewSelectedIndexChanged test fixture now runs clean.
12263
12264 2006-11-09  Mike Kestner  <mkestner@novell.com>
12265
12266         * ListView.cs : raise SelectedIndexChanged when a selected item is
12267         removed from the item collection using Remove or RemoveAt.
12268
12269 2006-11-09  Mike Kestner  <mkestner@novell.com>
12270
12271         * ListView.cs : raise SelectedIndexChanged once per selected item
12272         for compat with MS.  Fixes #79849+.
12273
12274 2006-11-09  Chris Toshok  <toshok@ximian.com>
12275
12276         * TabControl.cs: initialize row_count to 0, and set it to 1 when
12277         we need to (if we have any tab pages).  Fixes unit test.
12278
12279 2006-11-09  Chris Toshok  <toshok@ximian.com>
12280
12281         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
12282         width is 0, not 3.  Fixes a unit test.
12283
12284 2006-11-09  Mike Kestner  <mkestner@novell.com>
12285
12286         * ListView.cs : use Implicit scrollbars so that focus isn't 
12287         stolen from the listview when they are clicked. Fixes #79850.
12288
12289 2006-11-09  Chris Toshok  <toshok@ximian.com>
12290
12291         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
12292         have a root item.  Fixes #79879.
12293
12294 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
12295
12296         * FileDialog.cs:
12297           - Fix ToString ()
12298           - An ArgumentException is now thrown if a wrong filter
12299             is applied (matches ms). The previous filter doesn't change
12300             anymore if an exception is thrown.
12301           - Changing the FileName property also affects FileNames
12302         * ColorDialog.cs: The length of the CustomColors array is always
12303           16. It doesn't matter if we use a smaller array or null to update
12304           or change the custom colors property.
12305         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
12306           for RootFolder if we get a undefined value.
12307
12308 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12309
12310         * StatusBarPanel.cs: 
12311         - Width is set to MinWidth if Width is smaller than
12312         MinWidth. Fixes #79842.
12313         - MinWidth now always overrides Width (MSDN says MinWidth
12314         is set to Width when AutoSize = None, but they do not 
12315         behave like that).
12316         - Style has now the the correct default value.
12317         
12318 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12319  
12320         * TrackBar.cs: 
12321         - The control is completely invalidated on 
12322         Got/LostFocus to draw the focus rectangle correctly.
12323         - When AutoSize then height is always 45 (width for 
12324         vertical controls).
12325         
12326         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
12327         on the mouse when moved and it doesn't move when grabbed
12328         until the mouse moves as well. Also fixed some wrong 
12329         calculations when clicking on the thumb (control thought
12330         click was outside of thumb and didn't grab it).
12331         Fixes some of the issues in #79718.
12332
12333 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
12334
12335         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
12336
12337 2006-11-08  Chris Toshok  <toshok@ximian.com>
12338
12339         * PropertyGridView.cs: only call ToggleValue if the item is not
12340         readonly.
12341
12342 2006-11-08  Jackson Harper  <jackson@ximian.com>
12343
12344         * TextBoxBase.cs: The RichTextBox and textbox have very different
12345         word selection methods.  Implement the textbox's simple word
12346         selection here, and let the RichTextBox override and provide it's
12347         own.
12348         - Don't do extra selection on mouseup
12349         * RichTextBox.cs: Use the documents word selection algorithm, I
12350         think ideally, this function will be pulled into the
12351         RichTextBox.cs code someday.
12352
12353 2006-11-08  Chris Toshok  <toshok@ximian.com>
12354
12355         * RootGridEntry.cs: new class to represent GridItemType.Root.
12356
12357         * CategoryGridEntry.cs: reformat, and add boilerplate.
12358         
12359         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
12360         returns the UI parent anyway, and we need special handling to
12361         implement the GetTarget method in the face of it.  Also, implement
12362         Select().
12363
12364         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
12365         a root grid item, and use that instead of PropertyGrid.grid_items.
12366         Also, make use of TypeConverters (and add limitted support for
12367         ICustomTypeDescriptors) when initially populating the grid.
12368         Arrays now show up more or less properly.
12369
12370 2006-11-08  Chris Toshok  <toshok@ximian.com>
12371
12372         * Application.cs: set the modal dialog to non modal after we close
12373         it.  Fixes bug #79866.
12374
12375 2006-11-08  Jackson Harper  <jackson@ximian.com>
12376
12377         * TextControl.cs: When combining lines carry over the line end
12378         style from the end line.
12379         - Invalidate the selected area when setting it, if it is visible.
12380         * TextBoxBase.cs: Only rich text box can do full line selects.
12381         - Make sure to set the cursor position when there is a click,
12382         otherwise two clicks in separate areas could cause a large chunk
12383         to be selected.
12384
12385 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12386
12387         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
12388         Fixes #79863.
12389
12390 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12391
12392         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
12393         time. Remove tooltips when ToolButton click events.  Fixes #79856.
12394
12395 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12396
12397         * MenuAPI.cs: Ignore right click for menu actions and fixes
12398         menu border when clicked.  Fixes #79846.
12399
12400 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12401
12402         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
12403         MouseState after create wParam for message, this fixes mouse button 
12404         equal none in mouse up events.
12405         
12406 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
12407
12408         * Control.cs : Focus() now calls Select to set the Container's
12409         Active Control and to give it focus. To avoid infinite recursion
12410         (because ActiveControl also calls Focus at one point), a check 
12411         is made in Focus with the help of a new internal variable
12412         is_focusing.
12413
12414 2006-11-07  Mike Kestner  <mkestner@novell.com>
12415
12416         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
12417         if there's a selection.  Fixes #79849.
12418
12419 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
12420
12421         * PropertyGrid.cs: Avoid fixed height of help description label.
12422         Fixes part of bug #79829.
12423
12424 2006-11-07  Chris Toshok  <toshok@ximian.com>
12425
12426         * XplatUIX11.cs: fix #79790 again, by using the
12427         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
12428
12429 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12430
12431         * ToolBar.cs: Fix left click checking.
12432
12433 2006-11-07  Chris Toshok  <toshok@ximian.com>
12434
12435         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
12436
12437 2006-11-07  Chris Toshok  <toshok@ximian.com>
12438
12439         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
12440         PropertyManager unit tests.
12441
12442         * PropertyManager.cs: make property_name internal.
12443
12444 2006-11-07  Chris Toshok  <toshok@ximian.com>
12445
12446         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
12447         pass a unit test.  Also, don't set image_index to anything in
12448         response to setting the ImageList property.
12449
12450 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12451
12452         * ToolBar.cs: Ignore click events when mouse button is not a
12453         left button, only accepts other button for dropdown menus.  
12454         Fixes #79854.
12455
12456 2006-11-07  Chris Toshok  <toshok@ximian.com>
12457
12458         * DataGrid.cs: make the back and parent row buttons a little less
12459         ugly.
12460
12461 2006-11-07  Jackson Harper  <jackson@ximian.com>
12462
12463         * TextBoxBase.cs: When converting to Text don't put line breaks in
12464         for soft line breaks.
12465         * TextControl.cs: There is an initial "fake" line in the document,
12466         this is now a soft break line, so that an extra line feed doesn't
12467         get added to the end of documents.
12468
12469 2006-11-07  Chris Toshok  <toshok@ximian.com>
12470
12471         [ fix bug #79778 ]
12472         
12473         * CurrencyManager.cs: if the list is readonly, don't bother
12474         checking if IBindingList.AllowNew is true.
12475
12476         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
12477         for non-DataRowView datasources..  or rather, make it not crash.
12478         (DataGridPaintRelationRow): make sure we limit the row painting to
12479         the area not covered by the row header, and make our cell width at
12480         least large enough to cover the relation area.  This allows grids
12481         that have relations but no rows to render correctly.
12482         (DataGridPaintRowContents): same type of changes here.
12483         (SetDataSource): move back to always calling
12484         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
12485         navigating back through relations.
12486         (HitTest): handle the case where we have no cells but have
12487         relations.  Right now we generate a hit in cell 0 of whatever the
12488         row is, not sure if this is strictly correct, but it works for our
12489         purposes.
12490         
12491         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
12492         bother doing anything.
12493
12494 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
12495
12496         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
12497         early version of StatusStrip.  Not responsible for eaten
12498         application or firstborn children.
12499
12500 2006-11-06  Chris Toshok  <toshok@ximian.com>
12501
12502         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
12503         call GetTabRect with a -1 index.  Fixes #79847.
12504
12505 2006-11-06  Jackson Harper  <jackson@ximian.com>
12506
12507         * TreeNodeCollection.cs: Update scrollbars after clearing.
12508
12509 2006-11-06  Chris Toshok  <toshok@ximian.com>
12510
12511         * NumericUpDown.cs: fix the ToString method for some unit test
12512         love.
12513
12514 2006-11-06  Chris Toshok  <toshok@ximian.com>
12515
12516         * PropertyGrid.cs:
12517         - set the initial SelectedGridItem if we can.
12518
12519         - Exclude non-mergable properties only if we're merging > 1
12520         object.  Merging 1 object isn't really merging, obviously.
12521
12522         - Handle PropertySort.NoSort just like Alphabetical, which is
12523         wrong of course, but at least gets things on the screen.
12524         
12525         * PropertyGridView.cs:
12526         - Add method "FindFirstItem" which finds the first property grid
12527         item, so we can select it by default.
12528
12529         - make use of GridEntry.CanResetValue.
12530
12531         - Don't call RedrawBelowItemOnExpansion here anymore, the
12532         individual GridEntry's will do that.
12533
12534         - Remove the ITypeDescriptorContextImpl internal class.
12535         
12536         * GridEntry.cs:
12537         - this class needs to implement ITypeDescriptorContext, as it's
12538         what MS's PropertyDescriptorGridEntry does, which means we can
12539         remove the ITypeDescriptorContextImpl internal class from
12540         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
12541
12542         - keep a reference to our PropertyGridView, and move the call to
12543         RedrawBelowItemOnExpansion here from PGV.  This means
12544         programmaticly setting Expanded actually does something visible.
12545
12546         - add a CanResetValue() function which takes into account our
12547         possibly multiple "selected_objects" in the merged case.  Shifting
12548         PropertyGridView to use this method fixes another unreported
12549         crasher found running the test for #79829.
12550
12551         - when Top or Bounds is updated, make sure the PropertyGridTextBox
12552         is updated to reflect this.
12553
12554         * CategoryGridEntry.cs: the ctor takes the PGV now.
12555         
12556 2006-11-06  Jackson Harper  <jackson@ximian.com>
12557
12558         * TextControl.cs: These are 1 based.
12559         * TextBoxBase.cs: When setting the selected text, don't change the
12560         selected text tags, this is done by ReplaceText, just position the
12561         cursor at the end of the new text.
12562
12563 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12564
12565         * ListView.cs: Allow label edit only when, when LabelEdit is
12566           set to true.
12567
12568 2006-11-06  Jackson Harper  <jackson@ximian.com>
12569
12570         * TextControl.cs: If a suitable wrapping position isn't found,
12571         just wrap right in the middle of a word.
12572
12573 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12574
12575         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
12576           bug #79820.
12577
12578 2006-11-06  Jackson Harper  <jackson@ximian.com>
12579
12580         * TreeView.cs: Can't use the VisibleCount property when setting
12581         scrollbar heights, because this doesn't take into account whether
12582         or not the horz scrollbar just came visible.
12583
12584 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
12585
12586         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
12587         activated.  Fixes #79369, #79832.
12588
12589 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
12590
12591         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
12592           had to remove support for links that point to a directory. FileInfo
12593           returns no usefull information (means, the directory they point to)
12594           for such links. Replaced some empty string ("") with String.Empty.
12595
12596 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12597
12598         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
12599         NullReferenceException when attempting to remove node that is not in
12600         collection. Throw NullReferenceException when null is passed to 
12601         Remove. Allow first element of the collection to be removed. Fixes
12602         bug #79831.  In GetEnumerator ().Current return null if positioned 
12603         before the first element of the collection. In GetEnumerator ().Reset,
12604         position before first element of the collection.
12605
12606 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12607
12608         * PropertyGrid.cs: To match MS, remove default title and description
12609         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
12610         buttons.
12611
12612 2006-11-04  Chris Toshok  <toshok@ximian.com>
12613
12614         * Theme.cs: add a Clamp method, just for kicks.
12615
12616         * ThemeWin32Classic.cs: clamp all color components to [0..255].
12617
12618 2006-11-04  Chris Toshok  <toshok@ximian.com>
12619
12620         * Form.cs: if the form isn't visible, Close() does nothing.
12621
12622 2006-11-03  Chris Toshok  <toshok@ximian.com>
12623
12624         * Form.cs (Close): if the form is modal, don't Dispose of it, only
12625         Hide it.
12626         (WndProc): don't Dispose after handling the WM_CLOSE message.
12627
12628         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
12629         them as such, instead of using casts from Control to Form.  Also,
12630         don't Dispose of the modal dialog when we fall out of the loop -
12631         Close() it instead.
12632
12633         fixes bug #79813.
12634
12635 2006-11-03  Chris Toshok  <toshok@ximian.com>
12636
12637         * Control.cs (Dispose): only go through the dispose thing if we're
12638         @disposing, and we haven't already been disposed.  Fixes bug
12639         #79814.
12640
12641         * Form.cs: no reason to call "base.Dispose()" here instead of
12642         "Dispose()".
12643
12644 2006-11-03  Mike Kestner  <mkestner@novell.com>
12645
12646         * ComboBox.cs : use ToString instead of casts in AddItem for
12647         sorting functionality.  Fixes #79812.
12648
12649 2006-11-03  Chris Toshok  <toshok@ximian.com>
12650
12651         * Application.cs: pave the way for actually using the thread
12652         exception dialog.  it's ifdefed out at the moment.
12653
12654 2006-11-03  Chris Toshok  <toshok@ximian.com>
12655
12656         * ThreadExceptionDialog.cs: until we get a better layout, actually
12657         hide the details textbox and label when we shouldn't see them.
12658
12659 2006-11-03  Jackson Harper  <jackson@ximian.com>
12660
12661         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
12662         multiline textboxes anymore.  This method also determines the
12663         width/height of a textboxes canvas area.
12664         - Sorta a revert of the last patch.  For multiline just position
12665         the controls, then bail.  This way the scrollbar width won't be
12666         altered.
12667
12668 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
12669
12670         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
12671         it dont need.  Fixes #79537.
12672
12673 2006-11-02  Jackson Harper  <jackson@ximian.com>
12674
12675         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
12676         send the status after firing the DndOver event.
12677
12678 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12679
12680         * TrackBar.cs: Now orientation only switches height / width if
12681         the control's handle is created (Win32 does it like this). Also 
12682         fixed a typo in ToString() for a test to pass, changed the 
12683         exception thrown in set_LargeChange and set_SmallChange to 
12684         match Win32 behaviour, and added TrackBar tests to the unit 
12685         tests.
12686
12687 2006-11-02  Chris Toshok  <toshok@ximian.com>
12688
12689         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
12690         not _NET_WM_STATE_NO_TASKBAR.
12691
12692 2006-11-02  Jackson Harper  <jackson@ximian.com>
12693
12694         * TextControl.cs: Increment count by one, since in the update view
12695         count - 1 is used.
12696
12697 2006-11-02  Jackson Harper  <jackson@ximian.com>
12698
12699         * TextBoxBase.cs: Use client rectangle not bounds for checking if
12700         the mouse is in the client rectangle (duh).
12701
12702 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12703         
12704         * TrackBar.cs: Fixed trackbar jumping around when clicking
12705         on it - the trackbar was not detecting correctly at which
12706         side of the thumb the click was done. (fixes #79718)
12707
12708 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
12709
12710         * ListBox.cs: scroll visible area when change SelectedIndex to
12711         a non visible area.  Fixes #79481.
12712
12713 2006-11-01  Jackson Harper  <jackson@ximian.com>
12714
12715         * TextControl.cs: When replacing the selection move the selection
12716         start/end/anchor to the end of the new text.
12717
12718 2006-11-01  Jackson Harper  <jackson@ximian.com>
12719
12720         * XplatUIWin32.cs: When setting the parent change the controls
12721         visibility to it's visibility flag, not to it's old parents
12722         visibility (.Visible walks the parent chain).
12723
12724 2006-11-01  Chris Toshok  <toshok@ximian.com>
12725
12726         * XplatUIX11.cs: revert the #79790 fix, as the simple.
12727         XSetTransientForHint fix breaks paint .net's tool windows.  more
12728         work needed for that one.
12729
12730 2006-11-01  Chris Toshok  <toshok@ximian.com>
12731
12732         * ScrollBar.cs: throw ArgumentException instead of Exception in
12733         LargeChange/SmallChange setters.  fixes unit tests.
12734
12735 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12736
12737         * ContainerControl.cs: reverted rev.67183 (which was itself
12738         a reversion of rev.66853... eh).
12739         
12740         * Control.cs: Fixes Reflector hang by changing Focus() call
12741         to what it was before rev.66643 (calling Select() here sets 
12742         ActiveControl, which in some situations calls back Focus and 
12743         eventually does a stack overflow). Temp fix.    
12744         Changes to GetNextControl() to not look for children to select when
12745         parent cannot be selectable (so it looks for siblings instead)  
12746         
12747 2006-10-31  Mike Kestner  <mkestner@novell.com>
12748
12749         * CheckedListBox.cs : off by one error in returned index from
12750         ObjectCollection.Add.  Fixes #79758.
12751
12752 2006-10-31  Chris Toshok  <toshok@ximian.com>
12753
12754         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
12755         calls for the textbox/spinner, to keep from recursing to the point
12756         where we crash.  Fixes #79760.
12757
12758 2006-10-31  Chris Toshok  <toshok@ximian.com>
12759
12760         * ListControl.cs (set_SelectedValue): don't throw exceptions on
12761         null/"" value, just return.  matches ms's behavior and fixes some
12762         failing tests.
12763
12764 2006-10-31  Chris Toshok  <toshok@ximian.com>
12765
12766         * Control.cs (set_Capture): make a logic a little easier to
12767         follow.
12768
12769         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
12770         if it's being destroyed.  A necessary fix surely, but a bandaid
12771         also, to fix the stuck capture problem in bug #78413.
12772
12773 2006-10-31  Chris Toshok  <toshok@ximian.com>
12774
12775         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
12776         convention of clearing hwnd.ClientRect when we set the
12777         width/height (so it'll be recalculated by Hwnd).
12778
12779 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12780
12781         * ContainerControl.cs: reversed Contains check from
12782         ActiveControl due to hanging problems. This fix
12783         partly regresses #79667 (button does not have
12784         initial focus), so this might be a symptom for 
12785         a larger parenting problem (set_ActiveControl
12786         is being called but the child control does
12787         not have the parent set yet?)   
12788         
12789 2006-10-31  Mike Kestner  <mkestner@novell.com>
12790
12791         * MenuAPI.cs : fix keynav when menu is click activated.
12792
12793 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
12794
12795         * ToolStrip*: Version 0.2.
12796
12797         * MenuStrip.cs: Version 0.1.
12798
12799         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
12800
12801 2006-10-30  Chris Toshok  <toshok@ximian.com>
12802
12803         [ fixes the oversized notify icon issue in bug #79745 ]
12804         
12805         * NotifyIcon.cs: scale the icon down to the size we're given by
12806         the XplatUI layer (this would be faster if we did it once instead
12807         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
12808         since it's never invoked.
12809
12810         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
12811         pixels high by default, so let's hardcode our systray icon to that
12812         size.  The SYSTEM_TRAY protocol should really have a way for
12813         client apps to query for the correct icon size.. but oh well.  A
12814         couple of patches to deal with the screwy client_window ==
12815         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
12816         instance, and also make sure we don't XSelectInput twice).
12817
12818 2006-10-30  Chris Toshok  <toshok@ximian.com>
12819
12820         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
12821         recreating forms.  Control recreation is the bane of my existence.
12822         Fix it in a way that keeps everyone happy.
12823
12824 2006-10-30  Chris Toshok  <toshok@ximian.com>
12825
12826         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
12827         just non-CHILD ones.  otherwise sometimes scrollbars end up with
12828         client_windows not being resized to the proper size (ReportBuilder
12829         shows this extremely well).
12830
12831 2006-10-30  Chris Toshok  <toshok@ximian.com>
12832
12833         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
12834         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
12835         showing up in the gnome taskbar.  Fixes bug #79790.
12836
12837 2006-10-30  Chris Toshok  <toshok@ximian.com>
12838
12839         * ApplicationContext.cs: guard against a NRE.
12840
12841         * Application.cs: null out the old MainForm for the context, so we
12842         don't try to use it again once it's disposed.  Fixes bug #79783.
12843
12844 2006-10-30  Chris Toshok  <toshok@ximian.com>
12845
12846         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
12847         BindingContext, set the data source directly, otherwise do the
12848         lazy approach - the actual ListManager will be created when we get
12849         a BindingContext. Fixes bug #79700.
12850
12851 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12852
12853         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
12854           XplatUIX11.cs: Remove old 2 parameter SetVisible.
12855
12856         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
12857
12858 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12859
12860         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
12861         of SetVisible that allows a window to be shown, but not activated.
12862         This is needed on Windows for MenuStrip, and can probably be used
12863         with MainMenu and ComboBox to fix the focus stealing issues on
12864         Windows.
12865
12866         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
12867
12868 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
12869
12870         * PictureBox.cs: Fix the output of the ToString method.
12871
12872 2006-10-29  Chris Toshok  <toshok@ximian.com>
12873
12874         * Control.cs (get_TopLevelControl): fix bug #79781.
12875
12876 2006-10-29  Chris Toshok  <toshok@ximian.com>
12877
12878         * ListControl.cs (set_DataSource): throw Exception here, not
12879         ArgumentException, to match MS behavior.
12880
12881 2006-10-29  Chris Toshok  <toshok@ximian.com>
12882
12883         * Form.cs: remove the try-catch's around calls to GetWindowState.
12884         We can just check the return value.
12885
12886         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
12887         Instead return -1.
12888
12889         * XplatUI.cs: Add note about additional return value for
12890         GetWindowState.
12891
12892 2006-10-29  Chris Toshok  <toshok@ximian.com>
12893
12894         * Control.cs (CreateHandle): when we create our handle, we also
12895         create the handles of our child controls.  Fixes one of the
12896         Control unit tests (CH11).
12897
12898 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12899
12900         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
12901
12902 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12903
12904         * ThemeClearlooks.cs: A little speedup.
12905
12906 2006-10-27  Chris Toshok  <toshok@ximian.com>
12907
12908         * Control.cs: implement Control.FromChildHandle in a way that
12909         matches the docs (and fixes the failed test.)
12910
12911 2006-10-27  Chris Toshok  <toshok@ximian.com>
12912
12913         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
12914         comments).
12915
12916         * DataGrid.cs: implement ResetForeColor such that the tests
12917         succeed.
12918         
12919 2006-10-27  Chris Toshok  <toshok@ximian.com>
12920
12921         * ToolBarButton.cs: setting text/tooltiptext to null results in it
12922         being set to "".  Fixes bug #79759.
12923
12924 2006-10-27  Jackson Harper  <jackson@ximian.com>
12925
12926         * TextControl.cs: We need to clear the entire selection area when
12927         setting the start, otherwise multiline selections are still
12928         visible.
12929
12930 2006-10-26  Chris Toshok  <toshok@ximian.com>
12931
12932         * PropertyGridView.cs: 
12933
12934         - ifdef all the code specific to the double
12935         buffer case, and provide some alternatives in the non-doublebuffer
12936         code, which makes heavy use of XplatUI.ScrollWindow to move things
12937         around without having to invalidate (and cause flicker).  There
12938         are still some drawing problems in the non-doublebuffered case, so
12939         DOUBLEBUFFER is defined by default.
12940
12941         - Fix the way dropdowns are handled.  now we explicitly watch for
12942         the events which might cause the dropdown to close, and break out
12943         of the nested event loop there.  This gets rid of all Capture
12944         code, at the expense of the Msg special casing.  Seems to work,
12945         though, and fixes bug #79743.
12946
12947 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
12948         * Control.cs: SetIsRecreating now recreates implicitly added
12949         child controls as well. Finally fixes #79629. The flag passed to 
12950         SetIsRecreating has also been removed since it wasn't used.
12951         
12952 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12953
12954         * PageSetupDialog.cs: Clean some code, fix some bits, 
12955         add some checks, and add a printer sub-dialog.
12956
12957 2006-10-26  Chris Toshok  <toshok@ximian.com>
12958
12959         * PropertyGrid.cs: make set_SelectedObject call
12960         set_SelectedObjects, and move the duplicate logic to the
12961         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
12962
12963         * PropertyGridView.cs: hide the textbox when we get a
12964         SelectedObjectsChanged event.
12965
12966         Fixes bug #79748.
12967
12968 2006-10-26  Chris Toshok  <toshok@ximian.com>
12969
12970         * PropertyGridView.cs: deal with the type converter not supporting
12971         GetStandardValues() or GetStandardValues() returning null, which
12972         is does in the default case.  Fixes #79742.
12973
12974 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12975
12976         * CheckedListBox.cs: nunit no longer crashes when selecting 
12977         Project/Edit menu option
12978         
12979 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12980
12981         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
12982         is no menu selected. fixes #79739
12983
12984 2006-10-25  Chris Toshok  <toshok@ximian.com>
12985
12986         * PropertyGridView.cs: factor out the splitter invalidation code
12987         into the SplitterPercent setter, and for kicks implement the
12988         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
12989         amount in either direction.
12990
12991 2006-10-25  Chris Toshok  <toshok@ximian.com>
12992
12993         * PropertyGridView.cs: do some cleanup of the brush used to draw
12994         text - read only fields should be grayed out.  not sure how to do
12995         this with the textbox, though.  but the textbox's should also be
12996         readonly now at least.  Also, hide/show the textbox when resizing
12997         the control.
12998         
12999         * CursorConverter.cs: use System.Reflection when getting the
13000         properties of Cursors, as TypeDescriptor.GetProperties isn't
13001         returning static properties.
13002
13003 2006-10-25  Chris Toshok  <toshok@ximian.com>
13004
13005         * PropertyGridView.cs: factor out the up/down handling, and reuse
13006         it for page up/down.  also add End/Home support.
13007
13008 2006-10-25  Chris Toshok  <toshok@ximian.com>
13009
13010         * PropertyGridView.cs:
13011
13012         - ensure the selected grid item is visible in the scrolled area,
13013         fixes bug #79572.
13014
13015         - fix Keys.Down handling when you're on the last item in the
13016         propertygrid.
13017
13018 2006-10-25  Mike Kestner  <mkestner@novell.com>
13019
13020         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
13021         clicks too.  Fixes #79725.
13022
13023 2006-10-24  Chris Toshok  <toshok@ximian.com>
13024
13025         * PropertyGrid.cs: use property.Converter instead of
13026         TypeDescriptor.GetConverter(property.PropertyType), so we catch
13027         TypeConverters declared on the property as well as on the
13028         PropertyType.  Fixes bug #79678.
13029
13030 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
13031
13032         * MimeIcon.cs, Mime.cs:
13033           Fallback to the default platform handler if no shared mime info
13034           stuff exists (fixes #79693).
13035
13036 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
13037         * ContainerControl.cs: Incorrect contains check in ActiveControl 
13038         from previous fix (duh).
13039
13040 2006-10-20  Chris Toshok  <toshok@ximian.com>
13041
13042         * PropertyGridView.cs: the dropdown should be MIN(number of items
13043         in list, 15).  Fixes #79551.
13044
13045 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
13046         Fixes #79384, #79394, #79652, #79667
13047         * Application.cs: 
13048         
13049         - Modal windows are now destroyed in the proper order for windows
13050         
13051         * ContainerControl.cs:
13052         
13053         - ActiveControl setter has more conditions on when to return:
13054                 - if we're reselecting the active control, but it actually
13055                 didn't have focus (window hidden or some such), it runs
13056                 - if the active control being selected doesn't actually 
13057                 exist in the container, it returns
13058         
13059         * Form.cs
13060         
13061         - The ShowDialog now gets the current form as the owner when
13062         invoking without parameters, and correctly activates the owner 
13063         when returning
13064         
13065         * MessageBox.cs
13066         
13067         - MessageBox now catches the Escape key to exit
13068
13069 2006-10-20  Chris Toshok  <toshok@ximian.com>
13070
13071         * PropertyGridView.cs: fix a number of issues (bug #78565, and
13072         most of bug #79676):
13073
13074         - you can navigate around the property grid with the arrow keys.
13075
13076         - the dropdown is sized properly when the pg has a vertical
13077         scrollbar.
13078
13079         - fix the indentation for subentries, and properly select the
13080         entire label rect.
13081
13082         - fix the gray bar's drawing (only draw it to the last element,
13083         not for the height of the control.  Also make sure we draw that
13084         last horizontal grid line.
13085
13086         - use the same mechanism the datagrid uses wrt the editing textbox
13087         when scrolling/resizing/etc.  Namely, we hide it first, do the
13088         operation, then show it again (if it's still visible).
13089         
13090         - aggressively remove a lot of unnecessary refreshes (and also
13091         calls to Invalidate(). call more limited variants, and only redraw
13092         what we need.)
13093         
13094         * PropertyGrid.cs:
13095
13096         - when we're populating the merged collection, fill in the UI
13097         parent with either the passed in item, or the category item we
13098         create.
13099
13100         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
13101
13102         * GridItem.cs: drop some fully qualified names.
13103         
13104         * GridEntry.cs: add a "UIParent", which is basically the parent
13105         treenode.
13106
13107         * GridItemCollection.cs: add an IndexOf method.
13108
13109 2006-10-20  Mike Kestner  <mkestner@novell.com>
13110
13111         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
13112         a working win32 NC invalidation mechanism, we can't invalidate
13113         menus.  [Fixes #79705]
13114
13115 2006-10-20  Mike Kestner  <mkestner@novell.com>
13116
13117         * ListBox.cs : don't update the VScrollbar if the list is empty,
13118         just hide it.  [Fixes #79692]
13119
13120 2006-10-20  Jackson Harper  <jackson@ximian.com>
13121
13122         * RichTextBox.cs: Handle some special chars better, and don't skip
13123         the entire group when we encounter a special char that we don't
13124         handle correctly.
13125
13126 2006-10-18  Chris Toshok  <toshok@ximian.com>
13127
13128         * PropertyGridView.cs: address a number of issues from bug #79676,
13129         mostly of the cosmetic variety.
13130
13131         - The highlight rectangle for indented items not extends all the
13132         way to the left.
13133
13134         - Indented items aren't indented so much.
13135
13136         - the dropdown is properly sized width-wise if the pg has a
13137         vertical scrollbar.
13138
13139 2006-10-18  Chris Toshok  <toshok@ximian.com>
13140
13141         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
13142         systray stuff is rather convoluted to begin with.
13143
13144         systray icons are a single window for some reason (that I haven't
13145         figured out yet), and for them, client_window == whole_window.
13146         Given the way the tests are structured elsewhere to determine
13147         which paints are pending (client vs. nc), that situation will
13148         always yield PAINT, not NCPAINT.  So, if we have a pending
13149         nc_expose and no pending expose, remove the hwnd from the paint
13150         queue, and also set nc_expose_pending to false, to keep us from
13151         blocking further expose's adding the hwnd to the paint queue.
13152
13153         phew.  like i said, a rather convoluted change.  Fixes the
13154         notifyicon repaint issues in bug #79645.
13155
13156 2006-10-18  Chris Toshok  <toshok@ximian.com>
13157
13158         * Form.cs: when getting the backcolor of the form, don't get
13159         base.BackColor, as this allows parents to influence the background
13160         color.  This breaks mdi forms.  Instead, if the background_color
13161         is empty, return the default.
13162
13163 2006-10-18  Chris Toshok  <toshok@ximian.com>
13164
13165         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
13166         to being private instead of internal static.
13167
13168         * Control.cs: remove all the stupid ParentWaitingOnRecreation
13169         crap, it wasn't working for more deeply nested controls anyway,
13170         and we already have the is_recreating flag - use that instead.
13171         Before calling DestroyHandle in RecreateHandle, recurse through
13172         the control tree setting it to true.  this returns the recreate
13173         code to much of its original simplicity, while now guaranteeing we
13174         actually recreate everything we're supposed to.  This change gets
13175         fyireporting actually showing mdi children.
13176
13177 2006-10-17  Chris Toshok  <toshok@ximian.com>
13178
13179         * Form.cs: remove some debug spew, and collapse some duplicate
13180         code at the end of SetClientSizeCore.
13181
13182         * XplatUIX11.cs: 
13183         - add some more debug spew here too wrt Destroy handling.
13184         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
13185         in Control's handling of WM_DESTROY.
13186         - Remove the handling of zombie window DestroyNotifies from the
13187         event loop - we don't need it.  Now the only DestroyNotifies we
13188         actually handle are ones generated by X.
13189         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
13190         match gtk's (functioning) handling of this. This keep metacity
13191         from leaving droppings in the form of wm borders with no window
13192         contents all over the place.
13193
13194         * Control.cs:
13195         - add a bunch of debug spew wrt control recreation.
13196         - fix a bug where we weren't tracking Visible properly on
13197         recreated hwnds.
13198         - fixed the WM_PAINT double buffer handling to support re-entrant
13199         calls (yes, i know it's gross, but it's happening to us).
13200
13201 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13202         * ThemeWin32Classic.cs: changed drawing of selected days
13203         to make them look better.
13204
13205 2006-10-16  Chris Toshok  <toshok@ximian.com>
13206
13207         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
13208         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
13209
13210         * XplatUIX11.cs: move away from using hwnd.client_dc and
13211         hwnd.non_client_dc and on to a stack of dc's (and in window's
13212         case, PAINTSTRUCT's), so we can deal with nested Paint calls
13213         without puking or not disposing of Graphics objects.
13214
13215         * XplatUIOSX.cs: same.
13216
13217         * XplatUIWin32.cs: same.
13218
13219 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13220
13221         * FileDialog.cs: Don't call on_directory_changed inside
13222           OnSelectedIndexChanged (it changes the SelectedIndex too).
13223           Instead move it to OnSelectionChangeCommitted.
13224
13225 2006-10-13  Chris Toshok  <toshok@ximian.com>
13226
13227         * XplatUIX11.cs: more Destroy work.  the current code does the
13228         following things, in order:
13229
13230         1. Enumerates all handles of all controls at or below the one
13231         being destroyed, in pre-order.  As it is doing this, it marks the
13232         handles as zombie and clears all references to them.
13233         
13234         2. calls XDestroyWindow on the window passed in.
13235
13236         3. SendMessage's WM_DESTROY to all he handles in the accumulated
13237         list.
13238
13239 2006-10-13  Chris Toshok  <toshok@ximian.com>
13240
13241         * XplatUIX11.cs: set hwnd.zombie to true before calling
13242         SendMessage (WM_DESTROY).  this keeps us from marking the new
13243         window a zombie, and also keeps us from calling sendmessage at
13244         all.
13245
13246 2006-10-13  Jackson Harper  <jackson@ximian.com>
13247
13248         * TextControl.cs: Do not show the caret and selection at the same
13249         time.  Reduces ugliness by 35%.
13250
13251 2006-10-13  Chris Toshok  <toshok@ximian.com>
13252
13253         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
13254         zombie after we do the recursive call, so we actually do call
13255         SendMessage on the children controls.
13256         (GetMessage): if we find a pending paint event for a zombie hwnd,
13257         remove the hwnd from the paint queue, or else it will always be
13258         there (and we'll effectively loop infinitely)
13259
13260 2006-10-13  Mike Kestner  <mkestner@novell.com>
13261
13262         * MenuItem.cs : add Selected format under keynav too.
13263         Fixes #79528.
13264
13265 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
13266
13267         * PropertyGrid.cs: Fixed some NRE's and small difference between our
13268         implementation and that of MS.
13269
13270 2006-10-13  Chris Toshok  <toshok@ximian.com>
13271
13272         * Control.cs (OnInvalidated) only futz with the invalid_region if
13273         the control is double buffered.  this fixes the apparent hang in
13274         the ListView unit tests.  Someone needs to make the
13275         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
13276
13277 2006-10-13  Chris Toshok  <toshok@ximian.com>
13278
13279         * PropertyGridView.cs:
13280
13281         - do a little refactoring so that only one place calls
13282         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
13283         else call that.  Also make it Refresh, since there are redraw bugs
13284         otherwise (we should take a look at that...)
13285
13286         - do a little more refactoring work to share the body of code
13287         involved with the drop down.  it was duplicated in the code
13288         dealing with the listbox handling and in the code dealing with the
13289         UITypeEditors.
13290
13291         - add a Capture to the dropdown form's control once it's
13292         displayed, and add a MouseDown handler that checks to make sure
13293         the position is inside the control.  If it's not, close the
13294         dropdown.  This fixes #78190.
13295
13296         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
13297         if the value is different than the initial value.
13298         
13299 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
13300
13301         * Control.cs: see #78650
13302         - Fixed GetNextControl for several cases:
13303                 - Changed FindFlatForward to return 
13304                 correct sibling control when more than one
13305                 control has same TabIndex as the currently 
13306                 focused one.
13307                 - Changed FindFlatBackward to loop children
13308                 from last to first and apply same logic as in
13309                 FindFlatForward
13310                 - Changed FindControlForward to search for
13311                 children when control is not a container
13312                 but has children, or search for siblings if
13313                 control is a container...
13314                 - Changed FindControlBackward   to continue
13315                 searching for child controls when hitting 
13316                 Panel-like parents
13317                 
13318         - Fixed Focus method to update ActiveControl
13319         (FocusTest.FocusSetsActive failure)
13320         
13321         * TabControl.cs:
13322         - Focus rectangle now refreshes when gaining
13323         or losing focus
13324         - Removed grab for Tab key on IsInputKey that 
13325         was keeping tab navigation from working (#78650)
13326
13327 2006-10-13  Chris Toshok  <toshok@ximian.com>
13328
13329         * PropertyGridView.cs:
13330         - Rewrite SetPropertyValue to loop over SelectedGridItem's
13331         SelectedObjects.
13332
13333         - Deal with GridItem.Value == null a few places.
13334
13335         * PropertyGrid.cs: 
13336         - replace the PopulateGridItemCollection with a pair of methods
13337         which compute the intersection of all the properties in the
13338         SelectedObjects array.  Fixes #79615.
13339
13340         - Throw ArgumentException from set_SelectedObjects if there's a
13341         null in the array.
13342
13343         - Add GetTarget method which can be used to traverse up the
13344         GridItem.Parent chain.  It depends on the assumption that
13345         selected_objects for different GridEntries are always in the same
13346         order (a safe assumption).  Use this method and loop over all the
13347         selected objects in the entry when calling RemoveValueChanged and
13348         AddValueChanged.
13349         
13350         * GridEntry.cs: Make this handle multiple selected objects.
13351         .Value returns null if not all the selected objects share the same
13352         value.
13353
13354 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
13355         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
13356           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
13357           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
13358           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
13359           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
13360         add additional functionality.
13361
13362 2006-10-12  Mike Kestner  <mkestner@novell.com>
13363
13364         * ErrorProvider.cs : new ToolTipWindow ctor sig.
13365         * HelpProvider.cs : new ToolTipWindow ctor sig.
13366         * ToolTip.cs : remove ToolTip param from Window sig since it is
13367         not used.
13368         * ToolBar.cs : add tooltip support.  Fixes #79565.
13369
13370 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13371
13372         * ComboBox.cs: move the events in set_SelectedIndex to 
13373         after the call to HighlightIndex in order to avoid 
13374         possible recursion and subsequent problems with the call
13375         to HighlightIndex and include a range check in 
13376         set_HighlightIndex. Fixes #79588
13377         
13378 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13379
13380         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
13381         to ui thread's settings instead of sunday. 
13382         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
13383
13384 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13385
13386         * DateTimePicker.cs
13387         * MonthCalendar.cs
13388         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
13389         and implement missing functionality (selecting different parts 
13390         of the date and edit them individually with the keyboard).
13391         
13392 2006-10-11  Chris Toshok  <toshok@ximian.com>
13393
13394         * Control.cs (OnInvalidated): fix NRE relating to last change.
13395
13396 2006-10-11  Chris Toshok  <toshok@ximian.com>
13397
13398         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
13399         atoms in _NET_WM_STATE here if the window is maximized.  We need
13400         to do this because we're *replacing* the existing _NET_WM_STATE
13401         property, so those atoms will be lost otherwise, and any further
13402         call to GetWindowState will return Normal for a window which is
13403         actually maximized.  Fixes #79338.
13404
13405 2006-10-11  Jackson Harper  <jackson@ximian.com>
13406
13407         * TextControl.cs: Special case for setting selection end to
13408         selection start, we basically kill the anchor.
13409         - some todo comments.
13410
13411 2006-10-11  Chris Toshok  <toshok@ximian.com>
13412
13413         * Control.cs: switch to using an "invalid_region" to track which
13414         parts of the image buffer need updating.  This is more code than
13415         the simple fix from r66532.  That version just attempted to always
13416         fill the entire buffer on redraw, which turns out to be
13417         inefficient when invalidating small rectangles.  This version
13418         simply adds the invalid rectangle to the invalid region.  When we
13419         get any WM_PAINT message we see if it can be filled using the
13420         image buffer, and if it can't (if the paint event's clip rectangle
13421         is visible in the invalid region) we first fill the image buffer.
13422         So, the image buffer is still a cache, we just fill it lazily.
13423
13424         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
13425         need it any longer.
13426
13427 2006-10-11  Chris Toshok  <toshok@ximian.com>
13428
13429         * XplatUIX11.cs (SetWindowPos): we need to update both position as
13430         well as size after calling XMoveResizeWindow.  This keeps us from
13431         ignoring future SetWindowPos calls.  Fixes the disappearing
13432         DateTimePicker in the ToolBarDockExample from bug #72499.
13433
13434 2006-10-11  Chris Toshok  <toshok@ximian.com>
13435
13436         * TextBoxBase.cs: reorder things a bit when it comes to
13437         resizing-causing-recalculation.  we were recalculating the
13438         document when our position was changed, which shouldn't happen.
13439         We only care about size changes.  Clear up some more redundant
13440         recalculation calls while I'm at it.  This makes the toolbar dock
13441         example snappy when you're just dragging toolbars around (since it
13442         causes a relayout whenever you move one.)
13443
13444 2006-10-11  Chris Toshok  <toshok@ximian.com>
13445
13446         * ToolBarButton.cs (get_Rectangle): this only returns
13447         Rectangle.Empty if Visible == false, or Parent == null.
13448         Parent.Visible doesn't matter.
13449
13450 2006-10-10  Chris Toshok  <toshok@ximian.com>
13451
13452         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
13453         by .net 1.1, so switch to an internal method instead.
13454
13455 2006-10-10  Chris Toshok  <toshok@ximian.com>
13456
13457         * Control.cs (WM_PAINT): when a control is double buffered we draw
13458         initially to the ImageBuffer and then copy from there.  But when a
13459         parent control which has child controls is double buffered, the
13460         initial drawing doesn't encompass the entire ClientRectangle of
13461         the parent control, so we end up with uninitialized bits (this is
13462         easily seen by dragging the top toolbar in
13463         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
13464         manually set the ClipRectangle of the paint_event (only the one we
13465         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
13466         of the nastiness in bug #72499.
13467
13468         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
13469         which we use in Control.cs's WM_PAINT handling.
13470
13471 2006-10-10  Jackson Harper  <jackson@ximian.com>
13472
13473         * TextBoxBase.cs: Finish off the autoscrolling stuff.
13474
13475 2006-10-10  Chris Toshok  <toshok@ximian.com>
13476
13477         * Cursor.cs: Apply a slightly different patch to the one suggested
13478         in #79609.
13479
13480 2006-10-10  Jackson Harper  <jackson@ximian.com>
13481
13482         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
13483         not the parent form.
13484         * TextControl.cs: use difference in old line count vs new count to
13485         calculate how many lines were added, this takes into account soft
13486         line breaks properly.
13487
13488 2006-10-10  Chris Toshok  <toshok@ximian.com>
13489
13490         * LinkLabel.cs: don't call MeasureCharacterRanges against a
13491         rectangle located at 0,0 and the size of the text.  Use
13492         ClientRectangle instead.  This fixes rendering of non-left aligned
13493         link labels.
13494
13495 2006-10-10  Jackson Harper  <jackson@ximian.com>
13496
13497         * TextBoxBase.cs: When we set the selection start position the
13498         caret.
13499         * TextControl.cs: Need to update the caret when we decrement it to
13500         zero.
13501         - Make sure that the selection_visible flag gets reset to false if
13502         the selection isn't visible.  Before this you could get it set to
13503         visible by changing the selection start, then changing the end to
13504         equal the start.
13505
13506 2006-10-09  Jackson Harper  <jackson@ximian.com>
13507
13508         * TreeView.cs: Don't update scrollbars when we aren't visible.
13509         * TreeNodeCollection.cs: Only need to update scrollbars if being
13510         added to an expanded visible node or the root node.
13511
13512 2006-10-09  Chris Toshok  <toshok@ximian.com>
13513
13514         * XplatUIX11.cs (SendMessage): fix NRE.
13515
13516 2006-10-09  Jackson Harper  <jackson@ximian.com>
13517
13518         * TextBoxBase.cs: Implement horizontal autoscrolling.
13519         * TextControl.cs: Add a movement types that allows moving forward
13520         and backwards without wrapping.
13521
13522 2006-10-09  Mike Kestner  <mkestner@novell.com>
13523
13524         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
13525         with focus "expansion" of labels.  Fixes #79532 and then some.
13526         * ThemeWin32Classic.cs : add LineLimit to ListView label format
13527         when wrapping.
13528
13529 2006-10-09  Jackson Harper  <jackson@ximian.com>
13530
13531         * TextBoxBase.cs: Set the default max values to MaxValue since
13532         we use the scrollbar for autoscrolling and the default value is
13533         100.  If we don't do this the caret won't keep up with typing
13534         after about 18 characters.
13535         * TextControl.cs: Make sure the selection is offset by the
13536         viewport x.  This fixes selection when using auto scrolling.
13537
13538 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
13539         
13540         * Form.cs: The active control should be selected after the 
13541         OnLoad so that any child control initialization that affects
13542         the selection is done. Fixes #79406
13543
13544 2006-10-06  Chris Toshok  <toshok@ximian.com>
13545
13546         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
13547         to have no evil effects.
13548
13549         - Stop selecting StructureNotifyMask on non-toplevel windows.
13550
13551           The only way children should be resized is by using the SWF api,
13552           and we already send WM_WINDOWPOSCHANGED messages in those cases.
13553           Toplevel windows can be interacted with via the window manager,
13554           and so we keep the input mask there.
13555
13556           The other event StructureNotifyMask gives us (that we care
13557           about) is DestroyNotify.  The code is already structured such
13558           that it assumes we won't be getting a DestroyNotify event for
13559           the window we pass to XDestroyWindow (which is what
13560           StructureNotifyMask is supposed to guarantee.)  So, that code
13561           shouldn't be affected by this either.
13562
13563         - Stop selecting VisibilityChangeMask altogether.
13564
13565           We weren't doing anything with the resulting events anyway.
13566         
13567         This vastly reduces the number of X requests and events we see
13568         when resizing/laying out a large ui.
13569
13570 2006-10-06  Chris Toshok  <toshok@ximian.com>
13571
13572         * ScrollableControl.cs (DisplayRectangle): we need to take into
13573         account the DockPadding regardless of whether or not auto_scroll
13574         == true.  rework this slightly to this effect, and fix bug #79606,
13575         and part of #72499 (you can now see the drag handles and drag
13576         toolbars around).
13577
13578 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
13579
13580         * ListViewItem.cs: Collections of selected and checked items are now
13581         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
13582         we mark the collection "dirty".
13583         * ListView.cs: Marked collections readonly. Modified UpdateSelection
13584         to only clear SelectedItems when a new item is selected and MultiSelect
13585         is enabled. CheckedItems and SelectedItems now subscribe to Changed
13586         event of ListViewItemCollection, and mark its list dirty whenever
13587         that event is fire. This allows us to return selected/checked items 
13588         in the same order as they are in the Items collection. This matches
13589         the MS behavior.
13590
13591 2006-10-06  Chris Toshok  <toshok@ximian.com>
13592
13593         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
13594         right mouse clicks.  Fixes bug #79593.
13595
13596 2006-10-06  Chris Toshok  <toshok@ximian.com>
13597
13598         * Splitter.cs: doh, fix splitters that don't want to cancel the
13599         movement when you drag them.  Also, impose the limits on the
13600         values we send to the SplitterMovingEvent.  Fixes #79598.
13601
13602 2006-10-06  Jackson Harper  <jackson@ximian.com>
13603
13604         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
13605         since we use this for auto scrolling also.
13606
13607 2006-10-05  Chris Toshok  <toshok@ximian.com>
13608
13609         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
13610         beginning to think that most datagrid column types don't need this
13611         method.  Fixes bug #79392.
13612
13613 2006-10-05  Chris Toshok  <toshok@ximian.com>
13614
13615         * DataGrid.cs: move back to a more lazy scheme for creating the
13616         CurrencyManager, so we aren't updating it every time you set
13617         either DataSource or DataMember.  Also, don't call
13618         RecreateDataGridRows if the currency manager hasn't changed.
13619
13620 2006-10-05  Chris Toshok  <toshok@ximian.com>
13621
13622         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
13623         emitted, SelectedIndex should already be updated.  Fixes bug
13624         #78929.
13625
13626 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
13627
13628         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
13629           ToolStripTextBox.cs: Initial commit.
13630         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
13631
13632 2006-10-05  Jackson Harper  <jackson@ximian.com>
13633
13634         * TabControl.cs: We need to invalidate the tab control area when
13635         new ones are added (duh).
13636
13637 2006-10-03  Chris Toshok  <toshok@ximian.com>
13638
13639         * Form.cs (ProcessDialogKey): if the focused control is in this
13640         form and is a button, call its PerformClick method here.  Fixes
13641         #79534.
13642
13643 2006-10-04  Jackson Harper  <jackson@ximian.com>
13644
13645         * TabPage.cs: Ignore setting of Visible, and add an internal
13646         method for setting the controls visibility.  TabPage's Visible
13647         property is a little strange on MS, this seems to make us
13648         compatible, and fixes cases where people set all the tab pages to
13649         visible.
13650         * TabControl.cs: Use the new internal setting on tab pages
13651         visibility.
13652
13653 2006-10-03  Mike Kestner  <mkestner@novell.com>
13654
13655         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
13656
13657 2006-10-03  Mike Kestner  <mkestner@novell.com>
13658
13659         * ListView.cs : use is_visible instead of Visible to check if 
13660         scrollbars should be placed/sized.  Also some max_wrap_width
13661         love for LargeIcon view.  [Fixes #79533]
13662
13663 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
13664
13665         * TextControl.cs :
13666           Make set_TextAlign() do actually update the align. Fixed #78403.
13667
13668 2006-10-03  Chris Toshok  <toshok@ximian.com>
13669
13670         * DataGrid.cs: fix a crash when switching datasources if the
13671         vertical scrollbar is at someplace other than Value = 0.  Also,
13672         reduce the number of recalculation passes we do in SetDataSource
13673         from 2 to 1.
13674
13675 2006-10-03  Jackson Harper  <jackson@ximian.com>
13676
13677         * TextBoxBase.cs: Move the if value the same bail check up, we
13678         don't want to empty the document if it is already empty, this
13679         seems to severly mess up the caret.  TODO: I should probably fix
13680         the empty statement to update teh caret somehow.
13681
13682 2006-10-03  Chris Toshok  <toshok@ximian.com>
13683
13684         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
13685         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
13686         reflection, an internal row type, properties on said type, etc.)
13687         will work with our datagrid.  Fixes #79531.
13688
13689 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13690
13691         * FileDialog.cs: Don't crash if a path is not accessible
13692           (System.UnauthorizedAccessException). Fixes #79569.
13693         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
13694           a ':' too. Return unknown icon for those paths/files.
13695
13696 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
13697
13698         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
13699         GetContainerControl returns null.
13700
13701 2006-10-02  Chris Toshok  <toshok@ximian.com>
13702
13703         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
13704         call to XGetWindowAttributes instead of "handle".  fixes an X
13705         error using notifyicon after the NotifyIconWindow to Form base
13706         class switch.
13707
13708 2006-10-02  Chris Toshok  <toshok@ximian.com>
13709
13710         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
13711         server grab and looping we need to do to get down to the most
13712         deeply nested child window.
13713         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
13714         QueryPointer again after the WarpPointer so we can generate a
13715         proper (fake) MotionNotify event to be enqueued in the destination
13716         window's queue.
13717         (GetCursorPos): call QueryPointer.
13718
13719         Fixes #79556.
13720
13721 2006-10-02  Jackson Harper  <jackson@ximian.com>
13722
13723         * NotifyIcon.cs: Derive the notify icon from a form, so things
13724         like FindForm work on it.
13725         - Swallow the WM_CONTEXTMENU message, since that is generated on
13726         mouse down, and context menu is a mouse up kinda guy.  I believe
13727         the correct fix here is probably to make the notify icon entirely
13728         NC area, but this seems to work fine for anyone not manipulating
13729         WndProc.
13730
13731 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
13732
13733         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
13734           ToolStripItemCollection.cs, ToolStripLabel.cs,
13735           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
13736           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
13737           Initial implementation.
13738         * TextRenderer.cs: Provide padding to MeasureText.
13739
13740 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
13741
13742         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
13743         of ButtonBaseAccessibleObject. Fix bug #79552.
13744
13745 2006-10-02  Jackson Harper  <jackson@ximian.com>
13746
13747         * MdiWindowManager.cs: When maximizing use the containers client
13748         rect, not it's bounds, so nc area is accounted correctly.
13749         - Use the parent form's size for the menu position, since the
13750         client isn't always the full form size.
13751
13752 2006-10-01  Chris Toshok  <toshok@ximian.com>
13753
13754         * ScrollableControl.cs: make sure neither right_edge or
13755         bottom_edge are < 0, since they're used as LargeChange for the
13756         horiz/vert scrollbars respectively.  Fixes #79539.
13757
13758 2006-10-01  Chris Toshok  <toshok@ximian.com>
13759
13760         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
13761         the xplatuix11 code can cause us to destroy/recreate our handle.
13762
13763         * XplatUIX11.cs
13764         (SystrayAdd):
13765         - this code can be invoked many times for the same Hwnd.  Make
13766           sure we only destroy the client window once (the first time this
13767           method is called).  This fixes bug #79544.
13768         - Remove the call to the improperly bound XSync.  why we had two
13769           bindings to this, I will never know, but this call resulted in
13770           events being discarded from the queue(!).
13771         - correct a misunderstanding of _XEMBED_INFO - the second atom is
13772           not our current state but the state we wish to be in.  So, 0 if
13773           we don't want to be mapped.  Change it to 1.
13774         (SystrayRemove): The XEMBED spec makes mention of the fact that
13775         gtk doesn't support the reparent of client windows away from the
13776         embedder.  Looking at gtksocket-x11.c seems to agree with this.
13777         The only avenue we have for removing systray icons is to destroy
13778         them.  We don't want the handle to go away for good, though, so
13779         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
13780         #79545.
13781         
13782 2006-10-01  Chris Toshok  <toshok@ximian.com>
13783
13784         * Form.cs (WndProc): inline the native_enabled variable usage into
13785         the cases in which it's used.  Fixes #79536.
13786
13787 2006-09-29  Mike Kestner  <mkestner@novell.com>
13788
13789         * ListView.cs : toggle the selection state for ctrl clicks in 
13790         multiselect mode. [Fixes #79417]
13791
13792 2006-09-29  Mike Kestner  <mkestner@novell.com>
13793
13794         * ListView.cs : kill CanMultiSelect and refactor the selection
13795         code to support multiselection in the absence of mod keys. Steal
13796         arrow/home/end keys by overriding InternalPreProcessMessage to
13797         restore regressed keynav behavior.
13798         [Fixes #79416]
13799
13800 2006-09-29  Jackson Harper  <jackson@ximian.com>
13801
13802         * MdiClient.cs: Repaint the titlebars when the active window is
13803         changed.
13804
13805 2006-09-29  Chris Toshok  <toshok@ximian.com>
13806
13807         * Application.cs: when entering a runloop with a modal, make sure
13808         the hwnd is enabled.  Fixes #79480.
13809
13810 2006-09-29  Chris Toshok  <toshok@ximian.com>
13811
13812         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
13813         when ListManager.CanAddRows == false, bump us back one.
13814
13815         * DataGridColumnStyle.cs (ParentReadOnly): remove the
13816         listmanager.CanAddRows check.  This makes ArrayLists uneditable
13817         using a datagrid, which is not right.
13818         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
13819         is an IEditable, but call property_descriptor.SetValue regardless.
13820         fixes #79435.
13821
13822 2006-09-29  Chris Toshok  <toshok@ximian.com>
13823
13824         * DataGridBoolColumn.cs: we need to test equality in the face of
13825         possible null values (as is the case with the default NullValue).
13826         This patch keeps us from crashing in that case.
13827
13828 2006-09-29  Jackson Harper  <jackson@ximian.com>
13829
13830         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
13831         here, since it will get called for every node collection in the
13832         tree. This is now done in the treeview once the sorting is
13833         finished.
13834         * TreeView.cs: Recalculate the visible order, and update the
13835         scrollbars after sorting, set the top nope to the root so that the
13836         recalc actually works.
13837
13838 2006-09-29  Chris Toshok  <toshok@ximian.com>
13839
13840         * LinkLabel.cs: more handling of the default link collection in
13841         the face of LinkArea manipulation.  The default link collection
13842         contains 1 element (start=0,length=-1).  If the user sets LinkArea
13843         to anything and the links collection is the default, clear it.
13844         Then only add the link if its nonempty.  Fixes #79518.
13845
13846 2006-09-29  Chris Toshok  <toshok@ximian.com>
13847
13848         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
13849         piece correctly when we hit a '\n'.  Fixes #79517.
13850
13851 2006-09-29  Chris Toshok  <toshok@ximian.com>
13852
13853         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
13854         change the binding of gdk_init_check to take two IntPtr's, and
13855         pass IntPtr.Zero for both of them.  Fixes #79520.
13856
13857 2006-09-29  Mike Kestner  <mkestner@novell.com>
13858
13859         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
13860         [Fixes #78779]
13861
13862 2006-09-28  Jackson Harper  <jackson@ximian.com>
13863
13864         * XplatUIX11.cs: When translating NC messages make sure we go from
13865         whole window to screen, not client window to screen.
13866         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
13867         method doesn't exist
13868         - Skip over controls that aren't forms when arranging.
13869
13870 2006-09-28  Jackson Harper  <jackson@ximian.com>
13871
13872         * XplatUIWin32.cs: Clip the rect to the parent window.
13873         * XplatUIStructs.cs: Add clipping modes struct.
13874         * InternalWindowManager.cs: New private method that factors title
13875         bar heights in when calculating the pos of an NC mouse message.
13876         - Use SendMessage to force a paint when the form's size is changed
13877         instead of painting the decorations immediately.
13878         - Don't let the NC button click messages get to DefWndProc,
13879         because they will attempt to handle windowing themself, and this
13880         messes up z-order (it will put them in front of the scrollbars).
13881         * XplatUIX11.cs: Make sure that we don't reset window managers if
13882         we already have one (ie the window is an MDI window).
13883
13884 2006-09-28  Chris Toshok  <toshok@ximian.com>
13885
13886         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
13887         menu code really needs going over.
13888
13889 2006-09-27  Chris Toshok  <toshok@ximian.com>
13890
13891         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
13892         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
13893         window is maximizable.  So, we need to make sure that even if we
13894         clear the border/wm frame of those functions, they're still
13895         available (basically, we remove the decoration without removing
13896         the function).  Half the fix for #79338.
13897
13898 2006-09-27  Chris Toshok  <toshok@ximian.com>
13899
13900         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
13901         Fixes bug #79515.
13902
13903 2006-09-27  Chris Toshok  <toshok@ximian.com>
13904
13905         * Splitter.cs: reorder things a bit so that we don't actually
13906         draw/move the splitter until after calling OnSplitterMoving.  This
13907         lets users cancel/disallow the movement by explicitly setting
13908         event.SplitX/SplitY.  Fixes #79372.
13909
13910 2006-09-27  Jackson Harper  <jackson@ximian.com>
13911
13912         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
13913         because it is most likely on a window being destroyed, and that
13914         will give us an X11 error.
13915
13916 2006-09-27  Chris Toshok  <toshok@ximian.com>
13917
13918         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
13919         the dropdown button now toggles between showing and hiding the
13920         dropdown.  Also, get rid of dropdown_form_showing and just use
13921         dropdown_form.Visible.  We still don't do a grab, but I'll leave
13922         that part to someone who has handled Capture-fu before.
13923
13924 2006-09-27  Chris Toshok  <toshok@ximian.com>
13925
13926         * DataGrid.cs: return false if alt isn't pressed when '0' is
13927         pressed.  this keeps the '0' key from being swallowed, and fixes
13928         bug #79350.
13929
13930 2006-09-27  Chris Toshok  <toshok@ximian.com>
13931
13932         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
13933         Calling Refresh (in response to a scrollbar event) screws up the
13934         scrollbar painting.  Fixes bug #78923.
13935
13936 2006-09-27  Chris Toshok  <toshok@ximian.com>
13937
13938         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
13939         then insert into hashtable" blocks threadsafe.
13940
13941 2006-09-27  Chris Toshok  <toshok@ximian.com>
13942
13943         * MessageBox.cs (CreateParams): the styles should be |'ed with our
13944         baseclass's, since otherwise the
13945         ControlBox/MinimizeBox/MaximizeBox assignments above have no
13946         effect.  This gets the close button back in messageboxes.
13947
13948 2006-09-27  Chris Toshok  <toshok@ximian.com>
13949
13950         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
13951         flag, not just != 0.  this makes flags that are actually multiple
13952         bits (like WS_CAPTION) work.  fixes bug #79508.
13953
13954 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
13955
13956         * PageSetupDialog.cs: add support for getting and settings the 
13957         paper size, source and orientation.
13958
13959 2006-09-26  Chris Toshok  <toshok@ximian.com>
13960
13961         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
13962         and caption == "", we need to remove the resize handles as well as
13963         the title bar.
13964
13965         * Control.cs (set_Text): turns out that setting Text on a form
13966         should change the WM styles on the window, since if ControlBox ==
13967         false, the only way to get a window border is to have a non-""
13968         Text property.  check winforms/forms/text.cs for an example.  so,
13969         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
13970         update both window styles and title.  This fixes a lot of dialogs
13971         (including the preferences dialog in MonoCalendar.)
13972
13973 2006-09-26  Chris Toshok  <toshok@ximian.com>
13974
13975         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
13976         control isn't a Form), call Win32ShowWindow to hide the window,
13977         but don't update the control Visible property.  When we reparent
13978         back to a parent control, call SetVisible in order for the
13979         window's visibility to be reinstated.
13980
13981         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
13982         the FosterParent.
13983
13984         * Control.cs (ControlCollection.Remove): remove that value.Hide()
13985         call for good, since it breaks MonoCalendar (and other things I'm
13986         sure.) Also, set all_controls to null *after* the owner calls,
13987         which end up regenerating it.
13988         (ChangeParent): allow new_parent to be == null, passing
13989         IntPtr.Zero down to XplatUI.
13990
13991         this fixes #79294 the right way.
13992
13993 2006-09-26  Mike Kestner  <mkestner@novell.com>
13994
13995         * GridEntry.cs : internal SetParent method.
13996         * PropertyGrid.cs : attach to property changed on the proper
13997         target if we have a hierarchical grid with subobjects. Setup
13998         GridItem.Parent for hierarchical items.
13999         * PropertyGridView.cs : Set value on the correct target for
14000         hierarchical grids. [Fixes #78903]
14001
14002 2006-09-26  Chris Toshok  <toshok@ximian.com>
14003
14004         * Control.cs (ChildNeedsRecreating): this should return true if
14005         either we're being recreated and the child is in our list, or our
14006         parent is waiting for our recreation.
14007
14008 2006-09-26  Chris Toshok  <toshok@ximian.com>
14009
14010         * Control.cs (ControlCollection.Remove): reinstate the
14011         value.Hide() call as suggested in bug #79294.
14012
14013 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
14014
14015         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
14016         coordinates (versus a relative move).
14017
14018 2006-09-26  Chris Toshok  <toshok@ximian.com>
14019
14020         * Control.cs: rework child recreation a little bit.  It turns out
14021         that we race between the DestroyNotify the WM_DESTROY message.  If
14022         the parent gets its DestroyNotify before the child gets the
14023         WM_DESTROY message, the child ends up not recreating (since the
14024         parent finishes its recreation on DestroyNotify, and the child
14025         checks ParentIsRecreating.)
14026
14027         So, instead we store off a list of all the child controls which
14028         need to be recreated when the parent control starts to recreate
14029         itself.  Then, when child controls get their WM_DESTROY message we
14030         check to see if they're in the parent's pending recreation list,
14031         and if so, we recreate.  This removes all dependency on ordering
14032         from the code and fixes the initial MonoCalendar upgrade dialog.
14033         
14034 2006-09-26  Jackson Harper  <jackson@ximian.com>
14035
14036         * TextControl.cs: Use the Line to get the length of the line,
14037         since soft line breaks can change the end line.
14038
14039 2006-09-26  Chris Toshok  <toshok@ximian.com>
14040
14041         * Control.cs (ControlCollection.AddImplicit): don't add the
14042         control again if it's already in one of our lists.  This keeps us
14043         from adding controls over and over again for comboboxes when their
14044         handle gets recreated (as the combobox adds implicit controls in
14045         OnHandleCreated).  Fixes the X11 errors in bug #79480.
14046
14047 2006-09-26  Jackson Harper  <jackson@ximian.com>
14048
14049         * TextControl.cs: When deleting characters make sure that any
14050         orphaned zero lengthed tags get deleted.
14051         - Fix ToString for zero lengthed tags.
14052
14053 2006-09-25  Jackson Harper  <jackson@ximian.com>
14054
14055         * TextControl.cs: When getting a tag at the location there can be
14056         multiple tags at the same spot, these are 0-lengthed tags that
14057         appear when extra formatting has been stuck in a location.  We
14058         need to pull out the last of these 0 lengthed tags.
14059
14060 2006-09-25  Jackson Harper  <jackson@ximian.com>
14061
14062         * TextControl.cs: Fix print out in debug method.
14063         * TextBoxBase.cs: When text is set bail if we are setting to the
14064         previous value.
14065         
14066 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
14067
14068         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
14069           It is now possible to change the selected index in a FontXXXListBox
14070           with the up and down arrow keys from the FontXXXTextBoxes.
14071           Also, send the FontXXXTextBox mouse wheel event to the corresponding
14072           FontXXXListBoxes to match ms.
14073
14074 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
14075
14076         * SystemInformation.cs: Return a clone of the theme's MenuFont because
14077         anyone can dispose it, anytime. All other properties returns enums, 
14078         structs or basic types so they don't need such tricks.
14079
14080 2006-09-22  Jackson Harper  <jackson@ximian.com>
14081
14082         * XplatUI.cs:
14083         * XplatUIWin32.cs:
14084         * Clipboard.cs:
14085         * DataFormats.cs:
14086         * XplatUIOSX.cs:
14087         * XplatUIDriver.cs: Update interface to add a primary selection
14088         flag, so the driver can use the primary selection buffer if
14089         needed.
14090         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
14091
14092         * RichTextBox.cs: We need to supply the data object to paste now
14093         (so we can choose to supply CLIPBOARD or PRIMARY).
14094         * TextBoxBase.cs: Supply data object to paste (see above).
14095         - Middle click uses the primary selection data object.
14096         
14097 2006-09-21  Chris Toshok  <toshok@ximian.com>
14098
14099         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
14100         of SetWMStyles.  It's still a rat's nest and is largely
14101         order-dependent which I dislike immensely.  This also fixes the X
14102         button disappearing from toplevel forms.
14103
14104 2006-09-21  Mike Kestner <mkestner@novell.com>
14105
14106         * ListBox.cs: move Jordi's click/dblclick raising code to the
14107         mouse up handler.
14108
14109 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
14110
14111         * ListBox.cs: Fixes 79450
14112
14113 2006-09-21  Mike Kestner <mkestner@novell.com>
14114
14115         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
14116         to deal with people updating the TreeNodeCollection after the tree
14117         is disposed.  "Fixes" 79330.
14118
14119 2006-09-20  Jackson Harper <jackson@ximian.com>
14120
14121         * TextControl.cs: Push the cursor record onto the undo stack
14122         before the delete action. This fixes 78651.
14123
14124 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
14125
14126         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
14127         CreateParams. Fixes 79329.
14128
14129 2006-09-19  Chris Toshok  <toshok@ximian.com>
14130
14131         * XplatUIX11.cs: a couple of blanket code massage passes to clean
14132         things up a bit.  First, get rid of the NetAtoms array (and the NA
14133         enum), and just embed the atoms as static fields.  Also, add a
14134         couple of functions (StyleSet and ExStyleSet) to clean up all the
14135         bitmask testing of styles.
14136
14137         * X11Structs.cs: remove the NA enum, not needed anymore.
14138         
14139 2006-09-19  Chris Toshok  <toshok@ximian.com>
14140
14141         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
14142         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
14143         added cleanup to get MessageBox titles appearing again, which were
14144         broken by my earlier fix for caption-less/ControlBox-less windows.
14145
14146 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
14147
14148         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
14149           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
14150           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
14151           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
14152           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
14153           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
14154           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
14155           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
14156           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
14157           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
14158           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
14159             Inital import.
14160         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
14161           ToolStripButton.cs: Stubs needed for above.
14162         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
14163
14164 2006-09-15  Chris Toshok  <toshok@ximian.com>
14165
14166         * XplatUIX11.cs:
14167         - make the MessageQueues hashtable Synchronized.
14168         
14169         - SendMessage: if the Hwnd is owned by a different thread, use the
14170         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
14171         thread.  Fixes bug #79201.
14172
14173 2006-09-15  Chris Toshok  <toshok@ximian.com>
14174
14175         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
14176         ControlBox == false, we disallow maximize/minimize/close.  If the
14177         form Caption is "" we also disallow move (and get rid of the Title
14178         decoration).  Unfortunately, regardless of how things are set,
14179         we're stuck with the Title and WM menu.
14180
14181 2006-09-15  Chris Toshok  <toshok@ximian.com>
14182
14183         * Application.cs: add locking around the static message_filters
14184         ArrayList, part of #79196.
14185
14186 2006-09-15  Chris Toshok  <toshok@ximian.com>
14187
14188         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
14189         Form.ControlBox == false, the window has no titlebar nor resize
14190         handles.  fixes bug #79368.
14191
14192 2006-09-15  Chris Toshok  <toshok@ximian.com>
14193
14194         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
14195         >= 0.  Fixes bug #79370.
14196
14197 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
14198         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
14199         * Control.cs:
14200             Add properties: LayoutEngine, Margin, DefaultMargin.
14201             Add method: GetPreferredSize.
14202             Move layout logic from PerformLayout to layout engines. 
14203
14204 2006-09-13  Chris Toshok  <toshok@ximian.com>
14205
14206         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
14207         fix for #79326 broke #78718, so this change addresses that.
14208
14209         - in SendWMDestroyMessages remove the call to
14210         CleanupCachedWindows, since we might be recreating the control and
14211         need to maintain the references to right Hwnd handles.  Also, set
14212         the zombie flag to true for each of the children in the hierarchy
14213         instead of calling hwnd.Dispose.  This will cause GetMessage to
14214         ignore all events for the window except for DestroyNotify.
14215
14216         - In GetMessage, ignore messages except for DestroyNotify for
14217         zombie hwnds.
14218         
14219         * Control.cs: revert the is_recreating fix from the last
14220         ChangeLog.  It's definitely "right", but it breaks switching from
14221         an MDI form to a non-MDI form.  Will need to revisit that.
14222
14223         * Hwnd.cs: add a zombie flag, which means "the
14224         client_window/whole_window handles are invalid, but we're waiting
14225         for the DestroyNotify event to come in for them".  Set the flag to
14226         false explicitly if setting WholeWindow/ClientWindow, and also
14227         when Disposing.
14228         
14229 2006-09-13  Chris Toshok  <toshok@ximian.com>
14230
14231         * XplatUIX11.cs: rework window destruction slightly.
14232
14233         - when destroying the windows associated with a control, we don't
14234         need 2 separate XDestroyWindow calls.  Just the one for the
14235         whole_window (or for client_window if whole_window is somehow
14236         IntPtr.Zero -- can this happen?) is enough.
14237
14238         - reworked SendWMDestroyMessages slightly, so we always dispose
14239         the child control hwnd's after sending the messages.
14240         
14241         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
14242         the two places it was used (one was even using hwnd.Handle and the
14243         other hwnd.client_window.  ugh), adding another call in
14244         SendWMDestroyMessages.  We need this new call because now the
14245         DestroyNotify events in the queue will be ignored for the child
14246         controls (as their hwnd's were disposed, and the window id's
14247         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
14248
14249         - this fixes bug #79326.
14250
14251 2006-09-13  Chris Toshok  <toshok@ximian.com>
14252
14253         * Control.cs: don't always set is_recreating to false at the end
14254         of RecreateHandle, since sometimes we're not done (and won't be
14255         until WndProc handles the WM_DESTROY message).  Also, set
14256         is_recreating to false in the WM_DESTROY handling code.  Part of
14257         the fix for bug #79326.
14258
14259 2006-09-13  Miguel de Icaza  <miguel@novell.com>
14260
14261         * X11DesktopColors.cs: Start the droppage of debugging messages.
14262
14263         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
14264
14265 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
14266
14267         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
14268
14269 2006-09-12  Chris Toshok  <toshok@ximian.com>
14270
14271         * DataGrid.cs (get_ListManager): if the list_manager is null, try
14272         to create it using SetDataSource.  Fixes bug #79151.
14273
14274 2006-09-11  Chris Toshok  <toshok@ximian.com>
14275
14276         * XEventQueue.cs: add a DispatchIdle property.
14277
14278         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
14279         either the queue is null, or the queue has DispatchIdle set to
14280         true.
14281         (DoEvents): set queue.DispatchIdle to false around the
14282         peek/translate/dispatch message loop in this method.  This keeps
14283         Application.Doevents from emitting idle events.  Part of the fix
14284         for #78823.
14285
14286 2006-09-11  Chris Toshok  <toshok@ximian.com>
14287
14288         * DataGrid.cs (set_DataSource): make this work for both the
14289         winforms/datagrid test and ReportBuilder.  It seems as though when
14290         we've created a ListManager (or maybe it's if we have a
14291         BindingContext?), when we set the DataSource it clears the
14292         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
14293         #79333.
14294
14295 2006-09-11  Chris Toshok  <toshok@ximian.com>
14296
14297         * XplatUIX11.cs: deal with queue being null, which happens in all
14298         the Clipboard functions.  Fixes one of the two problems mentioned
14299         in #78612.
14300
14301 2006-09-11  Chris Toshok  <toshok@ximian.com>
14302
14303         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
14304         button on various spots (including outside the menu) works closer
14305         to MS, and doesn't crash.  Fixes #79343.
14306
14307 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
14308
14309         * ListView.cs: Do not initialize item_sorter in init. To match MS,
14310         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
14311         and the internal comparer is set. When a new ListViewItemSorter is set,
14312         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
14313         was specified. No further processing is necessary if SortOrder is set
14314         to it's current value. If Sorting is modified to None, and View is
14315         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
14316         (either custom or our internal ItemComparer) to null, on 1.0 profile
14317         only set item_sorter to null if its our internal IComparer. If Sorting
14318         is modified to Ascending or Descending, then use our internal IComparer
14319         if none is set, and if the current IComparer is our internal one then:
14320         on 2.0 profile always replace it with one for new Sorting, and on 1.0
14321         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
14322         Enum.IsDefined to verify whether a valid View value is specified in
14323         its setter. Automatically sort listview items when listview is
14324         created. In Sort, do nothing if ListView is not yet created, or if
14325         no item_sorter is set (no Sorting was set, Sorting was explicitly set
14326         to None or ListViewItemSorter was set to null). Added Sort overload
14327         taking a bool to indicate whether the ListView should be redrawn when
14328         items are sorted (we use this in ListViewItemCollection to avoid double
14329         redraws). Modified our internal IComparer to take the sort order into
14330         account. In Add and AddRange methods of ListViewItemCollection, also
14331         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
14332         view), but use overload with noredraw option to avoid double redraw.
14333         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
14334         true when View is Tile, and do the same when attempting to set View to
14335         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
14336         for selected/checked indices, as it involves overhead when sorting is
14337         done while these collections are not used all that often. Instead
14338         we'll build the indices on demand. Modified IList implementation of
14339         CheckedIndexCollection to use public methods if object is int.
14340         Modified CheckedListViewItemCollection to hide checked items if
14341         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
14342         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
14343         IList implementation in SelectedIndexCollection to use public methods
14344         if object is int. Modified SelectedListViewItemCollection to hide
14345         selected items if listview is not yet created.
14346         * ListViewItem.cs: CheckedIndices list no longer needs to be
14347         maintained separately (see ListView changes). Also clone font, fixes
14348         test failure.
14349
14350 2006-09-11  Mike Kestner  <mkestner@novell.com>
14351
14352         * ComboBox.cs: if we are updating the contents of the currently
14353         selected index, refresh the control or the textbox selection.
14354         [Fixes #79066]
14355
14356 2006-09-11  Mike Kestner  <mkestner@novell.com>
14357
14358         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
14359         the 'specified' logic has been moved there.  This seems like a bug 
14360         in Control.cs, since our current SetBoundsCore completely ignores 
14361         the specified parameter.  Peter's commit seems to indicate that is 
14362         the way the MS control implementation works.  [Fixes #79325]
14363
14364 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
14365
14366         * XplatUI.cs: Set default_class_name to be composed
14367         of current domain id. This allows MWF to be loaded in multiple
14368         domains on Win32.
14369
14370 2006-09-09  Miguel de Icaza  <miguel@novell.com>
14371
14372         * X11Keyboard.cs: If we are unable to obtain the input method, do
14373         not call CreateXic to create the input context.   Should fix
14374         #78944/79276.
14375
14376 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
14377
14378         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
14379           Simplified gnome support by adding more pinvokes to get the
14380           icon for a file or mime type.
14381
14382 2006-09-08  Jackson Harper  <jackson@ximian.com>
14383
14384         * MenuAPI.cs: Deslect popup context menu items before closing the
14385         window, so that you don't see the previously selected item
14386         selected when you reopen the menu.
14387         * TextControl.cs: Update the cursor position even if we don't have
14388         focus.  This fixes typing in things like the ComboBox.  I'm not
14389         totally sure we should always set the visibility if we don't have
14390         focus, but couldn't find any corner cases where the cursor showed
14391         up when it shouldn't.
14392
14393 2006-09-08  Chris Toshok  <toshok@ximian.com>
14394
14395         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
14396         our arrays are length 256.  & 0xff before indexing.  Fixes the
14397         crash in bug #78077.
14398         
14399 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14400
14401         * ThemeWin32Classic.cs: 
14402         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
14403         is true. Handle that check box too.
14404
14405 2006-09-07  Chris Toshok  <toshok@ximian.com>
14406
14407         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
14408         79244.
14409
14410 2006-09-07  Chris Toshok  <toshok@ximian.com>
14411
14412         * Control.cs: in set_BackColor only do the work if
14413         background_color != value.
14414
14415         * XplatUIX11.cs: move the clearing of invalid areas (both client
14416         and nc) to the same block of code where we set (nc_)expose_pending
14417         to false.  That is, move it from PaintEventEnd to PaintEventStart,
14418         so things that cause invalidates from within OnPaint will trigger
14419         another call to OnPaint.  Fixes bug #79262.
14420
14421 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
14422
14423         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
14424         * FileDialog.cs: Fix typo
14425
14426 2006-09-07  Jackson Harper  <jackson@ximian.com>
14427
14428         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
14429         for tab pages if they have any.
14430
14431 2006-09-06  Mike Kestner  <mkestner@novell.com>
14432
14433         * Splitter.cs: use the "current" rect when finishing drag handle
14434         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
14435
14436 2006-09-06  Mike Kestner  <mkestner@novell.com>
14437
14438         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
14439         support offset splitters. [Fixes #79298]
14440
14441 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
14442
14443         * Mime.cs: Fixed a bug that could override the global mime type
14444           result.
14445
14446 2006-09-05  Jackson Harper  <jackson@ximian.com>
14447
14448         * TabControl.cs: Better calculation method for setting the slider
14449         pos. Prevents crashes on really wide tabs.
14450         - Draw Image on tab pages if an image list is used.
14451
14452 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14453
14454         * MonthCalendar.cs: When Font changes, the Size should be
14455         updated to fit the new font's space requirements.
14456
14457 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
14458
14459         * ListBox.cs: If the items are cleared with Items.Clear set
14460           top_index to 0.
14461
14462 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14463
14464         * MonthCalendar.cs: Handle arrow keys as input keys. Also
14465         fire DateChanged event instead of DateSelected event when
14466         the date was changed by keyboard interaction.
14467
14468 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14469
14470         * DateTimePicker.cs: Handle DateChanged for the associated
14471         month_calendar control, and set month_calendar.Font from 
14472         OnFontChanged method, as well as resize the height of the
14473         control when needed. Make PreferredHeight proportional.
14474
14475 2006-09-01  Chris Toshok  <toshok@ximian.com>
14476
14477         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
14478         properties.
14479
14480         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
14481
14482 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
14483
14484         * FileDialog.cs: Set ClientSize instead of window size, to allow space
14485           for decorations (Fixes #79219)
14486
14487 2006-09-01  Mike Kestner  <mkestner@novell.com>
14488
14489         * ComboBox.cs: first stab at sorting plus some selection handling
14490         fixes to bring us more in line with MS behavior.  Also switches back
14491         to index based selection.  Alternative patches for index-based 
14492         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
14493         and latency@gmx.de on bug 78848.  I assume they were similar to this
14494         code I've had simmering in my tree forever.
14495         [Fixes #78848]
14496
14497 2006-09-01  Chris Toshok  <toshok@ximian.com>
14498
14499         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
14500         when setting list position guard against ending up with a -1 index
14501         (the other part of the fix for #78812).  Should probably make sure
14502         we don't need the analogous fix in the ItemDeleted case.
14503
14504         * DataGrid.cs:
14505         - in SetDataSource, work around the fact that the way
14506         OnBindingContextChanged is invoked will cause us to re-enter this
14507         method.  I'll remove the hack once I investigate
14508         OnBindingContextChanged.
14509
14510         - fix the logic in set_DataSource and set_DataMember (basically
14511         what to do if the other of the two is null.)
14512         
14513         - in OnListManagerItemChanged, we need to take into account the
14514         edit row when deciding whether or not to call RecreateDataGridRows
14515         (part of the fix for #78812).
14516
14517 2006-09-01  Jackson Harper  <jackson@ximian.com>
14518
14519         * Splitter.cs: Don't do anything if there is no control to affect
14520         (prevents us from crashing in weird tet cases).
14521         * TreeView.cs: Bounding box for the mouse movement reverting
14522         focus/selection back to previously selected node.  This matches
14523         MS, and makes the tree a lot more useable.
14524         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
14525         use clipping so they are not drawn.  This fixes when the control
14526         is set to have a transparent background, or if it was over an
14527         image.
14528
14529 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
14530
14531         * MimeIcon.cs: Improved handling for reading default icons when
14532           using gnome (2.16 made it necessary). Check and read svg icons
14533           first, then 48x48 and then 32x32 icons.
14534
14535 2006-08-31  Chris Toshok  <toshok@ximian.com>
14536
14537         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
14538         visible.
14539
14540         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
14541         ProcessKeyPreview.  Fixes part of #77806.
14542
14543         * DataGrid.cs: big patch.
14544
14545         - revert the queueing up of DataSource/DataMember if inside
14546         BeginInit/EndInit calls.  That's not the way the datagrid achieves
14547         its delayed databinding.  Instead, call SetDataSource in
14548         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
14549         #78811.
14550
14551         - Also, it wasn't mentioned in #78811, but the test case exhibits
14552         behavior that was lacking in our datagrid implementation - Columns
14553         that have mapping names that don't exist in the datasource's
14554         properties aren't shown.  Yuck.  To fix this I added the bound
14555         field to the column style, and basically any calculation to figure
14556         out anything about columns uses a loop to find the bound columns.
14557         still need to investigate if I can cache an array of the bound
14558         columns or if the indices must be the same.
14559
14560         - When setting CurrentCell, we no longer abort if the cell being
14561         edited was in the add row.  This fixes the other part of #77806.
14562
14563         - The new code also fixes #78807.
14564         
14565         * ThemeWin32Classic.cs: perpetrate the same disgusting
14566         column.bound field hack, and only render bound fields.
14567
14568 2006-08-31  Chris Toshok  <toshok@ximian.com>
14569
14570         * DataGridColumnStyle.cs: add bound field.  this field is true if
14571         the datasource has a property corresponding to the mapping name.
14572
14573         * DataGridTableStyle.cs: set the bound field on the column styles
14574         depending on whether or not we have a column for that property.
14575
14576 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
14577
14578         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
14579           splitter control (fixes #79228)
14580
14581 2006-08-31  Chris Toshok  <toshok@ximian.com>
14582
14583         * DataGridColumnStyle.cs: we need to delay the assignment of
14584         property descriptor until the last possible moment due to the lazy
14585         databinding stuff in the datagrid.  Also, fix the exceptions
14586         thrown by CheckValidDataSource to match MS.
14587
14588 2006-08-31  Jackson Harper  <jackson@ximian.com>
14589
14590         * Form.cs: When activated select the active control, if there is
14591         no active control, we select the first control.
14592         * XplatUIX11.cs: If there is no focus control when we get a
14593         FocusIn event, find the toplevel form and activate it.  This
14594         occurs when you popup a window, it becomes the focus window, then
14595         you close that window, giving focus back to the main window.
14596
14597 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14598
14599         * MonthCalendar.cs: 
14600         * ThemeWin32Classic.cs: Cache Font in bold style, as well
14601         as StringFormat with Center alignments in MonthCalendar,
14602         instead of creating new ones when drawing the control. 
14603         Also, draw the month name in bold style.
14604
14605 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14606
14607         * Control.cs:
14608           - PerformLayout(): It would seem MS performs the fill even if the 
14609             control is not visible (part of #79218 fix)
14610           - ResetBackColor(): Use the setter to reset the color, to allow
14611             overriders to catch the change.
14612         * Form.cs:
14613           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
14614           - CreateHandle(): dito (part of $79218 fix)
14615           - Don't set an icon if we have a dialog
14616         * ScrollableControl.cs:
14617           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
14618           - ScrollIntoView(): No need to scroll if control is already visible
14619             (resolves fixme and fixes #79218)
14620
14621 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14622
14623         * MonthCalendar.cs: Change proportions in SingleMonthSize
14624         to match the aspect of the original control.
14625
14626 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
14627
14628         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
14629           get updated when they get maximized.
14630
14631 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14632
14633         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
14634
14635 2006-08-29  Chris Toshok  <toshok@ximian.com>
14636
14637         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
14638
14639 2006-08-29  Jackson Harper  <jackson@ximian.com>
14640
14641         * TreeView.cs: Need to track selected node and highlighted node,
14642         they aren't always the same thing, when the mouse is down on a
14643         node it is hilighted, but not selected yet.
14644         - Do the HideSelection stuff right
14645         - Need to focus on rbutton mouse down. And redraw selection when
14646         right click is mouse upped.
14647
14648 2006-08-29  Mike Kestner  <mkestner@novell.com>
14649
14650         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
14651         when SubItems.Count < Columns.Count.  [Fixes #79167]
14652
14653 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
14654
14655         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
14656
14657 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
14658
14659         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
14660           from X. Only send based on ConfigureNotify if we don't have the
14661           correct location in hwnd (if the window manager moved us)
14662
14663 2006-08-28  Mike Kestner  <mkestner@novell.com>
14664
14665         * ListView.cs: remove a TODO. 
14666         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
14667         [Fixes ListView part of #79166]
14668
14669 2006-08-28  Mike Kestner  <mkestner@novell.com>
14670
14671         * ListView.cs: move wheel handler to parent since it is focused
14672         instead of the item_control now.  [Fixes #79177]
14673
14674 2006-08-28  Mike Kestner  <mkestner@novell.com>
14675
14676         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
14677         when the control is focused. [Fixes #79171]
14678
14679 2006-08-28  Mike Kestner  <mkestner@novell.com>
14680
14681         * ListView.cs: size the item and header controls for empty and
14682         unscrollable views.
14683         * ThemeWin32Classic.cs: draw disabled backgrounds.
14684         [Fixes #79187]
14685
14686 2006-08-28  Chris Toshok  <toshok@ximian.com>
14687
14688         * Form.cs: remove unused "active_form" static field.
14689
14690         * Hwnd.cs: lock around accesses to static windows collection.
14691
14692         * Application.cs: lock threads in Exit ().
14693
14694 2006-08-28  Chris Toshok  <toshok@ximian.com>
14695
14696         * NativeWindow.cs: lock around accesses to window_collection.
14697         
14698 2006-08-28  Chris Toshok  <toshok@ximian.com>
14699
14700         * Control.cs: err, fix this the right way, by locking on controls
14701         when using it.  not by making it synchronized.
14702
14703 2006-08-28  Chris Toshok  <toshok@ximian.com>
14704
14705         * Control.cs: make the static "controls" field synchronized, as it
14706         gets updated from multiple threads.
14707
14708 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14709
14710         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
14711           Prevent other threads from exiting when calling thread sets quit state.
14712         * XEventQueue.cs: Added PostQuitState property
14713
14714 2006-08-27  Chris Toshok  <toshok@ximian.com>
14715
14716         * AsyncMethodData.cs: add a slot for the window handle.
14717
14718         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
14719         window (the destination control's window, not the foster window).
14720
14721         * Control.cs (BeginInvokeInternal): store the window's handle in
14722         the AsyncMethodData.
14723         
14724
14725 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14726
14727         * XplatUIX11.cs:
14728           - PostQuitMessage: Removed resetting S.D display handle, we might have
14729             another loop started after calling PostQuitMessage (Fixes #79119)
14730           - Created destructor to reset S.D handle
14731
14732 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
14733
14734         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
14735
14736 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14737
14738         * TextControl.cs (Insert): Update the caret position even if we don't
14739           have a handle yet, just don't call the driver in that case.
14740         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
14741           to the end of the new selection text (Fixes #79184)
14742
14743 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14744
14745         * Form.cs (Activate): Only activate if the handle is created)
14746         * Control.c:
14747           - Mark window as invisible when it's disposed
14748           - Check if window handle is created when setting window visible, 
14749             instead of relying just on the is_created variable
14750           - Check if object is disposed when creating the control (Fixes #79155)
14751
14752 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14753
14754         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
14755           when allowing layout again. Otherwise we re-generate the anchoring 
14756           distance to the border again and actually alter what the user wanted
14757           This is ugly, it'd be better if we used DisplayRectangle instead of
14758           ClientRectangle for Control.UpdateDistances, but that causes us to
14759           have other problems (initial anchoring positons would be wrong)
14760           (Fixes #78835)
14761
14762 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14763
14764         * Control.cs:
14765           - The size and location setters shouldn't go directly to 
14766             SetBoundsCore, but to SetBounds, which triggers layout on the
14767             parent, then calls SetBoundsCore. (Related to fix for #78835)
14768           - SetBounds: Moved actual location update code into this function
14769             from SetBoundsCore, to match MS. Added call to PerformLayout if
14770             we have a parent (to trigger resizing of anchored parents if the 
14771             child size has changed (see testcase for #78835) 
14772         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
14773           new control code
14774         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
14775
14776 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14777
14778         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
14779           System.Drawing when a toplevel window gets closed; there might
14780           be other toplevel windows belonging to the same app (Fixes #78052)
14781
14782 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
14783
14784         * FileDialog.cs: After reading FileDialog settings from mwf_config
14785           use Desktop prefix only if a real folder doesn't exist anymore.
14786         * FontDialog.cs: Added char sets.
14787           It is now possible to select the font, size or style with the
14788           textboxes.
14789
14790 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
14791
14792         * PrintPreviewDialog.cs: Use assembly name constants.
14793
14794 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14795
14796         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
14797           scrollbar from whacking it's buttons)
14798
14799 2006-08-24  Chris Toshok  <toshok@ximian.com>
14800
14801         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
14802         in this patch (aggregating setting Left/Top/Width/Height to
14803         setting Bounds on the scrollbars), but the crux of the fix is in
14804         Recalculate, where we scroll by the remaining scroll_position if
14805         we're hiding a scrollbar.  The 2*$5 reward in the comment is
14806         serious.
14807
14808 2006-08-24  Jackson Harper  <jackson@ximian.com>
14809
14810         * MdiClient.cs:
14811         * MdiWindowManager.cs: If the form is made a non-mdi window we
14812         need to remove the form closed event so that closing forms works
14813         correctly.
14814
14815 2006-08-24  Jackson Harper  <jackson@ximian.com>
14816
14817         * Control.cs: Make IsRecreating internal so that the driver can
14818         check it
14819         - Temporarily remove the Hide when controls are removed, its
14820         making a whole bunch of things not work because visibility isn't
14821         getting reset elsewhere correctly
14822         * Form.cs: Need to do a full handle recreation when the mdi parent
14823         is set.
14824         * XplatUIX11.cs: If we are recreating handles don't dispose the
14825         HWNDs.  What was happening is the handles were being recreated in
14826         SendWMDestroyMessages, but then flow continued on in that method
14827         and destroyed the new handles.
14828
14829 2006-08-23  Jackson Harper  <jackson@ximian.com>
14830
14831         * Form.cs: MdiClient is always at the back of the bus
14832         * Control.cs: When the order of items in the collection is changed
14833         we need to reset the all_controls array
14834         - do the same sorta setup thats done when adding a control when a
14835         control is set on the collection.
14836
14837 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14838
14839         * TextBoxBase.cs (get_Text): Return an empty array if our document
14840           is empty (fixes #79052)
14841
14842 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14843
14844         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
14845           on WM_SYSCHAR messages (fixes #79053)
14846
14847 2006-08-23  Chris Toshok  <toshok@ximian.com>
14848
14849         * DataGrid.cs: fix flickering when scrolling vertically.
14850
14851 2006-08-23  Chris Toshok  <toshok@ximian.com>
14852
14853         * DataGrid.cs (EndEdit): only invalidate the row header when we
14854         need to.
14855
14856 2006-08-23  Chris Toshok  <toshok@ximian.com>
14857
14858         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
14859         methods.  fixes the flicker when scrolling around.
14860
14861 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14862
14863         * FileDialog.cs: Making sure the control is created before we get a 
14864           chance to use it with BeginInvoke (Fixes #79096)
14865
14866 2006-08-23  Chris Toshok  <toshok@ximian.com>
14867
14868         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
14869         width to use when painting the rows.
14870
14871 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14872
14873         * TextBoxBase.cs:
14874           - Throw ArgumentException if a negative value is passed to SelectionLength
14875           - Update the selection end if start is moved. end needs to be always
14876             after start. (Fixes #79095)
14877           - Track selection length; MS keeps the selection length even if start
14878             is changed; reset on all other operations affection selection
14879
14880 2006-08-22  Jackson Harper  <jackson@ximian.com>
14881
14882         * TreeView.cs: Make sure both scrollbars get displayed and sized
14883         correctly when the other bar is visible.
14884         - Use the original clip rectangle for checking if the area between
14885         the two scrollbars is visible, not the viewport adjusted clipping
14886         rectangle.
14887
14888 2006-08-22  Jackson Harper  <jackson@ximian.com>
14889
14890         * Binding.cs: We don't use IsBinding because it requires the
14891         control to be created, which really shouldn't be necessary just to
14892         set a property on the control.
14893
14894 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14895
14896         * ComboBox.cs: Some CB.ObjectCollection methods must throw
14897         ArgumentNullReferenceException when the argument is null.
14898
14899 2006-08-21  Jackson Harper  <jackson@ximian.com>
14900
14901         * Timer.cs: Track the thread that the timer is started in (NOT
14902         CREATED), this way messages for it will only be triggered on its
14903         queue.
14904         * XEventQueue.cs: Track the timers here, this makes timers per
14905         thread, like MS.
14906         * XplatUIX11.cs: The timers are moved to the XEventQueue.
14907
14908 2006-08-19  Chris Toshok  <toshok@ximian.com>
14909
14910         * XplatUIX11.cs: after further communication with pdb, we get the
14911         best of both worlds.  SetZOrder working for un-Mapped windows, and
14912         no X errors for un-mapped windows.
14913
14914 2006-08-19  Chris Toshok  <toshok@ximian.com>
14915
14916         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
14917         as it was causing pdn toolbars to not have the correct stacking.
14918
14919 2006-08-18  Mike Kestner  <mkestner@novell.com> 
14920
14921         * ListView.cs : guard against negative ClientArea.Width in scrollbar
14922         calculation.  Not sure why control should ever be setting a negative
14923         width though.  Fixes #78931.
14924
14925 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14926
14927         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
14928         null items in ObjectCollection class.
14929         * ListBox.cs.: Likewise.
14930
14931 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
14932
14933         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
14934           as the base method in ThemeWin32Classic should work fine.
14935           Fixed bug #78607.
14936
14937 2006-08-18  Jackson Harper  <jackson@ximian.com>
14938
14939         * Binding.cs: When validating if the value entered doesn't convert
14940         properly reset to the old value.
14941         * RadioButton.cs: Don't fire click when we get focus.
14942
14943 2006-08-18  Jackson Harper  <jackson@ximian.com>
14944
14945         * FileDialog.cs: Paint the selection on the directory combobox the
14946         same way as on MS. 
14947
14948 2006-08-17  Jackson Harper  <jackson@ximian.com>
14949
14950         * ErrorProvider.cs: Don't allow the error control to be selected.
14951         * Control.cs: Don't send the SetFocus messages, the control
14952         activation will do this, and if we do it blindly here validation
14953         does not work.
14954
14955 2006-08-17  Jackson Harper  <jackson@ximian.com>
14956
14957         * Control.cs:
14958         * ContainerControl.cs: Make validation events fire in the correct
14959         order.  TODO: For some reason the first validation event is not
14960         getting fired.
14961
14962 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14963
14964         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
14965
14966 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14967
14968         * ComboBox.cs : implement scroll wheel support for popped-down
14969         state. Fixes #78945. 
14970
14971 2006-08-17  Jackson Harper  <jackson@ximian.com>
14972
14973         * TreeView.cs: Specify treeview actions (old patch that didn't get
14974         committed for some reason).
14975         - Don't let the mouse wheel scroll us too far.  Just want to make
14976         the bottom node visible, not scroll it all the ways to the top.
14977
14978 2006-08-17  Jackson Harper  <jackson@ximian.com>
14979
14980         * XplatUIX11.cs: Mouse wheel events go to the focused window.
14981
14982 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14983
14984         * ComboBox.cs : don't do mouseover selection in simple mode.
14985
14986 2006-08-16  Jackson Harper  <jackson@ximian.com>
14987
14988         * Form.cs: Fire the closing events for all the mdi child windows
14989         when a window is closed.  If the cancel args are set to true, the
14990         main window still gets the event fired, but it doesn't not close.
14991         * MdiWindowManager.cs: Do this closing cleanup in a Closed
14992         handler, instead of when the button is clicked, so cancelling the
14993         close works correctly.
14994         * ComboBox.cs: Send the mouse down to the scrollbar.
14995
14996 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14997
14998         * ListBox.cs: When passing 'null' to SelectedItem,
14999         set SelectedIndex to -1, to unselect items. This is the
15000         observed behaviour in .Net.
15001
15002 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
15003
15004         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
15005           MS flags saying there won't be any. (fixes #78800)
15006         * Control.cs (HandleClick): Made virtual
15007
15008 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
15009
15010         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
15011           cultures. Fixed bug #78399.
15012
15013 2006-08-16  Jackson Harper  <jackson@ximian.com>
15014
15015         * Form.cs: Use the MdiClients MdiChildren property to access
15016         MdiChildren instead of creating the array from the child controls.
15017         * MdiClient.cs: Maintain a separate array of the mdi children, so
15018         that insertion order is maintained when the Z-order is changed.
15019
15020 2006-08-16  Mike Kestner  <mkestner@novell.com> 
15021
15022         * ListView.cs : add an ItemComparer and default to it for sorting.
15023         Fixes #79076, but sorting needs a complete overhaul to be compat with
15024         MS.
15025
15026 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
15027
15028         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
15029
15030 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15031
15032         * Hwnd.cs (Mapped): Properly traverse the tree
15033
15034 2006-08-15  Chris Toshok  <toshok@ximian.com>
15035
15036         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
15037         pass manager.Current.GetType() to ParseData.  It has to be the
15038         property type.  So, hold off doing the ParseData until we're in
15039         SetPropertyValue where we know the type.  This fixes the crash in
15040         #78821 but the textbox is still empty.
15041
15042 2006-08-15  Chris Toshok  <toshok@ximian.com>
15043
15044         * DataGrid.cs:
15045         - when we're scrolling, only call Edit() again if the
15046         current cell is still unobscured. Fixes bug #78927.
15047         - when handling mousedown on a cell, ensure the cell is visible
15048         before calling Edit.
15049         - remove the properties from DataGridRow, and remove the
15050         DataGridParentRow class altogether.
15051         
15052
15053 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15054
15055         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
15056           fire OnTextChanged by ourselves. There's no point calling base,
15057           we don't set the base value anywhere else. Fixes #78773.
15058
15059 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15060
15061         * ListBox.cs: Call CollectionChanged when modifying
15062         an item from Items indexer, to update the actual items
15063         in the list box.
15064
15065 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15066
15067         * PrintDialog.cs: Small fixes for focus and a pair of checks,
15068         to match .Net behaviour.
15069
15070 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15071
15072         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
15073
15074 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
15075
15076         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
15077
15078 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15079
15080         * MessageBox.cs: Prevent potential NRE exception.
15081         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
15082
15083 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
15084
15085         * MessageBox.cs: Calculate the owner of a messagebox, also make
15086           it topmost. Fixes #78753
15087
15088 2006-08-14  Chris Toshok  <toshok@ximian.com>
15089
15090         * XplatUIX11.cs: A couple of fixes so that metacity will let us
15091         programmatically move windows.  first, set the PPosition hint as
15092         well as the USPosition hint.  Second include some code from pdb
15093         that sets the window type to NORMAL when we set the transient for
15094         hint.  This is because, in the absence of a window type, metacity
15095         thinks any window with TransientFor set is a dialog, and refuses
15096         to let us move it programmatically.  fascists.
15097
15098 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
15099
15100         * XplatUIX11.cs: When setting normal hints, take into consideration
15101           an different hints previously set so we don't delete them (fixes #78866)
15102
15103 2006-08-12  Chris Toshok  <toshok@ximian.com>
15104
15105         * ToolBarButton.cs: make Layout return a boolean, if something to
15106         do with the button's layout changed.
15107
15108         * ToolBar.cs:
15109         - add another parameter to Redraw, @force, which all existing
15110           calls set to true.
15111         - make the Layout function return a boolean which is true if the
15112           layout has actually changed.  Redraw now uses this (and @force)
15113           to determine when to invalidate.  At present the only place
15114           where @force can be false is the call from OnResize, when
15115           background_image == null.  So, resizing a toolbar when the
15116           layout doesn't change results in no drawing.
15117
15118 2006-08-12  Chris Toshok  <toshok@ximian.com>
15119
15120         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
15121         the VScrollBar and HScrollbar reversed.  oops.
15122
15123         * DataGrid.cs: fix the logic that assigns sizes to the implicit
15124         scrollbars.  we were assigning them twice (once in
15125         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
15126         therefore causing two scrollbar resizes (and redraws?) to happen
15127         per grid resize.
15128
15129 2006-08-12  Chris Toshok  <toshok@ximian.com>
15130
15131         * ToolBarButton.cs: redraw the entire button if the theme tells us
15132         to.
15133
15134         * Theme.cs: add ToolBarInvalidateEntireButton.
15135
15136         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
15137         buttons, just the border.
15138
15139         * ThemeNice.cs: redraw the entire toolbar button since we need to
15140         draw the highlight image.
15141
15142         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
15143         we need to redraw the entire button (not just the border).
15144
15145 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
15146
15147         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
15148           for vertical bars. Fixes the mismatches shown by #78513
15149
15150 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
15151
15152         * FileDialog.cs: If a saved/remembered path doesn't exist
15153           anymore, fall back to "Desktop".
15154
15155 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
15156
15157         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
15158           parent. It's apparently legal to not have one
15159         * XplatUIX11.cs:
15160           - SetZOrder: Don't try to set Z-Order on an unmapped window
15161           - CreateWindow: 0,0 are legal coordinates for a window. don't move
15162             it unless the coordinates are negative
15163
15164 2006-08-10  Mike Kestner  <mkestner@novell.com>
15165
15166         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
15167         when setting to null per msdn docs.  Fixes #78854.
15168
15169 2006-08-10  Chris Toshok  <toshok@ximian.com>
15170
15171         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
15172         flickering by setting a clip rectangle on the Graphics when we
15173         need to redraw just a particular menuitem.  Also, rename "OnClick"
15174         to "OnMouseDown" to reflect what it actually is.
15175         
15176         * Form.cs: track the OnMouseDown change.
15177
15178 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
15179
15180         * CommonDialog.cs: Properly inherit the CreateParams from the form
15181           and only change what we need. Fixes #78865
15182
15183 2006-08-10  Chris Toshok  <toshok@ximian.com>
15184
15185         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
15186         flickering in flat mode (and most of the flickering in general) by
15187         only invalidating the button border (and not the entire rectangle)
15188         when the state changes.  A couple of cases still flicker:
15189         ToggleButtons, and the dropdown arrow case when the user mouse
15190         ups.
15191
15192 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
15193
15194         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
15195           for german keyboards. Numlock state shouldn't affect the behaviour
15196           of the Del key. Fixes bug #78291.
15197
15198 2006-08-10  Chris Toshok  <toshok@ximian.com>
15199
15200         * ListControl.cs: remove the items.Clear line from BindDataItems,
15201         as this is the first thing done by both subclasses in their
15202         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
15203         passed -1, refresh the list.  This gets databinding working when
15204         the datasource is set on the list before the datasource is
15205         populated (as in wf-apps/ReportBuilder.)
15206
15207         * ComboBox.cs: remove the argument to BindDataItems.  This call
15208         should really go away, and be initiated by the ListControl code.
15209
15210         * ListBox.cs: same.
15211
15212 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
15213
15214         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
15215           if no data is in the document when the control is displayed
15216
15217 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
15218
15219         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
15220           yes (fixes #78806)
15221         * TextControl.cs: 
15222           - PositionCaret: Allow positioning of caret but don't call methods 
15223             requiring a handle if the window isn't created yet
15224           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
15225           - owner_HandleCreated: Don't position the caret, just update it's 
15226             location. User might have already set a different position
15227
15228 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
15229
15230         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
15231           windows. Screws up the returned coordinates for child windows. 
15232           Fixes #78825. I'm hoping this doesn't break something, since the
15233           code was explicitly put in 8 months ago, but no bug was attached.
15234           Menus still seem to work properly.
15235
15236 2006-08-08  Chris Toshok  <toshok@ximian.com>
15237
15238         * DataGrid.cs: make BeginInit/EndInit actually do what they're
15239         supposed to do - delay data binding until the EndInit call.  Also,
15240         make the table style collection's CollectionChangeAction.Refresh
15241         work properly.
15242
15243         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
15244         (with action = Refresh) when a consituent table's MappingName is
15245         changed.
15246
15247 2006-08-08  Chris Toshok  <toshok@ximian.com>
15248
15249         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
15250         Invalidate, since changing the text can change the size of the all
15251         toolbar buttons.
15252
15253 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
15254
15255         * Form.cs (AddOwnedForm): Still need to add the form to our listif
15256           we don't have it yet
15257
15258 2006-08-08  Chris Toshok  <toshok@ximian.com>
15259
15260         * PrintControllerWithStatusDialog.cs: don't .Close() the status
15261         dialog, as this causes X errors later on, since we actually
15262         destroy the window.  Instead, .Hide() it.
15263
15264 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
15265
15266         * ComboBox.cs: Added focus reflection for popup window
15267         * XplatUIX11.cs: 
15268           - Removed transient setting for non-app windows for now, not sure it
15269             was needed
15270           - Fixed logic checking if we have captions when deciding 
15271             override_redirect, WS_CAPTION is two bits and a 0 check was not
15272             sufficient
15273           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
15274             complicated
15275         * Form.cs: 
15276           - AddOwnedForm: Don't just add the form to the list, call the property
15277             to ensure the driver is informed about the ownership as well
15278           - CreateHandle: Set the TopMost status in the driver if we have an owner
15279         * XplatUI.cs: Fixed debug statement
15280
15281 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
15282         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
15283           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
15284           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
15285           TrackBarRenderer.cs: Make constructor private.
15286         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
15287         * ProfessionalColorTable.cs: Make properties virtual.
15288
15289 2006-08-06  Duncan Mak  <duncan@novell.com>
15290
15291         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
15292         is not changing.
15293
15294 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15295         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
15296           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
15297           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
15298           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
15299           Initial import of new 2.0 classes.
15300
15301 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15302         * Application.cs: Add 2.0 VisualStyles properties.
15303
15304 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15305         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15306           XplatUIX11.cs: Create property to allow access to existing private
15307           variable "themes_enabled"
15308
15309 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15310
15311         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
15312         file size, as otherwise our class libraries fail using windows. Fixes
15313         bug #78759.
15314
15315 2006-08-04  Jackson Harper  <jackson@ximian.com>
15316
15317         * Form.cs:
15318         * XplatUIX11.cs: Move the toolwindow window manager creation into
15319         the X11 driver, this way on win32 we can let windows create/handle
15320         the toolwindows.
15321
15322 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15323
15324         * PrintDialog.cs: Remove some redundant checks, add some others,
15325         clean some code, and move the focus to the text boxes when the
15326         values are incorrect.
15327
15328 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
15329
15330         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
15331
15332 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
15333
15334         * NumericUpDown.cs: Setting the Minimum and Maximum is now
15335           handled correctly. Fixes bug #79001.
15336
15337 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15338
15339         * PrintDialog.cs: The "Copies" numeric up down must have
15340         set the Minimum property to 1; only if the value is bigger
15341         than 1, activate "Collate" check box. This is the behaviour of .Net.
15342         Also modify the Document elements only if it is not null.
15343
15344 2006-08-03  Jackson Harper  <jackson@ximian.com>
15345
15346         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
15347         length. (We have a larger array then actual node count).
15348                 
15349 2006-08-03  Jackson Harper  <jackson@ximian.com>
15350
15351         * ComboBox.cs: Don't show selection by default.
15352         - The SelectAll isn't needed here, since the focus code should do
15353         that
15354         - DDL style lists to manual selection drawing, so when they
15355         get/lose focus they have to invalidate.
15356
15357 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
15358
15359         * TextBoxBase.cs: Don't always show all selections by default.
15360
15361 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
15362         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
15363           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
15364           Fixed various typos.
15365
15366 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
15367
15368         * Control.cs: Removing the controls in a ControlCollection with
15369           Clear now hides the controls as expected. Fixes bug #78804. 
15370
15371 2006-08-03  Jackson Harper  <jackson@ximian.com>
15372
15373         * Control.cs: Revert previous focus patch, it breaks reflector.
15374
15375 2006-08-03  Jackson Harper  <jackson@ximian.com>
15376
15377         * ComboBox.cs: Cleanup selection and focus with the combobox.
15378         This also eliminates some duplicated keyboard code, since now
15379         everything is handled by the main class.
15380         - Make list selection work on mouse up instead of down, to match
15381         MS.
15382
15383 2006-08-02  Jackson Harper  <jackson@ximian.com>
15384
15385         * Control.cs: Setting focus needs to go through the whole
15386         selection mechanism.
15387
15388 2006-08-02  Chris Toshok  <toshok@ximian.com>
15389
15390         * PrintPreviewDialog.cs: change MinimumSize to use
15391         base.MinimumSize so it works.
15392
15393 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
15394
15395         * TextControl.cs:
15396           - UpdateCaret: Added sanity check in case caret isn't defined yet
15397           - Line.Delete: Now updating selection and caret markers if we're
15398             transfering a node (Properly fixes #78323)
15399           - SetSelectionEnd: Added sanity check
15400         * TextBoxBase.cs: Removed broken attempt to fix #78323
15401
15402 2006-08-01  Chris Toshok  <toshok@ximian.com>
15403
15404         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
15405         Close() call is handled in Form, not here.
15406
15407 2006-08-01  Chris Toshok  <toshok@ximian.com>
15408
15409         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
15410         layout/rendering.
15411
15412         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
15413         for sizes < 100% zoom.  The code now aggressively attempts to keep
15414         from calling document.Print (), and tries not to use the scaling
15415         g.DrawImage whenever possible (it still does if you scale to >
15416         100%, since usually that involves huge images).
15417
15418         * PrintPreviewControl.cs: hook up the close button.
15419
15420 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
15421         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
15422           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
15423           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
15424           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
15425           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
15426           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
15427           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
15428           Removed [Serializable] for 2.0 Event Handlers.
15429
15430 2006-07-31  Jackson Harper  <jackson@ximian.com>
15431
15432         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
15433         * TextControl.cs: Uncomment out the body of this method.
15434
15435 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
15436
15437         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
15438           standard cursors.
15439
15440 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15441
15442         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
15443           that embed TextBox and need selections visible even if textbox is not
15444           focused to enforce that behaviour.
15445         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
15446           selection drawing
15447
15448 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15449
15450         * TextControl.cs:
15451           - Added new SetSelectionStart/SetSelectionEnd overloads
15452           - Fixed viewport width assignment to be accurate
15453           - Adjusted alignment line shift calculations to allow cursor on right
15454             aligned lines to be always visible at the right border (like MS)
15455         * TextBoxBase.cs:
15456           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
15457           - TextBoxBase_SizeChanged: recalculating canvas on size changes
15458           - CalculateScrollBars: Use ViewPort size instead of window size, to
15459             properly consider space occupied by the border and scrollbars 
15460             (Fixes #78661)
15461           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
15462             calculations; no longer leaves artifacts
15463           - CaretMoved: Adjusted window scrolling to match MS and fixed several
15464             calculation bugs (Still missing right/center align calculations)
15465
15466 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
15467
15468         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
15469           use of both scroll rect and clip rect, as they do the same.
15470
15471 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15472
15473         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
15474           in the event handler (fixes #78912)
15475
15476 2006-07-31  Chris Toshok  <toshok@ximian.com>
15477
15478         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
15479         grid.ListManager.Count, since grid.ListManager might be null.
15480         This of course begs the question "why are we drawing rows for a
15481         grid with no list manager (and therefor no rows)?"  Fixes the
15482         crash in bug #78929.
15483
15484 2006-07-31  Chris Toshok  <toshok@ximian.com>
15485
15486         * RelatedPropertyManager.cs: Don't always chain up to the parent
15487         ctor.  instead, call SetDataSource if the parent's position is !=
15488         -1.  Fixes the crash in #78822.
15489
15490 2006-07-31  Chris Toshok  <toshok@ximian.com>
15491
15492         * DataGrid.cs (get_ListManager): use field instead of property
15493         accessors for datasource and datamember.
15494         (RowsCount): make internal again.
15495         (OnMouseDown): end edits before resizing columns/rows.
15496         (OnMouseUp): restart edits after resizing columns/rows.
15497
15498 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
15499
15500         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
15501           This fixes the situation where the last set cursor is displayed
15502           whenever the mouse is over scrollbars.
15503
15504 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15505
15506         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
15507         Document properties, as well as initial values.
15508
15509 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
15510
15511         * XplatUIWin32.cs (SetBorderStyle): Setting both border
15512           and ClientEdge results in a 3-pixel border, which is
15513           wrong.
15514
15515 2006-07-28  Jackson Harper  <jackson@ximian.com>
15516
15517         * TreeNodeCollection.cs: Fix the clear method.
15518         - Fix the Shrink also
15519
15520 2006-07-27  Jackson Harper  <jackson@ximian.com>
15521
15522         * TreeView.cs: Make sure the visible order is computed when we
15523         attempt to size the scrollbars (for trees that mess with the
15524         scrolling when they shouldn't.
15525         - Make sure to give the scrollbars valid values.
15526
15527 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15528
15529         * XplatUIX11.cs: Move motion compression code to where it
15530           has less performance impact
15531
15532 2006-07-26  Jackson Harper  <jackson@ximian.com>
15533
15534         * UpDownBase.cs: When the control is selected make the child
15535         controls non selectable, so that a click on them won't do a
15536         focus/unfocus cycle.
15537         - Don't give focus to the text box when the spinner is selected.
15538         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
15539
15540 2006-07-26  Chris Toshok  <toshok@ximian.com>
15541
15542         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
15543         satisfied with this solution.  If the bitmaps are small, we should
15544         just cache them in the PrintPreviewDialog and draw them here.
15545         Also, the layout is broken for the 2-up and 3-up cases.
15546
15547         * Theme.cs: add PrintPReviewControlPaint.
15548
15549         * PrintPreviewDialog.cs: first pass implementation.
15550
15551         * PrintPreviewControl.cs: first pass implementation.  No
15552         scrollbars yet.
15553
15554         * PrintDialog.cs: only validate fields if that particular portion
15555         of the UI is enabled.  Also, set the document's controller to a
15556         PrintControllerWithStatusDialog wrapping the document's print
15557         controller.
15558
15559         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
15560         bring up a SaveFileDialog (i hope we don't want to match the
15561         behavior of the crappy windows file entry) and set the
15562         PrinterSettings.PrintFileName accordingly.
15563
15564 2006-07-26  Jackson Harper  <jackson@ximian.com>
15565
15566         * ContainerControl.cs: Add a field that disables auto selecting
15567         the next control in a container when the container is activated.
15568         * UpDownBase.cs: Don't select the text box when the up down is
15569         selected.
15570
15571 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15572
15573         * XEventQueue.cs: Added methods for peeking (used for compression
15574           of successive events)
15575         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
15576           mouse move events (fixes #78732)
15577
15578 2006-07-25  Jackson Harper  <jackson@ximian.com>
15579
15580         * UpDownBase.cs: Use an internal class for the textbox so that we
15581         can control focus.  the updown control should always have focus,
15582         if either the text area or the buttons are clicked.
15583         - Send the key messages to the textbox, since it never actually
15584         has focus
15585         - Activate and decativate the textbox caret.
15586
15587 2006-07-24  Jackson Harper  <jackson@ximian.com>
15588
15589         * Control.cs: Use the directed select when selecting a control,
15590         this way the container controls override will get called and the
15591         whole ActiveControl chain will get triggered.  TODO: probably need
15592         to make sure this gets done everywhere instead of the old
15593         Select(Control).
15594         * ContainerControl.cs: Implement the directed Select method to
15595         find and activate the correct child control.    
15596         
15597 2006-07-22  Mike Kestner  <mkestner@novell.com>
15598
15599         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
15600         menu handling code so that clicks without a grab work too.
15601         [Fixes #78914]
15602
15603 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
15604
15605         * FileDialog.cs: Enable the BackButton when dirstack has one element.
15606           Added some small optimizations.
15607
15608 2006-07-21  Matt Hargett  <matt@use.net>
15609
15610         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
15611
15612 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
15613
15614         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
15615           tests pass and match MS in some strange border cases.
15616
15617 2006-07-21  Chris Toshok  <toshok@ximian.com>
15618
15619         * ThemeWin32Classic.cs: handle drawing of the relation links and
15620         parent row buttons.
15621
15622         * Theme.cs: change args to DataGridPaintParentRow.
15623
15624         * DataGrid.cs: Don't use controls for the relation links and
15625         parent buttons, so we have to handle all their interactions in
15626         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
15627         when we're navigating through child tables, so we can reinstate
15628         selection, expanded state, current cell, etc.
15629
15630 2006-07-20  Chris Toshok  <toshok@ximian.com>
15631
15632         * ToolBar.cs: When we redraw a button, for whatever reason,
15633         there's no reason to redraw the entire toolbar.  Also, don't call
15634         Control.Refresh from within Redraw, as it's much heavier than
15635         Invalidate (which is really what we want).
15636
15637 2006-07-20  Chris Toshok  <toshok@ximian.com>
15638
15639         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
15640         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
15641         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
15642         traces from within a debug IBindingList datasource
15643         (in mono/winforms/datagrid) for *days*, I've finally gotten things
15644         to work in a similar fashion.
15645
15646 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15647
15648         * ListBox.cs: Don't call Sort () when setting 
15649         the Sorted property to false (avoid an unnecessary sort).
15650
15651 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15652
15653         * ListControl.cs: DataSource should throw an ArgumentException
15654         instead of a normal exception when the argument is not of the 
15655         correct type.
15656
15657 2006-07-20  Mike Kestner  <mkestner@novell.com>
15658
15659         * Control.cs: add InternalPreProcessMessage to allow us to steal
15660         key events before MWF gets its paws on them.  Adapted from a
15661         suggestion by eno.
15662         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
15663         up/down/left/right navigation. Override the new internal control
15664         method to steal the events since they never make it to WndProc.
15665         * ToolBarButton.cs: don't worry about pushed when setting hilight
15666         since the drawing code prefers pushed to hilight. Invalidate on 
15667         Hilight changes. Fixes #78547 and #78525.
15668
15669 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15670
15671         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
15672           the canvas size. Fixes #78868
15673
15674 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
15675
15676         * Splitter.cs: Track requested split position until first layout
15677           is performed. Fixes #78871
15678
15679 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15680
15681         * Application.cs: Removed code that forces 1.x for the version
15682           number if the version started with 0. Not sure why that code was
15683           there and I couldn't find any bugs that indicated we needed it.
15684           Fixes #78869
15685
15686 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
15687
15688         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
15689           ResetDefaults(), just write some output to the console until it's
15690           implemented. Fixes bug #78907 for now. Eliminated two warnings.
15691
15692 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
15693
15694         * PropertyGridView.cs: set StartPosition of drop down forms
15695         so they appear in correct initial spot.  Fixes #78190.
15696
15697 2006-07-19  Mike Kestner  <mkestner@novell.com>
15698
15699         * ThemeWin32Classic.cs: use parent background color when drawing
15700         flat toolbars.  Restructure the conditionals to make sure non-flat
15701         non-Divider toolbars are filled too.  Fixes #78837.
15702
15703 2006-07-19  Mike Kestner  <mkestner@novell.com>
15704
15705         * ListBox.cs: Sort on collection changes even if the handle
15706         isn't created yet.  Fixes #78813.
15707
15708 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15709
15710         * ListControl.cs: DisplayMember should never be null,
15711         and now we assign String.Empty when null is passed to it (this
15712         is the .Net way).
15713
15714 2006-07-17  Mike Kestner  <mkestner@novell.com>
15715
15716         * ListViewItem.cs: restructure Font and subitem Font handling 
15717         to hold a specific font and refer back to owner on null.
15718         Fixes #78761.
15719
15720 2006-07-17  Mike Kestner  <mkestner@novell.com>
15721
15722         * ToolBar.cs: bandaid for side-effect of previous patch which was
15723         discarding explicit heights for non-AutoSize toolbars.  Need to
15724         extend my format tester to deal with AutoSize=false. Fixes #78864.
15725
15726 2006-07-15  Jackson Harper  <jackson@ximian.com>
15727
15728         * LabelEditTextBox.cs:
15729         * TreeView.cs: Use a new LabelEdit class for node editing, this
15730         class automatically 'closes' itself when it gets the enter key or
15731         loses focus.
15732         - Use the client rectangle when setting the trees scrollbars, so
15733         border style is taken into account.
15734         
15735 2006-07-14  Jackson Harper  <jackson@ximian.com>
15736
15737         * TreeNode.cs:
15738         * TreeView.cs: Make the editing work similar to MSs, firing the
15739         events correctly and ending edits correctly.
15740
15741 2006-07-14  Mike Kestner  <mkestner@novell.com>
15742
15743         * ToolBarButton.cs:
15744         * ToolBar.cs: layout restructuring and redraw enhancements to support
15745         formatting changes gracefully, like setting TextAlign, ImageList, 
15746         ButtonSize, and Appearance.  Handles explicit button sizing quirks
15747         of the MS controls.  Things like flat toolbars ignoring button size
15748         but becoming constant sized at the largest button's size.  Normal
15749         toolbars with an image set cannot be shrunk smaller than the image,
15750         but text can be clipped/ignored.
15751         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
15752         is zero.  Seems like DrawString should be smart enough to not put
15753         anything on screen though. Also trim labels and ellipsize at the char
15754         boundary, not word.
15755         Fixes #78711 and #78483.
15756
15757 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15758
15759         * FolderBrowserDialog.cs: Disable "New Folder" button and
15760           "New Folder" contextmenu menuitem if a folder like "My Computer"
15761           is selected.
15762
15763 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15764
15765         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
15766         * FolderBrowserDialog.cs:
15767           - Use MWFConfig to store and read size and position settings
15768           - Added code to create a new folder (button or context menu).
15769             Use TreeView labeledit to change the name of the new folder.
15770
15771 2006-07-14  Jackson Harper  <jackson@ximian.com>
15772
15773         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
15774         when the tree is scrolled we end editing.
15775
15776 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15777
15778         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
15779           Down arrows
15780
15781 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
15782
15783         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
15784         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
15785         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
15786         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
15787         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
15788         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
15789         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
15790         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
15791         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
15792         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
15793         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
15794         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
15795         ListViewItemSelectionChangedEventHandler.cs,
15796         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
15797         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
15798         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
15799         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
15800         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
15801         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
15802         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
15803         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
15804         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
15805         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
15806         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
15807         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
15808         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
15809         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
15810         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
15811         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
15812         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
15813         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
15814         WebBrowserNavigatingEventHandler.cs, 
15815         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
15816
15817 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
15818
15819         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
15820         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
15821         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
15822         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
15823         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
15824         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
15825         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
15826         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
15827         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
15828         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
15829         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
15830         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
15831         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
15832         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
15833         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
15834         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
15835         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
15836         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
15837         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
15838         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
15839         ListViewItemStates.cs, MaskFormat.cs: Added
15840
15841 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
15842
15843         * PropertyGridView.cs: Fix keyboard navigation of drop down.
15844         Patch from eno for bug 78558.
15845         
15846 2006-07-13  Jackson Harper  <jackson@ximian.com>
15847
15848         * TreeView.cs: When an edit is finished make sure that the
15849         selected node is visible.
15850         - When setting the top/bottom use the scrollbars is_visible, so
15851         everything will be set correctly even if the tree isn't visible
15852         yet.
15853
15854 2006-07-13  Jackson Harper  <jackson@ximian.com>
15855
15856         * ComboBox.cs: Revert the item->index part of my previous patch.
15857         * TreeView.cs: Use LostFocus instead of Leave for detecting when
15858         the edit box has lost focus (duh).
15859         - Just make the edit box not visible when we get return, that will
15860         take the focus, which will call EndEdit
15861         * TreeNode.cs When we start editing, notify the treeview.
15862
15863 2006-07-12  Jackson Harper  <jackson@ximian.com>
15864
15865         * ComboBox.cs: Clear out old items before setting the item list.
15866         This prevents databound controls from having their items added
15867         twice.
15868         - Switch the combobox to use indices whereever possible instead of
15869         using Item's.  This allows usto navigate through lists that have
15870         more then one item with the same string value (ie a, b, b, a).
15871         - Scroll the listboxes scrollbar when a non visible item is
15872         highlighted
15873         - Allow keypress to cycle through all the possible values. For
15874         example if you have b1, b2, b3 and hold down the B key all the
15875         values will be cycled through.
15876         
15877 2006-07-12  Jackson Harper  <jackson@ximian.com>
15878
15879         * TextBoxBase.cs:
15880         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
15881         this using the internal methods.
15882         * Control.cs: Add OnGotFocusInternal.  A new method that allows
15883         controls to "override" OnGotFocus and change focus behavior if
15884         needed.
15885         - Same thing for LostFocus
15886         * ComboBox.cs: Pass off focus to the text control properly.
15887
15888 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
15889
15890         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
15891         * FolderBrowserDialog.cs: Almost a complete rewrite.
15892           - Better support for Environment.Specialfolders
15893           - Added support for MWFVFS
15894           - Made setting SelectedPath work
15895
15896 2006-07-12  Jackson Harper  <jackson@ximian.com>
15897
15898         * Control.cs: Optimze getting all the controls.
15899
15900 2006-07-11  Jackson Harper  <jackson@ximian.com>
15901
15902         * ContainerControl.cs: Override SETFOCUS in the container control,
15903         so that it is not selected on mouse click.
15904
15905 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
15906
15907         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
15908           Hopefully we will have a better way once all of focus is complete.
15909
15910 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
15911
15912         * ThemeWin32Classic.cs: Commented out some debug code and fixed
15913           a compile error with csc.
15914
15915 2006-07-11  Jackson Harper  <jackson@ximian.com>
15916
15917         * Control.cs: When hiding a control only select the next control
15918         if the current control was focused.
15919         - Don't handle enter/leave when setting/killing focus, this is
15920         done by the container control.
15921         - Remove is_selected, it's not needed anymore.
15922         - Add utility methods for selecting a child control, and for
15923         firing the Enter/Leave events.
15924         * ContainerControl.cs: When a control is activated fire the
15925         enter/leave events.
15926         - Don't wrap when processing the tab key, so that focus can be
15927         moved outside of the container.
15928         - Use the correct active control
15929
15930 2006-07-11  Jackson Harper  <jackson@ximian.com>
15931
15932         * ComboBox.cs: Remove some debug code that was blinding me.
15933         * UpDownBase.cs: These controls actually aren't implicit, they are
15934         visible to the user.
15935
15936 2006-07-10  Chris Toshok  <toshok@ximian.com>
15937
15938         * DataGrid.cs: move back to the is_adding boolean field.  god i
15939         hate this is_editing/is_adding/is_changing stuff.
15940
15941 2006-07-10  Chris Toshok  <toshok@ximian.com>
15942
15943         * DataGridTableStyle.cs: just check if the property type is bool.
15944         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
15945         Don't use CanRenderType.
15946
15947         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
15948         if our text == NullText.  Remove CanRenderType.
15949
15950         * DataGridBoolColumn.cs: nuke CanRenderType.
15951
15952         * DataGrid.cs: reenable some code to end the current edit inside
15953         of set_CurrentCell.  This fixes the other 1.1.16 regression.
15954         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
15955         Also, remove the visible_row_count arg from CalcRowHeaders, since
15956         we don't need to worry about the actual height of the area.
15957
15958 2006-07-10  Chris Toshok  <toshok@ximian.com>
15959
15960         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
15961         mode, just return.
15962
15963         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
15964         the real sense of the IsInEditOrNavigateMode property (true =
15965         navigate, false = edit).  Also, update OnKeyPress to reflect this.
15966
15967         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
15968         column style exists, we still need to set its property descriptor
15969         to match up with our list manager.
15970
15971 2006-07-10  Chris Toshok  <toshok@ximian.com>
15972
15973         * ThemeWin32Classic.cs: implement the new row/header painting
15974         approach.  The parent row painting will likely go away and
15975         replaced with label controls, but the rest seems to work ok (and
15976         efficiently).
15977
15978         * Theme.cs: change the way we draw datagrid rows.  we don't draw
15979         the row headers as a block now.  Instead we draw them in the
15980         normal draw-row loop.  Add some calls for drawing parent rows and
15981         relation rows.
15982
15983         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
15984         a default table style.  Set the defaults from ThemeEngine.Current,
15985         not SystemColors.  Fix lots of misc issues with property setters.
15986
15987         * DataGrid.cs: move loads of style information out of this class
15988         as it's being duplicated with DataGridTableStyle.  keep track of a
15989         special DataGridTableStyle for the properties we used to mirror
15990         here.  Switch all the style properties to access this table style
15991         instead of instance fields of this class.  Also add a internal
15992         class to represent parent rows (more needs to be stored here, like
15993         the selection state from the parent table, as well as the
15994         expansion state.)  Also, for datasources with relations, do the
15995         right thing for collapse/expand, and add support for the
15996         navigation/parent row buttons.
15997
15998         Lastly, fix the crash in the 1.1.16 build.
15999
16000         * GridTableStylesCollection.cs: make the explicit interface
16001         implementations call the class's methods as opposed to duplicating
16002         them.
16003
16004         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
16005         0 so the text doesn't jump around when we move the cursor.
16006
16007 2006-07-10  Jackson Harper  <jackson@ximian.com>
16008
16009         * TextBoxBase.cs:
16010         * ListBox.cs: Match MS's ToString (this makes debugging focus
16011         stuff infinitely easier).
16012
16013 2006-07-10  Jackson Harper  <jackson@ximian.com>
16014
16015         * Control.cs (SelectNextControl): When checking the control's
16016         parent use this instead of ctrl.parent so that null can be passed
16017         to SelectNextControl. (I have unit tests for this).
16018         - Remove unused var.
16019
16020 2006-07-10  Chris Toshok  <toshok@ximian.com>
16021
16022         * CurrencyManager.cs: correct one regression, the removal of the
16023         finalType field.  Also, add a MonoTODO on CanAddRows, implement
16024         Refresh() correctly, and fix some event emission in
16025         ListChangedHandler.
16026
16027 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
16028
16029         * FileDialog.cs: Don't use brackets for new folders if they exist
16030           under *nix. Instead use -(number of existing folders +1).
16031
16032 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
16033
16034         * FileDialog.cs:
16035           - Fixed really nasty bug #78771
16036           - Don't block the whole GUI when reading directories with a lot of
16037             entries. Use an other thread instead and call BeginInvoke to
16038             update the ListView in MWFFileView
16039
16040 2006-07-07  Chris Toshok  <toshok@ximian.com>
16041
16042         * Control.cs (Dispose): release any Capture when disposing.
16043
16044 2006-07-07  Chris Toshok  <toshok@ximian.com>
16045
16046         * LinkLabel.cs (Select): if we chain up to the parent, set
16047         focused_index to -1 so we'll search for the first available link
16048         the next time the user tabs into us.  Also, if the direction is
16049         backward and focused_index == -1, start the search from the last
16050         element.
16051
16052 2006-07-07  Chris Toshok  <toshok@ximian.com>
16053
16054         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
16055         is beyond the end of the text, don't do anything.
16056         (CreateLinkPieces): set our ControlStyles.Selectable based on
16057         whether or not we have any links.
16058         (Link.Invalidate): use a loop instead of foreach.
16059         (Link.set_Start): null out owner.sorted_links so it'll be
16060         recreated by CreateLinkPieces.
16061
16062 2006-07-06  Chris Toshok  <toshok@ximian.com>
16063
16064         * LinkLabel.cs: revert the SetStyle change.
16065
16066 2006-07-06  Chris Toshok  <toshok@ximian.com>
16067
16068         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
16069         (OnEnableChanged): s/Refresh/Invalidate
16070         (OnGotFocus): if we have a focused index already, refocus it (so
16071         if we mouse out/in to the window it'll focus the right link).
16072         (OnKeyDown): move the tab handling out of here.
16073         (OnLostFocus): don't set focused_index to -1, so we can refocus it
16074         when we lose focus.
16075         (OnMouseDown): don't Capture here - Control handles it.  Also,
16076         focus the active link.
16077         (OnMouseUp): don't deal with Capture.
16078         (OnPaintBackgroundInternal): remove.
16079         (OnTextAlignChanged): CreateLinkPieces before calling the
16080         superclass's method.
16081         (OnTextChanged): call CreateLinkPieces before calling superclass's
16082         method.
16083         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
16084         move around.
16085         (Select): implement this, moving the selection between different
16086         links, and call parent.SelectNextControl if we don't have another
16087         link to focus in the given direction.
16088         (CreateLinkPieces): call Invalidate instead of Refresh.
16089         
16090 2006-07-06  Chris Toshok  <toshok@ximian.com>
16091
16092         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
16093         new LinkLabel internals.
16094
16095         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
16096         over pieces looking for active/focused/etc links.  also, deal with
16097         runs of text (and links) with embedded \n's in them, and use
16098         MeasureCharacterRanges instead of MeasureString to figure out the
16099         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
16100         two-step.
16101
16102 2006-07-04  Jackson Harper  <jackson@ximian.com>
16103
16104         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
16105         XKB or key auto repeat, do it manually.  Without key auto repeat,
16106         when a key is held down we get key press, key release, key press,
16107         key release, ... with auto repeat we get key press, key press, key
16108         press ..., and then a release when the key is actually released.
16109
16110 2006-07-03  Jackson Harper  <jackson@ximian.com>
16111
16112         * TabControl.cs:
16113         * ThemeWin32Classic.cs: Tabs do not obey normal background color
16114         rules, they are always control color regardless of the background
16115         color.
16116
16117 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
16118
16119         * FileDialog.cs: Added internal class MWFConfig.
16120           Removed Registry support and replaced it with support for the new
16121           MWFConfig class. See MWFConfig comments for more information.
16122
16123 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
16124
16125         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
16126           rectangle. Added some patches from eno from bug #78490 and fixed
16127           the arrow position for small up and down CPDrawScrollButtons.
16128
16129 2006-06-30  Jackson Harper  <jackson@ximian.com>
16130
16131         * InternalWindowManager.cs: Remove some debug code.
16132         * Form.cs: When an MdiParent is set to null, the window is
16133         "detatched" and becomes a normal window.
16134         * MdiClient.cs: Don't bring the new child form to the front until
16135         it is activated (setting it as active does this), this makes the
16136         previously active forms titlebar get redrawn as inactive.
16137
16138 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
16139
16140         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
16141           with later controls
16142
16143 2006-06-29  Mike Kestner  <mkestner@novell.com>
16144
16145         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
16146         arrow in keynav state.  Fixes #78682.
16147
16148 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
16149
16150         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
16151           order (fixes #78393)
16152
16153 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
16154
16155         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
16156           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
16157           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
16158           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
16159           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
16160           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
16161           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
16162           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
16163           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
16164           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
16165           enumerations (FlagsAttribute, SerializableAttribute, added/removed
16166           values)
16167
16168 2006-06-28  Mike Kestner  <mkestner@novell.com>
16169
16170         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
16171
16172 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
16173
16174         * PropertyGrid.cs,
16175           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
16176           item lines from other area (It also makes BackColor consistent and
16177           compatible with .NET). Fixed bug #78564.
16178
16179 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
16180
16181         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
16182         Patch from Eno for #78555.
16183
16184 2006-06-27  Chris Toshok  <toshok@ximian.com>
16185
16186         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
16187
16188         * DataGridColumnStyle.cs: same.
16189
16190         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
16191         
16192         * DataGridDrawingLogic.cs: nuke.
16193
16194 2006-06-27  Chris Toshok  <toshok@ximian.com>
16195
16196         * DataGridTableStyle.cs: clean up the constructors, and build the
16197         list of child relations for this table.  I have no idea if this is
16198         where we should be doing it (it probably isn't), but since we're
16199         already iterating over the properties..
16200
16201         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
16202         struct and array for keeping track of row information, similar to
16203         what's shown in a hack on
16204         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
16205
16206         * Theme.cs: be consistent about the naming of DataGrid methods,
16207         prefering ColumnWidths and RowHeights over columnsWidths and
16208         RowsHeights.
16209
16210         * ThemeWin32Classic.cs: same, and also add support for variable
16211         sized rows (and the +/- expansion icons for related rows).
16212
16213 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
16214
16215         * TextBoxBase.cs: Applied Eno's patch from #78660
16216
16217 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
16218
16219         * Form.cs (ScaleCore): We don't want to scale our form if it's
16220           state is minimized or maximized, but we still need to scale our
16221           child windows. Also, added try/finally block to ensure layout
16222           gets reset (Fixes #78697)
16223
16224 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
16225
16226         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
16227
16228 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
16229
16230         * Form.cs: Fixed c+p error and added check to resize form if minimum
16231           size is bigger than current size (Fixes #78709)
16232
16233 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
16234
16235         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
16236
16237 2006-06-26  Mike Kestner  <mkestner@novell.com>
16238
16239         * ComboBox.cs: only do Keypress handling in the combo when there  
16240         are items in the collection. Fixes #78710.
16241
16242 2006-06-26  Chris Toshok  <toshok@ximian.com>
16243
16244         * Binding.cs: make this work bi-directionally.  also, clear up
16245         other mixups between Push/Pull Data (e.g. we're supposed to pull
16246         data when validating).
16247
16248         * BindingManagerBase.cs: trim some fully qualified collection
16249         types.
16250
16251         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
16252
16253 2006-06-23  Chris Toshok  <toshok@ximian.com>
16254
16255         * PropertyManager.cs: It appears (according to the unit tests)
16256         that PropertyManager doesn't use
16257         PropertyDescriptor.AddValueChanged to track propery value changes
16258         in its datasource, but uses the same scheme as Binding, where it
16259         looks for a <Property>Changed event and binds to it.
16260
16261         Also, according to the docs, IsSuspended always returns false for
16262         a property manager with a non-null datasource.
16263
16264 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
16265
16266         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
16267           need to update the actual DialogResult. (Fixes #78613)
16268
16269 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
16270
16271         * Form.cs (ShowDialog): Release any captures before running the
16272           new message pump (fixes #78680)
16273
16274 2006-06-22  Mike Kestner  <mkestner@novell.com>
16275
16276         * ListView.cs: Layout column widths properly in details mode even 
16277         if HeaderStyle.None is set.  Fixes #78691.
16278
16279 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
16280
16281         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
16282
16283 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
16284
16285         * Control.cs (ContainsFocus): Using new driver method to get focused
16286           window, instead of trying to use internal tracking var, which can
16287           recursion issues (Fixes #78685)
16288         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
16289           XplatUIWin32.cs: Added GetFocus method to return focused window
16290
16291 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16292
16293         * ColorDialog.cs: when the mouse button is pressed inside the color
16294         matrix, don't let the cursor move out of it until the button is
16295         released, which is the behavior on windows. Changed 'colours' by
16296         'colors' to use the same word consistently.
16297
16298 2006-06-21  Chris Toshok  <toshok@ximian.com>
16299
16300         * DataGrid.cs: add in some basic navigation stuff (navigating to a
16301         child relation and back, using a stack).  Also, remove
16302         GetDataSource and the code that calls it - it's not needed.  Also,
16303         track CurrencyManager.ListName's removal.
16304
16305 2006-06-21  Chris Toshok  <toshok@ximian.com>
16306
16307         * CurrencyManager.cs: push some of the original type checking from
16308         BindingContext.CreateBindingManager to here, and remove some of
16309         the finalType stuff.  Need more tests to make sure I've got the
16310         ListName part right, and we might need more in SetDataSource.
16311
16312         * PropertyManager.cs: add a ctor that takes just the datasource,
16313         and no property name.  Make SetDataSource work with a null
16314         property_name, and make Current return the data_source if the
16315         property descriptor is null.  this makes 'string foo = "hi";
16316         BindingContext[foo].Current' return "hi" as it should.
16317
16318         * RelatedCurrencyManager.cs: make this code more generic - there's
16319         no reason the parent manager has to be CurrencyManager, and
16320         there's no reason to pass the DataRelation.  It suffices to use a
16321         BindingManagerBase and PropetyDescriptor.
16322
16323         * RelatedPropertyManager.cs: make a similar change here.
16324         
16325         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
16326         flower I knew it could be.
16327
16328 2006-06-20  Chris Toshok  <toshok@ximian.com>
16329
16330         * PropertyManager.cs: the PropertyChangedHandler is invoked when
16331         data in the source has changed and we need to update the control,
16332         so s/PullData/PushData.
16333
16334         * CurrencyManager.cs: Refresh is meant to update the control from
16335         data in the datasource.  So, s/PullData/PushData.
16336
16337         * BindingContext.cs: add more ugliness (we weren't handling the
16338         case where data_source = DataTable and data_member = column_name).
16339
16340         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
16341         from the perspective of the datasource.  PullData pulls from the
16342         control, PushData pushes to the control.
16343
16344 2006-06-20  Chris Toshok  <toshok@ximian.com>
16345
16346         * BindingContext.cs: rewrite the CreateBindingManager code to
16347         handle navigation paths more or less properly.  This could
16348         definitely stand some more work, in particular to push the
16349         recursion up to the toplevel.  But that relies on fixes in other
16350         places (System.Data comes to mind).
16351
16352         Also, move to a flat hashtable (and encode the twolevel nature of
16353         the dictionary into the hash key).  This lets us implement the
16354         IEnumerable.GetEnumerator method.
16355
16356         * RelatedCurrencyManager.cs: new class.  Update our view based on
16357         our relation and our parent CurrencyManager's position.
16358
16359         * CurrencyManager.cs: split out some logic from the ctor into
16360         SetView, so it can be called from the new RelatedCurrencyManager
16361         subclass.
16362
16363         * RelatedPropertyManager.cs: new class.  Update our datasource
16364         based on the position of our parent CurrencyManager.
16365
16366         * PropertyManager.cs: split out some logic from the ctor into
16367         SetDataSource, so it can be called from the new RelatedDataSource
16368         subclass.  Also, make the Current getter return the value
16369         of the PropertyDescriptor, not the data_source.
16370
16371         * Binding.cs: no need to duplicate the string splitting code here.
16372
16373 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
16374
16375         * Control.cs:
16376           - set_Enabled: OnEnabledChanged is not called if the inherited state 
16377             of the control is not altered, even though  we might be changing the
16378             internal state of the control (#78458)
16379           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
16380             OnEnabledChanged, to allow easy altering of any child window state
16381           - OnEnabledChanged: Added code to enable/disable driver window state
16382           - OnParentEnabledChanged: Instead of firing the event, call 
16383             OnEnabledChanged, which will fire the event and also a) set driver
16384             window state and pass the enabled state to any grandchildren (#78458)
16385
16386 2006-06-19  Jackson Harper  <jackson@ximian.com>
16387
16388         * InternalWindowManager.cs: We don't set the cursor explicitly
16389         thats done via the response to NCHITTESTs.
16390         - Don't need to adjust for titlebar heights anymore, the
16391         coordinates are coming in the correct coordinates now (see peters
16392         last patch).
16393
16394
16395 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
16396
16397         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
16398           being translated relative to whole window, instead of client window.
16399           That caused broken offsets on mouseclick (and caused gas for our
16400           InternalWindowManager)
16401
16402 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
16403
16404         * TextControl.cs:
16405           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
16406           - Undo(): Added replay of cursor move on DeleteChars action; added
16407             calling Undo() again if a recorded cursor move is invalid (to
16408             ensure that some action is performed on Undo)
16409         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
16410
16411 2006-06-16  Jackson Harper  <jackson@ximian.com>
16412
16413         * MdiClient.cs: Instead of just sizing maximized windows when
16414         there is a resize we also have to adjust the Y of minimized
16415         windows, so they stay pinned to the bottom of the mdi container.
16416         - Eliminate separate tracking of the active control, we can just
16417         get this from the controls collection.
16418         - Paint the decorations for the newly activated titlebar so we get
16419         a pretty blue bar.
16420         * InternalWindowManager.cs:
16421         * ThemeWin32Classic.cs: Minimized windows get all three buttons
16422         even if they are a tool window.
16423         
16424 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
16425
16426         * TextControl.cs (Undo): Handle non-existent cursor locations in the
16427           undo buffer, these can happen when text was deleted and the cursor
16428           was recorded first. Since we will also have a recorded cursor
16429           after the delete this is not an issue. (Fixes #78651)
16430
16431 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
16432
16433         * AccessibleObject.cs: Remove dependence on Control.is_selected;
16434           instead properly track control states internally (allows us to
16435           remove is_selected from Control)
16436
16437 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16438
16439         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
16440         whose width is not a multiple of 8.
16441
16442 2006-06-13  Jackson Harper  <jackson@ximian.com>
16443
16444         * MdiClient.cs:  Only maximize the next child if the current one
16445         is maximized.
16446
16447 2006-06-13  Chris Toshok  <toshok@ximian.com>
16448
16449         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
16450         modified.  Also, guard against grid or grid_drawing being null in
16451         Invalidate.
16452
16453         * DataGrid.cs: Reformat tons of getters/setters.  In the
16454         DataMember setter, just call SetNewDataSource instead of
16455         duplicating some of its functionality.  In SetNewDataSource, don't
16456         check ListManager for null, since the property getter creates the
16457         object if needed.
16458
16459         * DataGridTableStyle.cs: don't set TableStyle or call
16460         SetDataGridInternal on the column here, it's done in
16461         GridColumnStylesCollection.Add.
16462
16463         * GridColumnStylesCollection.cs: fix all the explicit interface
16464         implementations to just call our methods.  Nuke AddInternal() and
16465         move the body of it to Add().  Also, add a call to
16466         column.SetDataGridInternal to Add().
16467
16468         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
16469         base()+duplicate code.  Also, use the Format property instead of
16470         format to generate an Invalidate ala MS.  Lastly, create the
16471         textbox here, unconditionally.
16472         (set_Format): call Invalidate.
16473         (get_TextBox): no need to call EnsureTextBox.
16474         (Commit): remove the message box.
16475         (Edit) remove the call to EnsureTextBox.
16476         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
16477         (EnterNullValue): no need to check textbox for null.
16478         (HideEditBox): no need to check textbox for null.
16479         (SetDataGridInColumn): add the textbox to the grid's controls.
16480         (EnsureTextBox): nuke.
16481         
16482 2006-06-13  Jackson Harper  <jackson@ximian.com>
16483
16484         * MdiWindowManager.cs: Hook up to the maximized menus paint event
16485         and redraw the buttons when needed. Unhook when the window is
16486         unmaximized.
16487         * MainMenu.cs: Add an internal Paint event, the mdi window manager
16488         needs this so that it can redraw its buttons when the menu is
16489         repainted.
16490         * InternalWindowManager.cs:
16491         * Form.cs: The method order has changed for DrawMaximizedButtons,
16492         so that it can be a PaintEventHandler.
16493         
16494 2006-06-13  Jackson Harper  <jackson@ximian.com>
16495
16496         * MdiClient.cs: When we close a maximized mdi window, the next mdi
16497         window is activated and maximized, even if it wasn't before.
16498         - When  a new window is activated repaint the decorations of the
16499         old one, so that it no longer has the Active "look" (the blue
16500         titlebar).
16501         * InternalWindowManager.cs: Open up CreateButtons to base classes
16502         so they can recreate the buttons on state changes.
16503         - If a window is maximized give it all three buttons
16504         * MdiWindowManager.cs: Create the titlebar buttons when the state
16505         is changed, this is needed because a toolwindow will not have all
16506         three buttons until it is maximized.
16507
16508 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
16509
16510         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
16511           Fixed bug #78609.
16512
16513 2006-06-12  Jackson Harper  <jackson@ximian.com>
16514
16515         * KeysConverter.cs: Make sure we handle the Ctrl special case
16516         if its the only key.
16517         
16518 2006-06-12  Jackson Harper  <jackson@ximian.com>
16519
16520         * Theme.cs: Add a method to get the size of a managed window
16521         toolbar button.
16522         * InternalWindowManager.cs: Remove the ButtonSize property, this
16523         should be retrieved from the theme.
16524         * MdiWindowManager.cs: Get the button size from the theme
16525         * ThemeWin32Classic.cs: Make the method to get the managed window
16526         titlebar button size public.
16527         - Handle the different button sizes of maximized toolwindows
16528         (should match any maximized window).
16529         - Get the titlebar height from the theme, not the WM (which gets
16530         it from the theme).
16531
16532 2006-06-12  Jackson Harper  <jackson@ximian.com>
16533
16534         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
16535         event down to the mdi window manager.
16536         - Expose some extra stuff to base classes
16537         - Make sure to end the Capture on an NC Mouse up, so that we can
16538         get double clicks properly, and the sizing doens't stick.
16539         - When doing PointToClient contain it in the workable desktop
16540         area, this prevents windows from changing size when the cursor is
16541         pulled outside of the working area while sizing.
16542         * MdiWindowManager.cs: When we get a double click maximize the
16543         window.
16544         - Reset the cursor after handling mode changes.
16545
16546 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
16547
16548         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
16549           current desktop, instead of just assuming a 0, 0 origin. This
16550           is needed for our internal window manager, to know the top
16551           margin of the desktop
16552
16553 2006-06-12  Chris Toshok  <toshok@ximian.com>
16554
16555         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
16556         we need this to get rid of the selected background in the bool
16557         column.
16558         (CancelEditing): move the ConcedeFocus call to above the Abort
16559         call.  Also, set is_changing to false and invalidate the row
16560         header if we were changing before.
16561         (ProcessKeyPreviewInternal): remove, since noone outside this
16562         class calls it anymore.  Roll the code into ProcessKeyPreview.
16563         (EndEdit): remove the internal version.
16564         (InvalidateCurrentRowHeader): make private.
16565
16566         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
16567         Keys.Escape handling (and with it the last call to
16568         DataGrid.EndEdit from outside the class.)
16569
16570
16571 2006-06-12  Chris Toshok  <toshok@ximian.com>
16572
16573         * DataGridTextBox.cs (.ctor): isedit defaults to false.
16574         (OnKeyPress): set isedit to true.
16575         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
16576         already handled by the grid.
16577
16578         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
16579         right.  ugh.
16580         (set_DataSource): SetDataSource always returns true, so stop
16581         putting it in an if statement.
16582         (EndEdit): get rid of some {}'s
16583         (ProcessGridKey): return true in case Keys.Escape.
16584         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
16585         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
16586         PositionChanged, stopped connecting to CurrentChanged.
16587         (GetDataSource): simplify this a bunch.
16588         (SetDataSource): change return type from bool to void.
16589         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
16590         to this, and make sure we don't set ListManager.Position inside
16591         set_CurrentCell.
16592         (OnListManagerItemChanged): if we're passed an actual index,
16593         redraw that row.
16594
16595         * CurrencyManager.cs (set_Position): don't call PullData here.
16596
16597 2006-06-09  Jackson Harper  <jackson@ximian.com>
16598
16599         * TreeNode.cs:  Recalculate the visible order before doing the
16600         Expand/Collapse Below calls, because those calls generate an
16601         expose.
16602         - Reduce calls to the TreeView property, which is mildly expensive
16603         by using a local var.
16604         * Form.cs: Layout the MDI child windows when creating the parent
16605         form.
16606         - Don't use the internal constructor anymore
16607         * MdiClient.cs: use the parent form width/height (if available)
16608         when laying out the child windows, we do this because the
16609         mdiclient isn't docked yet when the initial layout is done.
16610         - Don't need an internal constructor anymore.
16611
16612 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16613
16614         * FileDialog.cs: handle access errors when trying to create a folder
16615         or changing to a directory. No need to initialize out parameters.
16616
16617 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16618
16619         * FileDialog.cs: Append a number when creating a new folder if the
16620           folder already exists (use parenthesis instead of square brackets)
16621
16622 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16623
16624         * FileDialog.cs:
16625           - Disabled registry support for windows and added better registry
16626             error checking for other systems (need to investigate why it
16627             works perfectly on my system)
16628           - If a folder already exist show an error MessageBox instead of
16629             trying to create an indexed name.
16630           - Fixed a non intentional typo.
16631
16632 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16633
16634         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
16635
16636 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16637
16638         * FileDialog.cs: When creating a new folder don't crash if the
16639           folder already exists.
16640
16641 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16642
16643         * FileDialog.cs: Allmost a complete rewrite.
16644           - added a "virtual" file system that handles the differences
16645             between unix and windows file systems (especially the directory
16646             structure). Moved most of the directory and file handling code
16647             into the vfs.
16648             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
16649             UnixFileSystem and FSEntry.
16650           - Recently used folder/directory, size, location and used file names
16651             (file name ComboBox) are now stored in the registry and get read
16652             before the dialog shows up (fixes part 6 of bug #78446).
16653           - Creation of new folders/directories is now possible (context menu
16654             or ToolBar). Added TextEntryDialog for this that fills in the gap
16655             until ListView.LabelEdit works.
16656           - Fixed cursor handling (bug #78527) and focus handling for
16657             PopupButtonPanel
16658           - Various "Search in" ComboBox enhancements. The content of the
16659             dropdown listbox now almost matches ms.
16660           - Changed the behaviour when the user switches to SpecialFolder
16661             Recent to show the ListView in View.Details.
16662           - Beside using the ToolBar to change the View property of the
16663             file ListView it is now possible to use the context menu too.
16664
16665 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16666
16667         * ComboBox.cs: Don't create a new ObjectCollection when an item
16668           gets inserted. Just insert the item in the existing object_items
16669           ArrayList.
16670
16671 2006-06-08  Jackson Harper  <jackson@ximian.com>
16672
16673         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
16674         that the treeview and root node checks are done also, this fixes a
16675         regression i caused in the unit tests.
16676
16677 2006-06-07  Wade Berrier <wberrier@novell.com> 
16678
16679         * RichTextBox.cs: More ISO8859-1 -> unicode
16680
16681 2006-06-07  Mike Kestner  <mkestner@novell.com>
16682
16683         * ComboBox.cs : use items to hold highlight/selection so that
16684         collection insertions don't require synchronization.
16685
16686 2006-06-07  Jackson Harper  <jackson@ximian.com>
16687
16688         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
16689         routine.  We now always keep the sized edge at the cursor instead
16690         of computing movement and adjusting rects.  There is one buglet
16691         with this method though when the cursor is moved over area that
16692         the window can not expand too (such as the toolbars on the desktop).
16693
16694 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16695
16696         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
16697         here. Fixes crash on startup in AlbumSurfer.
16698
16699 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
16700
16701         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
16702           values
16703
16704 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16705
16706         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
16707         statement to avoid calling XNextEvent which will block if another thread
16708         took the event that we were expecting. Fixes bug #78605.
16709
16710 2006-06-07  Mike Kestner  <mkestner@novell.com>
16711
16712         * ListView.cs : isolated checkbox clicking from the selection logic.
16713         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
16714
16715 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16716
16717         * Form.cs: Check that the value passed to Form.DialogResult
16718         is a valid enum value.
16719
16720 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16721
16722         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
16723         Computer'. Clicking it in the network view goes to 'My Computer'.
16724         Added CIFS filesystem type. Display the mount point of filesystems.
16725         Avoid duplicate mount points (happens for me with CIFS);
16726
16727 2006-06-06  Jackson Harper  <jackson@ximian.com>
16728
16729         * InternalWindowManager.cs: Draw the maximized windows buttons
16730         when resizing.
16731
16732 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16733
16734         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
16735         all other dialogs. Fixes bug #78585.
16736
16737 2006-06-06  Mike Kestner  <mkestner@novell.com>
16738
16739         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
16740         Only invalidate checkbox on checkstate changes to avoid flicker.
16741         * ListBox.cs : avoid unselect/select when clicking selected item.
16742         avoid reselection flicker for already multiselected items.
16743         Fixes #78382.
16744
16745 2006-06-06  Jackson Harper  <jackson@ximian.com>
16746
16747         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
16748         the parent form so that the menu is removed if needed.
16749
16750 2006-06-06  Mike Kestner  <mkestner@novell.com>
16751
16752         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
16753         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
16754
16755 2006-06-06  Mike Kestner  <mkestner@novell.com>
16756
16757         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
16758
16759
16760 2006-06-06  Jackson Harper  <jackson@ximian.com>
16761
16762         * Control.cs: Use the property (instead of the field) to get the
16763         default cursor so it is instantiated correctly.
16764         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
16765         resizes so we need to manually repaint the window decorations here.
16766         - Set the titlebar button locations as soon as they are created,
16767         otherwise they are not set correctly on win32.
16768         
16769 2006-06-06  Chris Toshok  <toshok@ximian.com>
16770
16771         * CurrencyManager.cs (set_Position): call PullData before
16772         OnCurrentChanged.
16773         (AddNew): after calling IBindingList.AddNew, update our
16774         listposition, and call OnCurrentChanged/OnPositionChanged (without
16775         calling PullData).
16776         (OnCurrentChanged): remove the call to PullData from here.
16777         (OnItemChanged): remove the call to PushData from here.
16778         (OnPositionChanged): change the test from == null to != null to
16779         match the other methods.
16780         (ListChangedHandler): the grossest part of the patch.  Implement
16781         this such that it passes the unit tests in CurrencyManagerTest and
16782         the output more or less matches that of MS's implementation.
16783  
16784 2006-06-06  Mike Kestner  <mkestner@novell.com>
16785
16786         * ListView.cs : only update check state on single click.
16787         * ThemeWin32Classic.cs : fix focus drawing for details view without
16788         fullrowselect.  Fixes #78454.
16789         * XplatUIX11.cs : fix for double click emission.
16790
16791 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16792
16793         * PropertyGridView.cs : Applied Atsushi's patch to fix
16794         font dialog bug  (#78197).
16795
16796 2006-06-05  Jackson Harper  <jackson@ximian.com>
16797
16798         * TreeNode.cs: Compute the next node for expanding/collapsing
16799         correctly. We now factor in nodes without a NextNode
16800         correctly. (Fixes somes cases in nunit-gui).
16801         * InternalWindowManager.cs: Set the bounds when updating the
16802         virtual position of a tool window.
16803         
16804 2006-06-05  Chris Toshok  <toshok@ximian.com>
16805
16806         * DataGrid.cs: rename cached_currencymgr to list_manager.
16807         (set_CurrentCell): move SetCurrentCell code here, and clean it up
16808         some.
16809         (CurrentRow, CurrentColumn): single accessors so we can make the
16810         cursor movement code a lot easier to understand.
16811         (CurrentRowIndex): implement this in terms of CurrentRow.
16812         (BeginEdit): clean this up a bit.
16813         (CancelEditing): sort out the is_editing/is_changing/is_adding
16814         stuff a little.
16815         (EndEdit): minor changes.
16816         (OnKeyDown): add a comment about a (most likely) unnecessary
16817         check.
16818         (OnMouseDown): cancel editing when we click on a row header.  And
16819         use the CurrentRow setter, not CurrentCell.
16820         (ProcessDialogKey): directly call ProcessGridKey.
16821         (UpdateSelectionAfterCursorMove): factor out this common block of
16822         code (it's used everywhere that we move the cursor by updating row
16823         or column).
16824         (ProcessGridKey): pretty substantial overhaul.  Use the
16825         CurrentRow/CurrentColumn properties to make the code a lot more
16826         readable.  Only use the CurrentCell property when we have to
16827         modify both row and column at once.  Tab behavior is still broken,
16828         and Delete is untested.
16829         (Select): if we have no selected rows, set selection_start to
16830         @row.
16831         (EditCurrentCell): rename EditCell this.  It was only ever invoked
16832         with CurrentCell as the arg, so drop the arg and rename it.
16833
16834         * DataGridColumnStyle.cs: clean up the constructors a little, and
16835         drop CommonConstructor().
16836
16837         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
16838         actually get notified when the user hits it.
16839         (ProcessKeyMessage): *substantially* simplify this method.
16840         There's no reason (that I can see) for the textbox to be making
16841         calls into the datagrid at all.  Remove all of them but the ones
16842         for Enter handling.  those will take some more work.
16843
16844         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
16845         calling HideEditBox.
16846         (HideEditBox): if we have an active textbox, render it invisible
16847         without causing a re-layout of the datagrid.
16848
16849 2006-06-05  Mike Kestner  <mkestner@novell.com>
16850
16851         * ListView.cs : fix NRE crasher when focuseditem is cleared by
16852         collection changes by resetting it to Items[0].  Fixes #78587.
16853
16854 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16855
16856         * MessageBox.cs: if the height of the text is larger than the icon_size,
16857         use that. Fixes bug #78575.
16858
16859 2006-06-05  Jackson Harper  <jackson@ximian.com>
16860
16861         * TreeView.cs: Fix line drawing when scrolling.  To do this each
16862         node is basically responsible for drawing its entire horizontal
16863         area.  When drawing a node it draws its parent node lines if
16864         needed.
16865         - Adjust the clip area to the viewport rectangle
16866         - Fix Left/Right key handling to match MS. (It expand/collapses
16867         and moves to parents/first child but does not move selection to
16868         sibling nodes).
16869         - Fix SetTop to work with new bound calculation code
16870         - When scrollbars are no longer needed we need to reset scrolling
16871         vars and recalculate the visible order so the redraw is correct
16872         * TreeNode.cs: We can't expand/collapse nodes with no children.
16873
16874 2006-06-03  John Luke  <john.luke@gmail.com> 
16875
16876         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
16877         so the colors work without dev packages
16878         
16879 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
16880
16881         * Control.cs 
16882           - Select: Implemented to just use activate. Seems to match MS 
16883             behaviour closest. Documented to only do actual control walking 
16884             based on it's parameters if in a container control so I moved 
16885             the code there.
16886           - Removed selection check logic from our internal Select() method
16887         * ContainerControl.cs:
16888           - Select: Moved selection logic from Control here, since MS documents
16889             that containers obey the bool arguments. No longer calling base
16890
16891 2006-06-02  Jackson Harper  <jackson@ximian.com>
16892
16893         * TreeView.cs: If the selected node isn't changed when we get
16894         focus update the previously selected node so that we see the
16895         selection box.
16896
16897 2006-06-02  Mike Kestner  <mkestner@novell.com>
16898
16899         * ComboBox.cs: restructure grab and general mouse event handling.
16900         Make the composite control raise mouse events like it was a single
16901         control for leaves/enters/motion/up/down events.  fix dropdown list
16902         coordinate mangling and refactor it into the scrollbar subclass to
16903         reduce code duplication.  Fixes #78282 #78361 and #78457.
16904
16905 2006-06-02  Mike Kestner  <mkestner@novell.com>
16906
16907         * ScrollBar.cs: remove Capture setting/clearing, as it happens
16908         automatically in the Control.WndProc.
16909
16910 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16911
16912         * FileDialog.cs: fix crash when running SharpChess, which sets the
16913         FilterIndex to 2 with only one Filter.
16914
16915 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16916
16917         * ToolBar.cs: add SizeSpecified property.
16918         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
16919         try to figure out our real size, otherwise fallback to what the
16920         container says.
16921
16922 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16923
16924         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
16925         * Control.cs (WndProc): MS always calls the DefWndProc to pass
16926           up the event
16927
16928 2006-06-01  Mike Kestner  <mkestner@novell.com>
16929
16930         * ListView.cs: revamp the focus management in ListView.  It still
16931         causes churn of LostFocus/GotFocus emissions on clicks, but it's
16932         better than not handling focus at all.  Will revisit when pdb feels
16933         the general focus handling is solid.  Fixes #78526.
16934
16935 2006-06-01  Jackson Harper  <jackson@ximian.com>
16936
16937         * TreeView.cs: Set the default border style in the constructor.
16938         - Move painting to use OnPaintInternal instead of capturing
16939         WM_PAINT, this is the correct way of doing things
16940         - UpdateBelow shouldn't invalidate the scrollbar area
16941         - Cap the top on update below in case the node was above the top
16942         of the viewport rectangle.
16943         - ExpandBelow and Collapse below need to obey Begin/End Update.
16944         * TreeNode.cs: Make is_expanded internal so the treenode
16945         collection can change it without firing the whole event chain.
16946         * TreeNodeCollection.cs: When clearing all the child nodes make
16947         sure to recalc the visible order.
16948         - Improve algo for remove the top node
16949
16950 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16951
16952         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
16953           SendMessage directly calling window procedures, which in turn might
16954           call SetFocus()
16955
16956 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
16957
16958         * Control.cs: Don't handle WM_SETFOCUS if the same window already
16959           has focus (works around X11 sending a FocusIn after our SetFocus)
16960         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
16961
16962 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
16963
16964         * Mime.cs: Fix for the NET_2_0 build.
16965           NameValueCollection needs StringComparer now.
16966
16967 2006-05-31  Chris Toshok  <toshok@ximian.com>
16968
16969         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
16970         return (via an out parameter) the starting X of the column.
16971         (UpdateVisibleColumn): track change to FromPixelToColumn.
16972         (HitTest): add a ColumnResize case here.
16973         (DrawResizeLine): new function, probably poorly named.
16974
16975         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
16976         only need to keep one reference.
16977         (set_ListManager): same.
16978         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
16979         Also, add support for HitTestType.ColumnResize.
16980         (OnMouseMove): add column resize behavior here, and change the
16981         cursor to the correct one as we move around the datagrid.
16982         (OnMouseUp): terminate the column resize if we're resizing.
16983         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
16984         for the current cell.
16985         (ConnectListManagerEvents): use cached_currencymgr.
16986         (DisconnectListManagerEvents): fill this in, using
16987         cached_currencymgr.
16988         (SetCurrentCell): remove cached_currencymgr_events handling.
16989         (SetDataMember): only call DisconnectListManagerEvents if
16990         cached_currencymgr is != null.
16991         (SetDataSource): same.
16992         (OnListManagerCurrentChanged): cached_currencymgr_events ->
16993         cached_currencymgr.
16994
16995 2006-05-31  Jackson Harper  <jackson@ximian.com>
16996
16997         * BindingManagerBase.cs: Remove somedebug code that creeped into
16998         SVN.
16999         * TreeNode.cs: We get the indent level dynamically right now, so
17000         don't track it as a member.
17001         * TreeNodeCollection.cs: Make sure all nodes added to the list
17002         have parents, treeviews/topnodes setup properly.
17003         - Don't attempt to track indent level.
17004
17005 2006-05-30  Jackson Harper  <jackson@ximian.com>
17006
17007         * BindingContext.cs: Create the currency manager tables here.
17008         This allows us to more easily create null tables (when bad data
17009         members are used), and more easily create related currency
17010         managers.
17011         * CurrencyManager.cs: All the table creation stuff is done by the
17012         binding context now.
17013         - Current should throw an exception if listposition is -1.
17014         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
17015         been bound yet.
17016
17017 2006-05-30  Mike Kestner  <mkestner@novell.com>
17018
17019         * ListView.cs: allow reexpansion of zero-width column headers.
17020         Fixes #78528.
17021
17022 2006-05-28  Chris Toshok  <toshok@ximian.com>
17023
17024         * CurrencyManager.cs (get_Current): after the late binding
17025         listposition = -1 fix, we need to guard against it here and return
17026         null, otherwise we raise an exception (which is swallowed
17027         elsewhere, and breaks datagrid databinding.)
17028
17029 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
17030
17031         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
17032           than WM_SYSKEY, don't throw if get something unexpected (#78507)
17033
17034 2006-05-26  Jackson Harper  <jackson@ximian.com>
17035
17036         * ControlPaint.cs:
17037         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
17038         values, it's faster and it's all we care about (we don't care if
17039         the names aren't equal).
17040         * KeyboardLayouts.cs: Eliminate some dead code.
17041         - Lazy init things
17042         * X11Keyboard.cs: Lazy init keyboard detection.
17043         - Cleanup access modifiers a little.
17044
17045 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
17046
17047         * XplatUIX11.cs: Once again, attempting to get layout just right.
17048
17049 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
17050
17051         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
17052           the sizes of each link section, that will result in sizes that
17053           match DrawString's layout (Fixes #78391)
17054
17055 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
17056
17057         * FileDialog.cs: If AddExtension property is true autocomplete the
17058           extensions in SaveFileDialog correctly. Fixes bug #78453.
17059           Set MyNetwork and MyComputer to "C:\" for windows. This should
17060           fix part 8 of bug #78446 for now.
17061
17062 2006-05-26  Chris Toshok  <toshok@ximian.com>
17063
17064         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
17065         invalidate the current row header if we need to, but presumably
17066         we'll invalidate the row corrsponding to the bounds or
17067         editingControl.
17068         (GridHScrolled): switch back to this method, as it's part of the
17069         public api.  *sigh*.
17070         (GridVScrolled): same.
17071         (OnMouseWheel): hack up something that more or less works.  Call
17072         GridHScrolled/GridVScrolled directly, instead of duplicating much
17073         of their code here.
17074         (EnsureCellVisibility): reinstate a bunch of this code, since we
17075         can't just set the scrollbar Value and expect to do all the work
17076         in the ValueChanged handler.  Also, Call Update() after scrolling
17077         in one direction so the other XplatX11.ScrollWindow call has the
17078         proper stuff in the proper places.
17079         (EditCell): set is_editing to true before calling .Edit.
17080
17081         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
17082         don't bother comparing first.
17083         (OnKeyPress): call grid.ColumnStartedEditing before calling
17084         base.OnKeyPress.  this will set is_changing and invalidate the row
17085         header if necessary.
17086         (ProcessKeyMessage): for WM_CHAR messages, call
17087         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
17088         and WM_KEYDOWN.
17089         
17090         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
17091         it's done in the DataGrid.
17092         (NextState): call grid.ColumnStartedEditing, which takes care of
17093         invalidating the row header (and setting is_changing).
17094
17095         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
17096         here.  it's done in the DataGrid.
17097
17098 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17099
17100         * Control.cs: allow changing the cursor when the mouse position is
17101         out of bounds but Capture is set.
17102         * LinkLabel.cs: handle the case when the mouse button is pressed on the
17103         linklabel but released somewhere else.
17104
17105 2006-05-25  Jackson Harper  <jackson@ximian.com>
17106
17107         * TreeView.cs: When we get focus if there is no selected node make
17108         it the top node
17109         - Remove some uneeded setup code from Draw.
17110         * TreeNodeCollection.cs: If the tree doesn't have a top node when
17111         a new node is inserted make the new node the top.
17112         * XplatUIX11.cs:
17113         * Timer.cs: Use Utc time so that no local time zone stuff needs to
17114         be used (should be faster).
17115         
17116 2006-05-25  Chris Toshok  <toshok@ximian.com>
17117
17118         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
17119         problem with the last commit.
17120
17121 2006-05-25  Chris Toshok  <toshok@ximian.com>
17122
17123         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
17124         need the invalidate call here, while scrolling right-to-left via
17125         the left arrow key (i.e. moving the editing cell while scrolling).
17126
17127         * DataGrid.cs (.ctor): remove the initialization of
17128         ctrl_pressed/shift_pressed.  We no longer track them using key
17129         up/down handlers, but by using Control.ModifierKeys.  Also, switch
17130         to using ValueChanged handlers on the scrollbars instead of
17131         Scrolled event handlers.  This simplifies a bunch of the scrolling
17132         code.
17133         (GridHValueChanged): rename from GridHScrolled, and change it to
17134         work with the new event args.
17135         (GridVValueChanged): same.
17136         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
17137         (OnMouseWheel): actually scroll the datagrid.  Don't change the
17138         selected cell.
17139         (ProcessGridKey): correct all the keyboard navigation stuff I
17140         could find.  Ctrl up/down/left/right/home/end work now.
17141         (EnsureCellVisibility): correct method name spelling.  Also,
17142         simplify this a touch by not explicitly calling the
17143         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
17144         scrollbar value.
17145         (OnKeyUpDG): no need for this method now.
17146         
17147 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17148
17149         * LinkLabel.cs: display the OverrideCursor when hovering the label.
17150         Fixes bug #78392.
17151
17152 2006-05-25  Chris Toshok  <toshok@ximian.com>
17153
17154         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
17155         r61019.
17156
17157 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
17158
17159         * Application.cs: Moved setting of is_modal and closing to before
17160           we create the control, to allow the event handlers called as a
17161           result of creation affect closing. Also removed Gonzalo's previous
17162           change to setting DialogResult, the behaviour has been moved to 
17163           Form.ShowDialog()
17164         * Form.cs: 
17165           - ShowDialog(): Removed explicit creation of the form, let RunLoop
17166             handle it instead
17167           - ShowDialog(): If no dialog result is set, we need to return Cancel
17168           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
17169             the close is cancelled
17170
17171 2006-05-25  Jackson Harper  <jackson@ximian.com>
17172
17173         * StatusBar.cs: We only need to update the sizes of the other
17174         panels when we have auto size contents.  Also we are only updating
17175         the contents of the panel, not the borders, so compensate for the
17176         border width (TODO: get this width from the theme somehow).
17177         * TreeView.cs: Scrollable is true by default
17178         - Use invalidate instead of refresh where needed
17179         - Factor the scrollable value into scrollbar updating
17180         - Update the scrollbars if the Scrollable property is altered
17181         - Update the selected node if its ImageIndex is changed
17182         - Handle null nodes in UpdateNode (mainly so we don't have to
17183         check if selected is null when updating it
17184         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
17185         are factored into the visible count
17186         - Use VisibleCount for clarity in the code
17187         - When the font is changed we need to recurse through all the
17188         nodes and invalidate their sizes
17189         
17190 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17191
17192         * Application.cs: set the DialogResult to fixed when the main form is
17193         hidden or destroyed while being modal.
17194
17195 2006-05-25  Miguel de Icaza  <miguel@novell.com>
17196
17197         * Theme.cs: Use Tangoified messagebox icons. 
17198
17199         (GetSizedResourceImage): Also cope with width = 0 and do not
17200         trigger a warning in that case (0 means "give me your icon from
17201         the resouce, no special size needed).
17202
17203 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
17204
17205         * Application.cs: Leave runloop if the the main modal form is 
17206           hidden (fixes #78484)
17207
17208 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
17209
17210         * BindingContext.cs : reject null datasource in Contains() and
17211           Item[].
17212         * CurrencyManager.cs : check data_member validity when data_source
17213           is dataset. When it is late binding, the initial position is -1.
17214
17215 2006-05-24  Jackson Harper  <jackson@ximian.com>
17216
17217         * TreeNodeCollection.cs: Dont't recalculate the visible order on
17218         inserted nodes that aren't visible.  This changes the
17219         max_visible_order which confuses scrollbar settings.
17220         - Use the enumerator to get the prev node instead of duplicating
17221         code.
17222         * TreeView.cs: Use new method for setting scrollbar values
17223         - Don't set the bounds every time the scrollbar is updated
17224         - When updating below the root node use an invalidate instead of a
17225         refresh to prevent the child controls (scrollbars) from being
17226         refreshed. (UpdateBelow still needs to be reworked anyways).
17227         - Reenable SetBottom now that visible orders are set correctly,
17228         added some debug code incase we ever get bad values there again.
17229         - Set the scrollbar max to 2 less then the max value, this
17230         compensates for the max value being one above the node count, and
17231         for scrollbars adding one extra "notch".
17232         - When drawing image nodes if there is an imagelist we draw the
17233         first image in the list if the supplied image index is out of the
17234         image list's bounds.
17235         
17236 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
17237
17238         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
17239           we receive a size change from the WM (Fixes #78503)
17240
17241 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
17242
17243         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
17244           rectangle (Fixes #78501)
17245
17246 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
17247
17248         * ButtonBase.cs: 
17249           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
17250             as a bitfield.
17251           - Fixed MouseMove to no longer switch pressed state unless the left
17252             mouse button is pressed. Atsushi provided the original patch (#78485)
17253           
17254 2006-05-24  Jackson Harper  <jackson@ximian.com>
17255
17256         * ScrollBar.cs: New internal methods that allow us to change a
17257         couple values on the scrollbar (the most common case is maximum
17258         and large change) without getting multiple invalidates.
17259
17260 2006-05-24  Chris Toshok  <toshok@ximian.com>
17261
17262         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
17263         (Edit): save off the original state in oldState, and set
17264         grid.is_editing to true.
17265         (OnKeyDown): abort editing if escape is pressed.  also, call
17266         NextState if space is pressed.
17267         (OnMouseDown): call NextState.
17268         (NextState): factor out shared code from OnKeyDown and OnMouseDown
17269         here.  Also, only invalidate the row header once (on the initial
17270         is_changing switch) to save on redraws.
17271
17272 2006-05-24  Chris Toshok  <toshok@ximian.com>
17273
17274         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
17275         if the value in the cell is different than it was before.  This
17276         keeps us from triggering a layout when we move around a datarid
17277         with a highlighted cell.
17278         (Edit): suspend layout when creating/positining the text box, and
17279         resume passing false so we don't ever actually re-layout.
17280         (ReleaseHostedControl): same.
17281         (EnsureTextBox): reformat slightly, and set WordWrap to false.
17282
17283         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
17284         control-key sequences should go to the datagrid - remove that
17285         lock.  Also, modify the conditions under which we move between
17286         cells when moving the cursor within a cell, and remove the "this"
17287         and "base" from field accesses.  We weren't even consistent, given
17288         they all were in the base class.
17289
17290 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
17291
17292         * Binding.cs : (.ctor)
17293           An obvious NRE fix for BindingTest.CtorNullTest().
17294
17295 2006-05-23  Chris Toshok  <toshok@ximian.com>
17296
17297         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
17298         them between lines.  This fixes some quirks editing cells in the
17299         datagrid.
17300
17301 2006-05-23  Jackson Harper  <jackson@ximian.com>
17302
17303         * TreeView.cs: Use begin/end update when doing expand/collapse all
17304         so that we don't get flicker on the scrollbar.
17305
17306 2006-05-23  Jackson Harper  <jackson@ximian.com>
17307
17308         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
17309         treenode calculations to be independant of the painting code. To
17310         do this nodes track a visible order which is calculated by the
17311         treeview.
17312         - Call new methods for expanding/collapsing nodes.  These methods
17313         use scrollwindow so we don't have to update everything below the
17314         node.
17315         * TreeView.cs: Refactored drawing and scrolling code.  We don't
17316         need to update nodes when drawing anymore or calculate scrollbar
17317         stuff.
17318         - Added new methods for expanding/collapsing nodes. These methods
17319         use ScrollWindow so as to not have to redraw all the nodes below.
17320         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
17321         we add/remove nodes or sort.
17322         - Handle removing the selected and the top node properly.
17323
17324 2006-05-23  Chris Toshok  <toshok@ximian.com>
17325
17326         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
17327         maybe this should actually happen in the datagrid code?
17328         (EndEdit): no need to invalidate anything, given that
17329         ReleaseHostedControl causes the datagrid to relayout, which
17330         invalidates everything anyway.
17331
17332         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
17333         in SetCurrentCell).
17334         (set_SelectionBackColor): call InvalidateSelection instead of
17335         Refresh.
17336         (set_SelectionForeColor): same.
17337         (BeginEdit): Flesh this out a bit.
17338         (CancelEditing): only do any of this if we're editing/adding.
17339         (EndEdit): same.
17340         (OnMouseDown): there's no need to cancel editing here, it's done
17341         in SetCurrentCell.
17342         (SetCurrentCell): only invalidate the current row header if it's a
17343         different row than the new one.
17344         (ShiftSelection): fix this to work like MS does.
17345         (ResetSelection): factor out the invalidation of selected_rows to
17346         InvalidateSelection.
17347         (SetDataSource): cancel any editing that's going on.
17348
17349         * DataGridColumnStyle.cs
17350         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
17351         call the non-interface version.
17352
17353         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
17354         header rectangle with the clip rectangle so we don't redraw the
17355         entire header for just a small area.  Gets rid of the last flicker
17356         when horizontally scrolling.
17357         (DataGridPaintRow): same.
17358
17359 2006-05-23  Mike Kestner  <mkestner@novell.com>
17360
17361         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
17362         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
17363         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
17364         Critical bug report.
17365
17366 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
17367
17368         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
17369           and this fixes #78493
17370
17371 2006-05-23  Miguel de Icaza  <miguel@novell.com>
17372
17373         * Theme.cs (GetSizedResourceImage): Scale images if the proper
17374         size is not found.  
17375         
17376         * FileDialog.cs: Do not change the background for the side bar as
17377         it wont work nicely with the theme, and also reduces the artifacts
17378         in rendering the icons (which I want to fix too).
17379
17380         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
17381         resources, not resgen resources. 
17382
17383         (PlatformDefaultHandler): Pull images using the new API.
17384
17385 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
17386
17387         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
17388           a reference to the hwnd and will not remove it unless there are
17389           no pending exposures (fixes #78341)
17390         * XplatUI.cs: Improved debug
17391
17392 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
17393
17394         * MenuAPI.cs : don't handle OnClick event when it was not the left
17395           button. Fixed bug #78487.
17396
17397 2006-05-23  Mike Kestner  <mkestner@novell.com>
17398
17399         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
17400         prefer submenus to the top menu for item lookup, to avoid popping down
17401         top-row items.
17402
17403 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
17404
17405         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
17406           Graphics.FillRectangle as the visual results are really bad (even
17407           on win). We now draw perfect arrows (and perfect shadows when the
17408           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
17409           Pen.DashPattern to draw the dots of each line.
17410
17411 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
17412
17413         * FileDialog.cs: Update the filename combobox when navigating through
17414           the ListView with the cursor keys. Fixes part 7 of bug #78446.
17415
17416 2006-05-22  Mike Kestner  <mkestner@novell.com>
17417
17418         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
17419         Fixes #78463.
17420
17421 2006-05-22  Mike Kestner  <mkestner@novell.com>
17422
17423         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
17424         requests. Fix a misspelled parameter and a copy paste exception error
17425         in Select.
17426
17427 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
17428
17429         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
17430           to get the same width/height (5/13) on X11 as the default font has on
17431           win32. This means that our DefaultFont emSize is smaller than the 
17432           the MS SWF equivalent (even thought the width/height stays the same)
17433
17434 2006-05-20  Jackson Harper  <jackson@ximian.com>
17435
17436         * MdiClient.cs:
17437         * MdiWindowManager.cs:
17438         * InternalWindowManager.cs: Make sure to use the border width from
17439         the theme.
17440
17441 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
17442
17443         * PrintDialog.cs: Implements printer details
17444
17445 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
17446
17447         * FileDialog.cs: Added focus handling for PopupButtonPanel.
17448           Fixes part 1 and 2 of bug #78446
17449
17450 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
17451
17452         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
17453           instead of sticking to the first ever calculated value
17454
17455 2006-05-19  Mike Kestner  <mkestner@novell.com>
17456
17457         * ComboBox.cs: fix mouse motion selection to use MousePosition and
17458         PointToClient, since Capture is set. Fixes #78344.
17459
17460 2006-05-19  Mike Kestner  <mkestner@novell.com>
17461
17462         * ListView.cs: match MS behavior in Details view where items are not
17463         drawn if Columns.Count == 0. 
17464         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
17465         Use a separate pen to draw the check, since changing the width affects
17466         the box as well.  Fixes #78454.
17467
17468 2006-05-18  Miguel de Icaza  <miguel@novell.com>
17469
17470         * ListView.cs: ArgumentOutOfRangeException, single versions of the
17471         exception should throw the name of the invalid argument.
17472
17473         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
17474         there are no files listed. 
17475
17476 2006-05-18  Jackson Harper  <jackson@ximian.com>
17477
17478         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
17479         up.
17480
17481 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17482
17483         * Control.cs: Brought back our old UpdateZOrder method as a private
17484           function and switched our calls from UpdateZOrder to the new one.
17485           This fixes the Paint.Net canvas disappearing bug.
17486
17487 2006-05-18  Jackson Harper  <jackson@ximian.com>
17488
17489         * Theme.cs:
17490         * ThemeWin32Classic.cs:
17491         * InternalWindowManager.cs: Move the drawing into the theme,
17492         expose everything the theme should need from the window manager.
17493
17494 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17495
17496         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
17497           from the call to NativeWindow to avoid walking up the parent chain
17498           further than needed (speeds up setting cursors and avoids setting
17499           the wrong cursor if a parent has another cursor defined)
17500         * Cursor.cs: When loading an icon as cursor, MS uses the center of
17501           the icon as hotspot, not what's contained as hotspot in the icon
17502           file. This fixes the perceived drawing offset seen with Paint.Net
17503         
17504 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17505
17506         * XplatUIX11.cs: 
17507           - Store the calculated rectangle in Hwnd object and use it when 
17508             setting the client size
17509           - Force Toolwindows to always be type Dock, to ensure they're on top
17510
17511 2006-05-18  Mike Kestner  <mkestner@novell.com>
17512
17513         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
17514         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
17515         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
17516         Substantial refactoring to remove confusing nested classes. Coding
17517         standard and Get+Set->property refactorings.  Shift to index based
17518         highlighting in ComboListBox instead of constantly using IndexOf and
17519         Items[]. Add invalidations on resize for DropDownList to fix ugliness
17520         in FileDialog growth.  Draw borders manually since Simple mode needs
17521         to look like two independent controls.  Make listbox border
17522         conditional to DropDownStyle.  Improved OwnerDraw support.
17523
17524 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
17525
17526         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
17527         Don't set the disposed graphics to null, so we can throw the "right"
17528         exception if the graphics is reused later (added a flag to avoid 
17529         double disposing). Some behaviours are different under 2.0 and are
17530         filled under bug #78448.
17531
17532 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17533
17534         * Control.cs: When double-buffering is enabled, we need to reset
17535           our graphics context between paint calls. Otherwise, any 
17536           transformations and other alterations on the context will 
17537           become cumulative (#77734)
17538
17539 2006-05-18  Mike Kestner  <mkestner@novell.com>
17540
17541         * ListView.cs: do focused item selection like MS on clicks. 
17542         Rework focus handling for ItemControl so LostFocus invalidates as
17543         well.
17544         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
17545         the ListView ItemControl has focus.
17546
17547 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
17548
17549         * XplatUIX11.cs: If client_window ends up being width or height zero
17550           due to border settings, move it off window inside whole_window (#78433)
17551
17552 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17553
17554         * Mime.cs: Shrink the mime file cache correctly.
17555
17556 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17557
17558         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
17559
17560 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17561
17562         * XplatUIX11.cs (AddExpose): More sanity checks
17563
17564 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17565
17566         * XplatUIX11.cs:
17567           - AddExpose: Don't add expose ranges outside the size of our
17568             window
17569           - Cast opacity values to Int32 to avoid crashes with certain
17570             values
17571           - Added disabled code paths that protect against illegal cross-
17572             thread painting (Developers.exe)
17573
17574 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17575
17576         * ProgressBar.cs: Invalidate the control when it's resized
17577           since block size is based on control size. (#78388)
17578
17579 2006-05-16  Miguel de Icaza  <miguel@novell.com>
17580
17581         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
17582         of setting the incoming argument to the "reset" value, we set the
17583         this.datamember to string.empty (before we were invalidating the
17584         incoming data).   
17585
17586         Fixes 78420
17587
17588 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17589
17590         * Form.cs: Only apply transparency settings after the form
17591           is created. (Fixes #77800)
17592
17593 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17594
17595         * ApplicationContext.cs: Grab the HandleDestroyed event so
17596           we know when to fire OnMainFormClosed 
17597
17598 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17599
17600         * Application.cs: Introduced sub-class to allow tracking of
17601           threads and centralized triggering of the event mess for
17602           ThreadExit, AppExit, etc..  (#76156)
17603
17604 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
17605
17606         * MimeIcon.cs:
17607           - Do not return a null icon index value for a mime subclass.
17608             Instead try the main mime type class too.
17609           - Seems that some newer distributions don't have a link to some
17610             gnome default icons anymore. So check the default gnome dir too.
17611           
17612
17613 2006-05-16  Jackson Harper  <jackson@ximian.com>
17614
17615         * MdiClient.cs: Don't paint the parent background image if we have
17616         our own background image.
17617
17618 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17619
17620         * Control.cs:
17621           - PerformLayout: Do not shrink space filled by DockStyle.Fill
17622             controls, all filled controls are supposed to overlap (#78080)
17623           - UpdateZOrder is supposed to update the control's z-order in the
17624             parent's z-order chain. Fixed to behave like that
17625           - BringToFront: Removed obsolete code
17626           - SendToBack: Simplyfied
17627           - SetChildIndex: Trigger layout calculations when Z-order changes
17628             since layout is done by z-order
17629
17630 2006-05-16  Chris Toshok  <toshok@ximian.com>
17631
17632         [ fixes bug #78410 ]
17633         * DataGrid.cs (set_AlternatingBackColor): use
17634         grid_drawing.InvalidateCells instead of Refresh().
17635         (set_BackColor): call grid_drawing.InvalidateCells.
17636         (set_BackgroundColor): use Invalidate instead of Refresh.
17637
17638         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
17639         invalidate the cell area.
17640
17641 2006-05-15  Chris Toshok  <toshok@ximian.com>
17642
17643         [ fixes bug #78011 ]
17644         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
17645         on to DataGridPaintRow.
17646         (DataGridPaintRow): take a clip argument, and only draw the cells
17647         which intersect it.  same with the not_usedarea.
17648
17649         * Theme.cs (DataGridPaintRow) add @clip parameter.
17650
17651         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
17652         XplatUI.ScrollWindow.
17653         (ScrollToRow): same.
17654
17655         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
17656         with last column which was causing a gray swath to appear with the
17657         XplatUI.ScrollWindow code.
17658
17659 2006-05-15  Chris Toshok  <toshok@ximian.com>
17660
17661         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
17662         use XplatUI.ScrollWindow.
17663         (VerticalScrollEvent): use XplatUI.ScrollWindow.
17664
17665 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
17666
17667         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
17668
17669 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17670
17671         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
17672           file since there are no equivalent X11 cursors
17673
17674 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17675
17676         * MonthCalendar.cs : DateTimePicker should reflect selected date
17677           on mouse*up*, not mouse*down*. Fixed originally reported part of
17678           bug #76474.
17679
17680 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17681
17682         * TabControl.cs : When argument index is equal or more than tab
17683           count, just ignore. Fixed bug #78395.
17684
17685 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17686
17687         * Control.cs: Dispose all child controls when control is diposed (#78394)
17688
17689 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17690
17691         * ColorDialog.cs: Finally it is possible to select the color with
17692           the text boxes
17693
17694 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17695
17696         * PrintDialog.cs: Fix typo
17697
17698 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17699
17700         * PrintDialog.cs: PrintDialog is not resizable
17701         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
17702           color. Made some ToolBar drawing methods protected virtual.
17703
17704 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
17705
17706         * PrintDialog.cs: Implementation of the PrintDialog
17707
17708 2006-05-12  Chris Toshok  <toshok@ximian.com>
17709
17710         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
17711         thumb, instead use MoveThumb.  This has the side effect of making
17712         most of the other thumb moving machinery use MoveThumb as well.
17713         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
17714         need to actually invalidate the rectangle where the new thumb will
17715         go.
17716         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
17717         We force an Update() after, so it's not as fast as it could be,
17718         but at least there's zero flicker and no droppings.
17719         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
17720         (UpdateThumbPos): add another argument (dirty), which says whether
17721         or not to calculate/add dirty regions which we later invalidate.
17722         For cases where we know we're going to use MoveThumb, we pass
17723         false for this.  Otherwise, pass true.
17724
17725 2006-05-12  Jackson Harper  <jackson@ximian.com>
17726
17727         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
17728         the status bar.
17729         
17730 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
17731
17732         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
17733           and GetClipRegion methods and UserClipWontExposeParent property.
17734         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
17735           overriding UserClipWontExposeParent property, setting to false, since
17736           Win32 handles the required expose messages to draw our clipped parent
17737           areas internally
17738         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
17739           PaintEventStart to set the user clip region if set.
17740         * Control.cs: 
17741           - Now internally tracking the Region for the control since we need to
17742             store it if the handle is not yet created and only set it when it
17743             becomes created. Before setting the region forced handle creation
17744           - Added code to draw the parents underneath a user-clipped region
17745         * Hwnd.cs: Added UserClip property
17746
17747 2006-05-12  Chris Toshok  <toshok@ximian.com>
17748
17749         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
17750         (set_Maximum): same.
17751         (set_Minimum): same.
17752         (set_SmallChange): same.
17753         (OnMouseUpSB): remove the call to refresh when releasing the
17754         thumb.  We shouldn't need it.
17755         
17756 2006-05-12  Miguel de Icaza  <miguel@novell.com>
17757
17758         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
17759         AutoSize set to None, we do not need to relayout everything, we
17760         just need to invalidate the current region.
17761
17762         (Draw): Do not draw the entire ClientArea, just redraw the
17763         clip area being passed.
17764
17765         * MdiClient.cs: Make MdiClient constructor with the Form argument
17766         internal. 
17767
17768 2006-05-12  Jackson Harper  <jackson@ximian.com>
17769
17770         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
17771         parents background image,  but strangely not their own.
17772         - (DrawStatusBarPanel): Take into account horizontal alignment
17773         when drawing the strings and icons.
17774
17775 2006-05-12  Mike Kestner  <mkestner@novell.com>
17776
17777         * ListBox.cs: avoid invalidations for focus when the collection is
17778         empty. 
17779
17780 2006-05-12  Chris Toshok  <toshok@ximian.com>
17781
17782         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
17783         invalidate the entire thumb area.  Call InvalidateDirty which
17784         limits the redraw to the thumb itself and surrounding pixels.
17785
17786         * XplatUIX11.cs (ScrollWindow): optimize copying.
17787         
17788 2006-05-12  Chris Toshok  <toshok@ximian.com>
17789
17790         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
17791         Figure out the positioning/layout in a single pass instead of
17792         multiple recursive invocations.  Speeds up the initial display of
17793         the data grid.  Also, make many things private that were
17794         originally public but unused outside this class.
17795
17796 2006-05-11  Jackson Harper  <jackson@ximian.com>
17797
17798         * MdiClient.cs: Improved layout code.
17799
17800 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
17801
17802         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
17803           not SelectedObject.
17804
17805 2006-05-11  Chris Toshok  <toshok@ximian.com>
17806
17807         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
17808         union of that will always be {0,0,width,height}.
17809
17810 2006-05-11  Jackson Harper  <jackson@ximian.com>
17811
17812         * Form.cs: Match MS's DefaultSize for forms (they must have
17813         changed the size in sp2).
17814
17815 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17816
17817         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
17818
17819 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17820
17821         * TextControl.cs : Fixed bug #78109. This incorrect position
17822           comparison caused crash on automatic line split.
17823         * TextBoxBase.cs : reduce duplicate code.
17824
17825 2006-05-10  Jackson Harper  <jackson@ximian.com>
17826
17827         * MdiClient.cs: Active form is only sent to the back when using
17828         the Next form functionality, when a form is clicked the current
17829         active shouldn't be sent to the back.
17830         - Layout the mdi windows when the container is first made visible.
17831         * Form.cs: Give the MdiClient a ref to the containing form when we
17832         create it.
17833         
17834 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17835
17836         * LinkLabel.cs : link_font could be uninitialized, so populate one
17837           before actual use. Fixed bug #78340.
17838
17839 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17840
17841         * XplatUIX11.cs : clipboard format native value is IntPtr.
17842           Fixed bug #78283.
17843
17844 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17845
17846         * Control.cs: 
17847           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
17848             which is passed up the parent chain by DefWndProc
17849           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
17850             to DefWndProc (#77956)
17851         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
17852
17853 2006-05-10  Jackson Harper  <jackson@ximian.com>
17854
17855         * MdiClient.cs: We need to remove the controls from the mdi
17856         collection, when we close the window.
17857         * MdiWindowManager.cs: Special handling of closing mdi windows.
17858         * InternalWindowManager.cs: Make the close method virtual so the
17859         mdi window manager can handle it specially.
17860
17861 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
17862
17863         * DataGrid.cs:
17864           - Recalculate grid when the data source has changed
17865           - Matches styles provided by user from all data sources types
17866         * DataGridTableStyle.cs: For columns that provided by the user set the
17867         with the preferred value is there was unassigned.
17868         * CurrencyManager.cs: throw OnItemChanged event
17869
17870 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
17871
17872         * PictureBox.cs: Don't animate until handle is created. Start animation
17873           when handle is created.
17874
17875 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17876
17877         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
17878           current codebase.
17879         * XEventQueue.cs: We don't need to provide the extra info
17880
17881 2006-05-10  Jackson Harper  <jackson@ximian.com>
17882
17883         * MdiClient.cs: If the mdi clients parent form has a background
17884         image set, we draw that background image for the mdi area's
17885         background.
17886
17887 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17888
17889         * TextBoxBase.cs: Set IBeam cursor (#78347)
17890
17891 2006-05-10  Mike Kestner  <mkestner@novell.com>
17892
17893         * ToolBar.cs: fix some text padding issues with ButtonSize
17894         calculation. Update the default size to match MS documentation.
17895         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
17896         button size. Fixes #78296.
17897
17898 2006-05-10  Mike Kestner  <mkestner@novell.com>
17899
17900         * ListBox.cs: use is_visible for scrollbar positioning in case the
17901         control isn't on screen yet.  Fix off by one with Right vs Width
17902         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
17903         
17904 2006-05-10  Jackson Harper  <jackson@ximian.com>
17905
17906         * X11Dnd.cs: Drop to a control with another control on top of it.
17907         * ToolBar.cs: Work on a copy of the buttons list, so that it can
17908         be modified in click handlers. TODO: Look for similar problems in
17909         other controls.
17910
17911 2006-05-09  Jackson Harper  <jackson@ximian.com>
17912
17913         * Form.cs: Window managers need the old window state when setting
17914         window state now.
17915         * InternalWindowManager.cs: Allow the base mdi window manager to
17916         handle more of the MDI only stuff (like maximize buttons).
17917         * MdiWindowManager.cs: Fix some snafus in changing the window
17918         state.  Add all the menu functionality, for both popup and
17919         maximized menus.
17920         * MdiClient.cs: When a new form is selected the currently
17921         activated form is sent to the back, this matches MS.
17922         - Implement a new method to activate the next mdi child window.
17923
17924 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
17925
17926         * Control.cs: 
17927           - Added new InternalCapture method to allow controls to prevent
17928             the capture behaviour on the click handlers
17929           - Switched to use InternalCapture
17930         * ComboBox.cs:
17931           - Using InternalCapture to prevent mouse captures from being released
17932             on mouse button release (Fixes #78100)
17933         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
17934           returns Form borders if a caption is present. (Fixes #78310)
17935
17936 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
17937
17938         * TreeNode.cs: Changed serialization .ctor to not require every field
17939           to be present. (#78265)
17940         * OwnerDrawPropertyBag.cs: Added serialization .ctor
17941
17942 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
17943
17944         * MimeIcon.cs: for is faster than foreach for strings.
17945
17946 2006-05-05  Mike Kestner  <mkestner@novell.com>
17947
17948         * CheckedListBox.cs: update check handling code to not use selected.
17949         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
17950         behavior for visual feedback, motion response, shift/ctrl handling,
17951         and properly deal with all 4 selection modes. Updates to bounds
17952         handling logic.  Add scroll wheel support. [Fixes #77842]
17953
17954 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17955
17956         * ListView.cs:
17957           - Moved adding of Implicit controls into .ctor. That way, subsequent
17958             creation of the controls will not cause them to think they are 
17959             toplevel windows (fixes #78200 header problem)
17960           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
17961           - Switched visibility setting of header control to use internal field
17962             to avoid triggering handle creation
17963           - Now checking if handle is created before causing a refresh when items
17964             are added (This makes us now match handle creation time with MS)
17965         * Splitter.cs: Removed loading of private splitter cursor, switched to
17966           Cursors version now that that is loading the right ones
17967         * Cursors.cs: Load proper splitter cursors from resources
17968         * Cursor.cs: Added second method of loading resource cursors for the 
17969           VS.Net users amongst us
17970
17971 2006-05-05  Mike Kestner  <mkestner@novell.com>
17972
17973         * ListView.cs: give header_control a minimum size based on the
17974         ListView size.
17975
17976 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17977
17978         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
17979           window seems to do that with metacity, so set that type. (#78120)
17980
17981 2006-05-05  Mike Kestner  <mkestner@novell.com>
17982
17983         * ListViewItem.cs: fix Details mode checkbox layout bug.
17984         * ThemeWin32Classic.cs: draw a ListView column header for unused space
17985         at the end of the header, if it exists. [Fixes for #78200]
17986
17987 2006-05-04  Jackson Harper  <jackson@ximian.com>
17988
17989         * MdiClient.cs: Add a helper property to get the container form.
17990         * MdiWindowManager.cs: We have to make sure to use the menu origin
17991         when drawing the icons and buttons, this fixes maximized window
17992         icons/buttons on win32.
17993         * InternalWindowManager.cs: Reset the restore captions when a
17994         window goes from Maximized to Minimized and vice versa. Move the
17995         DrawMaximizedButtons into the MdiWindowManager source, tool
17996         windows can't be maximized. NOTE: This could use a little
17997         refactoring if time ever permits.
17998         
17999 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
18000
18001         * TextBox.cs: Add MWFCategoryAttributes
18002         * TextBoxBase.cs: Add MWFCategoryAttributes
18003         * Form.cs: Add MWFCategoryAttributes
18004
18005 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
18006
18007         * Control.cs: Add MWFCategoryAttributes
18008         * ScrollableControl.cs: Add MWFCategoryAttributes
18009
18010 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
18011
18012         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
18013           Divider is true. Fix a little glitch in PropertyToolBar
18014           drawing code
18015
18016 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
18017
18018         * Control.cs:
18019           - Dispose: Call base.Dispose, this causes the disposed event
18020             to be fired (and probably other, more important stuff)
18021           - SetVisibleCore: Set is_visible to true after creating the
18022             window so that the window still gets created invisible (if
18023             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
18024             to generate a WM_ACTIVE message
18025         * Form.cs: Call Dispose when we want to destroy the window, instead of
18026           just destroying the handle (Dispose will do that for us)
18027         * XplatUIX11.cs:
18028           - RootWindow also needs a queue, so we can properly process the
18029             property change events from RootWindow (like Activate)
18030           - Generatic synthetic WM_ACTIVE message when the active window is
18031             being destroyed
18032
18033 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
18034
18035         * LinkLabel.cs: Trigger a recalc of our label dimensions when
18036           bounds are changed
18037
18038 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
18039
18040         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
18041           for determining width and height (image might not be assigned if
18042           we're drawing an imagelist)
18043
18044 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
18045
18046         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
18047         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
18048           height from system
18049         * Theme.cs: No longer returns hardcoded menu height, instead calls
18050           new driver method
18051         * Form.cs (OnLoad): Scaling happens before triggering Load events 
18052           on MS (# 78257)
18053
18054 2006-05-01  Mike Kestner  <mkestner@novell.com>
18055
18056         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
18057
18058 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
18059
18060         * TextBoxBase.cs: Removed Fixme
18061         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
18062
18063 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
18064
18065         * XplatUIX11.cs:
18066           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
18067             the rectangle relative to the parent, considering borders. We
18068             don't really want that.
18069           - ScrollWindow: Fixed warning to be more understandable
18070         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
18071           scrollbars and scroll only the visible area
18072         * RichTextBox.cs: Removed debug output
18073
18074 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18075
18076         * NumericUpDown.cs (Text): Just use base
18077         * UpDownBase.cs: Ensure txtView is created before using it
18078
18079 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
18080
18081         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
18082           casting to IntPtr to avoid 64bit overflow errors
18083
18084 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18085
18086         * Control.cs:
18087           - AllowDrop: Don't force handle creation.
18088           - CreateHandle: Added call to tell driver if we're allowed to drop
18089
18090 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18091
18092         * FileDialog.cs: Remember the last directory not only for the
18093           current instance but also for new FileDialog instances.
18094
18095 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
18096         
18097         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
18098           broke sending async messages
18099
18100 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18101
18102         * XplatUIX11.cs:
18103           - ScrollWindow: Fixed method. We finally generate expose events again
18104             for scrolled areas. This was causing 'garbage' when scrolling
18105             textbox and other controls that used ScrollWindow
18106           - Switched from using the regular queue for paint events to the MS 
18107             model of 'generating' paint events when the queue is empty.
18108             We use the new XQueueEvent.Paint subclass to store which windows
18109             need painting.
18110           - AddExpose now takes the x/y/width/height of the exposed area
18111             and inserts the window into the paint queue if not already there
18112           - InvalidateWholeWindow: Switched to use new AddExpose method
18113           - UpdateMessageQueue: Added which queue to monitor for paint events
18114           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
18115             the unlikely case nothing above handles it. We reset the expose
18116             pending states to get them off the queue.
18117           - GetMessage: Now pulls a paint event if no other events are in the
18118             queue
18119           - Invalidate: Switched to new AddExpose method
18120           - PeekMessage: Updated to understand pending paint events
18121           - UpdateWindow: Fixed logic bug. We were only updating if the window
18122             didn't need updating. Also switched to sending WM_PAINT directly,
18123             like MS does.
18124         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
18125           and random access Remove(). The random access is needed to handle
18126           UpdateWindow() where a WM_PAINT is sent directly without accessing
18127           the queue.
18128         * ScrollBar.cs: Added Update() calls to cause immediate updates to
18129           allow for better feedback when scrolling. Scrollbars are small and
18130           the immediate update should make it 'feel' more responsive without
18131           slowing things down. ScrollBar still needs it's invaliate logic
18132           updated to not always invalidate the whole bar on certain changes.
18133
18134 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18135
18136         * Control.cs:
18137         (BackColor): if the control does not support a transparent background,
18138         return the default backcolor when the parent backcolor is transparent.
18139
18140 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
18141
18142         * Application.cs: Updated to new StartLoop/GetMessage API
18143         * RichTextBox.cs: Provide some output on RTF parsing errors
18144         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
18145           new queue_id argument to GetMessage and PeekMessage to allow faster
18146           handling of per-thread queues in drivers.
18147         * Hwnd.cs: Added Queue tracking and property
18148         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
18149         * XEventQueue.cs: Added thread trackingA
18150         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
18151         * XplatUIX11.cs:
18152           - Implemented new per-thread queue
18153           - GetMessage: Fixed return/break behaviour on several cases. We were
18154             returning stale messages in some cases, instead of just processing
18155             the next message
18156
18157 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
18158
18159         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
18160
18161 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
18162
18163         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
18164           fixed off-by-one comparisons between Width/Height and Right/Bottom.
18165
18166 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
18167
18168         * PropertyGridView.cs: Fix drop down width.
18169
18170 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18171
18172         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
18173           a mess in DrawToolBar, so I removed one of them.
18174
18175 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18176
18177         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
18178           needed (clip). Otherwise we get artifacts.
18179
18180 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
18181
18182         * FixedSizeTextBox.cs: Added constructor to allow specifying which
18183           dimension is fixed
18184         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
18185           and switched FixedSizeTextBox to only be fixed vertical (#78116)
18186         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
18187           if it matches the scale base font (avoids unneeded scaling)
18188
18189 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
18190
18191         * X11DesktopColors.cs: One gtk_init_check should be enough
18192
18193 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
18194
18195         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
18196           match MS behaviour
18197
18198 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
18199
18200         * TextBoxBase.cs: 
18201           - Generate OnTextChanged for Backspace even if we're only deleting
18202             the current selection
18203           - When setting the Text property, only select all text if the
18204             control does not have focus when it is being set. Otherwise
18205             just place the cursor at the beginning of the control
18206
18207 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
18208
18209         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
18210           Added a little helper to draw PropertyGrid ToolBar with a different
18211           border and a different BackColor.
18212         * PropertyGrid.cs: Some background parts didn't get painted with the
18213           correct background color. Added a class that helps us to draw the
18214           correct border for PropertyGridView and a class that helps us to
18215           draw ToolBars with a different backcolor
18216         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
18217
18218 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
18219
18220         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
18221         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
18222
18223 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
18224
18225         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
18226           into the palette entries. Also, since we're working on a copy
18227           we needed to copy the palette back onto the bitmap.
18228         * Cursor.cs: Same fix as XplatUIWin32.cs.
18229
18230 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
18231
18232         * ImageListStreamer.cs: Need to read the var (or we're off)
18233
18234 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
18235
18236         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
18237           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
18238           TextBoxBase.cs: Unused var fixes
18239         * AxHost.cs: Small 2.0 fix
18240         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
18241           as it seems that is what at least Metacity expects. This will make
18242           icons show up on 64bit platforms. We still have some 64bit size
18243           issues, though, since the startup app window size still won't match.
18244
18245 2006-04-25  Mike Kestner  <mkestner@novell.com>
18246
18247         * *.cs: cleanup newly reported exception var unused warnings.
18248
18249 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18250
18251         * ThemeWin32Classic.cs: Button image alignment now matches exactly
18252           ms
18253
18254 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18255
18256         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
18257           image. The image position is always the same, no matter if the
18258           button is pressed or not.
18259
18260 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18261
18262         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
18263           selection and set the correct filename for SaveFileDialog.
18264           Patch by Emery Conrad.
18265
18266 2006-04-24  Mike Kestner  <mkestner@novell.com>
18267
18268         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
18269         check for item.X outside the ClientRect instead of item.Y. Fixes
18270         #78151.
18271
18272 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18273
18274         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
18275         trust that value blindly and do some sanity check. Fixes bug #77814.
18276
18277 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18278
18279         * ImageListStreamer.cs: save the mask as a 1bpp image.
18280
18281 2006-04-21  Mike Kestner  <mkestner@novell.com>
18282
18283         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
18284         pass Checked and Indeterminate to the Theme Engine. Improve
18285         encapsulation with ListBox.
18286         * ListBox.cs: Keep a StringFormat instead of calculating it every item
18287         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
18288         nested types.  Move all CheckState functionality to CheckedListBox.
18289         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
18290         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
18291         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
18292         single base list. Fix scrollbar sizing and placement to mirror MS.
18293         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
18294         used.
18295         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
18296         for CheckedListBox by using new DrawItemState info.  Center the
18297         checkboxes on the items. Use new StringFormat property.
18298
18299 2006-04-18  Jackson Harper  <jackson@ximian.com>
18300
18301         * Form.cs: MdiChildren don't do default locations the same way as
18302         regular forms.  This prevents a crash when trying to position the
18303         mdi windows.
18304
18305 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
18306
18307         * PropertyGridTextBox.cs: Formatting, copyright
18308         * PropertiesTab.cs: Formatting
18309         * PropertyGrid.cs: Formatting
18310         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
18311           click toggling of values
18312           
18313 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
18314
18315         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
18316         * Control.cs (.ctor): verify_thread_handle is static, don't reset
18317           every time a control is created
18318         * Application.cs: Removed obsolete EnableRTLMirroring method
18319
18320 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
18321
18322         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
18323         SelectedIndex to -1. Fixes bug #78121.
18324
18325 2006-04-17  Jackson Harper  <jackson@ximian.com>
18326
18327         * Binding.cs: Handle null values for Current and BindingContext.
18328         This occurs when binding is a little delayed.
18329         * CurrencyManager.cs: return null for Current when there are no
18330         items in the list.
18331         - Hookup to the listchanged event on the DataView and update
18332         bindings when the list is changed.  This fixes late binding of
18333         controls.
18334
18335 2006-04-17  Jackson Harper  <jackson@ximian.com>
18336
18337         * X11Dnd.cs:
18338         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
18339         Ringenbach.
18340
18341 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
18342
18343         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
18344           place
18345         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
18346           with the correct ButtonState
18347
18348 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
18349
18350         * XplatUIX11.cs: Improved distinguishing between window types to
18351           tell the WM a type closer to what the app wants (Fixes #78107)
18352
18353 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
18354
18355         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
18356           GrabHandle
18357
18358 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
18359
18360         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
18361           drawing code to reflect the size grip changes
18362
18363 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18364
18365         * ImageListStreamer.cs: fix handling of the mask that follows the main
18366         bitmap when deserializing and serialize it properly. The generated mask
18367         should better be a 1bpp image, but I'll do that later.
18368
18369 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
18370
18371         * FileDialog.cs: Show something in the DirComboBox on *nix if the
18372           path doesn't fit into some of our Current.Places
18373
18374 2006-04-13  Jackson Harper  <jackson@ximian.com>
18375
18376         * ComboBox.cs: Use borders instead of drawing our own decorations,
18377         try to obey correct rules for heights.
18378         * Theme.cs:
18379         * ThemeNice.cs:
18380         * ThemeClearLooks.cs:
18381         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
18382         this is now handled by borders.
18383         - Remove unused DrawListBoxDecorationSize method.
18384         
18385 2006-04-13  Mike Kestner  <mkestner@novell.com>
18386
18387         * MenuAPI.cs: null guarding for the disbled click check fixes crash
18388         reported by Alex.
18389
18390 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
18391
18392         * ThemeWin32Classic.cs: 
18393           - Fixed CPDrawStringDisabled
18394           - Corrected drawing of disabled menu items
18395           - Fixed drawing of disabled radio buttons (bug #78095)
18396           - Draw check in a disabled CheckBox with color ControlDark 
18397
18398 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18399
18400         * Form.cs: Use the provided width when calculating the menu size;
18401           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
18402           and ClientSize.Width won't be updated yet
18403         * Application.cs: Use Visible instead of Show() to make form visible,
18404           this way we create the handle later and menusize is considered
18405
18406 2006-04-12  Mike Kestner  <mkestner@novell.com>
18407
18408         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
18409         reporting.
18410
18411 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18412
18413         * TextBox.cs: Implemented context menu
18414
18415 2006-04-12  Mike Kestner  <mkestner@novell.com>
18416
18417         * ListView.cs: implement box selection. fixes #77838.
18418         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
18419
18420 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18421
18422         * XplatUIX11.cs: Added setting of window type when transient window
18423           is created (metacity would move it otherwise)
18424         * X11Structs.cs: Added WINDOW_TYPE atoms
18425         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
18426           background (the control is Opaque but still wants transparent
18427           backgrounds)
18428
18429 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18430
18431         * Control.cs: Added OnPaintBackgroundInternal to allow controls
18432           that set Opaque but don't mean it (like all ButtonBase-derived
18433           controls) to still draw their background
18434         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
18435           the background
18436
18437 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18438
18439         * Control.cs (PaintControlBackground): Set the graphics object
18440           on our PaintEvent to null to prevent it from being disposed
18441           when the PaintEvent gets disposed
18442
18443 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
18444
18445         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
18446         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
18447
18448 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18449
18450         * Control.cs: 
18451           - Added transparency check to BackColor property. Transparent
18452             backgrounds are only allowed if the control styles permit it
18453           - Added recursive painting of parent control background and
18454             foreground if a control with a transparent backcolor is drawn
18455             (Thanks to Tim Ringenback for providing his 'hack' as a base
18456              for this patch) Fixes #77985 and #78026.
18457           - Added Opaque style check before calling OnPaintBackground, no
18458             need to draw the background if the control is opaque
18459           - Removed ControlAccessibleObject owner variable (inherited from
18460             base, no need to define again)
18461           - Added some documentation links explaining the drawing events
18462             and styles
18463
18464 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18465
18466         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
18467           that the affected control is the located at the left border of our
18468           parent (Fixes #77936)
18469
18470 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18471
18472         * TextBoxBase.cs: When rendering disabled or readonly controls,
18473           draw the background with 'Control' instead of 'Window' color as
18474           long as the user hasn't specifically set a color
18475
18476 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18477
18478         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
18479           since that won't be updated if the user types text (only if it's
18480           programatically set)
18481
18482 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18483
18484         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
18485           layout changes do to app-triggered resizes will have the proper
18486           display rectangle for layout
18487
18488 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
18489
18490         * ThemeWin32Classic.cs:
18491           - Make use of the SystemBrushes and SystemPens wherever possible
18492           - Corrected some highlight colors
18493           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
18494             drawing
18495         * Theme.cs: Added Empty field to CPColor struct
18496
18497 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18498
18499         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
18500           is displayed when calculating the display rectangle. Thanks to Mike
18501           for teaching me the err of my ways.
18502
18503 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
18504
18505         * ScrollableControl.cs:
18506           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
18507             (instead of 0,0) and we now return the real width/height instead of
18508             just the clientrectangle, adjusted for padding. The rectangle is
18509             now cached and created by the new CalculateDisplayRectangle method.
18510           - Created new CalculateDisplayRectange method, which basically does
18511             what get_DisplayRectangle() did originally, but now using the 
18512             right edge instead of DisplayRectangle to determine the size of
18513             our scrollbars
18514           - get_Canvas(): Fixed it to properly calculate canvas for 
18515             right/bottom controls which seem to be placed to the right/bottom
18516             of any controls that have a fixed location
18517           - Removed TODO that's taken care of
18518           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
18519             and SetDisplayRectLocation according to new MSDN2 docs
18520           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
18521             event when that is called, this is added for compatibility
18522           - ScrollControlIntoView(): Implemented.
18523           - Switched scrollbars to be implicit, they shouldn't be selectable
18524         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
18525           call it when the active control is set/changed
18526         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
18527         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
18528           implicit_control variable (used for native Win32 message generation)
18529         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
18530           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
18531         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
18532         * XplatUIStructs.cs: Added ScrollBarCommands enum
18533
18534 2006-04-10  Jackson Harper  <jackson@ximian.com>
18535
18536         * ButtonBase.cs:
18537         * CheckedListBox.cs:
18538         * ComboBox.cs:
18539         * DataGrid.cs:
18540         * DataGridView.cs:
18541         * Form.cs:
18542         * GroupBox.cs:
18543         * ListBox.cs:
18544         * PrintPreviewControl.cs:
18545         * ProgressBar.cs:
18546         * PropertyGrid.cs:
18547         * Splitter.cs:
18548         * StatusBar.cs:
18549         * TrackBar.cs:
18550         * UpDownBase.cs: Fixup base event overrides.
18551         
18552 2006-04-06  Mike Kestner  <mkestner@novell.com>
18553
18554         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
18555         all user-initiated value changes to min <= value <= max-thumbsz+1.
18556         (set_Value): check for vert/horiz when calculating new thumb position.
18557         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
18558         like MS does.
18559         (OnMouseMoveSB): refactor the thumb dragging code and refine
18560         invalidation logic to reduce flicker.
18561         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
18562         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
18563         (UpdateThumbPosition): small code readability cleanup
18564
18565 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
18566
18567         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
18568           different
18569
18570 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18571
18572         * ThemeNice.cs: Use a better graphics effect when a button is pressed
18573
18574 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18575
18576         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
18577         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
18578           This dramatically reduces the number of Pen.Dispose calls. 
18579           Where possible call ResPool methods only once instead of calling it
18580           over and over again (for example for the same color).
18581
18582 2006-04-06  Mike Kestner  <mkestner@novell.com>
18583
18584         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
18585         Also remove an unused private field on the collection. Fixes #77972.
18586
18587 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18588
18589         * ThemeNice.cs: Added ToolBar drawing code
18590
18591 2006-04-06  Mike Kestner  <mkestner@novell.com>
18592
18593         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
18594         I'm assuming that means we need to look up the toplevel for the
18595         provided control. Fixes the crash trace in #77911 but exposes another
18596         crash in some strange reflection usage in NDocGui.
18597
18598 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18599
18600         * ThemeNice.cs: Gave it a little silver touch and added Images
18601           method
18602         * FontDialog.cs: FontDialog is not resizable
18603         * FileDialg.cs: Added SizeGripStyle.Show
18604
18605 2006-04-05  Jackson Harper  <jackson@ximian.com>
18606
18607         * KeyboardLayouts.cs: Remove warning.
18608
18609 2006-04-05  Jackson Harper  <jackson@ximian.com>
18610
18611         * Control.cs: Enable OnPaintInternal so we can use it for drawing
18612         all of our controls instead of Paint +=.
18613         * ListBox.cs:
18614         * ListView.cs:
18615         * MenuAPI.cs:
18616         * MessageBox.cs:
18617         * NotifyIcon.cs:
18618         * ProgressBar.cs:
18619         * ScrollBar.cs:
18620         * Splitter.cs:
18621         * StatusBar.cs:
18622         * TabControl.cs:
18623         * TextBoxBase.cs:
18624         * ToolBar.cs:
18625         * TrackBar.cs:
18626         * UpDownBase.cs:
18627         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
18628         use OnPaintInternal. Remove Width/Height and Visible checks in
18629         paint handler, this is done at a higher level now.
18630         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
18631         * PaintEventArgs.cs: Add a handled flag so controls that don't
18632         want anymore painting after OnPaintInternal can make sure OnPaint
18633         isn't called.
18634
18635 2006-04-05  Mike Kestner  <mkestner@novell.com>
18636
18637         * Form.cs: fix the menu WndProc hacks to respect the native enabled
18638         state of the form, so that we don't process events when Modal dialogs
18639         are up. Fixes #77922.
18640
18641 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
18642
18643         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
18644           checking is done.
18645
18646 2006-04-05  Mike Kestner  <mkestner@novell.com>
18647
18648         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
18649
18650 2006-04-05  Mike Kestner  <mkestner@novell.com>
18651
18652         * ListView.cs (HeaderMouseMove): null guarding for the over column
18653         when setting up the drag_to_index.  Fixes #78015.
18654
18655 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
18656
18657         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
18658           in the taskbar. Transient windows seem to accomplish that.
18659
18660 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
18661
18662         * Form.cs:
18663           - Re-enabled CreateParams.X/Y code for FormStartPosition
18664           - Added code for manual placement when creating the Control
18665           - Incomplete patch to treat MDI forms differently when
18666             setting the ClientSizeCore. (Still need to figure out handling
18667             x/y coords there)
18668         * XplatUIX11.cs:
18669           - When we're explicitly setting the X/Y position of a non-Child
18670             window, let the WM know. Metacity really wants this.
18671
18672 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18673
18674         * ThemeNice.cs: Added CPDrawButton
18675
18676 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18677
18678         * ThemeNice.cs: Changed the color for focused buttons and activated
18679           the arrows for small scroll buttons.
18680
18681 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18682
18683         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
18684           anymore. Changed some method modifiers to protected (virtual)
18685         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
18686           changes
18687         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
18688           Updated drawing of menus, buttons and progressbars; added
18689           CPDrawBorder3D 
18690
18691 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18692
18693         * ImageListStreamer.cs: implemented serialization/deserialization
18694         of the images.
18695
18696 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
18697
18698         * ThemeWin32Classic.cs:
18699           - Removed all the DrawFrameControl stuff; CPDrawButton,
18700             CPDrawCheckBox and CPDrawRadioButton are now handled directly
18701             inside the methods
18702           - Updated and corrected the drawing code of CPDrawButton,
18703             CPDrawCheckBox and CPDrawRadioButton to better match ms
18704           - Updated theme checkbox and radiobutton code to use the CP*
18705             methods
18706
18707 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18708
18709         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
18710           bug is fixed
18711
18712 2006-03-31  Jackson Harper  <jackson@ximian.com>
18713
18714         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
18715         sometimes.
18716         * UpDownBase.cs: Don't CreateGraphics manually, use a
18717         Refresh. Ideally we would invalidate the correct areas here.
18718
18719 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18720
18721         * XplatUIX11.cs: 
18722           - We now track the mapping state of windows. If a window (or 
18723             one of it's parents) is not mapped we no longer permit
18724             WM_PAINT messages to be generated since we'd otherwise get 
18725             lots of BadMatch X errors. Jackson did all the work figuring
18726             out the problem.
18727           - Destroying the caret if the window it's contained in is 
18728             destroyed. Can't use regular DestroyCaret method since it
18729             might fall into a drawing function (trying to remove the
18730             caret) and with that generate new BadMatch errors. Again,
18731             Jackson tracked this down.
18732           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
18733             make sure we send the messages to all windows. (The old code
18734             would send the WM_DESTROY to the window, and then all child
18735             windows would be 'gone' because the WM_DESTROY handle lookup
18736             would no longer find the destroyed window)
18737         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
18738         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
18739
18740 2006-03-31  Jackson Harper  <jackson@ximian.com>
18741
18742         * ScrollableControl.cs: Dont recalc if we are not visible.
18743
18744 2006-03-31  Mike Kestner  <mkestner@novell.com>
18745
18746         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
18747         the visibility branch.
18748
18749 2006-03-31  Jackson Harper  <jackson@ximian.com>
18750
18751         * ScrollBar.cs: Cap values when incrementing/decrementing.
18752
18753 2006-03-31  Mike Kestner  <mkestner@novell.com>
18754
18755         * MenuAPI.cs: setup menu.tracker for popup/context menus.
18756         * ToolTip.cs: guard against timer expirations with no active control.
18757         Not sure why it happened.
18758
18759 2006-03-31  Mike Kestner  <mkestner@novell.com>
18760
18761         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
18762         text.
18763         * ToolTip.cs: Position the tooltip based on where the cursor is at
18764         popup time, not at MouseEnter time.  Add a Down state so that we don't
18765         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
18766         positioning offset. Lookup DisplaySize at positioning time, since it
18767         can theoretically change during invocation.
18768         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
18769         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
18770
18771 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18772
18773         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
18774           Fixes behaviour when the Text property of the box is String.Empty
18775
18776 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
18777
18778         * XplatUIX11.cs: Only send mouseleave for our client windows, not
18779           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
18780           a window)
18781
18782 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18783
18784         * FileDialog.cs: Visual enhancement for the popup buttons in 
18785           PopupButtonPanel
18786
18787 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18788
18789         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
18790           code
18791
18792 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
18793
18794         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
18795           highlighted menu items to match ms
18796
18797 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
18798
18799         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
18800
18801 2006-03-30  Mike Kestner  <mkestner@novell.com>
18802
18803         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
18804         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
18805         go active to account for HotLight to Selected transition.
18806         * MenuItem.cs: add internal Selected prop. Fill out the Status
18807         property by calculating it from item info. Add HotLight,
18808         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
18809
18810 2006-03-30  Mike Kestner  <mkestner@novell.com>
18811
18812         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
18813
18814 2006-03-29  Jackson Harper  <jackson@ximian.com>
18815
18816         * Form.cs: Implement TODO.
18817
18818 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
18819
18820         * PrintPreviewDialog.cs: Implemented missing methods and events; still
18821           missing proper dialog setup in the constructor
18822
18823 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
18824
18825         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
18826         * Control.cs:
18827           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
18828           - Fixed ResetBindings and removed TODO
18829           - Added check for cross-thread calls to get_Handle()
18830           - Added Marshaller attribute for set_Font to satisfy class status
18831         * FontDialog.cs: Removed TODOs that seemed implemented
18832         * UpDownBase.cs: Removed unneeded TODO and Fixme
18833         * MessageBox.cs: Implemented support for Default button and removed TODO
18834         * FileDialog.cs: Removed obsolete TODO
18835         * DomainUpDown.cs: Removed obsolete TODO
18836         * ButtonBase.cs: Removed obsolete TODO
18837         * XplatUIWin32.cs: Removed obsolete TODO
18838         * Form.cs:
18839           - Removed obsolete TODO
18840           - Calling CheckAcceptButton when the acceptbutton is changed to allow
18841             internal status updates
18842           - Making sure the active control is selected when the control is created
18843         * CurrencyManager.cs: Removed obsolete TODO
18844
18845 2006-03-29  Mike Kestner  <mkestner@novell.com>
18846
18847         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
18848         of PrintPreviewDialog and RichTextBox.
18849
18850 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18851
18852         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
18853           DarkDark, Light and LightLight colors for a specific color
18854         * ThemeWin32Classic.cs:
18855           - Use Button drawing code to draw RadioButtons and CheckBoxes with
18856             Appearance = Button 
18857           - Make use of the new ResPool helper CPColor
18858           - Draw ProgressBar and StatusBar with correct 3D borders
18859
18860 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18861
18862         * ColorDialog.cs: Return selected color. Fixes bug #77940.
18863
18864 2006-03-28  Mike Kestner  <mkestner@novell.com>
18865
18866         * ListView.cs: fix Icon layout to plan for scrollbar widths when
18867         calculating col/row counts.
18868
18869 2006-03-28  Mike Kestner  <mkestner@novell.com>
18870
18871         * ColumnHeader.cs:
18872         * ListView.cs:
18873         * ListViewItem.cs:
18874         * Menu.cs: 
18875         switch to explicit interface method implementation for some methods
18876         corcompare identifies as inconsistent with MS.
18877
18878 2006-03-28  Mike Kestner  <mkestner@novell.com>
18879
18880         * MainMenu.cs: 
18881         * Menu.cs:
18882         add a few missing methods from the class status output.
18883
18884 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
18885
18886         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
18887           correct.
18888
18889 2006-03-28  Mike Kestner  <mkestner@novell.com>
18890
18891         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
18892
18893 2006-03-27  Mike Kestner  <mkestner@novell.com>
18894
18895         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
18896         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
18897
18898 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
18899
18900         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
18901
18902 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18903
18904         * ThemeWin32Classic.cs:
18905           - GroupBox: Inserted a little gap between the text and the lines
18906             on the right side
18907           - Made the code in CPDrawBorder3D more readable
18908           - Corrected the drawing location of the up and down arrows in 
18909             CPDrawScrollButton
18910
18911 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18912
18913         * ControlPaint.cs: Corrected line widths in DrawBorder for
18914           ButtonBorderStyle Inset and Outset
18915
18916 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18917
18918         * ThemeWin32Classic.cs:
18919           - Rewrote the totally broken CPDrawBorder3D method. That was
18920             one of the main problems for the terrific ThemeWin32Classic
18921             look
18922           - Updated and corrected Button drawing
18923           - Correct the dimensions of the SizeGrip to match ms ones
18924           - Removed a small drawing glitch in DrawComboBoxEditDecorations
18925         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
18926           Border3DStyle.Sunken to match ms.
18927
18928 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18929
18930         * ThemeWin32Classic.cs: First small part of the "de-uglify
18931           ThemeWin32Classic" effort, SizeGrip
18932
18933 2006-03-24  Jackson Harper  <jackson@ximian.com>
18934
18935         * XplatUIX11.cs: Give a max idle time of one second, this matches
18936         MS and forces an Idle event every second when there are no other
18937         events in the queue.
18938
18939 2006-03-24  Mike Kestner  <mkestner@novell.com>
18940
18941         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
18942         * ListView.Item.cs: fix layout issues with null image lists and images
18943         smaller than checkbox size.
18944         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
18945         mode like MS does.  It's weird, but consistent.  ;-)
18946         Fixes #77890.
18947
18948 2006-03-24  Mike Kestner  <mkestner@novell.com>
18949
18950         * ListView.cs: Scroll wheel support for the item control.  Fixes
18951         #77839.
18952
18953 2006-03-23  Jackson Harper  <jackson@ximian.com>
18954
18955         * ScrollableControl.cs: Special case negative sized areas, not
18956         zero.
18957         * MonthCalendar.cs: Save the rect of the clicked date so we can
18958         use it for invalidation.
18959         - Try to cut down on the number of invalidates
18960         - Invalidate the rect the mouse is over and was over when moving
18961         the mouse, so we get the focus box following the cursor.
18962
18963 2006-03-23  Mike Kestner  <mkestner@novell.com>
18964
18965         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
18966         focus rectangle drawing. Fixes #77835.
18967
18968 2006-03-23  Mike Kestner  <mkestner@novell.com>
18969
18970         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
18971         the if and else if and reverting back to the original == check on the
18972         None conditional.
18973
18974 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18975
18976         * FontDialog.cs: Update the example panel if the selected index of
18977           the fontListBox changes.
18978
18979 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18980
18981         * FileDialog.cs: Make FileDialog remember which directory it was in
18982           last in the same execution.
18983
18984 2006-03-22  Mike Kestner  <mkestner@novell.com>
18985
18986         * FileDialog.cs: make the DropDownMenu on the toolbar display
18987         RadioChecks since they are mutually exclusive and that's what MS does.
18988
18989 2006-03-22  Mike Kestner  <mkestner@novell.com>
18990
18991         * Theme.cs: add Color param to CPDrawMenuGlyph.
18992         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
18993         checks and radio marks and arrows are visible on highlighted items.
18994         * ControlPaint.cs: update to use new Theme signature.
18995
18996 2006-03-22  Mike Kestner  <mkestner@novell.com>
18997
18998         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
18999         is active. Fixes #77870.
19000
19001 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
19002
19003         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
19004           to be focused/selected after startup
19005
19006 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
19007
19008         * ColorDialog.cs: 
19009           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
19010             CustomColors and ShowHelp properties
19011           - Some internal rewrites to get better results when using the
19012             ColorMatrix
19013
19014 2006-03-22  Mike Kestner  <mkestner@novell.com>
19015
19016         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
19017         HoverSelection.  Fixes #77836.
19018
19019 2006-03-22  Mike Kestner  <mkestner@novell.com>
19020
19021         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
19022         ToggleButtons.  (De)Sensitize the Back button around a stack count of
19023         1, not 0.  Update ButtonSize based on a pixel count of the win32
19024         control.  Adjust the toolbar size/location for new button size.
19025
19026 2006-03-22  Jackson Harper  <jackson@ximian.com>
19027
19028         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
19029         true.
19030         * ScrollBar.cs: When doing increments and decrements we need to
19031         set the Value property so that ValueChanged gets raised. A
19032         possible optimization here would be to make an internal SetValue
19033         that doesn't invalidate immediately.
19034         * ToolTip.cs: Tooltips get added to their container (when
19035         supplied) so they get disposed when the container is disposed.
19036         - Don't create tooltips for String.Empty. This prevents all these
19037         little 2-3 pixel windows from showing up when running nunit-gui
19038         and driving me mad.
19039         * Form.cs: Don't set topmost when setting the owner if the handles
19040         haven't been created yet.  The topmost set will happen when the
19041         handles are created.
19042
19043 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
19044
19045         * XplatUIX11.cs:
19046           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
19047           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
19048             visible (to allow them to recalculate their sizes)
19049
19050 2006-03-21  Mike Kestner  <mkestner@novell.com>
19051
19052         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
19053         methods. Removed a ton of redundant code.  Still not really happy with
19054         the border rendering, but I think that's mainly because of the
19055         ControlDarkDark being black instead of a dark grey. Depending on how 
19056         close we want to be, we might want to revisit those color choices.
19057         Among the new features added during the refactor were DropDownArrow
19058         pressed rendering, Disabled image rendering.  Proper flat appearance
19059         boundary rendering.  Removed the Divider and Wrapping dividers since I
19060         can't figure out any combination of themes and conditions to make the
19061         MS control draw a horizontal line on a toolbar despite what the
19062         Divider property docs indicate.
19063         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
19064         conditions and incorrect layout.  Updated to coding standard.
19065         * ToolBarButton.cs: refactored layout and positioning code from
19066         ToolBar to here.  Invalidate wherever possible instead of forcing
19067         redraws of the whole toolbar. 
19068         (Known remaining issues: explicit ButtonSize smaller than provided
19069         images.)
19070
19071 2006-03-21  Mike Kestner  <mkestner@novell.com>
19072
19073         * ContextMenu.cs (Show): use the position parameter instead of just
19074         showing at the MousePosition.
19075
19076 2006-03-21  Jackson Harper  <jackson@ximian.com>
19077
19078         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
19079         control handle this.
19080         * TreeNodeCollection.cs: If we are clearing the root node we need
19081         to reset top_node so calcs can still happen.
19082         * ThemeWin32Classic.cs: This is a Flags so we need to check
19083         properly.
19084         
19085 2006-03-21  Jackson Harper  <jackson@ximian.com>
19086
19087         * DataGrid.cs: Create columns when the binding context has been
19088         changed.
19089         * X11Structs.cs: Keysyms are uints.
19090         - Add size to fix build.
19091
19092 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
19093
19094         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19095           XplatUIOSX.cs: 
19096           - Added ResetMouseHover method to allow controls to retrigger
19097             hovering if they need it more than once
19098           - Implemented MouseHoverTime and MouseHoverSize properties
19099         * Timer.cs: Start() must reset the interval
19100         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
19101           properties
19102
19103 2006-03-21  Jackson Harper  <jackson@ximian.com>
19104
19105         * X11Keyboard.cs: improved layout detection. Move the nonchar
19106         tables into this file.
19107         * KeyboardLayouts.cs: Move the tables into resource files.
19108
19109 2006-03-21  Mike Kestner  <mkestner@novell.com>
19110
19111         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
19112
19113 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
19114
19115         * Mime.cs: Various speed optimizations. Looking up mime types
19116           is now 2 times faster than before
19117
19118 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
19119
19120         * CreateParams.cs: Added internal menu field
19121         * Control.cs: 
19122           - Switched call order for UpdateBounds; now we always call
19123             the one that also takes ClientSize, and we're calculating the 
19124             client size via driver method in the others. The previous
19125             method of tracking client size by difference wasn't working
19126             for forms where even the starting client size wouldn't match
19127             the overall form size (due to borders) (Part of fix for #77729)
19128           - CreateParams(): Do not use parent.Handle unless the handle is
19129             already created. Causes havoc with Nexxia and throws off our
19130             creation of controls
19131         * XplatUIX11.cs:
19132           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
19133           - Switched handling of ConfigureNotify over to new PerformNCCalc 
19134             method (consolidates code)
19135           - Changed RequestNCRecalc to use new PerformNCCalc method
19136           - Added calls to RequestNCRecalc when menus and borders are changed
19137             to allow app to set NC size. (Part of fix for #77729) This matches
19138             when MS send a WM_NCRECALC on Win32 windows.
19139           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
19140             (Part of fix for #77729). This matches what MS does, they also
19141             send that message when the form is made visible.
19142           - XException.GetMessage: Improved usability of X errors by including
19143             a translation of the window into Hwnd and Control class
19144           - Improved debug info for window creation, reparenting and destruction
19145           - Created helper method WindowIsMapped() [Currently not used]
19146         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
19147         * Form.cs:
19148           - CreateParams: Now setting our menu on the new internal menu field
19149           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
19150             avoid calculating the same property twice
19151         * Hwnd.cs:
19152           - Improved usability of ToString() for debugging purposes
19153           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
19154             determine the height of the menu, instead of just the font. This
19155             required to also create a graphics context and to keep a bmp 
19156             around (for performance reasons)
19157
19158 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
19159
19160         * MenuAPI.cs: Added OnMouseUp method
19161         * Form.cs:
19162           - Now remembering the requested client size, avoids size errors
19163           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
19164             instead of base if the menu is active. This is required due to
19165             control now capturing and releasing on down/up and it would
19166             prematurely release our menu capture
19167
19168 2006-03-17  Jackson Harper  <jackson@ximian.com>
19169
19170         * KeyboardLayouts.cs: Add the czech layouts.
19171
19172 2006-03-16  Jackson Harper  <jackson@ximian.com>
19173
19174         * Control.cs: Use the viewport space when sizing not the controls
19175         client size, so things like ScrollableControl that effect the
19176         viewport size (when scrollbars are added) are computed correctly.
19177         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
19178         of ManagerEntrys.
19179         - Handle creating BindingManagers for null data sources.
19180         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
19181         source, otherwise when rows are added they are added to the 'fake'
19182         datasource and we will crash when trying to set the position in
19183         those rows.
19184         - Use Implicit scrollbars on the datagrid so they arent
19185         selectable.
19186         
19187 2006-03-16  Jackson Harper  <jackson@ximian.com>
19188
19189         * Binding.cs:
19190         * InternalWindowManager.cs:
19191         * MdiWindowManager.cs:
19192         * X11Keyboard.cs: I really want Mike to love me again (fix
19193         compiler warnings).
19194
19195 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
19196
19197         * DataGrid.cs:
19198           - OnMouseDown: Switch to editing mode when clicking on the cell
19199                          even if we're clicking on the cell that's currently 
19200                          selected
19201           - ProcessGridKey: Left/Right now wrap like MS.Net does
19202           - ProcessGridKey: Tab now knows to add a new row when tab is
19203                             pressed in the cell of the last column of the 
19204                             last row
19205           - ProcessGridKey: Enter now adds another row  if pressed in the last
19206                             row and selectes the new row, same column cell
19207           - ProcessGridKey: Home/End navigate columns, not rows, like 
19208                             originally implemented
19209           - Broke ProcessKeyPreview code out into an extra Internal method
19210             so it can be called from the edit code
19211         * DataGridTextBox.cs (ProcessKeyMessage):
19212           - Switched to accept Tab keypresses
19213           - Added F2 handling to allow jumping to the end of the edited cell
19214           - Added logic to allow moving caret left/right inside edited cell
19215             and making the edited cell jump when the caret hits cell borders
19216           - Tab and Enter are now passed to the datagrid after being handled
19217         * TextBoxBase.cs:
19218           - Removed capture code now that Control handles it
19219           - set_SelectionStart now ensures caret is visible
19220
19221 2006-03-16  Jackson Harper  <jackson@ximian.com>
19222
19223         * TrackBar.cs: Debackwards the increment/decrement for handling
19224         mouse clicks on the bar with vertical trackbars.
19225         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
19226         bottom to match MS.
19227
19228 2006-03-16  Mike Kestner  <mkestner@novell.com>
19229
19230         * ListView.cs: make shift/ctrl keyboard and mouse selection 
19231         consistent with the MS control. Fix a bug in
19232         SelectedListViewItemCollection.Clear that was pissing me off for the
19233         better part of a day because the collection was being altered
19234         underneath us as we walked the list.
19235
19236 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
19237
19238         * Control.cs: Not sure how we could miss this so long, but it seems
19239           that MS.Net has Capture set all the way from before calling 
19240           OnMouseDown through sending the mouse events until after
19241           OnMouseUp. This will fix DataGrid's selection being set to end
19242           at the location of the MouseUp.
19243
19244 2006-03-15  Jackson Harper  <jackson@ximian.com>
19245
19246         * BindingContext.cs: Check the binding after its added so that it
19247           can initialize the binding managers and hookup to events.
19248         * Binding.cs: Data members seem to sometimes include rows/cols in
19249           the format Row.Column we now take this into account.
19250           - Hookup to the position changed event so we can update the
19251           control when the position has changed in the data set.
19252         * CurrencyManager.cs: Take into account the row/col naming
19253           convention when creating dataset tables.
19254         * BindingContext.cs: Using a newer better way of storing
19255           datasource/datamember pairs.  Hopefully this better matches MS for
19256           looking up binding managers.
19257
19258
19259 2006-03-15  Jackson Harper  <jackson@ximian.com>
19260
19261         * BindingContext.cs: The currency manager needs the data member
19262         name, if the member is a data set we use the name to find the
19263         correct table.
19264         * CurrencyManager.cs: When creating the list prefer an IList over
19265         an IListSource.
19266         - Attempt to create a DataTable from a DataSet (TODO: might need
19267         some better error checking here, although MS doesn't seem to have much)
19268         - If we have a DataTable create a view and use it as our list.
19269
19270 2006-03-15  Mike Kestner  <mkestner@novell.com>
19271
19272         * ListView.cs: keep a matrix of the icon mode layout to facilitate
19273         keyboard navigation. Support Up/Down/Left/Right selection correctly
19274         for all 4 View modes.
19275         * ListViewItem.cs: add internal row/col fields for icon layouts.
19276
19277 2006-03-15  Jackson Harper  <jackson@ximian.com>
19278
19279         * TabControl.cs: Redraw the tabs when we resize so their newly
19280         calculated sizes are drawn on screen.
19281         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
19282         composite characters.
19283         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
19284         - filter events so that composite characters can be created
19285         patches by peter
19286         * X11Structs.cs: Add XIMProperties enum.
19287
19288 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
19289
19290         * Control.cs (BringToFront, SendToBack): Don't use window or handle
19291           unless it's created
19292
19293 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
19294
19295         * Control.cs (PerformLayout): We don't need to consider visiblity
19296           for anchoring, only for docking. This fixes 'whacky' alignment
19297           in listbox and other controls that use implicit scrollbars after
19298           the previous PerformLayout patch
19299         * ListBox.cs: Switched to use implicit scrollbars
19300           
19301 2006-03-14  Mike Kestner  <mkestner@novell.com>
19302
19303         * ToolBar.cs: 
19304         * VScrollBar.cs:
19305         - chain up the "new event" overrides to base and use
19306         OnEvent to raise them.  Part of fix for bug #76509.
19307
19308 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
19309
19310         * FileDialog.cs: Do not select an item in the parent directory
19311           on backspace
19312
19313 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
19314
19315         * Control.cs (PerformLayout): It would seem that we considered
19316           invisible windows for our layout. Not quite the right thing
19317           to do. Now we don't any longer, thereby fixing bug #76889.
19318
19319 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
19320
19321         * Control.cs (CanFocus): I goofed. A control can have focus 
19322           even though it's not selectable. Made it match MS docs.
19323
19324 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19325
19326         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
19327           center by default (fixes #76895)
19328         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
19329           all uses of Border3DSides.All with the explicit ORd together
19330           Left|Right|Top|Bottom because I assume that nobody was aware 
19331           that All also implies a center fill. Most places I checked had
19332           a fill right above.
19333         * ProgressBarStyle.cs: Added
19334
19335 2006-03-13  Mike Kestner  <mkestner@novell.com>
19336
19337         * ListView.cs: fix breakage in drag shadow header positioning 
19338         from Peter's csc compilation fix.
19339
19340 2006-03-13  Mike Kestner  <mkestner@novell.com>
19341
19342         * ListView.cs: fix NRE produced by backspacing twice in a focused
19343         FileDialog.
19344
19345 2006-03-13  Mike Kestner  <mkestner@novell.com>
19346
19347         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
19348
19349 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19350
19351         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
19352           be changed
19353         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
19354           the allowed size before making programmatic size changes
19355
19356 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
19357
19358         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
19359           set, metacity is broken and will still use the emty sizes in 
19360           the struct. (Fix for #77089)
19361
19362 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19363
19364         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
19365           WindowExStyles and marked both enums as Flags
19366         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
19367           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
19368           to match WindowStyles split
19369         * XplatUIX11.cs:
19370           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
19371           - Updated to match WindowStyles split
19372         * XplatUIWin32.cs:
19373           - Fixed FosterParent creation, was using ExStyle on the Style field
19374             (This should help with Popup focus issues)
19375           - Updated to match WindowStyles split
19376
19377 2006-03-13  Jackson Harper  <jackson@ximian.com>
19378
19379         * MdiWindowManager.cs: Use the system menu height. Fixes some
19380         strange sizing issues.
19381
19382 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
19383
19384         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
19385         * TextBoxBase.cs:
19386           - Scroll to caret after inserting text (#77672)
19387           - Make scroll range one pixel higher, fixes off-by-one error (and
19388             makes underlines visible on the last line)
19389
19390 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
19391
19392         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
19393           the keyboard state from being stuck with keys in 'pressed' state when
19394           focus is switched away via keyboard
19395         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
19396           reset the keyboard if no X11 KeyUp events are expected to come
19397         * X11Structs.cs: Switched type of Visible to bool to match driver
19398
19399 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
19400
19401         * TextControl.cs:
19402           - Switched caret to be just 1 pixel wide, matches MS and looks less
19403             clunky
19404           - Moved caret display 1 pixel down from the top of the control
19405             to improve view
19406           - InsertCharAtCharet: Update the selection start if moving the caret
19407             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
19408           - No longer always creating the caret when the caret methods are
19409             called. Only the actual ShowCaret/HideCaret will do that now
19410           - Only setting caret visible if the owner control has focus
19411           - UpdateView: Added invalidation-shortcut logic for center and right 
19412             aligned text. Previously we'd update all according to the left
19413             logic which caused drawing errors. Also fixed height of invalidated
19414             areas, now properly invalidating the whole area (was off-by-one)
19415           - owner_HandleCreated: Always generate the document when the
19416             handle is created; this ensures that 
19417         * TextBoxBase.cs:
19418           - Fixed situation where caret would disappear under the right
19419             window border, also improved scrolling behaviour on left-
19420             aligned textboxes
19421           - Fixed right-aligned textboxes to have a border to the
19422             right instead of the caret being under the right border
19423         * XplatUIX11.cs:
19424           - Switched from 'nested' to simple visible/not visible tracking 
19425             for caret (part of fix for #77671)
19426           - No longer passing through translated FocusIn/FocusOut messages
19427             since we were notifying too often and the wrong windows. Instead
19428             we just notify our focussed window of receiving or loosing focus
19429         * XplatUIWin32.cs: Switched from 'nested' show/hide 
19430           counting for caret to simple visible yes/no behaviour (part of 
19431           fix for #77671)
19432
19433 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19434
19435         * Mime.cs: Remove debug code...
19436
19437 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19438
19439         * MimeGenerated.cs: Removed
19440         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
19441           and subclasses) from /usr/(local/)share/mime and
19442           $HOME/.local/share/mime.
19443
19444 2006-03-10  Jackson Harper  <jackson@ximian.com>
19445
19446         * MdiWindowManager.cs: Recalc the NC area when a window is
19447         maximized/restored so that the menu area is drawn on forms that
19448         don't have a menu.
19449
19450 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19451
19452         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19453           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
19454           us to force a WM_NCCALCRESIZE message being sent. This is needed
19455           for MDI maximizing.
19456
19457 2006-03-10  Jackson Harper  <jackson@ximian.com>
19458
19459         * Form.cs: We need to use the ActiveMenu when calculating menu
19460         height.
19461         - Fix nullref when the window manager hasn't been created yet.
19462         * Control.cs: Fix nullref when we try to bring a control to the
19463         front that has no parent.
19464         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
19465         height.
19466         - Add a dummy item to the maximized menu so it always has the
19467         correct height. Otherwise when there are no menus we don't get our
19468         icon and buttons.
19469         
19470
19471 2006-03-10  Jackson Harper  <jackson@ximian.com>
19472
19473         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
19474         stuff.
19475         * Form.cs: Make the window_state internal so the window managers
19476         can track it.
19477         - When an MDI child is maximized let its window manager create the
19478         main menu (so it can add its icon).
19479         - Notify the window managers of state changes
19480         - Let the window manager paint its buttons and handle button
19481         clicks on the menu when it is maximized.
19482         * InternalWindowManager.cs: Move the prev_bounds into the mdi
19483         window manager, since tool windows don't use it, only mdi windows.
19484         - Tell the main form that we don't want it to handle NCPAINT
19485         itself to avoid extra painting.
19486         - Handle clicks on a maximized windows menu.
19487         - Handle window state changes
19488         - Handle minimize/maximize clicks correctly by setting the window state.
19489         * MdiWindowManager.cs: Add an icon menu that (the menu you get
19490         when clicking on the forms icon).
19491         - New method to create a forms maximized menu. This is its normal
19492         menu + an icon.
19493         - Handle window state changes.
19494         - Handle sizing of maximized windows.  Maximized windows are just
19495         drawn bigger then the parent visible area. All controls are still
19496         there, they are just outside the visible area (this matches windows).
19497         * MdiClient.cs: No scrollbars when a child window is maximized.
19498         - Let the children windows figure out how big they should be when
19499         sizing maximized windows.
19500         - Implement a version of ArrangeIconicWindows somewhat similar to
19501         Windows version.  There are some little differences, but I don't
19502         think any app will rely on the layout of minimized mdi windows.
19503
19504 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19505
19506         * Padding.cs: Several fixes to allow compiling with csc 2.0
19507
19508 2006-03-09  Jackson Harper  <jackson@ximian.com>
19509
19510         * Menu.cs:
19511         * MenuItem.cs: Cheap hack so we can add items to the list without
19512         the events being raised.  This allows adding mdi items during
19513         drawing. TODO: Should probably find a better time to add the items.
19514
19515 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19516
19517         * ThemeWin32Classic.cs:
19518           - CheckBox_DrawText: Added logic to not wrap if not enough space
19519             is available (Fix for bug #77727)
19520           - RadioButton_DrawText: Added logic not to wrap if not enough
19521             space is available (Fix for bug #77727). Also removed some
19522             duplicate code, DrawString always drawing the regular text
19523             before hitting the if statement.
19524
19525 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
19526
19527         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
19528
19529 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19530
19531         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
19532         * ContainerControl.cs: Partial implementation of some 2.0 scaling
19533           methods. Moved the new 2.0 properties into alphabetical order with
19534           other properties and added MonoTODO tags
19535
19536 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19537
19538         * AutoScaleMode.cs: Added. Fix build.
19539
19540 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19541
19542         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19543           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
19544           and was requiring premature handle creation for calls from above
19545         * Form.cs, Control.cs: Removed handle arguments from calls to
19546           CalculateClientRect()
19547
19548 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19549
19550         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
19551           drag_column.column_rect is MarshalByRef and can't be used that way
19552
19553 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19554
19555         * AxHost.cs: Added deserialization constructor for 
19556           AxHost+State (fixes 77743)
19557
19558 2006-03-09  Mike Kestner  <mkestner@novell.com>
19559
19560         * ListView.cs: 
19561         - Added column drag reordering for details view.
19562         - fixed behavior when mouse is dragged off column and
19563         AllowColumnReorder is false.
19564         * ColumnHeader.cs: clone the format too in Clone.
19565         * Theme.cs: add DrawListViewHeaderDragDetails method.
19566         * ThemeWin32Classic.cs:
19567         - impl new method for drawing drag column shadows and targets.
19568         - support column offset for details mode in DrawListViewItem.
19569
19570 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19571
19572         * TextControl.cs: Reset the char_count when the document is cleared
19573           (Fixes bug reported on mono-winforms mailing list)
19574
19575 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19576
19577         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
19578           of calling base we simply process the key ourselves, since both
19579           DefWindowProc and the handled method would set m.Result. 
19580           (Fixes #77732)
19581
19582 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19583
19584         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
19585           method also moves the window; instead implemented a copy of
19586           Control.ScaleCore (Part of fix for #77456)
19587         * TextBoxBase.cs: 
19588           - Created new CreateGraphicsInternal method to allow providing
19589             a graphics context when no handle is created without triggering
19590             handle creation. (Part of fix for #77456)
19591           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19592         * TextControl.cs: 
19593           - Switched Constructor to require TextBoxBase instead of Control (to
19594             allow uncast access to CreateGraphicsInternal)
19595           - Safeguarded use of owner.Handle property. No longer accessing it
19596             unless the handle is already created.
19597           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19598           - Now triggering a recalc when owning control becomes visible
19599         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
19600           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
19601           premature handle creation (Part of fix for #77456)
19602         * Control.cs:
19603           - We now only destroy our double-buffering buffers when the
19604             control is resized or disposed, but not when visibility
19605             changes. (The code even re-created them twice every time)
19606           - Now requiring a redraw of the buffer on visibility changes
19607             (fixes bug 77654 part 2)
19608           - Not passing OnParentVisibleChanged up unless the control
19609             is visible
19610           - CanFocus: Fixed to match MS documentation
19611           - Focus: Fixed to return actual focus state and to check if
19612             setting focus is legal before setting it
19613
19614 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
19615
19616         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
19617           when to draw focus rectangle by looking at parent focus and
19618           selected state instead. This fixes TabPages on Linux sometimes
19619           having none or multiple focus rectangles.
19620         * XplatUIX11.cs (SetFocus): 
19621           - Don't set the focus if the same window already has focus
19622           - Use SendMessage instead of PostMessage (like it's Win32
19623             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
19624             to match MS behaviour
19625         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
19626           are not selectable.
19627
19628 2006-03-07  Jackson Harper  <jackson@ximian.com>
19629
19630         * PictureBox.cs: Revert line I accidently committed last week.
19631
19632 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19633
19634         * Control.cs: 
19635           - Added new IsRecreating and ParentIsRecreating properties to
19636             allow testing if RecreateHandle has been called on ourselves
19637             or one of our parents
19638           - WndProc(WM_DESTROY): If our control handle is being recreated
19639             we immediately need to create the handle when receiving the
19640             destroy, that way our child windows find a valid parent handle
19641             when they themselves are being recreated upon WM_DESTROY receipt
19642             (fix for bug #77654 part 1)
19643         * XplatUIX11.cs:
19644           - DestroyWindow: WM_DESTROY must be sent to our own window before
19645             notifying any child windows. MS documents that child windows
19646             are still valid when WM_DESTROY is received. (Control now relies on
19647             this behaviour)
19648           - Added some fine-grain debug options
19649
19650 2006-03-06  Jackson Harper  <jackson@ximian.com>
19651
19652         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
19653         box and base calculations off this.
19654         * MdiChildContext.cs:
19655         * MdiWindowManager.cs: Don't need to ensure scrollbars here
19656         anymore.
19657         
19658 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
19659
19660         * Splitter.cs: In situations where the affected control is added
19661           to the parent's control list after the splitter, we would not
19662           populate affected. Now we try populating it on mousedown, if
19663           it's not already set, and force it to be re-set whenever our
19664           parent changes.
19665
19666 2006-03-03  Matt Hargett  <matt@use.net>
19667
19668         * Control.cs: implement Control.Padding
19669         * Padding.cs: -Padding.All returns -1 when constructing with the
19670         implicit default ctor
19671         -Padding.ToString() matches MS.NET
19672         * ContainerControl.cs: implement
19673         ContainerControl.AutoScaleDimensions
19674         * ListControl.cs: implement ListControl.FormattingEnabled
19675         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
19676         * ButtonBase.cs:
19677         * TabPage.cs: Implement UseVisualStyleBackColor.
19678         * PictureBox.cs: Implement PictureBox.InitialImage.
19679
19680 2006-03-03  Mike Kestner  <mkestner@novell.com>
19681
19682         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
19683         event declarations to proxy to base event.
19684         * ListViewItem.cs: update to use ItemControl.
19685         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
19686         * ThemeWin32Classic.cs: update to new ListView theme API and fix
19687         column header label rendering for 0 width columns.
19688
19689 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
19690
19691         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
19692           that causes the control to be created. Fixes #77476.
19693
19694 2006-03-02  Jackson Harper  <jackson@ximian.com>
19695
19696         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
19697         expose_pending.
19698
19699 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
19700
19701         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
19702           passed in for the EventArgs (fixes #77690)
19703
19704 2006-03-01  Jackson Harper  <jackson@ximian.com>
19705
19706         * ScrollBar.cs: Refresh afterbeing resized.
19707
19708 2006-02-28  Mike Kestner  <mkestner@novell.com>
19709
19710         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
19711         Clean up a tracker compile warning.
19712         * MenuItem.cs: add internal PerformPopup method.
19713         [Fixes #77457]
19714
19715 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19716
19717         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
19718           implicit expose) when the text is set to null
19719
19720 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
19721
19722         * RichTextBox.cs (FlushText): When newline is true, we always
19723           need to split the line, even if no text is on it and we may
19724           never eat newlines. (Fixes #77669)
19725
19726 2006-02-28  Mike Kestner  <mkestner@novell.com>
19727
19728         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
19729         and set Selected instead.
19730         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
19731         collections.
19732
19733 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19734
19735         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
19736
19737 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
19738
19739         * FontDialog.cs:
19740           - Got rid of the panel. All controls are now directly added to
19741             the dialog form
19742           - It is now possible to set a font with the Font property
19743           - MinSize and MaxSize property do now what they should
19744           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
19745           - Searching and selecting a font with the font textbox works now,
19746             the same applies to the style and size textbox
19747           - Draw the correct 3D border in the example panel
19748           - Fixed a little mem leak (unused fonts didn't get disposed)
19749           - Many other internal updates/rewrites...
19750           - Fix typo
19751
19752 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19753
19754         * TextControl.cs: 
19755           - InsertRTFFromStream: Added 'number of characters inserted' argument
19756           - set_SelectedRTF: Now using the number of characters to calculate
19757             the new location for the selection and cursor (x/y cannot be used
19758             due to potentially already wrapped text)
19759
19760 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
19761
19762         * TextControl.cs: Added property and implemented means to allow 
19763           disabling recalculation of a document (can be used to speed up
19764           multiple inserts and is needed to make RTF inserts predictable, see
19765           bug #77659)
19766         * RichTextBox.cs: Using the new NoRecalc property of Document to
19767           keep x/y insert locations predictable. Also makes it faster inserting
19768           large chunks of RTF
19769
19770 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19771
19772         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
19773           it's easier for a child control to handle the other messages without
19774           having to duplicate the special functionality
19775         * TextBoxBase.cs
19776           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
19777             code to handle processing the key ourselves, in order to get 
19778             access to the result of KeyEventArgs.Handled. We now only call 
19779             ProcessKey if they key hasn't been handled already. Fixes #77526.
19780           - set_Text: If null or empty string is given, just clear the 
19781             document. Fixes part of #77526
19782
19783 2006-02-27  Jackson Harper  <jackson@ximian.com>
19784
19785         * SizeGrip.cs: Paint the background color before painting the grip
19786         so things look right.
19787         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
19788
19789 2006-02-27  Mike Kestner  <mkestner@novell.com>
19790
19791         * ListView.cs:
19792           - Restructure layout and invalidation model to remove a ton of
19793           flicker from the control and speed up performance in general.
19794           - Add manual column resize, flickers like crazy, but I already have
19795           some ideas on how I'll fix that. (#76822)
19796           - Merge the three Icon-based views into a single layout method.
19797           - Move item selection interaction logic from the item since 
19798           interaction with the collections is more appropriate to the view.
19799           - Deselection on non-item clicks.
19800         * ListViewItem.cs:
19801           - Encapsulate most of the layout. Add some internal props to trigger
19802           layout.  Move to a model where Items invalidate themselves instead
19803           of just invalidating the whole control every time something changes.
19804           - Invalidate on Text/Caption changes.
19805           - switch to an offset based layout model to avoid having to absolute
19806           position every element on item moves.
19807           - correct checkbox layout to conform to MS layout.
19808         * ThemeWin32Classic.cs:
19809           - refactor some column header drawing code.
19810           - fix string justification for column headers (#76821)
19811           - make SmallIcon labels top justified for compat with MS impl.
19812         * ThemeClearlooks.cs:
19813           - adjust to new ListViewItem internal checkbox bounds api.
19814
19815 2006-02-27  Jackson Harper  <jackson@ximian.com>
19816
19817         * Control.cs:  Change where implicit controls fall in the zorder.
19818         They are now on top of all children.
19819         - Synced AddImplicit code with Add
19820         - Removed unused enumerator.
19821         * SizeGrip.cs: Remove the TODO as its been TODONE.
19822
19823 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
19824
19825         * TextControl.cs(Insert): Combine the last lines unless the insertion
19826           string ends with \n\n, otherwise we leave one line too many (Fixes
19827           something I noticed with the testapp for #77526; the bug itself was
19828           already fixed in the previous checkin)
19829
19830 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
19831
19832         * RichTextBox.cs:
19833           - SelectionColor and SelectionFont methods no longer set absolute
19834             styles. Instead, the keep font or color respectively (This 
19835             resolves a long-standing FIXME in the code)
19836           - When flushing RTF text, the insert code now considers text trailing
19837             behind the insertion point (Fixes the bug where when replacing
19838             the selected text via SelectedRTF the remainder of the line behind 
19839             the selection would stay on the first insertion line)
19840         * TextBoxBase.cs:
19841           - AppendText now updates the selection points after inserting text
19842           - AppendText now ensures that the last tag (sometimes 0-length) of
19843             the document is used for the style information (Fixes part of 
19844             bug #77220)
19845         * TextControl.cs:
19846           - Created new FontDefiniton class to allow describing partial style
19847             changes
19848           - StreamLine() now takes a lines argument, to allow it to decide
19849             whether an encountered zero-length tag is the last in the document
19850             (which must be kept to not loose the font/color contained in it,
19851             for later appends)
19852           - Created Combine() and Split() methods for Marker structs, to 
19853             support marker updates due to reformatted documents (soft line
19854             wraps)
19855           - Implemented Document.CaretTag setter
19856           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
19857             of the last line (Not the cause, but also exposed by bug #77220)
19858           - Added LineTag argument to InsertString method, to allow callers
19859             to force a certain tag to be used (required to force use of the
19860             trailing zero-length tag of a document)
19861           - Now updating markers in Combine(), to avoid stale tag markers
19862           - Added some method descriptions to aid maintenance
19863           - Implemented new FormatText concept, allowing additive/subtractive
19864             formatting by only specifying the components that are to be 
19865             changed. This was needed for resolving the RTB.SelectedColor/
19866             RTB.SelectedFont fixmes
19867           - Added Break() support method to allow breaking up linetags (used
19868             for partial formatting)
19869           - Added GenerateTextFormat() method. It is used for partial 
19870             formatting and allows to generate a full font/color from given
19871             attributes and an existing tag.
19872
19873 2006-02-26  Jackson Harper  <jackson@ximian.com>
19874
19875         * XplatUIX11.cs:  Use the correct caption height.
19876         - Translate hittest coordinates to screen coords to match MS.
19877         * XplatUIWin32.cs: When we create MDI windows we need to reset
19878         some of the style flags, so we get a nice blank window, and can
19879         draw all the decorations ourselves.
19880         - Set a clipping rectangle on the non client paint event, the
19881         window manager drawing code needs one.
19882         * Form.cs: The window manager needs to know when the window state
19883         has been updated.
19884         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
19885         don't need to factor in border and title sizes in these
19886         methods. TODO: Remove the args and fix the call points.
19887         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
19888         properly.
19889         - Let the driver set the cursors.
19890         - Improve active window handling
19891         - Correct sizes for title bars and buttons.
19892         - Match MS drawing better
19893         * MdiWindowManager.cs: We don't need to handle border style
19894         updates specially anymore.
19895         - Check for scrollbars when windows are done moving
19896         - Handle Active properly.
19897         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
19898         correctly. I am spewing the exception though, so we don't hide the
19899         bugs.
19900         
19901 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
19902
19903         * DataGridViewRowPostPaintEventArgs.cs,
19904           DataGridViewCellPaintingEventArgs.cs,
19905           DataGridViewRowCollection.cs,
19906           DataGridViewRowPrePaintEventArgs.cs,
19907           DataGridViewCell.cs: Clear a few warnings and implement a few
19908           exceptions that should be thrown.
19909
19910 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19911
19912         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
19913           'inheriting' our parent's (non-default) cursor. (Part of
19914            the fix for #77479)
19915
19916 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
19917
19918         * XplatUIX11.cs: Fixed cast to make csc happy
19919
19920 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19921
19922         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
19923           it's for the client area (part of fix for #77479 and needed
19924           for MDI window cursor handling)
19925         * XplatUIX11.cs
19926           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
19927             the appropriate default cursors and also passing the message
19928             up the parent chain 
19929           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
19930             for non-client areas
19931
19932 2006-02-15  Jackson Harper  <jackson@ximian.com>
19933
19934         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
19935         is a real MDI window
19936
19937 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
19938
19939         * X11DesktopColors.cs: Instead of checking the desktop session
19940           string for "KDE" check if it starts with "KDE"
19941
19942 2006-02-10  Jackson Harper  <jackson@ximian.com>
19943
19944         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
19945         systems).
19946
19947 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19948
19949         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
19950           errors
19951         * ColorDialog.cs:
19952           - Got rid of the panel. All controls are now directly added to
19953             the dialog form
19954           - Changed to mono coding style
19955
19956 2006-02-10  Jackson Harper  <jackson@ximian.com>
19957
19958         * InternalWindowManager.cs: We don't need the set visibility to
19959         false hack anymore now that peter has written beautiful shutdown
19960         code.
19961
19962 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
19963
19964         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
19965           where already explicitly destroyed
19966
19967 2006-02-10  Jackson Harper  <jackson@ximian.com>
19968
19969         * MdiClient.cs: Handle the case where windows are too high or to
19970         the left and we need scrollbars.
19971
19972 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19973
19974         * MimeIcon.cs: Added some icons
19975         * FileDialog.cs:
19976           - Fixed bug #77477
19977           - Got rid of the panel. All controls are now directly added to
19978             the dialog form
19979           - Changed to mono coding style
19980           - On Linux "My Computer" and "My Network" will now show some
19981             more usefull information. A new class, MasterMount, gathers
19982             this information from /proc/mount. Updated MWFFileView to make
19983             use of this information
19984           - Fixed a bug that caused FileDialog to crash when
19985             ".recently_used" file had a zero size
19986           - FilterIndex does now what it should
19987           - Some Refactoring
19988         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
19989             FileDialog changes
19990
19991 2006-02-09  Jackson Harper  <jackson@ximian.com>
19992
19993         * ComboBox.cs: Don't touch if null.
19994
19995 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
19996
19997         * Cursor.cs: 64bit safeness fix
19998         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
19999
20000 2006-02-09  Jackson Harper  <jackson@ximian.com>
20001
20002         * Form.cs: If a form is made into an MDI form update the styles so
20003         all the props can get set correctly.
20004         - Kill the mdi_container when we dont need it anymore.
20005         * InternalWindowManager.cs: Add missing NOT
20006
20007 2006-02-08  Jackson Harper  <jackson@ximian.com>
20008
20009         * InternalWindowManager.cs: Respek clipping when drawing MDi
20010         decorations.
20011
20012 2006-02-08  Jackson Harper  <jackson@ximian.com>
20013
20014         * Hwnd.cs: Add bits to track non client expose events.
20015         * XplatUIX11.cs: Track non client expose events on the hwnd. This
20016         gives us a proper invalid rect and will allow for some nice
20017         optimizations with NC client drawing
20018         - MDI windows are children windows, so move their style handling
20019         into the child window block.
20020         * InternalWindowManager.cs: Remove a state reset that was
20021         getting invoked at the wrong time. Fixes managed windows getting
20022         into a 'stuck' captured state.
20023
20024 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
20025
20026         * TextControl.cs (Document.ctor): Now initializing 
20027           selection_anchor. Fixes #77493
20028
20029 2006-02-07  Jackson Harper  <jackson@ximian.com>
20030
20031         * TrackBar.cs: The increment/decrements were backwards.
20032
20033 2006-02-07  Mike Kestner  <mkestner@novell.com>
20034
20035         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
20036         to the instance itself.
20037
20038 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
20039
20040         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
20041           on ulongs and pointers, the size differs between 32bit and 64bit
20042           systems. 
20043
20044 2006-02-07  Mike Kestner  <mkestner@novell.com>
20045
20046         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
20047         for 64 bit platforms to work around a metacity bug. 
20048
20049 2006-02-07  Jackson Harper  <jackson@ximian.com>
20050
20051         * TrackBar.cs: Process the input keys we need, and hookup to
20052         KeyDown instead of using WndProc, so we get key messages.
20053
20054 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
20055
20056         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
20057           machine we're on. 
20058         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
20059           we need to translate the XdndVersion atoms array before sending it
20060
20061 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
20062
20063         * XplatUIX11.cs: 
20064           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
20065             number of bits for the property, not the number of bytes. The
20066             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
20067             but would not crash since it specified 8 bits instead of 4 bits)
20068           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
20069             defined as XID -> long in the C headers)
20070           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
20071             references since those are now IntPtr to begin with
20072           - Switched all Atom.XXX 'int' casts to IntPtr casts
20073           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
20074           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
20075           - Added XChangeActivePointerGrab DllImport (for X11DnD)
20076         * X11Structs.cs:
20077           - Changed 'int' type for Atoms in XEvent structures to IntPtr
20078           - Changed atom in HoverStruct to be IntPtr
20079         * X11DnD.cs:
20080           - Removed local DllImports, switched code to use those from XplatUIX11
20081           - Removed/fixed casts related to the switch of Atom to be a IntPtr
20082
20083 2006-02-06  Mike Kestner  <mkestner@novell.com>
20084
20085         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
20086         method signatures in the import region.  There may still be some
20087         lingering struct marshaling issues, as I didn't drill down into those.
20088         Yet.
20089
20090 2006-02-06  Jackson Harper  <jackson@ximian.com>
20091
20092         * ComboBox.cs: Dont manually set the top_item, this is computed
20093         when the scrollbar position is set.
20094
20095 2006-02-06  Mike Kestner  <mkestner@novell.com>
20096
20097         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
20098         startup crashes on amd64.  There's other fixes needed.  All pinvoke
20099         usage of Atom needs to be mapped to IntPtr for example.  And there are
20100         likely other int/long issues to be addressed.
20101
20102 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
20103
20104         * FileDialog.cs: One more...
20105
20106 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20107
20108         * FileDialog.cs: Next try
20109
20110 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20111
20112         * FileDialog.cs: First part of fix for #77464
20113
20114 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20115
20116         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
20117           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
20118           AcceptButton border drawing.
20119
20120 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
20121
20122         * Form.cs: Moved positioning of form after auto scaling is applied,
20123           otherwise it would possibly use wrong form size.
20124
20125 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
20126
20127         * Control.cs (RecreateHandle): No need to re-create any child
20128           controls, the child windows will get destroyed automatically by
20129           the windowing system or driver, and re-created when the handle
20130           is being accessed the first time. Fixes #77456
20131         * Form.cs: No longer setting the form to closing if the handle is 
20132           being recreated. This seems like the right thing to do, don't
20133           have a bug or testcase for this, though.
20134
20135 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
20136
20137         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
20138           controls to avoid unwanted side effects
20139
20140 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
20141
20142         * Control.cs: 
20143           - ScaleCore needs to scale the bounds, not the ClientSize of the 
20144             control. Fixes #77416.
20145           - DefaultSize is 0,0 for control
20146         * TextBoxBase.cs: 
20147           - DefaultSize is 100, 20
20148           - SetBoundsCore: Now enforcing the height, no matter if the provided
20149             height is more or less than the preferred one, as long as AutoSize
20150             is on
20151         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
20152
20153 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
20154
20155         * Control.cs:
20156           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
20157             call unless both performLayout is true *and* we have a pending
20158             layout change
20159           - ResumeLayout: MS does not completely nest Suspend and Resume,
20160             they bottom out at 0, fixed our code to match that.
20161           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
20162             SetBoundsCore, we were updating even when we shouldn't. This fixes
20163             swf-anchors mis-anchoring when resizing the app fast and lots.
20164           - UpdateDistances: Now only setting the left and top distance if 
20165             we have a parent and are not suspended, this is based on
20166             a suggestion by Don Edvaldson in bug #77355.
20167           - OnVisibleChanged: Fixed logic when to create the control. We may
20168             not create the control if we have no parent or if it's not visible;
20169             switched to using Visible property instead of is_visible field 
20170             since the property also considers parent states. This fixes a bug
20171             when starting Paint.Net
20172
20173 2006-02-02  Jackson Harper  <jackson@ximian.com>
20174
20175         * Form.cs: If the forms handle hasn't been created yet don't call
20176         into xplatui to make it top most, just set the topmost flag on the
20177         form in CreateParams
20178         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
20179
20180 2006-02-01  Jackson Harper  <jackson@ximian.com>
20181
20182         * ScrollableControl.cs: Refactored the Recalculate method a
20183         little, this wasn't handling all the variants of bottom and right
20184         bars needed to be added and added/removed based on their
20185         counterparts being added/removed (which changes the drawable
20186         size). Also we special case client widths and heights of 0 and
20187         don't add the scrollbar for those.
20188
20189 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
20190
20191         * XplatUIX11.cs: 
20192           - Added method to get AbsoluteGeometry(); currently unused, but might
20193             be used in the future, if we try again to figure out toplevel
20194             coordinates with some more crappy window managers
20195           - Added FrameExtents() method to retrieve the WM set decoration size
20196           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
20197             to deal with at least KDE, FVWM and metacity (Fixes #77092)
20198         * Hwnd.cs: 
20199           - Added whacky_wm tracking var for metacity
20200           - Added logic to have default menu height if the actual menu height
20201             has not yet been calculated (part of fix for #77426)
20202         * Form.cs: Keep track whether client size has been set and re-set 
20203           it if a menu is added/removed afterwards (Fixes #77426)
20204
20205 2006-01-31  Jackson Harper  <jackson@ximian.com>
20206
20207         * Control.cs: When a new Site is set on the component attempt to
20208         pull the AmbientProperties from it.
20209
20210 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
20211
20212         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
20213           in the background of the owning form. Fixes #77332
20214
20215 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
20216
20217         * MimeIcon.cs: Fix for #77409
20218
20219 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
20220
20221         * XplatUIX11GTK.cs: Initial import
20222
20223 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
20224
20225         * FixedSizeTextBox: fixes class signature
20226
20227 2006-01-30  Jackson Harper  <jackson@ximian.com>
20228
20229         * FixedSizeTextBox.cs: New internal class that represents a
20230         textBox that will not be scaled.
20231         * TreeView.cs:
20232         * ComboBox.cs:
20233         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
20234         standard TextBox.
20235                 
20236 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
20237
20238         * XplatUIX11.cs: Retrieve default screen number instead of
20239           assuming 0. Attempted fix for #77318
20240
20241 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
20242
20243         * XplatUIWin32.cs: 
20244           - GetWindowPos: When a window is parented by FosterParent, use 
20245             the desktop instead of FosterParent as the base to get coordinates
20246           - CreateWindow: Don't make FosterParent the parent window for Popups
20247             if we don't want a taskbar entry, Popups automatically don't get one
20248         * Hwnd.cs: Need to call remove to actually remove the key from the
20249           hash table
20250
20251 2006-01-30  Mike Kestner  <mkestner@novell.com>
20252
20253         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
20254
20255 2006-01-30  Jackson Harper  <jackson@ximian.com>
20256
20257         * TreeView.cs:
20258         * TreeNode.cs: Raise events no matter how the treenode is
20259         checked. Patch by Don Edvalson.
20260
20261 2006-01-30  Jackson Harper  <jackson@ximian.com>
20262
20263         * TreeNode.cs: Signature fix.
20264
20265 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
20266
20267         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
20268
20269 2006-01-20  Mike Kestner  <mkestner@novell.com>
20270
20271         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
20272         event forwarding when menus are active.
20273         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
20274         Most of the patch is pdb's with a little rework.
20275
20276 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
20277
20278         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
20279           Removed GetMenuDC and ReleaseMenuDC methods; replaced
20280           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
20281         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
20282         * InternalWindowManager.cs: Added use of PaintEventStart/End to
20283           handling of WM_NCPAINT message, now passing the PaintEventArgs to
20284           the PaintWindowDecorations method
20285         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
20286         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
20287         * MenuAPI.cs: Made tracker window invisible
20288         * XplatUIWin32.cs:
20289           - Removed GetMenuDC and ReleaseMenuDC methods
20290           - Implemented the client=false path for PaintEventStart and
20291             PaintEventEnd
20292
20293 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
20294
20295         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
20296         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
20297           styles
20298         * Form.cs: 
20299           - MaximizeBox, MinimizeBox: Recreate the handle when setting
20300             the style
20301           - CreateParams: Reworked the styles to match MS look'n'feel,
20302             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
20303             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
20304
20305 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
20306
20307         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
20308           window is not mapped, since otherwise every form that's being 
20309           created is considered minimized, which is wrong.
20310         * Form.cs: Catching the exception and returning our internal value
20311           instead
20312
20313 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
20314
20315         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
20316           SetWindowMinMax() to have means to tell the driver about the minimum,
20317           maximum and maximized state window sizes. (Part of the fix for #76485)
20318         * Form.cs:
20319           - Implemented tracking of minimum and maximum window size, now calling
20320             new SetWindowMinMax() driver method to tell the driver (Part of the
20321             fix for #76485)
20322           - Finished handling of WM_GETMINMAXINFO method, now setting all values
20323             (Completes fix for #76485)
20324           - Calling new SetWindowMinMax driver method when the handle for a 
20325             form is created, to make sure the driver knows about it even if
20326             the values have been set before the window was created
20327           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
20328             to avoid messing up our anchoring calculations (partial fix
20329             for #77355)
20330         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
20331         * XplatUIX11.cs:
20332           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
20333           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
20334             (and presumably other freedesktop.org compliant WMs). Left the
20335             assumption unmapped=minimized, needed for SetVisible to work.
20336           - Now setting the window state when creating windows
20337           - Fixed SetVisible to consider/set the window state when mapping
20338             a Form. We cannot set the state before it's mapped, and we cannot
20339             use Form.WindowState once it's mapped (since it would ask the
20340             driver and get 'normal'. Therefore, we grab the state before
20341             mapping, map, and then set state.
20342           - Implmemented SetWindowMinMax method; Metacity does not seem to
20343             honor the ZoomHints, though.
20344         * XplatUIWin32.cs:
20345           - Removed MINMAXINFO (moved to XplatUIStructs)
20346           - Added SetWindowMinMax stub (on Win32 the only way to set that
20347             information is in response to the WM_GETMINMAXINFO message, which
20348             is handled in Form.cs)
20349           - Added logic to SetVisible to set the proper window state when a 
20350             form is made visible (fixes #75720)
20351
20352 2006-01-26  Jackson Harper  <jackson@ximian.com>
20353
20354         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
20355         same way we handle them with Invoke.
20356
20357 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
20358
20359         * Form.cs:
20360           - Added tracking of window state so CreateParams can return
20361             the appropriate style
20362           - Moved setting of WS_CAPTION style in CreateParams to allow
20363             styles without caption
20364         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
20365           control if the TextBox property is accessed. Fixes #77345
20366         * Control.cs:
20367           - get_Created: now uses is_disposed and is_created to determine
20368             return value (suggested by Jackson)
20369           - CreateHandle: No longer exits if the handle is being recreated
20370           - RecreateHandle: If the handle is not yet created call the 
20371             appropriate method to create either control or handle. If the
20372             control is already created CreateHandle will simply exit instead
20373             of just creating the handle
20374         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
20375           now SendMessage WM_DESTROY directly to the control when DestroyWindow
20376           is called.
20377         * XplatUIX11.cs: 
20378           - When DestroyWindow is called, instead of waiting for the 
20379             DestroyNotification from X11, we directly post it to the WndProc
20380             and immediately dispose the hwnd object.
20381             Same applies to DestroyChildWindows, and this obsoletes the
20382             expose_pending tracking. Contrary to Win32 behaviour we destroy our
20383             child windows before our own, to avoid X11 errors.
20384           - Removed the direct sending of WM_PAINT on UpdateWindow
20385         * XplatUIWin32.cs:
20386           - Reworked DoEvents and GetMessage to allow access to internal queue
20387             even when trying non-blocking access to the queue.  Fixes #77335. 
20388             Based on a patch suggestion by Don Edvalson. The new private
20389             GetMessage can now also be used as a backend for a PeekMessage
20390             frontend version.
20391         * XplatUI.cs: Improved debug output for CreateWindow
20392
20393 2006-01-25  Jackson Harper  <jackson@ximian.com>
20394
20395         * Help.cs: Allow param to be null. Patch by Don Edvalson.
20396
20397 2006-01-24  Jackson Harper  <jackson@ximian.com>
20398
20399         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
20400         when we have a MaxDropItems lower then the selected index.
20401
20402 2006-01-24  Jackson Harper  <jackson@ximian.com>
20403
20404         * Control.cs: Don't allow selection of non visible controls, allow
20405         selection of controls without parents.
20406
20407 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
20408
20409         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
20410         * DataGridDrawingLogic.cs: Add editing row only when is necessary
20411
20412 2006-01-23  Jackson Harper  <jackson@ximian.com>
20413
20414         * UpDownBase.cs: Make the textbox handle all the selection and
20415         tabbing. This fixes tabing to updown controls.
20416
20417 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
20418
20419         * TextBoxBase.cs: fixes exception thown the object was null
20420
20421 2006-01-23  Jackson Harper  <jackson@ximian.com>
20422
20423         * ButtonBase.cs: Just use the base CreateParams. They set
20424         visibility and enabled correctly.
20425         * ComboBox.cs:
20426         * TrackBar.cs:
20427         * MonthCalendar.cs: Lets let the base set as much of the
20428         createparams as possible so we don't have duplicate code all over
20429         the place.
20430
20431 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
20432
20433         * ThemeGtk.cs: Added TrackBar and some experimental code to
20434           get double buffering back
20435
20436 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
20437
20438         * DataGrid.cs: Allows row number set internally higher than the last
20439         when creating a new row. Restores the editing functionality.
20440
20441 2006-01-20  Mike Kestner  <mkestner@novell.com>
20442
20443         * MimeIcon.cs: delay Image creation until the icons are accessed
20444         instead of creating 190 scaled images on GnomeHandler startup.
20445
20446 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
20447
20448         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
20449           first call base before processing the event. Fixes #77279
20450
20451 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
20452
20453         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
20454           that the stride for the GDI bitmap would match the stride of
20455           a DIB or a Cursor.
20456
20457 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
20458
20459         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
20460
20461 2006-01-19  Jackson Harper  <jackson@ximian.com>
20462
20463         * ComboBox.cs: Hookup the text controls keydown event so we get
20464         those when the text control has the focus.
20465
20466 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20467
20468         * Label.cs: Now using the base events instead of defining new ones;
20469           this allows us to just call the base properties without having to
20470           duplicate all base property logic 
20471
20472 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20473
20474         * Label.cs: A label by default is not a tabstop (Fixes one of our
20475           failing nunit tests)
20476
20477 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20478
20479         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
20480         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
20481
20482 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20483
20484         * Cursor.cs: Reimplemented creating cursor bitmaps without using
20485           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
20486           This fixes #77218
20487         * XplatUIWin32.cs: 
20488           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
20489             constructor creates images that can't be saved. Part of the fix
20490             for #76103
20491           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
20492           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
20493             bug fix for handling window state in forms properly)
20494
20495 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20496
20497         * ThemeGtk.cs: Simplify ScrollBar drawing
20498
20499 2006-01-18  Jackson Harper  <jackson@ximian.com>
20500
20501         * Splitter.cs: Set the default dock style for the splitter control
20502         in the constructor.
20503
20504 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20505
20506         * ThemeGtk.cs: Corrected StateType and ShadowType for
20507           gtk_paint_box
20508
20509 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20510
20511         * Control.cs: Make use of Theme.DoubleBufferingSupported
20512         * ThemeGtk.cs:
20513           - Added drawing for flat style buttons
20514           - Added ScrollBar drawing
20515
20516 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20517
20518         * ThemeClearlooks.cs: Removed some unneeded code.
20519         * ThemeGtk.cs: First part of ThemeGtk enhancements.
20520
20521 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20522
20523         * LinkLabel.cs: We need to update the hover drawing when
20524           leaving the control as well.
20525
20526 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
20527
20528         * DataGrid.cs: Clicking on non empty areas in the columns
20529            area was giving an exception
20530
20531 2006-01-17  Jackson Harper  <jackson@ximian.com>
20532
20533         * ThemeWin32Classic.cs:
20534         * ListView.cs: Do not draw/clip the headers when the header style
20535         is None.
20536
20537 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20538
20539         * DataGrid.cs: Fixes 77260
20540         
20541 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20542
20543         * DataGrid.cs: Clicking on a column on a empty grid was giving
20544           an exception
20545
20546 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20547
20548         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
20549           or any keypress will crash the grid.
20550
20551 2006-01-17  Mike Kestner  <mkestner@novell.com>
20552
20553         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
20554         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
20555         invisible/previously-visible items.
20556         [Fixes #76909]
20557
20558 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
20559
20560         * ThemeClearlooks.cs:
20561         - Added CL_Draw_Button method; now other theme controls that are 
20562           not derived from button or do not have a button can draw buttons
20563           too
20564         - Updated ComboBox drawing
20565         - Beautified RadioButton drawing
20566         - Corrected drawing of bottom and left tabs
20567         - Beautified DateTimePicker and MonthCalendar
20568         - Added CPDrawButton and CPDrawRadioButton
20569
20570 2006-01-16  Jackson Harper  <jackson@ximian.com>
20571
20572         * ComboBox.cs: Set the initial value of the scrollbar to the
20573         current index. Reduce the numbers of refreshs and IndexOfs called.
20574
20575 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
20576
20577         * FileDialog.cs: When the file listview is focused hitting the
20578           backspace key moves the fileview to the parent directory
20579
20580 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20581
20582         * Form.cs: 
20583           - Added RecreateHandle call when changing taskbar visibility to 
20584             trigger reparenting in Win32 driver (Fixes #75719)
20585           - If a window has minimize or maximize buttons, it cannot have
20586             a help button
20587         * XplatUIWin32.cs:
20588           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
20589             the toplevel form with FosterParent (A toolwindow not on the
20590             taskbar) (Fixes #75719)
20591           - Made FosterParent a toolwindow
20592
20593 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20594
20595         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
20596
20597 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20598
20599         * ToolTip.cs: If SetToolTip is called from a control and the mouse
20600           is currently over that control, make sure that tooltip_window.Text
20601           gets updated
20602
20603 2006-01-13  Mike Kestner  <mkestner@novell.com>
20604
20605         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
20606
20607 2006-01-13  Jackson Harper  <jackson@ximian.com>
20608
20609         * TreeView.cs: On MS GetNodeAt never actually factors in the X
20610         value passed.  Also redraw the selected node when we recieve
20611         focus, so tabbing between trees works correctly.
20612
20613 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20614
20615         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
20616           ~/.gconf/%gconf-tree.xml, so use
20617           .gconf/desktop/gnome/interface/%gconf.xml
20618
20619 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20620
20621         * TextControl.cs: Draw text in gray if control is disabled
20622
20623 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20624
20625         * TreeView.cs: Draw the focus rectangle outside the highlight, to
20626           make sure it's always visible. Fixes #76680.
20627
20628 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20629
20630         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
20631
20632 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
20633
20634         * PageSetupDialog.cs: Added.
20635         * PrintDialog.cs: Attributes.
20636         * PrintPreviewControl.cs: Updates.
20637         * PrintPreviewDialog.cs: Updates.
20638         
20639 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20640
20641         * Control.cs: Undid my selection check fix, since it's not needed
20642         * TextBoxBase.cs:
20643           - Now considering the presence of hscroll/vscroll when sizing
20644             vscroll/hscroll respectively. Fixed bug #77077
20645           - Added Left/Up/Down/Right to IsInputKey list to prevent
20646             ContainerControl from stealing them. This fixes what I broke
20647             with my last checkin.
20648
20649 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
20650
20651         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
20652           I finally understand how the property can be set without a setter :-)
20653
20654 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20655
20656         * Application.cs:
20657           - Switched RunLoop to use static Message.Create to create a 
20658             Message object
20659           - Added PreProcessMessage call in runloop for keyboard events; this
20660             is part of the fix for #77219, I overlooked this originally in the
20661             MSDN doc for PreProcessMessage
20662         * Control.cs:
20663           - Removed call to PreProcessMessage from handling of keyboard 
20664             messages; it's supposed to be done in the message pump
20665           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
20666             per MSDN documentation.
20667           - IsInputChar: All chars are input chars by default; removed the 
20668             parent calling chain, MS does not document that
20669           - PreProcessMessage: If IsInputChar is true, we want to return false
20670             to allow dispatching of the message
20671           - When selecting the next control, now also check that we're not
20672             selecting ourselves again and therefore return a false positive.
20673         * TextBoxBase.cs:
20674           - Tried to match return values for IsInputKey and ProcessDialogKey
20675             to what MS returns; moved processing of our special keys outside
20676             ProcessDialogKey since MS does not seem to return true on those.
20677           - Moved code that previously was in ProcessDialogKey into new private
20678             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
20679           - Reworked handling of WM_CHAR to not have to duplicate code from
20680             Control.cs anymore, instead we simply call down to base.
20681            
20682 2006-01-12  Jackson Harper  <jackson@ximian.com>
20683
20684         * ComboBox.cs: We always need to refresh the text area when
20685         EndUpdate is called. Fixes the combobox in the file dialog.
20686         * Control.cs: Don't create the creator_thread until the controls
20687         handle is created.  Also in InvokeRequired we check if the
20688         creator_thread is null. This gives the effect of InvokeRequired
20689         returning true if the controls handle is not created yet, and
20690         matches MS.
20691
20692 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20693
20694         * XplatUI.cs:
20695           - Added StartLoop() driver method. This is used to allow drivers to
20696             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
20697             loop for a particular thread
20698           - Added EndLoop() driver method. This is called once the message
20699             pump for the thread is shut down
20700           - Added SupportsTransparency method to allow the driver to indicate
20701             opacity support for windows
20702         * Form.cs:
20703           - Removed TODO attribute, completed AllowTransparency property
20704           - Added documented logic to Opacity
20705         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
20706           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
20707           versions of CompatibleTextRendering
20708         * X11Structs.cs: Added opacity atom to our atom enumeration
20709         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
20710           of a form might be set before it's reparented by the WM, and we need
20711           the opacity value without calling up to Form)
20712         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
20713           SupportsTransparency() driver methods
20714         * Application.cs: Now calling StartLoop and EndLoop driver methods
20715         * XplatUIX11.cs:
20716           - Added opacity atom registration
20717           - Added StartLoop()/EndLoop() methods. They're empty right now but
20718             will need to get implemented when we switch to a per-thread queue
20719           - Implemented SupportsTransparency() method
20720           - Implemented SetWindowTransparency() method
20721           - Added support for setting the opacity value when a window is
20722             reparented (since the opacity needs to be set on the WM frame)
20723         * XplatUIOSX.cs, XplatUIWin32.cs:
20724           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
20725
20726 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20727
20728         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
20729
20730 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20731
20732         * FileDialog.cs: Added ToolTip for MWFFileView
20733         * MimeIcon.cs: Rewrote GnomeHandler.
20734           - Get currently used gnome icon theme from
20735             ($HOME)/.gconf/%gconf-tree.xml
20736           - Make use of inherited icon themes
20737           - Support SVG icon themes like Tango via librsvg
20738
20739 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20740
20741         Revert's Jackson's revert which broke 2.0 builds.   Fix both
20742         builds. 
20743         
20744         * Application.cs: Move the use_compatible_text_rendering outside
20745         the NET_2_0 define.  If we ever need to use the
20746         use_compatible_text_rendering on the individual controls they will
20747         access the variable from the common shared code paths.
20748
20749 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20750
20751         * XplatUI.cs:
20752           - Added more granular debug options
20753           - Added method to print both window text and id
20754           - Switched debug output to use new Window() debug method
20755           - Added IsEnabled() driver method
20756           - Added EnableWindow() driver method
20757         * Form.cs:
20758           - Removed end_modal; no longer needed, new loop handles termination
20759             via 'closing' variable
20760           - If form is modal, setting DialogResult will now initiate loop
20761             termination via 'closing' variable
20762           - Added support for is_enabled/WS_DISABLED to CreateParams
20763           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
20764             does all the work
20765           - Removed code that's now in RunLoop from ShowDialog()
20766           - Added various documented sanity checks to ShowDialog()
20767           - Added handling of WM_DESTROY message; we set 'closing' on getting
20768             the message to indicate the message pump to terminate
20769           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
20770             send by the Application.ExitThread method. (We send the message
20771             to destroy the window after all other events have been
20772             processed through the queue, instead of destroying the handle 
20773             directly)
20774           - Moved code from Close() method to WM_CLOSE handler; added logic
20775             to only send close-related events if the form is not displayed
20776             modal
20777         * Splitter.cs (..ctor): Fixed typo in resource name
20778         * Control.cs:
20779           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
20780             brush now
20781           - set_Cursor: Now only setting calling into XplatUI if the handle for
20782             the control is already created; this avoids implict handle creation
20783             or crashes if it's not created
20784           - set_Enabled: Now setting the enabled state via the new driver method
20785             instead of just tracking it
20786           - CreateParams: Added logic to set WS_DISABLED based on enabled state
20787           - CreateControl: Reordered event firing and method calls to more
20788             closely fire events in the order MS does. Now setting the
20789             enabled state in the driver when creating the control.
20790           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
20791             match MS order
20792         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
20793           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
20794         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
20795         * Hwnd.cs:
20796           - Added tracking of window enabled state (get_Enabled/set_Enabled)
20797           - Added EnabledHwnd property to easily allow a driver to find the
20798             handle of the first enabled window in the parent chain (this is
20799             used by drivers to pass up input events of disabled windows)
20800         * XplatUIDriver.cs: Added IsEnabled() method
20801         * Application.cs:
20802           - Removed crude and obsolete exiting tracking variable
20803           - Removed internal ModalRun(); replaced by RunLoop()
20804           - Implemented private CloseForms() method to allow closing all 
20805             windows owned by a particular (or all) threads
20806           - Exit() now properly closes all windows without forcing the message
20807             pump to quit
20808           - Removed obsolete InternalExit() method
20809           - Changed Run() methods to use new RunLoop() message pump
20810           - Implemented new RunLoop() method for both modal and non-modal forms
20811         * CommonDialog.cs:
20812           - get_CreateParams: Added setting of WS_DISABLED
20813           - Simplified ShowDialog(); now all the work is done in RunLoop(),
20814             invoked via Form.ShowDialog()
20815         * NativeWindow.cs: We don't remove the window from the collection when
20816           the handle is destroyed; there might still be messages for it in the
20817           queue (mainly the resulting WM_DESTROY); instead it will be removed
20818           when Control calls InvalidateHandle in the WM_DESTROY handler
20819         * XplatUIX11.cs:
20820           - CreateWindow: Added logic to handle the WS_DISABLED window style
20821           - EnableWindow: Implemented based on Hwnd.Enabled
20822           - GetMessage: Reset PostQuitState so the method can be called again
20823           - Implemented support for disabled windows (passing messages to the
20824             first enabled parent) in handling all input messages
20825           - Added optimizations for handling Expose events
20826           - Implemeted new driver method IsEnabled()
20827           - Now always resetting paint pending tracking vars when we start paint
20828           - Re-implemented UpdateWindow via just sending a WM_PAINT message
20829         * XplatUIOSX.cs: Added IsEnabled method stub
20830         * XplatUIWin32.cs: Implemented new IsEnabled() method
20831
20832 2006-01-11  Jackson Harper  <jackson@ximian.com>
20833
20834         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20835         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
20836         variables a little.
20837         * ColorDialog.cs: Clear out the old form before adding the new
20838         panel.  
20839
20840 2006-01-11  Jackson Harper  <jackson@ximian.com>
20841
20842         * X11Dnd.cs: Make sure to add all the text formats when adding
20843         strings to the data object.
20844         * TreeNodeCollection.cs: When adding to a sorted tree we need to
20845         do some redrawing too.  Also change the UpdateNode to an
20846         UpdateBelow so the newly added node gets painted.
20847         
20848 2006-01-11  Miguel de Icaza  <miguel@novell.com>
20849
20850         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20851         LinkLabel.cs, PropertyGrid.cs: Implement the
20852         UseCompatibleTextRendering property for 2.x
20853
20854         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
20855
20856 2006-01-11  Jackson Harper  <jackson@ximian.com>
20857
20858         * TreeView.cs: Use the property for setting the selected node so
20859         the correct events get raised.
20860         * TreeNode.cs: Update the tree when the fore/back colours of a
20861         node are set.
20862
20863 2006-01-10  Jackson Harper  <jackson@ximian.com>
20864
20865         * TreeView.cs: Allow setting SelectedNode to null.
20866
20867 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20868
20869         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
20870
20871 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20872
20873         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
20874
20875 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20876
20877         * PrintDialog.cs: Added attributes and set default property values.
20878
20879 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20880
20881         * PrintControllerWithStatusDialog.cs: 
20882         Added PrintControllerWithStatusDialog.
20883
20884 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20885
20886         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
20887         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
20888
20889 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20890
20891         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
20892
20893 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
20894
20895         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
20896         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
20897
20898 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20899
20900         * MimeIcon.cs: Added internal class SVGUtil.
20901
20902 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20903
20904         * FileDialog.cs: Don't crash if there are two files with the
20905           same name but different locations.
20906
20907 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
20908
20909         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
20910         dates across multiple month grids. Used to not highlight entire 
20911         month, but does now.
20912         
20913 2006-01-06  Jackson Harper  <jackson@ximian.com>
20914
20915         * MonthCalendar.cs: Removed DoEvents call to prevent a running
20916         message loop. Change timer intervals to numbers that seem more
20917         natural.
20918
20919 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
20920
20921         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
20922           object for location info since screen object is now implemented.
20923
20924 2006-01-05  Jackson Harper  <jackson@ximian.com>
20925
20926         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
20927         * AsyncMethodResult.cs: We no longer use a WeakReference for the
20928         AsyncMethodResult, this is because we ALWAYS want the
20929         ManualResetEvent to get set.
20930         * Control.cs: When disposing use an async invoke to call shutdown
20931         code, so that thigns don't block on the finalizer thread.  Also
20932         check if we even have a message loop before trying to send
20933         messages, if we don't then don't bother sending messages.
20934         - No more weak references for async methods
20935         * XplatUIDriver.cs: No more weak references for async methods.
20936
20937 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20938
20939         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
20940           returns two FontFamily with the same name
20941
20942 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20943
20944         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
20945           drawing disabled text. Instead using the ColorGrayText color
20946
20947 2006-01-04  Jackson Harper  <jackson@ximian.com>
20948
20949         * TreeNode.cs: redraw the node when its image index is changed.
20950
20951 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20952
20953         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
20954           time I checked there are no others like it.
20955
20956 2006-01-04  Jackson Harper  <jackson@ximian.com>
20957
20958         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
20959         this gives the behavoir I was looking for.
20960         * Control.cs: Special case Invoking EventHandlers, this matches MS
20961         and fixes part of bug #76326.
20962
20963 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20964
20965         * ThemeClearlooks.cs, FileDialog.cs:
20966           - Reflect the latest Theme class changes
20967           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
20968             with DateTime
20969             
20970 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20971
20972         * Theme.cs: Cache UI resource images and resize them if needed
20973
20974 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20975
20976         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
20977           is called. This fixes the crash in Nexxia when setting the font
20978           attributes in the chat. [However, RTF needs a look-over to make sure
20979           that all SelectionXXX methods handle the special case that selection
20980           is empty and therefore the change must be applied to all text starting
20981           at the cursor/selection start]
20982
20983 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
20984
20985         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
20986           XplatUIOSX.cs: Added SendMessage and PostMessage methods
20987         * X11Keyboard.cs: Switched to new way of calling PostMessage
20988
20989 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20990
20991         * Theme.cs: Added theme interface for images to allow the theme to
20992           control what images are used for things like FileDialog, MessageBox
20993           icons, etc.
20994         * MessageBox.cs: Now uses the new Theme icon/image interfaces
20995
20996 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
20997
20998         * FileDialog.cs:
20999           - Removed some dead code
21000           - Opening a recently used file does work now
21001           - Small UI enhancements
21002           - Refactoring
21003
21004 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
21005
21006         * FileDialog.cs: Forgot too add __MonoCS__
21007
21008 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
21009
21010         * FileDialog.cs: We are able to read recently used files now let's
21011           go on and write them.
21012
21013 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
21014
21015         * FileDialog.cs: Breathe some life into "last open"/"recently used"
21016           button
21017         * MimeIcon.cs: Do a check for the top level media type also
21018
21019 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
21020
21021         * ThemeClearlooks.cs:
21022           - Added CPDrawStringDisabled
21023           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
21024             some chars if the text doesn't fit into text_rect
21025           - DrawListViewItem: If View = View.LargeIcon center the image;
21026             rewrote the drawing of ListViewItem.Text if View = 
21027             View.LargeIcon
21028
21029 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
21030
21031         * MimeIcon.cs: Use default KDE icon theme if there is no
21032           "48x48" directory for the current icon theme, fixes #77114
21033         * Mime.cs: Disable not working and actually not used code. 
21034         * ThemeWin32Classic.cs:
21035           - Replace "new SolidBrush" in GetControlBackBrush and
21036             GetControlForeBrush with ResPool.GetSolidBrush
21037           - Changed DrawListViewItem from private to protected virtual
21038         * FileDialog.cs:
21039           - Added form.MaximizeBox = true
21040           - Don't throw an exception if there is a broken symbolic link
21041
21042 2005-12-23  Jackson Harper  <jackson@ximian.com>
21043
21044         * TabControl.cs: Give the panels focus, keyboard navigation is
21045         fixed so this works correctly now.
21046         - We need these key events also.
21047         * ToolBar.cs: Remove some of the poor mans double buffering.
21048         
21049 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
21050
21051         * ComboBox.cs: The internal TextBox now returns the focus.
21052
21053 2005-12-23  Jackson Harper  <jackson@ximian.com>
21054
21055         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
21056
21057 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
21058
21059         * Control.cs: Removed debug code
21060         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
21061           implicit children
21062
21063 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
21064
21065         * Control.cs: When creating the control, update the Z-order after
21066           all it's children are created, too. (Fixes nexxia not showing
21067           picturebox bug)
21068
21069 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
21070
21071         * Control.cs: Do not update the anchoring distances if layout is
21072           suspended, instead do it once layout is resumed
21073
21074 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
21075
21076         * Control.cs: 
21077           - After many hours of debugging, for both Jackson and
21078             myself, it turns out that it helps to set the parent of a control
21079             if you want to actually see it onscreen. In the spirit of that
21080             discovery, we're now setting the parent of the control and
21081             it's children when the control's handle is created. This fix
21082             will make Lutz Roeder's Reflector run happily. 
21083           - now just creating the handle instead of the whole control when
21084             getting a graphics context for the control.
21085
21086 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
21087
21088         * ScrollableControl.cs: When calculating the canvas, don't consider
21089           the scrollbar widths. Instead, predict if horizontal scrollbar
21090           will affect canvas when deciding on vertical display and vice versa.
21091
21092 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
21093
21094         * RichTextBox.cs: Set default RTF font for documents that don't
21095           have a font table (Fixes #77076)
21096
21097 2005-12-22  Jackson Harper  <jackson@ximian.com>
21098
21099         * TextBoxBase.cs: It's difficult to do, but you can have an empty
21100         clipboard. This prevents a NullRef in that case.
21101         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
21102         clipboard. PRIMARY is for the currently selected text only. (We
21103         should implement PRIMARY at some point.
21104
21105 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21106
21107         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
21108           a Unicode function with a structure that was defined in Ansi way.
21109           This fixes #76942.
21110
21111 2005-12-21  Jackson Harper  <jackson@ximian.com>
21112
21113         * StatusBar.cs: Statusbar handles its fore/back colours on it's
21114         on. Because thats how it rolls. (and this avoids it using ambient
21115         colours).
21116         * ThemeWin32Classic.cs: Use the proper back color for filling.
21117         * Menu.cs: Use the system menu bar color for drawing menu
21118         bars. Using the window back color will bring ambient colours into
21119         the picture.
21120
21121 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
21122
21123         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
21124           Bitmaps were created and not disposed.
21125
21126 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21127
21128         * Control.cs (CreateControl): Don't do anything if the control is
21129           already created, otherwise we'd fire the OnCreated event more than
21130           once
21131
21132 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
21133
21134         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
21135           will always match. Instead return -1. Fixes #76464.
21136
21137 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21138
21139         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
21140           neither the beginning nor the end of the line (Fixes bug #76479)
21141
21142 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
21143
21144         * Control.cs:
21145           - ControlNativeWindow.ControlFromHandle(): Now handling situation
21146             where handle is invalid
21147           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
21148             instead of slower linear search
21149         * NativeWindow.cs: Don't remove the window from the hashtable until
21150           after the driver has destroyed it (since the driver might use
21151           Control.FromHandle to lookup the control object
21152         * Hwnd.cs: Added DestroyPending property to track if a window is 
21153           already destroyed as far as the driver is concerned and only hasn't
21154           yet notified the control
21155         * XplatUIX11.cs:
21156           - Activate(): Check if the window is still valid before using the 
21157             handle
21158           - Implemented DestroyChildWindow() method to mark child windows as
21159             destroyed when a window is destroyed. This prevents situations 
21160             where we might call an X method based on queued events for a
21161             window that already has been destroyed but we haven't yet pulled
21162             the destroy method from the queue.
21163           - Added a call to the new DestroyChildWindow() method to the drivers
21164             DestroyWindow code. Also now marking the destroyed window itself
21165             as pending
21166
21167 2005-12-20  Jackson Harper  <jackson@ximian.com>
21168
21169         * StatusBar.cs:
21170         * StatusBarPanel.cs: Don't calculate panel sizes on draw
21171         anymore. Just do them when needed, also track the rects of panels
21172         so that we can optimize refreshing more in the future.
21173
21174 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
21175
21176         * ColorDialog.cs: Fixed focus drawing in small color controls
21177
21178 2005-12-19  Jackson Harper  <jackson@ximian.com>
21179
21180         * InternalWindowManager.cs:
21181         * MdiWindowManager.cs: Cleanup some coordinate system changes so
21182         moving windows works properly.
21183
21184 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
21185
21186         * Control.cs: 
21187           - Removed call to InitLayout() from SetBoundsCore(); doc says
21188             it's only called when a control is added to a container
21189           - Split InitLayout logic, moved to separate UpdateDistances() method
21190             since we need to perform those calculations more often than just
21191             when adding the control to a container. (Needed to fix #77022)
21192           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
21193           - Reduced the OnBindingContextChanged events count, don't send them
21194             unless the control is created, we still aren't totally matching
21195             MS, but I can't quite figure out some of their rules
21196
21197 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21198
21199         * ThemeClearlooks.cs: Corrected distance between ProgressBar
21200           stripes
21201
21202 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21203
21204         * ThemeClearlooks.cs:
21205           - Updated ProgressBar drawing
21206           - Corrected drawing of ScrollBars and scroll buttons
21207           - Some temporary fixes for minor pixel artefacts
21208
21209 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
21210
21211         * Control.cs:
21212           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
21213             cause events to be sent in the same order as MS does.
21214           - Added ChangeParent() method to trigger various OnXXXChanged events
21215             that need to be fired when a parent changes (This is a reworking
21216             of the patch from r54254, with the X11 errors fixed)
21217           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
21218             since on MS we get OnLayoutChanged events when calling Clear()
21219           - Changed Enabled property to consider parent state as well, if a
21220             parent is not enabled, the control will not be either
21221           - Changed Parent property to simply call Controls.Add() since that
21222             now does all the work required, this way we avoid code duplication
21223           - Threw in a few OnBindingsContextChanged calls to try and match
21224             when MS sends them. We seem to send a few too many, though.
21225           - Added call to CreateControl when adding the control to a parent.
21226             We were never calling CreateControl. Still needs some work, in
21227             some places we treat HandleCreated and ControlCreated as equal, 
21228             which is wrong
21229           - Removed obsolete commented out code from UpdateZOrder()
21230
21231 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21232
21233         * ThemeClearlooks.cs: Updated TrackBar drawing.
21234
21235 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
21236
21237         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
21238
21239 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
21240
21241         * FileDialog.cs: Add the Help button and the open readonly
21242           checkbox only if needed
21243
21244 2005-12-16  Jackson Harper  <jackson@ximian.com>
21245
21246         * Control.cs: Make sure we have an active menu before trying to
21247         process commands on it. Prevents menu-less forms from crashing
21248         when Alt is pressed.
21249         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
21250         Dieter Bremes.
21251         * RichTextBox.cs: Expand statement to help out gmcs and fix the
21252         2.0 build.
21253
21254 2005-12-16  Jackson Harper  <jackson@ximian.com>
21255
21256         * InternalWindowManager.cs: Don't translate tool windows screen
21257         coordinates. This fixes windows 'bouncing' around when being moved.
21258
21259 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
21260
21261         * TextBoxBase.cs:
21262           - MaxLength now treats 2^31-1 equal to unlimited length (this is
21263             not quite MS compatible, MS uses that number only for single line
21264             and 2^32-1 for multi-line, but I figure it won't hurt keeping
21265             the limit at 2GB)
21266           - Now enforcing the MaxLength limit when entering characters
21267           - Added argument to internal Paste() method to track if it's called
21268             from programatically or via keyboard, since keyboard driven pastes
21269             need to enforce max-length
21270           - Added logic to Paste to only paste as many chars as MaxLength 
21271             allows
21272         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
21273         * TextControl.cs:
21274           - Added Length property to return number of characters in document
21275           - Added private CharCount property which only tracks actual chars
21276             in the document (no linefeeds) and fires event when CharCount
21277             changes
21278           - Added tracking of character count to all methods that alter it
21279           - Added LengthChanged event to allow applications to subscribe
21280             to any changes to the document
21281
21282 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
21283
21284         * TextBox.cs: 
21285           - Removed local password_char field (moved to TextBoxBase)
21286           - Now setting the document's password var when password is
21287             set
21288         * TextBoxBase.cs:
21289           - Added password_char field (needed here so MultiLine can
21290             access it)
21291           - Added logic to MultiLine property setter to set the document's
21292             variable when password display is allowed
21293           - Removed debug code and made some debug code conditional
21294         * TextControl.cs:
21295           - Added RecalculatePasswordLine() method to handle special password
21296             char only lines
21297           - Added PasswordChar property, also added related tracking vars
21298           - Draw() method now uses local text var for grabbing text to draw,
21299             this var is set to line.text unless we're doing password display,
21300             then it is set to the pre-generated all-password-chars line
21301           - Added calling RecalculatePasswordLine() method for password lines
21302
21303 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
21304
21305         * Hwnd.cs: 
21306           - Added Reparented property to allow tracking of Window Manager
21307             reparenting actions (which affect X/Y calculations of toplevel 
21308             windows)
21309           - Made ToString() print window handles in hex
21310         * XplatUIX11.cs:
21311           - AddConfigureNotify(): Now uses reparented state off Hwnd to
21312             determine if X/Y needs offsetting
21313           - AddConfigureNotify(): Fixed offset calculations
21314           - Now adds ReparentNotify messages into the queue
21315           - Now processes ReparentNotify messages and causes a 
21316             WM_WINDOWPOSCHANGED message to be sent upstream if a window
21317             is reparented (as most likely it's X/Y coordinates are changed
21318             due to that)
21319
21320 2005-12-14  Jackson Harper  <jackson@ximian.com>
21321
21322         * XplatUIX11.cs: Tool windows still need to respek focus.
21323
21324 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
21325
21326         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
21327           have a working release
21328
21329 2005-12-13  Jackson Harper  <jackson@ximian.com>
21330
21331         * Form.cs: Update styles after setting the border style regardless
21332         of whether or not the window is using a window manager.
21333
21334 2005-12-13  Jackson Harper  <jackson@ximian.com>
21335
21336         * Form.cs: We now hook into an internal window manager instead of just an
21337         MDI subsystem, this is so we can have properly behaving tool windows.
21338         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
21339         * InternalWindowManager.cs: New internal class that acts as a
21340         window manager for tool windows and as a base for mdi windows.
21341         * MdiWindowManager.cs: New class that acts as a window manager for
21342         mdi windows.
21343
21344 2005-12-12  Jackson Harper  <jackson@ximian.com>
21345
21346         * Control.cs: Updates so we match behavoir for for implicit
21347         controls. Fixes explosions in MDI.
21348
21349 2005-12-12  Jackson Harper  <jackson@ximian.com>
21350
21351         * Control.cs: Implement Invalidate (Region).
21352
21353 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
21354
21355         * Control.cs: 
21356           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
21357             the same events as MS does. MS fires events for each property 
21358             except, for unknown reasons, Cursor, when the control is reparented. 
21359             I can't seem to totally match add/remove since MS also fires some 
21360             VisibleChanged events, which makes no sense. Consolidated the
21361             parenting code into a separate method so it can be called from
21362             both Add and Remove. set_Parent no longer needs any special logic
21363             as it calls the parent's add method which implicitly fires
21364             all events
21365           - Removed some obsolete code and debug output
21366           - Enabled state is inherited from parents, if this is enabled
21367
21368 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
21369
21370         * Form.cs: Removed commented out code
21371
21372 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
21373
21374         * Control.cs:
21375           - Added internal version of Invoke, with additional argument 
21376             indicating if we're calling it from a Dispose() handler. That
21377             way we can avoid BeginInvoke throwing an exception if we're
21378             calling for an already destroyed window.
21379           - Added a dispose argument to BeginInvokeInternal, and made the
21380             check if a valid window handle chain exists conditional on
21381             it not being a dispose call
21382           - Removed code in DestroyHandle to destroy our children. Since we
21383             now handle the WM_DESTROY message we will catch all our children
21384             being destroyed.
21385           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
21386         * Form.cs:
21387           - Added a field to track the application context of the form.
21388           - No need to set closing variable as response to WM_CLOSE, instead
21389             we destroy the window. We also call PostQuitMessage if the form
21390             has an application context (which makes it the main app form,
21391             which, when closed terminates the app)
21392         * XplatUI.cs:
21393           - Dropped Exit() method, it's naming was confusing
21394           - Added PostQuitMessage() which causes GetMessage to return false
21395             once the message queue is empty
21396         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
21397           PostQuitMessage()
21398         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
21399           no longer a valid XplatUI method, but left it in since it's used
21400           internally. Added empty PostQuitMessage() method.
21401         * MenuAPI.cs: Replaced call to Exit() with call to
21402           PostQuitMessage, even though this is probably no longer needed.
21403         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
21404         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
21405         * Application.cs:
21406           - Replaced call to XplatUI.Exit() with PostQuitMessage()
21407           - Removed old debug code that would call XplatUI for exception
21408             display, enabled standard exception handling (Still not enabled
21409             though, until NativeWindow's ExternalExceptionHandler define
21410             is removed
21411         * NativeWindow.cs:
21412           - Added internal method to allow control to update NativeWindow
21413             after a window has been destroyed
21414           - Added handling of already destroyed windows when calling i
21415             DestroyWindow
21416           - Added removal of handle from list on ReleaseHandle
21417         * XplatUIX11.cs:
21418           - Dropped GetMessageResult var and related code
21419           - Added PostQuitState to field to track if PostQuitMessage has been
21420             called
21421           - Dropped Exit() method
21422           - Added PostQuitMessage() method
21423           - GetMessage now will return false if PostQuitState is set and no
21424             more messages are in the queue.
21425           - Expose handler will no longer generate WM_PAINT messages if we are
21426             in PostQuitState since it's very likely any windows have already
21427             been destroyed, and since Hwnd won't get updated until we have
21428             processed the DestroyNotify we'd be causing X errors.
21429         
21430 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21431
21432         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
21433           Thanks to Mike for pointing out the err of my ways.
21434
21435 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21436
21437         * Control.cs(PreProcessMessage): Moved menu handling back, but
21438           after all other key handling, to match MS (who handles Menu in
21439           DefWndProc)
21440         * Menu.cs (WndProc): Removed my brainfart
21441
21442 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21443
21444         * Control.cs(PreProcessMessage): Removed special menu handling 
21445         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
21446
21447 2005-12-07  Mike Kestner  <mkestner@novell.com>
21448
21449         * Control.cs : special case SYSKEYUP so that we can adjust keynav
21450         state according in tracker.
21451         * Menu.cs : promote tracker field to base class and provide a tracker
21452         lookup capability.  Add/Remove shortcuts dynamically if the top menu
21453         has a tracker. Unparent items that are removed from the collection.
21454         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
21455         * Theme*.cs: add always_show_hotkeys field to support configurability
21456         of mnemonic display.  win32 doesn't show mnemonics until Alt is
21457         pressed.
21458
21459 2005-12-07  Jackson Harper  <jackson@ximian.com>
21460
21461         * MdiChildContext.cs: Use Control.ResetCursor.
21462         * Control.cs: ResetCursor needs to set the property so that the
21463         correct XplatUI call gets made.
21464
21465 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21466
21467         * Control.cs: More fixes to make our key events match MS. We
21468           were not setting the modifier state on KeyData, and we were
21469           not generating any events when Alt was pressed with a key
21470           since handling of WM_SYSxxx was missing for the OnKey methods.
21471
21472 2005-12-07  Jackson Harper  <jackson@ximian.com>
21473
21474         * MdiChildContext.cs: reenable the sizing code.
21475         - When the mouse leaves a window reset its cursor.
21476
21477 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21478
21479         * ThemeClearlooks.cs: Reflect latest Hwnd changes
21480
21481 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21482
21483         * Hwnd.cs: Now using the theme 3d bordersize to calculate
21484           widths of Fixed3D borders
21485
21486 2005-12-07  Jackson Harper  <jackson@ximian.com>
21487
21488         * MdiClient.cs: Fix warnings. Earn Mike's love.
21489
21490 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21491
21492         * ThemeClearlooks.cs:
21493           - Adjusted mouse over button color
21494           - Added first parts of CheckBox drawing
21495           - Added correct color for selected text background
21496           - Fixed ComboBox drawing
21497           - Added CPDrawBorder3D and CPDrawBorder
21498
21499 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21500
21501         * XplatUIX11.cs: Added call to XBell for AudibleAlert
21502
21503 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
21504
21505         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
21506           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
21507           alert users via sound. We could add an enum arg with different
21508           types of alerts in the future
21509
21510 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21511
21512         * Control.cs: Fix behaviour problems pointed out by Mike
21513
21514 2005-12-05  Mike Kestner  <mkestner@novell.com>
21515
21516         * StatusBarPanel.cs: add Invalidate method and hook it into all the
21517         prop setters.  Calls parent.Refresh for now, but could be maybe be
21518         optimized with an internal method on StatusBar at some point.
21519         [Fixes #76513]
21520
21521 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
21522
21523         * RichTextBox.cs: Implemented get_SelectionColor
21524
21525 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
21526
21527         * ThemeClearlooks.cs:
21528           - Removed dead code
21529           - Draw black button border only if button is Form.AcceptButton
21530           - Draw correct button color for pressed RadioButton if the mouse 
21531             has entered the button
21532           - Updated ProgressBar drawing!
21533           - Updated CPDrawSizeGrip drawing
21534           - Updated StatusBarPanel drawing
21535
21536 2005-12-05  Mike Kestner  <mkestner@novell.com>
21537
21538         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
21539         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
21540
21541 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
21542
21543         * ThemeClearlooks.cs: Initial check-in, activate with
21544           export MONO_THEME=clearlooks
21545         * ThemeEngine.cs: Added ThemeClearlooks
21546
21547 2005-12-03  Mike Kestner  <mkestner@novell.com>
21548
21549         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
21550         [Fixes #76897]
21551
21552 2005-12-02  Jackson Harper  <jackson@ximian.com>
21553
21554         * Form.cs: If the child form has no menu the default main menu is
21555         used as the active menu.
21556
21557 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
21558
21559         * ListBox.cs: Check if any items exist before trying to resolve 
21560           coordinates into items
21561
21562 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21563
21564         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
21565           as the second color for the background hatch
21566
21567 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21568
21569         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
21570         * RichTextBox.cs: FormatText position arguments are 1-based, now making
21571           sure that what we pass to FormatText is always 1-based. Fixes #76885
21572
21573 2005-11-29  Miguel de Icaza  <miguel@novell.com>
21574
21575         * NumericUpDown.cs (EndInit): When we are done initializing,
21576         reflect any updates on the UI.
21577
21578 2005-12-02  Jackson Harper  <jackson@ximian.com>
21579
21580         * ImplicitHScrollBar.cs:
21581         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
21582         their container controls.
21583         * TreeView.cs: Use the new implicit scrollbars.
21584
21585 2005-12-02  Jackson Harper  <jackson@ximian.com>
21586
21587         * TreeView.cs: Make top_node internal so the TreeNodeCollections
21588         can play with it.
21589         * TreeNodeCollection.cs: If we remove the topnode we need to
21590         update topnode to the next node in line.
21591         - When clearing nodes go through the same process as removing
21592         them, so they get depareneted and checked if they are top node.
21593
21594 2005-12-01  Jackson Harper  <jackson@ximian.com>
21595
21596         * TreeView.cs: When imagelists are used the image area is
21597         selectable as well as the text.
21598         - If there are no selected nodes select the first one.
21599         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
21600         so don't do it more then we need to.
21601
21602 2005-12-01  Jackson Harper  <jackson@ximian.com>
21603
21604         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
21605         that arrows can be scaled.
21606
21607 2005-12-01  Jackson Harper  <jackson@ximian.com>
21608
21609         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
21610         fail. Patch by Dieter Bremes
21611
21612 2005-11-30  Jackson Harper  <jackson@ximian.com>
21613
21614         * Form.cs: Property is 2.0 only
21615         * PrintDialog.cs: Signature fix.
21616
21617 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21618
21619         * TextControl.cs: 
21620           - No longer artificially moves text 2 pixels down (now that we have
21621             borders this is no longer needed)
21622           - Added calcs for left, hanging and right indent
21623
21624 2005-11-23  Mike Kestner  <mkestner@novell.com>
21625
21626         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
21627
21628 2005-11-30  Jackson Harper  <jackson@ximian.com>
21629
21630         * MdiChildContext.cs: Set the cloned menus forms, as these don't
21631         get cloned as part of CloneMenu ().
21632         * Menu.cs: Make sure the parent of the items get set correctly
21633         when they are added.  And the owners are notified of the changes.
21634         * Form.cs: Create an ActiveMenu property, so that when MDI is used
21635         we can change the menu being displayed/handled by the form without
21636         changing the menu assosciated with the form.
21637         - Don't let Mdi children draw/handle menus.
21638         
21639 2005-11-30  Jackson Harper  <jackson@ximian.com>
21640
21641         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
21642         a MenuChanged event. Just to make the API a little more
21643         consistent.
21644         * MainMenu.cs:
21645         * MenuItem.cs: Use the new OnMenuChanged
21646         * MdiChildContext.cs: Handle menu merging.
21647         * Form.cs: Implement MergedMenu.
21648         
21649 2005-11-30  Jackson Harper  <jackson@ximian.com>
21650
21651         * Menu.cs: We were misusing Add. Add goes behind the specified
21652         index according to the docs, and does not replace the specified
21653         index. So I added an Insert method.
21654
21655 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21656
21657         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
21658           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
21659           is for Jackson
21660         * RichTextBox.cs: Added calls to base for DnD events
21661
21662 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
21663
21664         * TextControl.cs:
21665           - Fixed drag-selection related crash; style fixes
21666           - Implemented undo class
21667             o Implemented method to capture document state for specified
21668               range in document tree
21669             o Implemented method to restore captured document state
21670             o Implemented cursor tracking
21671             o Implemented basic undo stack
21672           - Added undo cursor tracking to methods altering cursor location
21673           - Added undo tracking to selection deletion (still missing
21674             other text-altering hookups)
21675         * RichTextBox.cs:
21676           - Added SelectionLength property
21677           - Implemented CanPaste()
21678           - Implemented Paste()
21679           - Added missing protected methods
21680           - Fixed RTF->Document conversion; now uses font index 0 and color 
21681             index 0 as the default font for the parsed text
21682           - Fixed RTF<->Document font size translation
21683           - Fixed RTF generation, now properly handles cross-tag boundaries
21684             for single line selection
21685           - No longer always appends blank line to generated RTF
21686           - Removed TODOs
21687           - Added missing attributes
21688           - Hooked up undo-related methods
21689         * TextBoxBase.cs:
21690           - Implemented Copy()
21691           - Implemented Paste()
21692           - Implemented Cut()
21693           - Fixed caret mis-behaviour on backspace across line-boundaries
21694
21695 2005-11-29  Jackson Harper  <jackson@ximian.com>
21696
21697         * MdiClient.cs: Add a method for activating mdi children. Very
21698         basic right now. I imagine someday it might need more girth.
21699         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
21700         children windows names are added to the menu item.
21701         * ThemeWin32Classic.cs: Draw the arrow if the item is an
21702         mdilist. This happens regardless of whether or not there are any
21703         mdi windows to see in the list, and according to my tests happens
21704         before the items are even added. Also happens if there isn't even
21705         an mdi client to get windows from.
21706
21707 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
21708
21709         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
21710         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
21711
21712 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
21713
21714         * DataGridTableStyle.cs:
21715           - Create always the styles for the missing columns even if they are
21716             provided by the user (not default table style)
21717         * DataGrid.cs:
21718           - Fixes bug 76770
21719           - Fixes SetDataBinding (always re-attach source)
21720           - Fixes SetNewDataSource (only clear styles if they are not for 
21721             this source)
21722          -  Expands OnTableStylesCollectionChanged to handle style refresh 
21723             and remove properly
21724
21725 2005-11-29  Jackson Harper  <jackson@ximian.com>
21726
21727         * FileDialog.cs: Implement missing bits, remove some dead
21728         code.
21729         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
21730         creation of the panel so that the options set on the dialog are
21731         seen when the panel is created.
21732         * TreeView.cs: raise a click when items are clicked.
21733         
21734 2005-11-29  Jackson Harper  <jackson@ximian.com>
21735
21736         * MdiClient.cs: Pass some signature methods through to base.
21737
21738 2005-11-28  Jackson Harper  <jackson@ximian.com>
21739
21740         * ListView.cs: Raise the click event when items are clicked.
21741
21742 2005-11-28  Jackson Harper  <jackson@ximian.com>
21743
21744         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
21745         a nullref.
21746
21747 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
21748
21749         * ThemeNice.cs: - Removed 1 pixel bitmaps
21750           - Use SmoothingMode.AntiAlias where it makes sense
21751             (ScrollButton arrow for example)
21752           - Enhanced Button focus drawing
21753           - Fixed ComboBox drawing (no artefacts anymore, focus
21754             rectangle is back again, reduced size of ComboButton, etc.)
21755           - Fixed RadioButton focus drawing for Appearence.Button
21756           - Slight ScrollButton redesign
21757           - Some LinearGradientBrush size fixes
21758           - GroupBoxes have now rounded edges
21759           - Fixed StatusBar drawing
21760
21761 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
21762
21763         * ThemeNice.cs: - Remove dead code
21764           - use correct background colors for menus, etc.
21765           - Fake pixel drawing with 1 pixel bitmaps
21766
21767 2005-11-24  Jackson Harper  <jackson@ximian.com>
21768
21769         * MdiClient.cs: Size the scrollbars when resizing the window.
21770         - Resize the maximized windows when the client is resized
21771         * Form.cs: Make the child context available
21772         
21773 2005-11-23  Jackson Harper  <jackson@ximian.com>
21774
21775         * MdiChildContext.cs: Don't size windows if they are maximized.
21776
21777 2005-11-23  Mike Kestner  <mkestner@novell.com>
21778
21779         * ContextMenu.cs: use MenuTracker.
21780         * Control.cs: remove menu handle usage.
21781         * Form.cs: remove menu handle usage.
21782         * Hwnd.cs: remove menu handle usage.
21783         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
21784         motion and clicks to the new Tracker handlers.
21785         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
21786         and handle usage.
21787         * MenuAPI.cs: refactored to combine popup and menubar event handling.
21788         Killed the MENU and MENUITEM data types and associated collections
21789         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
21790         MenuTracker class that exposes the leftovers from the old MenuAPI
21791         static methods. Restructured Capture handling so that only one grab is
21792         done for the entire menu hierarchy instead of handing off grabs to
21793         submenus. Tracker now has an invisible control to Capture when active.
21794         * MenuItem.cs: add sizing accessors, kill Create
21795         and handle usage.
21796         * Theme.cs: remove menu handle and MENU(ITEM) usage.
21797         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
21798         MENU(ITEM). remove menu handle usage, use Menu directly.
21799         * XplatUIDriver.cs: remove menu handle usage.
21800         * XplatUIOSX.cs: remove menu handle usage.
21801         * XplatUIWin32.cs: remove menu handle usage.
21802         * XplatUIX11.cs: remove menu handle usage.
21803
21804 2005-11-22  Jackson Harper  <jackson@ximian.com>
21805
21806         * Hwnd.cs: Don't compute the menu size for
21807         DefaultClientRectangle.
21808         - Reenable menu sizes being computed for GetClienRectangle.
21809         * Form.cs: Remove comment of trechery
21810         
21811 2005-11-22  Jackson Harper  <jackson@ximian.com>
21812
21813         * Hwnd.cs: The adjustments for the menu bar are made when it is
21814         attached to the form.
21815
21816 2005-11-19  Jackson Harper  <jackson@ximian.com>
21817
21818         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
21819         (just like on windows).
21820
21821 2005-11-19  Jackson Harper  <jackson@ximian.com>
21822
21823         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
21824         use real buttons anymore because they are in non client area. The
21825         one TODO here is that I need to somehow invalidate a section of
21826         the non client area.
21827
21828 2005-11-18  Jackson Harper  <jackson@ximian.com>
21829
21830         * Control.cs: Put the enum check back in now that MDI doesnt have
21831         to use this to set border styles.
21832         * Form.cs: Only set mdi child windows borders if the handle has
21833         been created.
21834         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
21835         this directly on to the driver.
21836         - Get the move start position before adjusting for the titlebar
21837         height, this fixes the windows "skipping" when they are first
21838         moved.
21839
21840 2005-11-18  Jackson Harper  <jackson@ximian.com>
21841
21842         * XplatUIX11.cs: Just compute the mdi borders separately as they
21843         don't totally match up with normal form borders.
21844
21845 2005-11-18  Jackson Harper  <jackson@ximian.com>
21846
21847         * Control.cs: Set WS_ styles for borders, so that the driver does
21848         not have to retrieve the control instance to figure out what kind
21849         of borders it should have.
21850         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
21851         driver can know its an mdi child easily.
21852         * XplatUIX11.cs: Get the border styles and whether the window is
21853         MDI from the Styles and ExStyles params instead of having to get a
21854         control. This prevents a chicken and egg problem.       
21855
21856 2005-11-18  Jackson Harper  <jackson@ximian.com>
21857
21858         * MdiClient.cs: Fix typo so scrollbars show up correctly.
21859
21860 2005-11-18  Jackson Harper  <jackson@ximian.com>
21861
21862         * MdiClient.cs: Calculate when to add and remove scrollbars
21863         correctly.
21864         * MdiChildContext.cs: Adjust the y position to take the titlebar
21865         into account.
21866         - No height for FormBorderStyle.None
21867
21868 2005-11-18  Jackson Harper  <jackson@ximian.com>
21869
21870         * Control.cs: Allow non enum values to be used for
21871         InternalBorderStyle.  MDI does this to set a special border style.
21872         - New utility methods for converting points to/from client coords
21873         - Add the newly created control to the Controls collection before
21874         updating its style. This way UpdateStyle can walk the control
21875         heirarchy to find the control if needed.
21876         so I don't need to create a new Point object all the time.
21877         * Form.cs: Let MDI windows handle their border styles.
21878         - Set styles on MDI windows so the correct title style is derived.
21879         * MdiChildContext.cs: Move all the painting and window handling
21880         into the non client area.
21881         - Use correct sizing and put correct buttons on frames based on
21882         the FormBorderStyle.
21883         - Notify the mdi client about scrolling
21884         - Need to handle the buttons ourselves now, because they are all
21885         in non client areas and we can't add controls there.
21886         * MdiClient.cs: Halfway to scrolling, this implementation is
21887         somewhat broken though, we need to check to make sure other
21888         windows aren't causing scrolling before removing the bars. Also
21889         the bars need to be drawn on top, maybe I can switch implicit
21890         controls to be on top.
21891         * Hwnd.cs: caption_height and tool_caption_height are now
21892         properties of an hwnd, this way they can be set by the driver
21893         based on the type of window they are.  In X11 the window manager
21894         handles the decorations so caption_height is zero unless its an
21895         MDI window.
21896         - Add 3 pixel borders for MDI windows (0xFFFF).
21897         - Get rid of some code duplication, have DefaultClientRectanle
21898         just call GetClientRectangle.
21899         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
21900         Hwnd now.
21901         - Set border styles differently for mdi windows.
21902         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
21903         Hwnd now.
21904         
21905 2005-11-15  Mike Kestner  <mkestner@novell.com>
21906
21907         * Menu.cs: when adding an item to the collection, if item is already 
21908         parented, remove it from the parent.
21909
21910 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
21911
21912         * X11DesktopColors.cs: Added KDE support
21913
21914 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
21915
21916         * XplatUIWin32.cs: 
21917           - Clipboard methods now can translate Rtf format
21918           - No longer removes clipboard contents whenever a new format is added
21919             to allow placing multiple formats on the clipboard
21920         * Clipboard.cs: Clipboard now supports getting a IDataObject and
21921           will place all formats contained in it onto the clipboard. Also
21922           now cleans the clipboard before placing a new object onto it
21923         * RichTextBox.cs:
21924           - Implemented set_Rtf
21925           - Implemented set_SelectedRtf
21926           - Created InsertRTFFromStream() method to allow single code base
21927             for all properties and methods that insert RTF into document
21928           - Removed debug output
21929         * TextControl.cs:
21930           - Fixed Delete(int) to fix up line numbers
21931           - Fixed ReplaceSelection to combine start and end line
21932           - Fixed serious DeleteChars bug that would leave the document tree
21933             broken
21934           - Improved DumpTree with several logic checks to detect broken
21935             document trees
21936           - Removed debug lines
21937           - Fixed Caret.WordForward/WordBack moving code, now always also 
21938             updates caret.tag (fixes crash when word-selecting across tag
21939             boundaries via keyboard)
21940           - Added Insert() method for inserting multiline text into documents
21941           - Fixed DeleteChars() calculation errors that would cause a broken
21942             tag chain with multiple tag lines
21943           - DeleteChars() no longer crashes on multi-tag lines if not all tags
21944           - Split() no longer moves caret if split is at caret location
21945           - ReplaceSelection() now updates the cursor and re-displays it
21946           - ReplaceSelection() now uses new Insert() method to avoid code
21947             duplication
21948           - FormatText() can now handle formatting partial lines
21949         * TextBoxBase.cs:
21950           - Append now uses new TextControl.Insert() method (this avoids 
21951             duplicate code)
21952           - Implemented Ctrl-X (Cut) (
21953           - Implemented Ctrl-C (Copy)
21954           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
21955             regeneration when pasting text; roundtripping Copy&Paste within
21956             edit control still fails due to some calculation bugs in GenerateRTF)
21957           - The Delete key will now remove the current selection if it is visible
21958         * TextBox.cs: Removed debug lines
21959         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
21960           driver to be initialized and can't therefore be done via a static ctor)
21961
21962 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
21963
21964         * TextControl.cs: Added backend code for finding char arrays and strings
21965         * TextBoxBase.cs:
21966           - Added mouse wheel scroll support
21967           - Added support for VScroll and HScroll events
21968         * RichTextBox.cs:
21969           - Implemented all seven Find() variants
21970           - Implemented GetCharFromPosition()
21971           - Implemented GetCharIndexFromPosition()
21972           - Implemented GetLineFromIndex()
21973           - Implemented GetPositionFromCharIndex();
21974           - Implemented SaveFile for PlainText and UnicodeText
21975           - Fixed set_Font, now setting a new font applies that font to
21976             the whole document
21977           - Implemented generic Document to RTF converter
21978           - Implemented SaveFile for RichText format (still missing unicode
21979             conversion for non-ansi chars)
21980           - Implemented get_Rtf
21981           - Implemented get_SelectedRtf
21982
21983 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
21984
21985         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
21986           to allow any captures to be released before triggering OnClick. This
21987           way a click handler may capture the mouse without interference.
21988         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
21989           This way we send them even though X may not allow a grab (if the window
21990           isn't visible, for example)
21991
21992 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
21993
21994         * DataGridViewRowEventArgs.cs: DataGridView implementation
21995         * DataGridViewElement.cs: DataGridView implementation
21996         * DataGridViewComboBoxCell.cs: DataGridView implementation
21997         * DataGridViewDataErrorContexts.cs: DataGridView implementation
21998         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
21999         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
22000         * ImageLayout.cs: DataGridView implementation
22001         * DataGridViewComboBoxColumn.cs: DataGridView implementation
22002         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
22003         * DataGridViewSelectionMode.cs: DataGridView implementation
22004         * IDataGridViewEditingControl.cs: DataGridView implementation
22005         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
22006         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
22007         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
22008         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
22009         * DataGridViewColumnSortMode.cs: DataGridView implementation
22010         * DataGridView.cs: DataGridView implementation
22011         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
22012         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
22013         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
22014         * Padding.cs: DataGridView implementation
22015         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
22016         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
22017         * DataGridViewRowEventHandler.cs: DataGridView implementation
22018         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
22019         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
22020         * DataGridViewButtonCell.cs: DataGridView implementation
22021         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
22022         * DataGridViewEditMode.cs: DataGridView implementation
22023         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
22024         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
22025         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
22026         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
22027         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
22028         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
22029         * DataGridViewCellEventHandler.cs: DataGridView implementation
22030         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
22031         * DataGridViewCellStyleConverter.cs: DataGridView implementation
22032         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
22033         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
22034         * DataGridViewColumnEventArgs.cs: DataGridView implementation
22035         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
22036         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
22037         * QuestionEventArgs.cs: DataGridView implementation
22038         * IDataGridViewEditingCell.cs: DataGridView implementation
22039         * DataGridViewTriState.cs: DataGridView implementation
22040         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
22041         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
22042         * DataGridViewColumnCollection.cs: DataGridView implementation
22043         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
22044         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
22045         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
22046         * DataGridViewColumn.cs: DataGridView implementation
22047         * DataGridViewCellBorderStyle.cs: DataGridView implementation
22048         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
22049         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
22050         * DataGridViewRow.cs: DataGridView implementation
22051         * DataGridViewImageCellLayout.cs: DataGridView implementation
22052         * DataGridViewImageCell.cs: DataGridView implementation
22053         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
22054         * DataGridViewCheckBoxCell.cs: DataGridView implementation
22055         * DataGridViewHeaderCell.cs: DataGridView implementation
22056         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
22057         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
22058         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
22059         * DataGridViewTextBoxColumn.cs: DataGridView implementation
22060         * QuestionEventHandler.cs: DataGridView implementation
22061         * DataGridViewCellStyleScopes.cs: DataGridView implementation
22062         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
22063         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
22064         * DataGridViewCell.cs: DataGridView implementation
22065         * DataGridViewCellEventArgs.cs: DataGridView implementation
22066         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
22067         * DataGridViewCellStyle.cs: DataGridView implementation
22068         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
22069         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
22070         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
22071         * TextFormatFlags.cs: DataGridView implementation
22072         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
22073         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
22074         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
22075         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
22076         * DataGridViewButtonColumn.cs: DataGridView implementation
22077         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
22078         * HandledMouseEventArgs.cs: DataGridView implementation
22079         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
22080         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
22081         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
22082         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
22083         * DataGridViewRowCollection.cs: DataGridView implementation
22084         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
22085         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
22086         * DataGridViewHitTestType.cs: DataGridView implementation
22087         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
22088         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
22089         * DataGridViewColumnEventHandler.cs: DataGridView implementation
22090         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
22091         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
22092         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
22093         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
22094         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
22095         * DataGridViewContentAlignment.cs: DataGridView implementation
22096         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
22097         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
22098         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
22099         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
22100         * DataGridViewPaintParts.cs: DataGridView implementation
22101         * DataGridViewCellCollection.cs: DataGridView implementation
22102         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
22103         * DataGridViewImageColumn.cs: DataGridView implementation
22104         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
22105         * DataGridViewElementStates.cs: DataGridView implementation
22106         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
22107         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
22108         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
22109         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
22110         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
22111         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
22112         * DataGridViewRowHeaderCell.cs: DataGridView implementation
22113         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
22114         * DataGridViewTextBoxCell.cs: DataGridView implementation
22115         * DataGridViewBand.cs: DataGridView implementation
22116         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
22117         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
22118         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
22119         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
22120         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
22121         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
22122         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
22123         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
22124         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
22125         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
22126         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
22127
22128 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
22129
22130         * ThemeWin32Classic.cs: 
22131           - Draw the outside focus rectangle around buttons
22132           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
22133             doesn't use end caps for every dash of a line anymore. This
22134             workaround ignores the forecolor.
22135
22136 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
22137
22138         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
22139           endian safe.
22140
22141 2005-11-07  Jackson Harper  <jackson@ximian.com>
22142
22143         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
22144
22145 2005-11-07  Jackson Harper  <jackson@ximian.com>
22146
22147         * ScrollableControl.cs: Calculate the maximum and change vars
22148         (more) correctly so that scrollbars appear as a sensible size.
22149
22150 2005-11-04  Jackson Harper  <jackson@ximian.com>
22151
22152         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
22153         collection.
22154         * TreeView.cs: When the tree is sorted null out the top_node so
22155         that it is recalculated.
22156         - Use dotted lines instead of dashed lines to match MS better.
22157
22158 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
22159
22160         * ListView.cs: 
22161           - Implements key search for items. Useful when browsing files with FileDialog
22162           - When changing view mode or when clear the items reset scrollbar positions
22163
22164 2005-11-04  Jackson Harper  <jackson@ximian.com>
22165
22166         * CurrencyManager.cs: Implement the MetaDataChanged event, the
22167         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
22168         as to what the method may do as there is no real way of creating a
22169         derived CurrencyManager and calling the method. 
22170
22171 2005-11-03  Jackson Harper  <jackson@ximian.com>
22172
22173         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
22174         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
22175         method which seems to just be used internally to refresh the tabs.
22176
22177 2005-11-03  Jackson Harper  <jackson@ximian.com>
22178
22179         * TabControl.cs: Implement the remove method. Fix some broken
22180         comments.
22181
22182 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22183
22184         * DateTimePicker.cs:
22185           - Added missing DateTimePickerAccessibleObject class
22186           - Added missing events
22187           - Added OnFontChanged method
22188         * Form.cs: Added missing attributes
22189         * TreeView.cs: Added missing attributes
22190
22191 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
22192
22193         * GridItemCollection.cs: Fix signatures
22194
22195 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22196
22197         * XplatUI.cs: Updated build rev/date
22198         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
22199           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
22200         * Application.cs: Trigger context-specific ExitThread events
22201
22202 2005-11-03  Jackson Harper  <jackson@ximian.com>
22203
22204         * Menu.cs:
22205         * MainMenu.cs:
22206         * GridTableStylesCollection.cs:
22207         * Timer.cs:
22208         * TabPage.cs:
22209         * HelpProvider.cs:
22210         * StatusBar.cs:
22211         * MonthCalendar.cs: Signature fixes
22212
22213 2005-11-03  Jackson Harper  <jackson@ximian.com>
22214
22215         * TreeNodeCollection.cs: Remove should not be virtual.
22216         * TreeView.cs: Implement the last of the missing methods.
22217
22218 2005-11-03  Jackson Harper  <jackson@ximian.com>
22219
22220         * TreeNodeConverter.cs: Implement to get off my class-status back.
22221
22222 2005-11-03  Jackson Harper  <jackson@ximian.com>
22223
22224         * TreeView.cs: Hookup the bits for drag and drop.
22225         * TreeNode.cs: Don't cache the tree_view or index anymore, now
22226         that nodes can be moved from tree to tree easily this just causes
22227         all sorts of problems.
22228         * TreeNodeCollection: Don't need to give treenodes an index and
22229         treeview anymore when they are added, these are computed on the
22230         fly. Also make sure to remove a node before its added.
22231
22232 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22233
22234         * TextControl.cs:
22235           - Added CaretSelection enum
22236           - Added comparison methods to Marker struct, makes selection code
22237             more readable
22238           - Added SelectionStart and SelectionEnd as 'moveable' location for
22239             the CaretDirection enum and handler
22240           - Added selection_prev variable to track optimized invalidation for
22241             word and line selection
22242           - Added SelectionVisible property (returns true if there is a valid 
22243             selection)
22244           - Switched CaretHasFocus to only display the caret if there is no
22245             visible selection
22246           - Avoiding StringBuilder.ToString to retrieve a single char, instead
22247             using the direct character index; should be much faster
22248           - Added various conditional debug statements
22249           - Fixed invalidation calculation for selection ranges
22250           - Added ExpandSelection() method to support word and line selection
22251           - Switched SetSelectionToCaret to use new Marker compare overloads
22252           - Added central IsWordSeparator() method to determine word 
22253             separators/whitespace and FindWordSeparator() to streamline common
22254             usage of IsWordSeparator()
22255         * TextBoxBase.cs:
22256           - Removed unneeded grabbed variable, it was just mirroring
22257             Control.Capture
22258           - No longer firing OnTextChanged event when Text setter is called,
22259             since the base will fire the event for us
22260           - Added handling of Ctrl-Up/Down selection
22261           - Added handling of Shift-Cursorkey selection
22262           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
22263             words
22264           - Added handling of Shift and Ctrl-Shift-Home/End selection
22265           - Removed some debug output
22266           - Added handling for single/double/tripple-click to place caret/
22267             select word/select line respectively (Fixes bug #76031)
22268           - Added support for drag expansion of word/line selection
22269         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
22270           current selection
22271
22272 2005-11-02  Jackson Harper  <jackson@ximian.com>
22273
22274         * X11Dnd.cs: If the drag is going to and from a MWF window just
22275         copy the data instead of sending it out through the X Selection
22276         mechanism.
22277
22278 2005-11-02  Jackson Harper  <jackson@ximian.com>
22279
22280         * X11Dnd.cs:
22281         * XplatUIX11.cs: When in a drag we don't want motion notify
22282         messages to get passed on to the other controls. This prevents
22283         mouse move messages from showing up in the drag source.
22284
22285 2005-11-02  Jackson Harper  <jackson@ximian.com>
22286
22287         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
22288         the correct button is release to end a drag.
22289         * XplatUIX11.cs: Make the button state internal so the drag system
22290         can access it.  Dragging needs to know about all button releases,
22291         not just left button.
22292
22293 2005-11-02  Miguel de Icaza  <miguel@novell.com>
22294
22295         * Form.cs (Icon): If the icon is null, reset the icon to the
22296         default value. 
22297
22298         * Cursor.cs: When writing the AND-mask bitmap do not include the
22299         number of colors, but hardcode those to two (black and white),
22300         fixes the loading of color cursors (Paint Dot Net).
22301
22302         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
22303         turn off autoscaling.
22304
22305         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
22306
22307 2005-11-02  Jackson Harper  <jackson@ximian.com>
22308
22309         * X11Dnd.cs: Make sure to send a status message if the pointer
22310         enters a control that can not accept a drop, otherwise the cursor
22311         isn't updated correctly. Also tried to compress the lines of code
22312         a bit.
22313
22314 2005-11-02  Jackson Harper  <jackson@ximian.com>
22315
22316         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
22317         set actions correctly.  This isn't perfect as XDND and win32 have
22318         some differences on how you allow actions. I'll clear this up by
22319         adding a path for drag from MWF to MWF windows.
22320         * XplatUIX11.cs: Hook into the dnd system.
22321
22322 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
22323
22324         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
22325         previously shown but they are no longer need it. Very obvious when 
22326         browsing files with FileDialog.
22327
22328 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
22329
22330         * Control.cs: We always need to call OnPaintBackground. We pretty much
22331           ignore AllPaintingInWmPaint and always do the painting there, whether 
22332           it's set or not, since we always ignore the WM_ERASEBKGND message 
22333           (which we don't generate on X11). This fixes #76616.
22334         * Panel.cs: Removed unneeded background painting. This happens properly
22335           in Control.cs already
22336
22337 2005-10-31  Mike Kestner  <mkestner@novell.com>
22338
22339         * Menu.cs: Add items to collection before setting their index.
22340         * MenuItem.cs : add range checking with ArgumentException like MS.
22341         [Fixes #76510]
22342
22343 2005-10-31  Jackson Harper  <jackson@ximian.com>
22344
22345         * ListBox.cs: Invalidate if the area is visible at all not just
22346         contained in the visible rect. Fixes unselection of semi visible
22347         items.
22348
22349 2005-10-31  Jackson Harper  <jackson@ximian.com>
22350
22351         * Control.cs: Consistently name the dnd methods. Make them
22352         internal so we can override them to match some MS behavoir
22353         internally.
22354         * Win32DnD.cs: Use the new consistent names.
22355
22356 2005-10-31  Jackson Harper  <jackson@ximian.com>
22357
22358         * TreeView.cs: Don't draw the selected node when we lose focus.
22359
22360 2005-10-31  Jackson Harper  <jackson@ximian.com>
22361
22362         * X11Dnd.cs: We still need to reset the state even though a full
22363         reset isn't being done, otherwise status's still get sent all over
22364         the place.
22365
22366 2005-10-31  Jackson Harper  <jackson@ximian.com>
22367
22368         * Control.cs: Make the dnd_aware flag internal so the dnd
22369         subsystem can check it. Catch exceptions thrown in dnd handlers to
22370         match MS behavoir.
22371         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
22372         * X11Dnd.cs: Handle null data in the converters. Set the XDND
22373         version when sending a XdndEnter. Use the control/hwnd dnd_aware
22374         flags to reduce the number of dnd enters/status's sent.
22375
22376 2005-10-31  Jackson Harper  <jackson@ximian.com>
22377
22378         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
22379
22380 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
22381
22382         * PictureBox.cs: Fixes 76512
22383
22384 2005-10-28  Jackson Harper  <jackson@ximian.com>
22385
22386         * X11Dnd.cs: Early implementation to support winforms being a drag
22387         source for data on X11. Also restructured the converters so they
22388         can go both ways now.
22389         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
22390         
22391 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
22392
22393         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
22394           clipboard requests
22395
22396 2005-10-27  Jackson Harper  <jackson@ximian.com>
22397
22398         * TreeNode.cs: Implement serialization so my DnD examples will work.
22399
22400 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
22401
22402         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
22403           TreeView.cs: Don't dispose objects that are not owned.
22404           
22405 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
22406
22407         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
22408           should retrieve the current cursor and report that, but XplatUI
22409           doesn't (yet) have an interface for that (and I'm not sure I even
22410           can, on X11)
22411         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
22412           until any message loop processing is done (and the WM_SETCURSOR
22413           replaces the cursor to the proper one)
22414         * XplatUIX11.cs: 
22415           - Fixed override behaviour, we can't set the cursor globally on X11, 
22416             just for our windows.
22417           - Invalidating the System.Drawing X11 display handle when we are
22418             shutting down
22419         * Control.cs: Fix to make csc happy
22420
22421 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
22422
22423         * TextBoxBase.cs: 
22424           - get_Text: Add last line (without trailing newline) to returned
22425             value (Fixes 76212)
22426           - get_TextLength: Count last line in returned length
22427           - ToString: Call Text property instead of duplicating code
22428
22429 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
22430
22431         * ImageList.cs: Dispose ImageAttributes objects.
22432
22433 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22434
22435         * ImageList.cs: Use attribute constructors with less arguments where
22436           possible.
22437
22438 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22439
22440         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
22441           Use typeof instead of strings when assembly is referenced. Added
22442           some more comments.
22443
22444 2005-10-21  Jackson Harper  <jackson@ximian.com>
22445
22446         * ListView.cs: Raise a double click event. Also tried to somewhat
22447         fix when the selectedindexchanged event is raised. Its still
22448         broken though.
22449
22450 2005-10-21  Jackson Harper  <jackson@ximian.com>
22451
22452         * TreeView.cs: New method to invalidate the plus minus area of a
22453         node without invalidating the whole node (maybe this can be used
22454         in some more places).
22455         * TreeNodeCollection.cs: When adding to an empty node we need to
22456         invalidate its plus minus area so the little block shows up.
22457         
22458 2005-10-21  Jackson Harper  <jackson@ximian.com>
22459
22460         * TreeView.cs: Make sure that when we invalidate a node the bounds
22461         are big enough to cover the selected box and the focus
22462         rectangle. Use a different colour for the lines connecting nodes
22463         so they show up with all themes.
22464
22465 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22466
22467         * NativeWindow.cs: Don't call anything that could call into the driver,
22468           we might be on a different thread.
22469
22470 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
22471
22472         * Control.cs(Dispose): Since Dispose might run on a different thread,
22473           make sure that we call methods that could call into the driver via
22474           invoke, to avoid thread issues
22475
22476 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22477
22478         * XplatUI.cs: Removed finalizer
22479         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
22480           not allowing to be called on the finalizer thread.
22481
22482 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
22483
22484         * ImageList.cs:
22485           - Reverted r51889 and r51891.
22486           - Added ImageListItem class that stores unmodified image items and image
22487             properties required to create list images until handle is created.
22488           - Added AddItem and moved image creation logic to AddItemInternal.
22489           - Added CreateHandle method that creates images based on unmodified items.
22490           - Added DestroyHandle that changes state to store unmodified items.
22491           - Add and AddStrip methods no more create handle.
22492           - ReduceColorDepth has no return value.
22493           - Dispose destroys handle.
22494           - Modified other methods to reflect the above changes.
22495           - Implemented key support.
22496           - Added profile 2.0 members and attributes.
22497           - Added private Reset and ShouldSerialize methods that provide the same
22498             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
22499             them as they are private.
22500           - Added some more comments about implementation details.
22501
22502 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22503
22504         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
22505
22506 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22507
22508         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
22509
22510 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22511
22512         * DataGridDrawingLogic.cs: Fixes column hit calcultation
22513         * DataGridColumnStyle.cs: Remove debug message
22514
22515 2005-10-20  Jackson Harper  <jackson@ximian.com>
22516
22517         * TreeView.cs: We can always get input keys regardless of whether
22518         or not editing is enabled. They are used for navigation.
22519
22520 2005-10-20  Jackson Harper  <jackson@ximian.com>
22521
22522         * TreeNode.cs: Use the viewport rect for determining if a node
22523         needs to be moved for visibility. Don't use Begin/End edit. This
22524         calls a full refresh when its done.
22525         * TreeView.cs: New SetBottom works correctly.  Make the viewport
22526         rect property internal so the treenodes can see it. When clicking
22527         on a node we need to ensure that its visible because it might just
22528         be partly visible when clicked.
22529
22530 2005-10-20  Jackson Harper  <jackson@ximian.com>
22531
22532         * TreeNodeCollection.cs: Remove debug code.
22533
22534 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22535
22536         * Datagrid.cs: Implements column sorting in Datagrid
22537         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
22538
22539 2005-10-20  Jackson Harper  <jackson@ximian.com>
22540
22541         * TreeNodeCollection.cs: Remove items properly. Update the correct
22542         area after removing them.
22543
22544 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22545
22546         * Datagrid.cs: Should not call base.OnPaintBackground
22547
22548 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22549
22550         * XplatUIX11.cs (GetMessage):
22551           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
22552             window instead of client window
22553           - Now properly calculates NC_xBUTTONUP message coordinates
22554           - ScreenToMenu now properly calculates it's coordinates of whole 
22555             window, since menus are in the whole window, not in the client
22556             window
22557           - Added WholeToScreen coordinate translation method
22558
22559 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
22560
22561         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
22562           want to return a message, loop back to the beginning of the function
22563           and grab the next real message to process instead.
22564
22565 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22566
22567         * Splitter.cs: Properly set limits if no filler control is used
22568
22569 2005-10-19  Jackson Harper  <jackson@ximian.com>
22570
22571         * ColorDialog.cs: Don't show the help button if it is not enabled
22572         instead of disabling it (this is what MS does). Don't create the
22573         panel until the dialog is run, otherwise the vars (such as
22574         ShowHelp) are not set yet.
22575
22576 2005-10-19  Jackson Harper  <jackson@ximian.com>
22577
22578         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
22579         are reduced when adding nodes.
22580         * TreeNode.cs:
22581         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
22582         tree.
22583         
22584 2005-10-19  Jackson Harper  <jackson@ximian.com>
22585
22586         * FolderBrowserDialog.cs: End editing our treeview so the window
22587         actually gets refreshed.
22588
22589 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22590
22591         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
22592           Obsoleted handling of WM_ERASEBKGND, now always draws our background
22593           inside of WM_PAINT
22594
22595 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22596
22597         * MenuAPI.cs: Returns after Hidding window
22598         * XplatUIX11.cs: Added TODO found while debugging menu issues
22599
22600 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22601
22602         * XplatUIX11.cs: Do not re-map the whole window when it's size
22603           becomes non-zero unless it's supposed to be actually visible
22604
22605 2005-10-18  Jackson Harper  <jackson@ximian.com>
22606
22607         * TreeView.cs: We don't need to keep a count anymore.
22608         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
22609         use the Grow method.
22610
22611 2005-10-18  Jackson Harper  <jackson@ximian.com>
22612
22613         * TreeNodeCollection.cs: Insert is not supported on arrays, so
22614         implement it manually here.
22615
22616 2005-10-18  Jackson Harper  <jackson@ximian.com>
22617
22618         * ImageList.cs: Dont kill the list when the colour depth is
22619         changed, just change the colour depth of all the images.
22620         - Same goes for setting the image size. Just resize them all
22621         instead of killing the list softly.
22622
22623 2005-10-18  Jackson Harper  <jackson@ximian.com>
22624
22625         * Control.cs: Don't invalidate empty rectangles.
22626
22627 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22628
22629         * ListViewItem.cs:
22630           - Adds checked item to the Checked/Item lists (where empty before)
22631           - Do not add items to the Selected lists if they are already present
22632         * ListView.cs:
22633           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
22634           - When deleting items make sure that we delete them for the Selected
22635           and Checked list also.
22636
22637 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22638
22639         * Label.cs: Dispose objects no longer used
22640         * ThemeWin32Classic.cs: Dispose objects no longer used
22641
22642 2005-10-18  Jackson Harper  <jackson@ximian.com>
22643
22644         * TabControl.cs: Don't refresh the whole control when the tabs are
22645         scrolled, we just need to refresh the tab area.
22646
22647 2005-10-17  Jackson Harper  <jackson@ximian.com>
22648
22649         * XplatUIX11.cs: Compress code a little bit. Only calculate the
22650         after handle when we need it.
22651
22652 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22653
22654         * Control.cs: When the parent size changes, recalculate anchor 
22655           positions. Partial fix for #76462
22656
22657 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22658
22659         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
22660           drawn. Fixes #76462
22661
22662 2005-10-17  Jackson Harper  <jackson@ximian.com>
22663
22664         * MonthCalendar.cs: Don't create the numeric up down until our
22665         handle is created. Otherwise our handle is created in the
22666         constructor and we don't know if we are a WS_CHILD or WS_POPUP
22667         yet.
22668
22669 2005-10-17  Jackson Harper  <jackson@ximian.com>
22670
22671         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
22672         correctly.
22673
22674 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22675         * TreeNode.cs : small logical fix (was using local var instead of field)
22676         
22677 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22678
22679         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
22680
22681 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22682
22683         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
22684
22685 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
22686
22687         * Control.cs: 
22688           - Re-implemented anchoring code. My first version was really broken.
22689             This fixes bug #76033. Unlike the previous implementation we will
22690             no longer have round errors since all numbers are calculated from
22691             scratch every time. Removed various anchor-related obsolete vars.
22692           - InitLayout no longer causes layout event firing and layout to be 
22693             performed
22694
22695 2005-10-16  Jackson Harper  <jackson@ximian.com>
22696
22697         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
22698         which was broken).
22699
22700 2005-10-16  Jackson Harper  <jackson@ximian.com>
22701
22702         * TabControl.cs: Remove debug code.
22703
22704 2005-10-16  Jackson Harper  <jackson@ximian.com>
22705
22706         * XEventQueue.cs: Increase the default queue size (very simple
22707         apps needed to grow the queue).
22708         * Hwnd.cs: No finalizer so we don't need to suppress
22709         finalization. Compute the invalid area manually so a new rectangle
22710         does not newto be created.
22711         * ScrollableControl.cs: Don't set any params (otherwise visibility
22712         isn't set correctly).
22713         * MdiChildContext.cs: New constructor takes the mdi parent so it
22714         doesn't have to be computed and avoids a crash on windows. Draw
22715         the window icon properly, and allow the text to be seen.
22716         * Form.cs: Use new MdiChildContext constructor. Make sure the
22717         child context isn't null in wndproc.
22718         * TabControl.cs: Don't set focus, this is muddling keyboard
22719         behavoir. Expand the tab rows when a window size increase will
22720         allow extra tabs to be seen. Don't allow tabs smaller than the
22721         width of a window to be scrolled out of view.
22722         * TreeNode.cs:
22723         * TreeView.cs: Use measure string to calculate a nodes width, the
22724         width is cached and only updated when the text or the font is
22725         changed. Don't check for expand/collapse clicks on the first level
22726         nodes if root lines are disabled.
22727         
22728 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
22729
22730         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
22731
22732 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22733
22734         * DataGridBoolColumn.cs: fixes warning
22735
22736 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22737
22738         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
22739         to match more to match more precisely the MS Net behavior
22740
22741 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22742
22743         * Hwnd.cs: Added field to track if window is mapped
22744         * XplatUIX11.cs: 
22745           - Unmap windows if they become 0-size, re-map when 
22746             they are >0 again; fixes #76035
22747           - Re-set our error handler after initializing X11Desktop
22748             to override any error handlers Gtk or whatever was called
22749             may have set.
22750
22751 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22752
22753         * CheckedListBox.cs: Removed unused vars
22754         * ListView.cs: Fixed signatures
22755         * RichTextBox.cs: Removed unused vars
22756         * TextBoxBase.cs: Removed unused vars
22757         * XplatUIWin32.cs: Removed unused vars
22758         * XplatUIX11.cs: Removed unused vars
22759         * XplatUI.cs: Updated version and date to latest published
22760
22761 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22762
22763         * Cursor.cs: Added private .ctor to work around a bug in
22764           resourceset (Thanks to Geoff Norton for the help on this)
22765         * SplitterEventArgs.cs: Made fields accessible so we don't
22766           waste boatloads of objects and can reuse the same one
22767           in Splitter
22768         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
22769           any captions and borders when generating screen coordinates
22770         * Splitter.cs: Reimplemented control, now fully complete, uses
22771           rubberband drawing, supports and obeys all properties, has
22772           proper cursors
22773
22774 2005-10-13  Miguel de Icaza  <miguel@novell.com>
22775
22776         * Form.cs (Form): Setup default values for autoscale and
22777         autoscale_base_size;  Make these instance variables, not static
22778         variables. 
22779
22780         (OnLoad): on the first load, adjust the size of the form.
22781
22782 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22783
22784         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
22785           width argument to DrawReversibleRectangle()
22786         * XplatUIWin32.cs, XplatUIX11.cs: 
22787           - Implemented width for DrawReversibleRectangle()
22788           - Added logic to DrawReversibleRectangle that recognizes a zero
22789             width or height and only draws a line in that situation
22790         
22791 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
22792
22793         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
22794         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
22795         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
22796           method (it uses our FosterParent window to get a graphics context)
22797
22798 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
22799
22800         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
22801           and SetWindowBackground methods
22802         * Control.cs:
22803           - Setting proper ControlStyles
22804           - We no longer call XplatUI.SetWindowBackground and XplatUI.
22805             EraseWindowBackground, instead we draw the window background
22806             ourselves in PaintControlBackground. This behaviour is
22807             required to match MS, where, when OnPaintBackground is not
22808             called, the background is not drawn.
22809           - Removed unneeded Refresh() in set_Text
22810         * Hwnd.cs: Dropped the ErasePending support. No longer needed
22811         * XplatUIX11.cs:
22812           - Created DeriveStyles method to translate from CreateParams to
22813             FormBorderStyle and TitleStyle, also handles BorderStyle (which
22814             matches FormBorderStyle enum values)
22815           - Consolidated SetHwndStyles and CalculateWindowRect border/title
22816             style calculations into single DeriveStyles method
22817           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
22818             from redrawing the whole window on any resize or expose.
22819           - Fixed CreateWindow usage of SetWindowValuemask. Before not
22820             all styles were applied to our whole/client window appropriately
22821           - Removed EraseWindowBackground() and SetWindowBackground() methods
22822           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
22823             no longer clear/redraw the background through X
22824           - Removed handling of erase_pending bit, we have no use for it (or
22825             so it seems)
22826         * XplatUIOSX.cs:
22827           - Removed generation and handling of WM_ERASEBKGND message
22828           - Removed EraseWindowBackground() and SetWindowBackground() methods
22829           - Removed handling of hwnd.ErasePending flag
22830         * XplatUIWin32.cs:
22831           - Removed EraseWindowBackground() and SetWindowBackground() methods
22832           - We no longer call EraseWindowBackground on PaintEventStart, we 
22833             ignore the fErase flag, erasing is handled in Control in the
22834             background handler
22835         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
22836           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
22837           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
22838           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
22839           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
22840           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
22841           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
22842
22843 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
22844
22845         * PropertyGrids.cs: Get sub properties
22846         * PropertyGridView.cs: Fix drawing code
22847
22848 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22849
22850         * ListBox.cs: Fixes 76383
22851
22852 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22853
22854         * DataGridTextBoxColumn.cs: Sets location and size before attachment
22855         * ThemeWin32Classic.cs: Fixes border drawing and calculations
22856         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
22857
22858
22859 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22860
22861         * ComboBox.cs: Fixes border drawing
22862
22863 2005-10-10  Miguel de Icaza  <miguel@novell.com>
22864
22865         * MimeIcon.cs: Ignore errors if the file can not be read.
22866
22867 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22868
22869         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
22870          - Fixed border calculations
22871          - Fixed horizontal scrolling in single column listboxes
22872          - Fixed drawing issues
22873
22874 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
22875
22876         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
22877           FormBorderStyle enum
22878         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
22879           code to determine FormBorderStyles from CreateParams
22880         * Form.cs:
22881           - Fixed bug where we'd set the wrong window styles if we were
22882             not creating an MDI window
22883           - Added call to XplatUI.SetBorderStyle when form borders are set
22884         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
22885         * Hwnd.cs:
22886           - Removed obsolete edge style
22887           - Switched from BorderStyle to FormBorderStyle
22888         
22889 2005-10-10  Jackson Harper  <jackson@ximian.com>
22890
22891         * Form.cs: Use the property to get the window handle instead of
22892         accessing it directly. Prevents a null reference exception.
22893
22894 2005-10-10  Jackson Harper  <jackson@ximian.com>
22895
22896         * TreeView.cs: Don't adjust the rect given to DrawString now that
22897         our libgdiplus draws correctly.
22898
22899 2005-10-08  Jackson Harper  <jackson@ximian.com>
22900
22901         * TreeView.cs: Don't try to find the clicked on node if there are
22902         no nodes in the tree.
22903
22904 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22905
22906         * RichTextBox.cs:
22907
22908           restore
22909
22910 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22911
22912         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
22913           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
22914           ErrorProvider.cs:
22915           Use ResPool for brushes and dispose System.Drawing objects that
22916           are not used anymore.
22917
22918 2005-10-07  Jackson Harper  <jackson@ximian.com>
22919
22920         * MdiChildContext.cs: Use the new borders instead of drawing them
22921         ourselves.
22922
22923 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22924
22925         * Calling UpdateBounds after changing the window's BorderStyle 
22926         since the style can change the ClientSize
22927
22928 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22929
22930         * Control.cs: Made PaintControlBackground virtual
22931         * Panel.cs: Overriding PaintControlBackground instead of using paint
22932           event; paint event method was interfering with 'real' users of the
22933           event.
22934
22935 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22936
22937         * ThemeWin32Classic.cs: remove border drawing since it is handled
22938         by the base control class now and was causing double border drawing.
22939
22940 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22941
22942         * Panel.cs: Redraw our background on paint. Not a pretty solution,
22943           but it does seem to match MS behaviour. This fixes bug #75324
22944
22945 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22946
22947         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
22948           somewhat hackish looking
22949
22950 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22951
22952         * TextBoxBase.cs:
22953           - We now accept Enter even if AcceptEnter is false, if the containing
22954             form does not have an AcceptButton configured (fixes bug #76355)
22955           - Calculations are now fixed to no longer use Width/Height, but
22956             ClientSize.Width/Height, since we now support borders (this was
22957             a result of fixing borders and therefore bug #76166)
22958           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
22959             true (fixes bug #76354)
22960         
22961 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22962
22963         * Control.cs: 
22964           - Defaulting BorderStyle and setting it in XplatUI when our window 
22965             is created
22966           - Added enum check to InternalBorderStyle setter
22967         * XplatUIX11.cs: 
22968           - Added drawing of window borders
22969           - Now properly calculates WM decorations offset for toplevel 
22970             windows (fixes bug #74763)
22971         * XplatUIWin32.cs: 
22972           - Implemented BorderStyles for windows (we're letting win32 draw 
22973             the border for us)
22974           - Fixed the signature for SetWindowLong
22975         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
22976           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
22977           setting borders
22978         * UpDownBase.cs: Remove drawing of borders, this is handled by
22979           the driver, outside the client area
22980         * ListView.cs: Removed bogus border calculations. The control should
22981           be oblivious to borders, since those are not part of the client
22982           area. 
22983         * X11DesktopColors.cs: Commented out (currently) unneeded variables
22984         * ThemeWin32Classic.cs: Removed border calculations from ListView 
22985           drawing code
22986
22987 2005-10-06  Jackson Harper  <jackson@ximian.com>
22988
22989         * MdiChildContext.cs: Clear out the old virtual position remove
22990         all the unneeded calls to CreateGraphics.
22991
22992 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22993
22994         * TextControl.cs: Use proper color for highlighted text; fixes #76350
22995
22996 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22997
22998         * Form.cs: 
22999           - Added loading and setting of our new default icon
23000           - Only set icon if window is already created
23001
23002 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
23003
23004         * Label.cs:
23005           - Do not explicitly set the foreground and background colors, to
23006             allow inheriting from parents (fixes #76302)
23007           - Use Control's InternalBorderStyle property to deal with borders
23008
23009 2005-10-06  Jackson Harper  <jackson@ximian.com>
23010
23011         * MdiChildContext.cs: Use the new xplatui function to draw a
23012         reversible rect.
23013
23014 2005-10-06  Jackson Harper  <jackson@ximian.com>
23015
23016         * Form.cs: Add the parent before creating the child context cause
23017         we need the parent when setting up the child.
23018
23019 2005-10-06  Jackson Harper  <jackson@ximian.com>
23020
23021         * FolderBrowserDialog.cs: redo the tree population code so a
23022         second thread isn't used. Should be a lot faster and more stable
23023         now.
23024
23025 2005-10-05  Jackson Harper  <jackson@ximian.com>
23026
23027         * TreeView.cs: There are no expand/collapse boxes if the node has
23028         no children.
23029
23030 2005-10-05  Jackson Harper  <jackson@ximian.com>
23031
23032         * X11DesktopColors.cs: Get menu colours for the gtk theme.
23033
23034 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
23035
23036         * FileDialog.cs: Fix InitialDirectory
23037
23038 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
23039
23040         * ComboBox.cs:
23041                 - Fixes changing between styles
23042                 - Fixes simple mode
23043                 - Fixes last item crashing when navigating with keyboard
23044
23045 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
23046
23047         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
23048
23049 2005-10-05  Jackson Harper  <jackson@ximian.com>
23050
23051         * TreeView.cs: If updating the root node do a full refresh.
23052         * TreeNode.cs: The root node should be expanded by default. Also
23053         added a utility prop to tell if we are the root node.
23054         * TreeNodeCollection.cs: Only refresh if the node we are being
23055         added to is expanded. Also added a comment on a potential
23056         optimization.
23057         
23058 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
23059
23060         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
23061           in dispose method. Fixes #76330
23062
23063 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
23064
23065         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
23066
23067                 - Implements vertical and horizontal scrolling using XplatUI
23068                 - Fixes keyboard navagation
23069                 - Fixes EnsureVisible
23070                 - Drawing fixes
23071                 - Handles and draws focus properly
23072
23073
23074 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
23075
23076         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
23077           Create handle. NET_2_0: Destroy handle when value is null.
23078
23079 2005-10-03  Jackson Harper  <jackson@ximian.com>
23080
23081         * ScrollBar.cs: My last scrollbar patch was broken. This is a
23082         revert and a new patch to prevent the thumb from refreshing so
23083         much.
23084
23085 2005-10-02  Jackson Harper  <jackson@ximian.com>
23086
23087         * ScrollBar.cs: Don't update position if it hasn't actually
23088         changed. This occurs when you hold down the increment/decrement
23089         buttons and the thumb gets to the max/min.
23090
23091 2005-10-01  Jackson Harper  <jackson@ximian.com>
23092
23093         * Form.cs:
23094         * MdiChildContext.cs:
23095         * MdiClient.cs: Implement ActiveMdiChild in Form.
23096
23097 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
23098
23099         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
23100
23101 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
23102
23103         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
23104           be found
23105
23106 2005-09-30  Jackson Harper  <jackson@ximian.com>
23107
23108         * ListBox.cs: Don't do a full refresh unless some data has
23109         actually changed.
23110
23111 2005-09-30  Jackson Harper  <jackson@ximian.com>
23112
23113         * TreeView.cs: Make sure that the checkboxes size is factored in
23114         even when not visible.
23115
23116 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
23117
23118         * FileDialog.cs: Fix Jordi's build break
23119
23120 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
23121
23122         * FileDialog.cs: 
23123                 - Use standard the Windows colours for the combobox as espected
23124                 - Dispose objects that use resouces when no longer need them
23125
23126 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
23127
23128         * X11DesktopColors.cs: Initial incomplete implementation
23129         * XplatUIX11.cs: Added call to initialize X11DesktopColors
23130
23131 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
23132
23133         * Theme.cs: 
23134           - Switched Theme color names to match the names defined in 
23135             System.Drawing.KnownColors. Life's hard enough, no need to make 
23136             it harder.
23137           - Added setters to all theme color properties so themes can set
23138             their color schemes. The setters also propagate the color changes
23139             to System.Drawing.KnownColors via reflection
23140         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
23141           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
23142           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
23143           use the new, more logical theme color names
23144         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
23145           post-NT colors
23146         * ThemeWin32Classic.cs:
23147           - Removed code to set the old classic Windows colors. Instead it
23148             now relies on the colors returned by System.Drawing.KnownColors
23149             which will be either modern static colors (Unix) or colors
23150             read from the user's configuration (Win32)
23151           - Updated to use the new, more logical theme color names
23152           - Switched DataGrid drawing code to use only Theme colors instead of
23153             a mix of System.Drawing.KnownColors and Theme colors
23154           - DrawFrameControl(): Removed code that fills the button area, the
23155             fill would overwrite any previous fill done by a control. This
23156             fixes bug #75338 
23157           - Added DrawReversibleRectangle() stub
23158         * ScrollableControl.cs: Set visible state to false when scrollbars
23159           are removed (pdn fix)
23160         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
23161           DrawReversibleRectangle() method to allow drawing primitive 
23162           'rubber bands'
23163         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
23164
23165 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23166
23167         * ImageList.cs: Add(Icon): Create handle.
23168
23169 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
23170
23171         * ListView.cs:
23172         * ThemeWin32Classic.cs:
23173                 - Fixes detail mode
23174                 - Sets clippings
23175                 - Issues with drawing
23176
23177 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23178
23179         * ImageList.cs: Moved RecreateHandle back to ImageList as event
23180           source has to be the ImageList.
23181
23182 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23183
23184         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
23185
23186 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23187
23188         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
23189
23190 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23191
23192         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
23193
23194 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
23195         * GridItem.cs: Fixed TODOs
23196         * GridItemCollection.cs: Added ICollection interface
23197
23198 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23199
23200         * ImageList.cs: Resize icons when needed.
23201
23202 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
23203
23204         * ListViewItem.cs
23205                 - Fixes GetBounds and returns on screen rects
23206         * ListView.cs:
23207                 - Fixes vertical and horzintal scrolling of items
23208         * ThemeWin32Classic.cs:
23209                 - Fixes drawing
23210                 
23211 2005-09-29  Raja R Harinath  <harinath@gmail.com>
23212
23213         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
23214
23215 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
23216
23217         * ImageList.cs: Added comments about handle creation. Moved Handle,
23218           HandleCreated and OnRecreateHandle implementations to ImageCollection.
23219           Handle is created in Add methods.
23220
23221 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
23222          
23223         * DataGridDrawingLogic.cs: 
23224                 - Takes rows into account on Colum calculations
23225                 - Returns the column when clickig
23226         * DataGrid.cs:
23227                 - Fixes default HitTestInfo values
23228                 - Fixes HitTestInfo.ToString
23229                 - Fixes ResetBackColor          
23230         
23231 2005-09-28  Jackson Harper  <jackson@ximian.com>
23232
23233         * MdiChildContext.cs: Obey rules for fixed sized windows (no
23234         sizing or cursor changes). Also added some temp code to draw the
23235         titlebars text (Makes dev a little easier).
23236
23237 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
23238
23239         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
23240
23241 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
23242          
23243         * ListBox.cs: Fixes bug 76253
23244
23245 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
23246
23247         * ImageList.cs: Added comments about the current implementation. Added
23248           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
23249           Format32bppArgb to preserve transparency and can use Graphics.FromImage
23250           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
23251           with Bitmap.LockBits for better performance. Revised the whole file to
23252           match MS.NET behaviour and provide better performance. Non-public
23253           interface members are calling public members even when they throw
23254           NotSupportedException for better maintainability. Moved ColorDepth,
23255           ImageSize, ImageStream and TransparentColor implementations to
23256           ImageCollection for better performance as these properties are not used
23257           by ImageList.
23258         * ImageListStreamer.cs: Added a new internal constructor that takes an
23259           ImageList.ImageCollection and serializes Images based on
23260           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
23261           match ImageList property name.
23262
23263 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
23264
23265         * ListBox.cs: Fixes IndexFromPoint for last item
23266
23267 2005-09-27  Jackson Harper  <jackson@ximian.com>
23268
23269         * Form.cs: Set the position of new mdi children correctly.
23270
23271 2005-09-27  Jackson Harper  <jackson@ximian.com>
23272
23273         * MdiClient.cs: New mdi children need to be added to the back of
23274         the controls collection so the zorder is set correctly. Also add a
23275         count of all the child windows that have been created.
23276
23277 2005-09-27  Jackson Harper  <jackson@ximian.com>
23278
23279         * Form.cs (CreateParams): Setup MDI forms correctly.
23280
23281 2005-09-27  Jackson Harper  <jackson@ximian.com>
23282
23283         * MdiChildContext.cs:
23284         * MonthCalendar.cs:
23285         * UpDownBase.cs:
23286         * ListBox.cs:
23287         * ListView.cs:
23288         * TextBoxBase.cs:
23289         * TreeView.cs:
23290         * ScrollableControl.cs:
23291         * ComboBox.cs: Add implicit controls using the new implict control
23292         functionality in ControlCollection. Also try to block multiple
23293         control add in a suspend/resume layout to save some cycles.
23294         
23295 2005-09-27  Jackson Harper  <jackson@ximian.com>
23296
23297         * Control.cs: Add functionality to the controls collection to add
23298         'implicit controls' these are controls that are created by the
23299         containing control but should not be exposed to the user. Such as
23300         scrollbars in the treeview.
23301         * Form.cs: The list var of the ControlsCollection is no longer
23302         available because of the potential of implicit controls getting
23303         ignored by someone accessing the list directly.
23304
23305 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
23306
23307         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
23308           loose it's parent. (Fixed bug introduced in r49103 when we added
23309           setting the child parent to null on Remove)
23310
23311 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
23312
23313         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
23314         * Splitter.cs: Added missing attributes for BorderStyle property.
23315         * TextBoxBase.cs: Marked Calculate* methods internal.
23316         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
23317         MS.NET.
23318
23319 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
23320          
23321         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
23322
23323 2005-09-25  Jackson Harper  <jackson@ximian.com>
23324
23325         * TreeView.cs: Update the node bounds correctly regardless of
23326         whether the node is visible.
23327
23328 2005-09-25  Jackson Harper  <jackson@ximian.com>
23329
23330         * ImageList.cs: Don't dispose the image after it is added to the
23331         image list. Only reformat images that need to be resized.
23332
23333 2005-09-25  Jackson Harper  <jackson@ximian.com>
23334
23335         * ImageList.cs: Don't set the format when changing the image.
23336
23337 2005-09-25  Jackson Harper  <jackson@ximian.com>
23338
23339         * TreeView.cs: We can't just assume the node has a font. Use the
23340         treeviews font if no node font is available.
23341
23342 2005-09-25  Jackson Harper  <jackson@ximian.com>
23343
23344         * TreeView.cs: Allow the scrollbars to be reset with negative
23345         values.
23346         - Don't add scrollbars to negative sized windows.
23347
23348 2005-09-23  Jackson Harper  <jackson@ximian.com>
23349
23350         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
23351         old Mono.Posix. Also remove some stray code that shouldn't have
23352         been committed.
23353
23354 2005-09-23  Jackson Harper  <jackson@ximian.com>
23355
23356         * TreeView.cs: Attempt at proper sizing of the horizontal
23357         scrollbar. Also don't resize the scrollbars unless they are
23358         visible.
23359
23360 2005-09-23  Jackson Harper  <jackson@ximian.com>
23361
23362         * TreeView.cs: We don't need to expand the invalid area when the
23363         selection changes, as this is all drawn in the node's bounding
23364         box. The area needs to be expanded (previous typo was contracting
23365         it) when the focus rect moves.
23366
23367 2005-09-23  Jackson Harper  <jackson@ximian.com>
23368
23369         * TreeView.cs: Display the selection box under the correct
23370         circumstances. We were rendering white text with no selection box
23371         before.
23372
23373 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
23374
23375         * TextControl.cs(Split): Now updates selection start/end if it points 
23376           into a line that's being split. Fixes a FIXME and bug #75258
23377
23378 2005-09-23  Jackson Harper  <jackson@ximian.com>
23379
23380         * Binding.cs:
23381         * ListControl.cs: Don't use the path when retrieving binding
23382         managers from the binding context. My bat sense tells me that the
23383         path is only used on insertion.
23384
23385 2005-09-22  Jackson Harper  <jackson@ximian.com>
23386
23387         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
23388
23389 2005-09-22  Jackson Harper  <jackson@ximian.com>
23390
23391         * Splitter.cs: There are special cursors used for splitting.
23392         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
23393
23394 2005-09-22  Jackson Harper  <jackson@ximian.com>
23395
23396         * Splitter.cs: Change the cursor appropriately when the splitter
23397         is moused over, so the user actually knows there is a splitter
23398         there.
23399
23400 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23401
23402        * Label.cs : Fix ToString method to give same output as MS.NET
23403
23404 2005-09-22  Jackson Harper  <jackson@ximian.com>
23405
23406         * TreeView.cs: Create the scrollbars when the handle is created
23407         and add them right away, just make them invisble. Also account for
23408         the window being shrunk vertically to the point that the vert
23409         scrollbar needs to be added.
23410         - Remove some 0.5 adjustments to get around anti aliasing issues.
23411         
23412 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
23413          
23414         * MainMenu.cs: Fixes default value
23415         * MenuItem.cs: Fixes default value
23416
23417 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
23418
23419         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
23420
23421 2005-09-21  Jackson Harper  <jackson@ximian.com>
23422
23423         * Control.cs: Don't try to set the border style on the window if
23424         it hasn't been created. When the window is created the border
23425         style will be used.
23426
23427 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23428
23429         * Control.cs (Update): Don't call XplatUI if we don't have a
23430           window handle yet
23431
23432 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23433
23434         * ContainerControl.cs: Instead of throwing an exception, print
23435           a one-time warning about Validate not being implemented
23436         * XplatUIWin32.cs: Removed debug output
23437
23438 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23439
23440         * Control.cs: Only set XplatUI background if we expect the windowing
23441           system to handle the background. This stops controls that draw their
23442           own background from flickering
23443
23444         * XplatUIX11.cs: Support custom visuals and colormaps for window 
23445           creation. This allows, amongst other things, using MWF X11 windows 
23446           with OpenGL.
23447
23448 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23449
23450         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
23451           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
23452           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
23453           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
23454           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
23455           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
23456           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
23457           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
23458           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
23459           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
23460           GridColumnStylesCollection.cs, 
23461           IDataGridColumnStyleEditingNotificationService.cs,
23462           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
23463           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
23464           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
23465           TreeNodeCollection.cs, AmbientProperties.cs, 
23466           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23467           DataObject.cs, ErrorProvider.cs, Splitter.cs,
23468           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
23469           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
23470           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
23471           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
23472           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
23473           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
23474           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
23475           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
23476           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
23477           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
23478           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
23479           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
23480           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
23481           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
23482           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
23483           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
23484           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
23485           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
23486           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
23487           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
23488           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
23489           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
23490           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
23491           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
23492           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
23493           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
23494           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
23495           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
23496           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
23497           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
23498           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
23499           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
23500           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
23501           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
23502           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
23503
23504 2005-09-21  Jackson Harper  <jackson@ximian.com>
23505
23506         * TreeNode.cs: Call Before/After Expand not Collapse when
23507         expanding.
23508
23509 2005-09-20  Jackson Harper  <jackson@ximian.com>
23510         
23511         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
23512
23513 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23514          
23515         * ListViewItem.cs:
23516                 - Fixes bug 76120
23517                 - Fixes proper storing of subitems
23518                 - Fixes not updated items
23519
23520 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
23521
23522         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
23523           things if our window handle isn't created yet. Also disabled 
23524           debug for TextBoxBase
23525
23526 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
23527
23528         * MenuAPI.cs: Remove filtering of events to allow menu usage
23529
23530 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23531
23532         * Cursor.cs: Allow null to be passed to Cursor.Current.
23533
23534 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
23535
23536         * ThemeWin32Classic.cs:
23537           - Change some private methods/fields to protected virtual so that 
23538             they can be accessed and overriden in derived classes
23539           - First refactoring of some methods. Derived themes now don't 
23540             need to duplicate the complete code from ThemeWin32Classic
23541         * ThemeNice.cs:
23542           - Added nice StatusBar
23543           - Derive from ThemeWin32Classic and not Theme
23544           - Removed duplicate ThemeWin32Classic code
23545
23546 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23547
23548         * Control.cs (ControlCollection.Add): If the value null is passed
23549         the control is ignored. 
23550
23551         Optimize this loop.
23552
23553 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
23554
23555         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
23556           PostQuitMessage state.
23557         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
23558
23559 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
23560
23561         * Application.cs: Our constructor will never get called, move 
23562           initialization to fields; fixes bug #75933
23563
23564 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23565
23566         * FileDialog.cs :
23567                 - Allow files to be selected properly using file name
23568                 combo box.
23569                 - Add ability to change diretory (absolute / relative)
23570                 using file name combo box.
23571
23572 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23573          
23574         * ListBox.cs: 
23575                 - Fixes Multicolumn listboxes item wrong calculations
23576                 - Allows to click when only one item is in the listbox
23577                 - Fixes crash when no items using keyboard navigation
23578
23579 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
23580
23581         * ComboBox.cs: Reverted almost everything from the latest patch which
23582           broke ComboBox
23583
23584 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
23585         
23586         * ToolTip.cs:
23587                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
23588         * ComboBox.cs:
23589                 - When DropDownStyle is Simple, it does not show scrollbar 
23590                 to the last item of the list.
23591                 - When DropDownStyle is Simple, it crashed when the list was 
23592                 scrolled down with the down cursor key.
23593                 - Fixed a bug that when DropDownStyle is DropDownList, the 
23594                 selected item was not shown.
23595                 - The position of the selected item was not preserved when 
23596                 the next dropdown happened.
23597         * ThemeWin32Classic.cs:
23598                 - Items were wrapped at the right end.
23599         * CheckedListBox.cs:
23600                 - Fixed Add method
23601         * ListBox.cs:
23602                 - Items should be fully shown.
23603                 - When resizing and vertical scrollbar disappeared, the item 
23604                 of index 0 should be on the top of the list.
23605                 - GetItemRectangle should consider the size of ver. scrollbar
23606         * StatusBar.cs:
23607                 - SizingGrip area should not be allocated when it is not 
23608                 displayed.
23609                 - Now it reflects MinWidth of the containing panel and 
23610                 fixed a crash that happens when its width becomes so small.
23611
23612 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23613
23614         * CheckedListBox.cs: Fixes bug 76028
23615         * ListBox.cs: Fixes bug 76028
23616
23617 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23618
23619         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
23620         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
23621
23622 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
23623
23624         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
23625
23626 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23627
23628         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
23629
23630 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23631
23632         * IRootGridEntry.cs: Added
23633         * PropertyGridCommands.cs: Added
23634         * PropertiesTab.cs: Added missing methods and property
23635         * PropertyGridView.cs: Made class internal
23636         * PropertyGridTextBox.cs: Made class internal
23637
23638 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23639
23640         * MimeIcon.cs: Try to check some other environment variables
23641           if "DESKTOP_SESSION" returns "default"
23642
23643 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23644
23645         * ThemeNice.cs: Corrected background colors (e.g. menus)
23646         * ColorDialog.cs: Use correct background colors for controls
23647
23648 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23649
23650         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
23651
23652 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
23653
23654         * RichTextBox.cs: Added initial implementation
23655         * lang.cs: Removed. Was accidentally checked in long time ago
23656         * TODO: Removed. Contents were obsolete
23657
23658 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23659                                                                                 
23660         * PropertiesTab.cs : Added
23661
23662 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23663                                                                                 
23664         * PropertyGrid.cs : Update
23665         * PropertyGridView.cs : Update
23666         * System.Windows.Forms.resx : Added images and strings
23667
23668 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
23669
23670         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
23671  
23672 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
23673
23674         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
23675           a busy loop right after the Ungrab the X11 display is otherwise 
23676           blocked
23677
23678 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
23679
23680         * ThemeWin32Classic.cs: Optimise the use of clipping
23681
23682 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
23683
23684         * DataGrid.cs: fixes recursion bug
23685
23686 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
23687
23688         * ThemeNice.cs: 
23689           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
23690           - Cleanup
23691
23692 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
23693
23694         * ThemeNice.cs: Draw nice ProgressBars
23695
23696 2005-09-01  Miguel de Icaza  <miguel@novell.com>
23697
23698         * VScrollBar.cs: Another buglet found by Aaron's tool. 
23699
23700         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
23701         bug finder.
23702
23703 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
23704
23705         * ThemeNice.cs:
23706           - Added nicer menu drawing
23707           - Updated DrawTab
23708           - some refactoring
23709
23710 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23711
23712         * CreateParams.cs (ToString): Made output match MS
23713         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
23714             handle is already created (to avoid forcing window creation)
23715         * XplatUIX11.cs: Set window text to caption after creating window,
23716           in case Text was set before window was created
23717         * Form.cs: Use this.Text instead of a static string as caption
23718
23719 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23720
23721         * NotifyIcon.cs: Don't set the window to visible; this screws
23722           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
23723           OnPaint without a bitmap)
23724         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
23725           happen very often anyway; we could add the check to the WM_PAINT 
23726           event generation code
23727
23728 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23729
23730         * NotifyIcon.cs: Fill the icon area with a background color, to 
23731           avoid 'residue' when transparent icons are drawn
23732         * XplatUIX11.cs:
23733           - Handle whole_window == client_window when destroying windows
23734           - SystrayAdd(): Set client_window to whole_window value to
23735             get mouse and other events passed to NotifyIcon
23736
23737 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23738
23739         * Form.cs: Set proper default for Opacity property
23740         * NotifyIcon.cs:
23741           - ShowSystray(): Don't bother creating telling the OS
23742             about the systray item if no icon is provided
23743           - Now handles WM_NCPAINT message to deal with whole/client window
23744             split
23745           - Create window as visible to not get caught by Expose optimization
23746         * Hwnd.cs: Removed debug message
23747         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
23748           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
23749             PaintEventStart/End to use new client argument
23750         * TextBoxBase.cs:
23751           - Commented out debug messages
23752           - Switched PaintEventStart/End to use new client argument
23753         * XplatUI.cs: Added client window bool to PaintEventStart()/
23754           PaintEventEnd() calls, to support drawing in non-client areas
23755         * XplatUIDriver.cs: 
23756           - Added client window bool to PaintEventStart()/PaintEventEnd() 
23757             calls, to support drawing in non-client areas
23758           - Added conditional compile to allow using MWF BeginInvoke 
23759             on MS runtime
23760         * XplatUIX11.cs:
23761           - Added some conditional debug output
23762           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
23763             whole/client window split
23764           - Implemented handling of client argument to PaintEventStart()/End()
23765         * Control.cs:
23766           - Throw exception if BeginInvoke() is called and the window handle
23767             or one of the window's parent handles is not created
23768           - Added conditional compile to allow using MWF BeginInvoke on
23769             MS runtime
23770           - get_Parent(): Only sets parent if handle is created. This avoids
23771             forcing window handle creation when parent is set.
23772           - Now fires Layout and Parent changed events in proper order
23773           - Switched to use Handle instead of window.Handle for Z-Order setting,
23774             the get_Parent() patch above causes us to possibly get null for 'window'
23775           - Implemented handling of client argument to PaintEventStart()/End()
23776           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
23777             default handling)
23778           - Now sends a Refresh() to all child windows when Refresh() is called
23779
23780 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
23781
23782         * Form.cs: Added (non-functional) Opacity property
23783         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
23784
23785 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
23786         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
23787           use export MONO_THEME=nice to activate it.
23788           Currently supported controls:
23789           - Button
23790           - ComboBox
23791           - ScrollBar
23792           - TabControl (TabAlignment.Top only, other will follow)
23793         * ThemeEngine.cs: Add theme nice
23794         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
23795           if enabled
23796
23797 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
23798
23799         * Splitter.cs: Resize docked control and its neighbor.
23800
23801 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23802         -- Making Windows with Menus layout correctly --
23803         * Form.cs : The first leg of the fix
23804                 Menu setter - adjust Client Size as needed to make space for the menu
23805                 SetClientSizeCore - doesn't call base version to be able to pass the 
23806                         menu handle to XplatUI.CalculateWindowRect
23807         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
23808         * XplatUIX11.cs: The critical second leg of the fix
23809                 GetWindowPos needs to use a recalculated client_rect
23810                 so that resizing the window doesn't break layout of child controls. 
23811                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
23812                 Lots of \t\n killed
23813
23814 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
23815
23816         * Label.cs: Now properly recalculates width and height on Font and Text
23817           changes if AutoSize is set
23818
23819 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23820         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
23821
23822 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
23823
23824         * ImageList.cs: Makes ToString method compatible with MS
23825
23826 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
23827
23828         * MenuAPI.cs: fixes bug 75716
23829
23830 2005-08-11 Umadevi S <sumadevi@novell.com>
23831         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
23832
23833 2005-08-11 Umadevi S <sumadevi@novell.com>
23834         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
23835
23836 2005-08-10  Umadevi S <sumadevi@novell.com>
23837         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
23838
23839 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
23840
23841         * Menu.cs: fixes bug 75700
23842         * MenuAPI.cs: fixes navigation issues
23843
23844 2005-08-09  Umadevi S <sumadevi@novell.com>
23845         * CheckedListBox.cs - simple fix for GetItemChecked.
23846
23847 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
23848
23849         * ComboBox.cs: Serveral fixes
23850         * ListBox.cs: Serveral fixes
23851
23852 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23853
23854         * ComboBox.cs: Fixes FindString methods and GetItemHeight
23855         * ListBox.cs: Fixes FindString methods
23856
23857 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23858
23859         * DataGrid.cs: fixes bugs exposed by new tests
23860
23861 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
23862
23863         * Mime.cs: Compile Mono assembly references only if compiling
23864           with Mono (Allows to build with VS.Net again)
23865
23866 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
23867
23868         * Control.cs (PaintControlBackground): Draw background image
23869         corrrectly.
23870         (CheckForIllegalCrossThreadCalls): Stubbed.
23871         
23872         * Form.cs (OnCreateControl): Center when should be centered.
23873         
23874         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
23875
23876 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
23877
23878         * Binding.cs: Binding to properties should be case unsensitive
23879
23880 2005-07-18 vlindos@nucleusys.com
23881
23882         * DataGrid.cs: fixes setmember order
23883
23884 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
23885
23886         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
23887         * FileDialog.cs: FileDialog is now resizable and uses the new
23888           MimeIconEngine
23889
23890 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
23891
23892         * DataGridTextBoxColumn.cs: default value
23893         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
23894         * GridTableStylesCollection.cs: fixes checking MappingName
23895         * DataGridDrawingLogic.cs: fixes drawing logic issues
23896         * DataSourceHelper.cs: rewritten to make compatible with more data sources
23897         * DataGrid.cs: fixes    
23898
23899 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
23900
23901         * MimeGenerated.cs: Use case sensitive comparer for
23902           NameValueCollections
23903
23904 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
23905
23906         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
23907         * ThemeWin32Classic.cs: bug fixes, code refactoring
23908         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
23909         * DataGrid.cs: bug fixes, code refactoring
23910         * DataGridTextBox.cs: bug fixes, code refactoring
23911         * DataGridColumnStyle.cs:  bug fixes, code refactoring
23912         * Theme.cs:  bug fixes, code refactoring
23913
23914 2005-07-01  Peter Bartok  <pbartok@novell.com> 
23915
23916         * TextControl.cs: Quick fix for the reported crash on ColorDialog
23917           and other text box usage
23918
23919 2005-07-01  Jackson Harper  <jackson@ximian.com>
23920
23921         * TabControl.cs: Make sure the bottom of the tab covers the pages
23922         border.
23923
23924 2005-06-30  Peter Bartok  <pbartok@novell.com> 
23925
23926         * Form.cs (ShowDialog): Assign owner of the dialog
23927         * TextBoxBase.cs: Always refresh caret size when deleting, caret
23928           might have been moved to a tag with different height
23929
23930 2005-06-30  Jackson Harper  <jackson@ximian.com>
23931
23932         * Form.cs: Don't create an infinite loop when setting focus
23933         * MenuItem.cs: Don't dirty the parents if we don't have any
23934
23935 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
23936
23937         * LibSupport.cs: Rename
23938
23939 2005-06-29  Peter Bartok  <pbartok@novell.com>
23940
23941         * TextBoxBase.cs: Re-align caret after deleting a character
23942         * TextControl.cs:
23943           - DeleteChars(): Ensure that tag covers the provided position
23944           - StreamLine(): Drop reference for dropped tag
23945
23946 2005-06-29  Peter Bartok  <pbartok@novell.com> 
23947
23948         * TextControl.cs: 
23949           - Selections now work properly, anchoring at the initial location
23950             and properly extending in either direction (SetSelectionToCaret(),
23951             SetSelectionStart() and SetSelectionEnd())
23952           - No longer redraws the whole control on selection change, now
23953             calculates delta between previous and new selection and only
23954             invalidates/redraws that area
23955           - Fixed FindPos() math off-by-one errors
23956           - Changed DeleteChars() to verify the provided tag covers the
23957             provided position, selections may have a tag that doesn't cover
23958             the position if the selection is at a tag border
23959           - Fixed off-by-one errors in DeleteChars()
23960           - Added missing streamlining check in DeleteChars() to remove
23961             zero-length tags
23962           - Implemented Invalidate() method, now properly calculates exposures
23963             between two given lines/positions
23964           - Implemented SetSelection()
23965           - Obsoleted and removed FixupSelection()
23966           - Improved RecalculateDocument() logic, removing code duplication
23967
23968 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23969
23970         * LibSupport.cs: changes to match different input/output arguments.
23971
23972 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23973
23974         * LibSupport.cs: added libsupport.so init routine.
23975
23976 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
23977         
23978         * ControlBindingsCollection.cs
23979                 - Throws an exception on null datasource when adding
23980                 - Checks for duplicated bindings when adding
23981
23982 2005-06-28  Jackson Harper  <jackson@ximian.com>
23983
23984         * TreeView.cs (OnKeyDown): Support left and right properly
23985         (navigates as well as expanding and collapsing.
23986         - Add support for Multiply, this expands all the selected nodes
23987         children.
23988         - Fix some tabbing.
23989
23990 2005-06-28  Jackson Harper  <jackson@ximian.com>
23991
23992         * TreeView.cs: Implement keyboard navigation, currently supports,
23993         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
23994         support for toggling checkboxes with the space bar.
23995
23996 2005-06-28  Jackson Harper  <jackson@ximian.com>
23997
23998         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
23999         tree.
24000
24001 2005-06-28  Jackson Harper  <jackson@ximian.com>
24002
24003         * TreeView.cs: Add missing event.
24004
24005 2005-06-27  Peter Bartok  <pbartok@novell.com> 
24006
24007         * TextControl.cs:
24008           - Made line ending size configurable (now allows for counting 
24009             lineendings as \n or \r\n)
24010           - Added margin to viewport to keep caret visible on right side
24011           - Fixed translation routines for line/pos to documentpos to consider
24012             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
24013           - Fixed some line-endings to be unix style
24014           - Fixed Document.FormatText to perform it's calculations 1-based
24015           - Added descriptions for a few methods that might otherwise get 
24016             used wrong
24017           - Added NOTE section with some basic conventions to remember at 
24018             the top of the file
24019           - Major fixup for RichTextBox selection drawing:
24020             * Fixed crashes when multiple tags on a single line were selected
24021             * fixed selection box drawing not overlaying text
24022             * fixed bogus offset calculation for tags not starting at index 1
24023             * Switched behaviour from using multiple Substrings of a 
24024               StringBuilder.ToString() to using multiple 
24025               StringBuilder.ToString(start, length) statements, hoping this is
24026               faster (kept original version commented out in the code, in case
24027               original version was faster)
24028         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
24029           alignment != Left
24030         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
24031           call it as well
24032
24033 2005-06-27  Jackson Harper  <jackson@ximian.com>
24034
24035         * TabControl.cs: Move to the left and right with the arrow
24036         keys. These keys don't cycle beyond first and last like
24037         tab. Refresh all the tabs when scrolling them to the left or
24038         right.
24039
24040 2005-06-27  Jackson Harper  <jackson@ximian.com>
24041
24042         * TabControl.cs:
24043           - ToString: Added method
24044           - CreateParams: Remove TODO and comment
24045           - OnKeyDown: Cycle through bounds properly.
24046           - SelectedIndex: Scroll to the right or left if we need to
24047           display the newly selected tab.
24048
24049 2005-06-23  Jackson Harper  <jackson@ximian.com>
24050
24051         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
24052         set.
24053
24054 2005-06-23  Jackson Harper  <jackson@ximian.com>
24055
24056         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
24057         CTRL-SHIFT-TAB, and HOME, END are there any others?
24058
24059 2005-06-23  Jackson Harper  <jackson@ximian.com>
24060
24061         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
24062
24063 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
24064         
24065         * DataGridTextBoxColumn.cs: fixes and enhancements
24066         * ThemeWin32Classic.cs: fixes and enhancements
24067         * DataGridBoolColumn.cs:  fixes and enhancements
24068         * DataGridDrawingLogic.cs:  fixes and enhancements
24069         * CurrencyManager.cs: fixes and enhancements
24070         * DataGrid.cs: fixes and enhancements
24071         * DataGridColumnStyle.cs:  fixes and enhancements
24072
24073 2005-06-22  Jackson Harper  <jackson@ximian.com>
24074
24075         * TabControl.cs: Add some missing methods that just call into the
24076         base. Make the TabPageCollection's IList interface behave in the
24077         same manner as the MS implementation.
24078
24079 2005-06-22  Peter Bartok  <pbartok@novell.com> 
24080
24081         * TextControl.cs: Added sanity check
24082         * TextBoxBase.cs: 
24083           - Fixed wrapping behaviour, don't set wrap on single line controls
24084             (this fixes the breakage of colordialog introduced in an earlier
24085              checkin)
24086           - Added rudimentary support for autoscrolling right-aligned controls
24087             (still needs fixing, also, center alignment scroll is missing)
24088
24089 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
24090         
24091         * ScrollBar.cs: Fixes thumbpos on Maximum values
24092
24093 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
24094         
24095         * PropertyGridView.cs: Pass context information to UITypeEditors 
24096
24097 2005-06-21  Peter Bartok  <pbartok@novell.com> 
24098
24099         * TextBoxBase.cs:
24100           - Now calling PositionCaret with absolute space coordinates
24101           - Enabled vertical scrolling
24102           - Better tracking of scrollbar changes, tied into WidthChange
24103             event
24104           - Improved cursor tracking
24105           - Removed debug output
24106         * TextControl.cs:
24107           - PositionCaret coordinates are now works in absolute space, not 
24108             the canvas
24109           - Improved tracking of document size
24110           - Added events for width and height changes
24111
24112 2005-06-21  Peter Bartok  <pbartok@novell.com>
24113
24114         * Form.cs: Set focus to active control when form is activated
24115         * TextControl.cs: 
24116           - Added word-wrap functionality to RecalculateLine() 
24117           - Added some short function descriptions for VS.Net to aid in
24118             writing dependent controls
24119           - Added Caret property, returning the current coords of the caret
24120           - Added ViewPortWidth and ViewPortHeight properties
24121           - Added Wrap property
24122           - Added CaretMoved event
24123           - Removed some old debug code
24124           - Split() can now create soft splits
24125           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
24126           - Added method to format existing text
24127           - Fixed size/alignment calculations to use viewport
24128           - RecalculateDocument now can handle changing line-numbers while
24129             calculating lines
24130
24131         * TextBox.cs:
24132           - Added some wrap logic, we don't wrap if alignment is not left
24133           - Added casts for scrollbar var, base class switched types to
24134             also support RichTextBoxA
24135           - Implemented handling of scrollbar visibility flags
24136
24137         * TextBoxBase.cs:
24138           - Switched scrollbars type to RichTextBoxScrollBars to support
24139             RichTextBox
24140           - Added tracking of canvas width/height
24141           - Switched scrollbars to be not selectable (to keep focus on text)
24142           - Added central CalculateDocument() method to handle all redraw
24143             requirements
24144           - Added ReadOnly support
24145           - Added WordWrap support
24146           - Fixed handling of Enter key (we now treat it as a DialogKey)
24147           - Fixed caret positioning when h or v scroll is not zero
24148           - Fixed placing/generation of vertical scrollbar
24149           - Added CalculateScrollBars() method to allow updating scrollbar
24150             limits and visibility
24151           - Fixed handling of horizontal scroll
24152           - Added handling of vertical scroll
24153           - Implemented auto-'jump' when caret moves to close to a left or
24154             right border and there is text to be scrolled into view (currently
24155             there's the potential for a stack overflow, until a bug in
24156             scrollbar is fixed)
24157
24158 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
24159         
24160         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
24161
24162 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
24163
24164         * Mime.cs:
24165         - added inodes.
24166         - return application/x-zerosize for files with size zero
24167           (if no extension pattern matches).
24168         - check matches collection for strings too.
24169         - return only the first mime type if the name value
24170           collection has more than one mime type.
24171
24172 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
24173         
24174         * PropertyGrid.cs: Cleaned up some TODOs
24175         * PropertyGridView.cs: Added support for UITypeEditors
24176
24177 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
24178         
24179         * DataGrid.cs: clears cached value
24180
24181 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
24182
24183         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
24184         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
24185         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
24186         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
24187         
24188 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
24189
24190         * ThemeWin32Classic.cs: fixes colour
24191
24192 2005-06-15  Peter Bartok  <pbartok@novell.com>
24193
24194         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
24195         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
24196         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
24197         * Control.cs: Added some MWFCategory and MWFDescription attributes
24198         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
24199
24200 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
24201
24202         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
24203         usage
24204
24205 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
24206
24207         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
24208         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
24209         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
24210         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
24211         * DataGrid.cs: default datagrid settings for Default Styles, fixes
24212         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
24213
24214 2005-06-13  Jackson Harper  <jackson@ximian.com>
24215
24216         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
24217         isn't printed when the user enables dropping. (X11 does accept
24218         drops).
24219         
24220 2005-06-13  Jackson Harper  <jackson@ximian.com>
24221
24222         * TreeView.cs: Remove some TODOS.
24223
24224 2005-06-13  Jackson Harper  <jackson@ximian.com>
24225
24226         * Form.cs: Hook into the mdi framework.
24227         * MdiClient.cs: Use the base control collections add method so
24228         parents get setup correctly. Set the default back colour and dock
24229         style.
24230         * MdiChildContext.cs: New class, this bad actor handles an
24231         instance of an MDI window. Right now there is only basic
24232         support. You can drag, close, and resize windows. Minimize and
24233         Maximize are partially implemented.
24234
24235 2005-06-13  Jackson Harper  <jackson@ximian.com>
24236
24237         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
24238         freaky when both vals are negative. NOTE: There are probably other
24239         places in XplatUIX11 that this needs to be done.
24240
24241 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
24242
24243         * DataGrid.cs: implement missing methods, move KeyboardNavigation
24244         * DataGridColumnStyle.cs: fixes signature
24245
24246 2005-06-12  Jackson Harper  <jackson@ximian.com>
24247
24248         * XplatUIX11.cs: Use sizing cursors similar to the ones on
24249         windows.
24250
24251 2005-06-11  Jackson Harper  <jackson@ximian.com>
24252
24253         * StatusBarPanel.cs: Signature cleanups. Implement
24254         BeginInit/EndInit.
24255
24256 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
24257
24258         * DataGridTextBoxColumn.cs: Honors aligment
24259         * GridColumnStylesCollection.cs: Contains is case unsensitive
24260         * GridTableStylesCollection.cs: several fixes
24261         * DataGridTableStyle.cs: default column creation
24262         * DataGridDrawingLogic.cs: fixes
24263         * CurrencyManager.cs: ListName property
24264         * DataGrid.cs: multiple styles support
24265         * DataGridColumnStyle.cs: fixes
24266         
24267
24268 2005-06-10  Peter Bartok  <pbartok@novell.com>
24269
24270         * Control.cs(Select): Moved SetFocus call to avoid potential
24271           loops if controls change the active control when getting focus
24272         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
24273           the up/down buttons
24274
24275 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
24276
24277         * ImageListConverter.cs: Implemented
24278
24279 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
24280
24281         * MonthCalendar.cs: Wired in NumericUpDown control for year
24282
24283 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
24284
24285         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
24286           DoubleClick events, since they are not meant to be fired.
24287
24288 2005-06-09  Peter Bartok  <pbartok@novell.com>
24289
24290         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
24291           Jonathan's standalone controls into MWF, implemented missing
24292           events, attributes and methods; added xxxAccessible classes
24293         * AccessibleObject.cs: Made fields internal so other classes
24294           can change them if needed
24295
24296 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
24297
24298         * UpDownBase.cs: Complete implementation
24299         * NumericUpDown.cs: Complete implementation
24300         * DomainUpDown.cs: Complete implementation
24301
24302 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
24303
24304         * DataGridTextBoxColumn.cs: drawing fixes
24305         * DataGridCell.cs: fixes ToString method to match MSNet
24306         * DataGridTableStyle.cs: fixes
24307         * DataGridBoolColumn.cs: fixes, drawing
24308         * DataGridDrawingLogic.cs: fixes, new methods
24309         * DataGridTextBox.cs: Keyboard and fixes
24310         * DataGrid.cs:
24311                 - Keyboard navigation
24312                 - Scrolling fixes
24313                 - Row selection (single, multiple, deletion, etc)
24314                 - Lots of fixes
24315         
24316 2005-06-07  Jackson Harper  <jackson@ximian.com>
24317
24318         * ThemeWin32Classic.cs: Clear the background area when drawing
24319         buttons.
24320
24321 2005-06-06  Peter Bartok  <pbartok@novell.com>
24322
24323         * ImageListStreamer.cs: Fixed signature for GetData
24324         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
24325         * ComboBox.cs:
24326           - Added missing ChildAccessibleObject class
24327           - Added missing OnXXXFocus overrides, switched to using those
24328             instead of the event handler
24329         * Control.cs:
24330           - Added Parent property for ControlAccessibleObject
24331           - Fixed signatures
24332           - Fixed attributes
24333           - Added ResetBindings()
24334         * ListBindingConverter.cs: Implemented some methods
24335         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
24336         * ImageList.cs: Implemented basic handle scheme, removed TODOs
24337         * ContainerControl.cs: Fixed signature, now subscribing to the
24338           ControlRemoved event instead of overriding the handler, LAMESPEC
24339         * CurrencyManager.cs: Added missing attribute
24340         * MonthCalendar.cs: Added missing properties
24341
24342 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
24343
24344         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
24345         
24346 2005-06-06  Gaurav Vaish and Ankit Jain
24347
24348         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
24349         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
24350         
24351 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
24352
24353         * Control.cs: fixes CreateParams Width / Height.
24354
24355 2005-06-05  Peter Bartok  <pbartok@novell.com>
24356
24357         * Win32DnD.cs: Removed compilation warnings
24358
24359 2005-06-05  Peter Bartok  <pbartok@novell.com>
24360
24361         * Control.cs (CreateParams): Since we don't know if one of the
24362           properties we use is overridden, lets make sure if we fail accessing
24363           we continue with a backup plan
24364
24365 2005-06-05  Peter Bartok  <pbartok@novell.com>
24366
24367         * Win32DnD.cs:
24368           - Removed debug output
24369           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
24370             struct
24371           - Plugged resource leak
24372         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
24373           MS size
24374
24375 2005-06-05  Peter Bartok  <pbartok@novell.com>
24376
24377         * XplatUIWin32.cs: Removed DnD code
24378         * Win32DnD.cs: Implemented drop source and drop target functionality
24379
24380 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24381
24382         * UpDownBase.cs: remove duplicate addition of event, enable some code
24383         that was commented out.
24384         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
24385         Validate input when a key is pressed. It works fine now for every
24386         combination of Hexadecimal. Only missing some drawing love when sharing
24387         space with other controls.
24388
24389 2005-06-04  Peter Bartok  <pbartok@novell.com>
24390
24391         * Control.cs:
24392           - We need to pass a window for DragDrop, so enable callback events
24393           - Added DnD callback events when being a DragSource
24394         * XplatUI.cs (StartDrag): Added window handle argument
24395         * XplatUIDriver.cs (StartDrag): Added window handle argument
24396         * QueryContinueDragEventArgs: Made fields internally accessible so
24397           drivers can set them
24398         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
24399           can set them
24400
24401 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
24402
24403         * DataGridTextBoxColumn.cs: column text editing
24404         * DataGridTableStyle.cs: Respect columns styles created by the user
24405         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
24406         * DataGridBoolColumn.cs: bool column editing
24407         * DataGrid.cs: fixes to scrolling, properties, etc
24408         * DataGridTextBox.cs: handle keyboard
24409         * DataGridColumnStyle.cs: fixes
24410
24411 2005-06-02  Jackson Harper  <jackson@ximian.com>
24412
24413         * ImageListStreamer.cs: Somewhat broken implementation of
24414         GetObjectData. The RLE needs some work to match MS properly.
24415
24416 2005-06-02  Jackson Harper  <jackson@ximian.com>
24417
24418         * X11Dnd.cs: Attempting to keep at least one file in MWF
24419         monostyled.
24420
24421 2005-06-02  Peter Bartok  <pbartok@novell.com>
24422
24423         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
24424           that way
24425
24426 2005-06-02  Peter Bartok  <pbartok@novell.com>
24427
24428         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
24429         * XplatUI.cs: Added DoDragDrop() method
24430         * XplatUIDriver.cs: Added DoDragDrop() method
24431
24432 2005-06-02  Jackson Harper  <jackson@ximian.com>
24433
24434         * Splitter.cs: Implement BorderStyle.
24435
24436 2005-06-02  Jackson Harper  <jackson@ximian.com>
24437
24438         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
24439         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
24440         X11 using XDND.
24441
24442 2005-06-02  Peter Bartok  <pbartok@novell.com>
24443
24444         * DataObject.cs:
24445           - Added Data setter
24446           - Fixed broken insertion code for SetData, now also
24447             overwrites any existing entry of the same format name
24448         * Hwnd.cs: Added list of pointers that automatically gets
24449           freed when the window is disposed
24450         * XplatUI.cs: Call driver initialization method when loading
24451           a driver
24452         * Control.cs:
24453           - OnDragLeave takes EventArgs, not DragEventArgs
24454           - Added setting of WS_EX_ACCEPTFILES style when dropping is
24455             supported
24456           - Forces style update when drop state changes
24457         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
24458           not perfect since we cannot (yet) call the IDataObject.GetData()
24459           method, we keep getting 0x80004005 error, dunno why)
24460
24461 2005-06-02  Peter Bartok  <pbartok@novell.com>
24462
24463         * DragEventArgs.cs: Make fields internal so we can cache the
24464           object and re-set the fields from XplatUI
24465
24466 2005-06-02  Jackson Harper  <jackson@ximian.com>
24467
24468         * Control.cs: Add some internal methods so the DnD subsystem can
24469         raise DnD events. Also call into the driver when AllowDrop is set.
24470         * XplatUI.cs:
24471         * XplatUIDriver.cs: New method for setting whether or not a window
24472         is allowed to accept drag and drop messages.
24473                 
24474 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
24475         
24476         * ScrollBar.cs: Make sure that values sent in Scroll events
24477         are always between Maximum and Minimum.
24478
24479 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
24480
24481         * Menu.cs: Call MenuChanged when menuitem visibility has been
24482         changed.
24483         * MenuItem.cs: Rebuild menu when item is (not) visible.
24484         * MainMenu.cs: MainMenu has special MenuChanged.
24485         * Theme.cs: Caption and FrameBorderSize are not fixed.
24486         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
24487         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
24488         * XplatUIX11.cs,
24489         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
24490         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
24491
24492 2005-05-30  Jackson Harper  <jackson@ximian.com>
24493
24494         * DataFormat.cs: We can't statically initialize this stuff because
24495         it calls into the xplatui and could create a loop. So we lazy init
24496         it.
24497
24498 2005-05-28  Jackson Harper  <jackson@ximian.com>
24499
24500         * Control.cs: Proper implementation of Product(Name/Version).
24501
24502 2005-05-27  Jackson Harper  <jackson@ximian.com>
24503
24504         * DataObject.cs: Dont crash if no data is found.
24505
24506 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
24507         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
24508                 as per status page, guessing it should be set to true
24509
24510 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
24511
24512         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
24513         * DataGridTableStyle.cs: set proper formatting text, def header text
24514         * ThemeWin32Classic.cs: new themable paramaters
24515         * DataGridBoolColumn.cs: paint check box, get data, fixes
24516         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
24517         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
24518         * DataGridColumnStyle.cs: fixes
24519         * Theme.cs: new themable paramaters
24520                 
24521 2005-05-26  Peter Bartok  <pbartok@novell.com>
24522
24523         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
24524
24525 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24526         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
24527
24528 2005-05-24  Peter Bartok  <pbartok@novell.com>
24529
24530         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
24531           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
24532           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
24533           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
24534           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
24535           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
24536           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
24537           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
24538           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
24539           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
24540           missing attributes, etc
24541         * DataGridPreferredColumnWidthTypeConverter.cs: Added
24542
24543 2005-05-24  Peter Bartok  <pbartok@novell.com>
24544
24545         * Help.cs: Added, implemented trivial functions, throws up MessageBox
24546           when user tries to get help
24547         * DataObject.cs, DataFormats.cs, LinkArea.cs,
24548           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
24549           to suppress warnings
24550         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
24551           avoid unreachable code warning
24552
24553 2005-05-20  Peter Bartok  <pbartok@novell.com>
24554
24555         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
24556
24557 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24558
24559         * DataGridTextBoxColumn.cs: Basic painting methods
24560         * DataGridTableStyle.cs: Set table style in the column
24561         * ThemeWin32Classic.cs: Use Theme for colors
24562         * DataGridDrawingLogic.cs: Implement more drawing
24563         * DataGrid.cs: drawing, theming, enhacements, fixes
24564         * DataGridColumnStyle.cs: fixes, drawing
24565         * Theme.cs: theming for Datagrid
24566
24567 2005-05-20  Peter Bartok  <pbartok@novell.com>
24568
24569         * Cursor.cs: Implemented GetObjectData() method
24570
24571 2005-05-20  Peter Bartok  <pbartok@novell.com>
24572
24573         * Cursors.cs: Added setting of cursor name
24574         * Cursor.cs:
24575           - Implemented constructors
24576           - Implemented Draw and DrawStretched
24577           - Implemented Current property
24578           - Implemented == and != operators
24579           - Implemented Dispose()
24580           - Implemented ToString
24581           - Added missing attributes
24582         * XplatUIX11.cs:
24583           - Added missing reset for OverrideCursor when DoEvents is called
24584           - Fixed creation of cursor, logic was wrong
24585         * XplatUIWin32.cs:
24586           - Added missing reset for OverrideCursor when DoEvents is called
24587           - Fixed creation of cursor, bit arrays were swapped
24588         * Clipboard.cs: Removed obsolete MonoTODO attribute
24589
24590 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24591
24592         * ComboBox.cs: fixes OnSelectedItemChanged
24593         * ControlBindingsCollection.cs: fixes item range check
24594
24595 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24596
24597         * UpDownBase.cs:
24598                 - Calc preferred height properly
24599                 - Implement missing properties
24600                 
24601         * NumericUpDown.cs: Implement missing events
24602
24603 2005-05-19  Jackson Harper  <jackson@ximian.com>
24604
24605         * TabControl.cs: New method that resizes the tab pages before
24606         redrawing them. This as needed as the control is double buffered
24607         and sizing will not be recalculated unless ResizeTabPages is
24608         called.
24609         * TabPage.cs: Set base.Text instead of Text in the constructor so
24610         that UpdateOwner does not get called. Use the new Redraw method of
24611         TabControl instead of Refresh so the sizing is recalculated.
24612         * ThemeWin32Classic.cs: Draw the text for button tabs.
24613
24614 2005-05-19  Jackson Harper  <jackson@ximian.com>
24615
24616         * Control.cs: Paint control background images. Fix typo where
24617         PaintControlBackground was not getting called correctly.
24618
24619 2005-05-19  Peter Bartok  <pbartok@novell.com>
24620
24621         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
24622           I can investigate, apparently I broke FileDialog
24623
24624 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
24625
24626         * AxHost.cs: Some simple properties.
24627         * Control.cs: window must be accessible after ctor.
24628         * Form.cs: Added TransparencyKey property.
24629         * TextBoxBase.cs: Implemented Clear. Text property can be null.
24630         * XplatUIWin32.cs: SetBorderStyle implemented.
24631
24632 2005-05-18  Peter Bartok  <pbartok@novell.com>
24633
24634         * DataObject.cs: Entries are not global but particular to the
24635           DataObject, now it behaves that way
24636         * XplatUIWin32.cs: Implemented Clipboard methods
24637         * Clipboard.cs: Implemented
24638         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
24639         * XplatUIOSX.cs: Updated to final clipboard prototypes
24640         * XplatUIX11.cs: Implemented Clipboard methods
24641         * XplatUIDriver.cs: Updated to final clipboard prototypes
24642         * XplatUIStructs.cs:
24643           - Added BITMAPINFOHEADER struct
24644           - Added ClipboardFormats enum
24645         * X11Structs.cs:
24646           - Added ClipboardStruct
24647           - Added Atom enum items for clipboard types
24648           - Fixed atom types for Selection event structures
24649         * DataFormats.cs:
24650           - Added internal properties and methods for drivers to enumerate
24651             all known formats
24652           - Switched initialization method to allow drivers to assign their
24653             own IDs even for the MS predefined clipboard IDs
24654         * XplatUI.cs: Updated to final clipboard interface
24655
24656 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24657         * PropertyGridView.cs: Fixed compiler warnings.
24658
24659 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24660         * PropertyGrid.cs: Added some event calls
24661         * PropertyGridView.cs: Change drawing code to use double buffering
24662         * PropertyGridTextBox.cs: Changed Text property name
24663         * GridItem.cs: Added Bounds property.
24664         * GridEntry.cs: Added Bounds property.
24665
24666 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
24667
24668         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
24669         since GetType() may not return the correct type if the object is
24670         a remoting proxy.
24671
24672 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
24673
24674         * TreeNodeCollection.cs: fixes get/set item ranges
24675         
24676 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24677
24678         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
24679                 
24680 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24681
24682         * ComboBox.cs: Fix item range comparation
24683         * ListView.cs: Fix item range comparation
24684
24685 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24686
24687         * FontDialog.cs:
24688           - Clear example panel when OnPaint is called
24689           - Better solution for displaying the example panel text
24690           - Select default indexes in the ListBoxes
24691
24692 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24693
24694         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
24695
24696 2005-05-11  Peter Bartok  <pbartok@novell.com>
24697
24698         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
24699         * SelectionRangeConverter.cs: Implemented
24700         * PropertyGrid.cs: Fixed attribute value
24701         * Control.cs:
24702           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
24703           - Added Sebastien Pouliot's CAS Stack Propagation fixes
24704         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
24705           that's common to all drivers. First methods to go there are
24706           Sebastien Pouliot's CAS Stack Propagation helper methods
24707         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
24708           Sebastien Pouliot for CAS Stack Propagation
24709
24710 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24711
24712         * OSXStructs.cs:
24713           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
24714
24715 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
24716
24717         * DataGridTextBoxColumn.cs: fixed some members
24718         * GridColumnStylesCollection.cs: indexed column is case insensitive
24719         * DataGridTableStyle.cs: fixes
24720         * ThemeWin32Classic.cs: add new theme parameter
24721         * Theme.cs: add new theme parameter
24722         * DataGridDrawingLogic.cs: Datagrid's drawing logic
24723         * DataGrid.cs: fixes, new internal properties, etc.
24724         * DataGridColumnStyle.cs: allows to set grid value
24725         *
24726
24727 2005-05-10  Peter Bartok  <pbartok@novell.com>
24728
24729         * AccessibleObject.cs:
24730           - Removed MonoTODO attribute on help, method is correct
24731           - Fixed Bounds property
24732         * AxHost.cs: Moved MonoTODO
24733         * ButtonBase.cs: Now setting AccessibleObject properties
24734         * RadioButton.cs: Setting proper AccessibleObject role
24735         * CheckBox.cs: Setting proper AccessibleObject role
24736         * ControlBindingsCollection.cs: Added properties, methods and attributes
24737         * DataFormats.cs: Fixed awkward internal API, and changed to enable
24738           userdefined DataFormats.Format items as well
24739         * ListControl.cs: Removed data_member from the public eye
24740         * OpenFileDialog.cs:
24741           - Made class sealed
24742           - Added missing attributes
24743         * SaveFileDialog.cs: Added missing attributes
24744         * ImageListStreamer.cs: Fixed code that caused warnings
24745         * LinkLabel.cs: Removed unreachable code
24746         * TreeView.cs: Fixed code that caused warnings
24747         * PropertyGridView.cs: Fixed code that caused warnings
24748         * GridColumnStylesCollection.cs: Added missing attributes
24749         * GridTableStylesCollection: Added missing attribute
24750         * PropertyManager: Added .ctor
24751         * SecurityIDType: Added
24752         * DataObject.cs: Implemented class
24753         * LinkArea.cs: Added missing attribute
24754
24755 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
24756
24757         * RadioButton.cs: call base method to allow to fire OnClick event
24758         * UpDownBase.cs: OnMouseUp call base method
24759         * CheckedListBox.cs: call base method before returning
24760         * TrackBar.cs: call base method before returning
24761         
24762
24763 2005-05-10  Peter Bartok  <pbartok@novell.com>
24764
24765         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
24766           for messages
24767
24768 2005-05-10  Peter Bartok  <pbartok@novell.com>
24769
24770         * DataFormats.cs: Implemented
24771         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
24772           XplatUIX11.cs: Added Clipboard APIs
24773         * XplatUIWin32.cs: Implemented Clipboard APIs
24774         * FolderBrowserDialog.cs: Added missing event, attributes
24775
24776 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
24777
24778         * CheckBox.cs: call base method to allow to fire OnClick event
24779
24780 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
24781
24782         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
24783
24784 2005-05-06  Peter Bartok  <pbartok@novell.com>
24785
24786         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
24787         * Screen.cs: Implemented
24788         * HelpNavigator.cs: Added
24789         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
24790           property
24791         * HelpProvider.cs: Implemented all we can do until we have a CHM
24792           help library (which means that "What's This" does work now)
24793
24794 2005-05-06  Jackson Harper  <jackson@ximian.com>
24795
24796         * XplatUIX11.cs: Fix waking up the main loop.
24797                 
24798 2005-05-05  Peter Bartok  <pbartok@novell.com>
24799
24800         * XplatUI.cs: Updated revision
24801         * Form.cs: Removed enless loop
24802         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
24803         * Label.cs (OnPaint): Added call to base.OnPaint()
24804         * ToolTip.cs: Made ToolTipWindow reusable for other controls
24805         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
24806         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
24807         * AxHost.cs: Added
24808         * ButtonBase.cs: Moved base.OnPaint() call to end of method
24809         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
24810           to ToolTip.ToolTipWindow for drawing and size methods; this allows
24811           reuse of ToolTipWindow by other controls
24812         * SizeGrip.cs: Moved base.OnPaint() call to end of method
24813         * XplatUIX11.cs: Now clipping drawing area (experimental)
24814         * PictureBox.cs: Moved base.OnPaint() call to end of method
24815         * Theme.cs: Fixed ToolTip abstracts to match new format
24816         * ErrorProvider.cs: Implemented
24817
24818 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
24819
24820         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
24821         * LinkLabel.cs:
24822                 - Adds cursors
24823                 - Handles focus
24824                 - Implements LinkBehavior
24825                 - Fixes many issues
24826
24827 2005-05-03  Jackson Harper  <jackson@ximian.com>
24828
24829         * ListView.cs: Calculate the scrollbar positioning on resize and
24830         paint, so they get put in the correct place.
24831
24832 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24833
24834         * ColorDialogs.cs: The small color panels are now handled by
24835           SmallColorControl. This fixes drawing of the focus rectangle
24836           and adds a 3D border.
24837
24838 2005-05-03  Peter Bartok  <pbartok@novell.com>
24839
24840         * Control.cs: Modified version of Jonathan Chamber's fix for
24841           double-buffering
24842
24843 2005-05-03  Jackson Harper  <jackson@ximian.com>
24844
24845         * ListView.cs: Remove redraw variable. Control now handles whether
24846         or not a redraw needs to be done, and will only raise the paint
24847         event if redrawing is needed.
24848
24849 2005-05-03  Jackson Harper  <jackson@ximian.com>
24850
24851         * Splitter.cs: No decorations for the splitter form. Cache the
24852         hatch brush.
24853
24854 2005-05-03  Jackson Harper  <jackson@ximian.com>
24855
24856         * TreeView.cs: Use dashed lines to connect nodes. Use the
24857         ControlPaint method for drawing the focus rect instead of doing
24858         that in treeview.
24859
24860 2005-05-02  Peter Bartok  <pbartok@novell.com>
24861
24862         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
24863
24864 2005-04-29  Jackson Harper  <jackson@ximian.com>
24865
24866         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
24867         entire image buffer. Just clear the clipping rectangle.
24868
24869 2005-04-29  Jackson Harper  <jackson@ximian.com>
24870
24871         * ThemeWin32Classic.cs: Don't draw list view items that are
24872         outside the clipping rectangle.
24873
24874 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
24875
24876         * ListBox.cs: added horizontal item scroll
24877
24878 2005-04-29  Jackson Harper  <jackson@ximian.com>
24879
24880         * ThemeWin32Classic.cs: Remove some old debug code that was
24881         causing flicker with the new double buffering code.
24882
24883 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
24884
24885         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
24886         behave like combobox and comboboxlist (still not sure if this is
24887         correct though).
24888
24889 2005-04-28  Jackson Harper  <jackson@ximian.com>
24890
24891         * ThemeWin32Classic.cs: Don't fill the middle of progress
24892         bars. This fills areas outside of the clip bounds that don't need
24893         to be filled.
24894
24895 2005-04-28  Jackson Harper  <jackson@ximian.com>
24896
24897         * Control.cs: Don't expose functionality to touch the image buffers.
24898         * ProgressBar.cs:
24899         * ListView.cs: We do not need to (and no longer can) manipulate
24900         the image buffers directly. All of this is handled by Control.
24901
24902 2005-04-28  Peter Bartok  <pbartok@novell.com>
24903
24904         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
24905           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
24906           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
24907
24908 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24909
24910         * Combobox:
24911                 - Adjust control's height for non-simple comboboxes (bug fix)
24912                 - Remove dead code
24913         * MenuAPI.cs: remove unused var
24914         * ScrollBar.cs: remove unsed var
24915                  
24916         * ListBox.cs: unselect items when clearing
24917
24918 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24919
24920         * ListControl.cs: honors OnPositionChanged and default Selected Item
24921         * ListBox.cs: unselect items when clearing
24922
24923 2005-04-27  Jackson Harper  <jackson@ximian.com>
24924
24925         * X11Keyboard.cs: Initialize a default keyboard and give a warning
24926         if a "correct" keyboard is not found. This will make us not crash,
24927         but might give some users bad keyboard layouts...seems to be the
24928         same thing rewind does.
24929
24930 2005-04-27  Jackson Harper  <jackson@ximian.com>
24931
24932         * BindingManagerBase.cs: Attach the current/position changed
24933         handlers to their respective events.
24934
24935 2005-04-27  Jackson Harper  <jackson@ximian.com>
24936
24937         * Control.cs: Make sure that the first WM_PAINT does a full draw,
24938         not just a blit.
24939         * ThemeWin32Classic.cs: Don't fill the background for picture
24940         boxes. This could overright user drawing.
24941         * ComboBox.cs: Just fill the clipping rect not the entire client
24942         rect when drawing the background. This prevents pieces of the
24943         image buffer from getting overwritten and is theoretically faster.
24944
24945 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
24946
24947         * ComboBox.cs: Databinding support fixes, fire missing events
24948         * ListControl.cs: implement missing methods and properties, fixes
24949         * ThemeWin32Classic.cs: Databiding support on Drawing
24950         * CheckedListBox.cs: Databinding support fixes, fire missing events
24951         * ListBox.cs: Databinding support fixes, fire missing events
24952         
24953 2005-04-25  Peter Bartok  <pbartok@novell.com>
24954
24955         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
24956
24957 2005-04-25  Jackson Harper  <jackson@ximian.com>
24958
24959         * TreeView.cs: Use the horizontal scrollbars height not width when
24960         determining how much of the client area is available.
24961
24962 2005-04-25  Jackson Harper  <jackson@ximian.com>
24963
24964         * Control.cs: Double buffering is handled differently now. As per
24965         the spec, the extra buffer is created in the WM_PAINT message and
24966         passed down to the control's drawing code.
24967         * GroupBox.cs:
24968         * Label.cs:
24969         * CheckBox.cs:
24970         * ProgressBar.cs:
24971         * RadioButton.cs:
24972         * ColorDialog.cs:
24973         * ComboBox.cs:
24974         * PropertyGridView.cs:
24975         * UpDownBase.cs:
24976         * MessageBox.cs:
24977         * MenuAPI.cs:
24978         * ListView.cs:
24979         * ButtonBase.cs:
24980         * SizeGrip.cs:
24981         * ScrollBar.cs:
24982         * ListBox.cs:
24983         * TrackBar.cs:
24984         * ToolBar.cs:
24985         * PictureBox.cs:
24986         * DateTimePicker.cs:
24987         * StatusBar.cs:
24988         * TreeView.cs: Update to new double buffering system.
24989         * MonthCalendar.cs: Uncomment block, as Capture is now
24990         working. Update to new double buffering
24991         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
24992         * PaintEventArgs.cs: New internal method allows us to set the
24993         graphics object. This is used for double buffering.
24994         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
24995         rectangle. The internal paint_area var has been removed from
24996         StatusBar. The clipping rect should be used instead.
24997         * Theme.cs: Give the PictureBox drawing method a clipping rect.
24998         * TabPage.cs: The RefreshTabs method was removed, so just call the
24999         tab controls Refresh method now.
25000         * TabControl.cs: Update to new double buffering. Make sure the
25001         handle is created before sizing the tab pages, otherwise we will
25002         get stuck in a loop.
25003
25004 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
25005
25006         * LinkLabel.cs: Fix typo, bug #74719; patch
25007           from Borja Sanchez Zamorano
25008
25009 2005-04-22  Jackson Harper  <jackson@ximian.com>
25010
25011         * TreeNode.cs: Implement Handle stuff.
25012         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
25013
25014 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
25015
25016         * DataGridTextBoxColumn.cs: call base constructors, fixes
25017         * GridColumnStylesCollection.cs: missing events, methods, and functionality
25018         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
25019         * DataGridTableStyle.cs: implements create default column styles
25020         * DataGridBoolColumn.cs: which types can handle
25021         * DataGrid.cs: missing methods, fixes, new functionality
25022         * DataGridColumnStyle.cs: fixes
25023
25024 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
25025         * FolderBrowserDialog.cs:
25026         - Use a thread to fill the TreeView
25027         - Adjusted some sizes
25028
25029 2005-04-19  Peter Bartok  <pbartok@novell.com>
25030
25031         * LinkLabel.cs: (Re-)create the pieces when setting the Text
25032           property. Fixes #74360.
25033
25034 2005-04-19  Jackson Harper  <jackson@ximian.com>
25035
25036         * XEventQueue.cs: Lock when getting the lockqueue size.
25037         * PictureBox.cs: Call base OnPaint
25038         
25039 2005-04-19  Peter Bartok  <pbartok@novell.com>
25040
25041         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
25042           messages were no longer being processed (this broke BeginInvoke)
25043
25044           
25045 2005-04-18  Jackson Harper  <jackson@ximian.com>
25046
25047         * TreeView.cs: buglet that caused node images to get drawn
25048         regardless of whether or not they were in the clipping rectangle.
25049
25050 2005-04-18  Jackson Harper  <jackson@ximian.com>
25051
25052         * CurrencyManager.cs: There are four rules for GetItemProperties:
25053         - If the type is an array use the element type of the array
25054         - If the type is a typed list, use the type
25055         - If the list contains an Item property that is not an object, use
25056         that property
25057         - use the first element of the list if there are any elements in
25058         the list.
25059         
25060 2005-04-17  Jackson Harper  <jackson@ximian.oom>
25061
25062         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
25063         click. This handles offsets for scrolling properly and reduces
25064         memory. Also fixed GetNode to not offset now that TopNode works
25065         properly.
25066         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
25067         
25068 2005-04-17  Jackson Harper  <jackson@ximian.com>
25069
25070         * CursorConverter.cs: Initial implementation.
25071
25072 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
25073
25074         * ListControl.cs: work towards complex data binding support on ListControl
25075         * CurrencyManager.cs: work towards complex data binding support on ListControl
25076         * ListBox.cs: work towards complex data binding support on ListControl
25077
25078
25079 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
25080
25081         * GridTableStylesCollection.cs: fixes name and constructor
25082         * DataGridTableStyle.cs: fixes
25083         * DataGridBoolColumn.cs: fixes names and constructors
25084         * DataGrid.cs: define methods and properties. Some init implementations
25085         * DataGridCell.cs: define methods and properties. Some init implementations
25086         * GridTablesFactory.cs: Define methods and properties
25087
25088 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
25089
25090         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
25091         graphics port changes.  We still want the coordinates in global screen
25092         coordinates.
25093
25094 2005-04-14  Jackson Harper  <jackson@ximian.com>
25095
25096         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
25097         check plus minus or checkbox clicks unless those features are enabled.
25098
25099 2005-04-14  Jackson Harper  <jackson@ximian.com>
25100
25101         * TreeView.cs: Add methods for setting the top and bottom visible
25102         nodes. TreeNode::EnsureVisible uses these methods.
25103         * TreeNode.cs: Implement EnsureVisible
25104
25105 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
25106
25107         * Form.cs: Pospone menu assignation if the window has not been created yet
25108         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
25109         size and position
25110
25111 2005-04-12  Jackson Harper  <jackson@ximian.com>
25112
25113         * TreeView.cs: Set the TopNode properly when scrolling
25114         occurs. This has the added benifit of reducing the amount of
25115         walking that needs to be done when drawing. Also removed an old
25116         misleading TODO.
25117         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
25118         
25119 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
25120
25121         * Timer.cs: fixes interval setting when the timer is already enabled
25122         
25123 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
25124
25125         * FolderBrowserDialog.cs: First approach
25126
25127 2005-04-09  Peter Bartok  <pbartok@novell.com>
25128
25129         * FolderBrowserDialog: Added
25130
25131 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
25132
25133         * LinkLabel.cs: move drawing code into the theme
25134         * ThemeWin32Classic.cs: drawing code and painting background bugfix
25135         * Theme.cs: define DrawLinkLabel method
25136
25137 2005-04-05  Jackson Harper  <jackson@ximian.com>
25138
25139         * BindingContext.cs: Use weak references so these bad actors don't
25140         stay alive longer then they need to.
25141
25142 2005-04-05  Jackson Harper  <jackson@ximian.com>
25143
25144         * ListControl.cs: Basic implementation of complex databinding.
25145         * ComboBox.cs:
25146         * ListBox.cs: Add calls to ListControl databinding methods.
25147
25148 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
25149
25150         * FileDialog.cs:
25151           - Don't change PopupButtonState to Normal when the
25152             PopupButton gets pressed several times.
25153           - Renamed ButtonPanel to PopupButtonPanel
25154
25155 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
25156
25157         * ColorDialog.cs: Use cached objects instead of creating them
25158         * LinkLabel.cs: Use cached objects instead of creating them
25159         * Splitter.cs: Use cached objects instead of creating them
25160         * FontDialog.cs: Use cached objects instead of creating them
25161         * PropertyGridView.cs: Use cached objects instead of creating them
25162         * MessageBox.cs: Use cached objects instead of creating them
25163         * FileDialog.cs: Use cached objects instead of creating them
25164         * ThemeWin32Classic.cs: Use cached objects instead of creating them
25165         * TreeView.cs: Use cached objects instead of creating them
25166         
25167 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
25168
25169         * Control.cs: use Equals to compare the font since no == op
25170         * ScrollBar.cs: use Equals to compare the font since no == op
25171
25172 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
25173
25174         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
25175
25176 2005-04-01  Jackson Harper  <jackson@ximian.com>
25177
25178         * Binding.cs: Implement IsBinding.
25179         * BindingManagerBase.cs:
25180         * PropertyManager.cs:
25181         * CurrencyManager.cs: Add IsSuspended property.
25182
25183 2005-04-01  Jackson Harper  <jackson@ximian.com>
25184
25185         * Binding.cs: Had some IsAssignableFrom calls backwards.
25186
25187 2005-04-01  Jackson Harper  <jackson@ximian.com>
25188
25189         * Binding.cs: Handle null data members when pulling data.
25190         * PropertyManager.cs: Handle the data member being a property that
25191         does not exist.
25192
25193 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
25194
25195         * DataGridTextBoxColumn.cs: fixes signature
25196         * DataGrid.cs: calls right constructor
25197
25198 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
25199
25200         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
25201         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
25202         * GridTableStylesCollection.cs: implements GridTableStylesCollection
25203         * DataGridTableStyle.cs: implements DataGridTableStyle
25204         * DataGridBoolColumn.cs: implements DataGridBoolColumn
25205         * DataGridTextBox.cs: implements DataGridTextBox
25206         * DataGridColumnStyle.cs: implements DataGridColumnStyle
25207
25208 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
25209
25210         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
25211
25212 2005-03-29  Peter Bartok  <pbartok@novell.com>
25213
25214         * Application.cs:
25215           - Properly implemented CompanyName property
25216           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
25217             returns a path that includes CompanyName, ProductName and
25218             Version (fixes bug #70330)
25219
25220 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
25221
25222         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
25223           fixes bug #72588.
25224
25225 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
25226
25227         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
25228         
25229           - Added ReadOnly CheckBox
25230           - Further refactoring: moved some code from Open-/SaveFileDialog
25231             to FileDialog
25232
25233 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
25234
25235         * OpenFileDialog.cs: Fixed CheckFileExists
25236         * FileDialog.cs:
25237           Moved FileView and DirComboBox outside FileDialog class.
25238           They can now be used outside FileDialog
25239
25240 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
25241
25242         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
25243         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
25244
25245 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
25246
25247         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
25248           - Added missing CreatePrompt property in SaveDialog
25249           - Overall SaveDialog handling should be better now
25250           - Added non standard ShowHiddenFiles property
25251           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
25252           - Added InitialDirectory and RestoreDirectory support
25253
25254 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
25255
25256         * FileDialog.cs: Made dirComboBox usable
25257
25258 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
25259
25260         * FileDialog.cs: Added Filter support (case sensitiv)
25261
25262 2005-03-24  Jackson Harper  <jackson@ximian.com>
25263
25264         * TabControl.cs: Need a couple more pixels for the lines.
25265
25266 2005-03-23  Jackson Harper  <jackson@ximian.com>
25267
25268         * TabControl.cs: Give the tab page focus when it is selected.
25269
25270 2005-03-23  Jackson Harper  <jackson@ximian.com>
25271
25272         * TabControl.cs: Account for the drawing of tabs borders when
25273         invalidating. If the slider was clicked dont do click detection on
25274         the tabs.
25275
25276 2005-03-23  Jackson Harper  <jackson@ximian.com>
25277
25278         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
25279
25280 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
25281
25282         * CategoryGridEntry.cs: Added
25283         * GridItem.cs: Added helper properties
25284         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
25285         * GridEntry.cs: Updated code for collection
25286         * PropertyGrid.cs: Cleaned up some formatting
25287         * PropertyGridView.cs: Added drop down functionality for enums.
25288         * GridItemCollection.cs: Added enumerator logic
25289         * PropertyGridEntry.cs: Added
25290
25291 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
25292
25293         * FileDialog.cs:
25294           - Removed unnecessary commented code
25295           - Fixed handling for entering the filename manually in the combobox
25296
25297 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
25298
25299         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
25300
25301 2005-03-18  Peter Bartok  <pbartok@novell.com>
25302
25303         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
25304           them being touching the border
25305
25306 2005-03-18  Peter Bartok  <pbartok@novell.com>
25307
25308         * TextControl.cs: Quick hack to center text better
25309
25310 2005-03-18  Peter Bartok  <pbartok@novell.com>
25311
25312         * ControlPaint.cs:
25313           - Don't throw NotImplemented exceptions, just print a notice once
25314             instead (requested by Miguel). This makes running existing SWF
25315             apps a bit easier
25316         * Control.cs:
25317           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
25318           - Added context menu trigger on right click
25319         * Panel.cs: Trigger invalidate on resize
25320         * StatusBar.cs:
25321           - Removed old double-buffer drawing
25322           - Added ResizeRedraw style to force proper update of statusbar
25323         * ListView.cs:
25324           - Removed debug output
25325         * ThemeWin32Classic.cs:
25326           - Fixed drawing of status bar, now draws Text property if there
25327             are no defined panels
25328
25329 2005-03-18  Jackson Harper  <jackson@ximian.com>
25330
25331         * ImageList.cs: When the image stream is set pull all the images
25332         from it.
25333         * ImageListStreamer.cs: Implement reading image list streams.
25334
25335 2005-03-18  Peter Bartok  <pbartok@novell.com>
25336
25337         * ThemeWin32Classic.cs (DrawPictureBox):
25338           - Fixed calculations for centered drawing
25339           - Fixed drawing for normal mode, not scaling the image on normal
25340
25341 2005-03-18  Peter Bartok  <pbartok@novell.com>
25342
25343         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
25344           textbox
25345         * FileDialog.cs:
25346           - Made Open/Save button the accept button for FileDialog
25347           - Tied the cancel button to the IButtonControl cancel button
25348           - Save/Open now properly builds the pathname
25349           - Now handles user-entered text
25350           - Preventing crash on right-click if no item is selected
25351           - Fixed Text property, now uses contents of textbox
25352           - Fixed SelectedText property, now just returns the text part that
25353             is selected in the text box
25354
25355 2005-03-18  Jackson Harper  <jackson@ximian.com>
25356
25357         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
25358         rect, make sure to de-adjust the interior rect after drawing the
25359         tab text.
25360
25361 2005-03-18  Peter Bartok  <pbartok@novell.com>
25362
25363         * MenuAPI.cs: Remove menu *before* executing selected action to
25364           prevent the menu from 'hanging around'
25365           
25366 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
25367
25368         * XplatUIOSX.cs: Implemented WorkingArea property
25369
25370 2005-03-17  Peter Bartok  <pbartok@novell.com>
25371
25372         * XplatUIX11.cs: Fixed menu coord calculations
25373         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
25374           for calculating offsets
25375
25376 2005-03-17  Peter Bartok  <pbartok@novell.com>
25377
25378         * Hwnd.cs: Do not consider menu presence for default client
25379           rectangle location/size
25380         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
25381           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
25382           translation functions
25383         * FileDialog.cs: Fixed (what I presume is a) typo
25384
25385 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
25386
25387         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
25388           X access (avoids X-Async errors)
25389
25390 2005-03-16  Jackson Harper  <jackson@ximian.com>
25391
25392         * TabControl.cs: Raise the SelectedIndexChanged event.
25393
25394 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
25395
25396         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
25397           - Removed vertical ToolBar and replaced it with a custom panel
25398             (desktop and home button already work)
25399           - Added Help button (some controls get resized or relocated then)
25400           - Draw correct text depending on Open or Save.
25401           - Fixed some typos...
25402
25403 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
25404
25405         * ScrollBar.cs:
25406           - Only change Maximum and Minimum when need it (bug fix)
25407
25408 2005-03-15  Peter Bartok  <pbartok@novell.com>
25409
25410         * Form.cs: Use Handle for icon, to trigger creation if
25411           the window does not yet exist
25412         * Control.cs:
25413           - CanSelect: Slight performance improvement
25414           - Focus(): Preventing possible recursion
25415           - Invalidate(): Removed ControlStyle based clear flag setting
25416           - WM_PAINT: fixed logic for calling OnPaintBackground
25417           - WM_ERASEBKGND: Fixed logic, added call to new driver method
25418             EraseWindowBackground if the control doesn't paint background
25419         * XplatUIWin32.cs:
25420           - Moved EraseWindowBackground() method to internal methods
25421           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
25422             is sent via SendMessage on BeginPaint call on Win32
25423         * XplatUIX11.cs:
25424           - Added EraseWindowBackground() method
25425           - No longer sends WM_ERASEBKGND on .Expose, but on call to
25426             PaintEventStart, which more closely matches Win32 behaviour
25427           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
25428           - Fixed SetFocus() to properly deal with client and whole windows
25429         * Hwnd.cs: Added ErasePending property
25430         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
25431         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
25432
25433 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
25434
25435         * XplatUIOSX.cs:
25436           - Fix hard loop when timers exist.
25437           - Fix bugs with middle and right click for 3 button mice.
25438
25439 2005-03-11  Peter Bartok  <pbartok@novell.com>
25440
25441         * XplatUIX11.cs:
25442           - get_WorkingArea: Need to call X directly, GetWindowPos only
25443             returns cached data now
25444           - Added sanity check to GetWindowPos hwnd usage
25445
25446 2005-03-11  Jackson Harper  <jackson@ximian.com>
25447
25448         * BindingManagerBase.cs: This method isn't used anymore as
25449         PullData now updates the data in the control.
25450
25451 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
25452
25453         * Form.cs: fixes menu drawing on X11
25454         * MenuAPI.cs:  fixes menu drawing on X11
25455
25456 2005-03-11  Peter Bartok  <pbartok@novell.com>
25457
25458         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
25459           from Jonathan Gilbert; should fix bug #73606
25460         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
25461           in Screen coordinates. Thanks, Jordi.
25462         * Form.cs: Added missing attribute
25463
25464 2005-03-11  Peter Bartok  <pbartok@novell.com>
25465
25466         * Form.cs:
25467           - Rudimentary Mdi support
25468           - Removed outdated FormParent code
25469           - Implemented lots of missing properties and methods, still missing
25470             transparency support
25471           - Added missing attributes
25472           - Implemented support for MaximumBounds
25473           - Added firing of various events
25474         * XplatUI.cs: Added SetIcon() method
25475         * XplatUIDriver.cs: Added SetIcon() abstract
25476         * XplatUIOSX.cs: Stubbed out SetIcon() method
25477         * XplatUIX11.cs:
25478           - Implemented SetIcon() support
25479           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
25480           - Switched to unix line endings
25481         * XplatUIWin32.cs:
25482           - Made POINT internal so for can access it as part of MINMAX
25483           - Implemented SetIcon() support
25484           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
25485             native Mdi support again, might have to go managed)
25486         * Control.cs: Now fires the StyleChanged event
25487         * MdiClient.cs: Added; still mostly empty
25488
25489 2005-03-10  Peter Bartok  <pbartok@novell.com>
25490
25491         * SaveFileDialog.cs: Added emtpy file
25492
25493 2005-03-08  Peter Bartok  <pbartok@novell.com>
25494
25495         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
25496           in turn triggers OnCreateContro) when creating a handle for the
25497           first time.
25498         * TextControl.cs: Fixed endless loop in certain cases when
25499           replacing the current selection
25500
25501 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
25502
25503         * ScrollBar.cs:
25504           - Honors NewValue changes in Scroll events allowing apps to change it
25505           - Adds First and Last Scroll events
25506           - Fixes Thumb events
25507
25508 2005-03-07  Peter Bartok  <pbartok@novell.com>
25509
25510         * Hwnd.cs: Added DefaultClientRectangle property
25511         * XplatUI.cs: Now using the X11 driver Where() method, which provides
25512           more detailed debug information
25513         * XplatUIX11.cs:
25514           - Fixed size-change feedback loop, where we would pull an old size
25515             off the queue and mistakenly change our window's size to an
25516             earlier value
25517           - Now compressing ConfigureNotify events, to reduce looping and
25518             redraw issues
25519         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
25520           is called
25521
25522 2005-03-07  Jackson Harper  <jackson@ximian.com>
25523
25524         * Binding.cs: Push data pushes from data -> property. Check if the
25525         property is readonly when attempting to set it.
25526
25527 2005-03-07  Jackson Harper  <jackson@ximian.com>
25528
25529         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
25530         instead of IsSubclassOf. Pulling data now sets the value on the
25531         control.
25532         * PropertyManager.cs:
25533         * CurrencyManager.cs: Just need to pull data when updating now,
25534         because PullData will set the value on the control.
25535
25536 2005-03-04  Jackson Harper  <jackson@ximian.com>
25537
25538         * Binding.cs: Implement data type parsing and converting on pulled
25539         data. TODO: Are there more ways the data can be converted?
25540
25541 2005-03-04  Jackson Harper  <jackson@ximian.com>
25542
25543         * Binding.cs: Support <Property>IsNull checks. Also bind to the
25544         controls Validating method so we can repull the data when the
25545         control loses focus.
25546
25547 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
25548
25549         * ColumnHeader.cs:
25550           - Fixes null string format
25551           
25552         * ListView.cs:
25553           - Adds enum type checks
25554           - Fixes redrawing and recalc need after changing some properties
25555           - Fixes on focus_item set after the event
25556           - Fixes adding columns after the control has been created
25557           
25558         * ThemeWin32Classic.cs:
25559           - Fixes CheckBox focus rectangle
25560           - Fixes ColumnHeader drawing
25561
25562
25563 2005-03-03  Jackson Harper  <jackson@ximian.com>
25564
25565         * Binding.cs: Bind to <Property>Changed events so we can detect
25566         when properties are changed and update the data.
25567
25568 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
25569
25570         * ImageList.cs:
25571           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
25572           - Fixes ImageList constructor with ImageList container
25573           - Fixes image scaling (wrong parameters at DrawImage)
25574
25575 2005-02-02  Jackson Harper  <jackson@ximian.com>
25576
25577         * Binding.cs: Make property searches case-insensitive. Eliminate
25578         some duplicated code.
25579
25580 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
25581
25582         * ComboBox.cs:
25583                 - Handle focus event
25584                 - Fix scrollbar events
25585                 - Discard highlighted item if remove it
25586                 - Fixes SelectedItem with strings
25587
25588 2005-03-01  Peter Bartok  <pbartok@novell.com>
25589
25590         * Control.cs:
25591           - Fixed Visible property, now follows (once again) parent chain
25592             to return false if any control in the chain is visible=false
25593           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
25594           - Fixed several places where is_visible instead of Visible was used
25595           - Implemented FIXME related to focus selection when setting focused
25596             control to be invisible
25597
25598         * XplatUIWin32.cs: Now using proper method to find out if window is
25599           visible. Thanks to Jordi for pointing it out
25600
25601 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
25602
25603         * ComboBox.cs: show/hide scrollbar instead of creating it
25604
25605 2005-02-27  Jackson Harper  <jackson@ximian.com>
25606
25607         * CurrencyManager.cs: Add PositionChanged stuff.
25608
25609 2005-02-27  Peter Bartok  <pbartok@novell.com>
25610
25611         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
25612         * XplatUIOSX.cs: Added GetMenuOrigin() stub
25613         * XplatUIWin32.cs: Implemented GetMenuOrigin()
25614         * XplatUIX11.cs:
25615           - Implemented GetMenuDC()
25616           - Implemented GetMenuOrigin()
25617           - Implemented ReleaseMenuDC()
25618           - Implemented generation of WM_NCPAINT message
25619           - Implemented generation and handling of WM_NCCALCSIZE message
25620         * Form.cs: Added debug helper message for Jordi's menu work
25621         * Hwnd.cs:
25622           - Modified ClientRect property; added setter, fixed getter to handle
25623             setting of ClientRect
25624           - Added MenuOrigin property
25625
25626 2005-02-26  Peter Bartok  <pbartok@novell.com>
25627
25628         * XplatUIX11.cs:
25629           - Destroys the caret if a window that's being destroyed contains it
25630           - Ignores expose events coming from the X11 queue for windows that
25631             already are destroyed
25632           - Now uses the proper variable for handling DestroyNotify, before we
25633             marked the wrong window as destroyed
25634           - Improved/added some debug output
25635
25636 2005-02-26  Peter Bartok  <pbartok@novell.com>
25637
25638         * X11Keyboard.cs: Fixes to work on 64bit systems
25639
25640 2005-02-26  Peter Bartok  <pbartok@novell.com>
25641
25642         * Control.cs:
25643           - Now calling OnHandleDestroyed from DestroyHandle()
25644             instead of Dispose()
25645           - Removed bogus call to controls.Remove() from DestroyHandle()
25646
25647 2005-02-26  Peter Bartok  <pbartok@novell.com>
25648
25649         * Control.cs: Properly destroy child windows when our handle is
25650           destroyed
25651
25652 2005-02-25  Peter Bartok  <pbartok@novell.com>
25653
25654         * XplatUI.cs:
25655           - Added 'DriverDebug' define to allow tracing XplatUI API calls
25656           - Alphabetized Static Methods and Subclasses
25657
25658         * XplatUIX11.cs:
25659           - Added XException class to allow custom handling of X11 exceptions
25660           - Created custom X11 error handler, tied into XException class
25661           - Added support for MONO_XEXCEPTIONS env var to allow the user
25662             to either throw an exception on X errors or continue running
25663             after displaying the error
25664           - Added handling of DestroyNotify message
25665           - Added handler for CreateNotify message (still disabled)
25666           - Improved (tried to at least) Where method to provide file and lineno
25667         * X11Structs.cs:
25668           - Added XErrorHandler delegate
25669           - Added XRequest enumeration (to suppor translation of errors)
25670
25671 2005-02-25  Jackson Harper  <jackson@ximian.com>
25672
25673         * PropertyManager.cs: Implement editing features
25674         * CurrencyManager.cs:
25675         * Binding.cs: First attempt at UpdateIsBinding
25676         * BindingManagerBase.cs: Call UpdateIsBinding before
25677         pushing/pulling data.
25678
25679 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
25680
25681         * MenuAPI.cs: Respect disabled items
25682         * ThemeWin32Classic.cs
25683                 - Caches ImageAttributes creation for DrawImageDisabled
25684                 - Fixes vertical menu line drawing
25685                 - Draws disabled arrows in disable menu items
25686
25687 2005-02-24  Peter Bartok  <pbartok@novell.com>
25688
25689         * Hwnd.cs:
25690           - Added UserData property to allow associating arbitrary objects
25691             with the handle
25692           - Fixed leak; now removing Hwnd references from static windows array
25693         * XplatUIWin32.cs:
25694           - Fixed Graphics leak in PaintEventEnd
25695           - Removed usage of HandleData, switched over to Hwnd class
25696         * HandleData.cs: Removed, obsoleted by Hwnd.cs
25697
25698 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25699
25700         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
25701         * ScrollBar.cs: Fixes bug
25702         * TrackBar.cs: removes death code, clipping, mimize refreshes,
25703          keyboard navigation enhancements
25704
25705 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25706
25707         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
25708         * GroupBox.cs: Add control styles
25709         * Label.cs: Add control styles
25710         * UpDownBase.cs: Add control styles
25711         * ListBox.cs: Add control styles
25712         * XplatUIWin32.cs: Fixes wrong parameter order
25713
25714
25715 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
25716
25717         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
25718
25719 2005-02-23  Jackson Harper  <jackson@ximian.com>
25720
25721         * PropertyManager.cs: Implement property binding. This doesn't
25722         seem to work yet though as (I think) there are some bugs in
25723         System.ComponentModel.PropertyDescriptor.
25724         * BindingContext.cs: Use new PropertyManager constructor.
25725
25726 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
25727
25728         * ProgressBar.cs: use clip region in ProgressBar
25729         * ThemeWin32Classic.cs: use clip region in ProgressBar
25730
25731 2004-02-22  Jackson Harper  <jackson@ximian.com>
25732
25733         * BindingsCollection.cs: Remove some debug code.
25734
25735 2005-02-22  Jackson Harper  <jackson@ximian.com>
25736
25737         * BindingContext.cs:
25738         * ControlBindingsCollection.cs:
25739         * CurrencyManager.cs:
25740         * Binding.cs:
25741         * BindingManagerBase.cs: Initial implementation
25742         * BindingsCollection.cs: Add an internal contains method that the
25743         BindingManagerBase uses to ensure bindings aren't added twice to
25744         the collection.
25745         * PropertyManager.cs: Stubbed out.
25746         * Control.cs:
25747         * ContainerControl.cs: Hook up databinding
25748         
25749 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
25750
25751         * XplatUIOSX.cs:
25752           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
25753           Fixed Invalidate/Update chain.
25754           Fixed tons of other minor bugs (this is almost a complete rewrite).
25755
25756 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
25757
25758         * ComboBox.cs: do subcontrol creation when the control is created
25759
25760 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25761
25762         * Label.cs: fixes image drawing (image and imagelist)
25763         * ThemeWin32Classic.cs: cache brushes
25764         
25765 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25766
25767         * Form.cs: Move menu drawing code to Theme class
25768         * ComboBox.cs: Move ComboBox drawing code to Theme class
25769         * MenuItem.cs: Move menu drawing code to Theme class
25770         * MenuAPI.cs: Move menu drawing code to Theme class
25771         * ThemeWin32Classic.cs: New methods
25772         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
25773         * ListBox.cs: Move Listbox drawing code to Theme class
25774         * Theme.cs: New methods
25775
25776 2005-02-20  Peter Bartok  <pbartok@novell.com>
25777
25778         * Control.cs:
25779           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
25780             only process mnemonics on those)
25781           - Fixed event sequence for key handling; first calling
25782             ProcessKeyEventArgs now
25783         * TextBoxBase.cs:
25784           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
25785             for processing non-character keys
25786           - Fixed WM_CHAR to generate proper event sequence before processing
25787         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
25788           generation
25789
25790 2005-02-19  Peter Bartok  <pbartok@novell.com>
25791
25792         * UserControl.cs: Added TextChanged event; added attributes
25793         * SizeGrip.cs: Implemented resizing and optional display of grip
25794         * Form.cs: Fixed attribute
25795         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25796           Changed meaning of ScrollWindow bool argument; instead of the
25797           clear attribute (which will be true usually anyway), it gives the
25798           option of moving child controls as well.
25799         * XplatUIX11.cs:
25800           - Changed to match new ScrollWindow argument
25801           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
25802             now handles the implicit parent window a WM puts around us
25803         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
25804           to work)
25805         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
25806         * TreeView.cs: Adjusted to new ScrollWindow arguments
25807
25808 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25809
25810         * Form.cs: Menu integration with non-client area
25811         * MenuItem.cs: Menu integration with non-client area
25812         * MenuAPI.cs: Menu integration with non-client area
25813
25814 2005-02-18  Peter Bartok  <pbartok@novell.com>
25815
25816         * MethodInvoker.cs: Added
25817         * MdiLayout.cs: Added
25818         * SendKeys.cs: Started implementation
25819         * ErrorIconAlignment.cs: Added
25820
25821 2005-02-18  Peter Bartok  <pbartok@novell.com>
25822
25823         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
25824         * Form.cs: Added handling for Menu-related Non-client messages
25825
25826 2005-02-17  Peter Bartok  <pbartok@novell.com>
25827
25828         * UpDownBase.cs: Fixed typo, compilation errors
25829         * DomainUpDown.cs: Fixed attribute value
25830
25831 2005-02-16  Miguel de Icaza  <miguel@novell.com>
25832
25833         * UpDownBase.cs: Attach entry events.
25834         Propagate events.
25835         Add ForeColor property, Focused, InterceptArrowKeys (interception
25836         does not work yet).
25837
25838 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
25839
25840         * Form.cs:
25841                 - Redraw non client are on Setmenu
25842                 - Calc proper menu starting point
25843
25844 2005-02-17  Peter Bartok  <pbartok@novell.com>
25845
25846         * Application.cs: Fixed message_filter check
25847
25848 2005-02-17  Peter Bartok  <pbartok@novell.com>
25849
25850         * Application.cs: Now calls registered message filters
25851         * DockStyle.cs: Fixed attribute
25852         * Form.cs: Fixed attribute
25853         * Menu.cs: Fixed attribute
25854         * ToolTip.cs: Fixed attribute
25855         * TreeNode.cs: Added missing attributes and arranged in regions
25856         * PropertyGrid.cs: Fixed signatures
25857         * TreeNodeCollection.cs: Added attributes
25858         * Splitter.cs: Added missing attributes; arranged into regions
25859         * TabPage.cs: Added missing attributes; arranged into regions
25860         * TextBoxBase.cs: Added missing attributes
25861         * TextBox.cs: Added missing attributes
25862         * ArrangeDirection.cs: Added missing attributes
25863         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
25864         * ToolBarButton.cs: Fixed attributes
25865         * AnchorStyles.cs: Fixed attribute
25866         * TrackBar.cs: Fixed attributes
25867         * TabControl.cs: Added missing attributes and arranged into regions
25868         * ToolBar.cs: Fixed attribute
25869         * StatusBar.cs: Fixed signature, organized into regions and added
25870           attributes
25871         * StatusBarPanel.cs: Fixed attributes
25872         * ContentsResizedEventArgs.cs: Implemented
25873         * ContentsResizedEventHandler.cs: Implemented
25874         * DateBoldEventArgs.cs: Implemented
25875         * DateBoldEventHandler.cs: Implemented
25876         * UpDownEventArgs.cs: Implemented
25877         * UpDownEventHandler.cs: Implemented
25878         
25879 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
25880
25881         * Form.cs: first Menu NC refactoring
25882         * MenuAPI.cs: first Menu NC refactoring
25883         
25884 2005-02-16  Peter Bartok  <pbartok@novell.com>
25885
25886         * ImeMode.cs: Added missing attributes
25887         * Menu.cs: Fixed attribute
25888         * GroupBox.cs: Fixed attribute
25889         * Label.cs: Fixed attribute
25890         * ColorDialog.cs (RunDialog): Removed TODO attribute
25891         * ComboBox.cs: Fixed attributes
25892         * ListControl.cs: Added missing attributes
25893         * PropertyGrid.cs: Fixed attributes
25894         * Control.cs: Fixed attributes
25895         * ListViewItem.cs: Added TypeConverter attribute
25896         * NotifyIcon.cs: Fixed attributes
25897         * ListView.cs: Fixed attributes
25898         * ButtonBase.cs: Fixed attribute
25899         * ImageList.cs: Added missing attributes
25900         * ContainerControl.cs: Fixed signature
25901         * CheckedListBox.cs: Fixed attribute; added missing attributes
25902         * Panel.cs: Fixed attributes
25903         * PropertyTabChangedEventArgs.cs: Added missing attribute
25904         * PropertyValueChangedEventArgs.cs: Added missing attribute
25905         * Binding.cs: Fixed attribute
25906         * ListViewItemConverter: Implemented ListViewSubItemConverter class
25907         * ListBox.cs: Fixed attribute; added missing attributes;
25908         * ScrollableControl.cs: Added missing attributes
25909         * PictureBox.cs: Added missing attributes; implemented missing property
25910         * DateTimePicker.cs: Added missing attributes
25911         * Theme.cs (ToolWindowCaptionHeight): Fixed type
25912         * MonthCalendar.cs: Fixed attributes
25913         * StatusBarPanel.cs: Added missing attributes
25914         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
25915
25916 2005-02-16  Peter Bartok  <pbartok@novell.com>
25917
25918         * TextBoxBase.cs: The previous method to enforce height yet remember
25919           the requested high was less than ideal, this is an attempt to do
25920           it better.
25921         * Control.cs: Added comment about possible problem
25922         * Copyright: Updated format
25923         * GridItemType.cs: Fixed swapped values
25924
25925 2005-02-15  Jackson Harper  <jackson@ximian.com>
25926
25927         * BaseCollection.cs: Use property so we never access an
25928         uninitialized list. Also initialize the list in the property.
25929
25930 2005-02-15  Peter Bartok  <pbartok@novell.com>
25931
25932         * GroupBox.cs (ProcessMnemonic): Implemented
25933         * Label.cs (ProcessMnemonic): Implemented
25934         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
25935           hotkeys
25936
25937 2005-02-15  Peter Bartok  <pbartok@novell.com>
25938
25939         * RadioButton.cs (ProcessMnemonic): Implemented
25940         * CheckBox.cs (ProcessMnemonic): Implemented
25941         * Control.cs:
25942           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
25943             handling
25944           - Added internal method to allow calling ProcessMnemonic from other
25945             controls
25946         * ContainerControl.cs:
25947           - Started support for handling validation chain handling
25948           - Implemented ProcessMnemonic support
25949           - Added Select() call to Active, to make sure the active control
25950             receives focus
25951         * Form.cs: Setting toplevel flag for Forms (this was lost in the
25952           FormParent rewrite)
25953         * ThemeWin32Classic.cs:
25954           - DrawCheckBox(): Fixed stringformat to show hotkeys
25955           - DrawRadioButton(): Fixed stringformat to show hotkeys
25956         * CommonDialog.cs: Removed WndProc override, not needed
25957
25958 2005-02-14  Peter Bartok  <pbartok@novell.com>
25959
25960         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
25961           missed those in the rewrite
25962
25963 2005-02-14  Miguel de Icaza  <miguel@novell.com>
25964
25965         * NumericUpDown.cs (Increment, ToString): Add.
25966         (DecimalPlaces): implement.
25967         
25968         Add attributes.
25969         
25970         * UpDownBase.cs: Add the designer attributes.
25971
25972 2005-02-13  Peter Bartok  <pbartok@novell.com>
25973
25974         * Panel.cs: Removed border_style, now in Control
25975         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
25976           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
25977
25978 2005-02-13  Peter Bartok  <pbartok@novell.com>
25979
25980         * MouseButtons.cs: Added missing attributes
25981         * XplatUIStructs.cs: Added enumeration for title styles
25982         * LeftRightAlignment.cs: Added missing attributes
25983         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
25984           it compatible with Graphics.FromHwnd()
25985         * SelectedGridItemChangedEventArgs.cs: Fixed property type
25986         * Keys.cs: Added missing attributes
25987         * SelectionRange.cs: Added missing attributes
25988         * SelectionRangeConverter.cs: Added
25989         * XplatUI.cs:
25990           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
25991             ReleaseMenuDC methods
25992           - Renamed ReleaseWindow to UngrabWindow
25993           - Added proper startup notice to allow version identification
25994         * Form.cs:
25995           - Added missing attributes
25996           - Removed FormParent concept
25997         * Label.cs: Removed border_style field, now in Control
25998         * RadioButton.cs: Now properly selects RadioButton when focus is
25999           received
26000         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
26001         * Control.cs:
26002           - Added missing attributes
26003           - Added borderstyle handling
26004           - Removed FormParent concept support
26005           - Fixed calls to XplatUI to match changed APIs
26006           - Fixed bug that would case us to use disposed Graphics objects
26007           - Removed unneeded internal methods
26008           - PerformLayout(): Fixed to handle DockStyle.Fill properly
26009           - SelectNextControl(): Fixed to properly check common parents
26010         * TextBoxBase.cs: Removed border_style field (now in Control)
26011         * MessageBox.cs:
26012           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
26013             fixed calculations for form size
26014           - Added support for localized strings and icons
26015           - Improved form size calculations, added border
26016         * ListView.cs: Removed border_style field (now in Control)
26017         * X11Structs.cs: Moved several structs from X11 driver here
26018         * X11Keyboard.cs: Changed debug message
26019         * Application.cs: Removed FormParent concept support
26020         * CommonDialog.cs:
26021           - Resetting end_modal flag
26022           - Removed FormParent concept support
26023         * NativeWindow.cs: Removed FormParent concept support
26024         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
26025           Client area and Non-Client whole window to allow support for WM_NC
26026           messages
26027         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
26028           prevent using it until it supports Hwnd as per Geoff Norton's request
26029         * ToolBar.cs: Fixed drawing, was not doing proper drawing
26030         * PictureBox.cs: Removed border_style field, now in Control
26031         * XplatUIWin32.cs: Added new driver methods
26032
26033 2005-02-12  Peter Bartok  <pbartok@novell.com>
26034
26035         * OpacityConverter.cs: Implemented
26036         * Hwnd.cs: Internal class to support drivers that need to emulate
26037           client area/non-client area window behaviour
26038
26039 2005-02-11  Peter Bartok  <pbartok@novell.com>
26040
26041         * KeysConverter.cs: Implemented
26042
26043 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
26044
26045         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
26046         * LinkLabel: Added missing attributes
26047         * MainMenu.cs: fixes ToString
26048         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
26049         * ListBox.cs: fixes event position
26050         * TrackBar.cs: adds missing attributes and events
26051         
26052 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
26053
26054         * MenuItem.cs: Use SystemInformation and bug fixes
26055         * MenuAPI.cs: Use SystemInformation and bug fixes
26056
26057 2005-02-09  Jackson Harper  <jackson@ximian.com>
26058
26059         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
26060         their keystate otherwise things like VK_MENU get stuck "on".
26061
26062 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
26063
26064         * ListBox.cs: Fixes AddRange bug
26065         
26066 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
26067
26068         * ProgressBar.cs
26069                 - Add missing attributes
26070                 - Add missing method
26071                 
26072         * CheckedListBox.cs: Added missing attributes
26073                 - Add missing attributes
26074                 - Remove extra method
26075         
26076         * ComboBox.cs: Added missing attributes
26077         * VScrollBar.cs: Added missing attributes
26078         * ScrollBar.cs:  Added missing attributes
26079         * ListBox.cs: Fixes signature, add missing consts
26080         * LinkArea.cs:   Added missing attributes
26081         
26082
26083 2005-02-08  Peter Bartok  <pbartok@novell.com>
26084
26085         * Menu.cs: Added missing attributes
26086         * MainMenu.cs: Added missing attributes
26087         * GroupBox.cs: Added missing attributes
26088         * Label.cs: Added missing attributes
26089         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
26090         * ColorDialog.cs:
26091           - Added Instance and Options properties
26092           - Added missing attributes
26093         * Cursor.cs: Made Serializable
26094         * NotifyIcon: Added missing attributes
26095         * MenuItem.cs: Added missing attributes
26096         * TextBoxBase.cs: Implemented AppendText() and Select() methods
26097         * Panel.cs: Added Missing attributes
26098         * MonthCalendar.cs: Fixed CreateParams
26099
26100 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
26101         
26102         * LinkLabel.cs:
26103                 - Fixes signature
26104                 - Fixes issues with links
26105                 - Adds the class attributes
26106
26107 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
26108         
26109         * ComboBox.cs:
26110                 - Fixes button when no items available in dropdown
26111                 - Fixes repainting problems
26112                 - Adds the class attributes
26113                 
26114 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26115
26116         * XplatUIOSX.cs: Detect the menu bar and title bar height from
26117         the current theme.  Cache these on startup.
26118
26119 2005-02-07  Jackson Harper  <jackson@ximian.com>
26120
26121         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
26122         the scrollbar buttons when they are depressed.
26123
26124 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26125
26126         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
26127         Get the display size from the main displayid.  We currently dont
26128         support multiple display configurations.
26129
26130 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26131
26132         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
26133
26134 2005-02-07  Miguel de Icaza  <miguel@novell.com>
26135
26136         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
26137
26138 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
26139
26140         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
26141
26142 2005-02-04  Jackson Harper  <jackson@ximian.com>
26143
26144         * ThemeWin32Classic.cs: Respect the clipping rect when
26145         drawing. Only fill the intersection of clips and rects so there
26146         isn't a lot of large fills.
26147         * ScrollBar.cs: Pass the correct clipping rect to the theme
26148         engine. Remove some debug code.
26149
26150 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
26151         
26152         * DateTimePicker.cs:
26153                 - Fixed crash on DateTime.Parse, use Constructor instead
26154
26155 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
26156         
26157         * MenuItem.cs:
26158         * MenuAPI.cs:
26159                 - Owner draw support (MeasureItem and DrawItem)
26160
26161 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
26162         
26163         *  Menu.cs:
26164                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
26165                 - Fixes MenuItems.Add range
26166         * MenuItem.cs:
26167                 - MergeMenu and Clone and CloneMenu functions
26168
26169 2005-02-03  Jackson Harper  <jackson@ximian.com>
26170
26171         * ScrollBar.cs: Make abstract
26172         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
26173         is abstract.
26174
26175 2005-02-03  Jackson Harper  <jackson@ximian.com>
26176
26177         * ScrollBar.cs: First part of my scrollbar fixups. This removes
26178         all the unneeded refreshes and uses invalidates with properly
26179         computed rects.
26180
26181 2005-02-03  Peter Bartok  <pbartok@novell.com>
26182
26183         * ComponentModel.cs: Added
26184         * IDataGridEditingService.cs: Added
26185         * Timer.cs: Added missing attributes
26186         * ToolTip.cs: Added missing attributes
26187
26188 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
26189
26190         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
26191
26192 2005-02-03  Peter Bartok  <pbartok@novell.com>
26193
26194         * ListBox.cs: Added missing attributes
26195
26196 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
26197         
26198         * ListBox.cs:
26199                 - Fixes font height after font change
26200                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
26201                 
26202 2005-02-02  Peter Bartok  <pbartok@novell.com>
26203
26204         * HandleData.cs: Introduced static methods to allow class
26205           to be more self-contained and track it's own HandleData objects
26206         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
26207           HandleData to use new static methods
26208
26209 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
26210
26211         * Combobox.cs:
26212                 - Fixes default size and PreferredHeight
26213                 - Missing events
26214                 - ObjectCollection.Insert implementation
26215                 
26216         * ListControl.cs
26217                 - Fixes signature
26218         * ListBox.cs:
26219                 - Several fixes
26220                 - ObjectCollection.Insert implementation
26221                 - No selection after clean
26222                 - Small fixes
26223
26224 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
26225
26226         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
26227
26228 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
26229
26230         * Combobox.cs:
26231                 - Caches ItemHeight calculation for OwnerDrawVariable
26232                 - Handles dropdown properly
26233                 - Fixes several minor bugs
26234
26235 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
26236
26237         * ListBox.cs:
26238                 - Fixes 71946 and 71950
26239                 - Fixes changing Multicolumn on the fly
26240                 - Fixes keyboard navigation on Multicolumn listboxes
26241
26242 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26243         
26244         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
26245         crash reporter log.
26246
26247 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26248
26249         * XplatUIOSX.cs: Allow applications to actually exit.
26250
26251 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26252
26253         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
26254         their parent at creation time rather than lazily later.  Fixes a major
26255         regression we were experiencing.
26256
26257 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
26258
26259         * ThemeWin32Classic.cs: more date time picker painting fixes
26260         * DateTimePicker.cs: more monthcalendar drop down fixes
26261         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
26262
26263 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
26264
26265         * ScrollBar.cs:
26266                 - When moving the thumb going outside the control should stop the moving
26267                 - Adds the firing of missing events
26268                 - Fixes no button show if Size is not specified
26269                 - End / Home keys for keyboard navigation
26270
26271 2005-01-30  Peter Bartok  <pbartok@novell.com>
26272
26273         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
26274           sanity check to prevent theoretical loop
26275         * XplatUIWin32.cs (SetVisible): Removed debug output
26276         * XplatUIX11.cs (SystrayChange): Added sanity check
26277         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
26278         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
26279           behaviour, valid until the X11 client window rewrite is done
26280         * TextBox.cs (ctor): Setting proper default foreground and background
26281           colors
26282
26283 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
26284
26285         * Theme: Added DrawDateTimePicker to interface
26286         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
26287         * DateTimePicker.cs: Created (still needs keys and painting code)
26288         * DateTimePickerFormat.cs: added
26289         * MonthCalendar.cs: fixed CreateParams for popup window mode
26290           
26291 2005-01-29  Peter Bartok  <pbartok@novell.com>
26292
26293         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
26294           this should also the calculations for ligher/darker
26295         * Theme.cs: Fixed defaults for ScrollBar widths/heights
26296
26297 2005-01-29  Peter Bartok  <pbartok@novell.com>
26298
26299         * ArrangeDirection.cs: Added
26300         * ArrangeStartingPositon.cs: Added
26301         * SystemInformation.cs: Implemented
26302         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
26303           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
26304           used by SystemInformation class
26305         * X11Strucs.cs: Added XSizeHints structure
26306         * MenuAPI.cs:
26307           - Fixed CreateParams to make sure the menu window is always visible
26308           - TrackPopupMenu: Added check to make sure we don't draw the
26309             menu offscreen
26310
26311 2005-01-29  Peter Bartok  <pbartok@novell.com>
26312
26313         * HandleData.cs: Added method for altering invalid area
26314         * TextBoxBase.cs: Implemented TextLength
26315
26316 2005-01-28  Peter Bartok  <pbartok@novell.com>
26317
26318         * XplatUIX11.cs: Improvement over last patch, not sending
26319           the WM_PAINT directly anymore, instead we scroll any pending
26320           exposed areas and let the system pick out the WM_PAINT later
26321
26322 2005-01-28  Peter Bartok  <pbartok@novell.com>
26323
26324         * SWF.csproj: Deleted, no longer used. Instead,
26325           Managed.Windows.Forms/SWF.csproj should be used
26326         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
26327           directly, to avoid a potential race condition with the next
26328           scroll
26329
26330 2005-01-28  Peter Bartok  <pbartok@novell.com>
26331
26332         * XplatUI.cs: Made class internal
26333
26334 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
26335
26336         * CheckedListBox.cs:
26337                 - Draw focus
26338                 - Fixed Drawing
26339                 - Missing methods and events
26340
26341 2005-01-27  Peter Bartok  <pbartok@novell.com>
26342
26343         * Application.cs (Run): Don't use form if we don't have one
26344
26345 2005-01-27  Peter Bartok  <pbartok@novell.com>
26346
26347         * TextBoxBase.cs (get_Lines): Fixed index off by one error
26348
26349 2005-01-27  Peter Bartok  <pbartok@novell.com>
26350
26351         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
26352         * GridItem.cs: Added; Patch by Jonathan S. Chambers
26353         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
26354         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
26355         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
26356         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
26357         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26358         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
26359         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26360         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26361         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26362         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
26363
26364 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
26365
26366         * Combobox.cs:
26367                 - Draw focus on Simple Combobox
26368                 - Fixes drawing issues
26369                 - fixes 71834
26370
26371 2005-01-27  Peter Bartok  <pbartok@novell.com>
26372
26373         * Form.cs:
26374           - Place window in default location, instead of hardcoded 0/0
26375           - Send initial LocationChanged event
26376         * Control.cs:
26377           - UpdateBounds after creation to find out where the WM placed us
26378           - Make sure that if the ParentForm changes location the Form
26379             is notified
26380         * XplatUIX11.cs: XGetGeometry will not return the coords relative
26381             to the root, but to whatever the WM placed around us.
26382             Translate to root coordinates before returning toplevel
26383             coordinates
26384         * XplatUIWin32.cs: Removed debug output
26385         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
26386           flag to GetWindowPos, to allow translation of coordinates on X11
26387
26388 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
26389
26390         * ListBox.cs: connect LostFocus Event
26391
26392 2005-01-27  Peter Bartok  <pbartok@novell.com>
26393
26394         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
26395           XplatUIX11.cs: Extended the Systray API
26396         * Form.cs: Removed debug output
26397         * Application.cs: Fixed focus assignment, always need to call
26398           XplatUI.Activate() since Form.Activate() has rules that may
26399           prevent activation
26400         * NotifyIcon.cs: Should be complete now
26401         * ToolTip.cs: Worked around possible timer bug
26402
26403 2005-01-27  Jackson Harper  <jackson@ximian.com>
26404
26405         * TabControl.cs:
26406         - Only invalidate the effected tabs when the
26407         selected index changes. This reduces drawing and gets rid of some
26408         flicker.
26409         - Only refresh if the tabs need to be shifted, otherwise only
26410         invalidate the slider button.
26411         - On windows the tabs are not filled to right if the slider is
26412         visible.
26413         
26414 2005-01-27  Jackson Harper  <jackson@ximian.com>
26415
26416         * TabControl.cs: Only refresh on mouseup if we are showing the
26417         slider. Also only invalidate the button whose state has changed.
26418
26419 2005-01-26  Peter Bartok  <pbartok@novell.com>
26420
26421         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
26422         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
26423           and SystrayRemove() methods
26424         * XplatUIOSX.cs: Stubbed Systray methods
26425         * XplatUIX11.cs:
26426           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
26427             methods
26428           - Fixed broken XChangeProperty calls (marshalling messed up things)
26429         * X11Structs.cs: Added enums and structs required for Size hinting
26430         * NotifyIcon.cs: Added & implemented
26431
26432 2005-01-26  Jackson Harper  <jackson@ximian.com>
26433
26434         * TabControl.cs: Space vertically layed out tabs properly.
26435
26436 2005-01-26  Peter Bartok  <pbartok@novell.com>
26437
26438         * Form.cs (CreateClientParams): Always set the location to 0,0
26439           since we're a child window.
26440
26441         * Control.cs (SetVisibleCore): Always explicitly setting the location
26442           of a toplevel window, apparently X11 doesn't like to move windows
26443           while they're not mapped.
26444
26445 2005-01-26  Jackson Harper  <jackson@ximian.com>
26446
26447         * TabControl.cs: Implement FillToRight size mode with vertically
26448         rendered tabs.
26449
26450 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26451
26452         * ControlPaint.cs, ThemeWin32Classic.cs
26453                 - Fixes DrawFocusRectangle
26454
26455 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26456
26457         * MenuAPI.cs:
26458                 - MenuBar tracking only starts when item is first clicked
26459                 - Fixes menu hidding for multiple subitems
26460                 - Unselect item in MenuBar when item Executed
26461                 - Fixes bug 71495
26462
26463 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
26464
26465         * ListControl.cs:
26466                 - IsInputKey for ListBox
26467         * ListBox.cs:
26468                 - Focus item
26469                 - Shift and Control item selection
26470                 - Implement SelectionMode.MultiExtended
26471                 - Fixes RightToLeft
26472         * ComboBox.cs:
26473                 - IsInputKey implemented
26474                 - Do not generate OnTextChangedEdit on internal txt changes
26475                 
26476 2005-01-23  Peter Bartok  <pbartok@novell.com>
26477
26478         * AccessibleObject.cs: Partially implemented Select()
26479         * MonthCalendar.cs: Added missing attributes and events
26480         * Form.cs: Fixed CreateParams behaviour, now controls derived from
26481           form can properly override CreateParams.
26482         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
26483           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
26484           Control performs Invalidate & Update
26485         * NativeWindow (CreateHandle): Added special handling for Form
26486           and Form.FormParent classes to allow overriding of From.CreateParams
26487         * Control.cs:
26488           - ControlNativeWindow: Renamed 'control' variable to more intuitive
26489             name 'owner'
26490           - ControlNativeWindow: Added Owner property
26491           - Removed usage of Refresh() on property changes, changed into
26492             Invalidate(), we need to wait until the queue is processed for
26493             updates, direct calls might cause problems if not all vars for
26494             Paint are initialized
26495           - Added call to UpdateStyles() when creating the window, to set any
26496             styles that CreateWindow might have ignored.
26497           - Added support for Form CreateParent overrides to UpdateStyles()
26498         * MessageBox.cs: Removed no longer needed FormParent override stuff,
26499           CreateParams are now properly overridable
26500         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
26501           CreateParams are now properly overridable
26502
26503 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
26504
26505         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
26506         OnTextBoxChanged.
26507
26508         Capture LostFocus and OnTextBoxChanged.  The later introduces a
26509         recursive invocation that I have not figured out yet.
26510
26511         Reset the timer when not using (it was accumulating).
26512
26513
26514         (OnTextBoxChanged): Set UserEdit to true here to track whether the
26515         user has made changes that require validation.
26516
26517         Reset changing to avoid loops.
26518
26519 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
26520
26521         * NumericUpDown.cs: Display value at startup.
26522
26523         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
26524         ValidateEditText.
26525
26526         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
26527         filled in.  Added some basic parsing of text.
26528
26529         Still missing the OnXXX method overrides, and figuring out the
26530         events that must be emitted.
26531
26532         * UpDownBase.cs: Handle UserEdit on the Text property.
26533         
26534 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
26535
26536         * ComboBox.cs:
26537           - Fixes IntegralHeight
26538           - ToString method
26539
26540 2005-01-21  Jackson Harper  <jackson@ximian.com>
26541
26542         * TabControl.cs: Set the SelectedIndex property when SelectedTab
26543         is set so that the page visibility is updated and the tabs are
26544         sized correctly.
26545
26546 2005-01-21  Jackson Harper  <jackson@ximian.com>
26547
26548         * TabControl.cs: Use cliping rectangle for blitting. Give the
26549         theme the clipping rect so we can do clipping while
26550         drawing. Remove some debug code.
26551
26552 2005-01-21  Jackson Harper  <jackson@ximian.com>
26553
26554         * TabPage.cs: Add a new method so tab pages can force the tab
26555         control to recalculate the tab page sizes.
26556         * TabControl.cs: UpdateOwner needs to make the tab control recalc
26557         sizes.
26558
26559 2005-01-20  Jackson Harper  <jackson@ximian.com>
26560
26561         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
26562
26563 2005-01-20  Jackson Harper  <jackson@ximian.com>
26564
26565         * TreeView.cs: Set the bounds for nodes properly. They were
26566         getting screwed up when checkboxes were not enabled, but images
26567         were.
26568
26569 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
26570
26571         * ListBox.cs:
26572                 - Owner draw support
26573                 - Fixes
26574                 
26575 2005-01-20  Jackson Harper  <jackson@ximian.com>
26576
26577         * XplatUIStructs.cs: More misc keys
26578         * X11Keyboard.cs: Ignore some control keys.
26579
26580 2005-01-20  Jackson Harper  <jackson@ximian.com>
26581
26582         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
26583         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
26584
26585 2005-01-19  Peter Bartok  <pbartok@novell.com>
26586
26587         * Control.cs: Un-selecting the control when it is loosing focus
26588
26589 2005-01-19  Jackson Harper  <jackson@ximian.com>
26590
26591         * TreeView.cs: Hook up to the text controls leave event so we can
26592         end editing when the users clicks outside the text box.
26593         
26594 2005-01-19  Jackson Harper  <jackson@ximian.com>
26595
26596         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
26597         get set in the conversion array.
26598
26599 2005-01-19  Peter Bartok  <pbartok@novell.com>
26600
26601         * Application.cs (ModalRun): Added a call to CreateControl to ensure
26602           focus is properly set
26603         * Button.cs:
26604           - Added missing attributes
26605           - removed styles, those are already set in the base class
26606         * ButtonBase.cs:
26607           - Added missing attributes
26608           - Added clip window styles
26609         * CheckBox.cs: Added missing attributes
26610         * CommonDialog.cs:
26611           - FormParentWindow.CreateParams: Added required clip styles
26612         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
26613           also filters modifier keys
26614         * MessageBox.cs:
26615           - Added assignment of Accept and Cancel button to enable Enter
26616             and Esc keys in MessageBox dialogs
26617           - FormParentWindow.CreateParams: Added required clip styles
26618         * RadioButton.cs: Added missing attributes
26619         * TextControl.cs: No longer draws selection if control does not
26620           have focus
26621         * TextBoxBase.cs:
26622           - Now draws simple rectangle around test area to make it obvious
26623             there's a control. This is a hack until we properly support borders
26624           - A few simple fixes to support selections better, now erases selected
26625             text when typing, and resets selection when using movement keys
26626
26627 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
26628
26629         * UpDownBase.cs: Added some new properties.
26630
26631         * DomainUpDown.cs: Implement a lot to get my test working.
26632
26633 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26634
26635         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
26636
26637 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26638
26639         * OSXStructs (WindowAttributes): Fixed csc complaints
26640
26641 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26642
26643         * XplayUIOSX.cs:
26644           OSXStructs.cs: Initial refactor to move enums and consts into
26645           OSXStructs and use them in the driver for greater readability.
26646
26647 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26648
26649         * XplatUIOSX.cs: Initial support for Standard Cursors.
26650         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
26651
26652 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
26653
26654         * ComboBox.cs: ability to change style when the ctrl is already
26655         created, missing methods and events, bug fixes, signature fixes
26656
26657 2005-01-19  Peter Bartok  <pbartok@novell.com>
26658
26659         * Cursors.cs (ctor): Added ctor to fix signature
26660
26661 2005-01-18  Peter Bartok  <pbartok@novell.com>
26662
26663         * Button.cs: Implemented DoubleClick event
26664         * ButtonBase.cs:
26665           - Fixed keyboard handling to behave like MS, where the press of
26666             Spacebar is equivalent to a mousedown, and the key release is
26667             equivalent to mouseup. Now a spacebar push will give the same
26668             visual feedback like a mouse click.
26669           - Added missing attributes
26670           - Added ImeModeChanged event
26671           - Added support for generating DoubleClick event for derived classes
26672         * CheckBox.cs:
26673           - Implemented DoubleClick event
26674           - Added missing attributes
26675         * CommonDialog.cs: Added missing attribute
26676         * ContextMenu.cs: Added missing attributes
26677         * RadioButton.cs:
26678           - AutoChecked buttons do not allow to be unselected when clicked
26679             (otherwise we might end up with no selected buttons in a group)
26680           - Added missing attributes
26681           - Implemented DoubleClickEvent
26682         * ThreadExceptionDialog.cs: Enabled TextBox code
26683
26684 2005-01-18  Peter Bartok  <pbartok@novell.com>
26685
26686         * Form.cs: Removed debug output
26687         * Button.cs: Added support for DoubleClick method
26688
26689 2005-01-18  Peter Bartok  <pbartok@novell.com>
26690
26691         * Form.cs:
26692           - Added method to parent window that allows triggering size
26693             calculations when a menu is added/removed
26694           - set_Menu: Cleaned up mess from early days of Form and Control,
26695             now properly triggers a recalc when a menu is added/removed
26696           - Added case to select form itself as focused form if no child
26697             controls exist
26698           - Added PerformLayout call when showing dialog, to ensure properly
26699             placed controls
26700         * Control.cs:
26701           - Select(): Made internal so Form can access it
26702           - Focus(): Only call Xplat layer if required (avoids loop), and sets
26703             status
26704         * Application.cs (Run): Removed hack and calls PerformLayout instead
26705           to trigger calculation when Form becomes visible
26706
26707 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
26708
26709         * ComboBox.cs: fixes for ownerdraw
26710
26711 2005-01-18  Peter Bartok  <pbartok@novell.com>
26712
26713         * TextControl.cs:
26714           - Sentinel is no longer static, each Document gets it's own, this
26715             avoids locking or alternatively overwrite problems when more
26716             than one text control is used simultaneously.
26717           - Switched to use Hilight and HilightText brushes for text selection
26718
26719         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
26720
26721 2005-01-18  Peter Bartok  <pbartok@novell.com>
26722
26723         * Control.cs:
26724           - Hooked up the following events:
26725                 o ControlAdded
26726                 o ControlRemoved
26727                 o HandleDestroyed
26728                 o ImeModeChanged
26729                 o ParentChanged
26730                 o TabStopChanged
26731                 o Invalidated
26732                 o SystemColorsChanged
26733                 o ParentFontChanged
26734                 o Move
26735           - Removed debug output
26736           - Added a call to the current theme's ResetDefaults when a color change
26737             is detected
26738         * Form.cs: Now setting the proper ImeMode
26739         * Theme.cs: Defined a method to force recreation of cached resources
26740           and rereading of system defaults (ResetDefaults())
26741         * ThemeWin32Classic.cs: Added ResetDefaults() stub
26742
26743 2005-01-17  Peter Bartok  <pbartok@novell.com>
26744
26745         * Control.cs: Added missing attributes
26746
26747 2005-01-17  Jackson Harper  <jackson@ximian.com>
26748
26749         * TreeNode.cs: Implement editing. Add missing properties selected
26750         and visible.
26751         * TreeView.cs: Implement node editing. Also some fixes to use
26752         Invalidate (invalid area) instead of Refresh when selecting.
26753
26754 2005-01-17  Peter Bartok  <pbartok@novell.com>
26755
26756         * Control.cs:
26757           - Implemented InvokeGotFocus() method
26758           - Implemented InvokeLostFocus() method
26759           - Implemented InvokePaint() method
26760           - Implemented InvokePaintBackground() method
26761           - Implemented InvokeClick() method
26762           - Implemented FindForm() method
26763           - Implemented RectangleToClient() method
26764           - Implemented ClientToRectangle() method
26765           - Implemented ResetBackColor() method
26766           - Implemented ResetCursor() method
26767           - Implemented ResetFont() method
26768           - Implemented ResteForeColor() method
26769           - Implemented ResetImeMode() method
26770           - Implemented ResetLeftToRight() method
26771           - Implemented ResetText() method
26772           - Implemented Scale() methods
26773           - Implemented ScaleCore() method
26774           - Implemented Update() method
26775           - Removed unused variables
26776           - Stubbed AccessibilityNotifyClients and
26777             ControlAccessibleObject.NotifyClients() methods (dunno what to do
26778             with those yet)
26779           - Now setting proper default for RightToLeft property
26780           - Fixed bug in SetClientSizeCore that would cause windows to get
26781             really big
26782           - Now sending Click/DoubleClick events
26783           - Now selecting controls when left mouse button is clicked on
26784             selectable control
26785         * AccessibleEvents.cs: Added
26786         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
26787         * XplatUIOSX.cs: Stubbed UpdateWindow() method
26788         * XplatUIWin32.cs: Implemented UpdateWindow() method
26789         * XplatUIX11.cs: Implemented UpdateWindow() method
26790         * Form.cs: Removed stray semicolon causing CS0162 warning
26791         * ThemeWin32Classic.cs: Fixed unused variable warnings
26792         * ScrollableControl.cs: Now calls base method for ScaleCore
26793         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
26794           style to avoid interference with internal click handler (which is
26795           different than standard Control click handling)
26796         * RadioButton.cs:
26797           - Now unchecks all sibling radio buttons when control is
26798             selected (Fixes #68756)
26799           - Removed internal tabstop variable, using the one inherited from
26800             Control
26801
26802 2005-01-17  Jackson Harper  <jackson@ximian.com>
26803
26804         * NavigateEventArgs.cs: Fix base type.
26805         * LinkLabel.cs: Sig fix
26806         
26807 2005-01-17  Jackson Harper  <jackson@ximian.com>
26808
26809         * TreeView.cs: Only invalidate the effected nodes bounds when
26810         selecting nodes.
26811
26812 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26813
26814         * XplatUIWin32.cs: fixes Win32 marshaling
26815         * XplatUIX11.cs: fixes method signature
26816
26817 2005-01-17  Peter Bartok  <pbartok@novell.com>
26818
26819         * XplatUIX11.cs: Clean up resources when we no longer need them
26820
26821 2005-01-17  Peter Bartok  <pbartok@novell.com>
26822
26823         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
26824           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
26825           and DestroyCursor() methods.
26826         * Cursor.cs: Partially implemented, now supports standard cursors;
26827           still contains some debug code
26828         * Cursors.cs: Implemented class
26829         * Control.cs:
26830           - WndProc(): Added handling of WM_SETCURSOR message, setting the
26831             appropriate cursor
26832           - Implemented Cursor property
26833           - Replaced break; with return; more straightforwar and possibly
26834             faster
26835           - Now properly setting the result for WM_HELP
26836         * X11Structs.cs: Added CursorFontShape enum
26837         * XplatUIStructs.cs:
26838           - Added StdCursor enum (to support DefineStdCursor() method)
26839           - Added HitTest enum (to support sending WM_SETCURSOR message)
26840         * XplatUIX11.cs:
26841           - Now sends the WM_SETCURSOR message
26842           - Implemented new cursor methods
26843         * XplatUIOSX.cs: Stubbed new cursor methods
26844         * XplatUIWin32.cs:
26845           - Implemented new cursor methods
26846           - Added GetSystemMetrics function and associated enumeration
26847
26848 2005-01-15  Peter Bartok  <pbartok@novell.com>
26849
26850         * Control.cs:
26851           - WndProc(): Now handles EnableNotifyMessage
26852           - SelectNextControl(): Fixed bug where if no child or sibling
26853             controls exist we looped endlessly
26854
26855 2005-01-14  Jackson Harper  <jackson@ximian.com>
26856
26857         * TreeView.cs: Recalculate the tab pages when a new one is added
26858         so that the proper bounding rects are created.
26859
26860 2005-01-14  Jackson Harper  <jackson@ximian.com>
26861
26862         * TreeView.cs: Draw a gray box instead of a grip in the lower
26863         right hand corner when there are both horizontal and vertical
26864         scroll bars.
26865
26866 2005-01-14  Jackson Harper  <jackson@ximian.com>
26867
26868         * Control.cs: When erasing backgrounds use FromHwnd instead of
26869         FromHdc when there is a NULL wparam. This occurs on the X driver.
26870         * XplatUIX11.cs: Set the wparam to NULL.
26871
26872 2005-01-13  Jackson Harper  <jackson@ximian.com>
26873
26874         * PictureBox.cs: Implement missing methods (except ToString, need
26875         to test that on windows) and events. When visibility is changed we
26876         need to redraw the image because the buffers are killed. When size
26877         is changed refresh if the sizemode needs it.
26878
26879 2005-01-13  Peter Bartok  <pbartok@novell.com>
26880
26881         * Control.cs (SelectNextControl): Was using wrong method to select
26882           a control
26883
26884 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26885
26886         * ComboBox.cs: fixes dropstyle
26887
26888 2005-01-13  Peter Bartok  <pbartok@novell.com>
26889
26890         * Form.cs:
26891           - Implemented Select() override
26892           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
26893           - Now sets keyboard focus on startup
26894         * Control.cs (SelectNextControl): Now properly handles directed=true
26895         * TextBoxBase.cs:
26896           - WndProc: Now passes tab key on to base if AcceptTabChar=false
26897           - Added (really bad) focus rectangle (mostly for testing)
26898         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
26899           to enforce redraw on focus changes
26900         * ContainerControl.cs:
26901           - Fixed detection of Shift-Tab key presses
26902           - Fixed traversal with arrow keys
26903         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
26904           gonna keep this or if it's complete yet
26905         
26906 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26907
26908         * ComboBox.cs: missing properties, fixes
26909
26910 2005-01-13  Peter Bartok  <pbartok@novell.com>
26911
26912         * Panel.cs (ctor): Setting Selectable window style to off
26913         * Splitter.cs (ctor): Setting Selectable window style to off
26914         * GroupBox.cs (ctor): Setting Selectable window style to off
26915         * Label.cs (ctor): Setting Selectable window style to off
26916
26917 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
26918
26919         * UpDownBase.cs (InitTimer): If the timer has been already
26920         created, enable it.
26921
26922         Use a TextBox instead of a Label.
26923
26924 2005-01-12  Jackson Harper  <jackson@ximian.com>
26925
26926         * TreeView.cs: Refresh the tree after sorting the nodes. Always
26927         draw the connecting node lines (when ShowLines is true).
26928         * TreeNode.cs: The nodes index can now be updated. This is used
26929         when a node collection is sorted.
26930         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
26931         insert or an existing unsorted node collection can be sorted.
26932         
26933 2005-01-12  Peter Bartok  <pbartok@novell.com>
26934
26935         * ContainerControl.cs: Implemented ProcessDialogKeys()
26936
26937 2005-01-12  Peter Bartok  <pbartok@novell.com>
26938
26939         * Control.cs:
26940           - Implemented SelectNextControl() method
26941           - Several focus related bug fixes
26942           - Fixed Docking calculations to match MS documentation and
26943             behaviour
26944
26945 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
26946
26947         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
26948         bug fixes
26949
26950 2005-01-12  Peter Bartok  <pbartok@novell.com>
26951
26952         * Control.cs:
26953           - Fixed broken Contains() method
26954           - Implemented GetNextControl() method. Finally. This is the pre-
26955             requisite for focus handling.
26956
26957 2005-01-12  Peter Bartok  <pbartok@novell.com>
26958
26959         * OSXStrucs.cs: Added
26960
26961 2005-01-12  Peter Bartok  <pbartok@novell.com>
26962
26963         * XplatUIWin32.cs:
26964           - Removed PeekMessageFlags
26965           - Implemented SetWindowStyle() method
26966         * XplatUIStructs.cs: Added PeekMessageFlags
26967         * X11Structs: Added missing border_width field to XWindowChanges struct
26968         * XplatUIX11.cs:
26969           - PeekMessage: Now throws exception if flags which are not yet
26970             supported are passed
26971           - Implemented SetWindowStyle() method
26972           - Fixed SetZOrder to handle AfterHwnd properly
26973         * XplatUI.cs: Added SetWindowStyle() method
26974         * XplatUIDriver.cs: Added SetWindowStyle() abstract
26975         * Control.cs:
26976           - Implemented UpdateStyles() method
26977           - Implemented UpdateZOrder() method
26978         * XplatUIOSX.cs: Added SetWindowStyle() stub
26979
26980 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
26981
26982         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
26983         button mouse).
26984
26985
26986 2005-01-11  Jackson Harper  <jackson@ximian.com>
26987
26988         * TreeView.cs: Still need to draw lines to siblings even if out of
26989         the current node is out of the clip.
26990
26991 2005-01-11  Jackson Harper  <jackson@ximian.com>
26992
26993         * TreeView.cs: When setting the hbar/vbar/grip position use
26994         SetBounds so that perform layout is only called once. Also suspend
26995         and resume layout so layout is only done once for all controls.
26996         - Removed some debug fluff
26997         * SizeGrip.cs: Call base implmentation in overriding methods.
26998         - When visibility is changed the drawing buffers are killed so we
26999         need to redraw.
27000
27001 2005-01-11  Jackson Harper  <jackson@ximian.com>
27002
27003         * TreeView.cs: Calculate the open node count while drawing. This
27004         saves us an entire tree traversal for every paint operation. Use
27005         a member var for the open node count so less vars are passed around.
27006
27007 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
27008
27009         * MonthCalendar.cs:
27010         - fixed selection to use mousemove, not mouse polling on timer
27011         * ThemeWin32Classic.cs
27012         - removed redundant unused variable "no_more_content"
27013         
27014 2005-01-11  Peter Bartok  <pbartok@novell.com>
27015
27016         * XplatUIX11.cs (DoEvents): Needs to return when no more events
27017           are pending, so it now calls PeekMessage instead of GetMessage;
27018           implemented a incomplete version of PeekMessage
27019         
27020 2005-01-11  Peter Bartok  <pbartok@novell.com>
27021
27022         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
27023           I18n issues
27024         * TextBoxBase.cs: Added sending of TextChanged event
27025
27026 2005-01-10  Jackson Harper  <jackson@ximian.com>
27027
27028         * TreeView.cs: Try not to draw outside the clipping rectangle on
27029         each node element.
27030
27031 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
27032
27033         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
27034
27035 2005-01-10  Jackson Harper  <jackson@ximian.com>
27036
27037         * TreeView.cs:
27038         - Implement fast scrolling. Now only the newly
27039         exposed nodes are drawn and the old image is moved using the
27040         XplatUI::ScrollWindow method.
27041         - Factor in height of nodes when calculating whether or not the
27042         node is in the clipping rect.
27043
27044 2005-01-10  Jackson Harper  <jackson@ximian.com>
27045
27046         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
27047
27048 2005-01-10  Peter Bartok  <pbartok@novell.com>
27049
27050         * Application.cs: Added temporary hack to resolve all our resize
27051           required issues on startup. This will get fixed properly at
27052           some point in the future
27053
27054 2005-01-10  Jackson Harper  <jackson@ximian.com>
27055
27056         * SizeGrip.cs: New internal class that is used as a sizing
27057         grip control...hence the name.
27058
27059 2005-01-10  Peter Bartok  <pbartok@novell.com>
27060
27061         * Control.cs: Implemented proper TabIndex handling, now assigning
27062           a tabindex when a control is added to a container
27063         * GroupBox.cs (ctor): Now sets the Container style bit, required
27064           for Control.GetNextControl()
27065
27066 2005-01-09  Jackson Harper  <jackson@ximian.com>
27067
27068         * TextBoxBase.cs: Clear window when scrolling (fixes build).
27069
27070 2005-01-09  Peter Bartok <pbartok@novell.com>
27071
27072         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
27073           XplatUIX11.cs: Added ability to control ScrollWindow expose and
27074           an overload for ScrollWindow to allow only scrolling a rectangle
27075
27076 2005-01-09  Peter Bartok <pbartok@novell.com>
27077
27078         * Form.cs:
27079           - Implemented SetDesktopBounds method
27080           - Implemented SetDesktopLocation method
27081
27082 2005-01-08  Jackson Harper  <jackson@ximian.com>
27083
27084         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
27085         the node count has changed, this removes to VScroll::Refresh calls
27086         when drawing.
27087
27088 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
27089
27090         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
27091
27092 2005-01-07  Jackson Harper  <jackson@ximian.com>
27093
27094         * TreeNode.cs: Just update the single node when it is
27095         checked. Don't refresh after toggling, the Expand/Collapse already
27096         handles this.
27097         * TreeView.cs: Respect clipping a little more when drawing. Try
27098         not to redraw things that don't need to be redrawn. Just hide the
27099         scrollbars when they are no longer needed instead of removing
27100         them, so they don't have to be created again and again.
27101         
27102 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
27103
27104         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
27105         coordinates to window space to place the caret properly, FIXED.
27106         Implement GetWindowState & SetWindowState
27107
27108 2005-01-06  Peter Bartok <pbartok@novell.com>
27109
27110         * Form.cs:
27111           - Implemented ClientSize property
27112           - Implemented DesktopBounds property
27113           - Implemented DesktopLocation property
27114           - Implemented IsRestrictedWindow property
27115           - Implemented Size property
27116           - Implemented TopLevel property
27117           - Implemented FormWindowState property
27118         * Control.cs:
27119           - Implemented GetTopLevel() method
27120           - Implemented SetTopLevel() method
27121         * X11Structs.cs (Atom):
27122           - Added AnyPropertyType definition
27123           - Added MapState definiton and updated XWindowAttribute struct
27124         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
27125         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
27126         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
27127         * XplatUIWin32.cs:
27128           - Implemented GetWindowState() and SetWindowState() methods
27129           - Fixed Win32GetWindowLong return type
27130         * XplatUIX11.cs:
27131           - Introduced central function for sending NET_WM messages
27132           - Implemented GetWindowState() and SetWindowState() methods
27133         * TextBoxBase.cs (set_Lines):
27134           - Now uses Foreground color for text added via Text property (Duh!)
27135           - Added code to remember programmatically requested size (fixes
27136             behaviour when Multiline is set after Size)
27137           - Added AutoSize logic
27138
27139 2005-01-06  Jackson Harper  <jackson@ximian.com>
27140
27141         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
27142
27143 2005-01-06  Jackson Harper  <jackson@ximian.com>
27144
27145         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
27146         set to less then 0.
27147
27148 2005-01-06  Jackson Harper  <jackson@ximian.com>
27149
27150         * ScrollableControl.cs: Lazy init the scrollbars.
27151         
27152 2005-01-06  Jackson Harper  <jackson@ximian.com>
27153
27154         * Theme.cs: Speed up getting pens and solid brushes, by using
27155         their ARGB as a hash instead of tostring and not calling Contains.
27156
27157 2005-01-06  Peter Bartok <pbartok@novell.com>
27158
27159         * Form.cs:
27160           - Implemented OnActivated and OnDeactivate event trigger
27161           - Implemented Activate() method
27162           - Fixed ShowDialog() to activate the form that was active before
27163             the dialog was shown
27164         * XplatUIX11.cs:
27165           - Added global active_window var that tracks the currently active
27166             X11 window
27167           - Now always grabs Property changes from the root window to always
27168             catch changes on the active window property
27169           - Added code to PropertyNotify handler to send Active/Inactive
27170             messages when state changes. This puts X11 and Win32 en par on
27171             WM_ACTIVATE notifications (except for double notifications when
27172             the user clicks away from our modal window to another one of our
27173             windows)
27174
27175 2005-01-05  Jackson Harper  <jackson@ximian.com>
27176
27177         * ImageList.cs: Implment ctor
27178
27179 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27180
27181         * XplatUIOSX.cs: Implement Activate/SetTopmost
27182
27183 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27184
27185         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
27186
27187 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27188
27189         * XplatUIOSX.cs: Implement GetActive/SetFocus.
27190
27191 2005-01-05  Peter Bartok <pbartok@novell.com>
27192
27193         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
27194           XplatUIOSX.cs: Added GetActive method to return the currently
27195           active window for the application (or null, if none is active)
27196         * Form.cs:
27197           - Implemented ActiveForm
27198           - Commented out owner assignment for modal dialogs (causes problems
27199             on Win32, since the owner will be disabled)
27200           - Reworked some Active/Focus handling (still incomplete)
27201         * CommonDialog.cs: Commented out owner assignment for modal dialogs
27202           (causes problems on Win32, since the owner will be disabled)
27203         * IWin32Window: Added ComVisible attribute
27204
27205 2005-01-05  Peter Bartok <pbartok@novell.com>
27206
27207         * ToolTip.cs (WndProc): Enable setting focus now that we have the
27208           required XplatUI functions.
27209
27210 2005-01-05  Peter Bartok <pbartok@novell.com>
27211
27212         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
27213           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
27214           to implement focus and activation handling; still incomplete and
27215           with debug output
27216
27217 2005-01-04  Peter Bartok <pbartok@novell.com>
27218
27219         * TextBoxBase.cs: Changed access level for Document property to
27220           match switch to internal for TextControl
27221
27222 2005-01-04  Peter Bartok <pbartok@novell.com>
27223
27224         * AccessibleObject: Added ComVisible attribute
27225
27226 2005-01-04  Jackson Harper  <jackson@ximian.com>
27227
27228         * X11Keyboard.cs: Remove unneeded var.
27229
27230 2005-01-04  Jackson Harper  <jackson@ximian.com>
27231
27232         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
27233         but PAINT.
27234         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
27235         ClientMessage. This makes apps exit cleanly (more often).
27236         
27237 2005-01-04  Jackson Harper  <jackson@ximian.com>
27238
27239         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
27240         handling focus, return correct colors and fonts,
27241         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
27242         handle selection, horizontal scrolling, and mouse interaction.
27243
27244 2005-01-04  Peter Bartok <pbartok@novell.com>
27245
27246         * ICommandExecutor.cs: Added
27247         * IDataGridColumnStyleEditingNotificationService.cs: Added
27248         * IFeatureSupport.cs: Added
27249         * IFileReaderService.cs: Added
27250         * IDataObject.cs: Added ComVisible attribute
27251         * AmbientProperties.cs: Added
27252         * BaseCollection.cs: Added missing attributes
27253         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
27254         * BaseCollection.cs: Added missing attributes
27255         * Binding.cs: Added TypeConverter attribute
27256         * BindingContext.cs: Added DefaultEvent attribute
27257         * BindingsCollection.cs: Added DefaultEvent attribute
27258         * Button.cs: Added DefaultValue attribute
27259         * DragEventArgs.cs: Added ComVisible attribute
27260         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
27261         * KeyEventArgs.cs: Added ComVisible attribute
27262         * KeyPressEventArgs.cs: Added ComVisible attribute
27263         * MouseEventArgs.cs: Added ComVisible attribute
27264         * NavigateEventArgs.cs: Added
27265         * NavigateEventHandler.cs: Added
27266         * FeatureSupport.cs: Added
27267         * OSFeature.cs: Added
27268         * Theme.cs: Added abstract Version property to support OSFeature
27269         * ThemeWin32Classic.cs: Added Version property to
27270           support OSFeature.Themes
27271         * ProgressBar.cs: Removed OnPaintBackground override, not required since
27272           the proper styles to avoid background drawing are set, also doesn't
27273           match MS signature
27274         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
27275         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
27276         * ScrollEventArgs.cs: Added ComVisible attribute
27277         * SplitterEventArgs.cs: Added ComVisible attribute
27278         * AccessibleSelection.cs: Added Flags attribute
27279         * Appearance.cs: Added ComVisible attribute
27280         * Border3DSide.cs: Added ComVisible attribute
27281         * Border3DStyle.cs: Added ComVisible attribute
27282         * BorderStyle.cs: Added ComVisible attribute
27283         * DragAction.cs: Added ComVisible attribute
27284         * ErrorBlinkStyle.cs: Added
27285         * ScrollEventType.cs: Added ComVisible attribute
27286         * AnchorStyles.cs: Added Editor attribute
27287         * DockStyle.cs: Added Editor attribute
27288         * HorizontalAlignment.cs: Added ComVisible attribute
27289         * HelpEventArgs.cs: Added ComVisible attribute
27290         * PaintEventArgs.cs: Added IDisposable
27291
27292 2005-01-04  Peter Bartok <pbartok@novell.com>
27293
27294         * TextControl.cs: Switched Line, LineTag and Document classes to
27295           internal
27296
27297 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
27298
27299         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
27300         Simple mode, fixes, IntegralHeight, etc.
27301
27302 2005-01-04  Peter Bartok <pbartok@novell.com>
27303
27304         * TextBoxBase.cs: Using proper font variable now
27305
27306 2005-01-04  Peter Bartok <pbartok@novell.com>
27307
27308         * Form.cs (ShowDialog): Set parent to owner, if provided
27309         * GroupBox.cs: Removed unused vars
27310         * TextControl.cs:
27311           - Added GetHashCode() for Document and LineTag classes
27312           - Removed unused variables
27313           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
27314             to allow translation between continuous char position and line/pos
27315         * CheckBox.cs: Removed vars that are provided by base class
27316         * RadioButton.cs: Removed vars that are provided by base class, added
27317           new keyword where required
27318         * LinkLabel.cs: Added new keyword where required
27319         * Control.cs (WndProc): Removed unused variable
27320         * TextBoxBase.cs:
27321           - Finished SelectionLength property
27322           - Implemented SelectionStart property
27323           - Implemented Text property
27324           - Removed unused vars
27325         * MessageBox.cs: Added new keyword where required
27326         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
27327           WndProc signature
27328         * MenuAPI.cs: Added new keyword where required
27329         * ButtonBase.cs: Removed vars that are provided by base class, added
27330           new keyword where required
27331         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
27332           argument to double, to allow compiling with csc 2.0 (Atsushi ran
27333           into this)
27334         * Application.cs (Run): Now triggers the ThreadExit event
27335         * CommonDialog.cs: Added new keyword where required; now properly sets
27336           parent (owner) for dialog
27337         * XplatUIX11.cs: Commented out unused vars
27338         * StatusBar.cs: Fixed signature for Text property
27339         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
27340
27341 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
27342
27343         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
27344         TrackBar.cs, MonthCalendar.cs: remove unused vars
27345
27346 2005-01-03  Jackson Harper  <jackson@ximian.com>
27347
27348         * ThemeWin32Classic.cs:
27349         * X11Keyboard.cs: Remove unused vars.
27350
27351 2005-01-03  Peter Bartok  <pbartok@novell.com>
27352
27353         * TextBox.cs:
27354           - set_Text: Tied into TextControl
27355           - set_TextAlignment: Tied into TextControl
27356         * TextControl.cs:
27357           - Added alignment properties and implemented alignment handling
27358             and drawing (still has a bug, not generating proper expose events)
27359           - Added new Line() constructor to allow passing the line alignment
27360           - Fixed selection setting, properly handling end<start now
27361           - Added aligment considerations to RecalculateDocument()
27362         * TextBoxBase.cs:
27363           - Now properly enforces control height for single line controls
27364           - Added support for CharacterCasing
27365           - Added IsInputKey override
27366           - Fixed Keys.Enter logic
27367           - Added SetBoundsCore override
27368           - Fixed mouse selection handling
27369
27370 2005-01-03  Jackson Harper  <jackson@ximian.com>
27371
27372         * TreeView.cs:
27373           - Collapse and uncheck all nodes when CheckBoxes is disabled.
27374           - Checkboxes are always aligned to the bottom of the node,
27375           regardless of item height.
27376           - Use the node bounds to draw the text so we can center it when
27377           the item height is greater then the font height.
27378           - Node::Bounds are only the text part of the node.
27379         * TreeNode.cs: New method to combine collapsing and unchecking all
27380           nodes recursively.
27381
27382 2005-01-02  Jackson Harper  <jackson@ximian.com>
27383
27384         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
27385         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
27386         tree when a check is changed. TODO: Only refresh the checked node.
27387
27388 2004-12-30  Jackson Harper  <jackson@ximian.com>
27389
27390         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
27391         * TreeNode.cs: When collapsing make sure to never collapse the
27392         root node.
27393
27394 2004-12-29  Jackson Harper  <jackson@ximian.com>
27395
27396         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
27397         
27398 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
27399
27400         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
27401
27402 2004-12-28  Peter Bartok  <pbartok@novell.com>
27403
27404         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
27405           not yet assigned
27406
27407 2004-12-28  Peter Bartok  <pbartok@novell.com>
27408
27409         * Control.cs (WndProc): Added WM_HELP handler, now generates
27410           HelpRequested event
27411         * Form.cs: Added HelpButton property and required support code
27412         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
27413
27414 2004-12-28  Peter Bartok  <pbartok@novell.com>
27415
27416         * CommonDialog.cs:
27417           - Made DialogForm.owner variable internal
27418           - Added check to ensure owner form is set before setting
27419             owner properties in CreateParams
27420
27421 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
27422
27423         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
27424           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
27425           GetCursorPos.  Fix major visibility issues.  Rework the windowing
27426           system to support borderless/titleless windows (implements menus).
27427           Fix GetWindowPos.  Implement initial background color support for
27428           views.
27429
27430 2004-12-28  Peter Bartok  <pbartok@novell.com>
27431
27432         * Form.cs (get_CreateParams): Make sure we have an owner before using
27433           the owner variable. Implement proper default if no owner exists
27434
27435 2004-12-28  Peter Bartok  <pbartok@novell.com>
27436
27437         * In preparation for making Managed.Windows.Forms the default build target
27438           for System.Windows.Forms, the following stubbed files were added.
27439           Dialogs are currently being implemented by contributors and are only
27440           short-term place holders.
27441         * ColorDialog.cs: Initial check-in (minmal stub)
27442         * DataGrid.cs: Initial check-in (minimal stub)
27443         * DataGridLineStyle.cs: Initial check-in (minimal stub)
27444         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
27445         * DataGridTableStyle.cs: Initial check-in (minimal stub)
27446         * FontDialog.cs: Initial check-in (minimal stub)
27447         * FileDialog.cs: Initial check-in (minimal stub)
27448         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
27449         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
27450         * OpenFileDialog: Initial check-in (minimal stub)
27451         * IComponentEditorPageSite.cs: Initial check-in
27452         * Splitter.cs: Initial check-in (for Jackson)
27453         * SplitterEventArgs.cs: Initial check-in (for Jackson)
27454         * SplitterEventHandler.cs: Initial check-in (for Jackson)
27455         * TextBox.cs: Initial check-in; still needs some wiring to
27456           TextControl backend
27457         * Form.cs: Implemented ControlBox property
27458         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
27459         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
27460         * TextControl.cs: Added selection functionality; added todo header
27461         * TextBoxBase.cs:
27462           - Implemented Lines property
27463           - Implemented TextHeight property
27464           - Implemented SelectedText property
27465           - Implemented SelectionLength property
27466           - Implemented SelectAll method
27467           - Implemented ToString method
27468           - Removed and cleaned up some debug code
27469           - Implemented (still buggy) mouse text selection
27470
27471 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
27472
27473         * ComboBox.cs: Complete DropDownList implementation, fixes.
27474
27475 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
27476
27477         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
27478         * ComboBoxStyle.cs: ComboBoxStyle enum
27479         * ComboBox.cs: Initial work on ComboBox control
27480
27481 2004-12-21  Peter Bartok  <pbartok@novell.com>
27482
27483         * Control.cs (ctor, CreateParams): Moved setting of is_visible
27484           forward so that anything that creates a window gets the default,
27485           also no longer uses Visible property in CreateParams to avoid
27486           walking up the parent chain and possibly get the wrong visible
27487           status. Fixed IsVisible to no longer walk up to the parent.
27488
27489 2004-12-21  Peter Bartok  <pbartok@novell.com>
27490
27491         * Form.cs (ShowDialog): Unset modality for the proper window
27492  
27493 2004-12-20  Peter Bartok  <pbartok@novell.com>
27494
27495         * CommonDialog.cs: Initial check-in
27496
27497 2004-12-20  Peter Bartok  <pbartok@novell.com>
27498
27499         * Control.cs (Visible): Now uses the parent window instead of the
27500           client area window for the property
27501
27502         * Form.cs
27503           - ShowDialog(): Now uses the proper window for modality
27504           - The default visibility state for the form parent is now false. This
27505             will prevent the user from seeing all the changes to the form and
27506             its controls before the application hits Application.Run()
27507           - Removed some stale commented out code
27508
27509         * NativeWindow.cs:
27510           - Added FindWindow() method to have a method to check for existence
27511             of a window handle
27512           - Added ability to override default exception handling (for example
27513             when debugging with VS.Net; to do this the ExternalExceptionHandler
27514             define must be set
27515           - Removed some useless debug output
27516
27517         * XplatUIX11.cs:
27518           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
27519             not working as expected
27520           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
27521             property to allow switching back to the modal window if focus is
27522             given to another one of our windows (Application Modal)
27523           - Now only sets override_redirect if we create a window
27524             without WS_CAPTION
27525           - Moved EventMask selection before mapping of newly created window
27526             so we can catch the map event as well
27527           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
27528           - Added various Atom related DllImports
27529           - Implemented Exit() method
27530           - .ctor() : No longer shows window if WS_VISIBLE is not defined
27531             in the CreateParams
27532
27533         * MessageBox.cs: Now properly deals with the FormParent window by
27534           providing an override the FormParent CreateParams property to
27535           set as POPUP instead of OVERLAPPED window.
27536
27537 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27538
27539         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
27540         Minor code cleanup.
27541
27542 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27543         
27544         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
27545
27546 2004-12-18  Peter Bartok  <pbartok@novell.com>
27547
27548         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
27549           implementing SetModal() method
27550
27551 2004-12-18  Peter Bartok  <pbartok@novell.com>
27552
27553         * X11Structs.cs (XGCValues): Fixed type of function element
27554         * XplatUI.cs: Added ScrollWindow() method
27555         * XplatUIDriver.cs: Added ScrollWindow() abstract
27556         * XplatUIWin32.cs: Implemented ScrollWindow() method
27557         * XplatUIX11.cs: Implemented ScrollWindow() method
27558         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
27559
27560 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27561
27562         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
27563         Some more keyboard support (INCOMPLETE)
27564
27565 2004-12-17  Peter Bartok  <pbartok@novell.com>
27566
27567         * TextControl.cs:
27568         - Added color attribute to line tags.
27569         - Added color argument to all functions dealing with tags
27570         - Added color argument support to various functions
27571         - Fixed miss-calculation of baseline/shift in certain circumstances
27572
27573         * TextBoxBase.cs: Added new color option to test code
27574
27575 2004-12-17  Jackson Harper  <jackson@ximian.com>
27576
27577         * TreeNode.cs:
27578         * MonthCalendar.cs: Signature fixes
27579
27580 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27581
27582         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
27583         keyboard event moved it.  Create a new graphics context for each paint resolves this
27584
27585 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27586
27587         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
27588         Make caret exist and go blink blink.  Initial keyboard support.
27589         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
27590         works.
27591
27592 2004-12-17  Jackson Harper  <jackson@ximian.com>
27593
27594         * XplatUIStructs.cs: Updated set of virtual keycodes.
27595         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
27596
27597 2004-12-17  Jackson Harper  <jackson@ximian.com>
27598
27599         * XplatUIX11.cs: Prune old keyboard code.
27600
27601 2004-12-17  Jackson Harper  <jackson@ximian.com>
27602
27603         * XplatUIX11.cs: When generating mouse wparams get the modifier
27604         keys from the ModifierKeys property.
27605
27606 2004-12-17  Jackson Harper  <jackson@ximian.com>
27607
27608         * X11Keyboard.cs: Send up/down input when generating
27609         messages. Remove some unused vars.
27610
27611 2004-12-17  Jackson Harper  <jackson@ximian.com>
27612
27613         * TabControl.cs:
27614         * TreeView.cs: get rid of warnings.
27615
27616 2004-12-17  Jackson Harper  <jackson@ximian.com>
27617
27618         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
27619
27620 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
27621
27622         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
27623           CheckedListBox.cs: Implementation
27624
27625 2004-12-17  Peter Bartok  <pbartok@novell.com>
27626
27627         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
27628
27629 2004-12-16  Peter Bartok  <pbartok@novell.com>
27630
27631         * TextControl.cs:
27632           - InsertCharAtCaret(): Fixed start pos fixup
27633           - CaretLine_get: No longer derives the line from the tag, the tag
27634             could be stale if lines in the document have been added or deleted
27635           - RebalanceAfterDelete(): Fixed bug in balancing code
27636           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
27637           - Line.Streamline(): Now can also elminate leading empty tags
27638           - DumpTree(): Added a few more tests and prevented exception on
27639             uninitialized data
27640           - Added Debug section for Combining lines
27641           - Delete(): Now copies all remaining properties of a line
27642           
27643         * TextBoxBase.cs:
27644           - Left mousebutton now sets the caret (and middle button still acts
27645             as formatting tester, which must go away soon)
27646           - Added Debug section for Deleting/Combining lines
27647           - Fixed calculations for UpdateView after Combining lines
27648
27649 2004-12-16  Peter Bartok  <pbartok@novell.com>
27650
27651         * TextControl.cs: Now properly aligns text on a baseline, using the
27652           new XplatUI.GetFontMetrics() method. Simplified several calculations
27653         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
27654           defined
27655
27656 2004-12-16  Peter Bartok  <pbartok@novell.com>
27657
27658         * XplatUI.cs: Added GetFontMetrics() method
27659         * XplatUIDriver.cs: Added GetFontMetrics() abstract
27660         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
27661           into libgdiplus, our private GetFontMetrics function
27662         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
27663         * XplatUIWin32.cs: Implemented GetFontMetrics() method
27664
27665 2004-12-16  Jackson Harper  <jackson@ximain.com>
27666
27667         * XplatUIStruct.cs: Add enum for dead keys
27668         * X11Keyboard.cs: Map and unmap dead keys.
27669
27670 2004-12-16  Jackson Harper  <jackson@ximian.com>
27671
27672         * X11Keyboard.cs: Detect and use the num lock mask.
27673
27674 2004-12-16  Peter Bartok  <pbartok@novell.com>
27675
27676         * Control.cs (CreateGraphics): Added check to make sure the
27677           handle of the window exists before calling Graphics.FromHwnd()
27678
27679 2004-12-16  Peter Bartok  <pbartok@novell.com>
27680
27681         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
27682           contains a lot of code that's not supposed to be there for the
27683           real thing, but required for developing/testing the textbox
27684           backend.
27685
27686 2004-12-16  Peter Bartok  <pbartok@novell.com>
27687
27688         * TextControl.cs:
27689         - Fixed Streamline method
27690         - Added FindTag method to Line
27691         - Added DumpTree method for debugging
27692         - Added DecrementLines() method for deleting lines
27693         - Fixed UpdateView to update the cursor to end-of-line on single-line
27694           updates
27695         - Added PositionCaret() method
27696         - Fixed MoveCaret(LineDown) to move into the last line, too
27697         - Added InsertChar overload
27698         - Fixed InsertChar tag offset calculations
27699         - Added DeleteChar() method
27700         - Added Combine() method for folding lines
27701         - Fixed Delete() method, no longer allocates wasted Line object and
27702           now copies all properties when swapping nodes
27703         - Delete() method now updates document line counter
27704
27705 2004-12-15  Jackson Harper  <jackson@ximian.com>
27706
27707         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
27708         * X11Keyboard.cs: Expose the currently selected modifier keys
27709         through a property.
27710
27711 2004-12-15  Peter Bartok  <pbartok@novell.com>
27712
27713         * TextControl.cs: Initial check-in. Still incomplete
27714
27715 2004-12-15  Jackson Harper  <jackson@ximian.com>
27716
27717         * TreeNode.cs:
27718         * TreeView.cs: Fix build on csc (second time today ;-))
27719
27720 2004-12-15  Jackson Harper  <jackson@ximian.com>
27721
27722         * TreeView.cs: Store the treenodes plus/minus box bounds when it
27723         is calculated and use this for click testing.
27724         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
27725
27726 2004-12-15  Jackson Harper  <jackson@ximian.com>
27727
27728         * TreeView.cs: Pass the nodes image index to the image list when
27729         drawing that image.
27730
27731 2004-12-15  Jackson Harper  <jackson@ximian.com>
27732
27733         * X11Keyboard.cs: Set messages hwnd.
27734         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
27735         post_message calls.
27736
27737 2004-12-15  Jackson Harper  <jackson@ximian.com>
27738
27739         * X11Keyboard.cs: Fix to compile with csc.
27740         
27741 2004-12-15  Jackson Harper  <jackson@ximian.com>
27742
27743         * X11Structs.cs: Add key mask values
27744         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
27745         * X11Keyboard.cs: New file - Extrapolates and interpolates key
27746         down/up foo into WM_CHAR foo
27747         * KeyboardLayouts.cs: Common keyboard layouts
27748         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
27749         post messages into the main queue.
27750
27751 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
27752
27753         * Button.cs: implement ProcessMnemonic
27754         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
27755           brushes everytime
27756         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
27757         * ButtonBase.cs: Show HotkeyPrefix (not the &)
27758
27759 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
27760         
27761         * MonthCalendar.cs: Implemented click-hold for next/previous month
27762           and date selection
27763           
27764 2004-12-11  Peter Bartok  <pbartok@novell.com>
27765
27766         * X11Structs.cs:
27767           - Added XKeyboardState (moved from XplatUIX11.cs)
27768           - Added XCreateGC related enums and structures
27769           - Added GXFunction for XSetFunction
27770
27771         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
27772
27773         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
27774           CaretVisible() calls
27775
27776         * ToolTip.cs: Added code to prevent stealing focus from app windows
27777
27778         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
27779           DestroyCaret, SetCaretPos and CaretVisible)
27780
27781         * XplatUIX11.cs:
27782           - Added implementation for caret functions
27783           - Moved hover variables into a struct, to make it a bit easier
27784             on the eyes and to debug
27785           - Removed XKeyboardState (moved to XplatUIX11.cs)
27786           - Moved Keyboard properties into the properties region
27787
27788         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
27789           call to get a graphics context for our control
27790
27791         * XplatUIOSX.cs: Added empty overrides for the new caret functions
27792
27793         * TreeView.cs: Fixed bug. No matter what color was set it would always
27794           return SystemColors.Window
27795
27796         * XplatUIWin32.cs: Implemented caret overrides
27797
27798 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
27799
27800         * ListBox.cs: fire events, implement missing methods and properties,
27801         sorting.
27802
27803 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
27804
27805         * MonthCalendar.cs: invalidation bug fixing
27806         * ThemeWin32Classic.cs: paint fixing
27807
27808 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
27809
27810         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
27811         prepare the CGContextRef there now.
27812
27813 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
27814
27815         * MonthCalendar.cs:
27816           - optimisationL only invalidate areas that have changed
27817         * ThemeWin32Classic.cs:
27818           - only paint parts that intersect with clip_area
27819
27820 2004-12-09  Peter Bartok  <pbartok@novell.com>
27821
27822         * Application.cs: Undid changes from r37004 which cause problems
27823         on X11
27824
27825 2004-12-09  Ravindra  <rkumar@novell.com>
27826
27827         * ToolBar.cs: Added support for displaying ContextMenu
27828         attached to a button on ToolBar.
27829         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
27830         property.
27831
27832 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27833
27834         * Label.cs: autosize works in text change and removes unnecessary
27835         invalidate
27836
27837 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27838
27839         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
27840         remove warnings
27841
27842 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
27843
27844         * XplatUIOSX.cs: Added mouse move/click/grab support
27845         Remove some debugging WriteLines not needed anymore.
27846         Add window resizing/positioning.
27847         Fix visibility on reparenting.
27848
27849 2004-12-08  Peter Bartok  <pbartok@novell.com>
27850
27851         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
27852
27853 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
27854
27855         * XplatUIOSX.cs: Initial checkin
27856         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
27857
27858 2004-12-03  Ravindra <rkumar@novell.com>
27859
27860         * ListView.cs: Added some keybindings and fixed scrolling.
27861         ScrollBars listen to ValueChanged event instead of Scroll
27862         Event. This would let us take care of all changes being
27863         done in the scrollbars' values programmatically or manually.
27864         * ListView.cs (CanMultiselect): Added a check for shift key.
27865         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
27866         * ListViewItem.cs (Clone): Fixed. We need to make a copy
27867         of ListViewSubItemCollection as well.
27868
27869 2004-12-06  Peter Bartok <pbartok@novell.com>
27870
27871         * Control.cs (Parent): Added check and exception to prevent
27872         circular parenting
27873
27874 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
27875
27876         * ListBox.cs: implemented clipping, selection single and multiple,
27877         bug fixing
27878
27879 2004-12-03  Ravindra <rkumar@novell.com>
27880
27881         * ListView.cs (ListView_KeyDown):
27882         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
27883         when CTRL key is pressed.
27884         * ListViewItem.cs (Selected): Fixed setting the property.
27885
27886 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27887
27888         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
27889
27890         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
27891         MinimizeBox, ShowInTaskbar, TopMost properties.
27892
27893         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
27894         will be implemented).
27895
27896 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27897
27898         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
27899
27900         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
27901         tests.
27902         
27903         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
27904         
27905         * TreeView.cs: BackColor is Colors.Window.
27906
27907 2004-12-01  Jackson Harper  <jackson@ximian.com>
27908
27909         * TreeView.cs: When resizing the tree if the user is making it
27910         smaller we don't get expose events, so we need to handle adding
27911         the horizontal scrollbar in the size changed handler as well as
27912         the expose handler.
27913
27914 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
27915
27916         * DrawItemState.cs: fixes wrong enum values
27917
27918 2004-12-01  Jackson Harper  <jackson@ximian.com>
27919
27920         * TreeView.cs: Resize the hbar as well as the vbar on resize.
27921
27922 2004-12-01  Jackson Harper  <jackson@ximian.com>
27923
27924         * NodeLabelEditEventArgs.cs:
27925         * NodeLabelEditEventHandler.cs:
27926         * OpenTreeNodeEnumerator.cs:
27927         * TreeNode.cs:
27928         * TreeNodeCollection.cs:
27929         * TreeView.cs:
27930         * TreeViewAction.cs:
27931         * TreeViewCancelEventArgs.cs:
27932         * TreeViewCancelEventHandler.cs:
27933         * TreeViewEventArgs.cs:
27934         * TreeViewEventHandler.cs: Initial implementation.
27935
27936 2004-12-01  Ravindra <rkumar@novell.com>
27937
27938         * ListView.cs (CalculateListView): Fixed scrolling related
27939         calculations. Also, removed some debug statements from other
27940         places.
27941         * ListViewItem.cs: Changed access to 'selected' instance variable
27942         from private to internal.
27943         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
27944
27945 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
27946
27947         * ThemeWin32Classic.cs: remove cache of brush and pens for
27948         specific controls and use the global system, fixes scrollbutton
27949         bugs (for small sizes, disabled, etc)
27950         
27951         * ScrollBar.cs: does not show the thumb for very small controls
27952         (as MS) and allow smaller buttons that the regular size
27953
27954 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
27955
27956         * UpDownBase.cs: Add abstract methods for the interface.
27957         Add new virtual methods (need to be hooked up to TextEntry when it
27958         exists).
27959         Add override methods for most features.
27960         Computes the size, forces the height of the text entry.
27961
27962         * NumericUpDown.cs: Put here the current testing code.
27963
27964         * Set eol-style property on all files that do not have mixed line
27965         endings, to minimize the future problems.  There are still a few
27966         files with mixed endings, and someone should choose whether they
27967         want to move it or not.
27968
27969 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
27970
27971         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
27972         System.Colors
27973         
27974 2004-11-30  Ravindra <rkumar@novell.com>
27975
27976         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
27977         drawing and replaced use of SystemColors by theme colors.
27978         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
27979         * ListView.cs (ListViewItemCollection.Add): Throw exception when
27980         same ListViewItem is being added more than once.
27981
27982 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
27983
27984         * MonthCalendar.cs:
27985           - ControlStyles love to make the control not flicker
27986           
27987 2004-11-30  Peter Bartok  <pbartok@novell.com>
27988
27989         * CharacterCasing.cs: Added
27990
27991 2004-11-29  Peter Bartok  <pbartok@novell.com>
27992
27993         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
27994           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
27995           I am removing these files as they conflict with already completed
27996           work. While it is fantastic to get contributions to MWF, I
27997           respectfully ask that everyone please coordinate their contributions
27998           through mono-winforms-list or #mono-winforms at this time. We're
27999           explicitly avoiding stubbing and don't want controls that don't have
28000           their basic functionality implemented in svn. Please also see
28001           http://www.mono-project.com/contributing/winforms.html
28002
28003
28004 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
28005
28006         * Application.cs (ModalRun): Don't hang after exit.
28007
28008         * Theme.cs: New TreeViewDefaultSize property.
28009
28010         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
28011         with less hardcoded SystemColors constant.
28012         Implemented TreeViewDefaultSize.
28013
28014         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
28015         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
28016
28017
28018 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
28019
28020         * MonthCalendar.cs:
28021           - Fix NextMonthDate and PrevMonthDate click moving calendar
28022
28023 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
28024
28025         * MonthCalendar.cs:
28026           - Fix usage of ScrollChange Property when scrolling months
28027
28028 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
28029
28030         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
28031          - Fixes menu destroying
28032          - Support adding and removing items on already created menus
28033
28034 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
28035
28036         * MonthCalendar.cs:
28037           - Re-worked all bolded dates handling to match win32
28038         * ThemeWin32Classic.cs:
28039           - Fixed rendering with bolded dates
28040
28041 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
28042
28043         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
28044         - Horizontal scroolbar
28045         - Multicolumn
28046         - Fixes
28047
28048
28049 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
28050
28051         * MonthCalendar.cs:
28052           - Fix Usage of MaxSelectionCount from SelectionRange
28053           - Fixed Shift + Cursor Selection
28054           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
28055           - Fixed normal cursor selection to be compat with win32
28056           - Fixed Shift + Mouse Click selection
28057
28058 2004-11-24  Peter Bartok <pbartok@novell.com>
28059
28060         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
28061         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
28062         * XplatUIX11.cs:
28063           - CreatedKeyBoardMsg now updates keystate with Alt key
28064           - Added workaround for timer crash to CheckTimers, Jackson will
28065             develop a proper fix and check in later
28066           - Implemented DispatchMessage
28067           - Removed calling the native window proc from GetMessage (call
28068             now moved to DispatchMessage)
28069
28070         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
28071           the keydata (Fixes bug #69831)
28072
28073         * XplatUIWin32.cs:
28074           - (DispatchMessage): Switched to return IntPtr
28075           - Added DllImport for SetFocus
28076
28077 2004-11-24  Ravindra <rkumar@novell.com>
28078
28079         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
28080         background drawing.
28081         * ListViewItem.cs: Fixed various properties, calculations
28082         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
28083         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
28084         and some internal properties. Fixed MouseDown handler and Paint
28085         method.
28086
28087 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28088
28089         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
28090
28091 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28092
28093         * ContainerControl.cs: correct accidental check in of local changes
28094
28095 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28096
28097         * ThemeWin32Classic.cs:
28098                 - Fixed Drawing Last month in grid (sometimes not showing)
28099         * MonthCalendar.cs:
28100                 - Fixed title width calculation bug (makeing title small)
28101
28102 2004-11-23  Peter Bartok <pbartok@novell.com>
28103
28104         * XplatUIX11.cs:
28105           - Added generation of WM_MOUSEHOVER event
28106           - Added missing assignment of async_method atom
28107           - Fixed WM_ERASEBKGND; now only redraws the exposed area
28108
28109 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
28110
28111         * ThemeWin32Classic.cs:
28112                 - Fixed Drawing of today circle when showtodaycircle not set
28113                 - fixed drawing of first and last month in the grid (gay dates)
28114         * MonthCalendar.cs:
28115                 - Fixed Drawing of today circle
28116                 - Fixed drawing of grady dates
28117                 - Fixed HitTest for today link when ShowToday set to false
28118                 - Fixed DefaultSize to obey ShowToday
28119
28120 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
28121
28122         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
28123         * System.Windows.Forms/Theme.cs
28124         * MonthCalendar.cs: added for MonthCalendar
28125         * SelectionRange.cs: added for MonthCalendar
28126         * Day.cs: added for MonthCalendar: added for MonthCalendar
28127         * DateRangeEventArgs.cs: added for MonthCalendar
28128         * DateRangeEventHandler.cs: added for MonthCalendar
28129
28130 2004-11-22  Ravindra <rkumar@novell.com>
28131
28132         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
28133         property.
28134
28135 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
28136
28137         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
28138         event handler.
28139         
28140         * NumericUpDown.cs: Added new implementation.
28141         * UpDownBase.cs: Added new implementation.
28142
28143         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
28144         implementations.
28145         
28146         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
28147         implementations.
28148
28149         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
28150         methods.
28151
28152 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
28153
28154         * Timer.cs  (Dispose): Should call the base dispose when
28155         overriding.
28156
28157 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
28158
28159         * ScrollBar.cs: updates thumb position when max, min or increment
28160         is changed
28161
28162 2004-11-21  Ravindra <rkumar@novell.com>
28163
28164         * ListView.cs: Implemented item selection, activation and
28165         column header style. Fixed properties to do a redraw, if
28166         required. Added support for MouseHover, DoubleClick, KeyDown
28167         and KeyUp event handling and some minor fixes.
28168         * ListViewItem.cs: Fixed constructor.
28169         * ThemeWin32Classic.cs: Improved drawing for ListView.
28170
28171 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
28172
28173         * ThemeWin32Classic.cs: initial listbox drawing code
28174         * DrawMode.cs: new enumerator
28175         * ListControl.cs: stubbed class
28176         * ListBox.cs: initial implementation
28177         * Theme.cs: new methods definitions
28178         * SelectionMode.cs: new enumerator
28179
28180 2004-11-17  Peter Bartok  <pbartok@novell.com>
28181
28182         * XplatUIWin32.cs: Added double-click events to the class style
28183         * Control.cs (WndProc):
28184           - Added handling of click-count to MouseDown/ MouseUp events.
28185           - Added handling of middle and right mouse buttons
28186           - Removed old debug code
28187
28188 2004-11-17  Jackson Harper  <jackson@ximian.com>
28189
28190         * XplatUIX11.cs: Use the new Mono.Unix namespace.
28191
28192 2004-11-17  Ravindra <rkumar@novell.com>
28193
28194         * ListView.cs: Added event handling for MouseMove/Up/Down.
28195         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
28196         * ThemeWin32Classic.cs: We need to clear the graphics context and
28197         draw column header in a proper state.
28198
28199
28200 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
28201
28202         *  Menu.cs: fixes signature
28203
28204 2004-11-16  Peter Bartok  <pbartok@novell.com>
28205
28206         * XplatUIX11.cs (GetMessage): Implemented generation of
28207           double click mouse messages
28208
28209 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
28210
28211         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
28212         not by menu
28213
28214 2004-11-11  Peter Bartok  <pbartok@novell.com>
28215
28216         * HandleData.cs: Added Visible property
28217         * XplatUIX11.cs (IsVisible): Now uses Visible property from
28218           HandleData
28219         * XplatUIX11.cs: Removed old debug leftovers
28220         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
28221         * Control.cs (WndProc): Removed old debug leftovers,
28222           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
28223           needed WM_SIZE handling
28224
28225 2004-11-11  Jackson Harper  <jackson@ximian.com>
28226
28227         * OwnerDrawPropertyBag.cs:
28228         * TreeViewImageIndexConverter.cs: Initial implementation
28229
28230 2004-11-10  Jackson Harper  <jackson@ximian.com>
28231
28232         * ThemeWin32Classic.cs:
28233         * TabControl.cs: instead of moving tabs by the slider pos just
28234         start drawing at the tab that is offset by the slider. This way
28235         scrolling always moves by exactly one tab.
28236
28237 2004-11-10  Jackson Harper  <jackson@ximian.com>
28238
28239         * TabControl.cs: You can only scroll left when the slider has
28240         already ben moved right.
28241         
28242 2004-11-10  Jackson Harper  <jackson@ximian.com>
28243
28244         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
28245         the clip area.
28246         
28247 2004-11-10  Jackson Harper  <jackson@ximian.com>
28248
28249         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
28250         clip area.
28251         
28252 2004-11-09  Jackson Harper  <jackson@ximian.com>
28253
28254         * TabControl.cs (CalcXPos): New helper method so we can determine
28255         the proper place to start drawing vertical tabs.
28256         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
28257         
28258 2004-11-09  Jackson Harper  <jackson@ximian.com>
28259
28260         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
28261         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
28262         and Bottom, left and right are illegal values for this and
28263         multiline is enabled when the alignment is set to left or right.
28264         (DrawTab): Each alignment block should draw the text itself now
28265         because Left requires special love. Also add rendering for Left
28266         aligned tabs.
28267         
28268 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
28269
28270         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
28271         does not destroy the windows, removes debugging messages
28272
28273 2004-11-09  jba  <jba-mono@optusnet.com.au>
28274
28275         * ThemeWin32Classic.cs
28276         (DrawButtonBase): Fix verticle text rect clipping in windows
28277         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
28278         rendering and incorrect text rect clipping
28279         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
28280         rendering and incorrect text rect clipping
28281         
28282 2004-11-08  Jackson Harper  <jackson@ximian.com>
28283
28284         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
28285         bottom when they are bottom aligned so the bottoms of the tabs get
28286         displayed.
28287         * TabControl.cs (DropRow): Move rows up instead of down when the
28288         tab control is bottom aligned.
28289
28290 2004-11-08 13:59  pbartok
28291
28292         * XplatUIX11.cs:
28293           - Added handling for various window styles
28294           - Added handling for popup windows
28295           - Added SetTopmost handling
28296
28297 2004-11-08 13:55  pbartok
28298
28299         * XplatUIWin32.cs:
28300           - Added argument to SetTopmost method
28301           - Fixed broken ClientToScreen function
28302
28303 2004-11-08 13:53  pbartok
28304
28305         * XplatUIStructs.cs:
28306           - Added missing WS_EX styles
28307
28308 2004-11-08 13:53  pbartok
28309
28310         * XplatUI.cs, XplatUIDriver.cs:
28311           - Added argument to SetTopmost
28312
28313 2004-11-08 13:52  pbartok
28314
28315         * X11Structs.cs:
28316           - Added XSetWindowAttributes structure
28317           - Improved XWindowAttributes structure
28318           - Added SetWindowValuemask enum
28319           - Added window creation arguments enum
28320           - Added gravity enum
28321           - Added Motif hints structure
28322           - Added various Motif flags and enums
28323           - Added PropertyMode enum for property functions
28324
28325 2004-11-08 13:50  pbartok
28326
28327         * Form.cs:
28328           - Fixed arguments for updated SetTopmost method
28329
28330 2004-11-08 13:49  pbartok
28331
28332         * ToolTip.cs:
28333           - Fixed arguments for updated SetTopmost function
28334           - Fixed usage of PointToClient
28335
28336 2004-11-08 13:44  pbartok
28337
28338         * MenuAPI.cs:
28339           - Added Clipping of children and siblings
28340
28341 2004-11-08 13:41  pbartok
28342
28343         * MainMenu.cs:
28344           - Removed SetMenuBarWindow call. We do this in Form.cs
28345
28346 2004-11-08 13:40  jackson
28347
28348         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
28349           scrolling jimmi in the correct location with bottom aligned tabs
28350
28351 2004-11-08 13:36  pbartok
28352
28353         * ContainerControl.cs:
28354           - Implemented BindingContext
28355           - Implemented ParentForm
28356
28357 2004-11-08 12:46  jackson
28358
28359         * TabControl.cs: Put bottom rendered tabs in the right location
28360
28361 2004-11-08 07:15  jordi
28362
28363         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
28364           removes dead code
28365
28366 2004-11-05 17:30  jackson
28367
28368         * TabControl.cs: When selected tabs are expanded make sure they
28369           don't go beyond the edges of the tab control
28370
28371 2004-11-05 14:57  jackson
28372
28373         * TabControl.cs: Reset show_slider so if the control is resized to
28374           a size where it is no longer needed it's not displayed anymore
28375
28376 2004-11-05 13:16  jackson
28377
28378         * TabControl.cs: Make tab pages non visible when added to the
28379           control
28380
28381 2004-11-05 12:42  jackson
28382
28383         * TabControl.cs: Implement SizeMode.FillToRight
28384
28385 2004-11-05 12:16  jackson
28386
28387         * Control.cs: Do not call CreateHandle if the handle is already
28388           created
28389
28390 2004-11-05 11:46  jackson
28391
28392         * TabControl.cs: Remove superflous call to CalcTabRows
28393
28394 2004-11-05 09:07  jackson
28395
28396         * XplatUIX11.cs: Update for Mono.Posix changes
28397
28398 2004-11-05 07:00  ravindra
28399
28400         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
28401           scrolling.
28402
28403 2004-11-04 22:47  jba
28404
28405         * ThemeWin32Classic.cs:
28406           - Fix Button rendering for FlatStyle = Flat or Popup
28407           - Fix RadioButton and CheckBox rendering when Appearance = Button
28408             (normal and flatstyle).
28409           - Correct outer rectangle color when drawing focus rectangle
28410           - Adjust button bounds to be 1 px smaller when focused
28411           - Make button not draw sunken 3d border when pushed (windows compat)
28412           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
28413           - Offset the text in RadioButton and Checkbox when being rendered as
28414           a button.
28415           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
28416           radiobuttons
28417           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
28418           - Fixed disabled text rendering for normally rendered radiobuttons
28419
28420 2004-11-04 10:26  jackson
28421
28422         * TabControl.cs: Recalculate tab rows when resizing
28423
28424 2004-11-04 07:47  jordi
28425
28426         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
28427           collection completion, drawing issues, missing features
28428
28429 2004-11-04 05:03  ravindra
28430
28431         * ScrollBar.cs:
28432                 - We need to recalculate the Thumb area when
28433                 LargeChange/maximum/minimum values are changed.
28434           - We set the 'pos' in UpdatePos() method to minimum, if it's less
28435                 than minimum. This is required to handle the case if large_change is
28436                 more than max, and use LargeChange property instead of large_change
28437                 variable.
28438           - We return max+1 when large_change is more than max, like MS does.
28439
28440 2004-11-04 04:29  ravindra
28441
28442         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
28443                 - Changed default value signatures (prefixed all with ListView).
28444                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
28445                 ListView.
28446           - Fixed calculations for ListViewItem and implemented Clone()
28447           method.
28448
28449 2004-11-04 04:26  ravindra
28450
28451         * Theme.cs, ThemeWin32Classic.cs:
28452                 - Changed default ListView values signatures (prefixed all with
28453                 ListView).
28454           - Fixed default size values for VScrollBar and HScrollBar.
28455                 - Fixed DrawListViewItem method.
28456
28457 2004-11-04 04:05  ravindra
28458
28459         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
28460
28461 2004-11-04 04:04  ravindra
28462
28463         * ImageList.cs: Implemented the missing overload for Draw method.
28464
28465 2004-11-03 19:29  jackson
28466
28467         * TabControl.cs: Handle dropping rows on selection properly
28468
28469 2004-11-03 11:59  jackson
28470
28471         * TabControl.cs: remove debug code
28472
28473 2004-11-03 11:52  jackson
28474
28475         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
28476           the scrolly widgerywoo
28477
28478 2004-11-02 13:52  jackson
28479
28480         * TabControl.cs: Resize the tab pages and tabs when the tab control
28481           is resized
28482
28483 2004-11-02 13:40  jackson
28484
28485         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
28486           selected tab to the bottom
28487
28488 2004-11-02 13:39  jackson
28489
28490         * TabPage.cs: Store the tab pages row
28491
28492 2004-11-02 12:33  jordi
28493
28494         * MenuItem.cs: fixes handle creation
28495
28496 2004-11-02 11:42  jackson
28497
28498         * TabControl.cs: signature fix
28499
28500 2004-11-02 08:56  jackson
28501
28502         * TabControl.cs: Calculate whether the tab is on an edge properly.
28503           Remove top secret debugging code
28504
28505 2004-11-01 19:57  jackson
28506
28507         * TabControl.cs: Add click handling, and proper sizing
28508
28509 2004-11-01 19:47  jackson
28510
28511         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
28512           tab controls
28513
28514 2004-11-01 19:39  jackson
28515
28516         * TabPage.cs: add internal property to store the bounds of a tab
28517           page
28518
28519 2004-10-30 04:23  ravindra
28520
28521         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
28522           values.
28523
28524 2004-10-30 04:21  ravindra
28525
28526         * ListView.cs, ListViewItem.cs: Added support for scrolling and
28527           fixed calculations.
28528
28529 2004-10-30 03:06  pbartok
28530
28531         * XplatUIX11.cs:
28532           - Removed extension of DllImported libs
28533
28534 2004-10-29 09:55  jordi
28535
28536         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
28537           navigation, itemcollection completion, menu fixes
28538
28539 2004-10-27 22:58  pbartok
28540
28541         * XplatUIX11.cs:
28542           - Now throws a nice error message when no X display could be opened
28543
28544 2004-10-26 13:51  jordi
28545
28546         * ListView.cs: removes warning
28547
28548 2004-10-26 03:55  ravindra
28549
28550         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
28551           ThemeWin32Classic.cs: Some formatting for my last checkins.
28552
28553 2004-10-26 03:36  ravindra
28554
28555         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
28556           control and default values.
28557
28558 2004-10-26 03:35  ravindra
28559
28560         * Theme.cs: Added some default values for ListView control.
28561
28562 2004-10-26 03:33  ravindra
28563
28564         * ToolBar.cs: ToolBar should use the user specified button size, if
28565           there is any. Added a size_specified flag for the same.
28566
28567 2004-10-26 03:33  ravindra
28568
28569         * ColumnHeader.cs: Added some internal members and calculations for
28570           ColumnHeader.
28571
28572 2004-10-26 03:32  ravindra
28573
28574         * ListViewItem.cs: Calculations for ListViewItem.
28575
28576 2004-10-26 03:31  ravindra
28577
28578         * ListView.cs: Added some internal members and calculations for
28579           ListView.
28580
28581 2004-10-22 13:31  jordi
28582
28583         * MenuAPI.cs: speedup menus drawing
28584
28585 2004-10-22 13:16  jackson
28586
28587         * XplatUIX11.cs: Make sure to update exposed regions when adding an
28588           expose event
28589
28590 2004-10-22 11:49  jackson
28591
28592         * Control.cs: oops
28593
28594 2004-10-22 11:41  jackson
28595
28596         * Control.cs: Check to see if the window should have its background
28597           repainted by X when drawing.
28598
28599 2004-10-22 11:31  jackson
28600
28601         * XplatUIX11.cs: When invalidating areas only use XClearArea if
28602           clear is true, this way we do not get flicker from X repainting the
28603           background
28604
28605 2004-10-22 11:28  jackson
28606
28607         * XEventQueue.cs: Queue properly
28608
28609 2004-10-21 09:38  jackson
28610
28611         * XEventQueue.cs: Fix access modifier
28612
28613 2004-10-21 09:36  jackson
28614
28615         * XEventQueue.cs: Don't loose messages
28616
28617 2004-10-21 09:22  jackson
28618
28619         * XEventQueue.cs: Don't loose messages
28620
28621 2004-10-20 04:15  jordi
28622
28623         * BootMode.cs: enum need it by SystemInfo
28624
28625 2004-10-19 21:58  pbartok
28626
28627         * XplatUIWin32.cs:
28628           - Small sanity check
28629
28630 2004-10-19 21:56  pbartok
28631
28632         * Form.cs:
28633           - Added private FormParentWindow class which acts as the container
28634             for our form and as the non-client area where menus are drawn
28635           - Added/Moved required tie-ins to Jordi's menus
28636           - Fixed/Implemented the FormStartPosition functionality
28637
28638 2004-10-19 21:52  pbartok
28639
28640         * Control.cs:
28641           - Removed unneeded locals
28642           - Added code to all size and location properties to understand and
28643             deal with the parent container of Form
28644
28645 2004-10-19 21:33  pbartok
28646
28647         * Application.cs:
28648           - Fixed to deal with new Form subclasses for menus
28649
28650 2004-10-19 17:48  jackson
28651
28652         * XEventQueue.cs: commit correct version of file
28653
28654 2004-10-19 16:50  jackson
28655
28656         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
28657
28658 2004-10-19 16:15  jordi
28659
28660         * MenuAPI.cs: MenuBarCalcSize returns the height
28661
28662 2004-10-19 08:31  pbartok
28663
28664         * Control.cs:
28665           - Added missing call to PreProcessMessage before calling OnXXXKey
28666           methods
28667
28668 2004-10-19 00:04  ravindra
28669
28670         * ToolTip.cs: Fixed constructor.
28671
28672 2004-10-18 09:31  jordi
28673
28674         * MenuAPI.cs: menuitems in menubars do not have shortcuts
28675
28676 2004-10-18 09:26  jordi
28677
28678         * MenuItem.cs: fixes MenuItem class signature
28679
28680 2004-10-18 08:56  jordi
28681
28682         * MenuAPI.cs: prevents windows from showing in the taskbar
28683
28684 2004-10-18 00:28  ravindra
28685
28686         * ToolTip.cs: Suppressed a warning message.
28687
28688 2004-10-18 00:27  ravindra
28689
28690         * Control.cs: Default value of visible property must be true.
28691
28692 2004-10-17 23:19  pbartok
28693
28694         * ToolTip.cs:
28695           - Complete implementation
28696
28697 2004-10-17 23:19  pbartok
28698
28699         * XplatUIX11.cs:
28700           - Added EnableWindow method
28701           - Added SetModal stub
28702           - Added generation of WM_ACTIVATE message (still needs testing)
28703           - Added SetTopMost stub
28704           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
28705
28706 2004-10-17 23:17  pbartok
28707
28708         * XplatUIWin32.cs:
28709           - Removed VirtualKeys to XplatUIStructs
28710           - Implemented SetTopMost method
28711           - Implemented EnableWindow method
28712           - Bugfix in ScreenToClient()
28713           - Bugfixes in ClientToScreen()
28714
28715 2004-10-17 22:51  pbartok
28716
28717         * XplatUIStructs.cs:
28718           - Added WS_EX styles to WindowStyles enumeration
28719
28720 2004-10-17 22:50  pbartok
28721
28722         * XplatUI.cs, XplatUIDriver.cs:
28723           - Added method for enabling/disabling windows
28724           - Added method for setting window modality
28725           - Added method for setting topmost window
28726
28727 2004-10-17 22:49  pbartok
28728
28729         * ThemeWin32Classic.cs:
28730           - Added ToolTip drawing code
28731
28732 2004-10-17 22:49  pbartok
28733
28734         * Theme.cs:
28735           - Added ToolTip abstracts
28736
28737 2004-10-17 22:47  pbartok
28738
28739         * Form.cs:
28740           - Fixed Form.ControlCollection to handle owner relations
28741           - Added Owner/OwnedForms handling
28742           - Implemented Z-Ordering for owned forms
28743           - Removed unneeded private overload of ShowDialog
28744           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
28745             so I hope)
28746           - Fixed Close(), had wrong default
28747           - Added firing of OnLoad event
28748           - Added some commented out debug code for Ownership handling
28749
28750 2004-10-17 22:16  pbartok
28751
28752         * Control.cs:
28753           - Fixed/implemented flat list of controls
28754
28755 2004-10-17 22:14  pbartok
28756
28757         * Application.cs:
28758           - Added code to simulate modal dialogs on Win32
28759
28760 2004-10-17 16:11  jordi
28761
28762         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
28763           mouse event
28764
28765 2004-10-17 13:39  jordi
28766
28767         * MenuAPI.cs: menu drawing fixes
28768
28769 2004-10-15 09:10  ravindra
28770
28771         * StructFormat.cs: General Enum.
28772
28773 2004-10-15 09:09  ravindra
28774
28775         * SizeGripStyle.cs: Enum for Form.
28776
28777 2004-10-15 09:08  ravindra
28778
28779         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
28780           in Theme for ListView.
28781
28782 2004-10-15 09:06  ravindra
28783
28784         * ColumnHeader.cs: Flushing some formatting changes.
28785
28786 2004-10-15 09:05  ravindra
28787
28788         * ListViewItem.cs: Implemented GetBounds method and fixed coding
28789           style.
28790
28791 2004-10-15 09:03  ravindra
28792
28793         * ListView.cs: Implemented Paint method and fixed coding style.
28794
28795 2004-10-15 07:34  jordi
28796
28797         * MenuAPI.cs: fix for X11
28798
28799 2004-10-15 07:32  ravindra
28800
28801         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
28802                 - Renamed Paint() method to Draw() for clarity. Also, moved
28803                 DrawImage() to OnPaint().
28804
28805 2004-10-15 07:25  ravindra
28806
28807         * CheckBox.cs, RadioButton.cs:
28808                 - Removed Redraw (), we get it from ButtonBase.
28809                 - Implemented Paint (), to do class specific painting.
28810
28811 2004-10-15 07:16  ravindra
28812
28813         * ButtonBase.cs:
28814                 - Redraw () is not virtual now.
28815                 - Added an internal virtual method Paint (), so that
28816                 derived classes can do their painting on their own.
28817                 - Modified OnPaint () to call Paint ().
28818
28819 2004-10-15 06:43  jordi
28820
28821         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
28822           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
28823
28824 2004-10-15 00:30  ravindra
28825
28826         * MessageBox.cs:
28827                 - MessageBox on windows does not have min/max buttons.
28828                 This change in CreateParams fixes this on Windows. We
28829                 still need to implement this windowstyle behavior in
28830                 our X11 driver.
28831
28832 2004-10-14 05:14  ravindra
28833
28834         * ToolBar.cs:
28835                 - Changed Redraw () to do a Refresh () always.
28836                 - Fixed the MouseMove event handling when mouse is pressed,
28837                 ie drag event handling.
28838                 - Replaced the usage of ToolBarButton.Pressed property to
28839                 ToolBarButton.pressed internal variable.
28840
28841 2004-10-14 05:10  ravindra
28842
28843         * ToolBarButton.cs:
28844                 - Added an internal member 'inside' to handle mouse move
28845                 with mouse pressed ie mouse drag event.
28846                 - Changed 'Pressed' property to return true only when
28847                 'inside' and 'pressed' are both true.
28848                 - Some coding style love.
28849
28850 2004-10-14 00:17  ravindra
28851
28852         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
28853           public method.
28854
28855 2004-10-14 00:15  ravindra
28856
28857         * ButtonBase.cs: Redraw () related improvements.
28858
28859 2004-10-14 00:14  ravindra
28860
28861         * MessageBox.cs: Moved InitFormSize () out of Paint method and
28862           removed unnecessary calls to Button.Show () method.
28863
28864 2004-10-13 17:50  pbartok
28865
28866         * XplatUIX11.cs:
28867           - Formatting fix
28868           - Removed destroying of window until we solve the problem of X
28869             destroying the window before us on shutdown
28870
28871 2004-10-13 16:32  pbartok
28872
28873         * ButtonBase.cs:
28874           - Now Redraws on MouseUp for FlatStyle Flat and Popup
28875
28876 2004-10-13 14:18  pbartok
28877
28878         * XplatUIX11.cs:
28879           - Added code to destroy the X window
28880
28881 2004-10-13 14:18  pbartok
28882
28883         * XplatUIWin32.cs:
28884           - Added code to destroy a window
28885
28886 2004-10-13 14:12  pbartok
28887
28888         * ButtonBase.cs:
28889           - Added the Redraw on Resize that got dropped in the last rev
28890
28891 2004-10-13 09:06  pbartok
28892
28893         * ThemeWin32Classic.cs:
28894           - Path from John BouAntoun:
28895             * Fix check rendering (centre correctly for normal style, offset
28896               correctly for FlatStyle).
28897             * Fix border color usage (use backcolor) for FlatStyle.Popup
28898             * Use checkbox.Capture instead of checkbox.is_pressed when
28899               rendering flatstyle states.
28900
28901 2004-10-12 21:48  pbartok
28902
28903         * ThemeWin32Classic.cs:
28904           - Removed all occurences of SystemColors and replaced them with the
28905             matching theme color
28906
28907 2004-10-12 21:41  pbartok
28908
28909         * ThemeWin32Classic.cs:
28910           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
28911             him using the function for flatstyle drawing
28912           - Changed functions to use the new version of CPDrawBorder3D
28913
28914 2004-10-12 21:15  pbartok
28915
28916         * ControlPaint.cs:
28917           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
28918             match MS documentation. They need to return defined colors if the
28919             passed color matches the configured control color. Thanks to John
28920             BouAntoun for pointing this out.
28921
28922 2004-10-12 20:57  pbartok
28923
28924         * Control.cs:
28925           - Fix from John BouAntoun: Raise ForeColorChanged event when text
28926             color is changed
28927
28928 2004-10-12 20:46  pbartok
28929
28930         * CheckBox.cs:
28931           - Fix from John BouAntoun: Now properly sets the Appearance property
28932
28933 2004-10-12 20:45  pbartok
28934
28935         * ThemeWin32Classic.cs:
28936           - Fixes from John BouAntoun: now handles forecolors and backcolors
28937             for flatstyle rendered controls much better; It also fixes normal
28938             checkbox rendering when pushed or disabled.
28939
28940 2004-10-08 02:50  jordi
28941
28942         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
28943           work
28944
28945 2004-10-07 08:56  jordi
28946
28947         * ThemeWin32Classic.cs: Removes deletion of cached brushes
28948
28949 2004-10-06 03:59  jordi
28950
28951         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
28952           XplatUIWin32.cs: removes warnings from compilation
28953
28954 2004-10-05 12:23  jackson
28955
28956         * RadioButton.cs: Fix ctor
28957
28958 2004-10-05 11:10  pbartok
28959
28960         * MessageBox.cs:
28961           - Partial implementation by Benjamin Dasnois
28962
28963 2004-10-05 10:15  jackson
28964
28965         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
28966           by John BouAntoun
28967
28968 2004-10-05 03:07  ravindra
28969
28970         * ToolBar.cs:
28971                 - Removed a private method, Draw ().
28972                 - Fixed the ButtonDropDown event handling.
28973                 - Fixed MouseMove event handling.
28974
28975 2004-10-05 03:04  ravindra
28976
28977         * ThemeWin32Classic.cs:
28978                 - Added DrawListView method and ListViewDefaultSize property.
28979                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
28980                 - Changed DOS style CRLF to Unix format (dos2unix).
28981
28982 2004-10-05 03:03  ravindra
28983
28984         * Theme.cs:
28985                 - Added DrawListView method and ListViewDefaultSize property.
28986
28987 2004-10-05 02:42  ravindra
28988
28989         * ToolBarButton.cs: Added an internal member dd_pressed to handle
28990           clicks on DropDown arrow.
28991
28992 2004-10-04 22:56  jackson
28993
28994         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
28995           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
28996           Control handle the buffers, derived classes should not have to
28997           CreateBuffers themselves.
28998
28999 2004-10-04 21:20  jackson
29000
29001         * StatusBar.cs: The control handles resizing the buffers now.
29002
29003 2004-10-04 21:18  jackson
29004
29005         * Control.cs: When resizing the buffers should be invalidated. This
29006           should be handled in Control not in derived classes.
29007
29008 2004-10-04 14:45  jackson
29009
29010         * TabPage.cs: oops
29011
29012 2004-10-04 02:14  pbartok
29013
29014         * LeftRightAlignment.cs:
29015           - Initial check-in
29016
29017 2004-10-04 01:09  jordi
29018
29019         * ThemeWin32Classic.cs: fixes right button position causing right
29020           button not showing on horizontal scrollbars
29021
29022 2004-10-02 13:12  pbartok
29023
29024         * XplatUIX11.cs:
29025           - Simplified the Invalidate method by using an X call instead of
29026             generating the expose ourselves
29027           - Added an expose when the window background is changed
29028           - Implemented ClientToScreen method
29029
29030 2004-10-02 13:08  pbartok
29031
29032         * XplatUIWin32.cs:
29033           - Added Win32EnableWindow method (test for implementing modal
29034           dialogs)
29035           - Added ClientToScreen method and imports
29036
29037 2004-10-02 13:07  pbartok
29038
29039         * XplatUI.cs, XplatUIDriver.cs:
29040           - Added ClientToScreen coordinate translation method
29041
29042 2004-10-02 13:06  pbartok
29043
29044         * KeyPressEventArgs.cs:
29045           - Fixed access level for constructor
29046
29047 2004-10-02 13:06  pbartok
29048
29049         * NativeWindow.cs:
29050           - Changed access level for the window_collection hash table
29051
29052 2004-10-02 13:05  pbartok
29053
29054         * Form.cs:
29055           - Added KeyPreview property
29056           - Added Menu property (still incomplete, pending Jordi's menu work)
29057           - Implemented ProcessCmdKey
29058           - Implemented ProcessDialogKey
29059           - Implemented ProcessKeyPreview
29060
29061 2004-10-02 13:02  pbartok
29062
29063         * Control.cs:
29064           - Added private method to get the Control object from the window
29065           handle
29066           - Implemented ContextMenu property
29067           - Implemented PointToScreen
29068           - Implemented PreProcessMessage
29069           - Implemented IsInputChar
29070           - Implemented IsInputKey
29071           - Implemented ProcessCmdKey
29072           - Completed ProcessKeyEventArgs
29073           - Fixed message loop to call the proper chain of functions on key
29074           events
29075           - Implemented ProcessDialogChar
29076           - Implemented ProcessDialogKey
29077           - Implemented ProcessKeyMessage
29078           - Implemented ProcessKeyPreview
29079           - Added RaiseDragEvent stub (MS internal method)
29080           - Added RaiseKeyEvent stub (MS internal method)
29081           - Added RaiseMouseEvent stub (MS Internal method)
29082           - Added RaisePaintEvent stub (MS Internal method)
29083           - Added ResetMouseEventArgs stub (MS Internal method)
29084           - Implemented RtlTranslateAlignment
29085           - Implemented RtlTranslateContent
29086           - Implemented RtlTranslateHorizontal
29087           - Implemented RtlTranslateLeftRight
29088           - Added generation of KeyPress event
29089
29090 2004-10-02 05:57  ravindra
29091
29092         * ListViewItem.cs: Added attributes.
29093
29094 2004-10-02 05:32  ravindra
29095
29096         * ListView.cs: Added attributes.
29097
29098 2004-10-01 11:53  jackson
29099
29100         * Form.cs: Implement the Close method so work on MessageBox can
29101           continue.
29102
29103 2004-09-30 14:06  pbartok
29104
29105         * XplatUIX11.cs:
29106           - Bug fixes
29107
29108 2004-09-30 11:34  jackson
29109
29110         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
29111
29112 2004-09-30 07:26  ravindra
29113
29114         * ListViewItemConverter.cs: Converter for ListViewItem.
29115
29116 2004-09-30 07:26  ravindra
29117
29118         * SortOrder.cs: Enum for ListView control.
29119
29120 2004-09-30 07:25  ravindra
29121
29122         * ColumnHeader.cs: Supporting class for ListView control.
29123
29124 2004-09-30 07:24  ravindra
29125
29126         * ListView.cs, ListViewItem.cs: Initial implementation.
29127
29128 2004-09-30 07:20  ravindra
29129
29130         * ItemActivation.cs: Enum for ListView Control.
29131
29132 2004-09-29 20:29  pbartok
29133
29134         * XplatUIX11.cs:
29135           - Added lookup of pixel value for background color; tries to get a
29136             color 'close' to the requested color, it avoids having to create a
29137             colormap.  Depending on the display this could mean the used color
29138             is slightly off the desired color. Might have to change it to a more
29139             resource intensive colormap approach, but it will work as a
29140           workaround to avoid red screens.
29141
29142 2004-09-29 14:27  jackson
29143
29144         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
29145
29146 2004-09-28 12:44  pbartok
29147
29148         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
29149           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
29150           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
29151           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
29152           TrackBar.cs, VScrollBar.cs:
29153           - Streamlined Theme interfaces:
29154             * Each DrawXXX method for a control now is passed the object for
29155               the control to be drawn in order to allow accessing any state the
29156               theme might require
29157
29158             * ControlPaint methods for the theme now have a CP prefix to avoid
29159               name clashes with the Draw methods for controls
29160
29161             * Every control now retrieves it's DefaultSize from the current
29162             theme
29163
29164 2004-09-28 12:17  jackson
29165
29166         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
29167           drawing
29168
29169 2004-09-24 14:57  jackson
29170
29171         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
29172           Gives us a nice little performance boost.
29173
29174 2004-09-24 12:02  jackson
29175
29176         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
29177           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
29178           Control and supporting classes. Initial checkin
29179
29180 2004-09-23 13:08  jackson
29181
29182         * Form.cs: Temp build fixage
29183
29184 2004-09-23 01:39  ravindra
29185
29186         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
29187           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
29188           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
29189           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
29190           EventHandlers needed by ListView Control.
29191
29192 2004-09-22 14:12  pbartok
29193
29194         * ScrollableControl.cs:
29195           - Implemented DockPadding property
29196           - Implemented AutoScroll property
29197           - Implemented AutoScrollMargin property
29198           - Implemented AutoScrollMinSize property
29199           - Implemented AutoScrollPosition property
29200           - Implemented DisplayRectangle property (still incomplete)
29201           - Implemented CreateParams property
29202           - Implemented HScroll property
29203           - Implemented VScroll property
29204           - Implemented OnVisibleChanged property
29205
29206 2004-09-22 14:09  pbartok
29207
29208         * Form.cs:
29209           - Added Form.ControllCollection class
29210           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
29211             RemoveOwnedForm (still incomplete, missing on-top and common
29212             minimize/maximize behaviour)
29213           - Added StartPosition property (still incomplete, does not use when
29214             creating the form)
29215           - Added ShowDialog() methods (still incomplete, missing forcing the
29216             dialog modal)
29217
29218 2004-09-22 14:05  pbartok
29219
29220         * Application.cs:
29221           - Added message loop for modal dialogs
29222
29223 2004-09-22 14:02  pbartok
29224
29225         * GroupBox.cs:
29226           - Fixed wrong types for events
29227
29228 2004-09-22 14:00  pbartok
29229
29230         * Shortcut.cs, FormWindowState.cs:
29231           - Fixed wrong values
29232
29233 2004-09-22 12:01  jackson
29234
29235         * Control.cs: Text is never null
29236
29237 2004-09-20 22:14  pbartok
29238
29239         * XplatUIWin32.cs:
29240           - Fixed accessibility level for Idle handler
29241
29242 2004-09-20 18:54  jackson
29243
29244         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29245           XplatUIX11.cs: New message loop that uses poll so we don't get a
29246           busy loop
29247
29248 2004-09-17 10:43  pbartok
29249
29250         * ScrollBar.cs:
29251           - Fixed behaviour of arrow buttons. Now properly behaves like
29252             Buttons (and like Microsoft's scrollbar arrow buttons)
29253
29254 2004-09-17 10:14  pbartok
29255
29256         * ScrollBar.cs:
29257           - Added missing release of keyboard/mouse capture
29258
29259 2004-09-17 06:18  jordi
29260
29261         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
29262           Theme.cs: Very early menu support
29263
29264 2004-09-16 17:45  pbartok
29265
29266         * XplatUIWin32.cs:
29267           - Fixed sending a window to the front
29268           - Added overload for SetWindowPos to avoid casting
29269
29270 2004-09-16 17:44  pbartok
29271
29272         * Control.cs:
29273           - Added SendToBack and BringToFront methods
29274
29275 2004-09-16 07:00  ravindra
29276
29277         * Copyright: Added Novell URL.
29278
29279 2004-09-16 07:00  ravindra
29280
29281         * ToolBar.cs: Invalidate should be done before redrawing.
29282
29283 2004-09-15 21:19  ravindra
29284
29285         * ColumnHeaderStyle.cs: Enum for ListView Control.
29286
29287 2004-09-15 21:18  ravindra
29288
29289         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
29290           ListView Control.
29291
29292 2004-09-13 18:26  jackson
29293
29294         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
29295           properly
29296
29297 2004-09-13 18:13  jackson
29298
29299         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
29300           a second thread and post messages into the main threads message
29301           queue. This makes timing much more consistent. Both win2K and XP
29302           have a minimum timer value of 15 milliseconds, so we now do this
29303           too.
29304
29305 2004-09-13 15:18  pbartok
29306
29307         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29308           XplatUIX11.cs:
29309           - Added Z-Ordering methods
29310
29311 2004-09-13 10:56  pbartok
29312
29313         * Form.cs:
29314           - Fixed #region names
29315           - Moved properties and methods into their proper #regions
29316
29317 2004-09-13 10:51  pbartok
29318
29319         * Form.cs:
29320           - Added Accept and CancelButton properties
29321           - Added ProcessDialogKey() method
29322
29323 2004-09-13 08:18  pbartok
29324
29325         * IWindowTarget.cs:
29326           - Initial check-in
29327
29328 2004-09-10 21:50  pbartok
29329
29330         * Control.cs:
29331           - Added DoDragDrop() [incomplete]
29332           - Properly implemented 'Visible' handling
29333           - Added SetVisibleCore()
29334           - Implemented FindChildAtPoint()
29335           - Implemented GetContainerControl()
29336           - Implemented Hide()
29337
29338 2004-09-10 19:28  pbartok
29339
29340         * Control.cs:
29341           - Moved methods into their appropriate #regions
29342           - Reordered methods within regions alphabetically
29343
29344 2004-09-10 18:57  pbartok
29345
29346         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29347           - Added method to retrieve text from window
29348
29349 2004-09-10 18:56  pbartok
29350
29351         * Control.cs:
29352           - Moved some internal functions into the internal region
29353           - Implemented FontHeight
29354           - Implemented RenderRightToLeft
29355           - Implemented ResizeRedraw
29356           - Implemented ShowFocusCues
29357           - Implemented ShowKeyboardCues
29358           - Implemented FromChildHandle
29359           - Implemented FromHandle
29360           - Implemented IsMnemonic
29361           - Implemented ReflectMessage
29362           - All public and protected Static Methods are now complete
29363
29364 2004-09-10 16:54  pbartok
29365
29366         * Control.cs:
29367           - Implemented remaining missing public instance properties
29368           - Alphabetized some out of order properties
29369
29370 2004-09-10 05:51  ravindra
29371
29372         * PictureBox.cs: Added a check for null image.
29373
29374 2004-09-10 00:59  jordi
29375
29376         * GroupBox.cs: remove cvs tag
29377
29378 2004-09-09 05:25  ravindra
29379
29380         * ToolBar.cs: Make redraw accessible from ToolBarButton.
29381
29382 2004-09-09 05:23  ravindra
29383
29384         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
29385           parent redraw.
29386
29387 2004-09-09 02:28  pbartok
29388
29389         * ThemeWin32Classic.cs:
29390           - Improve disabled string look
29391
29392 2004-09-09 01:15  jordi
29393
29394         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
29395           args and handler
29396
29397 2004-09-08 23:56  ravindra
29398
29399         * ItemBoundsPortion.cs: It's enum, not a class!
29400
29401 2004-09-08 23:47  ravindra
29402
29403         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
29404           Enums for Form.
29405
29406 2004-09-08 21:13  ravindra
29407
29408         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
29409           ListView control.
29410
29411 2004-09-08 21:03  ravindra
29412
29413         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
29414           avoid crash.
29415
29416 2004-09-08 21:01  ravindra
29417
29418         * ScrollableControl.cs: Removed unreachable code.
29419
29420 2004-09-08 06:45  jordi
29421
29422         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
29423
29424 2004-09-08 01:00  jackson
29425
29426         * XplatUIX11.cs: Only run the timers when updating the message
29427           queue. This effectively gives X messages a higher priority then
29428           timer messages. Timers still need love though
29429
29430 2004-09-07 14:01  jackson
29431
29432         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
29433           this for us and the handle is no longer valid.
29434
29435 2004-09-07 13:59  jackson
29436
29437         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
29438           loop that manages to not crash. TODO: Add poll and cleanup timers
29439
29440 2004-09-07 11:12  jordi
29441
29442         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
29443
29444 2004-09-07 03:40  jordi
29445
29446         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
29447           fixes, methods, multiple links
29448
29449 2004-09-06 06:55  jordi
29450
29451         * Control.cs: Caches ClientRectangle rectangle value
29452
29453 2004-09-05 02:03  jordi
29454
29455         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
29456           certain situations
29457
29458 2004-09-04 11:10  jordi
29459
29460         * Label.cs: Refresh when font changed
29461
29462 2004-09-02 16:24  pbartok
29463
29464         * Control.cs:
29465           - Added sanity check to creation of double buffer bitmap
29466
29467 2004-09-02 16:24  pbartok
29468
29469         * ButtonBase.cs:
29470           - Fixed selection of text color
29471           - Fixed handling of resize event; now properly recreates double
29472             buffering bitmap
29473           - Added missing assignment of TextAlignment
29474           - Added proper default for TextAlignment
29475
29476 2004-09-02 14:26  pbartok
29477
29478         * RadioButton.cs:
29479           - Added missing RadioButton.RadioButtonAccessibleObject class
29480
29481 2004-09-02 14:26  pbartok
29482
29483         * Control.cs:
29484           - Added missing Control.ControlAccessibleObject class
29485           - Started to implement Select()ion mechanisms, still very incomplete
29486
29487 2004-09-02 14:25  pbartok
29488
29489         * AccessibleObject.cs:
29490           - Added missing methods
29491
29492 2004-09-02 14:23  pbartok
29493
29494         * AccessibleNavigation.cs, AccessibleSelection.cs:
29495           - Initial check-in
29496
29497 2004-09-02 10:32  jordi
29498
29499         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
29500           pool for pens, brushes, and hatchbruses
29501
29502 2004-09-01 15:30  jackson
29503
29504         * StatusBar.cs: Fix typo
29505
29506 2004-09-01 14:44  pbartok
29507
29508         * RadioButton.cs:
29509           - Fixed state
29510
29511 2004-09-01 14:39  pbartok
29512
29513         * Button.cs, RadioButton.cs:
29514           - Functional initial check-in
29515
29516 2004-09-01 14:01  pbartok
29517
29518         * CheckBox.cs:
29519           - Added missing default
29520           - Added missing region mark
29521
29522 2004-09-01 09:10  jordi
29523
29524         * Label.cs: fixes method signatures, new methods, events, fixes
29525           autosize
29526
29527 2004-09-01 07:19  jordi
29528
29529         * Control.cs: Init string variables with an empty object
29530
29531 2004-09-01 04:20  jordi
29532
29533         * Control.cs: fires OnFontChanged event
29534
29535 2004-08-31 20:07  pbartok
29536
29537         * ButtonBase.cs:
29538           - Enabled display of strings
29539
29540 2004-08-31 20:05  pbartok
29541
29542         * Form.cs:
29543           - Added (partial) implementation of DialogResult; rest needs to be
29544             implemented when the modal loop code is done
29545
29546 2004-08-31 19:55  pbartok
29547
29548         * CheckBox.cs:
29549           - Fixed to match the removal of the needs_redraw concept
29550
29551 2004-08-31 19:55  pbartok
29552
29553         * ButtonBase.cs:
29554           - Removed the rather odd split between 'needs redraw' and redrawing
29555           - Now handles the events that require regeneration (ambient
29556             properties and size)
29557
29558 2004-08-31 19:41  pbartok
29559
29560         * Control.cs:
29561           - Added firing of BackColorChanged event
29562           - Added TopLevelControl property
29563           - Fixed handling of WM_ERASEBKGRND message
29564
29565 2004-08-31 12:49  pbartok
29566
29567         * ButtonBase.cs:
29568           - Removed debug
29569           - Minor fixes
29570
29571 2004-08-31 12:48  pbartok
29572
29573         * CheckBox.cs:
29574           - Finished (famous last words)
29575
29576 2004-08-31 04:35  jordi
29577
29578         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
29579           scrolling bugs, adds new methods
29580
29581 2004-08-30 14:42  pbartok
29582
29583         * CheckBox.cs:
29584           - Implemented CheckBox drawing code
29585
29586 2004-08-30 14:42  pbartok
29587
29588         * ButtonBase.cs:
29589           - Made Redraw() and CheckRedraw() virtual
29590           - Improved mouse up/down/move logic to properly track buttons
29591
29592 2004-08-30 09:44  pbartok
29593
29594         * CheckBox.cs:
29595           - Updated to fix broken build. Not complete yet.
29596
29597 2004-08-30 09:28  pbartok
29598
29599         * CheckState.cs:
29600           - Initial checkin
29601
29602 2004-08-30 09:17  pbartok
29603
29604         * Appearance.cs:
29605           - Initial check-in
29606
29607 2004-08-27 16:12  ravindra
29608
29609         * ToolBarButton.cs: Added TypeConverter attribute.
29610
29611 2004-08-27 16:07  ravindra
29612
29613         * ImageIndexConverter.cs: Implemented.
29614
29615 2004-08-27 14:17  pbartok
29616
29617         * Control.cs:
29618           - Removed unneeded stack vars
29619           - First attempt to fix sizing issues when layout is suspended
29620
29621 2004-08-25 15:35  jordi
29622
29623         * ScrollBar.cs: more fixes to scrollbar
29624
29625 2004-08-25 14:04  ravindra
29626
29627         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
29628           Added the missing divider code and grip for ToolBar Control.
29629
29630 2004-08-25 13:20  pbartok
29631
29632         * Control.cs:
29633           - Control now properly passes the ambient background color to child
29634             controls
29635
29636 2004-08-25 13:20  jordi
29637
29638         * ScrollBar.cs: small bug fix regarding bar position
29639
29640 2004-08-25 12:33  pbartok
29641
29642         * Timer.cs:
29643           - Now only calls SetTimer or KillTimer if the enabled state has
29644           changed
29645
29646 2004-08-25 12:33  pbartok
29647
29648         * XplatUIWin32.cs:
29649           - Fixed timer handling, now seems to work
29650           - Improved error message for window creation
29651
29652 2004-08-25 12:32  pbartok
29653
29654         * Control.cs:
29655           - Fixed generation of MouseUp message
29656
29657 2004-08-25 12:29  jordi
29658
29659         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
29660           and fixes for progressbar
29661
29662 2004-08-24 18:43  ravindra
29663
29664         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
29665           in ToolBar control.
29666
29667 2004-08-24 17:15  pbartok
29668
29669         * Panel.cs:
29670           - Added #region
29671           - Added missing events
29672           - Alphabetized
29673
29674 2004-08-24 17:14  pbartok
29675
29676         * StatusBar.cs, PictureBox.cs:
29677           - Now uses Control's CreateParams
29678
29679 2004-08-24 16:36  pbartok
29680
29681         * XplatUIX11.cs:
29682           - Fixed background color handling
29683           - Fixed sending of enter/leave events on a grab
29684
29685 2004-08-24 16:35  pbartok
29686
29687         * X11Structs.cs:
29688           - Refined definitions for CrossingEvent
29689
29690 2004-08-24 12:37  jordi
29691
29692         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
29693           formmating, methods signature, and adds missing events
29694
29695 2004-08-24 12:24  jordi
29696
29697         * Control.cs: fire OnEnabledChanged event
29698
29699 2004-08-24 11:17  pbartok
29700
29701         * XplatUIWin32.cs:
29702           - Implemented SetTimer() and KillTimer()
29703
29704 2004-08-24 11:16  pbartok
29705
29706         * XplatUIX11.cs:
29707           - Now uses Remove instead of Add to kill the timer
29708
29709 2004-08-24 10:16  jackson
29710
29711         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
29712           picture boxes in the theme now. Draw picture box borders and obey
29713           sizing modes
29714
29715 2004-08-24 05:49  jackson
29716
29717         * Timer.cs: Remove top secret debugging code
29718
29719 2004-08-24 05:34  jackson
29720
29721         * PictureBox.cs: Temp hack to make picture boxes draw their full
29722           image
29723
29724 2004-08-24 05:29  jackson
29725
29726         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29727           XplatUIX11.cs: Move timers to the driver level. On X they are
29728           queued by the driver and checked on idle.
29729
29730 2004-08-24 01:07  jackson
29731
29732         * XplatUIX11.cs: Use a queue for async messages instead of passing
29733           them as ClientMessages since that was totally broken. Also simply
29734           check for events and return an idle message if none are found. This
29735           gives us an idle handler, and prevents deadlocking when no messages
29736           are in the queue.
29737
29738 2004-08-23 18:19  ravindra
29739
29740         * XplatUIWin32.cs: Removed the unwanted destructor.
29741
29742 2004-08-23 17:27  pbartok
29743
29744         * ButtonBase.cs:
29745           - Finishing touches. Works now, just needs some optimizations.
29746
29747 2004-08-23 16:53  jordi
29748
29749         * ScrollBar.cs: small fix
29750
29751 2004-08-23 16:45  pbartok
29752
29753         * Application.cs:
29754           - Removed debug output
29755           - Simplifications
29756
29757 2004-08-23 16:43  jordi
29758
29759         * ScrollBar.cs: [no log message]
29760
29761 2004-08-23 16:10  pbartok
29762
29763         * Form.cs:
29764           - Fixed handling of WM_CLOSE message
29765           - Removed debug output
29766
29767 2004-08-23 16:09  pbartok
29768
29769         * Application.cs:
29770           - Added handling of Idle event
29771           - Added handling of form closing
29772           - Fixed reporting of MessageLoop property
29773           - Removed some unneeded code, should provide a bit of a speedup
29774
29775 2004-08-23 15:22  pbartok
29776
29777         * Control.cs:
29778           - Added InitLayout() method
29779           - Added code to properly perform layout when Anchor or Dock property
29780             is changed
29781           - Changed 'interpretation' of ResumeLayout. MS seems to have a
29782             LAMESPEC, tried to do it in a way that makes sense
29783
29784 2004-08-23 14:10  jordi
29785
29786         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
29787           properties and methods
29788
29789 2004-08-23 13:55  pbartok
29790
29791         * Control.cs:
29792           - Properly fixed Jordi's last fix
29793           - Now uses Cursor's Position property instead of calling XplatUI
29794           directly
29795
29796 2004-08-23 13:44  jordi
29797
29798         * PaintEventHandler.cs: Adding missing attribute
29799
29800 2004-08-23 13:39  pbartok
29801
29802         * Cursor.cs:
29803           - Implemented Position property
29804
29805 2004-08-23 13:39  pbartok
29806
29807         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29808           - Added method to move mouse cursor
29809
29810 2004-08-23 13:39  pbartok
29811
29812         * XplatUIX11.cs:
29813           - Fixed setting of background color
29814           - Added method to move mouse cursor
29815
29816 2004-08-23 13:16  jordi
29817
29818         * Control.cs: avoids null exception
29819
29820 2004-08-22 17:46  jackson
29821
29822         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
29823           PictureBox
29824
29825 2004-08-22 17:40  jackson
29826
29827         * XplatUIX11.cs: Add some missing locks
29828
29829 2004-08-22 15:10  pbartok
29830
29831         * Control.cs, Form.cs:
29832           - Removed OverlappedWindow style from Control, instead it's default
29833             now is child
29834           - Made form windows OverlappedWindow by default
29835
29836 2004-08-22 13:34  jackson
29837
29838         * ScrollBar.cs: Update the position through the Value property so
29839           the OnValueChanged event is raised.
29840
29841 2004-08-22 12:04  pbartok
29842
29843         * SWF.csproj:
29844           - Added Cursor.cs and UserControl.cs
29845
29846 2004-08-22 12:03  pbartok
29847
29848         * Cursor.cs:
29849           - Started implementation, not usable yet
29850
29851 2004-08-22 12:00  pbartok
29852
29853         * UserControl.cs:
29854           - Implemented UserControl (complete)
29855
29856 2004-08-21 19:20  ravindra
29857
29858         * ToolBar.cs: Correcting the formatting mess of VS.NET.
29859
29860 2004-08-21 18:49  ravindra
29861
29862         * ToolBar.cs: Probably this completes the missing attributes in
29863           toolbar control.
29864
29865 2004-08-21 18:03  ravindra
29866
29867         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
29868           Fixed toolbar control signatures.
29869
29870 2004-08-21 16:32  pbartok
29871
29872         * LinkLabel.cs:
29873           - Signature Fixes
29874
29875 2004-08-21 16:30  pbartok
29876
29877         * Label.cs:
29878           - Signature fixes
29879
29880 2004-08-21 16:19  pbartok
29881
29882         * Control.cs, Label.cs:
29883           - Signature fixes
29884
29885 2004-08-21 15:57  pbartok
29886
29887         * ButtonBase.cs:
29888           - Added loads of debug output for development
29889           - Fixed typo in method name
29890
29891 2004-08-21 15:52  pbartok
29892
29893         * ToolBarButtonClickEventArgs.cs:
29894           - Added missing base class
29895
29896 2004-08-21 14:53  pbartok
29897
29898         * Control.cs:
29899           - Updated to match new GrabWindow signature
29900
29901 2004-08-21 14:51  pbartok
29902
29903         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29904           - Added method to get default display size
29905
29906 2004-08-21 14:23  pbartok
29907
29908         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29909           - Added method to query current grab state
29910           - Added argument to allow confining a grab to a window
29911
29912 2004-08-21 14:22  pbartok
29913
29914         * Keys.cs:
29915           - Added [Flags] attribute so that modifiers can be used in bitwise
29916           ops
29917
29918 2004-08-21 14:21  pbartok
29919
29920         * TrackBar.cs, ScrollBar.cs:
29921           - Replaced direct XplatUI calls with their Control counterpart
29922
29923 2004-08-21 13:32  pbartok
29924
29925         * Control.cs:
29926           - Implemented Created property
29927
29928 2004-08-21 13:28  pbartok
29929
29930         * Control.cs:
29931           - Implemented ContainsFocus
29932
29933 2004-08-21 13:26  pbartok
29934
29935         * Control.cs:
29936           - Implemented CausesValidation
29937
29938 2004-08-21 13:21  pbartok
29939
29940         * Control.cs:
29941           - Implemented CanFocus
29942           - Implemented CanSelect
29943           - Implemented Capture
29944
29945 2004-08-21 12:35  pbartok
29946
29947         * XplatUIWin32.cs:
29948           - Fixed bug with Async message handling
29949           - Implemented getting the ModifierKeys
29950
29951 2004-08-21 12:32  jackson
29952
29953         * AsyncMethodResult.cs: Make sure we have the mutex before we
29954           release it. Fixes BeginInvoke on windows
29955
29956 2004-08-21 11:31  pbartok
29957
29958         * XplatUIWin32.cs, XplatUIX11.cs:
29959           - Drivers now return proper mouse state
29960
29961 2004-08-21 10:54  jackson
29962
29963         * Control.cs: Implement EndInvoke
29964
29965 2004-08-21 10:48  jackson
29966
29967         * Timer.cs: Remove unneeded finalizer
29968
29969 2004-08-20 19:52  ravindra
29970
29971         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
29972           in mouse event handling in the ToolBar control.
29973
29974 2004-08-20 19:50  ravindra
29975
29976         * ImageList.cs: Changed draw method to use the arguments passed in
29977           to draw the image.
29978
29979 2004-08-20 18:58  pbartok
29980
29981         * XplatUIStructs.cs:
29982           - Added private message for async communication
29983
29984 2004-08-20 17:38  ravindra
29985
29986         * Control.cs: Made RightToLeft property virtual and removed a
29987           Console.WriteLine.
29988
29989 2004-08-20 14:39  jordi
29990
29991         * ThemeGtk.cs: use style_attach
29992
29993 2004-08-20 14:39  pbartok
29994
29995         * XplatUIWin32.cs:
29996           - Added jackson's Async code from X11 to Win32
29997
29998 2004-08-20 14:09  pbartok
29999
30000         * SWF.csproj:
30001           - Added all new files
30002
30003 2004-08-20 14:09  pbartok
30004
30005         * Control.cs:
30006           - Added call to set window background color
30007
30008 2004-08-20 14:03  pbartok
30009
30010         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
30011           - Added method for setting the window background
30012
30013 2004-08-20 14:02  pbartok
30014
30015         * XplatUIWin32.cs:
30016           - Added method for setting the background color
30017           - Added handling for erasing the window background
30018
30019 2004-08-20 13:45  jordi
30020
30021         * TrackBar.cs: fixes timer, new properties and methods
30022
30023 2004-08-20 13:34  jackson
30024
30025         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
30026           correct thread
30027
30028 2004-08-20 13:22  jackson
30029
30030         * Timer.cs: Timer Tick events are now handed through Controls Async
30031           mechanism so the callbacks are executed in the same thread as X
30032
30033 2004-08-20 13:19  jackson
30034
30035         * XplatUIDriver.cs: Expose functionality to send async messages
30036           through the driver
30037
30038 2004-08-20 13:18  jackson
30039
30040         * Control.cs: Implement Begininvoke
30041
30042 2004-08-20 13:14  jackson
30043
30044         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
30045           messages through the driver
30046
30047 2004-08-20 13:12  jackson
30048
30049         * XplatUIX11.cs: Lock before all X operations. Also added Async
30050           method functionality through XSendEvent
30051
30052 2004-08-20 13:11  jackson
30053
30054         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
30055           This will screw up on 64 bit systems)
30056
30057 2004-08-20 13:10  jackson
30058
30059         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
30060           Async messages through X/Win32
30061
30062 2004-08-19 19:39  pbartok
30063
30064         * XplatUIX11.cs:
30065           - Updated code to match new HandleData.DeviceContext type
30066
30067 2004-08-19 19:38  pbartok
30068
30069         * HandleData.cs:
30070           - Made DeviceContext a generic object to allow usage from various
30071           drivers
30072           - Added support for queueing Windows messages
30073
30074 2004-08-19 19:37  pbartok
30075
30076         * XplatUIWin32.cs:
30077           - Added generation of MouseEnter, MouseLeave and MouseHover events
30078           - Added cleanup on EndPaint
30079
30080 2004-08-19 19:17  pbartok
30081
30082         * Control.cs:
30083           - Added handling of WM_MOUSEHOVER
30084           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
30085           code
30086
30087 2004-08-19 18:55  jordi
30088
30089         * ThemeGtk.cs: fixes button order
30090
30091 2004-08-19 18:12  jordi
30092
30093         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
30094
30095 2004-08-19 17:09  pbartok
30096
30097         * Control.cs:
30098           - Added Right property
30099           - Added RightToLeft property
30100
30101 2004-08-19 16:27  jordi
30102
30103         * ThemeGtk.cs: experimental GTK theme support
30104
30105 2004-08-19 16:26  jordi
30106
30107         * ITheme.cs, Theme.cs: move themes from an interface to a class
30108
30109 2004-08-19 16:25  jordi
30110
30111         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
30112           theme enhancaments
30113
30114 2004-08-19 16:04  pbartok
30115
30116         * XplatUIX11.cs:
30117           - Added colormap basics
30118           - Added a way to re-initialize with a different display handle
30119           - Fixed setting of the window background color
30120           - Added various X11 imports related to colors and colormaps
30121
30122 2004-08-19 15:51  pbartok
30123
30124         * X11Structs.cs:
30125           - Removed packing hints (Paolo suggested this a while back)
30126           - fixed colormap type
30127           - Added default Atom types
30128           - Added Screen and color structs and enums
30129
30130 2004-08-19 15:39  pbartok
30131
30132         * ImageList.cs:
30133           - Added missing Draw() method
30134           - Added missing RecreateHandle event
30135
30136 2004-08-19 15:30  pbartok
30137
30138         * Form.cs:
30139           - Added handling of WM_CLOSE
30140
30141 2004-08-18 13:16  jordi
30142
30143         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
30144           a table
30145
30146 2004-08-18 09:56  jordi
30147
30148         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
30149
30150 2004-08-17 15:31  ravindra
30151
30152         * SWF.csproj: Updated project.
30153
30154 2004-08-17 15:25  pbartok
30155
30156         * Control.cs:
30157           - Drawing improvement; don't call UpdateBounds if we are not visible
30158             (or have been minimized)
30159
30160 2004-08-17 15:24  pbartok
30161
30162         * XplatUIWin32.cs:
30163           - Finished IsVisible
30164           - Added Win32GetWindowPlacement
30165
30166 2004-08-17 15:08  jackson
30167
30168         * Panel.cs: Initial checkin of the Panel
30169
30170 2004-08-17 14:25  pbartok
30171
30172         * Control.cs:
30173           - Fixed broken handling of default window sizes
30174
30175 2004-08-17 13:29  jackson
30176
30177         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
30178           has a large startup time.
30179
30180 2004-08-17 10:25  jackson
30181
30182         * HandleData.cs: union areas properly
30183
30184 2004-08-17 10:12  jackson
30185
30186         * HandleData.cs: union areas properly
30187
30188 2004-08-16 20:00  ravindra
30189
30190         * ToolBar.cs, ToolBarButton.cs: Added attributes.
30191
30192 2004-08-16 18:48  ravindra
30193
30194         * ToolBar.cs: Added attributes.
30195
30196 2004-08-16 17:17  ravindra
30197
30198         * SWF.csproj: Updated project.
30199
30200 2004-08-16 17:16  jackson
30201
30202         * XplatUIX11.cs: Check for more expose events before sending a
30203           WM_PAINT so they can all be grouped together. This makes dragging a
30204           window across another window redraw in a sane way.
30205
30206 2004-08-16 15:47  pbartok
30207
30208         * Control.cs:
30209           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
30210             support OnMouseEnter/Leave()
30211           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
30212             exposure handling
30213
30214 2004-08-16 15:46  pbartok
30215
30216         * XplatUIStructs.cs, XplatUIX11.cs:
30217           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
30218           OnMouseEnter/Leave()
30219
30220 2004-08-16 15:34  jackson
30221
30222         * XplatUIX11.cs: Group multiple expose events in HandleData, make
30223           sure messages get the message field set to WM_NULL if they are not
30224           handled.
30225
30226 2004-08-16 15:24  jackson
30227
30228         * HandleData.cs: HandleData is used for storing message information
30229           for window handles
30230
30231 2004-08-15 17:23  ravindra
30232
30233         * ColorDepth.cs: Added attribute.
30234
30235 2004-08-15 17:23  ravindra
30236
30237         * SWF.csproj: Updated project for ToolBar Control.
30238
30239 2004-08-15 17:20  ravindra
30240
30241         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
30242           control and also dos2unix format.
30243
30244 2004-08-15 17:13  ravindra
30245
30246         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
30247           ToolBarButtonClickEventArgs.cs,
30248           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
30249           ToolBarTextAlign.cs: First Implementation of ToolBar control.
30250
30251 2004-08-15 15:31  pbartok
30252
30253         * ButtonBase.cs:
30254           - First (mostly) working version
30255
30256 2004-08-13 16:15  pbartok
30257
30258         * Control.cs:
30259           - Fixed Anchor default
30260
30261 2004-08-13 15:43  pbartok
30262
30263         * Control.cs:
30264           - Changed GetCursorPos signature
30265
30266 2004-08-13 15:42  pbartok
30267
30268         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
30269           - Changed signature for GetCursorPos
30270
30271 2004-08-13 15:25  pbartok
30272
30273         * XplatUIX11.cs:
30274           - Cleanup
30275           - Fixed resizing/exposure handling
30276
30277 2004-08-13 15:22  jordi
30278
30279         * ThemeWin32Classic.cs: removes redundant code and fixes issues
30280           with tickposition
30281
30282 2004-08-13 14:55  jordi
30283
30284         * TrackBar.cs: change from wndproc to events
30285
30286 2004-08-13 13:00  jordi
30287
30288         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30289           XplatUIX11.cs: implements PointToClient (ScreenToClient)
30290
30291 2004-08-13 12:53  pbartok
30292
30293         * XplatUIWin32.cs:
30294           - Changed GetWindowPos to also provide client area size
30295           - Fixed broken prototypes for several win32 functions
30296
30297 2004-08-13 12:53  pbartok
30298
30299         * XplatUI.cs, XplatUIDriver.cs:
30300           - Changed GetWindowPos to also provide client area size
30301
30302 2004-08-13 12:52  pbartok
30303
30304         * XplatUIX11.cs:
30305           - Added generation of WM_POSCHANGED
30306           - Changed GetWindowPos to also provide client area size
30307
30308 2004-08-13 12:52  pbartok
30309
30310         * Control.cs:
30311           - Added Dispose() and destructor
30312           - Fixed resizing and bounds calculation
30313           - Fixed Layout
30314           - Added memory savings for invisible windows
30315
30316 2004-08-13 12:46  jordi
30317
30318         * TrackBar.cs: adds timer and grap window
30319
30320 2004-08-13 10:25  jackson
30321
30322         * Timer.cs: SWF Timer
30323
30324 2004-08-12 16:59  pbartok
30325
30326         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30327           - Implemented method to get current mouse position
30328
30329 2004-08-12 14:29  jordi
30330
30331         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
30332           enhancement, fix mouse problems, highli thumb, etc
30333
30334 2004-08-12 13:31  pbartok
30335
30336         * Control.cs:
30337           - Fixed Anchoring bugs
30338
30339 2004-08-12 13:01  jackson
30340
30341         * StatusBar.cs: Don't forget things
30342
30343 2004-08-12 12:54  jackson
30344
30345         * ThemeWin32Classic.cs: Handle owner draw status bars
30346
30347 2004-08-12 12:54  jackson
30348
30349         * StatusBar.cs: Implement missing properties, events, and methods.
30350           Handle mouse clicking
30351
30352 2004-08-12 10:19  jackson
30353
30354         * StatusBarPanelClickEventArgs.cs,
30355           StatusBarPanelClickEventHandler.cs: Classes for handling status
30356           bar panel click events
30357
30358 2004-08-12 10:10  jackson
30359
30360         * Control.cs: Add missing properties
30361
30362 2004-08-12 09:46  pbartok
30363
30364         * BindingsManagerBase.cs:
30365           - Name changed to BindingManagerBase.cs
30366
30367 2004-08-12 09:25  jordi
30368
30369         * ScrollableControl.cs: calls ctrlbase instead of exeception
30370
30371 2004-08-11 16:28  pbartok
30372
30373         * InputLanguageChangingEventArgs.cs:
30374           - Never check in before compiling. Fixes the last check-in
30375
30376 2004-08-11 16:26  pbartok
30377
30378         * InputLanguageChangingEventArgs.cs:
30379           - More signature fixes
30380
30381 2004-08-11 16:20  pbartok
30382
30383         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
30384           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
30385           ImageListStreamer.cs, InputLanguage.cs,
30386           InputLanguageChangedEventArgs.cs,
30387           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
30388           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
30389           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
30390           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30391           - Signature fixes
30392
30393 2004-08-11 16:16  pbartok
30394
30395         * Application.cs:
30396           - Fixed Signature
30397           - Added .Net 1.1 method
30398
30399 2004-08-11 15:25  pbartok
30400
30401         * SWF.csproj:
30402           - Fixed BindingManagerBase.cs filename
30403
30404 2004-08-11 15:22  pbartok
30405
30406         * BindingManagerBase.cs:
30407           - Was checked in with wrong filename
30408
30409 2004-08-11 14:50  pbartok
30410
30411         * SWF.csproj:
30412           - Updated
30413
30414 2004-08-11 13:41  jordi
30415
30416         * XplatUIWin32.cs: Fixes ClientRect
30417
30418 2004-08-11 13:19  pbartok
30419
30420         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30421           XplatUIX11.cs:
30422           - We had SetWindowPos and MoveWindow to set window positions and
30423             size, removed MoveWindow. We have GetWindowPos, so it made sense to
30424             keep SetWindowPos as matching counterpart
30425           - Added some X11 sanity checking
30426
30427 2004-08-11 12:59  pbartok
30428
30429         * Control.cs:
30430           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
30431             (It seems that SetBounds is just a front for SetBoundsCore and
30432              SetBoundsCore updates the underlying window system and
30433              UpdateBounds is responsible for updating the variables associated
30434              with the Control and sending the events)
30435           - Major cleanup of Size handling; we now have two sizes, client_size
30436             and bounds. Bounds defines the window with decorations, client_size
30437             without them.
30438
30439 2004-08-11 12:55  pbartok
30440
30441         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30442           - Added method to calculate difference between decorated window and
30443             raw client area
30444
30445 2004-08-11 12:54  pbartok
30446
30447         * Label.cs:
30448           - Forcing redraw on resize
30449
30450 2004-08-11 11:43  pbartok
30451
30452         * ImageList.cs:
30453           - Removed disposing of the actual images when the list is disposed
30454
30455 2004-08-11 09:13  pbartok
30456
30457         * Control.cs:
30458           - Now properly reparents windows
30459
30460 2004-08-11 08:37  pbartok
30461
30462         * Control.cs:
30463           - Duh!
30464
30465 2004-08-11 07:47  pbartok
30466
30467         * Control.cs:
30468           - Rewrote the collection stuff. Might not be as fast now, not
30469             keeping the number of children around and accessible directly, but
30470             it's more straightforward
30471
30472 2004-08-11 07:44  pbartok
30473
30474         * AccessibleObject.cs:
30475           - Fixed to match ControlCollection rewrite
30476
30477 2004-08-11 07:43  pbartok
30478
30479         * ImageList.cs:
30480           - Added missing creation of the collection list
30481
30482 2004-08-10 20:08  jackson
30483
30484         * StatusBar.cs: Get the paint message from WndProc
30485
30486 2004-08-10 19:31  jackson
30487
30488         * ThemeWin32Classic.cs: Create Brushes as little as possible
30489
30490 2004-08-10 19:20  jackson
30491
30492         * UICues.cs: Add Flags attribute
30493
30494 2004-08-10 19:19  jackson
30495
30496         * StatusBarPanel.cs: Signature cleanup
30497
30498 2004-08-10 19:10  jackson
30499
30500         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
30501           Initial implementation of status bar item drawing
30502
30503 2004-08-10 17:27  jordi
30504
30505         * TrackBar.cs: add missing methods, properties, and restructure to
30506           hide extra ones
30507
30508 2004-08-10 16:24  jackson
30509
30510         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
30511           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
30512           attribute
30513
30514 2004-08-10 13:21  jordi
30515
30516         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
30517           enhancements and standarize on win colors defaults
30518
30519 2004-08-10 12:52  jackson
30520
30521         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
30522           ThemeWin32Classic.cs: Implement DrawItem functionality
30523
30524 2004-08-10 12:47  jordi
30525
30526         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
30527
30528 2004-08-10 12:32  jordi
30529
30530         * Control.cs: throw ontextchange event
30531
30532 2004-08-10 11:43  pbartok
30533
30534         * Control.cs:
30535           - Added more to the still unfinished Dock/Anchor layout code
30536
30537 2004-08-10 11:39  pbartok
30538
30539         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
30540           - Added GetWindowPos method
30541
30542 2004-08-10 11:36  pbartok
30543
30544         * XplatUIWin32.cs:
30545           - Implemented several methods
30546
30547 2004-08-10 09:47  jackson
30548
30549         * TrackBar.cs: Allow control to handle buffering
30550
30551 2004-08-10 09:41  jackson
30552
30553         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
30554
30555 2004-08-10 09:24  jackson
30556
30557         * Label.cs, LinkLabel.cs: Let Control handle buffering.
30558
30559 2004-08-10 09:09  jackson
30560
30561         * StatusBar.cs: Let Control handle all the buffering.
30562
30563 2004-08-10 09:08  jackson
30564
30565         * Control.cs: Control will now handle the buffering code, so each
30566           control does not have to implement this.
30567
30568 2004-08-10 08:34  jackson
30569
30570         * XplatUIDriver.cs: Use default colors from the theme
30571
30572 2004-08-09 17:12  pbartok
30573
30574         * ImageList.cs:
30575           - Fixed several bugs Ravindra pointed out
30576
30577 2004-08-09 16:11  pbartok
30578
30579         * Control.cs:
30580           - Added incomplete dock layout code
30581           - Added support for mouse wheel
30582
30583 2004-08-09 16:09  pbartok
30584
30585         * XplatUIX11.cs:
30586           - Added handling for middle and right mousebutton
30587           - Added handling for mouse wheel
30588           - Added handling for key state and mouse state and position
30589           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
30590           messages
30591
30592 2004-08-09 15:40  jackson
30593
30594         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
30595           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
30596           checkin
30597
30598 2004-08-09 15:37  jackson
30599
30600         * StatusBar.cs: Initial implementation of StatusBar
30601
30602 2004-08-09 15:36  jackson
30603
30604         * ITheme.cs: Add support for drawing status bar and getting status
30605           bar item sizes
30606
30607 2004-08-09 15:35  pbartok
30608
30609         * MouseButtons.cs:
30610           - Fixed values
30611
30612 2004-08-09 15:34  jackson
30613
30614         * ThemeWin32Classic.cs: Add support for drawing status bar and get
30615           status bar item sizes
30616
30617 2004-08-09 15:21  jackson
30618
30619         * ThemeWin32Classic.cs: Use known colors for default control
30620           colours
30621
30622 2004-08-09 15:12  jackson
30623
30624         * ThemeWin32Classic.cs: Make the default font static, it is static
30625           in control so this doesn't change functionality and creating fonts
30626           is sloooooow.
30627
30628 2004-08-09 14:56  pbartok
30629
30630         * X11Structs.cs:
30631           - Added GrabMode enum
30632
30633 2004-08-09 14:55  pbartok
30634
30635         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30636           - Removed Run method, was only required for initial development
30637
30638 2004-08-09 14:51  pbartok
30639
30640         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30641           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
30642           capture
30643
30644 2004-08-09 13:48  pbartok
30645
30646         * XplatUIX11.cs:
30647           - Fixed default sizing for child windows
30648
30649 2004-08-09 12:56  pbartok
30650
30651         * XplatUIX11.cs:
30652           - Added generation of WM_DESTROY message
30653           - Added handling of window manager induced shutdown
30654
30655 2004-08-09 11:31  jackson
30656
30657         * ThemeWin32Classic.cs: New names for control properties
30658
30659 2004-08-09 11:25  jackson
30660
30661         * Control.cs: Use new color names
30662
30663 2004-08-09 11:02  jackson
30664
30665         * XplatUI.cs: Get default window properties from the theme
30666
30667 2004-08-09 11:01  jackson
30668
30669         * ITheme.cs: The theme engine now controls default window
30670           properties
30671
30672 2004-08-09 11:00  jackson
30673
30674         * ThemeWin32Classic.cs: Add default window color properties
30675
30676 2004-08-09 10:17  jackson
30677
30678         * ThemeWin32Classic.cs: Use correct default back color
30679
30680 2004-08-09 10:05  jackson
30681
30682         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
30683           the theme now.
30684
30685 2004-08-09 09:56  jackson
30686
30687         * XplatUI.cs: Remove defaults, these are handled by the theme now.
30688
30689 2004-08-09 09:54  jackson
30690
30691         * Control.cs: Get default properties from the theme.
30692
30693 2004-08-09 09:53  jackson
30694
30695         * ITheme.cs: Themes now handle default control properties
30696
30697 2004-08-09 09:53  jackson
30698
30699         * ThemeWin32Classic.cs: Themes now handle default control
30700           properties so coloring will be consistent
30701
30702 2004-08-08 16:54  jordi
30703
30704         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
30705
30706 2004-08-08 15:08  jordi
30707
30708         * XplatUIX11.cs: fixes keyboard crash
30709
30710 2004-08-08 13:47  jordi
30711
30712         * Label.cs: add cvs header info
30713
30714 2004-08-08 12:09  jackson
30715
30716         * ThemeWin32Classic.cs: Add pen_buttonface
30717
30718 2004-08-08 11:52  jordi
30719
30720         * Label.cs, LinkLabel.cs: [no log message]
30721
30722 2004-08-08 11:34  jordi
30723
30724         * ThemeWin32Classic.cs: Use Windows Standard Colours
30725
30726 2004-08-07 17:32  jordi
30727
30728         * TrackBar.cs: throw exceptions of invalid enums values
30729
30730 2004-08-07 17:31  jordi
30731
30732         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
30733           draw method name
30734
30735 2004-08-07 16:56  jackson
30736
30737         * HorizontalAlignment.cs: Initial checkin
30738
30739 2004-08-07 13:16  jordi
30740
30741         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
30742           methods
30743
30744 2004-08-07 13:05  jordi
30745
30746         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
30747           GetSysColor defines
30748
30749 2004-08-06 18:01  pbartok
30750
30751         * ThemeWin32Classic.cs:
30752           - Fixed some rounding issues with float/int
30753
30754 2004-08-06 18:00  jackson
30755
30756         * DockStyle.cs, AnchorStyles.cs:
30757
30758                   Add flags and serializable attributes.
30759
30760 2004-08-06 17:46  pbartok
30761
30762         * XplatUIX11.cs:
30763           - Implemented GetParent
30764
30765 2004-08-06 17:18  pbartok
30766
30767         * TrackBar.cs:
30768           - Fixed some rounding issues with float/int
30769
30770 2004-08-06 17:17  pbartok
30771
30772         * X11Structs.cs, XplatUIX11.cs:
30773           - Fixed Refresh and Invalidate
30774
30775 2004-08-06 15:30  pbartok
30776
30777         * Control.cs, X11Structs.cs, XplatUIX11.cs:
30778           - Fixed recursive loop when resizing
30779           - Improved/fixed redrawing on expose messages
30780
30781 2004-08-06 09:53  jordi
30782
30783         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
30784           keyboard navigation
30785
30786 2004-08-06 08:02  pbartok
30787
30788         * X11Structs.cs, XplatUIX11.cs:
30789           - Fixed reparenting
30790           - Fixed window border creation
30791
30792 2004-08-05 15:38  pbartok
30793
30794         * XplatUIX11.cs:
30795           - Attempted fix for reparenting problems
30796
30797 2004-08-04 15:14  pbartok
30798
30799         * Control.cs:
30800           - Fixed Invalidation bug (calculated wrong client area)
30801           - Added ClientSize setter
30802
30803 2004-08-04 15:13  pbartok
30804
30805         * Form.cs:
30806           - Added AutoScale properties
30807
30808 2004-08-04 15:13  pbartok
30809
30810         * SWF.csproj:
30811           - Added latest files
30812
30813 2004-08-04 14:11  pbartok
30814
30815         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30816           XplatUIX11.cs:
30817           - Added Invalidate handling
30818
30819 2004-08-03 17:09  jordi
30820
30821         * XplatUIDriver.cs: fixes spelling mistake
30822
30823 2004-07-27 09:53  jordi
30824
30825         * TrackBar.cs: fixes trackbar events, def classname, methods
30826           signature
30827
30828 2004-07-27 09:29  jordi
30829
30830         * ScrollBar.cs: fixes scrollbar events
30831
30832 2004-07-27 04:38  jordi
30833
30834         * Control.cs: changes to be able to run winforms samples
30835
30836 2004-07-26 11:42  jordi
30837
30838         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
30839           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
30840
30841 2004-07-26 05:41  jordi
30842
30843         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
30844           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
30845           implementation
30846
30847 2004-07-22 09:22  jordi
30848
30849         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
30850           check link overlapping, implement events, and fixes
30851
30852 2004-07-21 10:28  jordi
30853
30854         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
30855
30856 2004-07-21 10:19  jordi
30857
30858         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
30859           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
30860           LinkLabelLinkClickedEventArgs.cs,
30861           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
30862           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
30863           implementation
30864
30865 2004-07-19 13:09  jordi
30866
30867         * Control.cs, Label.cs: label control re-written: added missing
30868           functionlity, events, and properties
30869
30870 2004-07-19 10:49  jordi
30871
30872         * Control.cs: fixes SetBounds logic
30873
30874 2004-07-19 01:29  jordi
30875
30876         * Control.cs: Call RefreshWindow only if the window has created
30877
30878 2004-07-15 14:05  pbartok
30879
30880         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
30881           - Implemented ImageList and ImageList.ImageCollection classes
30882           - Added ColorDepth enumeration
30883           - Updated SWF VS.Net project
30884
30885 2004-07-15 11:06  jordi
30886
30887         * XplatUIStructs.cs: added MsgButons enum
30888
30889 2004-07-15 11:03  jordi
30890
30891         * Control.cs: added basic mouse handeling events
30892
30893 2004-07-15 03:38  jordi
30894
30895         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
30896           Vertical TrackBar control implementation
30897
30898 2004-07-13 09:33  jordi
30899
30900         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
30901
30902 2004-07-13 09:31  jordi
30903
30904         * Control.cs, Form.cs: commit: new properties and fixes form size
30905           problems
30906
30907 2004-07-09 14:13  miguel
30908
30909         * ProgressBar.cs: Spelling
30910
30911 2004-07-09 11:25  pbartok
30912
30913         * ProgressBar.cs:
30914           - Removed usage of Rectangle for drawing. Miguel pointed out it's
30915           faster
30916
30917 2004-07-09 11:17  miguel
30918
30919         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
30920
30921                 * ProgressBar.cs: Fixed spelling for `block'
30922
30923                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
30924                 style guidelines.
30925
30926                 Avoid using the += on rect.X, that exposed a bug in the compiler.
30927
30928 2004-07-08 23:21  pbartok
30929
30930         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
30931           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
30932           BaseCollection.cs, Binding.cs, BindingContext.cs,
30933           BindingMemberInfo.cs, BindingsCollection.cs,
30934           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
30935           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
30936           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
30937           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
30938           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
30939           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
30940           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
30941           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
30942           FrameStyle.cs, GiveFeedbackEventArgs.cs,
30943           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
30944           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
30945           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
30946           InputLanguageChangedEventArgs.cs,
30947           InputLanguageChangedEventHandler.cs,
30948           InputLanguageChangingEventArgs.cs,
30949           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
30950           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
30951           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
30952           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
30953           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
30954           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
30955           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
30956           QueryAccessibilityHelpEventArgs.cs,
30957           QueryAccessibilityHelpEventHandler.cs,
30958           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
30959           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
30960           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
30961           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
30962           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
30963           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
30964           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
30965           XplatUIX11.cs, lang.cs:
30966           - Initial check-in
30967
30968