2007-12-27 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2
3         * X11Dnd.cs: When the dnd operation has started and we are 
4         in the dnd loop, don't dispatch either WM_LBUTTONUP nor WM_RBUTTONUP.
5         This is done to match .Net, which doesn't send those messages after
6         dnd operation was completed/cancelled.
7         Fixes #349922.
8
9 2007-12-27  Jonathan Pobst  <monkey@jpobst.com>
10
11         * ToolStrip.cs: Previous change should be != null, not == null.
12         Thanks Gert!
13
14 2007-12-27  Jonathan Pobst  <monkey@jpobst.com>
15
16         * ToolStrip.cs: Guard against an NRE after ItemClicked is called, the
17         user may have moved the mouse off the current item during the event.
18
19 2007-12-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20
21         * ListView.cs: In ItemControl.ItemsMouseMove, try to avoid
22         calling GetItemAt for every MouseMove event by also taking into
23         account whether any mouse button is pressed (probably dragging); 
24         if so, we can call GetItemAt, and if not, try to not call it 
25         (GetItemAt can be quite expensive when used with a large number of items).
26
27 2007-12-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
28
29         * ListView.cs: Implement -finally- support for dnd, by calling
30         OnItemDrag as needed. Also, remove the dnd TODO, and add myself to the
31         authors list ;-).
32         * ListViewInsertionMark.cs: Implement NearestIndex method, by doing a
33         simple calculation of distances for all the items in the owner
34         listview.
35
36 2007-12-21  Geoff Norton  <gnorton@novell.com>
37
38         * XplatUICarbon.cs:  Ensure that we create WindowMapping handles
39         for windows that are originally created as invisible.  Fixes missing
40         main window in paint-mono.
41
42 2007-12-21  Geoff Norton  <gnorton@novell.com>
43
44         * XplatUICarbon.cs:  Register our D&D handler.  Register our custom
45         subclass handler for com.novell.mwfview subclassing HIView.  Implement
46         Pasteboard and Dnd methods.
47
48 2007-12-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
49
50         * ListBox.cs: When we got focus, give focus to first item if there
51         wasn't any pervious focused item. Also update navigation to depend on
52         SelectedIndex rather than FocusedItem, just as .Net does.
53         Fixes #349174.
54
55 2007-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
56
57         * ListBox.cs: Both FindString and FindStringExact methods must do an
58         case insensitive search, should allow the last valid index to be
59         passed in the overload taking an initial index, and should also
60         continue searching from the top back to the specified index when it
61         reaches the bottom.
62
63 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
64
65         * TextControl.cs: Apply patch from Luke Page that fixes a scrolling
66         redraw issue, and allows RichTextBox to draw colored text even while
67         disabled or readonly.
68
69 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
70
71         * RichTextBox.cs, TextBoxBase.cs: Apply patch from Luke Page that
72         disallows cut/paste in a readonly textbox, adds support for Shift-Insert,
73         and doesn't grey text in a disabled RichTextBox.
74
75 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
76
77         * RichTextBox.cs: Apply patch from Luke Page that adds better support
78         for many RTF commands: quad alignment, separate formatting for blocks
79         inside groups, and ParDef support.  Makes the test case from bug #324589
80         look much better.
81
82 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
83
84         * LineTag.cs: Fix an error in the new Draw method that caused
85         a crash when rendering the document on bug #324589.
86
87 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
88
89         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs,
90         TextControl.cs: Apply patch from Luke Page that adds support
91         for URL links in RichTextBox.
92         [Fixes enhancement #342516]
93
94 2007-12-18  Everaldo Canuto  <ecanuto@novell.com>
95
96         * MenuItem.cs: When cloning menuitem clone also name and tag properties for
97         2.0 profile. Thanks Ernesto Carrea and Luke Page. Fixes bug #340289.
98
99 2007-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
100
101         * ListBox.cs: When a key gets pressed, try to find a string
102         if the key is a character or a digit.
103         Fixes #343971.
104
105 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
106
107         * TableLayoutPanel.cs: Remove some unused variables.
108
109 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
110
111         * DateTimePicker.cs: Commit patch from Luke Page that ensures
112         we don't end up at an invalid date when we click the up/down
113         spinner to change the month or year.  Fixes bug #348682.
114
115 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
116
117         * Application.cs: Calling Exit in 2.0 should chain to the
118         Exit (CancelEventArgs) version so it can be cancelled.
119         * Form.cs: Create a flag to allow raising the Closing
120         events to be skipped.  We raise them once in Application.Exit
121         and don't want to raise them again when the Form is actually
122         closed.  [Fixes bug #349073]
123
124 2007-12-16  Jonathan Pobst  <monkey@jpobst.com>
125
126         * ToolStripDropDown.cs: Guard against an NRE when there
127         hasn't been a mainform set in the application context.
128         [Fixes bug #349108]
129
130 2007-12-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
131
132         * ListBox.cs: When SetBoundsCore gets called, besides
133         calling UpdateScrollBars, update the value of
134         last_visible_index, since we could need to show more items
135         than before, and we need to let the paint routines know that.
136         Fixes #344445.
137
138 2007-12-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
139
140         * ListView.cs: Add DesignerSerializationVisibility attribute to
141         InsertionMark property.
142         * ListViewItem.cs: Add same attribute to Position property.
143
144 2007-12-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
145
146         * ListViewItem.cs: .ctor (SerializationInfo, StreamingContext)
147         is 2.0 only.
148
149 2007-12-14  Jonathan Pobst  <monkey@jpobst.com>
150
151         * ThemeWin32Classic.cs: Don't draw the background on a
152         flat button if there is a background image.
153         [Fixes bug #348649]
154
155 2007-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
156
157         * ListBox.cs: If we remove the item currently selected,
158         remove it not only from SelectedItems, but also
159         resetting selected_index. Moreover, set focused_item to Items.Count - 1 if 
160         the items count decreased and focused_item has bigger value than that.
161
162 2007-12-13  Jonathan Pobst  <monkey@jpobst.com>
163
164         * Control.cs: Perform our layout after we resize ourselves
165         if we had to adjust our AutoSize.  Missed commit for bug
166         #346246.
167
168 2007-12-13  Jonathan Pobst  <monkey@jpobst.com>
169
170         * TableLayoutPanel.cs: Override GetPreferredSizeCore so
171         we can provide an implementation of AutoSize.
172         [Fixes bug #346246]
173
174 2007-12-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
175
176         * ListBox.cs: Add the internal overload Sort (bool paint),
177         to indicate whether we actually need a paint or we will
178         call Refresh ourselves. This way we don't request a paint
179         _before_ having an updated and valid layout.
180         Fixes #347233.
181
182 2007-12-12  Andreia Gaita <avidigal@novell.com>
183
184         * XPlatUIX11.cs: Send paint messages when updating a systray icon
185         * NotifyIcon.cs: Invalidate the window before doing a systray change so it is
186         properly invalidated. 
187         Fixes #324237
188
189 2007-12-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
190
191         * ListViewItem.cs: When using a .ctor taking a ListViewGroup,
192         don't simply assign it to our internal group field, but instead 
193         use our Group property, which should do all the neccessary work
194         required to support groups. Fixes an issue reported to me (mail) by a 
195         guy using this new feature.
196
197 2007-12-11  Jonathan Pobst  <monkey@jpobst.com>
198
199         * Control.cs: Use Scale instead of ScaleControl to ensure the
200         whole hierarchy gets scaled.
201         [Fixes bug #347282]
202
203 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
204
205         * DateTimePicker.cs: Don't set the internal MonthCalendar's
206         Parent property.  Doing this causes the control to be hosted by
207         the Form instead of being a popup window.
208         [Fixes bug #347665]
209
210 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
211
212         * ToolStripItemCollection.cs: If we try to insert a ToolStripItem
213         at an index higher than Count, just use Add instead of Insert.
214         [Fixes bug #347669]
215
216 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
217
218         * ThemeWin32Classic.cs: Don't draw a PictureBox's background in
219         DrawPictureBox, this is handled by Control.PaintBackground.
220         [Fixes bug #347276]
221
222 2007-12-10  Everaldo Canuto  <ecanuto@novell.com>
223
224         * MenuAPI.cs: When process menu keys return true by default only if menu is
225         active. Fixes bug #342892.
226
227 2007-12-09  Andreia Gaita <avidigal@novell.com>
228
229         * Control.cs: check if windows are actually mapped before
230         trying to zorder. Fixes #342509, #346955
231
232 2007-12-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
233
234         * ListView.cs:
235         * ListViewInsertionMark.cs:
236         * ThemeWin32Classic.cs: Implement the drawing side of the
237         new 2.0 ListView.InsertionMark property.
238
239 2007-12-07  Jonathan Pobst  <monkey@jpobst.com>
240
241         * CurrencyManager.cs: Silence some debug spew.
242
243 2007-12-07  Geoff Norton  <gnorton@novell.com>
244         
245         * Hwnd.cs: Refactor GetClippingRectangles to suppose returning the
246         masks for our children as well as siblings to avoid having to query
247         Quartz for this information.
248         * XplatUICarbon.cs: Implement a delegate based system to pass
249         information to System.Drawing.  Implement Async methods.  Remove
250         the hack for the resize thumb and imlpement a transparent Grow Box.
251         Rework the messaging system to proplery create window's and messages,
252         fixes TabControl.
253
254 2007-12-06  Andreia Gaita <avidigal@novell.com>
255
256         * X11Keyboard.cs: Use Xutf8LookupString to support international 
257         characters under alternate codepages. Patch from #340878
258
259 2007-12-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
260
261         * ListView.cs: When doing layout computations, set position in the
262         ListView instances (we cache the position just as .Net does).
263         * ListViewItem.cs: New internal setter method for Position. Also set
264         position field as also available in 1.1, since we are going to use it
265         now in the common case.
266
267 2007-12-06  Andreia Gaita <avidigal@novell.com>
268
269         * Control.cs: When removing controls, get the actual container
270         to notify about active control changes. Fixes 341314.
271
272 2007-12-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
273
274         * ListViewItem.cs: Forgot to add Font to our serialization stuff.
275
276 2007-12-05  Andreia Gaita <avidigal@novell.com>
277
278         * Control.cs: When updating the zorder, ignore windows that are not
279         mapped. Fixes #342509
280
281 2007-12-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
282
283         * ListViewItem.cs: Actually implement serialization on this class.
284
285 2007-12-05  Gert Driesen  <drieseng@users.sourceforge.net>
286
287         * LinkLabel.cs: Fixed paramname of ArgumentNullException in ctor of
288         LinkCollection. Spaces to tabs, and removed extra tabs.
289
290 2007-12-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
291
292         * XplatUIX11.cs: Make toolwindows' decorations show up without causing any
293           tests to fail (hopefully).
294
295 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
296
297         * ToolStripDropDownMenu.cs: Fill in AffectedBounds when drawing
298         the image margin so custom renderers can correctly place it.
299
300 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
301
302         * StatusStrip.cs: Fill in AffectedBounds when drawing the grip
303         so custom renderers can correctly place it.
304
305 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
306
307         * Application.cs: Let WM_CHAR messages flow through to controls
308         hosted in Strips.  [Fixes bug #343972]
309
310 2007-12-02  Jonathan Pobst  <monkey@jpobst.com>
311
312         * ToolStripManager.cs: Guard against an NRE I ran into.
313
314 2007-12-02  Jonathan Pobst  <monkey@jpobst.com>
315
316         * LinkLabel.cs: Apply patch from George to fix bug 344012.  If
317         a Link is manually added to the Links collection, we need to set
318         its owner, so it can invalidate properly.
319         [Fixes bug #344012]
320
321 2007-11-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
322
323         * ListView.cs: When changing ListViewItem.Position (which calls
324         ListView.ChangeItemLocation), invalidate not only the area
325         corresponding to the main item, but also to the area occupied
326         by the items being moved.
327
328 2007-11-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
329
330         * ListView.cs: When changing the position of a given item,
331         don't use item bounds, but item areas (which includes the item spacing
332         between them). Also, use first/last position if the requested
333         position is outside bounds (as .Net does). Invalidate the previous and
334         new bounds. Finally, in ItemControl.ItemsMouseDown use the actual item
335         in a specific position, instead of directly accessing Items collection
336         (this is done to get the right item - remember an Item can have a
337         different position in the grid than in the Items collection).
338
339 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
340
341         * MessageBox.cs: Calculate text area instead of just top left, this rect 
342         area will be used in DrawString. Fixes bug #343364.
343
344 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
345
346         * MessageBox.cs: Calculate max amount for text area width, it must be 60% of
347         screen width. Partially fixes bug #343364.
348
349 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
350
351         * NotifyIcon.cs: Remove duplicated code before call realculate and put this
352         code inside recalculate, it makes code more simple.
353
354 2007-11-22  Everaldo Canuto  <ecanuto@novell.com>
355
356         * NotifyIcon.cs: When recalculate icon verify if icon is active to decide
357         between update or add icon. Fixes bug #324344.
358
359 2007-11-21  Andreia Gaita <avidigal@novell.com>
360
361         * XPlatUIX11.cs: Do not treat tool windows as if they have no 
362         window manager, since that stretches the drawing area to include
363         the window decorations, and they get hidden. Reverts r84444 and fixes
364         #335849 and #342790 (mdi and pdn3 regression)
365
366 2007-11-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
367
368         * ListView.cs: When setting focused item, try to give focus to the
369         previous one _only_ if the previous one remains valid. 
370         Fixes #342504.
371
372 2007-11-20  Jonathan Pobst  <monkey@jpobst.com>
373
374         * Application.cs: Revert r89650, as it broke a common case to fix
375         an obscure case.  Fixes bug #342606.
376
377 2007-11-20  Everaldo Canuto  <ecanuto@novell.com>
378
379         * ThemeWin32Classic.cs: Fix extra space on end of tooltip.
380
381 2007-11-20  Everaldo Canuto  <ecanuto@novell.com>
382
383         * ThemeWin32Classic.cs: Fix tooltip text align removing horizontal 
384         alignment. [Fixes #324228]
385
386 2007-11-19  Jonathan Pobst  <monkey@jpobst.com>
387
388         * ToolStrip.cs: Handle flow layout in GetPreferredSize to fix PDN3.
389         [Fixes bug #342123]
390
391 2007-11-19  Everaldo Canuto  <ecanuto@novell.com>
392
393         * Form.cs: Check for empty Text before assign to cp.Caption in CreateParams
394         it prevent problems when empty captions. [Fixes #342141]
395
396 2007-11-19  Jonathan Pobst  <monkey@jpobst.com>
397
398         * Label.cs: Use Size instead of None.  Fixes bug #342077.
399
400 2007-11-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
401
402         * ListViewItem.cs: Implement 2.0 FindNearestItem method.
403
404 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
405
406         * MenuStrip.cs: Guard against a NRE when a MdiWindowItem is set
407         but there isn't a MdiContainer.
408         [Fixes bug #342358]
409
410 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
411
412         * TextControl.cs: Don't recalculate document if the recalc_start and
413         recalc_end hasn't changed.
414         [Fixes bug #342505]
415
416 2007-11-17  Gert Driesen  <drieseng@users.sourceforge.net>
417
418         * DataGridViewTextBoxCell.cs: Removed CWL.
419
420 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
421
422         * ListView.cs: Implement 2.0 SearchForVirtualItem event support.
423
424 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
425
426         * TextControl.cs: Missed some code for bug 341534 to trigger a
427         recalculation when the font changes.
428
429 2007-11-16  Andreia Gaita <avidigal@novell.com>
430
431         * Control.cs: When updating the zorder, check if the child to update is
432         the same control that is set to always be on top (i.e., scrollbars), and 
433         just put it on top directly. Fixes BadMatch error on pdn3
434
435 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
436
437         * ListView.cs: Throw the needed exceptions for FindNearestItem.
438
439 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
440
441         * Control.cs: Don't perform a new layout when a label changes its text,
442         cause label handles its own autosizing.
443         [Fixes bug #342077]
444
445 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
446
447         * ListView.cs: Implement 2.0 FindNearestItem methods.
448
449 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
450
451         * ToolStripPanel.cs: Make Join at least add the control to the panel,
452         even if the rest of what Join does isn't supported.  Add some more
453         support for vertical toolbars.
454         * ToolStripPanelRow.cs: Add some more support for vertical toolbars.
455         [Fixes the application breaking parts of bug #341998]
456
457 2007-11-15  Jonathan Pobst <monkey@jpobst.com>
458
459         * ToolStripItem.cs: When determining if we have a check/image margin,
460         we need to look at ShowCheckMargin as well as ShowImageMargin.
461
462 2007-11-15  Geoff Norton  <gnorton@novell.com>
463
464         * XplatUIOSX.cs: Rename to...
465         * XplatUICarbon.cs: and refactor all event handling out to the new event handling
466         system in System.Windows.Forms.CarbonInternal.  Lots of code cleanup as well.
467
468 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
469
470         * KeysConverter.cs: The default values should be an array of Keys, not
471         strings.  Also, the array has more values for 2.0.
472         [Fixes bug #341851]
473
474 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
475
476         * Application.cs: Change ExecutablePath to use 
477         Process.GetCurrentProcess ().MainModule.FileName instead of Assembly.GetEntryAssembly.
478         [Fixes bug #323552]
479
480 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
481
482         * LineTag.cs: Don't attempt to draw '\r', treat it like it doesn't exist.
483         When measureing CR or LF, use /u000D instead of /u0013. (Hex, not decimal.)
484         * TextControl.cs: Fix a case in GetLineEnding where a \n before a \r would
485         be ignored.  Create a new GetLineEnding that can specify which types of
486         line endings to look for.  On Insert, only create new lines for \n and \r\n.
487         [Fixes bug #324274]
488
489 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
490
491         * TextBoxBase.cs: As we loop through each line changing the font, tell
492         the document that the line needs to be recalculated.  Fixes bug #341534.
493
494 2007-11-13  Jonathan Pobst  <monkey@jpobst.com>
495         [Another round of refactoring]
496         * Line.cs: Add DeleteCharacters.
497         * LineTag.cs: Add Delete.
498         * TextBoxBase.cs: Update to use new methods.
499         * TextControl.cs: Refactor the Delete* methods.
500
501 2007-11-13  Everaldo Canuto  <ecanuto@novell.com>
502
503         * Win32DnD.cs: Implement Win32 Drop files, thank you Srikanth Madikeri for
504         the patch. [Fixes #324856]
505
506 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
507
508         * ListView.cs:
509         * ListViewItem.cs: Add an initial implementation of
510         2.0 ListViewItem.Position getter.
511
512 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
513
514         * ListView.cs: Add a reordered_items_indices array, to allow us
515         to have a different sorting than that of Items (the sorting in Items
516         could not match the actual sorting in screen). This is needed to
517         implement a pair of 2.0 features.
518         * ListViewItem.cs: Add a DisplayIndex property to keep track of the
519         actual position in the ListView grid, since it could have a position
520         different than its Index (position in ListViewItemCollection). 
521
522 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
523
524         * Label.cs: Add StringFormatFlags.LineLimit.  This tells DrawString to
525         not draw partial lines.
526         * LinkLabel.cs: Change FormatFlags setter from = to |= so that the
527         LineLimit flag from the base is preserved.
528         Fixes the windows part of bug #338965.
529
530 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
531
532         * TextBoxBase.cs: Move handling of the enter key from KEYDOWN to CHAR
533         so that it can be canceled in KeyPress.
534         Fixes bug #340078.
535
536 2007-11-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
537
538         * ListView.cs: In ItemControl, reset mouse-handling related
539         fields even if we dont' have items (we still should reset them when
540         we had items but then called Items.Clear). Partially based in a patch
541         by George Giolfan.
542         Fixes #338399.
543
544 2007-11-08  Gert Driesen  <drieseng@users.sourceforge.net>
545
546         * Application.cs: In ProductVersion first try AssemblyFileVersion
547         before falling back to assembly version. Fixes bug #339787.
548
549 2007-11-08  Andreia Gaita <avidigal@novell.com>
550
551         * HtmlElement.cs: Implement InnerText setter.
552         * WebBrowserBase.cs: Implement Navigated event support.
553         Add flag to track when the browser "document" is ready to be retrieved.
554         * WebBrowser.cs: Implement CanGoBack, CanGoForward, Title, Url.
555         Make sure browser document is ready before retrieving it.
556         Clean up cached objects (document) when moving to a new page through
557         any of the navigation methods.
558         Use the new Mono.WebBrowser.INavigation interface to control navigation.
559         Implement OnNavigated event.
560
561 2007-11-07  Jonathan Pobst  <monkey@jpobst.com>
562
563         * ThemeWin32Classic.cs: Don't draw the background in DrawLabel or
564         DrawLinkLabel, this is handled by OnPaintBackground.
565         Fixes bug #339565, part II.
566
567 2007-11-07  Andreia Gaita <avidigal@novell.com>
568
569         * Control.cs: Revert r88915. Selecting text on a textbox depends on
570         getting a Select call on click, so this call needs to be here for now.
571         Unfixes #325809
572
573 2007-11-07  Geoff Norton  <gnorton@novell.com>
574
575         * OSXStructs.cs: Add the kEventClassApplication constants.
576         * XplatUIOSX.cs: Send a WM_LBUTTONDOWN to the Grab window when the 
577         application is deactivated otherwise Menu overlays linger on top of
578         other application windows.
579
580 2007-11-07  Geoff Norton  <gnorton@novell.com>
581
582         * XplatUIOSX.cs: Dont throw an exception on OverrideCursor as we
583         dont support cursors yet anyways.  This allows Reflector to run.
584
585 2007-11-07  Geoff Norton  <gnorton@novell.com>
586
587         * XplatUIOSX.cs: Implement DragSize.
588
589 2007-11-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
590
591         * ListView.cs: When we receive a WM_LBUTTONDOWN message in
592         ItemControl, request the focus, as .Net does. This is needed after 
593         Control does not request focus anymore when it receives a
594         WM_LBUTTONDOWN.
595
596 2007-11-06  Jonathan Pobst  <monkey@Jpobst.com>
597
598         * Label.cs: Make DrawImage internal so it can be called from Theme code.
599         Remove the DrawImage call from OnPaint.
600         * LinkLabel.cs: Remove the DrawImage call from OnPaint.
601         * ThemeWin32Classic.cs: Call DrawImage after we paint the background,
602         but before we draw the text for DrawLabel and DrawLinkLabel.
603         Fixes bug #339565.
604
605 2007-11-05  Andreia Gaita <avidigal@novell.com>
606
607         * Control.cs: Remove select call on click. Fixes #325809
608
609 2007-11-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
610
611         * ListViewItem.cs: Add 2.0 Position property getter.
612
613 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
614
615         * ListView.cs: Add 2.0 BackgroundImageTiled property.
616         Also, to make it work properly, change item's BackColor and
617         BackgroundImageLayout as needed.
618         * ThemeWin32Classic.cs: Don't fill any background rectangle 
619         in ListView.ItemControl when drawing items; just let the Control
620         base implementation fill it.
621
622 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
623
624         * ListViewGroup.cs: Adda TypeConverter attribute for this class,
625         as well as adding a custom 'dummy' Converter, as .net does.
626
627 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
628
629         * PropertyGridView.cs: When clicking drop-down button,
630         select an index in the listbox only if our standard values collection 
631         has one or more items.
632
633 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
634
635         * ListViewItem.cs: Add a DefaultValue attribute to 2.0 IndentCount
636         property.
637
638 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
639
640         * PropertyGrid.cs: In PropertySort, update the toolbar buttons even if
641         the value is not changed. This ensure a pushed button remains in that
642         state when clicked again. When switching the value of PropertySort
643         between Categorized and CategorizedAlphabetical, do not update the
644         grid items and do not fire a PropertyChangedEvent. When clicking the
645         sorting buttons, do not modify the PropertySort value when switching
646         between Categorized and CategorizedAlphabetical but only update the
647         button state.
648
649 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
650
651         * Label.cs: Make AutoEllipsis internal on 1.0 profile. Code
652         formatting.
653         * PropertyGrid.cs: Also put Categorized button in pushed state when
654         PropertySort is CategorizedAlphabetical. Set AutoEllipsis to true
655         for help description label.
656
657 2007-11-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
658
659         * ListView.cs: When calculating the biggest item for a given column,
660         take into account 2.0 LIstViewItem.IndentCount, since it directly affects
661         the item's width.
662
663 2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
664
665         * PropertyGrid.cs: Fixed default value for PropertySort. Allow invalid
666         value for PropertySort on 1.0 profile. PropertySortChanged event
667         should only be fired on 2.0 profile. Fixed NullReferenceException
668         in UpdateSortLayout when PropertyGrid contains no items.
669
670 2007-11-02  Jonathan Pobst  <monkey@jpobst.com>
671
672         * MessageBox.cs: Patch from George to implement MessageBoxDefaultButton.
673         [Fixes bug #338554]
674
675 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
676
677         * ListViewItem.cs: Implement 2.0 IndentCount property.
678
679 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
680
681         * X11Dnd.cs: When sending status in a dnd operation, compare current
682         effect with the 'allowed' field instead of 'drag_data.Allowed', since
683         the later is only created when a Winforms application is both the
684         source and the target, but not when we are the target only.
685         Fixes part of #324251.
686
687 2007-11-01  Geoff Norton  <gnorton@novell.com>
688
689         * XplatUI*.cs: Add GetPreviousWindow utility method to return windows in
690         order of Z-Order.
691         * Hwnd.cs: Add initial implementation of GetClippingRectangles to clip sibling 
692         children out of the drawing view on mac.
693         * XplatUIOSX.cs: Code cleanup.  Handle more window grab cases.  Fix SetParent
694         to handle the orphan and invisible case (1/2 fixes TabStrip drawing in FormsTest)
695         
696 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
697
698         * ToolStrip.cs: Don't process MouseUp for a ToolStripControlHost, clicking
699         on the non-hosted-control part of it shouldn't do anything.
700         Fixes part of bug #327498.
701
702 2007-11-01  Andreia Gaita <avidigal@novell.com>
703
704         * WebBrowserBase.cs: revert previous change, resize can be called anytime
705
706 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
707
708         * Application.cs: When a toolstrip has the keyboard input loop, let messages
709         it does not use flow through to controls that are hosted in menus.
710         Same with mouse clicks.
711         * Form.cs: Don't close all menus on click if the click is on a
712         control hosted in a menu.
713         Fixes part of bug #327498, and part of bug #325969.
714
715 2007-10-31  Andreia Gaita <avidigal@novell.com>
716
717         * WebBrowserBase.cs: Only call resize on gluezilla when it is active
718
719 2007-10-31  Jonathan Pobst  <monkey@jpobst.com>
720
721         * TextBoxBase.cs: Use int.MaxValue for MaxLength instead of magic number.
722         Addresses an issue raised in bug #336218.
723
724 2007-10-30  Jonathan Pobst  <monkey@jpobst.com>
725
726         * Form.cs: Patch from George that moves the conversion of ClientSize->Size
727         for PreferredSize from OnLayout to PreferredSize.  Fixes bug #325242.
728
729 2007-10-30  Andreia Gaita <avidigal@novell.com>
730
731         * ContainerControl.cs: Check if the active control is a
732         child of a removed control and update active_control accordingly.
733         Fixes #329718
734
735 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
736
737         * DateTimePicker.cs: Throw ArgEx if the Value is set outside the MinDate
738         or the MaxDate.  Fixed bug #337693.
739
740 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
741
742         * XplatUIWin32.cs: Always call SetWindowPos with SWP_FRAMECHANGED flag
743         after calling SetWindowLong for a form, to force an immediate NC refresh.
744         Fixes first part of bug #325150.
745
746 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
747
748         * ComboBox.cs: Don't try to resize the listbox when we are DropDownStyle
749         simple.  Fixes the last part of bug #322668.
750
751 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
752
753         * MessageBox.cs: If the owner is TopMost, then the MessageBox form
754         needs to be TopMost as well, or else the MessageBox is under the form.
755         Patch by George fixes bug #325300.
756
757 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
758
759         * X11Dnd.cs: When starting a new drag operation, reset the static
760         'dropped' field to false (previously the implementation didn't reset
761         it and got confused after the first drag).
762         Fixes #325071.
763
764 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
765
766         * PropertyGrid.cs: When PropertySort changes, re-organize the grid
767         items instead of re-creating them all. For this purpose we now cache
768         both CategoryGridEntry items and the GridEntries for the main object's
769         properties.
770         * GridItem.cs: Make SetParent method abstract.
771         * GridEntry.cs: Override the SetParent method (already there, but now
772         we override it).
773         Fixes #324866.
774
775 2007-10-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
776
777         * PropertyGridView.cs: Set the plus/minus bounds of a grid item
778         depending on its depth (as .Net does). Update the needed values in
779         MouseDown handler. Also draw the plus/minus rect after the label,
780         so we don't draw on top of it.
781
782 2007-10-24  Everaldo Canuto  <ecanuto@novell.com>
783
784         * MenuAPI.cs: Return true as default in ProcessKeys to prevent keys to be
785         processed by forms or controls when menu is active. [Fixes #333548]
786
787 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
788
789         * ToolStripItem.cs: Don't focus a ToolStripControlHost on Select of the
790         parent doesn't have focus.  This was causing ToolStripTextBoxes to take
791         focus on mouse over.
792
793 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
794
795         * TextControl.cs: Code cleaning, simplifying.
796
797 2007-10-24  Geoff Norton  <gnorton@novell.com>
798
799         * XplatUIOSX.cs: Route mouse events to the grab hwnd on mouse down as well.
800         * XplatUIStructs.cs: Fix the ToString method of POINT and MSG.
801
802 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
803
804         * TextBoxBase.cs: If the user sets maxlength to 0, it should mean
805         the cap is maxvalue, not actually 0.  [Fixes bug #336218]
806
807 2007-10-24  Andreia Gaita <avidigal@novell.com>
808
809         * SendKeys.cs: apply jpobst's patch to bug #332409
810
811 2007-10-23  Andreia Gaita <avidigal@novell.com>
812
813         * TextBoxTextRenderer.cs: Lower bounds max size to Int16.MaxValue, the 
814         Windows 2000 gdi DrawText call doesn't draw if it's higher than that
815         for some reason
816
817 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
818
819         * PropertyGridView.cs: If a property has an UIEditor available,
820         make the drop-down/editor button available only if the property
821         is _not_ read only.
822
823 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
824
825         * PropertyGridView.cs: Don't make the grid item textbox 
826         editable when a drop-down control is available, but 
827         CanConvertFrom (typeof (string)) is false or GetStandardValuesExclusive () is
828         true. The same bur the color of the grid item value's label.
829
830 2007-10-22  Geoff Norton  <gnorton@novell.com>
831
832         * OSXStructs.cs: Add the needed constants for keyboard modifiers.
833         * OSXKeyboard.cs: Initial support for keyboard and limited modifiers.
834         * XplatUIOSX.cs: New reversible frame support.  Wire in the new keyboard
835         driver.  Padd the bottom of all real windows so the resize thumb doesn't
836         obscure scroll/status bars.
837
838 2007-10-22  Jonathan Pobst  <monkey@jpobst.com>
839
840         * WindowsFormsSection.cs: Implement.
841
842 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
843
844         * MdiClient.cs: Maximize new active mdi child when a maximized child is 
845         closed see #325434 patch.
846
847 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
848
849         * MdiClient.cs: Fix remaining issues from layout vertical and horizontal,
850         see #325434 patch.
851
852 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
853
854         * PropertyGridView.cs: When showing the textbox for a grid item,
855         have two local variables to store the read-only and non-editable
856         status of a grid item (we were previously using just one variable
857         to do this, when actually they are slightly different).
858         Fixes part of #325023.
859
860 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
861
862         * PropertyGridView.cs: When showing a drop-down list, try to get the
863         values using TypeConverter.ConvertTo (to convert to a string). Fixes
864         part of #325023.
865
866 2007-10-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
867
868         * PropertyGrid.cs: When updating a property and populating sub grid
869         items, remove the previous ones, and invalidate the specific area.
870         * PropertyGridView.cs: A new InvalidateBelowGridItem to invalidate the
871         area behind a grid item.
872         * GridItemCollection.cs: Add an internal Clear method, to allow us to
873         clean the items if needed (specially for controls implementing 
874         ICustomTypeDescriptor and returning a variable number of properties).
875         Fixes #324865.
876
877 2007-10-19  Jonathan Pobst  <monkey@jpobst.com>
878
879         * TextControl.cs: Clean up and document the Insert function.
880
881 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
882
883         * TextControl.cs: Make sure we know our start point for updating the view
884         in ReplaceSelection.  Fixes an issue where pasting multiline text wouldn't
885         update the view.
886
887 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
888
889         * ListView: Couple of corcompare fixes.
890
891 2007-10-17  Geoff Norton  <gnorton@novell.com>
892
893         * XplatUIOSX.cs: Implement support for window icons in the dock.  Set
894         the title caption of real window.
895
896 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
897
898         * ErrorProvider.cs: Add the error provider's internal window to a 
899         containercontrol when the parent changes.  [Fixes bug #329714]
900
901 2007-10-17  Geoff Norton  <gnorton@novell.com>
902
903         * XplatUIOSX.cs: Implement ScrollWindow.  Properly create TOOLWINDOWs.
904         When we make a new window; restore the old active window - fixes dialogs.
905
906 2007-10-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
907
908         * PropertyGridView.cs: Look for RefreshPropertiesAttribute
909         when modifying a property, and if found then invalidate as
910         requested.
911         Fixes part of #324865.
912
913 2007-10-17  Geoff Norton  <gnorton@novell.com>
914
915         * XplatUIOSX.cs: Re-enable the native driver on the Mac.  This is still
916         highly experimental.  Fixed coordinate translation.  Fixed window locations.
917         Initial support for clipping. Implemented NC areas and menus.  Support for
918         launching from command line from Will Johansson (wjohansson@atacomm.com).
919         * OSXStructs.cs: Add ProcessSerialNumer (Patch from Will Johansson
920         wjohansson@atacomm.com)
921         * Hwnd.cs: Add some internal structures for tracking Mac cursors.
922         Hwnds now track the existence of all of their children for Mac clipping.
923     * XplatUI.cs: Re-enabled the native driver on the Mac.
924
925 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
926
927         * Line.cs: Move the InsertString function to here.
928         * TextControl.cs: Cleanup some duplicate code, move some InsertString
929         functionality to Line.
930
931 2007-10-17  Geoff Norton  <gnorton@novell.com>
932
933         * ComboBox.cs: Destroy the popup after hiding it.  Fixes #322582
934
935 2007-10-16  Gert Driesen  <drieseng@users.sourceforge.net>
936
937         * ButtonBase.cs: Fixed IsDefault to use assigned value instead of
938         always setting value to true.
939         * Form.cs: When changing AcceptButton, notify new and original button.
940
941 2007-10-16  Jonathan Pobst  <monkey@jpobst.com>
942
943         * Form.cs: Guard against an NRE when the user sets the AcceptButton to
944         a custom control that implements IButtonControl instead of an actual
945         button.  [Fixes bug #334244]
946
947 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
948
949         * Form.cs: Change SelectActiveControl to internal, we need to call it in
950         MdiWindowManager.
951         
952         * MdiWindowManager.cs: In RaiseActivated call SelectActiveControl to select
953         active control when activate a new mdi window.
954         
955         [Fixes bug #330495]
956
957 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
958
959         * ComboBox.cs: Dont implicit add listbox_ctrl on OnHandleCreated because it
960         is already added.
961         [Fixes bug #333617]
962
963 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
964
965         * TextControl.cs: When SuspendRecalc is first called, reset the recalc_start
966         to MaxValue and recalc_end to MinValue.  Currently, recalc_start is always 1,
967         so we always recalculate the whole document instead of just the new part.
968         [Fixes bug #325082]
969
970 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
971
972         * LineTag.cs: Fix a case where the GetCharIndex would not return 0
973         when the mouse was to the left of the first character in the line.
974
975 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
976
977         * TextBox.cs, TextBoxBase.cs: When setting the document's password
978         character, use the property instead of the variable so that the
979         UseSystemPasswordChar property is taken into account.
980         [Fixes bug #333748]
981
982 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
983
984         * FolderBrowserDialog.cs: When a node is right clicked and the "New
985         folder" contex menu appears, actually add the new folder to it, even
986         if the node is not currently selected. Still use SelectedNode in case 
987         there wasn't found a node under the pointer.
988         Fixes #325452.
989
990 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
991
992         * ListViewItem.cs: When retrieving the focused state, the index check
993         should be done only when ListView is in virtualmode, as it is an
994         expensive check for normal mode.
995
996 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
997
998         * ListViewItem.cs: Make the focus state information be stored
999         in the ListView, not in the items. This is done to match the MS
1000         behaviour for items that are not yet part of a ListView control;
1001         besides that, since just one item can be focused at the same time,
1002         we save a little space in our items.
1003         Fixes part of #331643.
1004
1005 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1006
1007         * ComboBox.cs: When focus is lost, deselect the text. When setting
1008         text of control, select all text. Do not hide selection when control
1009         does not have focus. Fixes bug #333663.
1010
1011 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1012
1013         * TextBoxBase.cs: On 2.0 profile, throw ArgumentOutOFRangeException
1014         instead of ArgumentException when SelectionLength is set to negative
1015         value. Added same check to SelectionStart. Code formatting.
1016
1017 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1018
1019         * TextBoxBase.cs: Invalidate selection before changing SelectionLength
1020         or SelectionStart. Code formatting.
1021
1022 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1023
1024         * TreeView.cs: drag_begin_x and drag_begin_y are now set to -1,
1025         indicating that there was not a previous drag-and-drop operation going
1026         on.
1027         Fixes part of #325071.
1028
1029 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1030
1031         * X11Dnd.cs: When DragEventArgs.Effect is set to a value not part of
1032         AllowedEffect, don't let the drop operation happen. 
1033         Fixes #32580.
1034
1035 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
1036
1037         * TextRenderer.cs: Use GDI on Windows in both the 1.1 and 2.0 profiles.
1038
1039 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
1040
1041         * Line.cs, LineTag.cs: Guard against an exception when Document.Clear
1042         is called.
1043
1044 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
1045
1046         * Line.cs: Add a method that finds the tag that contains an x-coord.
1047         * LineTag.cs: Add a method that finds the character at an x-coord using
1048         a binary search, the old way was a linear search.
1049         * TextControl.cs: Change FindCursor to use the above new methods.
1050
1051 2007-10-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1052
1053         * DragEventArgs.cs: Allow Effect to have a non allowed value (a
1054         value different than AllowedEffect). This should be possible to
1055         indicate that dragging is not possible in some control/area.
1056
1057 2007-10-11  Jonathan Pobst  <monkey@jpobst.com>
1058
1059         * LineTag.cs: Encapsulate all variables with properties.  Calculate ascent/
1060         descent internally when font changes instead of outside code being responsible
1061         for setting it.
1062         * Line.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Use Tag properties
1063         instead of accessing internal variables.
1064
1065 2007-10-09  Everaldo Canuto  <ecanuto@novell.com>
1066
1067         * MdiClient.cs: Always call ArrangeIconicWindows before any arrangement and
1068         remove special treatment for ArrangeIcons since it is already arranged.
1069
1070 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1071
1072         * TextBoxTextRenderer.cs: Draw takes a Color now instead of a Brush, as
1073         the Win32 backend uses Color.
1074         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs:
1075         Refactor to store a Color instead of a Brush for Color.
1076
1077 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1078
1079         * Line.cs, LineTag.cs: Override GetHashCode to make a compiler warning go
1080         away.  I didn't realize I needed this when I refactored these earlier.
1081
1082 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1083
1084         * LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Refactor to
1085         store a Color structure and use the ResPool for back color instead of
1086         holding onto brushes.
1087
1088 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1089
1090         * TextControl.cs: Fix how we calculate the end of the tag we are drawing.
1091         [Fixes bug #325592]
1092
1093 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1094
1095         * MonthCalendar.cs: When ShowWeekNumbers is changed, force the calendar
1096         to recalculate its size.  Fixes a part of bug #331052.
1097
1098 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1099
1100         * NotifyIcon.cs: Set the correct mouse button when handling right mouse
1101         button.  Fixes a part of bug #331052.
1102
1103 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1104
1105         * Form.cs: Trim NewLine before setting XPlatUI.SetText, and when setting
1106         the CreateParams.
1107         * ThemeWin32Classic.cs: Trim NewLine before drawing MDI children window
1108         decorations.
1109         [Fixes bug #330986]
1110
1111 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1112
1113         * TextBoxTextRenderer.cs: Don't make this a static class, as static
1114         doesn't exist in 1.1.  (Thanks jb!)
1115
1116 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1117
1118         * TextBoxTextRenderer.cs: Abstract text measuring and drawing to this
1119         class to allow us to use different backends on different platforms.
1120         Linux uses the current [Draw|Measure]String backend.  Windows uses
1121         the TextRenderer.[Draw|Measure]Text backend, which uses GDI instead
1122         of GDI+.  This leads to better looking text and more accurate measurements
1123         on Windows, fixing many of the reported issues.
1124         * Line.cs, LineTag.cs: Update to use TextBoxTextRenderer.
1125
1126 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1127
1128         * FolderBrowserDialog.cs: When running on Windows,
1129         try to detect paths such "C:" and add Path.DirectorySeparatorChar,
1130         since we must match both "C:" and "C:\" forms. A little hackish, but
1131         works.
1132         Fixes #325247.
1133
1134 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1135
1136         * ListView.cs: When calling EndEdit (after editing an item),
1137         create a new instance of LabelEditEventArgs to keep clean the fields
1138         in case we get a new call to BeginEdit; also do Application.DoEvents
1139         to have focus in synch. This is a fix similar to TreeView's #325244.
1140
1141 2007-10-07  Andreia Gaita <avidigal@novell.com>
1142
1143         * HtmlDocument.cs, HtmlElement.cs, WebBrowser.cs: Added dom support
1144         * WebBrowserBase.cs: Added dialog support, calling the
1145           WebBrowserDialogs classes for each specific dialog type.
1146
1147 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1148
1149         * ListView.cs: When the last item is focused and is removed,
1150         move the focus to the previous item (in Items order). This is what MS
1151         does.
1152         Fixes #330415.
1153
1154 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1155
1156         * ListView.cs: In ListViewItemCollection, make Remove call RemoveAt,
1157         instead of the opposite (RemoveAt call Remove). This is a better
1158         approach since we don't need to to a pair of traversals when using
1159         RemoveAt.
1160
1161 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1162
1163         * TreeView.cs: When Keys.Left is pressed, before trying to Collapse
1164         check that the node actually has nodes, and if not, move to the
1165         parent node instead. 
1166         Fixes #325265.
1167
1168 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1169
1170         * TreeView.cs: Move the previous change to the general case (to
1171         call Application.DoEvents in cases where the method was called by
1172         different places).
1173
1174 2007_10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1175
1176         * TreeView.cs: When calling EndEdit and we need to hide the textbox,
1177         call Application.DoEvents. This is neccessary when we get a call to
1178         BeginEdit from an AfterLabelEdit handler, because the focus always
1179         goes to the TreeView, even if we try to give it to our
1180         LabelEditTextBox. The call do Application.DoEvents seems to
1181         synchronize the focus, basically.
1182         Fixes #325244.
1183
1184 2007-10-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1185
1186         * TreeView.cs: When AfterLabelEdit event is fired, TreeNode.IsEditing
1187         should be false. This also removes some nasty recursive paths. Fixes
1188         part of #325244.
1189
1190 2007-10-04  Everaldo Canuto  <ecanuto@novell.com>
1191
1192         * MdiClient.cs: When cascade (layout) mdi window that is maximized, set the
1193         state to normal. Also resize window when cascading. Fixes #325433. 
1194
1195 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
1196
1197         * RichTextBox.cs: When SelectionColor is set to Color.Empty, use
1198         DefaultForeColor, as drawing empty colored lines isn't very useful.
1199         [Fixes the not drawn lines part of bug #324358]
1200
1201 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
1202
1203         * TextControl.cs: Move Line and LineTag classes into separate files to
1204         make things easier to find.
1205         * Line.cs, LineTag.cs: Bring coding standards up to Mono's guidelines.
1206         * RichTextBox.cs: Capitalize LineTag.Length property access.
1207         - This is purely an organizational/formatting change, no logic changed. -
1208
1209 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1210
1211         * ThemeWin32Classic.cs: Do not show focus rectangle in radio buttons when
1212         text is empty.
1213
1214 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1215
1216         * ThemeWin32Classic.cs: Do not show focus rectangle in checkboxes when
1217         text is empty.
1218
1219 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1220
1221         * ComboBox.cs: On contructor use backgound_color instead of BackColor to
1222         prevent calling of OnBackColorChanged. Fixes #325321.
1223
1224 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1225
1226         * TextBox.cs: When check enabled uses Enabled property instead of is_enabled
1227         because control can be disabled because owner is disabled.
1228
1229 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
1230
1231         * ComboBox.cs: For the 1.1 profile, the default SelectedText is
1232         string.Empty, test failed from previous change.
1233
1234 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
1235
1236         * TextBoxBase.cs: For the 1.1 profile, the default SelectedText
1237         is null, not String.Empty.  See bug #323038.
1238
1239 2007-10-01  Jonathan Pobst  <monkey@jpobst.com>
1240
1241         * TextControl.cs: Change the margins to match MS a little better.
1242         Still not perfect for X11 due to some DrawString differences, but
1243         is still an improvement over the old stuff.
1244         Partially fixes #324467.
1245
1246 2007-09-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1247
1248         * FolderBrowserDialog.cs: When using MyComputer as 
1249         RootFolder, let absolute paths be considered as valid ones. Also, use
1250         Path.DirectorySeparatorChar instead of Path.AltDirectorySeparatorChar,
1251         for Windows compatibility.
1252         Partially fixes #325247.
1253
1254 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1255
1256         * FolderBrowserDialog.cs: Fix the recursive FindPathInNodes method.
1257         Also remove the stack.Count > 0 check in FBTreeView.SetSelectedNode
1258         method, since it causes the dialog to not select folders directly
1259         under the root path (when setting SelectedPath property).
1260
1261 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1262
1263         * TreeNode.cs: When calling Expand/Collapse and need to call 
1264         ExpandBelow/CollapseBelow respectively, take into account
1265         partially visible nodes (previously Expanding/Collapsing
1266         a partially visible node in the bottom was not updating its +- sign).
1267
1268 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1269
1270         * TreeView.cs: When calling Expand on a TreeNode, and we need to
1271         expand nodes below (ExpandBelow), scroll the entire Viewport
1272         area if the node is above it and not visible (instead of scrolling
1273         the area from node's Bottom, which applies only when the node is
1274         visible).
1275         Fixes #325266.
1276
1277 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1278
1279         * TreeView.cs: When calling ExpandAll, set SelectedNode to the top
1280         node in the bottom area (as .Net does). This is done to preserve the
1281         scroll position when ExpandAll is called before handle is created for
1282         the 1.1 profile (bottom area, as opposed to top area in 2.0).
1283         Fixes #324103.
1284
1285 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1286
1287         * TreeView.cs: When calling ExpandAll, don't move the scroll to the 
1288         bottom area if we are in fact not using the vertical scroll bar.
1289         Fixes #324824.
1290
1291 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
1292
1293         * Control.cs: Comment out a double buffering optimization that doesn't
1294         take into account invalidates created in OnPaint, causing the control
1295         to never be redrawn.  It would take quite a bit of work to work around
1296         this, but I left it commented with an explanation for later possible
1297         optimization.
1298         [Fixes bug #328681]
1299
1300 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
1301
1302         * Control.cs: Ask parent to perform a layout if control is AutoSize and
1303         the text changes.
1304         * RadioButton.cs: Implement GetPreferredSizeCore.
1305         [Fixes bug #328672]
1306
1307 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
1308
1309         * RichTextBox.cs, TextBoxBase.cs, WindowsFormsSynchronizationContext.cs:
1310         corcompare stuffs.
1311
1312 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
1313
1314         * Application.cs: Move the sync context stuff to Run instead of RunLoop
1315         so that it doesn't get uninstalled on modal forms.
1316         * Control.cs: Install a sync context when a control is created.
1317         * WindowsFormsSyncronizationContext.cs: Create a private static control
1318         to invoke on.  This is easier than trying to find a created control we
1319         can use.
1320         [Fixes bug #327608]
1321
1322 2007-09-25  Jonathan Pobst  <monkey@jpobst.com>
1323
1324         * Application.cs: Install a WindowsFormsSynchronizationContext in the
1325         run loop, and uninstall it when done.
1326         * WindowsFormsSynchronizationContext.cs: Implement.
1327         [Fixes the common case in bug #327608]
1328
1329 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
1330
1331         * DataGridViewCellCollection.cs: Added argument checks for indexers.
1332         Use case-insensitive lookup of column name in indexer. Code
1333         formatting.
1334
1335 2007-09-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1336
1337         * TreeNode.cs: When collapsing or expanding a node, check whether its
1338         change will affect the visible area (we were previously doing a
1339         IsVisible check, but that check is not enough since children nodes
1340         could be still visible). Fixes part of #325266.
1341
1342 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
1343
1344         * TreeView.cs: Always select the first node when the TreeView gets
1345         focus if there is no currently selected node.
1346         [Fixes bug #324279]
1347
1348 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
1349
1350         * TreeView.cs: Do not raise BeforeSelect or AfterSelect when the
1351         node being selected is null.
1352         [Patch from Yves Bastide fixes bug #326858]
1353
1354 2007-09-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1355
1356         * TreeNode.cs: Add an internal ArePreviousNodesExpanded, to know
1357         whether all the parent nodes are expanded.
1358         * TreeNodeCollection.cs: When adding a new node an calling SetupNode,
1359         call RecalculateVisibleOrder if all previous nodes are expanded.
1360         Before that we were doing a IsVisible check, but sometimes the node
1361         is not in the visible area, but _should_already be ready, because of
1362         all previous nodes are expanded. Fixes #325259.
1363
1364 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1365
1366         * ToolStripSplitButton.cs: Call the ButtonClick event if the button
1367         portion of the item is clicked.
1368
1369 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1370
1371         * TextControl.cs: Do not tell the system to move the cursor if the
1372         textbox isn't focused.  Fixes part of bug #322668.
1373
1374 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1375
1376         * ComboBox.cs: When there are no items, do not show the dropdown if
1377         the down arrow is clicked.  Fixes part of bug #322668.
1378
1379 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1380
1381         * ToolStripComboBox.cs: Manually set the size of this control in the
1382         constructor, as it doesn't seem to be the same as DefaultSize.
1383         Fixes a failing monobuild test.
1384
1385 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
1386
1387         * DateTimePicker.cs: If the user sets MinDate to DateTime.MinValue,
1388         change it to DateTimePicker.MinDateTime.  [Fixes bug #326609]
1389
1390 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
1391
1392         * Theme.cs: FileDialogs should be using DesktopDirectory instead of
1393         Desktop.  This lets it work for people who have moved their desktops
1394         from the default location on windows.  For people who have not, both
1395         values are the same, so it shouldn't hurt anything.  [Fixes bug #325270]
1396
1397 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1398
1399         * ToolStripControlHostTest.cs: DefaultSize is based off hosted control,
1400         but when the base constructor sets this, the control is null.  Set it
1401         again in the constructor.  Fixes a failing monobuild test.
1402
1403 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1404
1405         * ToolStripDropDownItem.cs: Make sure Click and DropDownOpened events
1406         get called.
1407         * ToolStripSplitButton.cs: Make sure MouseDown and MouseUp events get
1408         called.
1409
1410 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1411
1412         * ToolStrip.cs: Don't show tooltips for ToolStripTextBoxes, they
1413         will handle it themselves.
1414         * ToolStripItem.cs: When deciding what the text of a tooltip should
1415         be, use the Text property instead of the text field.
1416         * ToolStripTextBox.cs: Handle tooltips.
1417         [Fixes bugs #325417 and #325973]
1418
1419 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1420
1421         * ToolStripDropDownButton.cs: Only drop down overflow menu with a
1422         left click.  Fixes the easy part of bug #325969.
1423
1424 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1425
1426         * ToolStrip.cs: Set AutoSizeMode back to GrowAndShrink to refix
1427         bug #325406, but set a minimum for StatusStrip to 22 to keep
1428         bug #325390 fixed.  I think this minimum would have been figured
1429         up automatically if the grip was actually a ToolStripItem, but it
1430         currently is not.
1431
1432 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1433
1434         * ListView.cs: max_label_wrapping is now 30 pixels instead of 38,
1435         as this is apparently the actual value used by .Net. Also apply
1436         ItemPadding in Details view only, and decrease the general width padding,
1437         to have only the needed. This should fix #324340 in Windows too.
1438
1439 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1440
1441         * ListViewItem.cs: Don't Invalidate item if parent is inside
1442         a BeginUpdate/EndUpdate block. This prevents to have differences
1443         between the ListView and items state, as well as avoid some exceptions
1444         there.
1445         * ListView.cs: Make 'updating' field internal.
1446
1447 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1448
1449         * ToolStripControlHost.cs: Realign control when ControlAlign changes.
1450         * ToolStripItem.cs: Use ImageScalingSize when calculating preferred
1451         size if appropriate.
1452         Fixes reopened bug #325414.
1453
1454 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1455
1456         * ToolStrip.cs: Set AutoSizeMode back to GrowOnly.
1457         * ToolStripItem.cs: Invalidate before and after our new autosize when
1458         text changes.
1459         Fixes reopened bug #325390.
1460
1461 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1462
1463         * ToolStripMenuItem.cs: Make sure we invalidate when clicked so
1464         mnemonics can be drawn or undrawn correctly.  Fixes reopened bug 
1465         #325044.
1466
1467 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1468
1469         * Control.cs: Do WM_CONTEXTMENU before OnMouseUp.  [Fixes bug #325535]
1470
1471 2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1472
1473         * ColumnHeader.cs: When drawing column text, use EllipsisCharacter
1474         instead of EllipsisWord (by equistango at gmail.com). Fixes part of
1475         #82734.
1476
1477 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1478
1479         * ToolStrip.cs: Make ToolStrip selectable when TabStop = true.  Find an
1480         item to select when the ToolStrip is selected.
1481         * ToolStripControlHost: Realign the control when the bounds or visibility
1482         change.
1483         * ToolStripItem.cs: When selected, if it's a control host, focus the control.
1484         * ToolStripOverflow.cs: When laying out the drop down, respect the item's
1485         preferred height.
1486         * ToolStripTextBox.cs: OnPaintInternal should call base.OnPaintInternal, not
1487         base.OnPaint.  Was causing text not to be drawn.
1488
1489 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1490
1491         * SplitterPanel.cs: Ignore attempts to set AutoSizeMode.
1492
1493 2007-09-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1494
1495         * TreeView.cs: When creating the label edit text box,
1496         set is initially to Visible = false. This is done to
1497         prevent a confusion in the layout which makes it to lose
1498         focus when shown the first time. Fixes part of #82592.
1499
1500 2007-09-13 Andreia Gaita <avidigal@novell.com>
1501
1502         * WebBrowserBase.cs: add FocusOption enumeration for finer focus control
1503
1504 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1505
1506         * ToolStrip.cs: Take Margin into account when calculating preferred
1507         size.  Also, allow preferred size to get smaller than the explicit
1508         size.
1509         * ToolStripTextBox.cs: Don't change the GetPreferredSize implementation.
1510         First step towards fixing bug #82747.
1511
1512 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1513
1514         * TreeView.cs: Applied patch from latency@gmx.de to not paint the
1515         full row select background over the plus/minus glyph.  Also, turn
1516         off the focus rectangle for full row select since MS doesn't seem
1517         to ever paint it.  [Fixes bug #81839]
1518
1519 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1520
1521         * ToolStrip.cs: Don't FocusInternal if there is no selected item.
1522         This was causing keyboard opened dropdowns to lose focus.
1523         [Fixes bug #82803]
1524
1525 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1526
1527         * Control.cs: If Rectangle.Empty is passed to Invalidate, use
1528         ClientRectangle instead.  [Fixes bug #82838]
1529
1530 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1531
1532         * SplitContainer.cs: We can't reset Visible on every layout because
1533         someone may have set Visible = false explicitly on a SplitterPanel.
1534         Make sure when we switch orientation the SplitterDistance does not
1535         change.  Fixes two failing tests.
1536
1537 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1538
1539         * TreeView.cs: Use MeasureTextInternal instead of MeasureText in
1540         TextRenderer, since the latter is only available in 2.0.
1541
1542 2007-09-13  Ivan N. Zlatev <contact@i-nz.net>
1543
1544         * Cursor.cs: Fix Cursor.Current to apply Cursor.Default.
1545         * SplitContainer.cs: Implement FixedPanel layouting.
1546
1547 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1548
1549         * WebBrowserBase.cs: setup shutdown routine
1550
1551 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1552
1553         * Application.cs: Let keyboard events that are targetted 
1554                 to non-mwf windows hosted inside mwf (as in, webbrowser),
1555                 propagate properly. Fixes keyboard handling on the webbrowser.
1556
1557 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1558
1559         * ListView.cs: When handling MouseUp event and we are 
1560         highligting a node with the mouse right button, don't trigger
1561         Before/AfterSelecting event, since we are not actually selecting
1562         the node.
1563
1564 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1565
1566         * TreeView.cs: When editing a node, modify the edit text box
1567         depending on the text length (as you are typing), like MS does.
1568
1569 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1570
1571         * ToolStrip.cs: Fixup preferred size calculations for vertical toolbars. 
1572         Override GetPreferredSizeCore to perform calculations.  Remove custom
1573         autosize logic.  [Fixes bug #82739]
1574
1575 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1576
1577         * TextBoxBase.cs: Modified should default to false.
1578
1579 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1580
1581         * Control.cs: Update the anchoring distances even when layout is supspended.
1582         Patch provided by George fixes bug #82805.
1583
1584 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1585
1586         * Control.cs: Provide a setter for ExplicitHeight.
1587         * TextBoxBase.cs: Now that we have the implementation for explicit heights,
1588         remove the hacks in here for requested_height.
1589         [Fixes bug #82749]
1590
1591 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1592
1593         * ScrollBar.cs: Fix an issue reported on the lists where setting a scrollbar's
1594         Maximum to lower that its current Value caused an ArgumentException by setting
1595         the Value to the new Maximum.
1596
1597 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1598
1599         * ThemeWin32Classic.cs: Math is hard!  Fix some math so that the TrackBar
1600         handle moves to the closest tick when it is being dragged.
1601         [Fixes bug #82751]
1602
1603 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1604
1605         * ToolStripManager.cs: When we have added MDI buttons onto a MenuStrip, we
1606         can't let them count as real items when calculating where to merge in the
1607         user's items.  [Fixed bug #82786]
1608
1609 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1610
1611         * ToolStripMenuItem.cs: Add a parent type check so we don't crash on people
1612         who want to add a menu item directly onto a toolstrip.
1613         [Fixes bug #82775, part II]
1614
1615 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1616
1617         * StatusStrip.cs: Synchronize SetDisplayedItems with the ToolStrip version.
1618         * ToolStrip.cs: If a ToolStripItem set to not visible is added to a ToolStrip,
1619         don't set it to available.
1620         * ToolStripItem.cs: When Visible is changed, tell the owner to perform a layout.
1621         [Fixes bug #82727, part II]
1622
1623 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1624
1625         * StatusStrip.cs: Change item placement to None if not visible.
1626         * ToolStripItem.cs: Invalidate when InternalVisible changes.
1627         These should have been committed to fix 82723, but I missed them.
1628
1629 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1630
1631         * ToolStrip.cs: Make sure ItemClicked is raised before the ToolStripItem's
1632         Click, and that it is only called once.
1633         * ToolStripMenuItem.cs: Call OnClick even when there are dropdown items.
1634         * ToolStripDropDownItem.cs: Override HandleItemClick so dropdowns stay
1635         dropped down.
1636         [Fixes bug #82775]
1637
1638 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1639
1640         * ColumnHeaderSample.cs: Use 5 pixels as extra height instead of 8
1641         to match .Net.
1642         * ThemeWin32Classic.cs: For the columns text, use 5 pixels as left padding
1643         instead of 8, just like above. Partially fixes #82734.
1644
1645 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1646
1647         Patch by Ernesto Carrea <equistango at gmail.com>. Partially 
1648         fixes #82734.
1649
1650         * ListView.cs: Remove extra space between rows in Details view (match
1651         .Net). 
1652         * ThemeWin32Classic.cs: Header text should use ListView.Font, not
1653         the DefaultFont.
1654
1655 2007-09-08  Gert Driesen  <drieseng@users.sourceforge.net>
1656
1657         * Application.cs: Modified ProductVersion to return value of
1658         AssemblyInformationVersion if available, and fallback to assembly
1659         version. Fixes bug #82746. Code formatting.
1660         * BindingSource.cs: Remove NIE from Dispose, and mark it MonoTODO
1661         instead.
1662
1663 2007-09-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1664
1665         * Control.cs: When updating ZOrder for a child control,
1666         take into account the implicit ones (we need it in our controls
1667         using them). Fixes #82642.
1668
1669 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1670
1671         * ToolStripItem.cs: Add support for animated images.
1672         [Fixes bug #82726]
1673
1674 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1675
1676         * ToolStrip.cs: Make sure we aren't drawing anything that isn't 
1677         visible.  [Fixes bug #82727]
1678
1679 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1680
1681         * ToolStripItem.cs: If AutoSize changes the size of our item, invalidate
1682         so we repaint using the new size.  [Fixes bug #82723]
1683
1684 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1685
1686         * TreeView.cs: If ShowLines is true, we should ignore the FullRowSelect
1687         option.  [Fixes bug #81779]
1688
1689 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1690
1691         * TreeView.cs: Override HandleClick because the StandardClick style is
1692         set to false.  According to MSDN (and testing), the click events should
1693         only be raised when the click occurs on a TreeNode.  [Fixes bug #81739]
1694
1695 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1696
1697         * ToolStripTextBox.cs: Invalidate our textbox when it loses focus, so
1698         the border will disappear.  Fixes reopened #82653.
1699
1700 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1701
1702         * Control.cs: If the control is autosize, and its preferred size changes
1703         when it lays out its children, tell its parent so it can be re-layed out.
1704         Fixing some of the fallout from r85433.
1705
1706 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1707
1708         * ThemeWin32Classic.cs: Fix a NRE caused by r85427 because RadioButton
1709         and CheckBox share some code.
1710
1711 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1712
1713         * TrackBar.cs: Only call OnScroll if we actually changed the Value of
1714         the TrackBar, not every mouse move.  [Fixed bug #82718]
1715
1716 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1717
1718         * ThemeWin32Classic.cs: Allow a CheckBox to be rendered like a Button
1719         under 2.0 rendering.  [Fixes bug #82657]
1720
1721 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1722
1723         * TreeView.cs: If we found a TreeNode to display a context menu, but
1724         it doesn't have one to show, let the TreeView display its menu
1725         instead.  [Fixes bug #82680]
1726
1727 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1728
1729         * ToolStripTextBox.cs: TextBox no longer call OnPaint, we need to use
1730         OnPaintInternal instead.  Give the internal TextBox a Border property
1731         so it can draw itself more correctly.  [Fixes bug #82653]
1732
1733 2007-09-06  Zoltan Varga  <vargaz@gmail.com>
1734
1735         * HtmlHistory.cs HtmlWindow.cs HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs WindowsFormsSynchronizationContext.cs: Stubs for missing 2.0 classes.
1736
1737 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1738
1739         * ComboBox.cs: Adjust combobox button state to reflect current state when
1740         back to enabled = true. Fixes first issue of #82654.
1741
1742 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1743
1744         * Control.cs: Fix last patch regression, prevent forms to update zorder when
1745         setting visible property.
1746
1747 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1748
1749         * Control.cs: Update zorder after control creation in SetVisibleCore, it 
1750         fix zorder for controls initially created as non visible. Fixes #82667.
1751
1752 2007-09-04  Everaldo Canuto  <everaldo@simios.org>
1753
1754         * ThemeWin32Classic.cs: Adjust checkbox light color to ControlLightLight to
1755         mimic win32 look. Fixes #82656.
1756
1757 2007-09-01  Zoltan Varga  <vargaz@gmail.com>
1758
1759         * FileDialogCustomPlace.cs FileDialogCustomPlacesCollection.cs: 
1760         Stubs for new net 3.5 classes.
1761
1762 2007-08-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1763
1764         * ListViewItem.cs: In ListViewItemCollection operations calculate
1765         Layout for owner as well as invalidate it. Fixes part of #82642.
1766
1767 2007-08-31  Jonathan Pobst  <monkey@jpobst.com>
1768
1769         * ToolStripItem.cs: Take Parent/Owner's Enabled state in to account
1770         when returning Enabled.  [Fixes bug #82651]
1771
1772 2007-08-30  Everaldo Canuto  <everaldo@simios.org>
1773
1774         * ToolBar.cs: Fix button size for non flat toolbars. Fixes #82368.
1775
1776 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1777
1778         * ListView.cs: Put item padding info in a single place
1779         (Theme.ListViewItemPaddingWidth) to have working AutoResize on
1780         columns again.
1781         * ThemeWin32Classic.cs:
1782         * Theme.cs: Likewise.
1783
1784 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1785
1786         * ListView.cs: When a ListViewSubItem instance is invalidated,
1787         invoke Invalidate on parent ListViewItem, not parent ListView.
1788         Fixes #81570.
1789
1790 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1791
1792         * ListView.cs, ListViewItem.cs: corcompare stuffs.
1793
1794 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1795
1796         * BindingMemberInfo.cs: Implement == and != operators.
1797
1798 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1799
1800         * HtmlElementEventArgs.cs: Implement properties.
1801
1802 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1803
1804         * HtmlElementErrorEventArgs.cs, HtmlElementErrorEventHandler.cs: Added.
1805
1806 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1807
1808         * TabControl.cs: I was looking into the MonoTODO on TabPageCollection.
1809         Add (string,string,string) to implement the imagekey.  It turns out, we
1810         use the requested imagekey whereas .Net does not.  So I broke ours to match
1811         theirs.  :(
1812
1813 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1814
1815         * Form.cs, UserControl.cs: Override ValidateChildren, AutoValidate.
1816
1817 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1818
1819         * ContainerControl.cs: Implement ValidateChildren and new Validate overload.
1820
1821 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
1822
1823         * FolderBrowserDialog.cs: Set Tag of newly created node, and keep it
1824         up-to-date. Fixes bug #82618.
1825
1826 2007-08-29  Everaldo Canuto  <everaldo@simios.org>
1827
1828         * TextBoxBase.cs: Call CalculateDocument after changes Lines property to
1829         reflect document changes. Fixes #82367.
1830
1831 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1832
1833         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
1834         as well as add new ones. This should make work the BackgroundImage
1835         property for ListView again.
1836
1837 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1838
1839         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
1840         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
1841         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
1842
1843 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1844
1845         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
1846         IsKeyLocked.
1847
1848 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1849
1850         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
1851         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
1852
1853 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1854
1855         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
1856         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
1857
1858 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1859
1860         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
1861
1862 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1863
1864         * GridEntry.cs: Implement GetService.
1865
1866 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
1867
1868         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
1869         for label editting, make sure we focus back on the TreeView.
1870         [Fixes bug #82590]
1871
1872 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1873
1874         * ListView.cs: Add some 2.0 overrides.
1875
1876 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1877
1878         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
1879         because getter dont returns right value before handle creation. Thanks 
1880         to George. Fixes #82569.  
1881
1882 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1883
1884         * Theme.cs: Revert last patch, it causes error under win32. 
1885
1886 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1887
1888         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
1889         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
1890         logical Desktop rather than the physical file system location. Fixes #82603. 
1891
1892 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
1893
1894         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
1895         for the patch. Fixes #82568.
1896
1897 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1898
1899         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
1900         methods.
1901
1902 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1903
1904         * ListViewInsertionMark.cs: New stubbed class.
1905
1906 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1907
1908         * FolderBrowserDialog.cs: When adding folder, immediately create the
1909         directory with temporary name and rename the directory when editing
1910         finishes. This matches MS. Ensure the node for the new folder is 
1911         selected and LabelEdit is disabled, when editing is either finished
1912         or cancelled.
1913
1914 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1915
1916         * TreeView.cs: When editing label of node, ensure node is visible.
1917
1918 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
1919
1920         * PropertyGridView.cs: Set the value only if it has changed.
1921
1922 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1923
1924         * ListView.cs: Some more code refactoring to add support sorting
1925         with groups (now for Details view). Remove unused code also.
1926
1927 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1928
1929         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
1930         Not a big fan of reacting immediately to a field in an EventArg, but that's
1931         the way it's done.  (This is part of the previous commit that got left out.)
1932
1933 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1934
1935         * FolderBrowserDialog.cs: Removed need for separate description field.
1936         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
1937         has focus when dialog box is displayed again, regardless of what
1938         button was pressed the previous time. Set RootFolder and SelectedPath
1939         each time dialog box is displayed. This ensures the treeview is
1940         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
1941         when it does not have focus. Added support for more special folders.
1942
1943 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1944
1945         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
1946         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
1947         it resets the edit_args.
1948         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
1949         [Fixes bug #82577]
1950
1951 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
1952
1953         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
1954         button to match MS. Provide more meaningful exception message for
1955         invalid RootFolder value. Use zero-length string when SelectedPath
1956         is set to null. Allow non-rooted paths in SelectedPath, but ignore
1957         them in FolderBrowserTreeView. Allow folders to be created in
1958         RootFolder. Fixes bug #82576.
1959
1960 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1961
1962         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
1963         since we need to take into account the group headers and the margin
1964         between them.
1965         * ListViewGroup.cs: Add a rows field to store the number of rows per
1966         group.
1967
1968 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1969
1970         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
1971           Anyways, let's just follow the lead.
1972
1973 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1974
1975         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
1976         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
1977         controls in GetPreferredSizeCore.
1978         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
1979         [Fixes bug #82488]
1980
1981 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1982
1983         * PrintDialog.cs: Need to instantiate the form variable here too.
1984
1985 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1986
1987         * ListView.cs: Do some reorganization to support sorting in groups,
1988         by doing the layout sequentially in ListView.Items. Also add support
1989         for the Default Group, which should be available for items with no
1990         group assigned.
1991         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
1992         for storing layout info also.
1993         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
1994         collection, as well as providing internal members to do a traversal
1995         including the default group (needed when doing layout/drawing).
1996         * ThemeWin32Classic.cs: When drawing group headers use internal
1997         ListViewGroupCollection members to take into account the default
1998         group.
1999
2000 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
2001
2002         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
2003
2004 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2005
2006         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
2007         been created.  If handle is created, we want arror keys.  If we are editing
2008         a node, we want things like enter, esc, home, end, page up, page down.
2009         Allows Esc to work for FolderBrowserDialog.
2010
2011 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2012
2013         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
2014         they close when ESC is pressed.  Thanks Andy!
2015
2016 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2017
2018         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
2019         This way we can tell if this is a CommonDialog provided with mono, or one
2020         that is being implemented outside by a developer.  If it is an external one,
2021         the developer is responsible for showing their own form.  We were showing
2022         our blank form after the developer showed his.
2023         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
2024         PageSetupDialog.cs: Instantiate form variable in our constructor.
2025         [Fixes bug #82531]
2026
2027 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2028
2029         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
2030         and always return true.  [Fixes bug #81616]
2031
2032 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2033
2034         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
2035         TextBox.  [Fixes bug #82549]
2036
2037 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
2038
2039         * FileDialog.cs: When Save/Open is clicked and no filename is selected
2040         or entered then do not close the dialog. Fixes bug #82539. Removed
2041         CWLs.
2042
2043 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
2044
2045         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
2046         code to this method. It is calling every time filter changes. This method
2047         will help to fix the bug #80887.
2048
2049 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
2050
2051         * CheckBox.cs: Implement AutoSize calculation.
2052
2053 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
2054
2055         * CheckBox.cs: Use new 2.0 rendering for 2.0.
2056         * Theme.cs: Method declarations for 2.0 rendering path.
2057         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
2058
2059 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2060
2061         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
2062
2063 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2064
2065         * ListViewGroupCollection.cs: Implement AddRange the right way, to
2066         only call Redraw on the parent one time.
2067
2068 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2069
2070         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
2071           GetClipboardContent.
2072         * DataGridViewCell.cs: Implemented GetClipboardContent,
2073           GetEditedFormattedValue, GetFormattedValue.
2074         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
2075
2076 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
2077
2078         * TableLayoutStyleCollection.cs: corcompare fix.
2079
2080 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2081
2082         * DataObject.cs: Implemented retrieval of convertible / not convertible
2083           objects.
2084
2085 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
2086
2087         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
2088         ourselves.  This ensures the entire old bounds are repainted, in case our new
2089         size is smaller.  [Fixes bug #82518]
2090
2091 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
2092
2093         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
2094         flag to make fast handle of mouse events, without this the mouse move is
2095         handled in some manner, whether it is a mouse move or not. Fixes #81588.
2096
2097 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2098
2099         * ListView.cs: When doing layout calculations don't use a ref
2100         param to keep the current item; instead use its Index value (this 
2101         is specially important when doing the layout with Groups
2102         and Items being sparse). Also don't take into account items added to
2103         the Group but not yet added to the main ListView.Items collection.
2104
2105 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2106
2107         * ListViewGroupCollection.cs: Forgot to mimic an issue
2108         in the indexer (don't assign the ListView owner for new values).
2109
2110 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2111
2112         * ListViewGroupCollection.cs: Make the string indexer use
2113         the int based indexer to re-use code, instead of duplicate the code.
2114         Also Redraw as needed and take into account null values.
2115
2116 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
2117
2118         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
2119         [Fixes bug #82481]
2120
2121 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
2122
2123         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
2124         when other buttons are clicked or navigated to.
2125
2126 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2127
2128         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
2129           it's XplatUIX11 that attaches them.
2130
2131 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2132
2133         * DataGridView.cs: If a column has been added, recreate the editing row.
2134           Fixes #82226.
2135
2136 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2137
2138         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
2139           of the tag to draw. Makes disappearing text show up again.
2140
2141 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2142
2143         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
2144           Contents. Fixes #82487.
2145
2146 2007-08-19  Andreia Gaita  <avidigal@novell.com>
2147
2148         * Added HtmlElement.cs, HtmlElementCollection.cs, 
2149           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
2150           
2151 2007-08-19  Andreia Gaita  <avidigal@novell.com>
2152
2153         * BindingSource.cs: Implement this, dispose and getenumerator.
2154         * DataGridViewRowCollection.cs: Move the InvalidOperationException
2155         out of AddInternal, throw it only on public Add calls. The 
2156         UsingWebBrowser sample was blowing up with this when setting the
2157         DataSource after adding DataBindings, so it's likely that .net
2158         only throws this exception when Add is called directly. 
2159         
2160         * ToolStripControlHost.cs: Return the hosted control's text
2161         property, and not the ToolStripItem one (it would always return
2162         the initial value).
2163         
2164         * HtmlDocument.cs: Implement GetElementById and All
2165         * WebBrowser.cs: Remove exception on set_DocumentStream.        
2166
2167 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2168
2169         * Form.cs: Fix the max and min value for opacity (0~1).
2170
2171 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2172
2173         [Fixes #80118]
2174         * DataGridTableStyle.cs: Default header font is now null, on getter it 
2175         returns datagrid font when is null. On setter permits null.
2176
2177         * DataGrid.cs:
2178         - When ResetHeaderFont set header font to null.
2179         - On EndInit set grid_style.DataGrid.
2180
2181 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2182
2183         * TabControl.cs: Fix regression in default padding x.
2184
2185 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2186
2187         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
2188
2189 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2190
2191         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
2192         not 2. Fixes #82229.
2193
2194 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2195
2196         * TabControl.cs: Fix tab size when image height is less than text height.
2197         Partially fixes #81837.
2198
2199 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2200
2201         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
2202         "alt + tab". It works only for Win32, for X11 theres no way to remove window
2203         from taskbar and keep it on "alt_tab". Fixes #81722.
2204
2205 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2206
2207         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
2208         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
2209         Fixes #80877 and #79418.
2210
2211 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2212
2213         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
2214         between position and one of the screen borders. Fixes #82349.
2215
2216 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2217
2218         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
2219         the MessageBox in the taskbar. Fixes #82457.
2220
2221 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2222
2223         * MessageBox.cs: Fix form size when icon is set and text height is bigger
2224         than icon. Fixes #82468.
2225
2226 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2227
2228         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
2229         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
2230           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
2231           Refactored HandleNCCalcSize somewhat to avoid code duplication.
2232         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
2233           FormBorderStyle to decide if we're calculating a new size from the
2234           client size or not. CreateParams: Don't fake tool windows, only the X11
2235           backend manages toolwindows manually.
2236
2237 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2238
2239         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
2240         ObjectDisposedException.
2241
2242 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2243
2244         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
2245         in OnLoad should not have any effect.  [Fixes bug #82470]
2246
2247 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2248
2249         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
2250         paint for controls that create their own ToolTipWindow instead of
2251         going through ToolTip.
2252
2253 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2254
2255         * ToolTip.cs: Make Hide internal instead of public to match MS API.
2256
2257 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2258
2259         * ListViewGroupCollection.cs: Use generic List instead of an
2260         ArrayList, since this collection is 2.0 only.
2261
2262 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
2263
2264         * ToolTip.cs (Hide): Made public to make the build work (should
2265         this not be public?).
2266
2267 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2268
2269         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
2270         ToolTipWindow.
2271         * ToolTip.cs: Add an internal Visible property to facilitate transition.
2272
2273 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2274
2275         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
2276         PopupEventHandler.cs: Make these internal for 1.1.
2277         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
2278         use ToolTipWindow internals.
2279         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
2280         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
2281
2282 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2283
2284         * X11Dnd.cs: Add a null check.
2285
2286 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2287
2288         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
2289           nothing else succeeds. Fixes #82453.
2290
2291 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2292
2293         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
2294           rectangle if we're painting to another window than the one the paint
2295           message was generated on. Simplify the code somewhat, which makes
2296           PaintEventEnd also simpler.
2297
2298 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2299
2300         * Control.cs: When changing parent of a form, let the form decide whether
2301           XplatUI.SetParent should be called or not.
2302         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
2303           recreating the handle. If the new parent's handle isn't created, don't
2304           recreate our handle, just destroy it. CreateParams: Check if the
2305           parent's handle is created before fetching it.
2306
2307 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2308
2309         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
2310           Update calls to PaintEventStart/End to take a Message argument.
2311         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
2312           take a Message argument.
2313         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
2314           Message argument, and handle the case where we don't paint to the window
2315           for which the paint message was generated.
2316
2317 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2318
2319         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
2320           Marshal.GetLastWin32Error. Plug nasty memory leak in
2321           PaintEventStart/End, we were creating a DC we weren't releasing.
2322
2323 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2324
2325         * ListView.cs: Add Groups support in Details view. Also have a small
2326         method to do the layout of the group header. Don't use a separate
2327         method to do the groups calculation in Icons view, since our methods
2328         are now a little simpler.
2329         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
2330         `Bounds'.
2331         * ThemeWin32Classic.cs: Likewise.
2332
2333 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
2334
2335         * Application.cs: Add FilterMessage method and rework our message loop
2336         logic to use it.
2337
2338 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
2339
2340         * Application.cs: Add some methods and stub a few methods that are
2341         pretty much never used.
2342
2343 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
2344
2345         * TreeNode.cs: Add some serialization methods.
2346
2347 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2348
2349         * ListView.cs: In ListViewItemCollection have a 
2350         'is_main_collection' field to not modify ListViewItem.ListView
2351         when using it as ListViewGroup.Items (and not ListView.Items)
2352         and also don't modify selection state (.Net behaviour). 
2353         Instead, set group for items contained in a ListViewGroup.Items collection.
2354         * ListViewItem.cs: Simplify some code in Group setter.
2355         * ListViewGroup.cs: use the new .ctor to pass the current instance
2356         to the ItemsCollection.
2357         * ListViewGroup.cs: Set the ListView property for ListViewGroup
2358         instances when adding/removing. Also make Remove use RemoveAt, which
2359         should perform better.
2360
2361 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2362
2363         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
2364         that crept into the 1.1 profile.
2365
2366 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2367
2368         * ToolBarButton.cs: Implement ImageKey.
2369
2370 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2371
2372         * ToolBar.cs: Implement ScaleControl/ScaleCore.
2373
2374 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2375
2376         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
2377           created, it might have gotten destroyed since we last checked. Fixes
2378           #82405.
2379
2380 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
2381
2382         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
2383         tooltip will hide when mouse is moved off the control.
2384         [Fixes bug #82407]
2385
2386 2007-08-11 Andreia Gaita <avidigal@novell.com>
2387
2388         * WebBrowserBase.cs, WebBrowser.cs: add implementation
2389         using Mono.Mozilla for loading and navigating webcontrol
2390         with xulrunner.
2391         The initial implementation was done on 
2392         /trunk/mozembed/tests/browser , and copied here.
2393
2394 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
2395
2396         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
2397         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
2398
2399 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2400
2401         * DataGridView.cs: Add support for an editing row. Fixes #82226.
2402           RowTemplateFull: throw an exception if a column doesn't have a template.
2403         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
2404           add the row just before it.
2405         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
2406           selected.
2407         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
2408           DataGridView field to be able to reach the grid's editing row.
2409
2410 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2411
2412         * ToolTip.cs: If the control's handle hasn't been created when it has a
2413         tooltip set on it, don't check to see if we need to show the tooltip.  This
2414         check was causing the control's handle to be created.
2415         [Fixes bug #82399]
2416
2417 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2418
2419         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
2420                                         1.1             2.0
2421         Handle Not Created      -1              0
2422         Handle Created          0               0
2423         [Fixes bug #82371]
2424
2425 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2426
2427         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
2428         [Fixes bug #82348]
2429
2430 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2431
2432         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
2433         * ToolTip.cs: Implement some properties and owner draw.
2434
2435 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2436
2437         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
2438           show them again, since setting visibility causes a paint, causing an
2439           endless loop (instead use a temporary and set it all when it's known if
2440           they should be shown or not). Fixes #79265.
2441
2442 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2443
2444         * DataGridView.cs: Only do a full column/row selection if a header was
2445           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
2446           isn't pressed, deselect everything before selecting something.
2447
2448 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2449
2450         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
2451           behaviour according to bug #81075 - they are returned in the order they
2452           are selected. Fix HitTest to check if the point is within any of the
2453           headers. Allow for row/column selection when in ColumnHeader or
2454           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
2455           the row and column to call when their selected state changes, and
2456           updated selected_[rows|columns] whenever SetSelected* is called.
2457         * DataGridViewBand.cs: Initialize isRow correctly. Call
2458           SetSelected[Row|Column]CoreInternal when the selected state changes, and
2459           add a SelectedInternal to avoid StackOverflows.
2460         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
2461           ReadOnly no matter what.
2462         * DataGridViewSelectedColumnCollection.cs,
2463           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
2464           the items in reverse order (just as MS does...)
2465
2466 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2467
2468         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
2469         itself, not part of a mnemonic.  [Fixes bug #82378]
2470
2471 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2472
2473         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
2474         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
2475           the DGV, the column, the row, or the cell itself is readonly.
2476
2477 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2478
2479         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
2480         OSVersion.Platform.
2481         * FileDialog.cs: Same.
2482         * TextRendered.cs: Same.
2483         * FolderBrowserDialog.cs: Same.
2484         * TextBoxBase.cs: Same.
2485         * Application.cs: Same.
2486         * Cursors.cs: Same.
2487         * ThemeClearLooks.cs: Same.
2488
2489 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2490
2491         * XplatUI.cs: Added RunningOnUnix property to be used by controls
2492         instead of duplicating these checks everywhere.
2493         * FileDialog.cs: Use case-insensitive comparison for populating the
2494         DirComboBox when not running on unix. Fixes bug #82385.
2495         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
2496         "Look in".
2497
2498 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2499
2500         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
2501           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
2502           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
2503           cell and column selection with ctrl and shift pressed. Call the correct
2504           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
2505           the corresponding virtual method (PaintBackground to paint background,
2506           etc).
2507         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
2508           either the column, row or the cell itself is selected.
2509         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
2510           OnRowsAdded.
2511         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
2512           here. When the row is selected, don't select all cells. Each cell now
2513           queries the row to see if the row is selected.
2514
2515 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2516
2517         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
2518           SelectionMode.
2519
2520 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2521
2522         * ListView.cs: In ListViewItemsCollection check that owner is
2523         not null before trying to access it (this happens quite often
2524         using Groups). Also don't duplicate calls by calling CollectionChanged
2525         method.
2526
2527 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2528
2529         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
2530         when we are dismissed to clear keyboard mnemonics.
2531         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
2532         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
2533         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
2534         was activated by keyboard or the OS tells us to always draw them.
2535         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
2536         [Fixes bugs #82376, #82377]
2537
2538 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2539
2540         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
2541         shot at having it because Alt was pressed.
2542         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
2543         the first real menu item.
2544         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
2545         a mnemonic if Text is null.
2546         [Fixes bug #82374]
2547
2548 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2549
2550         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
2551         search do check whether the item is already contained in the
2552         collection or not; instead check if the owner of the item is the same
2553         as ours. Also, remove a redundant check in the same method. 
2554
2555 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2556
2557         * Control.cs: Allow the clip region to be set back to null.
2558         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
2559         [Fixes button still showing up in bug #82370 when Show Through is turned off]
2560
2561 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2562
2563         * GridEntry.cs: Add a null check.
2564         * PropertyGrid.cs: When checking for existing grid entries, ignore category
2565           entries. Fixes #82297.
2566
2567 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2568
2569         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
2570         for 2.0.
2571
2572 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2573
2574         * ListBox.cs: Implement ScaleControl.
2575
2576 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2577
2578         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
2579           have a menu strip.
2580         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
2581           parent has a menu strip. Fixes #81689.
2582
2583 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2584
2585         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
2586           moments, so apply some fuzzy logic to determine if the mouse is still
2587           inside a control or not. Fixes #82288 (for the third time).
2588
2589 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2590
2591         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
2592           Don't create the child if it has been disposed already (may happen if
2593           the user closes the form the Load event).
2594
2595 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2596
2597         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
2598           #82288.
2599
2600 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2601
2602         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
2603           might call us after we've been destroyed, in which case our own private
2604           parent field is null. Fixes #82326.
2605
2606 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2607
2608         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
2609         check for setting the dropdown's owner.
2610
2611 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2612
2613         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
2614         before removing system menu items.
2615
2616 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
2617
2618         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
2619         folding.
2620         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
2621         folding.
2622         * ToolStrip.cs: Add a null check to mnemonics.
2623         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
2624         no ConnectedArea.
2625         [Fixes most of bug #81689]
2626
2627 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2628
2629         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
2630
2631 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2632
2633         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
2634
2635 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2636
2637         * DataGridViewCell.cs: EditType: returns
2638           DataGridViewTextBoxEditingControl always.
2639
2640 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
2641
2642         * TextRenderer.cs: Remove the LineLimit string format flag from the
2643         DrawString fallback method so that things like buttons that aren't
2644         tall enough to draw a full line will still draw part of the text.
2645         [Fixes part of bug #82272]
2646
2647 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2648
2649         * DataGridView.cs: Implemented AutoResizeColumn(s).
2650         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
2651           according to the Alignment.
2652         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
2653           Implement alignment and padding when painting.
2654         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
2655           exists.
2656         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
2657           way.
2658         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
2659           a column is added.
2660
2661 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2662
2663         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
2664         which is internal.
2665
2666 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2667
2668         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
2669         hide GetPreferredSize from public API.
2670         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
2671         * ToolStripItem.cs: Stub out drag and drop methods and events.
2672         * ToolStripManager.cs: Stub out Save/LoadSettings.
2673         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
2674         * ToolStripPanel.cs: Fix corcompare error.
2675         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
2676         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
2677         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
2678
2679 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2680
2681         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
2682         bounds height instead of PreferredHeight.  Puts things back the way 
2683         they were for height while still fixing the width.  Fixes broken unit
2684         tests.
2685
2686 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2687
2688         * Binding.cs: Implement 2.0 constructors and add a null check.
2689
2690 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2691
2692         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
2693           and fix row index (off by one).
2694
2695 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2696
2697         * PropertyGridView.cs: Remove debug output.
2698
2699 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2700
2701         * Control.cs: We need to reset the is_created flags when the handle is
2702           destroyed. Fixes #82187.
2703         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
2704           client coordinates if the window doesn't have a parent.
2705           Win32GetParent returns the parent or the owner, and for top-level
2706           windows with no parent (but with an owner) we were calculating the
2707           location from the location of the owner.
2708         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
2709           form has been disposed.
2710         * MdiClient.cs: Add a null-check.
2711
2712 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2713
2714         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
2715         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
2716         so we can provide an implementation that returns the current width
2717         and preferred height.  Allows anchor = right to work with TextBox 2.0.
2718         [Fixes bug #82233]
2719
2720 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2721
2722         * ListView.cs: Add support for navigating items in Groups mode, by
2723         creating a big matrix containing all rows and cols of all groups. When
2724         are in other mode than Details, pressing Up should have a similar
2725         behaviour as that one of Down (moving to the next available column if
2726         current one doesn't have an item in the requested row). Also, don't
2727         proceed to use groups if ShowGroups is false.
2728         * ListViewGroup.cs: Add an internal int field to store the starting
2729         row of the group (used by the big matrix used for navigating the
2730         ListView).
2731         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
2732         false.
2733
2734 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2735
2736         * ToolStripDropDown.cs: When we do Show, start with the 
2737         DefaultDropDownDirection, but if our popup menu is going to off-screen,
2738         modify the direction to keep it on screen.  [Fixes bug #82210]
2739
2740 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
2741
2742         * FileDialog.cs: Accept any FilterIndex value, and store it
2743         unmodified. When FilterIndex is less than 1, or greater than number
2744         of filters, then default to first filter. Only add filter extension to
2745         file if user did not specifiy an extension. When type of dialog is
2746         OpenFileDialog and DefaultExt is set, then only use filter extension
2747         if: CheckFileExists is true and no file wih the default extension
2748         exists, or CheckFileExists is false, and user specified file does not
2749         exist. When CheckFileExists is true, then add first extension of 
2750         selected filter that matches existing file. Perform checks for
2751         existing file, overwrite and create after extension has been added to
2752         file name. When CheckFileExists is true and type is SaveFileDialog,
2753         then only consider first filter extension if DefaultExt is set.
2754         When CheckFileExists is true, then ignore DefaultExt if file with that
2755         extension does not exist. Also perform check for existing file when
2756         type is SaveFileDialog. Changed some field to constants.
2757
2758 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2759
2760         * ListView.cs: Take into account the region used by header
2761         control when doing the vertical scroll (this way we invalidate
2762         the precise area, and don't get any dirty one).
2763
2764 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
2765
2766         * FileDialog.cs: Check for valid filterIndex on button open/save. 
2767         Fixes #82184.
2768
2769 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2770
2771         * ListView.cs: Update some layout calculations in details view
2772         and clean the code in a pair of assignations.
2773
2774 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2775
2776         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
2777         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
2778         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
2779         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
2780
2781 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2782
2783         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
2784         performance of thread-safe Graphic methods.  (Thanks rolf!)
2785
2786 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2787
2788         * ListView.cs: When doing the layout calculations, don't calculate
2789         scroll bars before handle is created. This is unnecessary and also
2790         calculating them before handle creation item causes a number of random
2791         bugs (which begin to appear after Chris' big patch for handle creation
2792         fixes). 
2793
2794 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2795
2796         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
2797         for things that don't have a Graphics object.  Currently, things just use
2798         the static Hwnd.bmp_g which is not thread safe.
2799
2800 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2801
2802         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
2803           dialog. Fixes #82187.
2804
2805 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2806
2807         * DataGridViewElement.cs: Initialize state.
2808         * DataGridView.cs: Forward a few Mouse events to cells. Add
2809           GetRowInternal and GetCellInternal that doesn't unshare rows.
2810           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
2811           don't use the index, but look it up. Add
2812           DataGridViewControlCollection.RemoveInternal to remove controls
2813           that Remove won't remove (scrollbars, edit control).
2814         * DataGridViewColumn.cs: Initialize State correctly.
2815         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
2816           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
2817           implementing this.
2818         * DataGridViewRowCollection.cs: Implemented shared rows.
2819         * DataGridViewRow.cs: Throw exceptions as MS do.
2820         * DataGridViewCell.cs: A few properties are implemented by a
2821           Get<Property> method, so move implementation there and remove the
2822           NIEX in the method. Add a bunch of OnXInternal that DataGridView
2823           calls when necessary.
2824         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
2825           complicates matters.
2826         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
2827           unshare any rows.
2828
2829 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2830
2831         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
2832         the children controls.  Instead, we will just set up the proper docking for the
2833         children controls so we don't have to worry about it.  [Fixes bug #82188]
2834
2835 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2836
2837         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
2838         canceling and correct Before/AfterLabelEdit properties as layed out in bug
2839         81847.  [Fixes bug #81847]
2840
2841 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2842
2843         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
2844         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
2845         an explicit size based on the design-time size of the text.  Since our fonts
2846         may not match this explicit size, we tend to cut off the ends of people's labels.
2847
2848 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
2849
2850         * Menu.cs: Add some missing methods to MenuItemCollection.
2851
2852 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2853
2854         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
2855         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
2856         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
2857         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
2858         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
2859         * DataGridViewElement.cs: State defaults to Visible.
2860         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
2861         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
2862
2863 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2864
2865         * Control.cs: Minor 1.1 corcompare fix.
2866
2867 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2868
2869         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
2870         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
2871
2872 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2873
2874         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
2875           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
2876           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
2877           DataGridViewSelectedColumnCollection.cs,
2878           DataGridViewSelectedRowCollection.cs: Corcompare work.
2879
2880 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2881
2882         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
2883         it is autoset by VS2005 designer and the effect is barely noticeable.
2884
2885 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2886
2887         * TreeView.cs: Implement HitTest.
2888
2889 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2890
2891         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
2892           manually adding and removing the control from the Controls
2893           collecftion.
2894         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
2895           EditingControlInternal property that tracks the editing control.
2896           Always keeping the scrollbars in the Controls collection, as MS
2897           testing confirms is the right behaviour.
2898
2899 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2900
2901         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
2902           according to MSDN and new test.
2903
2904 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2905
2906         * TreeNode.cs: Implement ToolTipText.
2907         * TreeView.cs: Implement tooltips, NodeMouse* events.
2908
2909 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2910
2911         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
2912
2913 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2914
2915         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
2916         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
2917
2918 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
2919
2920         * Control.cs, Form.cs, ContainerControl.cs,
2921         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
2922         for misc properties.
2923
2924 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2925
2926         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
2927         * TreeView.cs: Implement StateImageList.
2928
2929 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2930
2931         * Form.cs: Don't check if the current form is the active form before
2932           activating it. Fixes #81904.
2933
2934 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2935
2936         * Form.cs: Don't check if the current form is the active form before
2937           activating it. Fixes #81904.
2938
2939 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2940
2941         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
2942
2943 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2944
2945         * Form.cs: Don't try to position the form after loading if the form was
2946           disposed. Fixes #81969.
2947
2948 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2949
2950         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
2951           properties. Had to change ToolBar into ToolStrip, which required a
2952           few #ifs.
2953
2954 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2955
2956         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
2957           resized, fixes part of #79829 (vertical lines in toolbar).
2958           PropertyGrid: Refactored Populate* to something that's easier to
2959           follow at least for me, as well as splitting it up into several new
2960           methods, required to update only subitems when something has
2961           changed by a popup editor or listbox. Don't use events to check
2962           when any values are changed, since the events are unreliable (we're
2963           changing the objects the events are registered with, and if the
2964           event handling requires the objects to be immutable (objects stored
2965           in hashtables for instance), the events will never be raised).
2966         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
2967           everytime we change a value, since events are unreliable.
2968           DropDownButtonClicked: For the same reason don't compare objects to
2969           check if it has changed or not, it would require all objects to
2970           derive Equals. Fix dialog location on windows, MS is doing weird
2971           things when creating parented forms.
2972         * GridEntry.cs: Add a SelectedObject setter.
2973
2974 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
2975
2976         * TreeNode.cs: Add some corcompare attributes.
2977         * TreeNodeCollection.cs: Implement 2.0 stuffs.
2978         * TreeView.cs: Implement some 2.0 stuffs.
2979
2980 2007-07-18  Andreia Gaita  <avidigal@novell.com>
2981
2982         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
2983         for moma.
2984
2985 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
2986
2987         * ListBox.cs: Implement custom tab offsets.
2988
2989 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2990
2991         * ToolStripContentPanel.cs: Support System renderer.
2992         * ToolStripControlHost.cs: Set RightToLeft to default to No.
2993
2994 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2995
2996         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
2997
2998 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2999
3000         * CheckBox.cs: Chain TextAlign to base implementation instead of
3001         maintaining another one.
3002
3003 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3004
3005         * ButtonBase.cs: Fix an incorrect string constant.
3006
3007 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3008
3009         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
3010         of creating one for measuring strings.
3011
3012 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3013
3014         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
3015         Implement MaxItemSize.
3016
3017 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
3018
3019         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
3020         for DeviceContext.  Instead, use the static one available in Hwnd.
3021         Informal tests show this saves about 500k on formtest.exe.
3022
3023 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
3024
3025         * ContainerControl.cs: Implement 2.0 AutoScaling.
3026
3027 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3028
3029         * ComboBox.cs: Work around bug #82120 (bug in mcs).
3030
3031 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
3032
3033         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
3034         Darken the focus color.
3035
3036 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
3037
3038         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
3039         for the checkbox.
3040         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
3041         X, Y instead of a rect for drawing text.
3042         - For ControlPaint.DrawCheckBox, center the check a little better when the
3043         checkbox is odd width.  When drawing a flat checkbox, use a white background
3044         when state != inactive.
3045         [Fixes bugs #82097, 82100]
3046
3047 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
3048
3049         * ListControl.cs: When changing CurrencyManager, disconnect event
3050         handlers from previous one. Fixes bug #81771. Code formatting.
3051
3052 2007-07-15  Andreia Gaita <avidigal@novell.com>
3053
3054         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
3055         full preview invalidation from layout invalidation, and only invalidate
3056         the layout when setting zoom or other properties. Invalidation should
3057         always be done even when resetting properties with the same values as
3058         what is there. Fixes #81744 and #79830.
3059
3060 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3061
3062         * ListView.cs: Implement initial support for Groups. Split some of the
3063         LayoutIcons code to render a partial list of the items (needed by
3064         items contained in ListViewGroup instances). Let the
3065         ListViewItemsCollection.ListView property be modifiable (needed when
3066         using Groups, too).
3067         * ListViewGroup.cs: Use a Bounds property rather than a Location
3068         one. Also invalidate the bounds when they get changed.
3069         * ThemeWin32Classic.cs: When drawing items, also draw the group header
3070         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
3071         method as well.
3072
3073 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3074
3075         * ListView.cs: When space gets pressed and CheckBoxes is true, 
3076         don't invoke the Begin and EndUpdate methods. We are generating 
3077         a redraw of the entire control without need to do so.
3078
3079 2007-07-13  William Holmes <billholmes54@gmail.com> 
3080
3081         * Control.cs: Changing logic in FindFlatForward and 
3082           FindFlatBackward to handle multiple Controls with 
3083           the same TabIndex.  
3084           This fixes bug 81687.
3085
3086 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
3087
3088         * OSFeature.cs: Enable IsPresent.
3089
3090 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3091
3092         * Control.cs: Don't do anything in WmShowWindow if the control has been
3093           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
3094           control is created, put on a form, the control is disposed (the
3095           form is never shown), and then we get a MapNotify, triggering a
3096           WM_SHOWWINDOW.
3097         * Form.cs: Exclude the current form when sending Deactivate to all
3098           MdiChildren.
3099         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
3100           there was a race condition because assigning the handle raises
3101           events, we can get more messages, therefore trying to assign the
3102           handle again, which would fail if any of those event handlers
3103           closed/disposed the control.
3104
3105 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3106
3107         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
3108
3109 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
3110
3111         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
3112         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
3113
3114 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3115
3116         * DateTimePicker.cs: If there's no part format specifier, return an
3117           empty string.
3118
3119 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
3120
3121         * FlatButtonAppearance.cs: Throw NotSupportedException for a
3122         Transparent BorderColor.
3123
3124 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3125
3126         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
3127           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
3128           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
3129           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
3130           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
3131           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
3132           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
3133           Remove warnings.
3134         * X11Structs.cs: Remove warnings, add ToString implementations.
3135
3136 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3137
3138         * XplatUIX11.cs: Translate min/max size according to the actual min/max
3139           size, and not the current size. Fixes #81798.
3140
3141 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3142
3143         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
3144           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
3145           to the control yet).
3146
3147 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3148
3149         * PropertyGridTextBox.cs: Add a method that sends any forwarded
3150           mousedowns to the contained textbox.
3151         * X11Structs.cs: More ToString implementation.
3152         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
3153           #81791.
3154
3155 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3156
3157         * PropertyGridView.cs: Add a null-check, fixes a few tests.
3158
3159 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
3160
3161         * TableLayoutPanelCellPosition.cs: TypeConverter.
3162
3163 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3164
3165         [ Fixes #79761]
3166         
3167         * PropertyGridTextBox.cs: Propagate any color changes to all contained
3168           controls.
3169         * PropertyGridView.cs: A few color fixes.
3170
3171 2007-07-10  Jackson Harper  <jackson@ximian.com>
3172
3173         * TextControl.cs: Remove some old unused text formatting stuff.
3174
3175 2007-07-10  Jackson Harper  <jackson@ximian.com>
3176
3177         * TreeView.cs: Update full row select invalidation to match the
3178         newer DrawSelection... method.
3179         - Make sure to invalidate the entire width when selecting a new
3180         node, if we have full row selection enabled.
3181
3182 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3183
3184         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
3185           display of properties again.
3186
3187 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
3188
3189         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
3190         to existing collections.
3191
3192 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3193
3194         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
3195         that changed between 1.1 and 2.0.
3196
3197 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3198
3199         * PowerStatus.cs: Added.  This is just a data class, it is filled
3200         in by SystemInformation.
3201
3202 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3203
3204         * Message.cs: Add op_Equality and op_Inequality.
3205
3206 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3207
3208         * MenuStrip.cs: Finish corcompare work.
3209
3210 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3211
3212         * LinkArea.cs: Add op_Equality and op_Inequality.
3213
3214 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3215
3216         * Application.cs: Add MessageLoopCallback delegate.
3217
3218 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3219
3220         * ListBox.cs: First set of 2.0 stuffs.
3221
3222 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3223
3224         * Control.cs: Make an internal Height property we can override
3225         without messing up the public API.
3226         * ListBox.cs: Override HeightInternal to always return the size
3227         the user set.  [Fixes bug #80466]
3228
3229 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
3230
3231         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
3232         paint cell borders if we haven't calculated where they go yet.
3233         [Fixes bugs #82040 and #82041]
3234
3235 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3236
3237         * ListView.cs: In Details view, set the location of item_control
3238         in the (0,0) position (and the header_control is thus on the
3239         item_control). This way the Bounds of the Items are relative to the
3240         ListView control (before this, they had a Bounds value without the
3241         header_control offset, which wasn't matching .Net). Fixes #82004.
3242
3243 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3244
3245         * ListControl.cs: When DataSource is set to null, pass an empty
3246         array of object to SetItemsCore. This is done to clean the items
3247         in the ListContol children. Fixes #81788.
3248
3249 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3250
3251         * ListControl.cs: Add 2.0 stuffs.
3252
3253 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3254
3255         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
3256         Refresh is overkill for just about every repaint request.
3257
3258 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3259
3260         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
3261         so remove my custom Get method and fix the property getter.
3262
3263 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3264
3265         * Label.cs: DefaultMargin for 2.0.
3266
3267 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3268
3269         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
3270         reported issue where other controls with mnemonics would steal strokes
3271         from a selected ComboBox.
3272
3273 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3274
3275         * ScrollOrientation.cs: Make internal for 1.1.
3276         * ScrollEventArgs.cs: Add 2.0 stuffs.
3277
3278 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
3279
3280         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
3281         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
3282         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
3283
3284 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3285
3286         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
3287
3288 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3289
3290         * ListView.cs: Implement the so-incredibly broken 2.0 
3291         VirtualItemsSelectionRangeChanged event.
3292
3293 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3294
3295         * ListView.cs: When enter is pressed and selection is non empty,
3296         an OnItemActivate event must be fired.
3297
3298 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3299
3300         * ListView.cs: Store the FocusedItem information as an
3301         int instead of a ListViewItem (needed by VirtualMode).
3302         Update the calls to SetFocusedItem to pass an index instead of
3303         an item.
3304         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
3305         the Focused state from the owner ListView. 
3306
3307 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3308
3309         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
3310         property. Also, invalidate previous focused item in the mentioned
3311         property (match .Net).
3312
3313 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3314
3315         * ListView.cs: Implement 2.0 FocusedItem property setter.
3316
3317 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3318
3319         * ListView.cs: Implement 2.0 TopItem property setter.
3320
3321 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
3322
3323         * StatusStrip.cs: The default renderer is System.
3324         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
3325         if the user specifies it.
3326         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
3327         if we are ManagerRenderMode.
3328         * ToolStripMenuItem.cs: Calculate our text color better.
3329         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
3330         from Professional to the base class based off working with the System renderer.
3331         * ToolStripSystemRenderer.cs: Added.
3332
3333 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3334
3335         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
3336
3337 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
3338
3339         * ToolTip.cs: Implement 2.0 Tag property.
3340
3341 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3342
3343         * ListView.cs: Implement 2.0 HitTest methods.
3344
3345 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3346
3347         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
3348         item is under the pointer or not (sugar). Also remove the TODO
3349         regarding to the cursor changes in OneClick activation.
3350         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
3351         the subitems use the parent's HotFont if UseItemStyleForSubItems is
3352         true; otherwise don't show the underline style.
3353
3354 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3355
3356         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
3357         the code to retrieve the item at position only one time. Also
3358         change cursor when Activation is ItemActivation.OneClick as well
3359         as invalidate the item if HotTracking is true (to show/hide the
3360         underline style). Add an internal HotItemIndex property to retrieve
3361         the current hot item's index.
3362         * ListViewItem.cs: Add an internal HotFont property to cache the
3363         font used when HotTracking is true and the pointer moves within the
3364         item's borders.
3365         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
3366         HotFont depending on the hot state of the item.
3367
3368 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3369
3370         * ListView.cs: Implement 2.0 HotTracking property.
3371
3372 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3373
3374         * ToolStripControlHost.cs: If our hosted control never got created,
3375         don't try to dispose it.  [Fixes bug #81909]
3376
3377 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3378
3379         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
3380
3381 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3382
3383         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
3384
3385 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3386
3387         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
3388         Details view.
3389         * DrawListViewColumnHeaderEventArgs.cs:
3390         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
3391         using the DrawText () methods.
3392
3393 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
3394
3395         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
3396         background which got erased in my changes yesterday.
3397
3398 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3399
3400         * ListViewItem.cs: Actually set bounds for subitems in Details view
3401         (2.0 feature).
3402         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
3403         can invoke from the owner draw routines if we need it. Also, add
3404         support for Owner draw in Details view.
3405
3406 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3407
3408         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
3409         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
3410         ShowImageMargin setting, properly align text in a ToolStripLabel
3411         hosted on a ToolStripDropDown.
3412
3413 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3414
3415         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
3416         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
3417
3418 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3419
3420         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
3421
3422 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3423
3424         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
3425         location to match ToolStripMenuItems.
3426
3427 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3428
3429         * DrawListViewColumnHeaderEventArgs.cs:
3430         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
3431         column headers in ListView. 
3432
3433 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3434
3435         * UserControl.cs: Implement AutoSize.
3436
3437 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3438
3439         * DrawListViewItemEventArgs.cs:
3440         * ListView.cs:
3441         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
3442         ListView.
3443
3444 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3445
3446         * ToolStripDropDownItemAccessibleObject.cs: Added.
3447         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
3448         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
3449         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
3450         ToolStripTextBox.cs: corcompare work.
3451
3452 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3453
3454         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
3455         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
3456         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
3457                 corcompare.
3458
3459 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3460
3461         * OSFeature.cs: Add IsPresent.
3462         * PrintPreviewControl.cs: Add RightToLeft.
3463         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
3464         * SplitterPanel.cs: Add AutoSizeMode.
3465
3466 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3467
3468         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
3469         * MdiClient.cs: Add 2.0 ScaleControl.
3470         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
3471         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
3472
3473 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3474
3475         * Form.cs: Implement some scaling methods, stub some RTL methods,
3476         corcompare work.
3477
3478 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3479
3480         * Control.cs: corcompare work.
3481         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
3482
3483 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3484
3485         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
3486         ControlPaint 2.0 stuffs.
3487
3488 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3489
3490         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
3491
3492 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3493
3494         * UpDownBase.cs: Add 2.0 stuffs.
3495
3496 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3497
3498         * NumericUpDown.cs: Add 2.0 stuffs.
3499
3500 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3501
3502         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
3503
3504 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3505
3506         * ErrorProvider.cs: Implement 2.0 stuffs.
3507
3508 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3509
3510         * DomainUpDown.cs: Implement 2.0 stuffs.
3511
3512 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3513
3514         * CheckedListBox.cs: Fix RefreshItems signature.
3515
3516 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3517
3518         * PictureBox.cs: Implement 2.0 stuffs.
3519
3520 2007-06-12  Andreia Gaita  <avidigal@novell.com>
3521         
3522         * TabControl.cs: Check if there are tabpages before checking
3523         the selected index - fix #81802 (font changes raise a ResizeTabs
3524         call on controls.add, which blew up nicely with no tabpages)
3525
3526 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3527
3528         * ListView.cs:
3529         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
3530
3531 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3532
3533         * ListView.cs:
3534         * ListViewItem.cs: In VirtualMode the selection information
3535         resides in the ListView, rather than in the Items. Also, throw
3536         InvalidOperationExceptions when VirtualMode is being used and
3537         CheckedItemCollection is accessed.
3538
3539 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3540
3541         * ComboBox.cs: Add ScaleControl.
3542
3543 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3544
3545         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
3546
3547 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3548
3549         * GroupBox.cs: Add 2.0 stuffs.
3550
3551 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3552
3553         * Panel.cs: Add autosize properties/event.
3554
3555 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3556
3557         * Control.cs:
3558         - When we remove a control, remove it from the collection before performing the layout.
3559         - Setup an internal property for explicit_bounds.
3560         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
3561         - Perform a layout when we set a new AutoSizeMode.
3562
3563 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3564
3565         * ScrollableControl.cs: Add 2.0 stuffs.
3566
3567 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3568
3569         * ScrollBar.cs: Add 2.0 stuffs.
3570
3571 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3572
3573         * Splitter.cs: Add 2.0 stuffs.
3574
3575 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3576
3577         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
3578         to have BindingContext simply use base implementation.
3579
3580 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3581
3582         * ColumnHeader.cs: corcompare fix.
3583
3584 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3585
3586         * Button.cs: corcompare fixes.
3587         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
3588
3589 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3590
3591         * Button.cs: Override GetPreferredSizeCore.
3592         * ButtonBase.cs: PerformLayout after changing properties that can affect
3593         AutoSize.  Simplify some mouse/keyboard code.
3594         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
3595         * MouseEventArgs.cs: Make Location internal for 1.1.
3596         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
3597         * Theme.cs: Add CalculateButtonAutoSize.
3598         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
3599
3600 2007-06-05  Miguel de Icaza  <miguel@novell.com>
3601
3602         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
3603
3604 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3605
3606         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
3607         since we can get different item instances every time we retrieve it.
3608
3609 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3610
3611         * ListView.cs: Work around for #81602, since an unkown an pretty
3612         infrequent condition appears only in some systems (old linux boxes, it
3613         seems).
3614
3615 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3616
3617         * Button.cs: Completely reformat and a little refactor to bring
3618         this closer to Mono circa 2007.
3619
3620 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3621
3622         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
3623         to be ButtonBase.Invalidate.
3624
3625 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3626
3627         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
3628
3629 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3630
3631         * ButtonBase.cs: Completely reformat and a little refactor to bring
3632         this closer to Mono circa 2007.
3633
3634 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
3635
3636         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
3637         values for autosize. Fixes #80137.
3638
3639 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3640
3641         * Control.cs: Don't perform layout when AutoSize changes.
3642         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
3643         directly when autosizing, use SetBounds with BoundsSpecified.None.
3644         Fixes unit tests my last commit broke.
3645
3646 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3647
3648         * Control.cs: Perform layout when AutoSize changes.
3649         * Form.cs: Implement AutoSizing.
3650
3651 2007-06-01  Chris Toshok  <toshok@ximian.com>
3652
3653         * DataGrid.cs: remove the XXX'ed check at the top of
3654         ProcessGridKey.  fixes #80464.
3655
3656 2007-06-01  Chris Toshok  <toshok@ximian.com>
3657
3658         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
3659         adding idempotent (add/remove in Edit()), and also make sure we
3660         don't add it until after we set the text, so it's not tripped in
3661         Edit().  Fixes unit test regression.
3662
3663 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3664
3665         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
3666         change is user explicit, not when the layout engine moves stuff.  Fixes
3667         anchoring to bottom and right.  [Fixes bug #81790]
3668
3669 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3670
3671         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
3672
3673 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3674
3675         * ContainerControl.cs: 
3676         Fire enter event for common ancestor if it is not a ContainerControl.
3677         Send focus to the active_control and not the 'value', the active 
3678         control might have been changed in one of the events fired.     
3679         Definitely fixes #80159.
3680
3681 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3682
3683         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
3684
3685 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3686
3687         * PropertyGrid.cs: Anchor the help description to the bottom of the
3688           help panel and refactor SelectGridItem into a
3689           SelectGridItemInternal that can be set to null (and update it to
3690           clear the help texts when it is set to null). Set root item to null
3691           when there's no SelectedObject. Fixes #80438.
3692         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
3693           when we're recalculating after a resize (only).
3694
3695 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3696
3697         * ListView.cs: Implement 2.0 RedrawItems method.
3698
3699 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3700
3701         * ListControl.cs: Disconnect PositionChanged and ItemChanged
3702         handlers from previous data manager when DataSource is set to
3703         null. Fixes #81771.
3704
3705 2007-05-31  Jackson Harper  <jackson@ximian.com>
3706
3707         * TextBoxBase.cs: These seem to be the correct values.
3708
3709 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
3710
3711         * FileDialog.cs: When close dialog with ok set filterindex using combobox
3712         value. Fixes #81784.
3713
3714 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
3715
3716         * Control.cs: Implement 2.0 scaling methods.
3717
3718 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3719
3720         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
3721           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
3722           corcompare issues.
3723
3724 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3725
3726         * ProgressBar.cs: Implemented missing 2.0 members.
3727
3728 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3729
3730         * Control.cs: Corcompare issues.
3731         * MessageBox.cs: Implemented missing 2.0 functions.
3732
3733 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3734
3735         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
3736           Implemented more 2.0 members.
3737
3738 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3739
3740         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
3741           null (strange, but it seems to happen when running unit tests).
3742
3743 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3744
3745         * ContainerControl.cs: Set active_control even earlier, before 
3746         firing any events, and undo it if validation returns false.
3747
3748 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3749
3750         * ContainerControl.cs: Raise Validation and Enter/Leave events
3751         even if there is no Form and set active_control earlier, just
3752         before firing Enter events (toshok's patches). Fixes #80647.
3753
3754 2007-05-30  Jackson Harper  <jackson@ximian.com>
3755
3756         * TextControl.cs: Redid the pageup/pagedown a little to simplify
3757         things and fix bug #81311.
3758
3759 2007-05-30  Jackson Harper  <jackson@ximian.com>
3760
3761         * X11Dnd.cs: Now that we have our own event loop, we need to
3762         cancel when we get a mouseup but it won't be accepted.
3763
3764 2007-05-30  Chris Toshok  <toshok@ximian.com>
3765
3766         * DataGrid.cs (set_CurrentCell): guard against negative
3767         column/row.
3768
3769         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
3770         array index syntax instead of looping over the property names.
3771
3772         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
3773         and set IsInEditOrNavigateMode to false there.
3774
3775 2007-05-30  Jackson Harper  <jackson@ximian.com>
3776
3777         * TreeView.cs: Make sure we don't get a bad visible order when
3778         setting to the top node.  Fixes some misc crashing in
3779         ControlInspector.
3780
3781 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3782
3783         * UserControl.cs: Add 2.0 AutoSizeMode
3784
3785 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3786
3787         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
3788
3789 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3790
3791         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
3792         lines. Fixes #80285. 
3793
3794 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3795
3796         * DataGridColumnStyle.cs: Add char trimming column header text format. 
3797
3798 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3799
3800         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
3801         Fixes #80147.
3802
3803 2007-05-29  Jackson Harper  <jackson@ximian.com>
3804
3805         * TreeNode.cs: Fix off by one on calculating whether or not a node
3806         is visible.
3807
3808 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
3809
3810         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
3811         * ScrollableControl.cs: Force an UpdateDistances when we move the
3812         scrollbars.
3813         [Fixes bug #80605]
3814
3815 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3816
3817         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
3818         update the page setup screen.
3819
3820 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3821
3822         * PageSetupDialog.cs: Fix landscape mode.
3823
3824 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3825
3826         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
3827         IconSizeHorizontalSpacing.
3828
3829 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3830
3831         * ListView.cs: The declaration of prev_tooltip_item should be inside
3832         a NET_2_0 conditional (avoid a warning).
3833
3834 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3835
3836         * PageSetupDialog.cs: Implement PrintPreview control to display
3837         the preview thumbnail. Change unit conversion to use 
3838         PrinterUnitConvert methods.
3839         
3840         Note: there is a huge bug in ms.net where the default margins are 
3841         interpreted as centimeters (?), when in fact they are set in inches. When 
3842         loading the page setup dialog initially (ms.net), the default margins 
3843         are set to 1 inch, and the dialog shows them with value 10, when in fact 
3844         it should be 25 (properly converted). Our dialog doesn't have this bug.
3845         
3846         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
3847         RectangleF.
3848         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
3849
3850 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3851
3852         * ListView.cs:
3853         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
3854         items.
3855
3856 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3857
3858         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
3859         an IntPtr on csc (it builds fine on mcs, could it be a compiler
3860         bug?), convert the ptr to Int32 first.
3861
3862 2007-05-28  Jackson Harper  <jackson@ximian.com>
3863
3864         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
3865         recieved, we will exit the dnd tracking loop.
3866
3867 2007-05-28  Jackson Harper  <jackson@ximian.com>
3868
3869         * X11Dnd.cs: Keep tracking until the xdnd finished event is
3870         recieved. TODO: I should probably stick a timer on the dropped
3871         event, and finish the drag if the XDND Finished event never shows
3872         (because some apps don't seem to send it).
3873
3874 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
3875
3876         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
3877         #81733.
3878
3879 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3880
3881         * MonthCalendar.cs: Only mark the keypresses we actually handle as
3882           handled.
3883
3884 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3885
3886         * MonthCalendar.cs: Set the size after initializing all the relevant
3887           variables. Fixes #81742.
3888
3889 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3890
3891         * KeyEventArgs.cs: Fix typo.
3892
3893 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
3894
3895         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
3896         to match MS. Fixed MinDate to only accept value less than or equal
3897         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
3898         Removed TODO's that are now verified by unit tests.
3899
3900 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
3901
3902         * TreeNodeCollection.cs: Minor corrections to exceptions to match
3903         MS.
3904
3905 2007-05-25  Jackson Harper  <jackson@ximian.com>
3906
3907         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
3908         it's own message loop.
3909         * XplatUIX11.cs: Remove some of the dnd hooks
3910
3911 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
3912
3913         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
3914         instead of MinimizedWindowSize.
3915
3916 2007-05-25  Jackson Harper  <jackson@ximian.com>
3917
3918         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
3919
3920 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3921
3922         * KeyEventArgs.cs: Added SuppressKeyPress.
3923         * Control.cs: Added support for SuppressKeyPress.
3924
3925 2007-05-24  Andreia Gaita  <avidigal@novell.com>
3926
3927         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
3928         problems with PieChart. suppress_validation should not be a counter,
3929         if there are several BeginInit calls, the first EndInit will 
3930         activate validation. Fix exceptions thrown by set_Value.
3931         * UpDownBase.cs: ValidateText only if it's the user editing it.
3932
3933 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3934
3935         * ListControl.cs: FilterItemOnProperty should return the filtered
3936         item proeprty even if DataSource is null. The same applies for
3937         GetItemText. Fixes #80427.
3938
3939 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3940
3941         * Control.cs: If a control doesn't have a parent when it's Dock is
3942         set, but it has children, it needs to do a layout.  Fixes some nested
3943         controls issues.  [Fixes bug #81199]
3944
3945 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3946
3947         * ComboBox.cs: If there are few items in the drop down list, make it
3948           the exact size the items need, no bigger. Fixes #81612.
3949
3950 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3951
3952         * Application.cs: When we have captured the keyboard for a menu,
3953         check for mouse down events in case we need to close the menu.
3954         * Control.cs, Form.cs: Remove mouse down checks for menus.
3955
3956 2007-05-24  Jackson Harper  <jackson@ximian.com>
3957
3958         * TextControl.cs: Handle tabs in non multiline mode a little
3959         differently.
3960
3961 2007-05-24  Jackson Harper  <jackson@ximian.com>
3962
3963         * TextControl.cs: We need to manually break apart tabbed text and
3964         move the tabs, since the system.drawing tabbing mechanism relies
3965         on tab stops.
3966         * TextBoxBase.cs: Move the caret properly when the user enters a
3967         tab.
3968
3969 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3970
3971         * ContainerControl.cs: Don't check CanSelect before calling
3972         ProcessMnemonic.
3973         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
3974         release a KeyboardActive on click if it's not ours.
3975
3976 2007-05-23  Andreia Gaita  <avidigal@novell.com>
3977
3978         * ColumnHeader.cs: Add TypeConverter
3979
3980 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3981
3982         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
3983
3984 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3985
3986         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
3987
3988 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3989
3990         * LinkLabel.cs: Implement public Padding property.
3991
3992 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3993
3994         * LinkLabel.cs: Implement public FlatStyle.
3995
3996 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
3997
3998         * Control.cs: Apply patch from George to call parent.PerformLayout
3999         when Visible is changed.  [Fixes bugs #81118, 81718]
4000
4001 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4002
4003         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
4004
4005 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4006
4007         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
4008
4009 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4010
4011         * ContextMenu.cs: Implement Collapse.
4012
4013 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
4014
4015         * ToolBarButton.cs: Implement Name.
4016
4017 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
4018
4019         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
4020         use current_item, it prevents some NRE. Fixes #81675.  
4021
4022 2007-05-22  Andreia Gaita  <avidigal@novell.com>
4023
4024         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
4025         without updating the text.
4026
4027 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
4028
4029         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
4030         without calling DeleteObject.  [Should fix bug #81709]
4031
4032 2007-05-22  Jackson Harper  <jackson@ximian.com>
4033
4034         * RichTextBox.cs: Set the line endings correctly, when flushing
4035         RTF text.
4036
4037 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
4038
4039         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
4040          {Width=0,Height=0}.
4041
4042 2007-05-22  Jackson Harper  <jackson@ximian.com>
4043
4044         * TreeView.cs: Setting top with a null node should set to the very
4045         top.
4046
4047 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4048
4049         * Form.cs: ShowDialog: destroy the handle when message loop is
4050           finished, matches MS behaviour. Refactor parts of WmClose into
4051           RaiseCloseEvents, that only raises events if they haven't already
4052           been raised. Fixes #81688 and #81521.
4053         * Application.cs: Don't call close on the form when exiting a modal
4054           loop, it will raise all the (Form)Closed/Closing events again if
4055           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
4056           which doesn'r raise any events it they have been raised before.
4057
4058 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
4059
4060         * Control.cs: Add OnPrint.
4061         * ToolStrip.cs: Add GetChildAtPoint.
4062         * ToolStripContainer.cs: Add OnRightToLeftChanged.
4063         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
4064
4065 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
4066
4067         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
4068
4069 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4070
4071         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
4072           isn't visible anymore. Fixes #81651.
4073
4074 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4075
4076         * Control.cs: WmShowWindow: Update children's z-order after setting
4077           their parent. SetParent may show the window, thereby corrupting
4078           z-order, since the window will be shown on top.
4079         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
4080           multiple (and redundant) WM_SHOWWINDOW messages.
4081         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
4082           event has already been raised.
4083         * Form.cs: Change is_changing_visible_state to a counter, since
4084           SetVisibleCore can be called recursively. CreateHandle: when
4085           creating mdi children, send (De)Activated events.
4086         * MdiClient.cs: Update use of is_changing_visible_state.
4087         * Application.cs: OnThreadException: Surround exception handling with
4088           try/finally to ensure we always reset the error-handling state
4089           before leaving.
4090
4091 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4092
4093         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
4094           (#81704).
4095
4096 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4097
4098         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
4099         SmallIcon views, now that we have a standarized horizontal spacing.
4100
4101         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
4102         4, just like the other views (Match .Net).
4103
4104 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
4105
4106         * Control.cs: Delay calculating anchor distances until we actually layout.
4107         Always query the WM for the actual size and location it put us at instead of
4108         only when we send negative values.
4109         [Fixes bugs #81694, 81695]
4110
4111 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4112
4113         * Application.cs: Avoid a possible stack overflow when trying to exit
4114           the application.
4115
4116 2007-05-19  Marek Safar  <marek.safar@gmail.com>
4117
4118         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
4119         enum value.
4120
4121 2007-05-19  Andreia Gaita  <avidigal@novell.com>
4122
4123         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
4124         * NumericUpDownAcceleration.cs, 
4125           NumericUpDownAccelerationCollection.cs: Added 2.0
4126           implementation.
4127
4128 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
4129
4130         * RichTextBox.cs: Recalculate the document after the ScrollBars
4131         property is changed. Fixes bug #81681.
4132
4133 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
4134
4135         * DataObject.cs: Implement 2.0 methods.
4136
4137 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4138
4139         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
4140         in the center of the checkbox, not in the left-top corner. 
4141         Fixes #80037.
4142
4143 2007-05-18  Jackson Harper  <jackson@ximian.com>
4144
4145         * RichTextBox.cs: Recalculate the document after the scrollbars
4146         property is changed.
4147         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
4148         81486.
4149
4150 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4151
4152         * CreateParams.cs: Make HasWindowManager marginally faster.
4153         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
4154           into Hwnd so that other drivers can use it as well.
4155         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
4156           the default location from Hwnd. Fixes MDI client windows always
4157           showing up at (0,0) in Windows (Win32 won't set the default
4158           location since the window styles aren't correct).
4159
4160 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
4161
4162         * TreeView.cs: Modified DoubleBuffered to just use the base
4163         implementation.
4164
4165 2007-05-18  Jackson Harper  <jackson@ximian.com>
4166
4167         * TreeView.cs: Set the top node to the last child node when
4168         expanding all
4169         - When we get focus, if there is no selected node, use the top
4170         node.
4171
4172 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
4173
4174         * KeysConverter.cs: Add CanConvertTo.
4175         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
4176         * LinkConverter.cs: Added.
4177
4178 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4179
4180         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
4181         it prevents error when file dont have write access. Fixes #81669 and #81667.  
4182
4183 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4184
4185         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
4186         button text. Fixes #79640.  
4187
4188 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4189
4190         * Control.cs: According to MSDN controls created in the designer theres 
4191         keyboard accelerators visible by default. So included check for design
4192         in ShowKeyboardCuesInternal.  
4193
4194 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4195
4196         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
4197         text. Fixes #81621.  
4198
4199 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4200
4201         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
4202         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
4203
4204 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4205
4206         * Control.cs: Finish implementation of UI State using WmChangeUIState
4207         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
4208         in some controls to check for show_keyboard_cues to draw accell keys "_".  
4209
4210 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4211
4212         * ListBox.cs: When calculating the horizontal scrollbar
4213         in single column mode, don't use values less than 0 for
4214         Maximum. Fixes #81474.
4215
4216 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4217
4218         * ListBox.cs: Throw the some missing exceptions in
4219         ListBox.ObjectCollection methods.
4220
4221 2007-05-17  Jackson Harper  <jackson@ximian.com>
4222
4223         * TextBoxBase.cs: Recalculate the document when the word wrap
4224         value has changed. This fixes 81488.
4225
4226 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4227
4228         * Clipboard.cs: Implement missing GetText overload.
4229
4230 2007-05-17  Chris Toshok  <toshok@ximian.com>
4231
4232         * Control.cs (CheckDataBindings): remove the binding_context arg
4233         to binding.Check.
4234
4235         * CurrencyManager.cs (OnItemChanged): fix this now that
4236         BindingManagerBase is fixed. also remove the comment telling where
4237         the fix should go.  We set transfering_data to true/false around
4238         the call to PushData to keep UpdateIsBinding from being called.
4239         (ListChangedHandler): remove the extra OnMetaDataChanged call for
4240         PropertyDescriptorAdded in the 1.1 case.  The extra call is
4241         actually generated by System.Data generating 2 metadata changed
4242         events of its own per column add.  The fix should go there.  Add a
4243         comment to that affect in our test's Assert.Ignore.
4244
4245         * BindingManagerBase.cs: Rework PullData and PushData slightly.
4246         we keep a boolean flag (transfering_data) that keeps us from
4247         calling UpdateIsBinding multiple times if we re-enter either of
4248         them.
4249
4250         * ControlBindingsCollection.cs (AddCore): remove the
4251         binding_context arg to binding.Check.
4252
4253         * Binding.cs (IsBinding): don't check if we're binding here, just
4254         return our cached value.  we update it in UpdateIsBinding.
4255         (Check): don't take the binding_context arg, we'll just use our
4256         control's.  Also, for some reason MS doesn't use the data member
4257         field when getting the bindingmanager for this binding.  it just
4258         uses the datasource.  Make this method callable multiple times,
4259         and only do the is_null_desc stuff if manager.Position != -1 (so
4260         we don't get an exception accessing manager.Current).
4261         (UpdateIsBinding): move the code from IsBinding here.
4262         (PositionChangedHandler): call Check here to we can initialize
4263         things that require a non- -1 position.
4264
4265 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4266
4267         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
4268         control.
4269
4270 2007-05-17  Andreia Gaita  <avidigal@novell.com>
4271
4272         * TabControl.cs: Add 2.0 methods and events, including
4273         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
4274         * TabPage.cs: Add 2.0 methods
4275
4276 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4277
4278         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
4279         keyboard_cues is properly handled by message method.  
4280
4281 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4282
4283         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
4284
4285 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4286
4287         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
4288
4289 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
4290
4291         * Control.cs: 
4292         - WmUpdateUIState added to handle state changes, it make call to
4293         OnChangeUICues event.
4294         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
4295         SystemInformation.
4296
4297 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
4298
4299         * ImageKeyConverter.cs: Added.
4300         * TreeViewImageKeyConverter.cs: Added.
4301
4302 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4303         
4304         * ToolTips.cs: Update Text if SetToolTip is called for a control
4305         already showing the tooltip, as well as restarting its timer; show
4306         tooltip if we are inside the control bounds by the time of calling
4307         SetToolTip. Inside ShowTooltip remove the check to not show the 
4308         tooltip again for the active control (it is allowed by .Net to 
4309         show the tooltip on the same control multiple times).
4310
4311 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4312
4313         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
4314
4315 2007-05-16  Andreia Gaita <avidigal@novell.com> 
4316
4317         * ContainerControl.cs: only process tab key if there are no 
4318         modifier keys present, otherwise the control does the 
4319         tab processing, if it needs to. Fixes #81622
4320         * TabControl.cs: Fixes calculation for which tab to select on
4321         shift+ctrl+tab.
4322
4323 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4324
4325         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
4326
4327 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
4328
4329         * Control.cs: Make IsInputCharInternal to allow controls to
4330         override it and still match MS API.
4331         * TextBoxBase.cs: Override IsInputCharInternal and always
4332         return true.
4333         [Fixes bug #81616]
4334
4335 2007-05-15  Jackson Harper  <jackson@ximian.com>
4336
4337         * TextBox.cs: Disable some of the menu options when using a
4338         readonly textbox.
4339
4340 2007-05-15  Jackson Harper  <jackson@ximian.com>
4341
4342         * TextBox.cs:
4343         * TextBoxBase.cs:
4344         * RichTextBox.cs: Some new 2.0 methods
4345
4346 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
4347
4348         * FileDialog.cs: On 1.0 profile, do not support multidotted 
4349         extensions.
4350
4351 2007-05-14  Jackson Harper  <jackson@ximian.com>
4352
4353         * TextBoxBase.cs: Implement some of the new 2.0 methods.
4354         * RichTextBox.cs: We need to override these methods on 2.0.
4355         * MaskedTextBox.cs: These are implemented now
4356         * TextControl.cs: This was off by one.
4357
4358 2007-05-14  Jackson Harper  <jackson@ximian.com>
4359
4360         * TextControl.cs: Because the line endings are including in the
4361         text, we don't need to add them in anymore.
4362
4363 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4364
4365         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
4366         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
4367
4368 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4369
4370         * ToolBar.cs: Adjust size to default size when button theres no text and
4371         image, it fixes remaining issues from #81524.
4372
4373 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4374
4375         * ToolBar.cs: 
4376         - When not flat call redraw to recalculate sizes on creare handle to match
4377         win32 behavior.
4378         - Revert 77220 because it causes some regressions in toobar
4379         button.
4380
4381 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4382
4383         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
4384           now actually enters a usable state.
4385
4386 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4387
4388         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
4389         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
4390         3 buttons.
4391
4392 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4393
4394         * ToolBar.cs: Save default_size on create handle to use later for buttons
4395         without text, needed to mimic win32 behavior.
4396
4397 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4398
4399         * ToolBar.cs: Fix button layour to best fit width or height according to
4400         vertical or not. Fixes #81524.
4401
4402 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4403
4404         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
4405         toolbar size info because different styles theres different sizes.
4406         Fixes #81522.
4407
4408 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4409
4410         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
4411         if we are using checkboxes, checked is true, and we have less
4412         than two images in StateImageList; for the 1.1 in the same scenario
4413         draw the first image if we have at least one image in StateImageList.
4414         Fixes part of #81191.
4415
4416 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4417
4418         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
4419         the owner's Items collection on merge.
4420
4421 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4422
4423         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
4424         * ToolStripItemCollection.cs: Lots of fixes to when events get called
4425         and parent/owner gets changed based on gert's unit tests.
4426
4427 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4428
4429         * MaskedTextBox.cs: Started implementing parts of it.
4430
4431 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4432
4433         * ListView.cs: When clicking the checkbox on the items
4434         take into account the double clicks even if we have only
4435         one image in StateImageList (only for 1.0/1.1). Also 
4436         generate an extra change of checked state when we receive
4437         the second click on checkbox (match .Net behaviour). 
4438         Fixes part of #81191.
4439
4440 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4441
4442         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
4443
4444 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4445
4446         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
4447         even if OnLoad is overriden and base.OnLoad is not called.
4448         [Fixes bug #81582]
4449
4450 2007-05-10  Andreia Gaita  <avidigal@novell.com>
4451
4452         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
4453         shame. (I blame my ever-persisting and annoying cold)
4454
4455 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4456
4457         * ListView.cs: Don't eat navigation keys.  Let them flow through to
4458         KeyDown/KeyPress routines.  [Fixes bug #81569]
4459
4460 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4461
4462         * ListView.cs: When handling keys for selecting the item based off
4463         keyboard input, do not consider keys pressed with Alt or Control.  Also,
4464         correctly handle keys when the Shift key is down. [Fixes bug #81578]
4465
4466 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4467
4468         * Control.cs: When using UseWaitCursor, we have to store the requested
4469         Cursor to use when UseWaitCursor is turned off.
4470
4471 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4472
4473         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
4474         to false.
4475         * Application.cs: Use PreProcessControlMessage instead of
4476         PreProcessMessage.
4477         * PreProcessControlMessage.cs: Make internal for 1.1.
4478
4479 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4480
4481         * Control.cs: Add InternalContains focus property, which hast the same
4482         functionality of ContainsFocus, but also including implicit controls.
4483         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
4484         since we need to know if the focus is contained in our implicit
4485         ItemControl when calculating Layout. Fixes part of #80888.
4486
4487 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
4488
4489         * ToolTip.cs: Remove center form string alignment as it must be align to
4490         left.
4491
4492 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
4493
4494         * ToolStripItemCollection.cs: Set the new item's parent and owner
4495         in Insert like we do in Add.  [Fixes bug #81568]
4496
4497 2007-05-08  Jackson Harper  <jackson@ximian.com>
4498
4499         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
4500         - Off by one error in SetTop
4501         - Disable DoubeBuffering
4502         
4503 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4504
4505         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
4506           control as much as necessary in order to make it entirely visible,
4507           instead of centering the control in the container (matches MS
4508           behaviour). CalculateCanvasSize: we need to take the current scroll
4509           position into account when calculating the maximum canvas,
4510           otherwise the following scenario will fail: resize so that the
4511           scrollbars appear, use the scrollbars to scroll, resize again
4512           smaller, and now the canvas size is too small. Recalculate: when
4513           showing scrollbars make sure they start off at 0, and try to scroll
4514           the active control into view. Fixes #79540. HandleScrollBar: don't
4515           scroll anywhere if the scrollbar isn't visible.
4516
4517 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4518
4519         * ListView.cs: When focus changed, call Layout/Invalidate
4520         in the focused item to update the selected state (should show
4521         entire label when ListView is focused, and a part of it if is not).
4522         * ListViewItem.cs: When doing layout for LargeIcon, take into account
4523         for displaying the entire label not only the Focused state of the
4524         item, but also the Focused state of the ListView (match .Net
4525         behaviour).
4526
4527 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4528
4529         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
4530         Implement UseWaitCursor. 
4531
4532 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4533         Applying contributed patch from Sergey Volk.
4534
4535         * Clipboard.cs: Implement SetDataObject retry logic and new overload
4536         of SetDataObject.
4537         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
4538
4539 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4540
4541         * Control.cs: Implement DrawToBitmap.
4542
4543 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4544         Applying contributed patch from Stefan Noack.
4545         
4546         * Control.cs: Add [Get|Set]AutoSizeMode.
4547
4548 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4549
4550         * MdiClient.cs: Unmerge menus when the last child is closed.
4551
4552 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4553
4554         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
4555         * ToolStripManager.cs: Call Merge on DropDowns.
4556         [Fixes bug #81477]
4557
4558 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4559
4560         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
4561           uints.
4562         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
4563           visibility. We can't create forms visible, since we have to set the
4564           owner before making the form visible (otherwise Win32 will do
4565           strange things with task bar icons). The problem is that we set the
4566           internal is_visible to true before creating the control, so
4567           is_changing_visible_state is the only way of determining if we're
4568           in the process of creating the form due to setting Visible=true -
4569           this works because SetVisibleCore explicitly makes the form
4570           visibile afterwards anyways. Fixes #80775.
4571
4572 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4573
4574         * ThemeWin32Classic.cs: When drawing ListViewItems,
4575         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
4576         or LargeIcon _and_ item is not focused (match .Net behaviour).
4577
4578 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4579
4580         * Control.cs, Form.cs: Fix some obsolete method warnings.
4581
4582 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4583
4584         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
4585         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
4586
4587 2007-05-04  Andreia Gaita  <avidigal@novell.com>
4588
4589         * ContainerControl.cs: Fix active_control attribution when going
4590         up the parent chain so that the first parent container gets the control
4591         and the rest of the parent containers get the child containers (skips
4592         non-containers). Fixes #80729
4593
4594 2007-05-04  Randolph Chung  <tausq@debian.org>
4595
4596         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
4597         [Fixes bug #81499]
4598
4599 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4600
4601         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
4602           takes a size parameter, since the CreateParam's size isn't true for
4603           minimized forms. Fixes #81518,
4604
4605 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4606
4607         * Form.cs: Add OnDeactivateInternal.
4608         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
4609
4610 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4611
4612         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
4613           accessing the parent. Fixes #81508.
4614
4615 2007-05-03  Chris Toshok  <toshok@ximian.com>
4616
4617         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
4618         2.0 block, pass listposition + 1 to ChangeRecordState when a row
4619         was added before the current listposition.  Fixes the
4620         TestInsertRowBeforeCurrent unit test.
4621
4622 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
4623
4624         * Application.cs: Add RaiseIdle.
4625         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4626         XplatUIX11.cs: Implement RaiseIdle.
4627
4628 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
4629         corcompare work: N - Z
4630         * NotifyIcon.cs
4631         * ProgressBar.cs
4632         * RadionButton.cs
4633         * ScrollableControl.cs
4634         * SplitContainer.cs
4635         * SplitterPanel.cs
4636         * StatusBar.cs
4637         * SystemInformation.cs
4638         * TabControl.cs
4639         * TableLayoutControlCollection.cs
4640         * TableLayoutPanel.cs
4641         * TabPage.cs
4642         * ToolBar.cs
4643         * ToolBarButton.cs
4644         * ToolStrip.cs
4645         * ToolStripComboBox.cs
4646         * ToolStripContainer.cs
4647         * ToolStripContentPanel.cs
4648         * ToolStripDropDown.cs
4649         * ToolStripDropDownItem.cs
4650         * ToolStripDropDownMenu.cs
4651         * ToolStripItem.cs
4652         * ToolStripItemCollection.cs
4653         * ToolStripMenuItem.cs
4654         * ToolStripPanel.cs
4655         * ToolStripSplitButton.cs
4656         * ToolTip.cs
4657         * TreeNode.cs
4658         * TreeNodeCollection.cs
4659         * TreeNodeMouseHoverEventArgs.cs
4660         * TreeView.cs
4661
4662 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
4663
4664         * ContextMenu.cs: Add public method Show with alignment property to 2.0
4665         stuff. Thanks aatdark for the patch. 
4666
4667 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4668
4669         * GridItem.cs: Implement 2.0 Tag property.
4670
4671 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
4672
4673         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
4674         count instead of Nodes.Length.  [Fixes bug #81448]
4675
4676 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4677
4678         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
4679         [Fixes bug #81506]
4680
4681 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4682         corcompare work: A - M
4683         * BindingNavigator.cs
4684         * Button.cs
4685         * ButtonBase.cs
4686         * CheckBox.cs
4687         * Control.cs
4688         * FlowLayoutPanel.cs
4689         * Form.cs
4690         * Label.cs
4691         * LinkLabel.cs
4692         * ListView.cs
4693
4694 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4695
4696         * Application.cs: Give toolstrips a chance to process mnemonics.
4697         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
4698         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
4699         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
4700
4701 2007-05-01  Jackson Harper  <jackson@ximian.com>
4702
4703         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
4704         wider area too.
4705         - Don't set the BoundsSpecified
4706
4707 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4708
4709         * Application.cs: When using the toolstrip shortcut mechanism, allow the
4710         message to pass through to a regular control if it hosted by a toolstrip.
4711         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
4712         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
4713
4714 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4715
4716         * TextRenderer.cs: Use the flags argument when using the MeasureString
4717         fallback algorithm.
4718
4719 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4720
4721         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
4722         the MDI menu item.  [Fixes bug #81483]
4723
4724 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
4725
4726         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
4727         string. When setting Name to null, use zero-length string instead.
4728
4729 2007-04-29  Andreia Gaita  <avidigal@novell.com>
4730
4731         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
4732         DeselectTab). Implement missing 2.0 TabPageCollection methods
4733         (Add, ContainsKey, RemoveByKey, IndexOfKey)
4734
4735 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
4736
4737         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
4738
4739 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
4740
4741         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
4742         Fixes bug #81479. Include details of exception when LoadFile fails.
4743
4744 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
4745
4746         * DrawListViewSubItemEventArgs.cs: Added missing setter
4747
4748 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4749
4750         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
4751         Hide methods (not complete). Implement missing 2.0 OnPopup event.
4752
4753 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4754
4755         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
4756         removed in ly last commit (it was breaking the Label edit feature).
4757
4758         * ThemeWin32Classic.cs: When drawing a ListViewItem use
4759         StringAlignment.Near for LineAlignment (match .Net).
4760
4761 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4762
4763         * TabControl.cs: Change SetTab so it adds the tabpage to the list
4764         of controls if it isn't already there - was blowing up when doing
4765         tabcontrol.TabPages[i]=new TabPage(). 
4766         SetTab now does a replace by removing the page at the index. 
4767         Add a new InsertTab method that inserts a page in a given index 
4768         instead of replacing. 
4769         Implements TabPageCollection.Insert(int, TabPage).
4770
4771 2007-04-27  Chris Toshok  <toshok@ximian.com>
4772
4773         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
4774         internal handler that can be invoked from our subclasses.)  Also,
4775         add a comment to PushData about how we need to fix it.
4776
4777         * CurrencyManager.cs: tons of changes here.  trying to get things
4778         matching the behavior of .net wrt event orders (ItemChanged,
4779         CurrentChanged, PositionChanged.)  I've implemented a private .net
4780         symbol (ChangeRecordState) that appears in stack traces because
4781         it's actually easier to do this than to effective inline all its
4782         various behaviors at every call site.
4783
4784         * RelatedPropertyManager.cs: guard against an exception here by
4785         not using parent.Current if the position is set to -1 (if the
4786         parent datasource is cleared, for instance).
4787
4788         * Binding.cs: don't parse data in PushData (this might be wrong,
4789         but it jives with MS's behavior.)  Also, don't call PushData when
4790         we get a CurrentChanged event.
4791
4792 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4793
4794         * WebBrowser.cs,
4795           WebBrowserBase.cs,
4796           WebBrowserSiteBase.cs,
4797           HtmlDocument.cs: Added stubbed out classes, no real implementations 
4798           yet.
4799
4800 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4801
4802         * MainMenu.cs: In draw method without parameters call draw method with 
4803         PaintEvent, another one (just rect) adjust rectangle and we dont need it
4804         as Rect property is already adjusted. Fixes #80694.
4805
4806 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
4807
4808         * Application.cs: Need to handle keyboard menu deselection here.
4809         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
4810         navigation, allowing keyboard to work on X11.
4811         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
4812
4813 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4814
4815         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
4816         menu bar. It fixes some drawing issues in menu bar.
4817
4818 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4819
4820         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
4821         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
4822         when <alt> key is pressed.
4823
4824 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4825
4826         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
4827         example just set visible to false and make this prevent from other problems.
4828         In SystrayAdd always remove pending expose. Fixes #81072.
4829
4830 2007-04-26  Marek Safar  <marek.safar@gmail.com>
4831
4832         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
4833         value is set.
4834
4835 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4836
4837         * ListView.cs: Added three missing 2.0 events and corresponding
4838         EventHandlers. Added the OwnerDraw property.
4839         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
4840
4841 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4842
4843         * DrawListViewItemEventArgs.cs
4844         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
4845
4846 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4847
4848         * TextControl.cs: Fixed typo in constructor
4849
4850 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
4851
4852         * Application.cs: Create a shortcut path so that currently selected
4853         MenuStrips can intercept keyboard events without having focus.
4854         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
4855         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
4856         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
4857         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
4858         generate WM_SYSCOMMAND message in X11 for other platforms.
4859         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
4860         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
4861         * ToolStripSplitButton.cs: Add DefaultItem property.
4862         
4863 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4864
4865         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
4866         fixes some menu draw problem on Windows with border diferent from default
4867         it also fixes #81403.
4868
4869 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4870
4871         * Form.cs: Refactor WndProc into separate methods, just like Control is
4872           doing it.
4873
4874 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4875
4876         * Control.cs: set_Text: move the call to the driver into a seperate
4877           virtual method so that Form can override it.
4878         * MaskedTextBox.cs: Corcompare fixes.
4879         * Form.cs: Override UpdateWindowText and only update the styles if the
4880           form has been shown (fixes #81405).
4881
4882 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4883
4884         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
4885         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
4886         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
4887         the form lost focus or another control was clicked.
4888
4889 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
4890
4891         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
4892         fixed.
4893
4894 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4895
4896         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
4897           DrawListViewItemEventHandler.cs,
4898           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
4899           Added.
4900         * X11Structs.cs: More ToString implementation.
4901
4902 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4903
4904         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
4905         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
4906
4907 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4908
4909         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
4910           handle.
4911         * FormCollection.cs: Don't add a form if it's already in the
4912           collection.
4913         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
4914           according to behaviour and MSDN. The ownerWin32 is the active
4915           window at the moment when we call ShowDialog, not the context's
4916           main form (the context's main form may open another form that opens
4917           a form with ShowDialog, the win32 owner is the second form). Add
4918           and remove forms to the Application.OpenForms in other places to
4919           better match MS behaviour. Add an IsActive property that raises
4920           On(de)Activated only if the active state has changed (we were
4921           raising OnDeactivated before OnActivated while creating forms).
4922         * Application.cs: Refactor Enabling/Disabling of windows for modal
4923           dialog loops out to separate methods, and restore the thread
4924           context when we quit the method. Fixes #81407.
4925
4926 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4927
4928         * ListView.cs: In ItemControl.HandleClicks, also fire 
4929         2.0 MouseClick or MouseDoubleClick events on the parent,
4930         not only the Click/DoubleClick events.
4931
4932 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4933
4934         * TableLayoutSettings.cs: 
4935         - Added a GetControls method and a support structure to help the 
4936         TypeConverter to enumerate the controls for     serialization. 
4937         - Added a new serialization constructor. 
4938         - Added a isSerialized flag initialized to true on the 
4939         serialization constructor so that the TableLayoutPanel.LayoutSettings 
4940         setter does not throw the designed NotSupportedOperation exception
4941         when the object is built through deserialization.
4942         - Implemented GetObjectData
4943         
4944         * TableLayoutPanel.cs: Added check on LayoutSettings.
4945
4946 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4947
4948         * ListView.cs: Report Click and DoubleClick events to the parent
4949         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
4950         from breaking the click count state when using dialog forms (Control
4951         reports the clicks in a similar fashion). In the previous behaviour
4952         the last WM_LBUTTONUP message in a  double click was sent to the
4953         ListView's form, instead of the ListView, which was breaking the click
4954         count for it. Fixes #80387.
4955
4956 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
4957
4958         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
4959
4960 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
4961
4962         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
4963         us from created dropdowns for menu items that do not have subitems.
4964         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
4965         Check HasDropDownItems before calling DropDown so a dropdown will not be
4966         created if it isn't needed.
4967
4968 2007-04-24  Jackson Harper  <jackson@ximian.com>
4969
4970         * TreeView.cs: Set the first node to the selected node when we get
4971         focus if there is no selected node.
4972
4973 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4974
4975         * MimeIcon.cs: remove using blocks so that image streams are
4976         not disposed of. Fixes #80151
4977
4978 2007-04-24  Jackson Harper  <jackson@ximian.com>
4979
4980         * TextBoxBase.cs: Fixup the height of textboxes when the control
4981         is created.
4982
4983 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
4984
4985         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
4986         for each ToolStripItem when the parent's RightToLeftChanged is called.
4987
4988 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4989
4990         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
4991           Fixes #80163.
4992         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
4993           property, so that the setter can be overriden too.
4994         * TextBox.cs: Change GetContextMenuInternal() to use
4995           ContextMenuInternal.
4996
4997 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4998
4999         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
5000           #81406.
5001
5002 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5003
5004         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
5005           #81406.
5006
5007 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5008
5009         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
5010           avoid duplicate work. Mostily skeleton code, it's not working at
5011           all yet.
5012
5013 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
5014
5015         * NotifyIcon.cs : stub for MouseClick event
5016         * Application.cs: stub for SetUnhandledExceptionMode
5017
5018 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
5019
5020         * BindingNavigator.cs : Initial (partial) implementation
5021
5022 2007-04-23  Jackson Harper  <jackson@ximian.com>
5023
5024         * TreeView.cs: Do not create the treeview's handle when setting
5025         the scroll position.
5026         - ExpandAll needs to compute the scrollbars so it knows which
5027         position to set the bar too.
5028         * TreeNode.cs: 
5029         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
5030
5031 2007-04-23  Jackson Harper  <jackson@ximian.com>
5032
5033         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
5034         key. Fixes #81408.
5035
5036 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
5037
5038         * ToolStripItem.cs: Make GetImageSize internal.
5039         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
5040         need to draw an item.  Fixes a reported issue where images on menus
5041         that were not 16x16 were drawing incorrectly.
5042
5043 2007-04-21  Miguel de Icaza  <miguel@novell.com>
5044
5045         * Padding.cs: Use the converter, fixes the resgen2 issue with
5046         XMLNotePad. 
5047
5048 2007-04-21  Jackson Harper  <jackson@ximian.com>
5049
5050         * TreeView.cs: Dont try to unhighlight the selected node if there
5051         isn't a selected node.
5052
5053 2007-04-21  Jackson Harper  <jackson@ximian.com>
5054
5055         * UpDownBase.cs:
5056         * TextBoxBase.cs:
5057         * ListView.cs:
5058         * ListBox.cs:
5059         * TreeView.cs: Use the InternalBorderStyle property to set the
5060         initial border style, this forces the client rectangle to be sized
5061         correctly.
5062
5063 2007-04-20  Jackson Harper  <jackson@ximian.com>
5064
5065         * TreeView.cs: Simplify scrolling to the last node after expanding
5066         all.
5067         - Fix some off by ones with setting the bottom.
5068
5069 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
5070
5071         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
5072         that.  We were incorrectly doing it the other way around.  Also,
5073         update ClientSize if we change the BorderStyle before the control
5074         is created.
5075
5076 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
5077
5078         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
5079         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
5080         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
5081         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
5082         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
5083         Caption to CaptionHeight.
5084         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
5085         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
5086         and FixedFrameBorderSize to return value from current XplatUI driver.
5087         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
5088         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
5089         and FixedFrameBorderSize using win32 API. Renamed Caption to
5090         CaptionHeight.
5091         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
5092         * SystemInformation.cs: Fixed typo in BorderSize.
5093
5094 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
5095
5096         * XplatUI.cs: Added MenuAccessKeysUnderlined.
5097         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
5098         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
5099         returning false.
5100         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
5101         value from XplatUI driver.
5102         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
5103         SystemParametersInfo.
5104         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
5105         override.
5106         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
5107         returning false.
5108
5109 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5110
5111         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
5112
5113 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5114
5115         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
5116
5117 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
5118
5119         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
5120         MenuStrips that contain ToolStripSeparators.
5121
5122 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5123
5124         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
5125           DefineStdCursorBitmap.
5126         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
5127           has been created off a standard cursor. This is used to get a
5128           bitmap of the standard cursor when Draw or DrawStretched is called
5129           in order to draw the cursor.
5130         * X11Structs.cs: Added XcursorImage and XcursorImages.
5131         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
5132           DefineStdCursorBitmap.
5133         * Cursors.cs: Update all relevant creations of Cursor to use the new
5134           internal constructor.
5135
5136 2007-04-19  Jackson Harper  <jackson@ximian.com>
5137
5138         * TextBox.cs: Move the has_been_focused into the base control, so
5139         some of the text adding methods can manipulate it (probably time
5140         for a better name for this flag too).
5141         - Call a new version of selectall that doesn't scroll
5142         * TextBoxBase.cs: When we append text, if the document is empty,
5143         don't scroll.  If the document has text already, we scroll to the
5144         end of the appended text.
5145         - When the text is changed, we reset the has_been_focused, so the
5146         next time the control gets focused, all the text is selected.
5147
5148 2007-04-19  Jackson Harper  <jackson@ximian.com>
5149
5150         * TextControl.cs: Move the margins to the document, add a method
5151         so the margin sizes can be updated.
5152         * TextBoxBase.cs: When the border style is changed, update the
5153         border sizes.
5154
5155 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
5156
5157         * Control.cs: Respect DefaultPadding.
5158         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
5159         padding into account.
5160         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
5161
5162 2007-04-19  Jackson Harper  <jackson@ximian.com>
5163
5164         * TextControl.cs: Oops, we need to use the ClientRect not the
5165         bounds here.
5166
5167 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5168
5169         * ListView.cs: In ItemControl.ItemsMouseDown, take into
5170         account the double clicks when CheckBoxes are used and
5171         the pointer is inside the checkbox. Fixes part of #81191.
5172
5173 2007-04-18  Jackson Harper  <jackson@ximian.com>
5174
5175         * TextControl.cs: Pressing the end key shouldn't move the caret
5176         past the line ending.
5177         * TextBoxBase.cs: We can still delete if we are in the line
5178         ending and the combine will just kill the existing line ending.
5179
5180 2007-04-18  Jackson Harper  <jackson@ximian.com>
5181
5182         * TextControl.cs: We can't move lines, then invalidate their
5183         bounds, we need to get the old bounds and combine that with the
5184         new bounds.
5185         * TextBoxBase.cs: Before combining two lines for a delete, we need
5186         to invalidate the area of the old line, since that will be moved
5187         in the combine operation.
5188
5189 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
5190
5191         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
5192         with transparent background. Fixes #80482.
5193
5194 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
5195
5196         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
5197         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
5198         [Fixes bug #81391]
5199
5200 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5201
5202         * CreateParams.cs: Add a couple of helper methods and do a less string
5203           concatenation in ToString.
5204         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
5205           overload that takes a Control parameter, since this method may be
5206           called before a control is assigned to the hwnd (from
5207           CreateWindow), and update CreateWindow to use the new overload. In
5208           GetMenuOrigin subtract the title bar from the y position if the
5209           form has a window manager (since we're painting it and not X).
5210         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
5211           CreateParams to calculate the origin (since border sizes may vary).
5212           In ScreenToMenu only subtract the title height if we actually have
5213           a title.
5214         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
5215           mdi children never have menus of themselves.
5216         * InternalWindowManager.cs: Implement menu handling like form does.
5217           Added GetMenuOrigin to calculate the menu origin, can't use the
5218           CreateParams from the form like normally since it's lying.
5219         * Hwnd.cs: Implement GetBorderSize better (in the sense more
5220           windows-like) and add Inflate and comparison operators to the
5221           Borders type. When calculating MenuOrigin and it's a form with a
5222           window manager, use the window manager to calculate it.
5223
5224 2007-04-17  Chris Toshok  <toshok@ximian.com>
5225
5226         * Control.cs (CreateControl): turns out in 2.0 we don't need this
5227         OnBindingContextChanged thing here.  It's only generated from
5228         ContainerControl.OnCreateControl.  Fixes a newly written unit test
5229         - BindingTest.BindingContextChangedTest4.
5230         
5231 2007-04-17  Jackson Harper  <jackson@ximian.com>
5232
5233         * ScrollBar.cs: When setting values, make sure the current
5234         position stays within the new values range.
5235
5236 2007-04-17  Chris Toshok  <toshok@ximian.com>
5237
5238         * Control.cs (CreateControl): talk about a bizarre corner case.
5239         Don't emit OnBindingContextChanged here if we're a parentless
5240         control (i.e. if we're a form.).  Fixes
5241         BindingTest.BindingContextChangedTest2.
5242
5243 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
5244
5245         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
5246         from win32. Fixes #81255.
5247
5248 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
5249
5250         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
5251         already present in CalculateButtonTextAndImageLayout.
5252
5253 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5254
5255         * XplatUIX11.cs: When setting min/max size for a window we need to
5256           translate the coordinates to x coordinates. Create an overload of
5257           SetWindowMinMax that takes a CreateParams handling this, and change
5258           SetWMStyles to call this function (can't use Control.FromHandle in
5259           the SetWindowMinMax to get the control/CreateParams from the handle
5260           because the handle might not have been assigned to the control
5261           yet). Fixes #81371.
5262
5263 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5264
5265         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
5266         if StateImageList is non-null and it has less than two items (match MS
5267         behaviour). Also, in HandleNavKeys handle the Space key, calling
5268         the new ToggleItemsCheckState method, which tries to change the
5269         checked state of the selected items. Fixes part of #81191.
5270
5271 2007-04-16  Jackson Harper  <jackson@ximian.com>
5272
5273         * RichTextBox.cs: namespace cleanup.
5274
5275 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
5276
5277         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
5278
5279 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
5280
5281         [Fixes #79447]
5282         * Control.cs: Call invalidate in set_Region.
5283
5284         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
5285         it dont works here.
5286
5287 2007-04-16  Jackson Harper  <jackson@ximian.com>
5288
5289         * TextBoxBase.cs: When enter is pressed, we need to update all
5290         lines below the current.
5291
5292 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
5293
5294         * MdiClient.cs: Implement implicit menu merging for MDI
5295         children.  When a child form is active, if it has a menustrip
5296         and the parent form has a MainMenuStrip, automatically merge
5297         the menus.
5298
5299 2007-04-15  Andreia Gaita  <avidigal@novell.com>
5300
5301         * TabControl.cs: Refactored sizing methods to not repeat
5302         code all over the place. Tab bounds are now calculated
5303         as if alignment is top and single line, and only when 
5304         setting the bounds are the positions adjusted according
5305         to alignment. Replaced hardcoded positions, spacings and
5306         paddings by getting the values the ThemeEngine. 
5307         Fixes #79619.
5308         
5309         * Theme.cs: Change TabControl properties and methods so
5310         that all start with TabControl*. Added more properties
5311         to help remove hardcoded values on tabcontrol.
5312         Add CPDrawBorder3D declaration so the Theming classes
5313         can access it.
5314         
5315         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
5316
5317         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
5318         on the Theming namespace, and call the appropriate methods here.
5319         Change CPDrawBorder3D to public.
5320
5321 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5322
5323         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
5324         the control after firing the OnMouseUp event, instead of sending
5325         the message before the mentioned event. This is so we can match the
5326         MS behaviour. Fixes part of #80385.
5327
5328 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
5329
5330         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
5331         RightToLeft property.
5332
5333 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
5334
5335         * ToolStrip.cs: Add properties and internal methods to support merging.
5336         * ToolStripItem.cs: Add MergeAction and MergeIndex.
5337         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
5338         not trigger reparenting or layouts.
5339         * ToolStripManager.cs: Add Merge and RevertMerge methods.
5340         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
5341         is hosting the overflow menu.
5342
5343 2007-04-13  Jackson Harper  <jackson@ximian.com>
5344
5345         * TextControl.cs: Set the line ending correctly for the first
5346         inserted line.
5347
5348 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
5349
5350         * Theme.cs: Update GetMethod to get the new definition for 
5351         KnownColors.Update (and fix theme color updates).
5352
5353 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
5354
5355         * MessageBox.cs: Fix some test and button position.
5356
5357 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5358
5359         * Form.cs: Consider the implicit controls in
5360         GetRealChildAtPoint. We need it since this method
5361         is called on Form when handling the some messages in
5362         WndProc, and need to consider those implicit ones too.
5363         Fixes #80385.
5364
5365 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
5366
5367         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
5368         if there are no ShortcutKeys set.
5369         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
5370         set, use it when painting.
5371
5372 2007-04-12  Jackson Harper  <jackson@ximian.com>
5373
5374         * TextControl.cs: Fix some off-by-one issues in line duplication
5375         and insertion in the undo manager. Also, overwrite the first tag
5376         of a line on insert, if it is just a zero lengthed tag. This
5377         prevents us from getting an extra stranded tag at the beginning of
5378         the first line.
5379
5380 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
5381
5382         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
5383         to calculated proper size including when handle was not created yet.
5384
5385 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5386
5387         * MdiWindowManager.cs: When moving a form, allow the form to be moved
5388           when the mouse is outside of it's parent's client rectangle. Fixes
5389           #79982 (take 3, part 2).
5390
5391 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5392
5393         * X11Structs.cs: Add a few ToString() overrides.
5394         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
5395           the window location in a window-manager independent way. Reworked
5396           FrameExtents, it now actually works. Reworked AddConfigureNotify
5397           and ReparentNotify handling to use GetTopLevelWindowLocation
5398           instead of the earlier, more hacky solution. Reworked SetWMStyles,
5399           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
5400           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
5401           for all other windows (fixes #81281 part 1), a toolwindow is hidden
5402           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
5403           and generally refactored to do as few calculations as possible
5404           inside the lock.
5405
5406 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
5407
5408         * Theme.cs: Change "reflective-contract" between MWF and SD to 
5409         minimize # of calls, avoid Color serialization and avoid updating 
5410         every "known colors" each time a single one is updated.
5411
5412 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5413
5414         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
5415         when not readonly and the text is explicitly set. Code style updates.
5416         * DataGridTableStyle.cs: Removed extra line.
5417         * DataGrid.cs: Code style updates. Removed extra whitespace.
5418         * DataGridColumnStyle.cs: Code style updates. Removed extra 
5419         whitespace.
5420
5421 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5422
5423         * XplatUIX11.cs: Added comment that "fixes" #80021.
5424
5425 2007-04-09  Jackson Harper  <jackson@ximian.com>
5426
5427         * TextControl.cs: We don't need this -1 on the line count anymore.
5428
5429 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5430
5431         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
5432         entered value to underlying type, and convert it back to a string to
5433         apply formatting. Modified GetFormattedValue to use TypeConverter
5434         if available.
5435
5436 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
5437
5438         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
5439         Use SubItems property when we want to ensure there's at least one
5440         subitem. Modified SubItems property to ensure there's always at least
5441         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
5442         the NRE's reported by MS.
5443
5444 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
5445
5446         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
5447         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
5448         Spaces to tabs. Removed extra tabs.
5449
5450 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
5451
5452         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5453         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
5454
5455 2007-04-06  Jackson Harper  <jackson@ximian.com>
5456
5457         * TextBoxBase.cs: When a delete removes a line, recalculate all
5458         lines below that line (they need to get offsets setup correctly)
5459         and invalidate.
5460
5461 2007-04-05  Jackson Harper  <jackson@ximian.com>
5462
5463         * TextControl.cs: We need to invalidate across the width of the
5464         document when we are invalidating multiple lines.
5465         * TextBoxBase.cs: Don't delete into the line ending.
5466
5467 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5468
5469         * ListView.cs: Restore the check for the MouseHover event
5470         in ListView. It looks like the ListView fires more than one MouseHover
5471         event when HoverSelection is true  _only_ in weird-corner scenarios, but
5472         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
5473         event.
5474
5475 2007-04-05  Mike Kestner  <mkestner@novell.com>
5476
5477         * ListView.cs : raise MouseDown before updating selection.
5478         [Fixes #80373 tab 1&3]
5479
5480 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5481
5482         * ToolStripRenderer.cs: Add static method to mirror image.
5483         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
5484         and RightToLeftAutoMirrorImage.
5485         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
5486
5487 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5488
5489         * ToolStripSplitStackLayout.cs: Support Alignment property.
5490         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
5491
5492 2007-04-05  Jackson Harper  <jackson@ximian.com>
5493
5494         * TextControl.cs: Move around the line endings when crossing line
5495         boundaries.
5496         - When combining lines, strip the ending text off the first line.
5497
5498 2007-04-05  Jackson Harper  <jackson@ximian.com>
5499
5500         * TextControl.cs:
5501         * TextBoxBase.cs: Try to never move the cursor into the line
5502         ending.
5503         
5504 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5505
5506         * ToolStripItem.cs: Make sure we aren't firing mouse events when
5507         the item is disabled.  Also add a few missing methods.
5508
5509 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5510
5511         * ListView.cs: We don't need the MouseEnter/MouseLeave check
5512         to fire just one MouseHover event when HoverSelection is true, since
5513         .Net does fire more than one MouseHover event in that scenario. Also,
5514         fix the selection in HoverSelection, by invoking UpdateMultiSelect
5515         if MultiSelect is true, instead of only setting ListViewItem.Selected.
5516         Finally, we need to reset the Hover logic in MouseMove, even when we
5517         don't have a selected item.
5518
5519 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5520
5521         * ToolStrip.cs: Add several missing methods, properties, and events.
5522
5523 2007-04-04  Chris Toshok  <toshok@ximian.com>
5524
5525         * DataGridTextBoxColumn.cs: set the bounds of the text box to
5526         (0,0,0,0) in Commit, as MS does.
5527
5528         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
5529         make sure we set CurrentRow on a row header click *before* calling
5530         Select.  This moves the current cell (and the textbox) to the new
5531         row.  The call to Select then hides the textbox, giving us the
5532         correct behavior.  Fixes #80362.
5533
5534         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
5535         (ListChangedHandler): reorder the position/current changed events,
5536         and call UpdateIsBinding in the ItemAdded case.
5537
5538         * GridColumnStylesCollection.cs: add some columns events, one of
5539         which raises the CollectionChanged event.
5540
5541 2007-04-04  Jackson Harper  <jackson@ximian.com>
5542
5543         * TextControl.cs: When we delete multiple selection lines
5544         invalidate the selection area, don't need to do that for single
5545         lines because the final update view will handle it.
5546
5547 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5548
5549         * Control.cs: When we CreateControl, we need to also create all of the
5550         control's children.  The child's OnLoad must also fire before the parent's
5551         OnLoad.  Fixes the toolbox size in PDN.
5552
5553 2007-04-04  Jackson Harper  <jackson@ximian.com>
5554
5555         * TextBoxBase.cs: When the user presses enter, insert a line
5556         ending into the text. (Maybe this would be a good spot for
5557         Environment.NewLine).
5558         * TextControl.cs: Remove undo manager hack, line endings get
5559         inserted properly now.
5560         
5561 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5562
5563         * MenuAPI.cs: 
5564         - Remove unneeded parameters in UpdateCursor.
5565         - Fix UpdateCursor to check if menu is active.
5566         - Call UpdateCursor when menu deactivate my click.
5567         [Fixes remaining issues from #80410]
5568
5569 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5570
5571         * Control.cs: GetRealChildAtPoint method added, it make an
5572         recursive child control search for the point. 
5573
5574         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
5575         menu.
5576
5577         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
5578
5579 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5580
5581         * Form.cs: Fix mouse position when send back mouse event after closes
5582         menu.
5583
5584 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5585
5586         * Form.cs: Simplify the BUTTONDOWN for active tracker.
5587
5588 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5589
5590         * Control.cs: Fix an issue where if a user resized a control inside
5591         a sizing method like OnResize, we would overwrite their explicit
5592         value.  Also, only call DefaultSize once in the constructor instead
5593         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
5594         nothing actually changed.
5595
5596 2007-04-03  Jackson Harper  <jackson@ximian.com>
5597
5598         * TextControl.cs: Don't attempt to copy text for lines with no
5599         text in them (technically this shouldn't happen, but we aren't
5600         always inserting line endings when we should be).
5601
5602 2007-04-03  Jackson Harper  <jackson@ximian.com>
5603
5604         * TextBoxBase.cs: Calculate the scrollbars before calculating the
5605         document, because this sets some of the document size properties
5606         that are needed.
5607
5608 2007-04-03  Jackson Harper  <jackson@ximian.com>
5609
5610         * TextBoxBase.cs: We need to calculate maximums even if this is
5611         not a multiline control, because the maxs are used for scrolling.
5612         - Display the caret after doing a page up/down, we need to
5613         manually display it because a proper CaretMoved event isn't
5614         triggered (this is because of the way the math is done to
5615         determine how far to scroll).
5616
5617 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5618
5619         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
5620         (ToolBar was relying on SetBoundsCore to default the values sent 
5621         base off of BoundsSpecified.)
5622
5623 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5624
5625         * DateTimePicker.cs: Change Text so that when a null value or empty
5626           string is assigned to the test we always raise ValueChanged and
5627           TextChanged (earlier implementation would only raise ValueChanged
5628           if the current date value was different from DateTime.Now).
5629
5630 2007-04-03  Andreia Gaita <avidigal@novell.com> 
5631
5632         * ButtonBase: Call update after invalidation, fixes #80194
5633
5634 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5635
5636         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
5637           #79335.
5638
5639 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5640
5641         * XplatUIX11.cs: SetWMStyles: If the control is a form with
5642           FormBorderStyle = None, don't give the window any decorations.
5643           Fixes #81276.
5644
5645 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5646
5647         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5648         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
5649           to check for is a mix of several styles (such as WS_CAPTION for
5650           instance).
5651         * Control.cs: Don't paint an area bigger than the client area when
5652           painting the background colour. Add an internal GetCreateParams.
5653           Update calls to XplatUI.CalculateWindowRect due to API change.
5654         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
5655           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
5656           the size if it hasn't been handled by any windows. When creating
5657           and moving windows, X wants the location of the entire window, but
5658           the size of the client window, so add
5659           TranslateClientRectangleToXClientRectangle,
5660           TranslateWindowSizeToXWindowSIze and
5661           TranslatedXWindowSizeToWindowSize to cope with this, and call them
5662           before every window creation and move. Update CalculateWIndowRect
5663           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
5664           In AddConfigureNotify don't do anything if the hwnd is a zombie
5665           (fixes the BadWindow we were getting while running the tests),
5666           always calculate the offsets when it's a parentless window, not
5667           only when reparented, and translate the window size, since we're
5668           getting the client size of the whole window, excluding entire
5669           window.
5670         * Theme.cs: Added BorderSizableSize.
5671         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5672           anymore. Update calls to XplatUI.CalculateWindowRect due to API
5673           chang
5674         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
5675           change. Fake the window styles here instead of in XplatUIWin32 so
5676           that all back-ends get the same window styles (and it's Form that's
5677           deciding when to use wm, not the Win32 backend anyways)
5678         * Hwnd.cs: Completely reworked GetWindowRectangle and
5679           GetClientRectangle - they are now passed a CreateParams and they
5680           only use Style and ExStyle to determine the rectangles (they should
5681           now work just like Win32AdjustWindowRectEx - though quite a few
5682           special cases are probably missing). They should also be 100%
5683           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
5684           == rect), and all numbers (borders, menu sizes) are taken from the
5685           current theme. Added a GetBorders helper function that will return
5686           the borders for any given CreateParams (including captions and
5687           menus), and GetBorderSize that returns the given border size only.
5688         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5689           Hwnd.GetClientRectangle.
5690
5691 2007-04-02  Chris Toshok  <toshok@ximian.com>
5692
5693         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
5694         logic between the values we present to the user and the values
5695         which are stored in the column's property.  Also, don't call
5696         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
5697
5698 2007-04-02  Jackson Harper  <jackson@ximian.com>
5699
5700         * TextBoxBase.cs: Scroll faster!
5701
5702 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5703
5704         * StatusStrip.cs: Layout fixes for PDN.
5705         * ToolStrip.cs: Set item's available to true, and placement to main when
5706         added.
5707         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
5708         changing in setter before doing any work, add InternalVisible.
5709         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
5710         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5711         infinite loop.
5712
5713 2007-04-02  Jackson Harper  <jackson@ximian.com>
5714
5715         * TextBox.cs: LBUTTON does not make the textbox select all of it's
5716         text on focus.
5717
5718 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5719
5720         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
5721           Makes ToolStripComboBoxes show up again.
5722
5723 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5724
5725         * ListView.cs: Add a hover_pending field in ListView
5726         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
5727         cycle (we are resetting the MouseHover logic in XplatUI
5728         to handle HoverSelection). Fixes #80429.
5729
5730 2007-04-02  Jackson Harper  <jackson@ximian.com>
5731
5732         * TextControl.cs: Make sure the attributes get set on the last
5733         tag.
5734         - Still have to do the end tag if we have stepped all the ways to
5735         the end.
5736
5737 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5738
5739         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
5740         on an internal libgdiplus call when the information is already 
5741         available via the public API.
5742
5743 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5744
5745         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
5746           control is removed from a control collecftion.
5747         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
5748           Fixes FormPropertyTest (failed on rare occasions).
5749         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
5750           of Win32SetParent (when changing from no parent to a parent it
5751           might add the new parent's location in screen coordinates to this
5752           window's location).
5753         * Form.cs: Rework ChangingParent once again, now the handle is
5754           recreated whenever a FormWindowManager is added or removed (that is
5755           whenever a normal form is parented or abandoned). Also change
5756           CreateParams so that all non-toplevel windows always get the
5757           specified sice (StartupPosition is never considered for
5758           non-TopLevel forms).
5759         * ContainerControl.cs: Add ChildControlRemoved, the container control
5760           needs to be notified when a control is removed from it's
5761           collection, in the case the removed control is the active control.
5762
5763 2007-04-02  Jackson Harper  <jackson@ximian.com>
5764
5765         * RichTextBox.cs: Use the new methods for setting the font and
5766         color, these methods set the specified attribute without
5767         overriding the other attributes.
5768
5769 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5770
5771         * ToolStripPanel.cs: Fixes for better layouts in PDN.
5772
5773 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
5774
5775         * TextBox.cs: Added internal ChangeBackColor method to special-case
5776         Color.Empty. Added check for invalid ScrollBars value.
5777         * TextBoxBase.cs: Added internal ChangeBackColor method.
5778         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
5779         internal ChangeBackColor method to special-case Color.Empty. Added
5780         check for invalid ScrollBars value.
5781
5782 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
5783
5784         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
5785
5786 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5787
5788         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
5789         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
5790         [Based on submitted patch from Olivier Duff.]
5791
5792 2007-03-30  Jackson Harper  <jackson@ximian.com>
5793
5794         * TextBox.cs: Only select all on initial focus if the user has not
5795         specified a selection area.
5796
5797 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5798
5799         * UserControl.cs: Override CreateParams.
5800
5801 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5802
5803         [ Fixes #80995 ]
5804
5805         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5806         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
5807           check for is a mix of several styles (such as WS_CAPTION for instance).
5808         * Control.cs: Don't paint an area bigger than the client area when painting
5809           the background colour. Add an internal GetCreateParams. Update calls to
5810           XplatUI.CalculateWindowRect due to API change.
5811         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
5812           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
5813           hasn't been handled by any windows. When creating and moving windows, X
5814           wants the location of the entire window, but the size of the client
5815           window, so add TranslateClientRectangleToXClientRectangle,
5816           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
5817           to cope with this, and call them before every window creation and move.
5818           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
5819           removing DeriveStyles). In AddConfigureNotify don't do anything if the
5820           hwnd is a zombie (fixes the BadWindow we were getting while running the
5821           tests), always calculate the offsets when it's a parentless window, not
5822           only when reparented, and translate the window size, since we're getting
5823           the client size of the whole window, excluding entire window.
5824         * Theme.cs: Added BorderSizableSize.
5825         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5826           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
5827         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
5828           Fake the window styles here instead of in XplatUIWin32 so that all
5829           back-ends get the same window styles (and it's Form that's deciding when
5830           to use wm, not the Win32 backend anyways)
5831         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
5832           they are now passed a CreateParams and they only use Style and ExStyle
5833           to determine the rectangles (they should now work just like
5834           Win32AdjustWindowRectEx - though quite a few special cases are probably
5835           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
5836           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
5837           sizes) are taken from the current theme. Added a GetBorders helper
5838           function that will return the borders for any given CreateParams
5839           (including captions and menus), and GetBorderSize that returns the given
5840           border size only.
5841         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5842           Hwnd.GetClientRectangle.
5843
5844 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5845
5846         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
5847           layout of the mdi children is handled by CreateParams. Fixes
5848           #79964,
5849
5850 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5851
5852         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
5853         processed.
5854
5855         * Form.cs: When active tracker mouse down is not processed, send event 
5856         back to control inside mouse position. [Fixes #81227]
5857
5858 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5859
5860         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
5861         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
5862         stealing focus from the active form on Windows.  (Control will be made
5863         visible in ShowWindow.)
5864
5865 2007-03-29  Mike Kestner  <mkestner@novell.com>
5866
5867         * ImageList.cs : add internal Changed event.
5868         * ListView.cs : hook up to StateImageList.Changed to perform
5869         invalidations when the the state icon list changes. [Fixes #81191]
5870
5871 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5872
5873         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
5874         to prevent tooltips from stealing focus from the active form on Windows.
5875
5876 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5877
5878         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
5879
5880         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
5881
5882 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5883
5884         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
5885         balloons.
5886
5887 2007-03-29  Jackson Harper  <jackson@ximian.com>
5888
5889         * TextControl.cs: When deleting text from non multiline textboxes,
5890         we need to update the entire document, because line offsets will
5891         be shifting.
5892
5893 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5894
5895         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
5896         added to theme, now we can create themes that uses diferent notify engines
5897         like notification-daemon from galago project or growl for Mac OS.
5898
5899 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5900
5901         * NotifyIcon.cs: Prevent Balloon to show in task bar.
5902
5903 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5904
5905         * XplatUIX11.cs: Prevent system to open more than one balloon.
5906
5907         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
5908         some compiler warning messages.
5909
5910 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5911
5912         [Fixes #79149]
5913
5914         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
5915
5916         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
5917         implemented, this methods is used by NotifyIcon.BalloonWindow class.
5918
5919         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
5920         systems.
5921
5922 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5923
5924         * ListViewItem.cs: Forgot to make Invalidate internal.
5925
5926 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5927
5928         * ListView.cs: Add a InvalidateSelection method to
5929         invalidate methods which are currently selected, and call
5930         it when setting FullRowSelect and HideSelection, instead of
5931         calling Redraw.
5932
5933 2007-03-28  Chris Toshok  <toshok@ximian.com>
5934
5935         * XplatUIX11.cs (UnmapWindow): reindent this block.
5936
5937         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
5938         the selection_start if we're moving the selection (that is, not
5939         extending it). Fixes bug #80461.
5940
5941 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5942
5943         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
5944         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
5945         create private ControlCollection.
5946
5947 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5948
5949         * Control.cs: We need to call OnVisibleChanged for our implicit
5950         children as well as our normal children.  Fixes scrollbars in
5951         comboboxes not showing up.
5952
5953 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5954
5955         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
5956         the check for IsHandleCreated first.  The check in CreateHandle is not
5957         good enough because CreateHandle can be overriden, and the override 
5958         should not be called if the handle is already created.
5959
5960 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5961
5962         * ToolStrip.cs: Remove MonoTODO for tooltips.
5963         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
5964         * ToolStripContainer.cs: Add custom ControlCollection class.
5965         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
5966         * ToolStripDropDown.cs: Add some missing properties/methods.
5967         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
5968         * ToolStripItem.cs: Remove MonoTODO for tooltips.
5969         * ToolStripManager.cs: Add IsShortcutDefined.
5970         * ToolStripOverflow.cs: Override LayoutEngine.
5971         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
5972         * ToolStripSeparator.cs: Add ImageKey.
5973
5974 2007-03-28  Jackson Harper  <jackson@ximian.com>
5975
5976         * TextControl.cs: If a char delete removes a line ending, we need
5977         to update the ending style.
5978         - Make sure the line ending calcs get called.
5979
5980 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5981
5982         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
5983           it was making the new code not work. Fixed a typo in the new code
5984           as well. Fixes #79826.
5985
5986 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5987
5988         * XplatUIWin32.cs:
5989         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
5990         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
5991         - SystrayBalloon method implemented.
5992         [Add support for notifyicon balloon on win32, #79149]
5993
5994 2007-03-27  Mike Kestner  <mkestner@novell.com>
5995
5996         * ThemeWin32Classic.cs : update StateImageList selection to mirror
5997         the ms behavior when only one image is added to the list.
5998         [Fixes #81191]
5999
6000 2007-03-27  Jackson Harper  <jackson@ximian.com>
6001
6002         * TextControl.cs: Improvements to non multiline line ending
6003         drawing/measuing.
6004
6005 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6006
6007         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
6008
6009 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6010
6011         * NotifyIcon.cs: 
6012         - Balloon message handling added.
6013         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
6014
6015         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6016         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
6017         to SystrayBalloon to me like other Systray method, also a
6018         handle parameter added.
6019
6020 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6021
6022         * ListView.cs: Show scrollbars even when items.Count == 0
6023         but the columns Width is bigger than the ListView.Width.
6024         Also, when columns.Count == 0 set layout_wd and layout_ht
6025         to the ClientRectangle values, so we don't show any scrollbar
6026         in that case.
6027
6028 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6029
6030         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
6031
6032 2007-03-27  Jackson Harper  <jackson@ximian.com>
6033
6034         * RichTextBox.cs: The RTF library decodes the text properly for us
6035         now.
6036
6037 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6038
6039         * ListView.cs: Display HeaderControl even when columns.Count == 0.
6040         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
6041         ListView header (HeaderControl), instead of Control.BackColor.
6042
6043 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
6044
6045         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
6046         Fixes tab control issues where controls would not show up because they
6047         never received their OnVisibleChanged call.
6048
6049 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6050
6051         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
6052         BalloonTipShown).
6053
6054 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
6055
6056         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
6057         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
6058         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
6059         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
6060         the handle.  Fix WindowState by using the internal variable until we are 
6061         sure that we've been shown.
6062         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
6063         max or min.
6064         [Fixes bug #81198]
6065
6066 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6067
6068         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
6069           (at least borders). Fixes #79386 on Linux (with a small difference
6070           in behaviour: when trying to resize a caption-less window metacity
6071           shows the sysmenu. Resizing is still possible though).
6072         * XplatUIWin32.cs: When setting window styles send request an extra
6073           WM_NCCALCSIZE when it's a form without title (due to no text and no
6074           caption), since Win32 seems to calculate it wrong the first time we
6075           get the message, though the second time things work as they should.
6076         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
6077           newly reparented window might show up unparented. Update
6078           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
6079           there's no title text. Fixes #79386.
6080
6081 2007-03-27  Mike Kestner  <mkestner@novell.com>
6082
6083         * ListBox.cs : don't perform invalidations if the handle hasn't been
6084         created.  [Fixes #80753]
6085
6086 2007-03-27  Mike Kestner  <mkestner@novell.com>
6087
6088         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
6089         [Fixes #80428]
6090
6091 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6092
6093         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
6094         needed to implement Balloon.
6095
6096 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6097
6098         * ListViewItem.cs: In the constructors that take
6099         an array of strings, don't use ListViewSubItemCollection.AddRange
6100         method to add items, since we need to have a different behaviour (in
6101         the constructors we add an item for each null string, opposed to
6102         the behaviour of AddRange, which adds nothing).
6103
6104 2007-03-26  Andreia Gaita  <avidigal@novell.com>
6105
6106         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
6107
6108 2007-03-26  Jackson Harper  <jackson@ximian.com>
6109
6110         * TextControl.cs: Draw and measure line endings when in non
6111         multiline mode.
6112         - When searching the text, count the end of the last line as a
6113         word boundary.
6114
6115 2007-03-26  Jackson Harper  <jackson@ximian.com>
6116
6117         * RichTextBox.cs: The selection_start and selection_end don't
6118         really track the correct tags for the selection. So we'll manually
6119         compute the correct tag here.
6120
6121 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6122
6123         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
6124           and Continuous styles. Fixes #79469.
6125
6126 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
6127
6128         * ToolStrip.cs: Implement Tooltips.
6129         * ToolStripItem.cs: Create internal method for determining tooltip.
6130
6131 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
6132
6133         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
6134
6135 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6136
6137         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
6138         it prevents a problem thak keeps icon visible after application 
6139         closes on win32.
6140
6141 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6142
6143         * NotifyIcon.cs: Balloon properties and methods created.
6144
6145         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6146         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
6147
6148 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
6149
6150         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
6151
6152 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
6153
6154         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
6155         parameter indicates which aspects were explicit/user-set.
6156         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
6157
6158 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
6159
6160         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
6161         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
6162         SmallChange, and Value (2.0).
6163         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
6164
6165 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6166
6167         * ListView.cs: Always set item_control.Width in LayoutDetails
6168         if View is Details. Setting it later in CalculateScrollBars
6169         in a not-so-corner scenario (the sum of columns width is
6170         not bigger than the ListView width when handle is created, and then
6171         that sum gets bigger by increasing the width of the columns)
6172         causes a very weird recursion path (which shouldn't be happening,
6173         since header_control sets it in CalculateScrollBars too). This bug
6174         appeared after Chris' fixes for handle created issues, so probably
6175         it's related to some handle-creation time.
6176
6177 2007-03-23  Chris Toshok  <toshok@ximian.com>
6178
6179         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
6180         case where there's an add row, just so we don't end up in a case
6181         where it's not displayed (this happens when the row is partially
6182         obscured).  Fixes bug #79574.
6183
6184 2007-03-23  Jackson Harper  <jackson@ximian.com>
6185
6186         * TextControl.cs:
6187         * TextBoxBase.cs:
6188         * RichTextBox.cs: Preserve line endings in the lines text buffer,
6189         also added an enum that represents the line ending type. 
6190
6191 2007-03-23  Andreia Gaita  <avidigal@novell.com>
6192
6193         * NumericUpDown.cs: Fix logic so Text and Value properties are not
6194         messed with in every method call, but only from DownButton, 
6195         UpButton, UpdateEditText() and ValidateText. Fixes #80346
6196
6197 2007-03-23  Chris Toshok  <toshok@ximian.com>
6198
6199         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
6200         format objects if the format spec is "".  Fixes bug #80889.
6201
6202 2007-03-22  Miguel de Icaza  <miguel@novell.com>
6203
6204         * ToolStripPanel.cs (Join): added stubs to build PDN3
6205
6206         * Control.cs (AutoScrollOffset): Add.
6207
6208         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
6209         property, its only implemented for Win32, on X11 it defaults to
6210         some hardcoded value.
6211
6212         * ToolStripItem.cs (AllowDrop): Add property
6213
6214 2007-03-22  Mike Kestner  <mkestner@novell.com>
6215
6216         * ListView.cs : in FullRowSelect Details mode, only enable box
6217         selection if the user clicks over the "item" column outside of the
6218         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
6219
6220 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6221
6222         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
6223           handle is not created yet.
6224         * Form.cs: Select: Don't call CreateHandle if the handle is already
6225           created, avoids a stack overflow on Windows when we are recreating
6226           controls.
6227         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
6228           they are made visible, and override AfterTopMostControl to keep
6229           them on top when other controls are brought to front.
6230           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
6231           or force_*scroll_visible is true (old implementation always shows
6232           scrollbars when needed, no matter what auto_scroll was set to).
6233         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
6234           IsHandleCreated check.
6235
6236 2007-03-22  Andreia Gaita  <avidigal@novell.com>
6237
6238         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
6239         row or col separator.
6240         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
6241
6242 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6243
6244         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
6245
6246 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6247
6248         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
6249         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
6250         every time. Fixes #80410.
6251
6252 2007-03-22  Chris Toshok  <toshok@ximian.com>
6253
6254         * BindingSource.cs (AddNew): partially implement.
6255
6256         remove a couple of NotImplementedException's
6257         to get bug #81148 closed.
6258
6259 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6260
6261         [Fixes #80380]
6262         
6263         * Control.cs:
6264         - UpdateCursor method added to update the screen cursor.
6265         - GetAvailableCursor method added to return cursor for enabled tree,
6266         it searches for cursor on control and it's parent's for enabled control.
6267         - Call UpdateCursor method on setter of Cursor property.
6268         - On setter of Enabled call UpdateCursor when it is false, we need to
6269         change cursor to normal (or to this parent cursor) because cursor 
6270         setting theres no effect to disabled controls.
6271         - Some minor source changes to follow the coding style guidelines.
6272
6273         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
6274         controls.
6275
6276 2007-03-22  Chris Toshok  <toshok@ximian.com>
6277
6278         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
6279         generates.
6280
6281 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6282
6283         * XplatUIX11.cs: Implement default locations for forms.
6284         * Form.cs: Completely rework startup location for forms. Fixes #79964.
6285         * Hwnd.cs: Add previous_child_startup_location (to track the current
6286           startup location for any child forms of the current form) and
6287           previous_main_startup_location (to track the startup location for
6288           the current toplevel form).
6289
6290 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6291
6292         * Control.cs: Don't trigger a layout if an implicit control is added
6293         that isn't visible.  Also, don't notify the owner when an implicit control
6294         is added.  (Owners shouldn't even know about their implicit controls.)
6295
6296 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6297
6298         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
6299         to save some re-layouts.
6300
6301 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
6302
6303         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
6304         [Fixes #81203]
6305
6306 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6307
6308         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
6309         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
6310
6311 2007-03-21  Mike Kestner  <mkestner@novell.com>
6312
6313         * ListView.cs : disable selection update for non-left button clicks
6314         with mods and over selected items.  [Fixes #80524]
6315
6316 2007-03-20  Jackson Harper  <jackson@ximian.com>
6317
6318         * TextControl.cs:
6319         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
6320         \r\r\n, \n.
6321
6322 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6323
6324         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
6325           very probably a more complicated calculation there. Update the
6326           textbox' ForeColor and BackColor when the ComboBox' colors are
6327           changed. Change the border change in LayoutComboBox to only affect
6328           the textbox, not all the calculations there. Seems to fix most of
6329           #79436.
6330
6331 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6332
6333         * ComboBox.cs: Handle Home and End keys as well as all combinations of
6334           modifiers + navigation keys as input keys, enables advanced text
6335           selection in the combobox (like Shift+Left Arrow for instance).
6336           ComboTextBox now overrides Focused and returns whatever
6337           ComboBox.Focused returns, since it really should be focused
6338           whenever the ComboBox is. Fixes #80795. Also make the border around
6339           the text box one pixel bigger, as mentioned in #79436.
6340
6341 2007-03-20  Jackson Harper  <jackson@ximian.com>
6342
6343         * TreeView.cs: Don't offset the images, this was causing some
6344         artifacts when expanding/collapsing with images that were the
6345         exact height of the treenode.
6346
6347 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6348
6349         * TrackBar.cs: Query the theme for the correct value when the mouse
6350           moves and the thumb is pressed. 
6351         * Theme.cs: Added TrackBarValueFromMousePosition
6352         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
6353           implementation was updating the trackbar value when drawing, now
6354           the drawing methods only draw. Fixes #80900. Refactored the
6355           calculations out to TrackBarValueFromMousePosition and
6356           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
6357           according to the mouse position whenever it wants to. Changed the
6358           light coloured pen when drawing the thumb from ControlLight to
6359           ControlLightLight, because the ControlLight is the same colour as
6360           the background so the 3D effect is lost. 
6361
6362 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6363
6364         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
6365         defined. Fixes #80784.
6366
6367 2007-03-20  Marek Habersack  <mhabersack@novell.com>
6368
6369         * ContextMenuStrip.cs: align with the change introduced in
6370         revision 74664.
6371
6372 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6373
6374         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
6375         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
6376         in SetTopmost.
6377
6378 2007-03-19  Chris Toshok  <toshok@ximian.com>
6379
6380         * Control.cs (WmPaint): don't make use of the Handle property
6381         after an event is emitted, as the user could have closed the
6382         form/destroyed the control.  Store the Handle in a local variable
6383         and make use of that.  Fixes bug #80768.
6384
6385 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6386
6387         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
6388         behavior in X11 environments.
6389
6390 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6391
6392         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
6393         because on setter of topmost we dont call SetTopmost when handle is not
6394         created.
6395
6396 2007-03-20  Jackson Harper  <jackson@ximian.com>
6397
6398         * TextControl.cs: Need to use SelectionLength () not
6399         selection_length, since that var is reset to -1.
6400         - Draw the caret when we don't have focus.
6401         * TextBox.cs: The selectall actually doesn't occur until the first
6402         focus.
6403         * TextBoxBase.cs: Need to update the caret position after a
6404         selectall.
6405         
6406 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6407
6408         * ListView.cs: Enable scrolling when using Tile view.
6409
6410 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6411
6412         [Fixes #80902]
6413
6414         * XplatUIDriver.cs: Abstract SetOwner method created.
6415
6416         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
6417         must be implemented and was masked as todo.
6418
6419         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
6420         GWL_HWNDPARENT.
6421
6422         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
6423         cheking for null owner to remove transient. The SetTopmost will be change
6424         on a decond step.
6425
6426         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
6427         SetTopmost. Now owned forms will work properly in win32 and X11.
6428
6429 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6430
6431         * MdiWindowManager.cs: Update function name.
6432         * Form.cs: After closing a form MdiParent is always null.
6433         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
6434           better what it should do: necessary book-keeping when the form is
6435           closed, it should not close the form itself.
6436
6437 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6438
6439         * ListViewItem.cs: Fix back and fore color. The subitems only
6440         use their own colors if they are set, otherwise use the listview's
6441         colors. Don't set default colors on constructor for subitem.
6442         Fixes #79315.
6443
6444 2007-03-19  Mike Kestner  <mkestner@novell.com>
6445
6446         * ListView.cs : make box selection for Details views with 
6447         FullRowSelect conform to MS behavior when clicking in the "item" 
6448         column and clicking outside the defined columns.
6449         [Fixes case 5-6 of #80374]
6450
6451 2007-03-19  Chris Toshok  <toshok@ximian.com>
6452
6453         * ScrollableControl.cs: create the controls from within the ctor,
6454         but don't actually add them until our handle is created.  this
6455         fixes a NRE possibility jpobst found (if you override OnLayout in
6456         a subclass, it's called before your ctor).  Also, add a
6457         IsHandleCreated guard to UpdateSizeGripVisibility as well.
6458
6459 2007-03-19  Jackson Harper  <jackson@ximian.com>
6460
6461         * TextBox.cs: Reduce the amount of invalidation we do.
6462         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
6463         some of them are true by default on MS.
6464         - Add some functions to reduce the amount of invalidates we do.
6465         * TextControl.cs: Less invalidation.
6466
6467 2007-03-19  Chris Toshok  <toshok@ximian.com>
6468
6469         [ Fixes #81773, and *seems* to fix #81553 as well ]
6470
6471         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
6472         AccumulateDestroyedHandles.  We need to do it *after* we send
6473         WM_DESTROY, as the user's code can access Control.Handle in
6474         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
6475         move the WM_DESTROY/zombie handling to before the call to
6476         XDestroyWindow.  For some reason without this ordering
6477         FormTest.RecreateHandle hangs.  This ordering is semantically
6478         equivalent, however, as XDestroyWindow is async anyway.
6479
6480 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
6481
6482         * RichTextBox.cs: Reset backcolor_set after setting default.
6483
6484 2007-03-19  Chris Toshok  <toshok@ximian.com>
6485
6486         * ScrollableControl.cs: the scroll position should not effect the
6487         canvas size.  commit patch from georgegiolfan@yahoo.com, which
6488         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
6489         
6490 2007-03-19  Chris Toshok  <toshok@ximian.com>
6491
6492         * ScrollableControl.cs: clean this up a bit.  create the
6493         scrollbars in the ctor and just show/hide them as needed.  Also,
6494         make hscroll_visible/vscroll_visible internal to Recalculate, and
6495         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
6496         everywhere else.  This seems to fix the scrollbars appearing
6497         beneath the content for me (i have *no* idea why that is,
6498         however.)
6499
6500 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6501
6502         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
6503         some redundacy for stuff in Anchor and Dock that base will take care of.
6504         [Fixes #80762]
6505
6506 2007-03-19  Mike Kestner  <mkestner@novell.com>
6507
6508         * ListView.cs : make box selection for Details views without 
6509         FullRowSelect dependent on the text bounds, not item bounds.
6510         * ListViewItem.cs : add an internal property to obtain the TextBounds
6511         in Details view.  [Fixes case 1-4 of #80374]
6512
6513 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6514
6515         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
6516         we're < 2.0. #78448 && #80316
6517
6518 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6519
6520         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
6521         have the same style available as the previously selected one.  Also,
6522         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
6523
6524 2007-03-19  Jackson Harper  <jackson@ximian.com>
6525
6526         * TextControl.cs: Add an alignment property that all new lines
6527         will be given.
6528         - Make sure to use the align shift when calculating the line's X
6529         position.
6530         * TextBox.cs: Set the alignment on the document as well as on all
6531         the document lines.
6532
6533 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6534
6535         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
6536           throw if setting the parent of an mdichild that already has an
6537           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
6538           AssemblyProductAttribute in the assembly, use the type's namespace (as
6539           MS seems to do). CreateControl: don't create the handle if the control
6540           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
6541           create handle if the control is not a form. Change FocusInternal to
6542           virtual so that it can be overriden by Form.
6543         * TextBox.cs: Update call to FocusInternal.
6544         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
6545           form is not a toplevel form when it's a mdi child, so update is_toplevel
6546           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
6547           hasn't been created. Show (IWin32Window): Don't allow this overload for
6548           toplevel windows. CenterToParent/CenterToScreen/Select: create the
6549           handle as MS does. SetVisibleCore: if called on a MdiChild and the
6550           parent isn't visible yet, save the visibility and restore it when the
6551           parent is made visible.
6552         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
6553           methods, since the visibility of the scrollbars can be changed from
6554           several places, not only from AutoScroll.
6555           [Fixes #81179]
6556
6557 2007-03-19  Jackson Harper  <jackson@ximian.com>
6558
6559         * RichTextBox.cs: Enable shortcuts by default.
6560         * TextBoxBase.cs: Add conditional shortcuts.  
6561
6562 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6563
6564         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
6565
6566 2007-03-19  Chris Toshok  <toshok@ximian.com>
6567
6568         [ Fixes bug #80604]
6569         
6570         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
6571         swallow the message we're waiting on, instead of delivering it, as
6572         this is only used for the WM_SHOWWINDOW raised from
6573         MapWindow/UnmapWindow, and the message needs to be generated
6574         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
6575         before doing the Map/Unmap.  Also make sure that the Hwnd is still
6576         alive after the message has been handled.
6577
6578         *before* the window is shown.
6579
6580         * Control.cs (CreateControl): guard a few more things inside the
6581         if (!is_created) block, as we might end up being called again -
6582         yay .net.
6583         (WmShowWindow): call CreateControl if we're showing the control.
6584
6585 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6586
6587         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
6588           controls without a handle if they have any parent with a handle. In
6589           Dispose add a check whether the handle is created or not before
6590           calling BeginInvoke, this removes the need of the extra disposing
6591           parameter (which was bogus anyway since it didn't prevent the
6592           invoke from happening, it only skipped the check for an existing
6593           handle, meaning that the invoke would call on an inexistent
6594           handle).
6595
6596 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6597
6598         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
6599         appears in taskbar.
6600
6601 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6602
6603         * MessageBox.cs:
6604         - Fixed a problem that dont show help button for messages with 3 buttons.
6605         - Refactory button size and position calculations, now dont use fixed 
6606         values, also fixed button sizes (#80043) and form's border space.
6607         - AddButton method created, now all other AddButton methods call this one.
6608         - Some other source code cosmetic changes.
6609
6610 2007-03-18  Jackson Harper  <jackson@ximian.com>
6611
6612         * RichTextBox.cs: Don't do this all fonts must match check if
6613         there is only one char selected.
6614
6615 2007-03-18  Jackson Harper  <jackson@ximian.com>
6616
6617         * TreeView.cs: ScrollWindow works properly now, so we don't need
6618         to screw around with the scroll area.  This fixes some artifacts
6619         when expanding and collapsing.
6620
6621 2007-03-18  Jackson Harper  <jackson@ximian.com>
6622
6623         * TextBoxBase.cs: Allow updating the selection position when the
6624         cursor is outside the textarea, but we have a capture.
6625         * TextControl.cs: A special case for when the cursor is outside
6626         the bounds of the TB.
6627         
6628 2007-03-18  Jackson Harper  <jackson@ximian.com>
6629
6630         * TextBoxBase.cs: Remove image pasting code for now.  There is no
6631         way to get an image on the clipboard right now anyways.
6632         * TextControl.cs:
6633         * RichTextBox.cs: Use the new RTF Picture class for pictures.
6634
6635 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6636
6637         * MessageBox.cs:
6638         - Set window properties in constructor intead of on CreateParams.
6639         - Remove topmost from Window ExStyle.
6640         - Set ShowInTaskbar to false.
6641         - Set form border to FixedDialog.
6642         - Some cosmetic changes and remove unneeded comments.
6643         - It fixes itens 2,3 and 4 of bug #80043.
6644
6645 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
6646
6647         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
6648         none was explicitly set. Fixes part of bug #79949.
6649
6650 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6651
6652         * ToolStripComboBox.cs: Add AutoComplete*.
6653
6654 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6655
6656         * ToolStripComboBox.cs: Add FlatStyle.
6657
6658 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
6659
6660         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
6661         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
6662
6663 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6664
6665         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
6666           CheckBox.cs, RadioButton.cs, BindingSource.cs,
6667           DataGridColumnStyle.cs: Remove warnings.
6668
6669 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6670
6671         * Menu.cs: MergeMenu: Check menu argument for null before looping over
6672           it.
6673         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
6674           visibility of mdi child forms. FormSizeChangedHandler: update the
6675           maximized size if size has changed while maximized.
6676         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
6677           creating the handle.
6678         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
6679           avoid creating the handle if not created.
6680         * XplatUI.cs: Update debug output.
6681         * XplatUIStructs.cs: Added ToString's for a couple of structs.
6682
6683 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
6684
6685         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
6686         ProcessCmdKey().
6687         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
6688         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
6689         Implement keyboard shortcuts.
6690
6691 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6692
6693         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
6694         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
6695         ColorDialog and all derived classes.
6696
6697 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6698
6699         [ Fixes bug #79828 ]
6700
6701         * ToolBar.cs:
6702         - Rename ToolBarButtonInfor to ToolBarItem.
6703         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
6704         - Maintain an array of ToolBarItem, used instead of ToolBarButton
6705         collection to be able add same button more than one time on a toolbar.
6706         - Refactory all properties and methods to use ToolBarItem. 
6707
6708         * ToolBarButton.cs: 
6709         - Remove all propeties and methods that is now in ToolBarItem.
6710         - Rectangle propery now gets the rectangle from first ToolBarItem to
6711         mimic win32 behavior.
6712         - Size calculation and layout methods also removed.
6713
6714         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
6715         ToolBarItem instead of ToolBarButton to right drawing buttons when
6716         same button/separator was added more than one time to ToolBar.
6717
6718         * ThemeNice.cs: Same as above. 
6719
6720 2007-03-15  Andreia Gaita  <avidigal@novell.com>
6721
6722         * XplatUIX11.cs: Fire extra MouseMove events right after
6723         MouseDown and MouseUp, emulating win32's <censored> behaviour
6724         for apps that rely on it.
6725
6726 2007-03-15  Jackson Harper  <jackson@ximian.com>
6727
6728         * TextControl.cs:
6729         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
6730         it is drawn on the controls client window and there is no NC
6731         area.
6732         - Set the background color to gray on 2.0 when we are readonly.
6733
6734 2007-03-15  Chris Toshok  <toshok@ximian.com>
6735
6736         [ Fixes bug #81144 ]
6737         
6738         * XplatUIX11.cs: implement VirtualScreen independently of
6739         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
6740         property.
6741
6742 2007-03-15  Chris Toshok  <toshok@ximian.com>
6743
6744         * Hwnd.cs: add an internal field for the cached_window_state.
6745
6746         * XplatUIX11.cs: cache the window state, invalidating the cache
6747         (and thus re-querying the X server) only when we see an update to
6748         the _NET_WM_STATE property.
6749
6750 2007-03-15  Chris Toshok  <toshok@ximian.com>
6751
6752         * BindingSource.cs: get a lot of the unit tests working.
6753
6754 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6755
6756         * Control.cs: Modify UpdateStyles to store distances when bounds >=
6757         0 instead of just bounds > 0.  [Fixes bug #80912]
6758
6759 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6760
6761         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
6762         and methods.
6763
6764 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
6765         
6766         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
6767         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
6768         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
6769         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
6770
6771 2007-03-15  Chris Toshok  <toshok@ximian.com>
6772
6773         [ Fixes #81101 ]
6774         
6775         * Control.cs: add Ivan's fix for 81101, with a slight modification
6776         - you can set control.Target to null.
6777
6778 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
6779
6780         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
6781         HideDropDown, use Hide instead to prevent an NRE.
6782         [Fixes bug #81147]
6783
6784 2007-03-14  Jackson Harper  <jackson@ximian.com>
6785
6786         * TextBoxBase.cs: Mess with the creation stuff a little. We need
6787         to calculate the document before the handle is created, in some
6788         cases. (Actually just one case).
6789
6790 2007-03-14  Jackson Harper  <jackson@ximian.com>
6791
6792         * TextBoxBase.cs: Need to display the caret after letting the base
6793         wndproc handle the focus methods, because the caret display
6794         methods check the focus state.
6795         - Try to display the caret after updating it's position with SelectWord.
6796         - Don't need to do an immediate update on this recalc, since there
6797         will be an invalidate anyways.
6798
6799 2007-03-14  Jackson Harper  <jackson@ximian.com>
6800
6801         * TreeView.cs: Some workarounds so that we can match event order a
6802         little better.
6803
6804 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
6805
6806         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
6807         #80803. Avoid NullReferenceException when Control does not have
6808         parent. Fixed different blinkstyle issues. Only subscribe to Tick
6809         event a single time. Only draw error icon when control is created and
6810         visible. Fixes failing unit tests.
6811
6812 2007-03-14  Andreia Gaita  <avidigal@novell.com>
6813
6814         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
6815         Selecting events. Fire Leave and Enter events when changing tabs.
6816
6817 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
6818
6819         * TreeView.cs: Add TreeViewNodeSorter.
6820         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
6821
6822 2007-03-14  Chris Toshok  <toshok@ximian.com>
6823
6824         * Form.cs: go ahead and remove the RecreateHandles that jpobst
6825         removed earlier and I had him add back it.  It turns out metacity
6826         *does* in fact handle the MOTIF_WM_HINTS property changing, it
6827         just doesn't redraw the window titlebar until you resize the
6828         window.  This also means we aren't recreating the entire window
6829         hierarchy on X when you change this property.  And it looks better
6830         on windows, too.
6831
6832 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6833
6834         * ListViewItem.cs:
6835         * ListView.cs: Collecting selection information
6836         is now done in SelectedIndexCollection rather than in
6837         SelectedListViewItemCollection. This is done so we can
6838         have the selection information code in one single place
6839         (virtual mode selection information entirely depends on
6840         SelectedIndexCollection).
6841
6842 2007-03-13  Miguel de Icaza  <miguel@novell.com>
6843
6844         * ErrorProvider.cs: Add stubs for ISupportInitialize
6845
6846 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6847
6848         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
6849         in the right order with the right values, from the Checked property, 
6850         just as MS does (instead of triggering them from ListView).
6851
6852         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
6853
6854 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6855
6856         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
6857         the correct handler in OnItemCheck method (ItemCheckEventHandler 
6858         instead of EventHandler). This used to throw an InvalidCastException.
6859
6860 2007-03-13  Jackson Harper  <jackson@ximian.com>
6861
6862         * TextBoxBase.cs: Calculate the document before the handle is
6863         created, so there isn't an extra invalidate called.
6864
6865 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
6866
6867         * Form.cs: Don't set owner in ShowDialog until we are sure
6868         that we aren't going to throw an exception.  [Fixes bug #80773]
6869
6870 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
6871
6872         * TreeView.cs: Make it compile.
6873
6874 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6875
6876         * Control.cs: Another place we don't call SizeFromClientSize.
6877         * Form.cs: Another place we don't call SizeFromClientSize.
6878         [Fixes bug #81125]
6879
6880 2007-03-12  Jackson Harper  <jackson@ximian.com>
6881
6882         * TreeView.cs: Basically emulating some strangness here with
6883         exanding nodes and setting node positions when windows aren't
6884         created.
6885         - Also attempting to walk the node tree less than previously, and
6886         just use visible order calculations for determining offsets.
6887         - oops made scrolling backwards.
6888         * TreeNode.cs: We need to start nodes with a zero visible order,
6889         because the order calcs are based on the first nodes order.
6890
6891 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6892
6893         * Form.cs: Don't exit the program if RecreateHandle is called on
6894         the main form.
6895
6896 2007-03-12  Chris Toshok  <toshok@ximian.com>
6897
6898         * XEventQueue.cs: remove the use of PostQuitState.
6899
6900         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
6901         WM_QUIT message in GetMessage, return false (and if we're in the
6902         nested WaitForHwndMessage, repost the WM_QUIT message).
6903
6904 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6905
6906         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
6907         or the MaximizeBox properties.  [Part of bug #80640]
6908
6909 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
6910
6911         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
6912         no links.
6913
6914 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6915
6916         * ToolStripItem.cs: Fix some tests I broke by checking Visible
6917         instead of visible.
6918
6919 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
6920
6921         * FileDialog.cs: Use text of File name combobox to determine what
6922         files the user selected. Added tokenizer to parse the file names.
6923         Fixes bug #81123.
6924
6925 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6926
6927         * Control.cs: We can't call SizeFromClientSize in the constructor,
6928         but we still need to do the same work, so make an internal version.
6929         [Fixes bug #80621]
6930
6931 2007-03-12  Jackson Harper  <jackson@ximian.com>
6932
6933         * TreeView.cs:
6934         * TreeNode.cs:
6935         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
6936         IsExpanded.
6937
6938 2007-03-12  Jackson Harper  <jackson@ximian.com>
6939
6940         * TextBoxBase.cs: Now that the handles are being created a little
6941         later, we need to make sure that the document is recalculated when
6942         the handle is created.
6943
6944 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
6945
6946         * Theme.cs: GetLinkFont abstract method added.
6947         
6948         * LinkLabel.cs: 
6949         - Remove CalcTrimRectangle, no longer needed.
6950         - Factor also remove, position issues must be fixed in libgdiplus.
6951         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
6952         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
6953         care about font used to draw links.
6954         - Set TabStop to true when control is "Selectable", control is selectable
6955         when have one or more links. Fixes #80501 (test case is also added).
6956         - Set the LinkArea values after links change, LinkArea values must be
6957         based in first link position and size, a test case was created.
6958         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
6959         the attribute must be true LinkArea.Length > 0. The same was applied to
6960         TabStop.
6961         
6962         * ThemeWin32Classic.cs: 
6963         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
6964         in draw method.
6965         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
6966         color change.
6967         - Draw focus rectangle for every parts focused, including parts that 
6968         is on another line, its because regions returns various rectangles
6969         and not only one. Needed to mimic W32 look.
6970         - Uses Graphics.Clip to delimite region painted, it mean that now 
6971         complete text is passed to DrawString, with this we solve layout
6972         issues without create another text renderer.
6973         - Uses Region.Intersect to fix some flickers problems, now only needed
6974         parts will redrawed.
6975         - This changes fixes #79614 and some other unreported issues, on Linux 
6976         some layout problems still remain, the problem is under 
6977         MeasureCharacterRanges but it is an libgdiplus bug.
6978
6979 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
6980
6981         * TextBox.cs: Set for foreground color.
6982         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
6983         this is already done in Control.
6984
6985 2007-03-10  Jackson Harper  <jackson@ximian.com>
6986
6987         * TextBox.cs: Set the background color, but reset the
6988         backcolor_set flag which is just for the user setting the
6989         background color.
6990
6991 2007-03-09  Chris Toshok  <toshok@ximian.com>
6992
6993         * Control.cs: really remove the call to XplatUI.SetVisible from
6994         CreateHandle(), like I said I did when I merged the branch.
6995
6996         * BindingSource.cs: implement some more of this stuff.
6997
6998 2007-03-09  Jackson Harper  <jackson@ximian.com>
6999
7000         * TextBox.cs: Don't explicitly set our background colors.
7001         * TextControl.cs:
7002         * TextBoxBase.cs: Draw readonly text.
7003         - Need to invalidate when backcolor or readonly are changed.
7004         
7005 2007-03-09  Jackson Harper  <jackson@ximian.com>
7006
7007         * TextBoxBase.cs: Don't set the forecolor until the handle is
7008         created.
7009         - Do not raise OnPaint, and removed some old debug code.
7010
7011 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
7012
7013         * ScrollableControl.cs: Fix mouse wheel scrolling.
7014
7015 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
7016
7017         * Control.cs: Wire up MouseDoubleClick event.
7018
7019 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
7020
7021         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
7022         top or bottom.
7023         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
7024         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
7025         item is added.  This logic was moved to ToolStrip.OnItemAdded.
7026         [Fixes bug #81090]
7027
7028 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7029
7030         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
7031
7032 2007-03-08  Jackson Harper  <jackson@ximian.com>
7033
7034         * TreeView.cs: Show the correct image for selected node (this used
7035         to work, not sure how the code got deleted). Also implemented 2.0 feature
7036         SelectedImageKey.
7037
7038 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7039
7040         * ListView.cs:
7041         * ListViewItem.cs: Cache index in items when retrieving them
7042         in VirtualMode.
7043
7044 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7045
7046         * ToolStripItem.cs: Don't return the explicit_size if we are using 
7047         AutoSize.  Fixes invalidation issue when user has explicitly set a
7048         size and has AutoSize = true.
7049
7050 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7051
7052         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
7053
7054 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7055
7056         * DataGridView.cs: Remove event handler from DataView when a
7057         DataTable is used as DataSource.
7058
7059 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7060
7061         * Control.cs: Create internal setter for client_size to allow it to be
7062         set without triggering resizing code.
7063         * Form.cs: Calculate client_size in constructor, only change client_size
7064         in FormBorderStyle property if Handle has been created.
7065         [Fixes #80574, #80791]
7066
7067 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
7068
7069         * SystemInformation.cs: Add TerminalServerSession.
7070
7071 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7072
7073         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
7074         TreeView code.
7075
7076 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7077
7078         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
7079         Handle before we were supposed to.  Now checks ActivateOnShow property
7080         in Control.
7081         * Control.cs: Add internal ActivateOnShow property.
7082         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
7083         for ActivateOnShow.
7084         * Hwnd.cs Remove no longer needed no_activate field.
7085
7086 2007-03-07  Jackson Harper  <jackson@ximian.com>
7087
7088         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
7089         2.0 properties
7090         * DrawTreeNodeEventHandler.cs: Add
7091         * DrawTreeNodeEventArgs.cs: Correct default value.
7092         
7093 2007-03-07  Chris Toshok  <toshok@ximian.com>
7094
7095         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
7096         to be called before NativeWindow.WndProc.  Put the HwndCreating
7097         magic there to hook up our Hwnd's to handles.
7098
7099 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
7100
7101         * DataGridView.cs: Comment out debug code.
7102
7103 2007-03-07  Chris Toshok  <toshok@ximian.com>
7104
7105         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
7106         to make the rest of the world happy]
7107
7108         * Control.cs (CreateHandle): there's no need to call
7109         XplatUI.SetVisible here, it's effectively done by
7110         XplatUI.CreateWindow on X now, and always was on windows.
7111
7112         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
7113         shortcircuit out of the loop if we have a message loop running on
7114         this thread.
7115
7116         [Changelog from merge]
7117
7118         2007-03-05  Chris Toshok  <toshok@ximian.com>
7119
7120                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
7121                 causes handle creation.
7122
7123         2007-02-28  Chris Toshok  <toshok@ximian.com>
7124
7125                 * ApplicationContext.cs: Add a flag to make sure we only raise the
7126                 ThreadExit event once (ExitThreadCore can be indirectly called
7127                 from a few places.)  I don't like the additional flag, but it
7128                 makes the event ordering/count correct.
7129
7130                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
7131                 without locking the collection.  An enumerator doesn't give us any
7132                 protection from modification anyway.  Lock the thread hash and
7133                 replace the complicated enumerator loop with a foreach.
7134                 (Application.CloseForms): make internal so it can be called from
7135                 ApplicationContext.  This should probably be moved to MWFThread.
7136                 (Application.ExitThread): don't call MWFThread.Current.Exit()
7137                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
7138                 when the runloop exits (in response to WM_QUIT.)
7139                 (Application.RunLoop): add a comment (and check) for
7140                 context.MainForm being null after setting context.MainForm.Visible
7141                 = true.  This is because you're perfectly free to dispose of a
7142                 form in VisibilityChanged.  Chalk this up to another case where we
7143                 need to synchronously generate WM_ACTIVATE from Control.Show.
7144                 Also, add handling for WM_QUIT here so we'll exit the loop.
7145                 
7146                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
7147                 fact that we don't wait if we're only unmapping the whole_window
7148                 makes me a bit nervous, but it doesn't seem to cause any problems
7149                 yet.
7150
7151                 also, add a comment about the stupid, broken and wrong resetting
7152                 of PostQuitState to false in GetMessage().
7153
7154                 In PostQuitMessage, we need to add a WM_QUIT message to the
7155                 thread's queue.  We use the FosterParent to get the right
7156                 handle/hwnd/queue.
7157
7158                 Lastly, in SetVisible, we need to unmap both windows, since the
7159                 waiting only happens when we're unmapping the client window.  So
7160                 now, the *only* time we unmap just the whole_window is in the hack
7161                 for resizing a control to 0,0.
7162                 
7163         2007-02-21  Chris Toshok  <toshok@ximian.com>
7164
7165                 * Application.cs (CloseForms): rewrite this so that we don't
7166                 modify the list while we're traversing it.
7167
7168         2007-02-20  Chris Toshok  <toshok@ximian.com>
7169
7170                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
7171                 of OnHandleCreated.
7172                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
7173                 handle is created.  otherwise we'll create it here.
7174                 (VerticalScrollEvent): same here.
7175
7176                 * Application.cs (CloseForms): call Form.Dispose, don't post
7177                 WM_CLOSE_INTERNAL.
7178
7179                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
7180                 here. Application should Dispose() of the Form's.
7181
7182                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
7183                 WM_DESTROY as well.
7184                 (MapWindow,UnmapWindow): only actually do the waiting for
7185                 SHOWWINDOW if the control we're dealing with is a Form.
7186                 (CreateWindow): if the control isn't a form, SendMessage
7187                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
7188
7189                 * Control.cs (SetVisibleCore): always use is_visible here, not
7190                 value.  If we use value, we can end up re-setting something
7191                 visible if, for instance, you do Control.Hide() in a delegate
7192                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
7193
7194         2007-02-20  Chris Toshok  <toshok@ximian.com>
7195
7196                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
7197                 the message we need.  PeekMessage returning false should not be a
7198                 condition under which we exit the loop.
7199
7200         2007-02-15  Chris Toshok  <toshok@ximian.com>
7201
7202                 * Control.cs (Refresh): only refresh if we've got a handle and are
7203                 visible.
7204                 (CreateAccessibilityInstance): CreateControl() here.
7205                 (UpdateChildrenZOrder): complicate the code loop even more by
7206                 taking into account controls that haven't had their handle
7207                 created, and those that aren't visible.  But on the flip side,
7208                 simplify the code by splitting it into two loops.  one which
7209                 builds up the list of child controls we're interested in, and the
7210                 other that sets the z order of those children.
7211
7212         2007-02-14  Chris Toshok  <toshok@ximian.com>
7213
7214                 * Control.cs: Control.AccessibilityObject causes the control to be
7215                 created, not just the handle.
7216
7217         2007-02-14  Chris Toshok  <toshok@ximian.com>
7218
7219                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
7220                 problem on X where a window might have its handle created (and be
7221                 visible) while the window is unmapped.  calling XConfigureWindow
7222                 on an unmapped window is bad, and generates X errors.
7223
7224         2007-02-13  Chris Toshok  <toshok@ximian.com>
7225
7226                 * Control.cs (CreateHandle): don't loop over our children setting
7227                 their parent here.  do it when in WndProc when we're shown.
7228                 (UpdateChildrenZOrder): make this internal so we can call it from
7229                 ScrollableControl.
7230                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
7231                 creating its handle.  Also, remove the calls to PerformLayout from
7232                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
7233                 OnVisibleChanged only seems to be called directly here for the
7234                 toplevel control.  It's propagated down the window hierarchy by
7235                 calls to child.OnParentVisibleChanged.
7236                 (OnVisibleChanged): don't do layout here - it's done (oddly
7237                 enough, according to a glance at stack traces on ms.net..) in
7238                 ScrollableControl.
7239                 
7240                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
7241                 z order of our children before calling PerformLayout.
7242
7243         2007-02-12  Chris Toshok  <toshok@ximian.com>
7244
7245                 [big change, fixes #80020]
7246                 
7247                 * AccessibleObject.cs: we need to make owner internal again to fix
7248                 some of ControlAccessibleObject.
7249
7250                 * Control.cs: lots of changes here.  add support for WM_CREATE,
7251                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
7252                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
7253                 we create child controls.  leave the MonoTODO's for the
7254                 accessibility calls, but fix the exceptions so the tests pass.
7255
7256                 Add the InvalidOperationExceptions to Invoke methods, and remove a
7257                 couple of InvokeInternal methods we aren't using.
7258                 
7259                 Also, add a couple of CreateHandle calls in places where we know
7260                 the handles are being created but our code doesn't reference
7261                 .Handle.
7262
7263                 Make SetVisibleCore call OnVisibleChange if the handle isn't
7264                 created.  If the handle is created, we rely on XplatUI.SetVisible
7265                 generating the event synchronously.
7266                 
7267                 Lastly, make sure we don't use this.Handle inside CreateHandle,
7268                 because we can call back into client (and that code can dispose of
7269                 the control).
7270
7271                 * XplatUIStructs.cs: misc/cleanup.
7272
7273                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
7274                 although we don't populate the wParam properly.
7275                 (CreateWindow): generate WM_CREATE.
7276                 (MapWindow,UnmapWindow): make these calls synchronous, at great
7277                 performance expense (particularly in the unmap case), to match
7278                 win32 behavior.
7279
7280                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
7281                 to call it.
7282                 (set_MdiParent): don't recreate the handle unless it's been
7283                 created already.
7284                 
7285                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
7286                 it's created.
7287
7288                 * NativeWindow.cs: this is probably the weirdest part of the
7289                 patch.  We need a way to link up the window being created to the
7290                 WM_CREATE message.  Since we can only be creating one window at a
7291                 time on a given thread, we keep track of a per-thread reference so
7292                 we can dispatch it properly.  We also need to keep track of the
7293                 Hwnd currently being created so that the win32 backend doesn't
7294                 have problems.
7295                 
7296                 * XplatUIWin32.cs: a similar change to the one we made in
7297                 NativeWindow.cs.
7298
7299 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7300
7301         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
7302         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
7303         to draw the menu shortcut string.
7304
7305 2007-03-07  Jackson Harper  <jackson@ximian.com>
7306
7307         * TreeNode.cs: Add the 2.0 collapse method.
7308
7309 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7310
7311         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
7312
7313 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7314
7315         * DataGridView.cs: Change DataSource will clear column and row
7316         lists. Call Invalidate() to reflect DataSource change.
7317
7318 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7319
7320         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
7321         and a new row is added to it.
7322
7323 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7324
7325         * DataGridView.cs: Add columns when DataSource is en empty list but
7326         is a System.Data.DataView (from a System.Data.DataTable).
7327
7328 2007-03-06  Andreia Gaita  <avidigal@novell.com>
7329
7330         * Label.cs: Implement AutoEllipsis (2.0)
7331
7332 2007-03-06  Jackson Harper  <jackson@ximian.com>
7333
7334         * TreeView.cs: Implement 2.0 TopNode setter property.
7335         - Use a local var instead of the skipped_nodes field for computing
7336         how many nodes to skip.  Otherwise we won't scroll because the
7337         valuechanged handler checks if skipped_nodes is equal to the new
7338         value.
7339         - Implement 2.0 Sort method.
7340         - Add useless 2.0 DoubleBuffer property
7341         - Implement 2.0 LineColors property.  Lets you change the color of
7342         the lines in the tree. Terribly useful for creating non cohesive
7343         desktops.
7344         - Implement 2.0 image key feature.
7345
7346 2007-03-06  Jackson Harper  <jackson@ximian.com>
7347
7348         * TreeView.cs: We can't get the bounds of the nodes before raising
7349         the AfterSelect event, because that event could change the node's
7350         bounds (scrolling, font change, etc).
7351
7352 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7353
7354         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
7355         * Form.cs: Don't recreate handle when creating FormWindowManager, just
7356           update window styles. In CreateParams us VisibleInternal instead of
7357           VIsible to get the actual visible flag set for this form.
7358         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
7359           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
7360           handle the case when the form is already maximized, in which case
7361           it should be restored. Fixes #81043.
7362
7363 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7364
7365         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
7366
7367 2007-03-05  Jackson Harper  <jackson@ximian.com>
7368
7369         * TreeViewHitTestInfo.cs: implement.
7370
7371 2007-03-05  Jackson Harper  <jackson@ximian.com>
7372
7373         * InternalWindowManager.cs: class status fix.
7374
7375 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7376
7377         * InternalWindowManager.cs: All windows that have a parent
7378         are confined to their parent when they're being moved.
7379         Fixes #80822.
7380
7381 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
7382
7383         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
7384         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
7385
7386 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7387
7388         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
7389           buttons invisible before deciding which ones should be visible
7390           (fixes minimize/maximize buttons showing up in toolwindows). Remove
7391           an unused variable.
7392         * InternalWindowManager.cs: Remove warning.
7393
7394 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7395
7396         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
7397         to throw an InvalidOperationException is virtual mode is being used.
7398
7399 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7400
7401         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
7402         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
7403         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
7404         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
7405         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
7406         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
7407
7408 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7409
7410         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
7411           driver.KeyboardDelay from XplatUI.KeyboardDelay 
7412         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
7413           (patch by Sergey Volk)
7414
7415 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7416
7417         * ToolWindowManager.cs: Added, contains logic for
7418           tool windows.
7419         * CreateParams.cs: Add a few helper methods and an
7420           internal variable to know which control the CreateParams belongs
7421           to.
7422         * Control.cs: Call Form.ChangingParent when the
7423           parent is about to be changed.
7424         * XplatUIX11.cs: DeriveStyles (): Set
7425           caption_height for all windows that have captions and are children.
7426           Update to use ToolWindowManager instead of InternalWindowManager
7427           for ToolWindows.
7428         * XplatUIWin32.cs: Set fake window styles for all
7429           windows that have window managers.
7430         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
7431           now duplicated for mdi windows when they are
7432           maximized, first for the buttons the window itself has, then for
7433           the buttons that appear in the menu bar. Makes things a little
7434           easier). Updated UpdateWindowDecorations, SetWindowState and the
7435           mouse eventhandlers accordingly.
7436         * Form.cs: Add ChangingParent (), contains the
7437           logic of what should happen when the parent changes. In MdiParent
7438           don't set things that ChangingParent () is doing. When handling
7439           WM_CLOSE, we can close the form if there are any other modal forms
7440           and the current form is a descendent of the modal form.
7441         * InternalWindowManager.cs: A lot of refactoring,
7442           the title buttons are now extracted to a separate container class
7443           that takes care of all button code (clicks, tooltips, etc). Moved
7444           Iconic|Maximized|Normal Bounds properties to this class from
7445           MdiWindowManager, so that the window state logic can succeed for
7446           other than mdi wm's. Implemented general window state change logic.
7447           Moved CreateButtons to ThemeWin32Classic, since the theme might
7448           override which buttons are available when as well as the exact
7449           location.
7450         * FormWindowManager.cs: Added, contains logic for
7451           normal forms.
7452         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
7453           which buttons go where (and if they are at all visible). 
7454           Removed special handling of maximized windows, since they aren't special. 
7455           In DrawManagedWindowDecorations don't try to draw the text if it is
7456           empty.
7457         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
7458           use whatever the wm gives us.
7459
7460 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7461
7462         * ButtonBase.cs: Add 2.0 properties.
7463         * Button.cs: Override Draw for 2.0.
7464         * Control.cs: Add Entered and Selected properties.
7465         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
7466         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
7467         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
7468         buttons.
7469         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
7470
7471 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7472
7473         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
7474
7475 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7476
7477         * XplatUIWin32.cs: Register a new class with Windows each time we get
7478         a new ClassStyle.  [Fixes bugs #79432, #80817]
7479         * Controls.cs: Set the correct ClassStyle in CreateParams.
7480         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
7481
7482 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
7483
7484         * ListView.cs: Add fireEvent argument to ReorderColumn since the
7485         ColumnReordered event must not be signaled when modifying DisplayIndex
7486         of a ColumnHeader. Added internal ReorderColumns method which takes
7487         care of drawing, and updating the internal DisplayIndex of the
7488         ColumnHeader. Added AddColumn method which is invoked from
7489         ColumnHeaderCollection when adding or inserting columns, and which
7490         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
7491         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
7492         Recalculated dispay indices after removing a ColumnHeader.
7493         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
7494         match MS. Allows last display index to be returned after ListView
7495         is disposed. Update actual location of ColumnHeader when DisplayIndex
7496         is modified.
7497
7498 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
7499
7500         * LinkLabel.cs: Improve CalcTrimRectangle.
7501         
7502         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
7503
7504 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7505
7506         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
7507         get rectangle as a result value.
7508
7509 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7510
7511         * LinkLabel.cs: Theres some diferences between rectangle return from 
7512         MeasureCharacterRanges and the area used for DrawString to fix this 
7513         CalcMeasurementFactor method was created, it calcules the diferences
7514         to be use later to adjust rectangle in draw operations. Fixes #80473.
7515         
7516         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
7517         to adjust draw rectangle.
7518
7519 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7520
7521         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
7522         text and some other changes to reduce and optimize source code.
7523
7524 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7525
7526         * RadioButton.cs: Implement 2.0 event.
7527         * RelatedImageListAttribute.cs: Implement new class.
7528
7529 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7530
7531         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
7532
7533 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7534
7535         * CheckBox.cs: Implement 2.0 functionality.
7536
7537 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7538
7539         * ListView.cs: Refactor Add and AddRange methods of
7540         ListViewItemCollection, to not update the ListView
7541         everytime an item is added in AddRange. Also move the update
7542         code to a new CollectionChanged method, and call it
7543         from other methods that need it as well (this should also fix some
7544         bugs when Sorting is used).
7545
7546 2007-02-27  Jackson Harper  <jackson@ximian.com>
7547
7548         * TextControl.cs: Try to never let the caret stay in a non-text
7549         tag.
7550         * TextBoxBase.cs: Update the caret.
7551
7552 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
7553
7554         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
7555         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
7556         delete POINT structure, duplicate of one in XplatUIStructs.
7557         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
7558
7559 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
7560
7561         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
7562         edit box since otherwise the Label would immediately be set (even if
7563         the user did not modify the label). In OnKeyDown set Handled to true
7564         if Return or Escape was pressed. In ColumnHeaderCollection unlink
7565         columns that are to be removed. In ListViewItemCollection unlink items
7566         that are to be removed.
7567
7568 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
7569
7570         * TextRenderer.cs: If we set a GDI clip region, we need to clear
7571         it when we are done.  [Fixes bug #80949]
7572
7573 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7574
7575         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
7576
7577 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7578
7579         * ListView.cs: I forgot to commit the changes for ListView 
7580         in my previous patch.
7581
7582 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7583
7584         * Clipboard.cs: Partially implement an overload of SetDataObject.
7585         * Form.cs: Implement ShowWithoutActivation.
7586         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
7587
7588 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7589
7590         This is a first set of changes to make the Virtual mode works,
7591         by avoiding the retrieval of ListViewItem instances until
7592         draw time.
7593
7594         * ListView.cs: Store item position in the ListView instead of the
7595         ListViewItem, this way we don't request the Bounds property of
7596         ListViewItem inside the ListView calculations, as well as cache the item
7597         size in item_size field. Store indexes instead of ListViewItem
7598         instances in the matrix used by icon view. Add a ItemMatrixLocation
7599         struct to hold the row and col info of the matrix info.
7600
7601         * ListViewItem.cs: Don't store the location anymore, and only cache
7602         the rectangles for GetBounds. Use the ListView.GetItemLocation
7603         method to retrieve the actual location.
7604
7605 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7606
7607         * TextRenderer.cs: Add clipping support, thanks to George.
7608         [Fixes bug #80949]
7609
7610 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7611
7612         * ListViewItem.cs: Cancel label edit when item is removed from 
7613         ListView.
7614         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
7615         event before the edit textbox is displayed.  Added CancelEdit method
7616         which is used end to editing while ignoring the value set by the
7617         user. In EndEdit, set focus to ListView to avoid losing focus to
7618         other controls. In ListViewItemCollection.Clear, cancel editing of
7619         any of the items.  In Remove, cancel editing of item being removed.
7620         Avoid udplicate code by modifing RemoveAt to invoke Remove.
7621
7622 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7623
7624         * FileDialog.cs: Update FSEntry when move is successful. Fixes
7625         bug #80948.  
7626
7627 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7628
7629         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
7630         compatible with non X11 systems. Fixes #80901.
7631
7632 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7633
7634         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
7635         whether the item should be unselected and reselect. We do no want this
7636         when we're starting to edit the label. Do not fire the 
7637         SelectedIndexChanged event from ListView when its already been fired
7638         by modifying ListViewItem.Selected. Fixes bug #80943.
7639
7640 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7641
7642         * TextRenderer.cs: Previos commit logic was backwards.
7643
7644 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7645
7646         * TextRenderer.cs: Don't add padding on MeasureText if we were
7647         sent the NoPadding flag.
7648
7649 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7650
7651         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
7652         after DrawButton. To prevent image overlaps button borders SetClip and 
7653         ResetClip added before and after draw image. Fixes #79129.
7654
7655 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7656
7657         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
7658         window size, it fix problem when you run under win32 that theres
7659         Size diferent than ClientSize. Also fix controls size and positions
7660         to mimic Win32. Fixes #80837.
7661
7662 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
7663
7664         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
7665         menu area to fix some problems for non X11 systems. Fixes #80613.
7666
7667 2007-02-22  Jackson Harper  <jackson@ximian.com>
7668
7669         * TreeNode.cs: When a node is expanded, set its is_expanded flag
7670         even if it doesn't have any children.
7671
7672 2007-02-22  Jackson Harper  <jackson@ximian.com>
7673
7674         * TreeView.cs: Calculate the top node 'on the fly', this
7675         eliminates issues where you need to click on the tree before
7676         scrolling it to get the top node computed correctly.
7677         * TreeNodeCollection.cs: We don't need to mess with the top node
7678         anymore.
7679
7680 2007-02-22  Jackson Harper  <jackson@ximian.com>
7681
7682         * DataGridViewRow.cs: Fix typo so height can actually be set.
7683         Patch by Peter Grimm.
7684
7685 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7686
7687         * FileDialog.cs: Fixed support for renaming files and directories.
7688         * ListView.cs: Do not lose focus when edit is canceled. Process
7689         Escape as regular key (to prevent closing of dialogs).
7690
7691 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7692
7693         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
7694         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
7695
7696 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7697
7698         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
7699         did not modify label.
7700         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
7701         modified the text. Reset Label when user presses Escape in edit mode.
7702         Move focus to ListView after having cancelled or finished editing the
7703         label.
7704
7705 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
7706
7707         * ComboBox.cs: Removed unnecessary initializations. Marked items field
7708         private. Clear textbox when Text is set to null and SelectedIndex is
7709         already -1.
7710         * FileDialog.cs: Removed unnecessary initializations. Removed 
7711         workarounds for ComboBox bugs that are now fixed. Modified
7712         DefaultExt, InitialDirectory and Title property to change null to
7713         zero-length string in getters. Avoid directly accessing fields.
7714
7715 2007-02-20  Jackson Harper  <jackson@ximian.com>
7716
7717         * TextControl.cs: Remove RecalAlignments call, that was some
7718         debugging leftovers.
7719         - Don't use the line indent when we shouldn't.
7720         * RichTextBox.cs: Add support for paragraph left indents.
7721
7722 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7723
7724         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
7725         Seems like the class status pages doesn't catch params differences.
7726
7727 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7728
7729         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
7730
7731 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7732
7733         * ComboBox.cs: Setting Text should have no effect if item text of
7734         selected item exactly matches value. First lookup text using
7735         case-sensitive comparison, and fallback to case-insensitive comparison.
7736         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
7737         allow startIndex to be last index. Changed ArgumentOutOfRangeException
7738         paramname to match MS. Restart from first item if string is not found
7739         after startIndex. Fixed paramname of ArgumentNullException that is
7740         thrown for null value in ObjectCollection.Contains.
7741
7742 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7743
7744         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
7745
7746 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7747
7748         * ListControl.cs: In SelectedValue use value.Equals to compare for
7749         equality instead of ==, otherwise it will fail for strings.
7750         Fixes #80794.
7751
7752 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7753         
7754         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
7755         since the caret won't show up unless ShowSelection is true. 
7756         Fixes #80795.
7757
7758 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7759
7760         * Application.cs: When disabling all forms but the main form, do not
7761           disable any descendants of the main form (such as mdi children or
7762           other parented forms). Fixes #80822 on Windows.
7763         * Form.cs: If we have a parent, set the WS_CHILD style.
7764         * Control.cs: Update the window styles if the control whose parent has
7765           changed is a form (the WS_CHILD style has to be switched).
7766
7767 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7768
7769         * XplatUIStructs.cs: MsgUIState structure added.
7770
7771 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7772
7773         * FileDialog.cs: Removed need for separate fileName field. On 2.0
7774         profile, do not check filename(s) for illegal character if filename(s)
7775         were set non-interactively but always check on 1.0 profile. Fixed NRE
7776          in DefaultExt and only strip off first leading dot. Improve exception
7777         message when invalid Filter is set. Do not ignore InitialDirectory if
7778         it does no exist. Store specified Title, and if empty use default
7779         title (depending on type of dialog). Added an internal DialogTitle 
7780         property for retrieving dialog title. Fixed logic of displayed dir to
7781         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
7782         string as its buggy.
7783         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
7784         FileName is a zero-length string (it can never be null). Override 
7785         DialogTitle property to set default title of dialog box.
7786         * SaveFileDialog.cs: Override DialogTitle property to set default
7787         title of dialog box.
7788
7789 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7790
7791         * FileDialog.cs: Modify default text of filename and filetype labels
7792         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
7793         after we've updated the SelectedIndex. Fixes part of bug #80887.
7794         * SaveFileDialog.cs: Set text of filetype label.
7795
7796 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7797
7798         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
7799         label field. Needed by latest Jackson's fixes for ListView.
7800
7801 2007-02-16  Andreia Gaita  <avidigal@novell.com>
7802
7803         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
7804         print preview images.
7805
7806 2007-02-16  Jackson Harper  <jackson@ximian.com>
7807
7808         * ListView.cs: Make AfterLabelEdit work correctly.
7809         * FileDialog.cs: After changing the name of the folder, we have to
7810         make sure that it is created, or that we pop up an error because
7811         it already exists.
7812
7813 2007-02-16  Jackson Harper  <jackson@ximian.com>
7814
7815         * X11Dnd.cs: Implement aliases on mime handlers, so things like
7816         System.String are mapped to text.
7817         - Handle dataobjects, getting all the possible formats out of them
7818         - We dont need the drag event args before we give feedback. This
7819         allows feedback cursors to be immediate before selections have
7820         been converted.
7821
7822 2007-02-16  Jackson Harper  <jackson@ximian.com>
7823
7824         * TextBoxBase.cs: Modified the method for inserting images to
7825         taking a line and position instead of tag and position.
7826         * RichTextBox.cs: Handle PngBlip data by inserting the png image
7827         into the RTF file.
7828         * TextControl.cs: Allow images to be inserted as the first tag of
7829         a line.
7830         - Fix some off by one issues when we assume the first tag is a
7831         text tag, not an image tag.
7832
7833 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7834
7835         * ListView.cs: Set focus to ListView when ItemControl gets a
7836         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
7837         Fixes part of #80467.
7838
7839 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7840
7841         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
7842           validate Text input (if null or empty string reset Value to default
7843           value). Fixes #80830.
7844
7845 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7846
7847         * ListView.cs: Set owner as null for columns and items when
7848         Dispose is invoked. Fixes #80607.
7849
7850 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
7851
7852         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
7853         showing DropDowns, don't show a Grip when doing Flow layout.
7854         [This fixes the toolbox in PDN 2.72.]
7855         * ToolStripItem.cs: Add Anchor property and some internal properties to
7856         reduces needed changes to FlowLayout.
7857         * ToolStripOverflow.cs: Remove unused variable.
7858         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
7859         use it in the layout calculations.
7860
7861 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7862
7863         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
7864         reported in #79640.
7865         
7866         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
7867         size calculation.
7868
7869 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7870
7871         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
7872         MeasureString format, it can make button very large in some cases, it is
7873         strange but is what win32 do.
7874
7875 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7876
7877         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
7878         size calculation.
7879
7880         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
7881         rendering, the value is based on MenuAccessKeysUnderlined.
7882
7883 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7884
7885         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
7886         for most themes.
7887         
7888         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
7889         
7890         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
7891         and use MenuAccessKeysUnderlined instead.
7892
7893 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7894
7895         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
7896         A selected control would not get a Focus call if:
7897                 - the default active control of the container is the same as
7898                   the one that was selected
7899                 - we are switching from one container to another
7900         Under these conditions, the container being selected already has
7901         an active_control, which is the same as the one being activated, 
7902         so set_ActiveControl would always return and not send the Focus
7903         call. Fix to check if the currently active control of the container
7904         is actually focused.
7905
7906 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
7907
7908         * StatusStrip.cs: Implement the spring layout.
7909         * ToolStripControlHost.cs: Make sure the hosted control's visibility
7910         always matches the host.
7911         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
7912         and TextAfterImage.
7913
7914 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7915
7916         * Control.cs: Code reorganization only.
7917           - Reorganize the WndProc cases so that each case has it's own handling method, 
7918           to help with the no-line-numbering stack traces.
7919           - Formatting changes (it's vstudio's fault, really :p)
7920
7921 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7922
7923         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
7924           Thread.CurrentUICulture to match DateTimePicker's (and MS)
7925           behaviour.
7926
7927 2007-02-12  Jackson Harper  <jackson@ximian.com>
7928
7929         * RichTextBox.cs:
7930         * TextBox.cs: By default we have a non multiline document
7931         - use the multiline property instead of the internal variable
7932         * TextBoxBase.cs: Treat multiline and non multiline the same in
7933         most places.
7934         - Use the documents multiline flag instead of tracking it ourself
7935         * TextControl.cs: Attempt at getting multiline to match MS
7936         behavior.  Lines now track an offset, which is either their X or Y
7937         offset depending on whether or not we are in multiline mode.
7938         - Update all the methods to understand that lines have an X value.
7939         - Fix crash in Undo::Duplicate when empty lines are deleted.
7940
7941 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7942
7943         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
7944         code moved to properties PreferredHeight and PreferredWidth. It solve the
7945         all problems when preferred sizes must be recalculated. Fixes #80801.
7946
7947 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7948
7949         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
7950         font height when compatible_text_rendering is false. Partially fix #80801.
7951
7952 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7953
7954         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
7955
7956 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7957
7958         * Form.cs: Improved exception messages in ShowDialog.
7959
7960 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7961
7962         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
7963         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
7964         if not set. Fixes bug #80764. Avoid accessing current_settings field
7965         directly.
7966
7967 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
7968
7969         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
7970         false.
7971
7972         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
7973         public in 2.0 and for easy maintenance and dont break compatibility it is 
7974         internal in 1.1.
7975         
7976 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7977
7978         * ToolStripItem.cs: Implement using images from ImageList.
7979
7980 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7981
7982         * DateTimePicker.cs: Change default date-formatting culture from
7983           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
7984           seems to be the way MS does it.
7985
7986 2007-02-08  Andreia Gaita  <avidigal@novell.com>
7987
7988         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
7989         (the 6 was cut off on the right side)
7990
7991 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7992
7993         * Form.cs: Tell MenuStrips to close when the form is clicked.
7994         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
7995         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
7996         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
7997         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
7998         support for Overflow, where items that do not fit are automatically
7999         reparented to a drop down menu.
8000         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
8001         Also: fixes bug #80747.
8002
8003 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8004
8005         * ComboBox.cs: Remove warning (unused code).
8006         * ScrollableControl.cs: Remove warning for 1.1 profile.
8007
8008 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8009
8010         * Form.cs: Remove a warning.
8011
8012 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8013
8014         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
8015           'g' specifier, not documented anywhere, but seems to always show up
8016           as a single space (might have something to do with the DateTime 'g'
8017           specifier, which is the era format, but since DateTimePicker can't
8018           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
8019           won't crash if the format has an unmatched quote. Now shows
8020           single-character formats correctly. Fixes #80744.
8021
8022 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
8023
8024         * StatusStrip.cs: Stretch property needs to call base.Stretch,
8025         not this.Stretch to fix stack overflow. [Fixes bug #80760]
8026
8027 2007-02-07  Chris Toshok  <toshok@ximian.com>
8028
8029         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
8030         background color.  it overwrites the background image we've
8031         already painted.  Fixes #80599.
8032
8033 2007-02-07  Chris Toshok  <toshok@ximian.com>
8034
8035         * DataGrid.cs: return immediately from Edit() when there are no
8036         columns.  Fixes #80662.
8037
8038 2007-02-07  Chris Toshok  <toshok@ximian.com>
8039
8040         * MessageBox.cs: fix #80625.  don't always show the Help button in
8041         2.0.  use the displayHelpButton parameter to determine if we
8042         should show it. Also, make the internal show_help field private.
8043
8044 2007-02-07  Chris Toshok  <toshok@ximian.com>
8045
8046         * Control.cs (SetVisibleCore): check in the proposed patch for
8047         80604, and set is_visible before calling CreateControl.
8048
8049 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
8050
8051         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
8052         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
8053         on it.
8054
8055 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
8056
8057         * MenuAPI.cs: hotkey_active internal field added, it is required because
8058         we need to know when hotkeys must be draw, before this change a keystate
8059         Navigating was used but we can have menu in navigating state without
8060         hotkeys. Fixes #80694.
8061         
8062         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
8063
8064 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8065
8066         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
8067           corresponding events and methods to be internal for 1.1 profile and
8068           public for 2.0 profile (required by SizeGrip).
8069         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
8070           implicit control list). Don't set the size nor the location of the
8071           SizeGrip anymore as it's not needed.
8072         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
8073           draw directly on the captured control (fixes #80656). Removed
8074           ShowGrip (it wasn't used anywhere), redraw (always true), added
8075           GetDefaultSize and GetDefaultRectangle to calculate defaults.
8076         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
8077           be called from SizeGrip.
8078
8079 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8080
8081         * Timer.cs: Throw ArgumentException if Interval <= 0.
8082
8083 2007-02-05  Jackson Harper  <jackson@ximian.com>
8084
8085         * TreeView.cs: We need to check scrollbar visibility when window
8086         visibility is updated, because non visible trees don't ever add
8087         scrollbars.
8088         * Cursor.cs: We want the override cursor to be reset to NULL when
8089         we set current cursor to the default cursor.
8090
8091 2007-02-05  Jackson Harper  <jackson@ximian.com>
8092
8093         * TextControl.cs: Don't have crlfs when we are non multiline.
8094         - Consolidate the line position.
8095
8096 2007-02-05  Jackson Harper  <jackson@ximian.com>
8097
8098         * X11Keyboard.cs: BACK+CTRL gets a special char code.
8099
8100 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8101
8102         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
8103           handling LeaveNotify->NotifyUngrab in order to send
8104           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
8105           after calling XUngrabPointer, so we call WindowUngrabbed directly
8106           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
8107         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
8108           MouseCaptureChanged correctly. Also create handles if changing
8109           Capture (matches MS behaviour).
8110
8111 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8112
8113         * SizeGrip.cs: Make the last change 2.0 only.
8114
8115 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8116
8117         * SizeGrip.cs: If resizing and the capture is lost, revert any size
8118           changes to initial size (fixes #80597).
8119
8120 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8121
8122         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
8123
8124 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8125
8126         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
8127           background) and only allow dragging if enabled. This way the
8128           sizegrip can be used to fill the open square that otherwise would
8129           have been shown in the bottom right corner of ScrollableControl
8130           when ScrollableControl is not suppose to support sizing.
8131         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
8132           sizegrip is shown and enabled, and hook up with necessary events.
8133
8134 2007-02-01  Chris Toshok  <toshok@ximian.com>
8135
8136         * DataGridTextBoxColumn.cs: clean up the
8137         GetFormattedString/GetColumnValueAtRow combination of functions.
8138         Also fix UpdateUI, and the initial state of
8139         IsInEditOrNavigateMode.
8140
8141         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
8142         aren't supposed to scroll the textbox here, we're supposed to
8143         scroll the datagrid.
8144
8145 2007-02-01  Chris Toshok  <toshok@ximian.com>
8146
8147         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
8148         setting the position.
8149
8150 2007-02-01  Chris Toshok  <toshok@ximian.com>
8151
8152         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
8153         here, since the most recent focus fixes keep us from generating
8154         the Leave event when our textbox gets focus.
8155         (Edit): we should be passing null for the column style's
8156         instantText parameter.
8157         
8158 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
8159
8160         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
8161         raised.  Fixes menu text/icons not showing up in PDN.
8162
8163 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8164
8165         * Control.cs: Remove code in constructor that makes every
8166         control with WS_CHILD set have initial location -1, -1.
8167
8168 2007-01-31  Jackson Harper  <jackson@ximian.com>
8169
8170         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
8171         XplatUIX11.
8172         * XplatUIX11.cs: Give teh keyboard to teh dnd.
8173
8174 2007-01-31  Jackson Harper  <jackson@ximian.com>
8175
8176         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
8177         - Remove some debug code.
8178
8179 2007-01-31  Jackson Harper  <jackson@ximian.com>
8180
8181         * XplatUIX11.cs: If you set the override cursor during a grab, it
8182         should actually override the grab cursor.  This comes into play
8183         when you are setting custom cursors in a DND feedback method.
8184
8185 2007-01-31  Jackson Harper  <jackson@ximian.com>
8186
8187         * X11Dnd.cs: Add support for handling the QueryContinue and
8188         GiveFeedback events.
8189         - Cancel drag and drop actions when the escape key is clicked.
8190         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
8191         can handle the ESCAPE key.
8192         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
8193         done when dnd events are continued after the button is released.
8194         - Add a new helper method so that dnd can translate key events.
8195
8196 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
8197
8198         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
8199         make it more obvious what is happening.
8200
8201 2007-01-30  Jackson Harper  <jackson@ximian.com>
8202
8203         * XplatUIX11.cs: Don't break when handling button release in drag
8204         and drop operations. We need that BUTTONUP message to get through
8205         so capture is released.
8206         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
8207         this is handled automatically when the mouse is down.
8208
8209 2007-01-30  Jackson Harper  <jackson@ximian.com>
8210
8211         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
8212         is closed, so we need to make sure that we aren't changing the
8213         dialog result when the OK (Open or Save) button has been clicked
8214         and we are closing the window ourselves.  Note we don't need to
8215         worry about the cache being written in this case, because it was
8216         already done in the previous FilOk call.
8217
8218 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8219         
8220         * DateTimePicker.cs: Remove a warning.
8221         * ComboBox.cs: Remove a couple of warnings.
8222
8223 2007-01-29  Chris Toshok  <toshok@ximian.com>
8224
8225         * XplatUIX11.cs: don't crash, and remove the icon if the user has
8226         set one, if SetIcon is passed a null icon.
8227
8228 2007-01-29  Andreia Gaita  <avidigal@novell.com>
8229
8230         * TextBox.cs: Redraw when the password characters changes
8231         * TextControl.cs: Check if textbox has a password char and draw 
8232         a line of password chars instead of the text in the line. LineTag gets 
8233         an extra Draw() method which allows document.Draw to override the text 
8234         that will be drawn. Removes 1024 char limitation on length of passworded 
8235         lines.
8236
8237 2007-01-29  Jackson Harper  <jackson@ximian.com>
8238
8239         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
8240         single chars is not.
8241
8242 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
8243
8244         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
8245         one pixel.  Fix a StackOverflowException caused by an overload wrongly
8246         calling itself.
8247
8248 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
8249
8250         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
8251         also remove ProcessArrowKey and put the code inside ProcessKeys.
8252
8253 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
8254
8255         * PaddingConverter.cs: Added.
8256
8257 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8258         
8259         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
8260         ShowPanels is false (fixes #80600). Only draw up to 127 characters
8261         of text (fixes #80601). For panels clip the text to draw to the
8262         panel (fixes #80603).
8263
8264 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8265
8266         * ComboBox.cs: Fixed implementation of ResetText.
8267
8268 2007-01-25  Jackson Harper  <jackson@ximian.com>
8269
8270         * TextControl.cs: For the last char of a line we need to use the
8271         line size, not that chars width, since it won't actually be
8272         computed since the right side of a char is based on the start of
8273         the left side of the next char, and the next char does not exist.
8274
8275 2007-01-25  Chris Toshok  <toshok@ximian.com>
8276
8277         * Splitter.cs: fix the new unit tests, and reindent some switch
8278         statements.
8279
8280 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8281
8282         * ComboBox.cs: Implemented 2.0 methods and events.
8283         * TextBoxBase.cs: Added OnTextUpdate, so that
8284         ComboBox.ComboTextBox can inform ComboBox of it.
8285
8286 2007-01-25  Jackson Harper  <jackson@ximian.com>
8287
8288         * TextControl.cs: Respect ShowSelection when deciding whether or
8289         not to display the caret, this allows comboboxes to have carets
8290         when the combotextbox does not have focus.
8291
8292 2007-01-25  Jackson Harper  <jackson@ximian.com>
8293
8294         * TextControl.cs: Add a Suspend/Resume for updating, basically the
8295         same as the Suspend/Resume for recalc, except this will do actual
8296         Invalidates.
8297         - New Undo manager, works much like the MS version.
8298         - Implemented Redo
8299         * TextBoxBase.cs: The Cut operation is undoable.
8300
8301 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8302         
8303         * TextBoxBase.cs: Don't antialias text. Makes it look way better
8304         on Windows (no difference on Linux).    
8305
8306 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8307
8308         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
8309         we don't want to activate any windows. Fixes #79433.
8310
8311 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
8312
8313         - ButtonBase.cs: Fix capitalization of parameter: disposing.
8314         [Fixes bug #80609]
8315
8316 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
8317
8318         * FileDialog.cs:
8319         - Move to using System.ComponentModel.EventHandlerList
8320         - Replace Refresh with Invalidate
8321         - Clear the mime filecache on closing
8322         - Some other memory reducing work. After beeing closed FD now uses
8323           only about 300 KB for the fdo mime stuff plus the memory of the
8324           cached icons.
8325         * Mime.cs: Changed coding style and removed unnecessary commented
8326         code. Some more memory memory reducing work.
8327
8328 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8329
8330         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
8331         a few other missing 2.0 properties.
8332         * Theme.cs: Added DrawFlatStyleComboBox.
8333         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
8334
8335 2007-01-24  Chris Toshok  <toshok@ximian.com>
8336
8337         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
8338         wake_waiting flag, not just when there's data to be read.  if we
8339         don't, then future wakeup's won't reach us and we'll be doomed to
8340         wait for the entire 1 second timeout forever (unless there are X
8341         events to be had).
8342
8343 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
8344
8345         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
8346         until you pass Items.Count, not Items.Count - 1 like 1.1.
8347
8348 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
8349
8350         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
8351
8352 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
8353
8354         * ToolStripContainer.cs: The recent Dock fix exposed that I was
8355         adding the panels in the wrong order.
8356
8357 2007-01-24  Jackson Harper  <jackson@ximian.com>
8358
8359         * TextBoxBase.cs: When we move the caret we also need to move the
8360         selection, this fixes some random crashing after doing select
8361         text, unselect, delete a char, paste.
8362
8363 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8364
8365         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
8366
8367 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8368
8369         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
8370         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
8371         * ToolBar.cs: Force redraw in BackgroundImageChanged.
8372
8373 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8374
8375         * ToolBar.cs:
8376         - Implement support for vertical toolbars. Fixes #80539;
8377         - Call LayoutToolBar when resize, it fix some other problems in layout.
8378         - Rename requested_height to requested_size, as we can have width on it
8379         when toolbar is vertical.
8380         - Create a private property "Vertical" that uses Dock to verify when 
8381         toolbar is vertical or not.
8382         - Set ControlStyles when change Dock property.
8383         - Refactory in LayoutToolBar to have better variables names and to support
8384         vertical toolbars.
8385         - Fixes default value for ButtonSize when button count is equal zero, size
8386         must be (39, 36) test case writed.
8387
8388 2007-01-23  Chris Toshok  <toshok@ximian.com>
8389
8390         * Control.cs: fix the checks so that they work correctly for mdi
8391         parents/children.
8392
8393 2007-01-23  Chris Toshok  <toshok@ximian.com>
8394
8395         * Control.cs: ControlCollection seems to have super-secret
8396         abstraction breaking knowledge of Mdi containers.  allow MdiClient
8397         to add toplevel controls.
8398
8399 2007-01-23  Chris Toshok  <toshok@ximian.com>
8400
8401         * Control.cs: throw an ArgumentException if a toplevel control is
8402         added to our control collection from ControlCollection.Add, as
8403         well as from ControlCollection.IList.Add.  This fixes the
8404         ControlSetTopLevelTest.TestTopLevelAdd unit test.
8405
8406         Also, in ControlCollection.IList.Add, don't through an
8407         ArgumentNullException, throw an ArgumentException, when value ==
8408         null.  This matches MS.
8409
8410 2007-01-23  Chris Toshok  <toshok@ximian.com>
8411
8412         * BindingSource.cs: initial, incomplete, implementation of
8413         BindingSource.
8414
8415 2007-01-23  Jackson Harper  <jackson@ximian.com>
8416
8417         * TextControl.cs:
8418         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
8419         that I can fix a broken unit test (TextBoxTest::ClearUndo)
8420         
8421 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8422
8423         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
8424
8425 2007-01-23  Andreia Gaita  <avidigal@novell.com>
8426
8427         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
8428         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
8429         IndexOfKey() for 2.0
8430
8431 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8432
8433         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
8434         to prevent it from changing z-order.
8435         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
8436         leave UI updates in MdiWindowManager.
8437         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
8438         1 sized (NC handling goes weird on Linux otherwise).
8439         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
8440         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
8441         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
8442         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
8443         and SetWindowState(s) to allow for changing the size of an activated child
8444         before activating it (reduces a lot of flicker).
8445
8446 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8447
8448         * Form.cs: Changing FormBorderStyle has different semantics based
8449         on whether the Form is visible or not.  If not visible, don't change
8450         the Size.  But InvalidateNC needs to be called to force the window
8451         to pick up the changes and redraw itself.  [Fixes bug #80574]
8452
8453 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8454
8455         [Moma work]
8456         * ContainerControl.cs: ProcessCmdKey.
8457         * ErrorProvider.cs: new constructor.
8458         * Form.cs: fix AutoValidateEvent compiler warning.
8459         * Label.cs: fix OnAutoSizeChanged compiler warning.
8460         * MenuStrip.cs: fix CanOverflow compiler warning.
8461         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
8462         * TextBox.cs: Dispose.
8463         * ToolStrip.cs: CanOverflow, re-enable double buffering.
8464         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
8465         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
8466         * ToolStripItem.cs: Overflow, RightToLeft properties.
8467
8468 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8469
8470         * Form.cs: Move the layout of the main form to MdiWindowManager.
8471         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
8472         do a layout of the main window to update MdiClient's client area to
8473         the right area. Fixes #80533. Remove the calculation of nc size, 
8474         it was just wrong and the correct one is the same as for 
8475         InternalWindowManager. 
8476
8477 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
8478
8479         * Control.cs: Setting Anchor or Dock needs to reset the other
8480         to its default.  [Fixes bug #80556]
8481
8482 2007-01-20  Chris Toshok  <toshok@ximian.com>
8483
8484         * CheckedListBox.cs: class status changes.
8485
8486         * ScrollableControl.cs: same.
8487
8488         * RichTextBox.cs: same.
8489
8490         * ContainerControl.cs: same.
8491
8492         * ListView.cs: same.
8493
8494         * NotifyIcon.cs: same.
8495
8496         * MenuStrip.cs: same.
8497
8498         * RadioButton.cs: same.
8499
8500         * CheckBox.cs: same.
8501
8502         * PrintPreviewDialog.cs: same.
8503
8504         * Form.cs: same.
8505
8506 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
8507
8508         * TreeNode.cs: Apply Alan's patch for Name property.
8509
8510 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8511         
8512         * Form.cs: Implemented SizeGripStyle.
8513         * SizeGrip.cs: Check for minimum and maximum size for the
8514         control being resized and only resize if size has actually
8515         changed.
8516
8517 2007-01-19  Chris Toshok  <toshok@ximian.com>
8518
8519         * DataGridColumnStyle.cs: stop setting _readonly in the
8520         PropertyDescriptor setter.  fixes a unit test failure.
8521
8522         also, rename ParentReadOnly to TableStyleReadOnly, and have it
8523         just consult our table style (if we have one).  We don't need to
8524         consult the datagrid readonly attribute because that's passed in
8525         as the _ro arg to Edit.  this simplifies things a little.
8526         
8527         * DataGrid.cs: use CurrentColumn instead of
8528         current_cell.ColumnNumber just to simplify some of the code.
8529
8530         switch the order of some things in the CurrentCell setter to keep
8531         the previous cell from getting a textbox again -
8532         EnsureCellVisibility causes scrolling to happen, which calls Edit.
8533         So we need to set the new cell before calling it.
8534         
8535         call Edit in OnEnter, as does Microsoft.
8536         
8537         also, make sure the current table style isn't the one we create
8538         initially when checking to see if it's different than the one
8539         we're setting it to in BindColumns (this fixes #80421).
8540
8541         * GridTableStylesCollection.cs: table styles can have "" for a
8542         mapping name.  part of the fix for #80421.
8543
8544         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
8545         Edit significantly.
8546
8547 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8548
8549         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
8550         and less GDI object leaky-er.
8551
8552 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8553
8554         * LinkLabel.cs: Add opaque control style
8555
8556 2007-01-18  Jackson Harper  <jackson@ximian.com>
8557
8558         * TextControl.cs: Calculate width properly.
8559         - Don't store the tag's X offset, this can be figured out very
8560         easily.
8561         - When getting the caret tag make sure to get the last empty tag.
8562
8563 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8564
8565         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
8566         [Fixes bug #79959]
8567
8568         * Control.cs: Color.Empty shouldn't count for previous transparent
8569         redraw changes.
8570
8571 2007-01-18  Jackson Harper  <jackson@ximian.com>
8572
8573         * TextBox.cs:
8574         * RichTextBox.cs:
8575         * TextControl.cs: Starting to merge in some pieces of my older
8576         undo work.  Basically just some slight cleanup of the undo API.
8577
8578 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8579
8580         * TrackBar.cs: Fix signature of RightToLeftLayout.
8581         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
8582         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
8583         * Application.cs: Implemented UseWaitCursor.
8584
8585 2007-01-18  Jackson Harper  <jackson@ximian.com>
8586
8587         * TextControl.cs: We can't skip tags if any part of the tag is
8588         visible.
8589
8590 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8591
8592         * ContainerControl.cs: Override OnLayout.
8593
8594 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8595
8596         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
8597
8598         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
8599         everything else.
8600
8601 2007-01-18  Chris Toshok  <toshok@ximian.com>
8602
8603         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
8604         (leftover from the container_selected days, I'd wager).  fixes bug
8605         #80546.
8606
8607 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8608
8609         * Control.cs: Apply patch from George to fix the new testcase on
8610         bug #80451.  We can't just check for Color.Transparent, we need 
8611         to check if the back color's alpha channel is < 255.
8612
8613 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8614
8615         * Form.cs: Move setting show_icon = true to before the constructor
8616         so that the base constructor has that information when it calculates
8617         the form's size.  Was causing forms to be (6, 6) bigger than they
8618         were supposed to be.  Thanks for catching this Rolf!
8619
8620 2007-01-18  Jackson Harper  <jackson@ximian.com>
8621
8622         * TextControl.cs: When replacing a selection we need to invalidate
8623         from the initial selection start, because selection start is moved
8624         to the end of the replacement.
8625
8626 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8627
8628         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
8629
8630 2007-01-18  Chris Toshok  <toshok@ximian.com>
8631
8632         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
8633         I just added.
8634
8635 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
8636
8637         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
8638         layout methods and properties from ToolBarButton must be available
8639         into ToolBarButtonInfo.
8640
8641 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8642
8643         * Control.cs: If the control has a transparent background, we
8644         need to refresh it when it moves and when it's parent's background
8645         image changes.  [Fixes bug #80451]
8646
8647 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8648
8649         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
8650
8651 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8652
8653         * XplatUIWin32.cs: Implement proper double buffering for Windows.
8654         [Fixes bug #80447, and probably speeds up things as well]
8655
8656 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8657
8658         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
8659         * XplatUIWin32.cs: We need to recalculate NC size after changing 
8660         window style to toolwindow (otherwise the client rectangle will be
8661         3 pixels to small for some reason).
8662         * MdiWindowManager.cs: Revert NC size calculations to match how
8663         they are calculated only based on window styles (to match
8664         Win32AdjustWindowRectEx, since otherwise when setting size or 
8665         location, Control will call Win32AdjustWindowRectEx to update client 
8666         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
8667         calculate a different value of client size causing another paint 
8668         (and flickering))
8669         * InternalWindowManager.cs: When moving or resizing a window only
8670         update size or location if they actually changed.
8671         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
8672         (seems to match Windows behaviour better). Cleaned up 
8673         ManagedWindowDecorations to draw what's needed and nothing else
8674         (was drawing borders and lines where they shouldn't be)
8675         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
8676         (style = 0xFFFF) and takes into account caption height when 
8677         calculating window rectangle.   
8678
8679 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8680
8681         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
8682         can be added to toolbar multiple times, we need to maintain a list of 
8683         button information for each positions.
8684
8685 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8686
8687         * ToolBar.cs: Some small stetic changes.
8688
8689 2007-01-16  Jackson Harper  <jackson@ximian.com>
8690
8691         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
8692         that allow us to have nested recalc = false blocks.
8693         - Add paste support for images in the RichTextBox
8694         * RichTextBox.cs: flush the text after the color is changed, so
8695         the change takes effect.
8696         - Use SuspendRecalc
8697         - Some extra debugging info
8698         * TextControl.cs: Tags no longer track their length, it is just
8699         computed from the next tags length, this makes things a little
8700         simpler and reduces places that we have to track length changes.
8701         - Refactored the linetag class a little so we could make it
8702         a base class for different kinds of tags
8703         - Created a image tag, a tag that can have a single image inserted
8704         into it
8705         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
8706         that we can call suspend multiple times.
8707         - Add some debugging methods
8708
8709 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8710
8711         * MdiClient.cs: Add ActivatePreviousChild for 
8712         mdi child window navigation.
8713         * Form.cs: Use MdiClient.ActivateNextChild/
8714         ActivatePreviousChild instead of Form.SelectNextControl
8715         to select the next/previous child since 
8716         SelectNextControl doesn't do it in the same order
8717         as mdi children should do it.
8718
8719 2007-01-16  Chris Toshok  <toshok@ximian.com>
8720
8721         * Control.cs: remove container_selected field.
8722
8723 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8724
8725         * MdiClient.cs: Update main form's ActiveChild when
8726         updating keyboard focus for the mdi child.
8727
8728 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
8729
8730         * Control.cs: PreferredSize fix.
8731
8732         * Form.cs: Add several 2.0 events, properties, and methods.
8733
8734 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
8735
8736         * Form.cs: Provide meaningful message when MdiParent is assigned a
8737         Form that is not an MdiContainer.
8738
8739 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8740
8741         * MdiClient.cs: Update main form's ActiveChild when
8742         activating a mdi child.
8743
8744 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8745
8746         * MdiWindowManager.cs: Fix NRE when merging menus and main form
8747         doesn't have a menu.
8748
8749         * Form.cs: Request NCRecalc after creating a mdi child window.
8750         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
8751         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
8752         
8753         * MdiClient.cs: Add new method SendFocusToActiveChild that either
8754         sends keyboard focus to the active child, or to the MdiClient
8755         if there are no child forms.
8756         
8757 2007-01-15  Chris Toshok  <toshok@ximian.com>
8758
8759         * ListView.cs: drop the *Internal overrides, just do our work in
8760         ItemControl's WndProc instead.
8761
8762         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
8763         of the various controls, and forward the events properly (in the
8764         same manner as MS) from the textbox to the UpDown.  Also the
8765         ActiveControl of the UpDownBase gets set properly now.  Finally,
8766         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
8767
8768         * NumericUpDown.cs: set Text in the ctor.
8769
8770         * DomainUpDown.cs: call UpdateEditText in the ctor.
8771         
8772         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
8773         so even a Selectable = false textbox can be focused if you click
8774         in it.  Go figure.
8775
8776         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
8777         just add their handling in their respective WndProc's.  Also add
8778         an explicit FocusInternal method that doesn't consult CanFocus
8779         before calling Select(this).
8780
8781         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
8782         do our work in WndProc instead.
8783
8784         * TabControl.cs: same.
8785
8786         * ComboBox.cs: same.
8787
8788 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8789
8790         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
8791         Fixes #80006.
8792
8793 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8794
8795         * ListViewItem.cs:
8796         * ThemeWin32Classic.cs: Don't draw the item text outside
8797         item bounds in Details view, as well as use trimming.
8798         Fixes bug #80376.
8799
8800 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8801
8802         * Form.cs: Implement Form.ShowIcon.
8803         
8804         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
8805         null, which when combined with the DlgModalFrame window style removes
8806         the icon from the title bar.
8807
8808 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8809
8810         * Control.cs: Call OnMouseClick after OnClick. (2.0)
8811
8812 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8813
8814         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
8815         menu when mdi child windows theres a menu, uses insert to get icon
8816         at first position. Partially fix #80006.
8817
8818 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8819
8820         * Clipboard.cs: Implement 2.0 methods.
8821
8822 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8823
8824         * Menu.cs: Implement Insert method of MenuItemCollection class
8825         to fix MenuMerge.
8826
8827 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8828
8829         * ListView.cs: Implement 2.0 FindItemWithText method.
8830
8831 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8832
8833         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
8834         to calculate menu bar size. Fixes #80290.
8835
8836 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8837
8838         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
8839
8840 2007-01-11  Chris Toshok  <toshok@ximian.com>
8841
8842         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
8843         initial form.
8844
8845 2007-01-11  Chris Toshok  <toshok@ximian.com>
8846
8847         * LinkLabel.cs: make sure to call base.Select in our Select method
8848         if it turns out we're going to be selected (i.e. if we have a link
8849         that is going to receive focus).  That way our container's
8850         ActiveControl is updated properly.
8851
8852 2007-01-11  Chris Toshok  <toshok@ximian.com>
8853
8854         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
8855         they have 1 or more links.  this fixes the crash gert reported.
8856
8857 2007-01-11  Andreia Gaita  <avidigal@novell.com>
8858
8859         * ContainerControl.cs: Remove ContainerSelected flag, not needed
8860         anymore.
8861
8862         * Control.cs (Controls.Add): Check if control to be added to the collection
8863         is a top level control, and throw an ArgumentException if it is.
8864         Remove ContainerSelectedFlag, not needed anymore.
8865
8866         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
8867         top most control doesn't activate the form. This fixes a problem in the
8868         MessageBox, where the default button wouldn't get focus because the form
8869         was activated before being Loaded - when the Owner is set, SetTopMost is
8870         called, and it would activate it.
8871
8872 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
8873
8874         * Button.cs: When clicked and setting the parent form's DialogResult,
8875         use FindForm instead of Parent, since parent could be a container
8876         control and not the Form.  Fixes bug #80495.
8877
8878 2007-01-10  Chris Toshok  <toshok@ximian.com>
8879
8880         * Form.cs: move the call to SendControlFocus into the same
8881         is_loaded check.
8882
8883 2007-01-10  Chris Toshok  <toshok@ximian.com>
8884
8885         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
8886         It breaks in the face of the new ActiveControl stuff, and should
8887         be unnecessary.
8888
8889         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
8890         activecontrol's focus if it's not already set, after we set
8891         ActiveControl, but before we call OnActivated.  Re-fixes #79667
8892         after the previous focus/active control fixes regressed it.
8893
8894         * Control.cs: reindent some code.
8895         
8896 2007-01-10  Chris Toshok  <toshok@ximian.com>
8897
8898         * Splitter.cs: clearing some outstanding changes from my tree.
8899         Replace all accesses (not writes) to the internal dock_style field
8900         with the Dock property.
8901
8902 2007-01-10  Chris Toshok  <toshok@ximian.com>
8903
8904         * Control.cs: make FireEnter, FireLeave, FireValidating, and
8905         FireValidated virtual.
8906
8907         * Form.cs: override and don't chain up calls to FireEnter and
8908         FireLeave.
8909
8910 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8911
8912         * ListView.cs: Add more text padding space when using
8913         auto resize for columns (the previous value didn't work fine).
8914
8915         * ThemeWin32Classic.cs: Update text position inside columns,
8916         to match the appeareance of .Net.
8917
8918         * ColumnHeader.cs: When using auto resize, only the Width should
8919         depend on the sub items, not the Height. Also, set width after
8920         auto resizing (the value of Width should never remain as -1 or -2).
8921
8922 2007-01-10  Chris Toshok  <toshok@ximian.com>
8923
8924         * Application.cs: fix compilation errors when debug is enabled.
8925
8926 2007-01-10  Chris Toshok  <toshok@ximian.com>
8927
8928         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
8929         add some nice ascii art pictures and explanation of the process).
8930         (GetMostDeeplyNestedActiveControl): new utility function we need
8931         because our ActiveControl can refer to a child container with its
8932         own ActiveControl.
8933
8934         * Form.cs (OnActivated): remove the call to SelectActiveControl
8935         from here, since you can override this method and not chain up,
8936         and winforms still sets the active control.
8937         (OnCreateControl): also remove the unnecessary SelectActiveControl
8938         call from here.
8939         (WndProc): it's actually called from the WM_ACTIVATE block, just
8940         before calling OnActivated.
8941
8942         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
8943         inside the else.  the ActiveControl setter will end up setting
8944         focus on @control.  This keeps us from setting it again (and
8945         generating an extra LostFocus/GotFocus pair).
8946         (Select (bool, bool)): reindent.
8947
8948 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
8949
8950         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
8951         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
8952         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
8953         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
8954         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
8955         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
8956         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
8957         ToolStripTextBox.cs: Another wave of corcompare work.
8958
8959 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8960
8961         * ColumnHeader.cs: Implement 2.0 AutoResize method using
8962         the Width property.
8963
8964         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
8965         methods by callling Column.AutoResize method on columns.
8966
8967 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8968
8969         * Control.cs: Provide proper implementations of PreferredSize
8970         and GetPreferredSize (2.0).
8971
8972 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8973
8974         * Form.cs: Remove one character (!) to make my previous OnClosing
8975         stuff work for modal windows like MessageBox.
8976
8977 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8978
8979         * ListView.cs:
8980         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
8981         ListView.Columns to get the last displayed column. Fixes #80452.
8982
8983 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
8984
8985         * Label.cs, LinkLabel.cs: Source code identation fixes.
8986
8987 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
8988
8989         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
8990         we dont need to invalidate only borders because when we invalidate four
8991         border lines the invalidate's generates a complete redraw of button, 
8992         because it now invalidate a complete rect some other redraws operations
8993         are fixed. Fixes #80196.
8994         
8995         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
8996         Remove ToolBarInvalidateEntireButton as it is not used.
8997
8998 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
8999         
9000         * Form.cs: Make sure that both OnClosing and OnFormClosing are
9001         called for 2.0 profile.
9002         * CloseReason.cs: Make class internal for 1.1.
9003
9004 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
9005
9006         * ToolStripManager.cs: Implement FindToolStrip functionality.
9007         * ToolStrip.cs: Register and unregister with ToolStripManager.
9008
9009 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
9010
9011         * Control.cs: This was messy.  2.0 moves much of ControlCollection
9012         to ArrangedElementCollection.  Implemented this with as few #if's as 
9013         possible (which is still too many).
9014
9015 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
9016
9017         * Control.cs: Implement SizeFromClientSize() [2.0].
9018
9019 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
9020
9021         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
9022         use Theme.BorderSize to calculate area instead of static value 1, 
9023         by the way use new BorderStaticSize instead     Border3DSize when 
9024         border_static is true. Fixes #79537.
9025         
9026         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
9027         
9028         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
9029         it is not needed.
9030
9031 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
9032
9033         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
9034
9035 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
9036
9037         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
9038         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
9039         
9040         * Hwnd.cs: 
9041         - border_static field added, it will used to define when a control 
9042         theres 3D border but it must be static (thin).
9043         - In GetWindowRectangle use Theme.BorderSize to calculate area 
9044         instead of static value 1, by the way use new BorderStaticSize instead
9045         Border3DSize when border_static is true.
9046
9047         * XplatUIX11.cs, XplatUIOSX.cs: 
9048         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
9049         
9050         * Theme.cs: BorderStaticSize field added.
9051
9052 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
9053
9054         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
9055
9056 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
9057
9058         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
9059         mimic same behavior than win32 that set border only in CreateParams,
9060         it fix problems under CreateParams overrides. Fix #79442 and partial
9061         fix #79537.
9062         
9063         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
9064         of thi control you must call recreate handle. 
9065         
9066         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
9067         need to do anything as RecreateHangle will take care about borders.
9068
9069 2007-01-05  Mike Kestner  <mkestner@novell.com>
9070
9071         * ListView.cs: hack to eliminate Lost/Got focus notifications on
9072         cycles between the ItemControl and parent.  Fixes #80388.
9073
9074 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
9075
9076         * Control.cs: Lazy init layout engine. Do not directly use 
9077         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
9078
9079 2007-01-05  Chris Toshok  <toshok@ximian.com>
9080
9081         * DataGrid.cs: don't forceably rebind columns in SetDataSource
9082         unless our list manager has changed (i.e. unless we have reason to
9083         believe our columns have changed).  Fixes #80422.
9084         
9085         also, disable the call do BindColumns in
9086         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
9087         1.1 the event isn't raised in response to a column addition on a
9088         table.)
9089
9090 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
9091
9092         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
9093         that inheritors can not call it if they choose.  Fixes bug #80456.
9094
9095 2007-01-05  Andreia Gaita  <avidigal@novell.com>
9096
9097         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
9098         doesn't blow up with a null exception on marshalling.
9099         
9100 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
9101
9102         * Control.cs: Implement several 2.0 protected properties and methods.
9103         Ensure that all necessary events are being called when properties
9104         are set.
9105
9106 2007-01-05  Mike Kestner  <mkestner@novell.com>
9107
9108         * ListView.cs: implement PgUp/PgDn for Details view.  Also
9109         fixes First/LastVisibleIndex to use the item_control.ClientRect 
9110         instead of the parent control.  Fixes #80378.
9111
9112 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
9113
9114         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
9115           determine whether to use yard-pound or not (bug #78399).
9116
9117 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9118
9119         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
9120         problems. So it is time to bring back the old popupbutton colors.
9121
9122 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9123
9124         * ColumnHeader.cs:
9125         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
9126         property by using the internal information of the
9127         columns order in ListView.
9128
9129 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
9130
9131         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
9132         Add 2.0 Tag properties.
9133
9134         * LinkArea.cs: Add 2.0 ToString method.
9135
9136 2007-01-03  Chris Toshok  <toshok@ximian.com>
9137
9138         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
9139         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
9140         when we're editing, which fixes #80047.
9141
9142 2007-01-03  Chris Toshok  <toshok@ximian.com>
9143
9144         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
9145         #80404.
9146
9147 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
9148
9149         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
9150         property and implementation.
9151
9152         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
9153         for MdiWindowListItem property.
9154
9155         * ToolStripDropDown.cs: Don't consider hidden menu items while
9156         laying out the menu.
9157
9158 2007-01-03  Andreia Gaita  <avidigal@novell.com>
9159
9160         * SendKeys.cs: window handle is not needed in win32, so just
9161         get the active window for X after parsing keys and don't use
9162         it when building the message; it is passed by parameter to the 
9163         Xplat method and used there to build the message instead. Also,
9164         wait for events to be processed on SendWait, as opposed to Send,
9165         which doesn't wait :) Playing with threads and Send() completely 
9166         hangs on ms.net, only SendWait() works.
9167         
9168         XplatUIX11.cs
9169         X11Display.cs: Check for valid window handle.
9170
9171 2007-01-03  Jackson Harper  <jackson@ximian.com>
9172
9173         * TextControl.cs: Need to prevent wrap calculations when replacing
9174         text (this was there before i removed it accidently).
9175         - Don't update the cursor during the positioning, just set it to
9176         selection_start at the end of the operaion.
9177
9178 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9179
9180         * Control.cs:
9181         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
9182         
9183 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9184
9185         * MonthCalendar.cs: Added Click and DoubleClick events again,
9186         but this time they only hide Control's Click and DoubleClick.
9187         
9188 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
9189
9190         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
9191         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
9192
9193 2007-01-02  Jackson Harper  <jackson@ximian.com>
9194
9195         * TextBoxBase.cs: We move the caret with the split now, so we
9196         don't need to explicitly move the caret after splitting.  This
9197         fixes the caret bumping down an extra line on Enter.
9198
9199 2007-01-02  Miguel de Icaza  <miguel@novell.com>
9200
9201         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
9202         2.72). 
9203
9204         * ScrollableControl.cs: Add Scroll event.
9205
9206 2007-01-02  Mike Kestner  <mkestner@novell.com>
9207
9208         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
9209         to fix all hdr height padding codepaths.  Fixes #80207.
9210
9211 2007-01-02  Chris Toshok  <toshok@ximian.com>
9212
9213         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
9214         setting it to the Control defaults anyway, and it being after the
9215         Dock set was screwing up layout.
9216         (set_Dock): don't short circuit out of setting base.Dock.  Also,
9217         no need to call UpdateStatusBar here, as it'll be re-layed out if
9218         it needs to be.
9219
9220 2007-01-02  Mike Kestner  <mkestner@novell.com>
9221
9222         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
9223         to header height for width == -1. Fixes the rest of #80207.
9224
9225 2007-01-02  Mike Kestner  <mkestner@novell.com>
9226
9227         * ListView.cs: rework the mouse event forwarding everaldo added
9228         to translate the coordinates to the parent control not
9229         raise the parent events until after we've done our work. Hover
9230         needs more work, in the case where HoverSelection is on, because
9231         the item control receives more than one MouseHover per Enter
9232         event, so we need to ensure only the "first" hover gets forwarded.
9233         Opening a minor bug for that.
9234
9235 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
9236
9237         * CheckedListBox.cs: Fixed SelectionMode to match MS.
9238         * ListControl.cs: Implemented AllowSelection property. Removed extra
9239         tabs.
9240         * ListBox.cs: Implemented AllowSelection property.
9241
9242 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9243
9244         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
9245         SelectedItem, it prevent for errors when you must disable item
9246         before perform click. Fixes #80409.
9247
9248 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9249
9250         * MenuAPI.cs: Prevent second level and beyond submenus to close
9251         until first level when move out side of popup.
9252         
9253 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9254
9255         * MenuAPI.cs:
9256         - Down submenu positin in three pixels.
9257         - Closes sub menu when mouse leaves from menu. Fixes #80402.
9258
9259 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9260
9261         * ThemeWin32Classic.cs:
9262         - Fix popup menu size adding one pixel on the top.
9263         - Down menu item border from two to one to mimic Win32.
9264         - Some source identation fixes. 
9265
9266 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
9267
9268         * ThemeWin32Classic.cs: Use float numbers to calculate size and
9269         position of menu arrows, it fix wrong arrow size.
9270
9271 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
9272
9273         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
9274         instead of line, it simplify draw operation and fix it using 3D
9275         borders to mimic Win32.
9276
9277 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
9278
9279         * StatusStrip.cs: Add implementation of the sizing grip.
9280
9281         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
9282         StatusStrip rendering.
9283
9284 2006-12-31  Chris Toshok  <toshok@ximian.com>
9285
9286         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
9287         override the layout style (anchor/dock) of the control.  assign to
9288         Dock instead.  Fixes bug #80416.
9289
9290         * ToolStrip.cs: same.
9291
9292 2006-12-31  Andreia Gaita  <avidigal@novell.com>
9293
9294         * ContainerControl.cs: Use ContainerSelected flag to check if 
9295         a Container is directly selected, or if Select is called on a 
9296         non-container. If a container is directly selected, focus events 
9297         should not be raised.
9298         Apply #80411 patch to throw exception on set_ActiveControl if 
9299         control is the same as the current one.
9300         
9301         * Control.cs: Use ContainerSelected flag (see above).
9302         Add invalidation check to raise event but not invalidate if 
9303         dimensions are 0.       
9304         Apply #80411 patch.
9305         
9306
9307 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
9308
9309         * MenuAPI.cs: After click, dont close popup menu when menu is
9310         ContextMenu. Fixes #80399.
9311
9312 2006-12-30  Chris Toshok  <toshok@ximian.com>
9313
9314         * ContainerControl.cs: make sure we throw the exception if the
9315         container control doesn't contain the control we're setting
9316         ActiveControl to.
9317
9318 2006-12-30  Chris Toshok  <toshok@ximian.com>
9319
9320         * Control.cs (SetTopLevel): fix the exception raised by
9321         SetTopLevel for child controls.
9322         (set_Anchor): call UpdateDistances when setting the anchor type.
9323         This fixes bug #80336.
9324
9325 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9326
9327         * Theme.cs: For now, revert back to 8pt font.
9328
9329 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
9330
9331         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
9332         Fixes #80395.
9333
9334 2006-12-29  Chris Toshok  <toshok@ximian.com>
9335
9336         * Control.cs: reorder the code in OnResize to give the same event
9337         ordering as MS.
9338
9339 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9340
9341         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
9342         TileHorizontally and TileVertically.
9343         
9344 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
9345
9346         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
9347         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
9348         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
9349         Corrected copyright and email adress.
9350
9351 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9352
9353         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
9354         of Exception in FullPath property if no TreeView is associated with
9355         the TreeNode.
9356
9357 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9358
9359         * Theme.cs: Marked default_font as private, and initialize it in ctor
9360         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
9361         on 2.0 profile.
9362         * ThemeGtk.cs: Removed default_font intialization.
9363         * ThemeWin32Classic.cs: Removed default_font initialization.
9364
9365 2006-12-28  Chris Toshok  <toshok@ximian.com>
9366
9367         * Control.cs: fix a couple of place where we were creating handles
9368         more aggressively than we should be.  Fixes ControlRefresh unit
9369         tests.
9370
9371 2006-12-28  Chris Toshok  <toshok@ximian.com>
9372
9373         * Control.cs: contrary to what the comment said, Control.Dock does
9374         not supercede Control.Anchor - the last one you assign to decides
9375         the layout behavior.  so we need to keep track of which was the
9376         last set.  Also, fix some of the affected property arguments in
9377         PerformLayout calls, and remove an redundant parent.PerformLayout
9378         call in OnResized.
9379
9380         Add a VisibleInternal property, which returns is_visible.  We
9381         can/should get rid of all the usage of this field elsewhere.
9382
9383 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9384         
9385         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
9386         control style, not DoubleBuffer. Added UseDoubleBuffering property
9387         that indicates whether doublebuffering is enabled and supported.
9388         (comment from and code based on Gert Driesen's patch in #80324).
9389         Fixes #80324.
9390
9391 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9392         
9393         * Control.cs: Fixed a NRE.
9394
9395 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9396
9397         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
9398         for 2.0.
9399
9400 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9401
9402         * Control.cs: Rewrote double buffering, now a seperate
9403         class handles all the buffering, no Graphics is disposed of
9404         until the painting is finished (earlier implementation 
9405         would crash if the control was resized in the OnPaint, 
9406         since it would cause the double buffer to be recreated
9407         and the old one disposed), a separate Graphics is 
9408         created for every paint (MS behaviour and anyways the state
9409         of the Graphics would have to be saved and restored otherwise)
9410         
9411         * XplatUIDriver.cs: 
9412         * XplatUIX11.cs:
9413         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
9414         so that we can get the graphics for the back buffer without
9415         having to create a new one and remove the offscreen_dc parameter
9416         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
9417         
9418 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9419
9420         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
9421         Also make virtual all the key-related methods.
9422
9423         * ListViewItem.cs: Make virtual the key related methods for
9424         ListViewSubItemCollection.
9425
9426 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9427
9428         * ListView.cs:
9429         * ListViewItem.cs:
9430         * ThemeWin32Classic.cs:
9431         * Theme.cs: Initial support for Tile view in ListView,
9432         as well as the implementation of the required bits for it (Item
9433         and Subitem).
9434
9435 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9436
9437         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
9438         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
9439         Provide useful exception messages.
9440
9441 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9442
9443         * TrackBar.cs: Remove a warning.
9444         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
9445         when used by DateTimePicker, fixes #80287. This also requires that 
9446         MonthCalendar implements it's own drawing for the yearly updown control,
9447         otherwise the Capture tracking would be too complicated. Removed the Click 
9448         and DoubleClick events (according to comments they were hiding the base class
9449         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
9450         raise these events, not that they cannot be raised. It is possible to raise 
9451         them by calling OnClick and OnDoubleClick). Added two internal fields in 
9452         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
9453         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
9454         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
9455         event, no longer needed.
9456         
9457 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9458
9459         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
9460         true if new value differs from current value.
9461
9462 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9463
9464         * Control.cs: ControlCollection.Count must be public. Fixed build of
9465         unit tests.
9466
9467 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9468
9469         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
9470
9471 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9472
9473         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
9474
9475 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9476
9477         * Control.cs: Invalidates control including when Width and Height is 
9478         equal zero or is not visible, only Paint event must be care about 
9479         this. Fixes #79913.
9480
9481 2006-12-26  Chris Toshok  <toshok@ximian.com>
9482
9483         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
9484         more corcompare work.
9485
9486         * DataGridView.cs: fix compiler warning.
9487
9488         * ColumnHeader.cs: some corcompare work, and also take the
9489         opportunity to make the internal fields private.
9490
9491         * ListView.cs: fix the fallout from the above field change.
9492
9493 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9494
9495         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
9496         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
9497         ToolStripTextBox.cs: Fixes to events and corcompare.
9498
9499 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9500
9501         * ListView.cs: Call owner.OnMousexx event to propagate events from
9502         item to ListView. Fixes #80367.
9503
9504 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9505
9506         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
9507         if value is less than one. ItemHeight should not be set to a value
9508         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
9509         Removed extra tabs.
9510
9511 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9512
9513         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
9514         * ToolStripStatusLabel.cs: Add Spring for Moma.
9515
9516 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9517
9518         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
9519         Fixed code formatting. Removed debug code.
9520         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
9521
9522 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9523
9524         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
9525         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
9526         ArgumentOutOfRangeException if ColumnCount is negative. In 
9527         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
9528         less than 4 or higher than 32768.
9529         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
9530         Fixed FormatProvider to return CurrentCulture unless explicitly set.
9531         Fixed IsFormatProviderDefault to return true if FormatProvider has
9532         not been explicitly set.
9533
9534 2006-12-25  Chris Toshok  <toshok@ximian.com>
9535
9536         * Application.cs: add a couple of 2.0 events.
9537
9538 2006-12-25  Chris Toshok  <toshok@ximian.com>
9539
9540         * Control.cs: fix compiler warning.
9541
9542         * AxHost.cs: corcompare fixes.
9543
9544         * ApplicationContext.cs: corcompare fixes.
9545
9546 2006-12-25  Chris Toshok  <toshok@ximian.com>
9547
9548         * Control.cs: only update dist_right/dist_bottom if the
9549         width/height is > 0.  this fixes anchored controls being resized
9550         smaller until they disappear and then resized larger again.
9551
9552 2006-12-25  Chris Toshok  <toshok@ximian.com>
9553
9554         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
9555         since they're nothing more than X/Left and Y/Top, respectively.
9556
9557         Also, move back to a per-control Bitmap/Graphics for
9558         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
9559         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
9560         Height.
9561
9562 2006-12-25  Miguel de Icaza  <miguel@novell.com>
9563
9564         * MessageBox.cs: Implemented overload that takes a new "bool
9565         displayHelpButton" by adding a new internal field "show_help".
9566         When clicked this will raise the HelpRequested on the owner or the
9567         main form. 
9568
9569         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
9570         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
9571
9572         * ListView.cs: Add support ColumnWidthChanged and
9573         ColumnWidthChanging. 
9574
9575         Add support for ColumnReordered event.
9576         (ReorderColumn): Add NET_2_0 specific support for cancelling the
9577         reorder.
9578
9579         Very nice codebase!
9580
9581         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
9582
9583         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
9584
9585 2006-12-24  Chris Toshok  <toshok@ximian.com>
9586
9587         * GridTablesFactory.cs: 2.0 corcompare work.
9588
9589         * ToolStripContainer.cs: add "override" to
9590         ContextMenuStripChanged, and remove the local event object.
9591
9592         * ToolStripDropDown.cs: same with a couple properties.
9593
9594         * ToolStripPanel.cs: same with AutoSizeChanged event.
9595
9596         * TextBoxBase.cs: add "override" to AutoSizeChanged.
9597
9598         * Form.cs: add the remaining 2.0 events, and do some corcompare
9599         attribute work.
9600
9601         * DateTimePicker.cs: add "new" to padding.
9602
9603         * ButtonBase.cs: use Control's use_compatible_text_rendering.
9604
9605         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
9606
9607         * DataGridView.cs: PaddingChanged is overridden.
9608
9609 2006-12-24  Chris Toshok  <toshok@ximian.com>
9610
9611         * Control.cs: corecompare work here too.
9612
9613         * DataGridViewElement.cs, DataGridView.cs,
9614         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
9615         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
9616         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
9617         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
9618         work.
9619
9620 2006-12-24  Miguel de Icaza  <miguel@novell.com>
9621
9622         * Control.cs: Switched the error message on the console for a
9623         todo.  A review of the code will have to cope with this anyways
9624         (since its a large feature, it is in our radar) and it was
9625         producing too much output when running PDN.
9626
9627         * ToolStripComboBox.cs: Set the text when the SelectedIndex
9628         changes.  Applications depend on this (PDN 2.72)
9629
9630 2006-12-23  Chris Toshok  <toshok@ximian.com>
9631
9632         * TableLayoutSettings.cs: finish up the corcompare work for this
9633         class.
9634
9635 2006-12-23  Chris Toshok  <toshok@ximian.com>
9636
9637         * Control.cs: make SetImplicitBounds internal, do some futzing
9638         with LayoutEngine so that it's available in 1.1, and remove the
9639         entire duplicated code mess from PerformLayout.  Use
9640         System.Windows.Forms.Layout.DefaultLayout instead.
9641
9642         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
9643
9644 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9645
9646         * Form.cs: Add MainMenuStrip property.
9647
9648 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9649
9650         * Control.cs: Add ContextMenuStrip property and implementation.
9651         Fix ContextMenu implementation to show menu centered on control when
9652         activated using the keyboard instead of showing at screen (0,0).
9653
9654         * ToolStripDropDown.cs: Fix needed overload of Show ().
9655
9656 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9657
9658         * Menu.cs: Name property added for 2.0 profile.
9659         
9660 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9661
9662         * Menu.cs: Update information about FindMenuItem, method to be
9663         implemented soon.
9664
9665 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9666
9667         * MenuAPI.cs: When deselect items deselect also selected subitems.
9668         
9669 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9670
9671         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
9672         FindSubItemByCoord to found itens that is not active, also an
9673         cheking added to FindSubItemByCoord to search for items only 
9674         in visible popup windows. Fixes #80274.
9675
9676 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
9677
9678         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
9679         internal property, it be care about change ExStyle. 
9680
9681 2006-12-22  Andreia Gaita  <avidigal@novell.com>
9682
9683         * ContainerControl.cs: set activeControl for parent forms up the 
9684         tree when the new activecontrol is a container.
9685         When validating the active control, if it is a container, also
9686         raise up the validation for it's active control. Fixes #80280
9687         
9688         * Control.cs: Add internal property flag and check to prevent
9689         Focus events from getting raised when Select() is called for
9690         a ContainerControl. There are still too many focus events being
9691         raised at the moment though.
9692         Cleaned up the code a bit.
9693
9694 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9695
9696         * Control.cs: Added all missing 2.0 events.and
9697         fixed a couple of corcompare issues.
9698         * TrackBar.cs: Implemented missing 2.0 bits.
9699         * MonthCalendar.cs, 
9700         * DateTimePicker.cs, 
9701         * MdiClient.cs: Fixed some corcompare issues.
9702
9703 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9704
9705         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
9706         SplitterPanel.cs: corecompare work.
9707
9708 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9709
9710         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
9711         Clean up warnings for BackgroundImageChanged and PaddingChanged
9712         events now that they are implemented in Control.cs.
9713
9714 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9715
9716         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
9717         
9718         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
9719         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
9720         of TableLayoutPanel and supporting cast.
9721
9722 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9723
9724         * XplatUIWin32.cs: 
9725         - GrabWindow now confines the mouse pointer to the confine window.
9726         - Added Win32ClipCursor and Win32GetClipCursor.
9727
9728         * Control.cs: 
9729         - Added CaptureWithConfine to be able to capture and confine 
9730         mouse pointer.
9731         
9732         * InternalWindowManager.cs: 
9733         - Call CaptureWithConfine instead of Capture if we're an
9734         MdiChild (fixes #79982).
9735
9736 2006-12-21  Chris Toshok  <toshok@ximian.com>
9737
9738         * DataGrid.cs: guard against the initial state of selection, where
9739         selection_start == -1.  make sure we only select from index >= 0.
9740         Fixes bug #80291.
9741
9742 2006-12-21  Chris Toshok  <toshok@ximian.com>
9743
9744         * Control.cs: we don't need to be so draconian with
9745         UpdateDistances, and we thusly don't need to call it before
9746         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
9747
9748 2006-12-21  Daniel Nauck  <dna@mono-project.de>
9749
9750         * ComboBox.cs,
9751         TextBox.cs: Implemented AutoComplete properties.
9752
9753 2006-12-20  Chris Toshok  <toshok@ximian.com>
9754
9755         * DataGridView*.cs: some corecompare work.
9756
9757 2006-12-20  Jackson Harper  <jackson@ximian.com>
9758
9759         * XplatUIX11.cs: We need to hide the caret when deleting it,
9760         otherwise you get carets left lying around everywhere.
9761         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
9762         prevents getting some weird half drawn caret tracers when
9763         scrolling.
9764         * TextControl.cs: Attempt to reduce the number of times we need to
9765         recreate the caret.
9766
9767 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
9768
9769         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
9770
9771 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9772
9773         * DateTimePicker.cs:
9774         - Implemented missing 2.0 bits.
9775         - Changed some default values to match MS.
9776         
9777 2006-12-20  Jackson Harper  <jackson@ximian.com>
9778
9779         * TextBoxBase.cs: When changing the font across the document we
9780         can't recalculate after changing each line, since that will cahnge
9781         the line count.
9782         - PreferredHeight is a little different than i thought.
9783         - When backspacing, move the caret before we do the actual char
9784         delete, because when that delete crosses a wrap boundary the
9785         positional information will change.
9786
9787 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9788
9789         * Control.cs: Added some missing 2.0 bits: 
9790         BackgroundImageLayout, BackgroundImageLayoutChanged, 
9791         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
9792         add IBindableComponent and IDropTarget implementation.
9793         
9794         * MonthCalendar.cs: 
9795         - Added all missing 2.0 features:
9796         BackgroundImageLayout, RightToLeftLayout, 
9797         OnHandleDestroyed, RightToLeftLayoutChanged, 
9798         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
9799         PaddingChanged.
9800         - Rewrote all the BoldDate code, it was completely broken.
9801         - Fixed all the tests (the tests can now be re-enabled, the
9802         problems were not with the tests, but with the control, it was
9803         mostly broken).
9804         
9805         * DateTimePicker.cs: Changed the location where the 
9806         MonthCalendar is shown.
9807         
9808 2006-12-19  Chris Toshok  <toshok@ximian.com>
9809
9810         * DataGridView.cs: add IDropTarget implementation.
9811
9812         * ToolStripPanel.cs: add IDropTarget implementation.
9813
9814 2006-12-19  Jackson Harper  <jackson@ximian.com>
9815
9816         * TextControl.cs: soft now means something different than what it
9817         used to mean, we want to move the caret regardless of whether or
9818         not this break was soft (would we really have wanted the caret
9819         to not move with the break in the old context?)
9820         * TreeView.cs: Make sure we factor in the vert scrollbar when
9821         calculating the horizontal scrollbar's maximum.
9822
9823 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9824
9825         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
9826         check for keywords in alternate casing, close bug #80049.
9827
9828 2006-12-19  Chris Toshok  <toshok@ximian.com>
9829
9830         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
9831         methods (which all do nothing).
9832
9833         * IDropTarget.cs: add the 4 missing methods.
9834
9835 2006-12-19  Chris Toshok  <toshok@ximian.com>
9836
9837         * TableLayoutRowStyleCollection.cs: corcompare work.
9838         
9839         * TableLayoutSettings.cs: same.
9840
9841         * TableLayoutStyle.cs: same.
9842
9843         * TableLayoutColumnStyleCollection.cs: same.
9844
9845 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
9846
9847         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
9848         TableLayoutPanel I've had in my local tree for way too long.
9849
9850 2006-12-19  Miguel de Icaza  <miguel@novell.com>
9851
9852         * TableLayoutSettings.cs: Finish the public API (still needs all
9853         the logic to update on changes). 
9854
9855         * TableLayoutPanelCellPosition.cs: new file.
9856         
9857         * TableLayoutRowStyleCollection.cs,
9858         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
9859         TableLayoutSettings.cs: Track the final 2.0 table api.
9860
9861 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9862
9863         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
9864         and Image List 2.0 members for ColummnHeader.
9865         * ListView.cs: Add key-related 2.0 methods for
9866         ColumnHeaderCollection.
9867
9868 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9869
9870         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
9871         ArgumentNullException if items argument is null. Ignore null item in
9872         arrays. Removed extra tabs.
9873
9874 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9875
9876         * MonthCalendar.cs: Fixed InvalidCastException.
9877
9878 2006-12-19  Jackson Harper  <jackson@ximian.com>
9879
9880         * TextControl.cs: Don't increment the position here.
9881         - When calculating char positions only add in the line break size
9882         for hard line breaks.
9883
9884 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9885
9886         * SendKeys.cs: Changed some things to match ms.net behaviour
9887         when parsing shifted capital letters.
9888         
9889         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
9890         Add window handle as parameter to SendInput. X11 needs the 
9891         window handle, and the handle being passed      to it in the keys 
9892         queue is the active control handle (which windows needs), not 
9893         the window handle.
9894         
9895         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
9896         to support SendKeys on X.       
9897         
9898         * X11Keyboard: Implement helper method to lookup a linux keycode
9899         given the virtual keycode. Added table of keycode-2-virtualkey
9900         values to support this.
9901
9902 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9903
9904         * ListView.cs: Add support for SelectedIndexCollection
9905         and SelectedItemCollection 2.0 methods. Implement support
9906         for ImageKey too.
9907         * ListViewItem.cs: Add support for ListViewSubItemCollection
9908         2.0 methods. Also, fix an incorrect behavior of AddRange method
9909         (it shouldn't call Clear).
9910         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
9911
9912 2006-12-19  Jackson Harper  <jackson@ximian.com>
9913
9914         * RichTextBox.cs: 
9915         * TextBoxBase.cs: New args for FormatText
9916         * TextControl.cs: Rewrote the main drawing method, this version
9917         feels a little easier to understand and debug to me.  Hopefully it
9918         does to others also
9919         - Fix FormatText to OR in the new formating values.  Added
9920         FormatSpecified param, basically this works in the same way as
9921         BoundsSpecified in Control.
9922         - Set the caret properties when the caret is positioned.
9923         - When wrapping text make sure that we calculate the width of the
9924         last character
9925         - when calculating alignments we might have wrapped down to the
9926         next line, so don't search for an individual tag, search for the
9927         end of the line
9928         - We need to invalidate the selection area when we replace the
9929         selection.
9930         
9931 2006-12-19  Daniel Nauck  <dna@mono-project.de>
9932
9933         * Application.cs: add Restart () 2.0 support
9934
9935 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9936
9937         * MenuItem.cs: Invalidate menu item rectangle after change Enable
9938         property. Fixes #80268.
9939         
9940 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9941
9942         * MenuAPI.cs: Dont trigger select event when closes top menu
9943         item. Fixes #80270.
9944
9945 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9946
9947         * MenuAPI.cs: When you click on menuitem only trigger onselect
9948         event for top menu itens. Fixes #80271.
9949         
9950 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9951
9952         * MdiWindowManager.cs: Make IconicBounds depend on
9953         the bottom of MdiClient, not the top (fixes #80267)
9954         
9955 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9956
9957         * MdiClient.cs: Added missing 2.0 attribute
9958
9959 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9960
9961         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
9962         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
9963
9964 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9965
9966         * MenuAPI.cs: Fix click when menuitem is not popup,
9967         this regression was caused by last commit (#80272).
9968
9969 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
9970
9971         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
9972         fire click event or close menu. Fixes #80272.
9973
9974 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9975
9976         * ListViewHitTestInfo.cs: add
9977
9978 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9979
9980         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
9981         * FlatButtonAppearance.cs: add
9982         * DockingAttribute.cs: add
9983
9984 2006-12-17  Chris Toshok  <toshok@ximian.com>
9985
9986         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
9987         and rebind our columns when it does - this way, if you make
9988         changes to the DataTable (or set the Table attribute on a DataView
9989         after setting it as the DataGrid's DataSource, the changes are
9990         made visible.)  Fixes bug #80107.
9991
9992 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9993
9994         * ListViewGroup.cs: add internal Location property for layouting.
9995         * Theme.cs: add abstract ListViewGroupHeight function.
9996         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
9997
9998 2006-12-16  Andreia Gaita  <avidigal@novell.com>
9999
10000         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
10001         Added reset of selected index to 0 when adding first tab page.
10002         Fixes #80264
10003         
10004         * NumericUpDown.cs: Fix NET_2_0 check
10005
10006 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10007
10008         * ListViewGroup.cs: fixed DefaultValueAttribute value
10009
10010 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10011
10012         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
10013
10014 2006-12-15  Miguel de Icaza  <miguel@novell.com>
10015
10016         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
10017         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
10018         ScrollableControl.cs: Add a handful of methods that are
10019         overwritten in 2.0 
10020
10021 2006-12-15  Chris Toshok  <toshok@ximian.com>
10022
10023         * XplatUIWin32.cs: initial implementation of the Reversible
10024         drawing functions.  there are some problems.  DrawReversibleFrame
10025         doesn't seem to work at all for Dashed FrameStyle, and in the
10026         Thick case there are drawing errors at the corners (we probably
10027         need to bind Rectangle instead of doing moveto/lineto's.)
10028
10029 2006-12-16  Andreia Gaita  <avidigal@novell.com>
10030         
10031         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
10032         to send blocks of key messages. Send accumulates keys to send with Flush, 
10033         while SendWait sends all keys immediately.
10034                 
10035         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
10036         XplatUIX11.cs,  XplatUIX11-new.cs:
10037         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
10038         to Win32 SendInput.
10039         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
10040         
10041         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
10042         testing for ms.net on this class is very tricky, as the tests run too fast 
10043         to allow the hook to release, essentially freezing the keyboard and the 
10044         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
10045         category :p
10046
10047 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10048
10049         * Padding.cs: fixed serialization compability to MS ("_var" field names),
10050                         added missing attributes.
10051  
10052 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10053
10054         * ListViewGroup.cs: Added missing attributes.
10055         * ListViewGroupCollection.cs: Added missing attributes.
10056
10057 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10058
10059         * ListViewItem.cs: fixed ListViewSubItem text property.
10060
10061 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10062         
10063         * Control.cs: Added missing 2.0 attributes
10064         
10065 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10066         
10067         * MdiClient.cs: Added missing 2.0 attribute.
10068         * MonthCalendar.cs: Added some missing 2.0 attributes 
10069         and properties.
10070         
10071 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10072
10073         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
10074
10075 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
10076
10077         * MainMenu.cs: Add the new 2.0 constructor to help out people
10078         using the MainMenu in VS2005.
10079
10080 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10081         
10082         * MdiChildContext.cs: Removed it, no longer used.
10083         * MdiClient.cs: Added missing 2.0 attributes.
10084         
10085 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10086         
10087         * InternalWindowManager.cs: Fix a NullRef with previous 
10088         changes for toolwindows.
10089         
10090 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10091
10092         * Control.cs: 
10093         - Added AfterTopMostControl to allow for certain controls 
10094         to always stay on top when normal controls are brought to 
10095         front.
10096         
10097         * XplatUIWin32.cs: 
10098         - (DrawInversibleRectangle): Get window rectangle from Win32 
10099         in stead of from control, since Win32 doesn't calculate
10100         screen coords correctly from control's Location if it 
10101         have docked siblings.
10102         
10103         * MdiWindowManager.cs:
10104         - Correct the control menu popup location when clicked on
10105         the maximized form icon. (fixes #80223.1)
10106         - Don't show moving rectangle if mouse hasn't moved from
10107         the original clicked point.
10108         - Removed FormGotFocus handler (not used).
10109         - Calculate the control buttons location from the main
10110         window's size and not client size (fixes #79770).
10111         - Form is now closed when the form icon is double-clicked
10112         (fixes #79775). 
10113         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
10114         
10115         * InternalWindowManager.cs:
10116         - Moved some MDI-only methods to MdiWindowManager.
10117         - Removed unused properties and methods.
10118         - Unified method naming for methods handling wm messages.
10119         - Moved all message handling to seperate methods for
10120         each message.
10121         
10122         * ThemeWin32Classic.cs:
10123         - DrawManagedWindowDecorations now draws the title bar 
10124         with a gradient brush.
10125         - Add a CPDrawButtonInternal that allows us to specify
10126         light, normal and dark colors for the buttons (control 
10127         buttons for MDI children were drawn with the same light
10128         color as the background, therefore loosing the 3D effect).
10129         
10130         * SizeGrip.cs:
10131         - Add a CapturedControl property that is used to 
10132         determine the control to resize (defaults to parent). 
10133         Needed for MdiClient, since its SizeGrip's parent is
10134         MdiClient, but the control to resize is the main form.
10135         
10136         * MdiClient.cs:
10137         - Set SizeGrip's CapturedControl to the main form in order
10138         to resize the main form and not the MdiClient.
10139         - Override AfterTopMostControl to leave the scrollbars 
10140         always on top.
10141
10142 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10143
10144         * ListView.cs: fixed ListViewItemCollection AddRange and
10145                         implemented ListViewItemCollection AddRange 2.0 support.
10146
10147 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10148
10149         * ListViewGroup.cs: Add.
10150         * ListViewGroupCollection.cs: Add
10151         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
10152         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
10153                                 stub for ImageKey 2.0 support.
10154
10155 2006-12-14  Mike Kestner  <mkestner@novell.com>
10156
10157         * ListView.cs: add text padding to the autocalculation for columns
10158         of width -2.  Fixes #80207.
10159  
10160 2006-12-14  Mike Kestner  <mkestner@novell.com>
10161
10162         * ListView.cs: add some index guarding for partial row navigation 
10163         logic.  Fixes #80250.
10164
10165 2006-12-14  Mike Kestner  <mkestner@novell.com>
10166
10167         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
10168         are added or inserted to the collection.  Fixes #81099.
10169
10170 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
10171
10172         * MenuAPI.cs: Closes menu when right click out side of popup
10173         it fix problem in ContextMenu and MainMenu. Fixes #80252.
10174
10175 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10176
10177         * ListViewItem.cs: Fix dumb error.
10178
10179         * ListView.cs: Add Find and ContainsKey methods in 
10180         ListViewItemCollection, and also return true for IsReadOnly
10181         and IsFixedSize (changes for 2.0). 
10182
10183 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
10184
10185         * Control.cs: Allow Region to be set to null.
10186
10187 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10188
10189         * MdiWindowManager.cs: Remove unused (commented out) code.
10190         * Form.cs: When the MdiChild is maximized, the form needs 
10191         WM_NCMOUSELEAVE, so request it.
10192         * InternalWindowManager.cs: 
10193         - Added tooltips to control buttons.
10194         - Removed duplicated control button handling code.
10195         - Removed unused (commented out) code.
10196         
10197 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
10198
10199         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
10200         was used because we must set cursor without trigger ChangeCursor event
10201         and without change Cursor control property. Fixes #79963.
10202
10203 2006-12-12  Andreia Gaita  <avidigal@novell.com>
10204         
10205         * Control.cs: Check if Region setter value is null, and ignore
10206
10207 2006-12-12  Jackson Harper  <jackson@ximian.com>
10208
10209         * TextControl.cs: We were almost always drawing one more line then
10210         needed, since the GetLineByPixel will return the last line found
10211         at that pixel. In most cases though, we were invalidating up to
10212         the junction between two lines.
10213         - Improve debug code.
10214
10215 2006-12-12  Chris Toshok  <toshok@ximian.com>
10216
10217         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
10218         and FillReversibleRectangle.
10219
10220         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
10221         and FillReversibleRectangle.
10222
10223         * XplatUIWin32.cs: add stubs which do nothing for
10224         DrawReversibleFrame, DrawReversibleLine, and
10225         FillReversibleRectangle.
10226
10227         * XplatUIOSX.cs: add stubs which raise NIE for
10228         DrawReversibleFrame, DrawReversibleLine, and
10229         FillReversibleRectangle.
10230
10231         * XplatUIX11.cs: add working implementation for
10232         DrawReversibleFrame, DrawReversibleLine, and
10233         FillReversibleRectangle.
10234         
10235         * ControlPaint.cs: implement DrawReversibleFrame,
10236         DrawReversibleLine, and FillReversibleRectangle, by calling into
10237         the appropriate XplatUI method.
10238
10239 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10240
10241         * Form.cs: Make MdiClient have the focus even if it's
10242         not selectable, since it should receive WM_KEY* and WM_MOUSE 
10243         messages. Fixes #79907.
10244         
10245 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10246
10247         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
10248         queried after the window is created.
10249         
10250         * XplatUIX11.cs: Added SendParentNotify to implement 
10251         WM_PARENTNOTIFY logic. Fixes #79965.
10252         
10253         * Control.cs: Added MakeParam.
10254         
10255 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10256
10257         * MdiClient.cs: Resume Layout before setting window
10258         states (fixes #80201).
10259
10260 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10261
10262         * MenuAPI.cs: Deselect a menu item after performing
10263         the click (fixes #80197).
10264
10265 2006-12-11  Jackson Harper  <jackson@ximian.com>
10266
10267         * TextBoxBase.cs: We need to cap this value, since Maximum -
10268         ViewPortHeight can be less than zero.
10269         - Only do selection with the left mouse button.
10270         * TextBox.cs: Don't tell the world that we have a context menu.
10271         * Control.cs: New method so that we can control whether or not the
10272         context menu is visible outside MWF.
10273
10274 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
10275
10276         * ToolBarButton.cs: Fix text positon. 
10277
10278 2006-12-11  Miguel de Icaza  <miguel@novell.com>
10279
10280         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
10281
10282         * Control.cs (DoubleBuffered): Add implementation.
10283
10284         * Application.cs (OpenForms): Add.
10285
10286 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
10287
10288         * Form.cs: Use opacity instead of Opactiy to determine if we need
10289         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
10290
10291 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
10292
10293         * Control.cs: Fix NRE if Control.Site was set to null.
10294
10295 2006-12-11  Chris Toshok  <toshok@ximian.com>
10296
10297         * Control.cs: ControlCollection.Remove should return if the arg is
10298         null, and ControlCollection.SetChildIndex should raise a ANE.
10299
10300 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
10301
10302         * Control.cs: Verify value set for Dock property. Code formatting
10303         updates.
10304
10305 2006-12-11  Jackson Harper  <jackson@ximian.com>
10306
10307         * TextControl.cs: Draw the caret and the selection when a flag is
10308         set on the owner.
10309         * TextBoxBase.cs: We want to draw the caret and the selection for
10310         TextBox but not for TextBoxBase.
10311         - If the window is resized and scrolling is no longer needed (the
10312         whole doc is visible) set the scroll position to zero.
10313         - The default SelectWord (the one TextBox uses) should move the
10314         caret to the end of the word.
10315         - SelectAll moves the caret to the end of the selection.
10316         * TextBox.cs: We don't selectall on focus, we just do it when the
10317         control is created.
10318         
10319 2006-12-11  Mike Kestner  <mkestner@novell.com>
10320
10321         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
10322
10323 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10324
10325         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
10326         2.0 support.
10327         * ListViewItem.cs: Add Name 2.0 property.
10328
10329 2006-12-11  Andreia Gaita  <avidigal@novell.com>
10330
10331         * TabControl.cs: Set visibility on selected or default tab 
10332         when tabcontrol handle is created, so that it's contents
10333         actually show up (duh). Fixes #80193
10334         Don't redraw the control if there is no handle created, as
10335         the selected index might be completely invalid. Added some tests
10336         to check for this.
10337
10338 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
10339
10340         * ToolBar.cs: Uses maximun width and height of all buttons as 
10341         button rectangle when ButtonSize specified, it looks strange but
10342         is what happens in Win32. Fixes #80189.
10343
10344 2006-12-11  Jackson Harper  <jackson@ximian.com>
10345
10346         * TextControl.cs: Need to track undo levels ourself, since
10347         compound actions will mess them up.
10348
10349 2006-12-10  Andreia Gaita  <avidigal@novell.com>
10350
10351         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
10352         SelectedIndex value is changed (even if it's not valid).
10353         Reset SelectedIndex to 0 when the handle is created and if
10354         the current index is invalid.
10355         Fixes SelectdeIndex unit tests and #80128
10356
10357 2006-12-08  Chris Toshok  <toshok@ximian.com>
10358
10359         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
10360         calls EndEdit, it needs to be called before we set current_cell to
10361         its new value.  Otherwise, we end up committing the value in the
10362         textbox to the new cell as well.  Fixes bug #80160.
10363
10364 2006-12-08  Chris Toshok  <toshok@ximian.com>
10365
10366         * Form.cs (set_CancelButton): if the button's DialogResult is
10367         None, set it to Cancel.  Fixes bug 80180.
10368
10369 2006-12-08  Jackson Harper  <jackson@ximian.com>
10370
10371         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
10372         to watch ourselves when setting the canvas size and setting the
10373         scrollbar values.
10374
10375 2006-12-08  Chris Toshok  <toshok@ximian.com>
10376
10377         * DataGrid.cs: comment out the two MakeTransparent calls for the
10378         time being so people using trunk (and not 1.2.2) on windows can
10379         actually use the datagrid.  This deals with bug #80151.
10380
10381 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
10382
10383         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
10384         Graphics.DrawImage (image, int, int, int, int) overload instead
10385         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
10386         the dpi difference and was blurring images it drew.
10387         [Fixes bug #79960]
10388
10389 2006-12-08  Chris Toshok  <toshok@ximian.com>
10390
10391         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
10392         rowcnt is 0 (such as with an empty datasource), and make sure we
10393         initialize not_usedarea.Y to cells.Y, so we don't draw over the
10394         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
10395
10396 2006-12-08  Chris Toshok  <toshok@ximian.com>
10397
10398         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
10399         grid.
10400
10401 2006-12-08  Chris Toshok  <toshok@ximian.com>
10402
10403         [ Fixes bug #80167 ]
10404         
10405         * ThemeWin32Classic.cs: don't draw the image if the button's flat
10406         style is FlatStyle.System.
10407
10408         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
10409         ButtonBase.flat_style private, and switch uses of it to the public
10410         property.
10411         
10412 2006-12-08  Chris Toshok  <toshok@ximian.com>
10413
10414         [ Fixes bug #80121 ]
10415         
10416         * ThemeWin32Classic.cs: center the caption text in the datagrid
10417         when we draw it.
10418
10419         * DataGrid.cs: lessen the amount we add to the caption height from
10420         6 to 2.  6 was making it huge.
10421
10422 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10423
10424         * UpDownBase: Handle MouseWheel call directly instead of capturing
10425         the inner textbox's OnMouseWheel. Fixes #80166
10426
10427 2006-12-08  Jackson Harper  <jackson@ximian.com>
10428
10429         * TextControl.cs: We need to invalidate the textbox when we empty
10430         it (how had this not been discovered before?)
10431
10432 2006-12-08  Jackson Harper  <jackson@ximian.com>
10433
10434         * TextBoxBase.cs: Reworked the mouse down code so I could get it
10435         to behave like MS, we now ignore the eventargs.Click and just
10436         track state ourself, which we were already doing anyways.
10437         - Constrain the double click handler to the double click size.
10438         
10439 2006-12-08  Chris Toshok  <toshok@ximian.com>
10440
10441         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
10442         direction if that scrollbar isn't shown.  fixes bug #80158.
10443
10444 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10445
10446         * NumericUpDown.cs: Update value on getter. Fixes #79950
10447
10448 2006-12-08  Chris Toshok  <toshok@ximian.com>
10449
10450         * MenuItem.cs: add back in the event cloning code.  I didn't know
10451         how to do it in the face of the EventHandlerList work i'd done
10452         last week.  Fixes bug #80183.
10453
10454 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
10455
10456         * Control.cs: Add an invalidate to the BackgroundImage setter.
10457         [Fixes 80184]
10458
10459 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10460
10461         * ToolStrip*: Add some small properties reported by MoMA, fix event
10462         firing and default properties based off of unit tests, and add some
10463         attributes based off of the class status page.
10464
10465 2006-12-07  Jackson Harper  <jackson@ximian.com>
10466
10467         * TextBoxBase.cs: Take HideSelection into account when determining
10468         whether or not to show the selection.
10469         * RichTextBox.cs: After inserting the RTF into the document move
10470         the cursor to the beginning of the document.
10471
10472 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10473
10474         * Control.cs: Remove static ArrayList "controls" which maintained
10475         a reference to every control created.
10476         * Application.cs: Create a static FormCollection to maintain a reference
10477         to every form created.  Use it in places that formerly enumerated through
10478         the controls one looking for forms.
10479         * Form.cs: Add and remove self from above FormCollection.
10480
10481 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
10482
10483         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
10484           not libgdk (though it makes me wonder why I didn't have any
10485           problems)
10486
10487 2006-12-07  Chris Toshok  <toshok@ximian.com>
10488
10489         [ you had to know this was coming after that last commit...]
10490         
10491         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
10492         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
10493         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
10494         XCopyArea).
10495
10496 2006-12-07  Chris Toshok  <toshok@ximian.com>
10497
10498         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
10499         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
10500         all the behavior we need for double buffering.
10501
10502         * XplatUIDriver.cs: implement the 3 double buffer methods using a
10503         client side Bitmap, just like the old Control-based double buffer
10504         code did.  The methods are virtual, so each XplatUI driver
10505         subclass can replace the implementation to use a faster, platform
10506         specific approach.
10507
10508         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
10509         double buffer code, and clean things up a bit in the process.
10510
10511 2006-12-06  Chris Toshok  <toshok@ximian.com>
10512
10513         * Control.cs: reindent WndProc.
10514
10515 2006-12-06  Chris Toshok  <toshok@ximian.com>
10516
10517         [ I wanna be like BenM when I grow up ]
10518         
10519         * Hwnd.cs: create a single static Graphics object on the static
10520         Bitmap we create.  use this for our text measurements.
10521
10522         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
10523         This was causing us to allocate a backbuffer for every control,
10524         even when it wasn't flagged as double buffered.  Instead use the
10525         single graphics instance.  This might have implications for
10526         multithreaded applications.  If we run into problems we can switch
10527         to creating 1 Graphics per control, on the static Hwnd bitmap.
10528
10529         this change nets us a 7M savings in private dirty mappings when
10530         running FormsTest.exe.
10531
10532 2006-12-06  Chris Toshok  <toshok@ximian.com>
10533
10534         * ListView.cs: the BackgroundImage override is just to set
10535         attributes.  chain up to base.BackgroundImage.
10536
10537         * RichTextBox.cs: same.
10538
10539         * ToolBar.cs: same, but we need to also redraw the toolbar when it
10540         changes, so instead a handler for BackgroundImageChanged.
10541         
10542         * Control.cs: make background_image private.
10543
10544 2006-12-06  Chris Toshok  <toshok@ximian.com>
10545
10546         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
10547         sure we even need this assignment, but roll with it for now.
10548
10549         * Control.cs: make the cursor field private.
10550
10551 2006-12-06  Chris Toshok  <toshok@ximian.com>
10552
10553         * Form.cs: we don't need to explicitly set ImeMode to
10554         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
10555         behavior in the face of ImeMode.Inherit.
10556
10557         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
10558         change the ctor's assignment to use ImeMode instead of ime_mode.
10559
10560         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
10561         ImeModeInherit.  Only check for the parent's imemode (and return
10562         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
10563         This fixes the button unit test, which sets both ImeMode and
10564         DefaultImeMode to ImeMode.Disable.
10565
10566         also make the ime_mode field private.
10567
10568 2006-12-06  Chris Toshok  <toshok@ximian.com>
10569
10570         * Control.cs: make control_style private.
10571
10572         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
10573         setting the styles to true, then setting them to false instead of
10574         reverting to their previous values.
10575
10576         also, call SetStyle on the scrollbars instead of using
10577         control_style directly.
10578
10579 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
10580
10581         * FormCollection.cs: Implement. [2.0]
10582
10583 2006-12-06  Chris Toshok  <toshok@ximian.com>
10584
10585         * Control.cs: make tab_stop private.
10586
10587         * Label.cs: set TabStop, not tab_stop.  reformat some event
10588         add/remove methods to make them more compact.
10589
10590 2006-12-06  Chris Toshok  <toshok@ximian.com>
10591
10592         * RadioButton.cs: fix TabStop handling.
10593
10594 2006-12-06  Chris Toshok  <toshok@ximian.com>
10595
10596         * TextBox.cs: remove the explicit assignments to has_focus.
10597         Control does that.
10598
10599         * ButtonBase.cs: remove the assignment to has_focus.  Control will
10600         manage that.
10601         
10602 2006-12-06  Chris Toshok  <toshok@ximian.com>
10603
10604         * ButtonBase.cs: remove all uses of is_enabled from this code.
10605         it's always true when any of the code containing the checks is
10606         executed.
10607
10608 2006-12-06  Chris Toshok  <toshok@ximian.com>
10609
10610         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
10611         with different semantics (some are present in both 1.1 and 2.0
10612         profiles) so that we match MS's behavior in our unit tests.
10613
10614 2006-12-06  Jackson Harper  <jackson@ximian.com>
10615
10616         * TextControl.cs: Make this operation undoable.
10617         * TextBoxBase.cs: Factor the border width into the preferred
10618         height.
10619         - implement Modified as per the spec.
10620
10621 2006-12-06  Chris Toshok  <toshok@ximian.com>
10622
10623         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
10624
10625 2006-12-06  Chris Toshok  <toshok@ximian.com>
10626
10627         * Control.cs: make right_to_left and context_menu fields private.
10628
10629 2006-12-06  Chris Toshok  <toshok@ximian.com>
10630
10631         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
10632         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
10633         Control.child_controls private.  switch all uses over to
10634         Control.Controls.
10635
10636 2006-12-06  Chris Toshok  <toshok@ximian.com>
10637
10638         * System.Windows.Forms/GroupBox.cs,
10639         System.Windows.Forms/AccessibleObject.cs,
10640         System.Windows.Forms/ErrorProvider.cs,
10641         System.Windows.Forms/Control.cs,
10642         System.Windows.Forms/UpDownBase.cs,
10643         System.Windows.Forms/ScrollBar.cs,
10644         System.Windows.Forms/DateTimePicker.cs,
10645         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
10646         System.Windows.Forms/ToolTip.cs,
10647         System.Windows.Forms/RadioButton.cs,
10648         System.Windows.Forms/LinkLabel.cs,
10649         System.Windows.Forms/Splitter.cs,
10650         System.Windows.Forms/TextBoxBase.cs,
10651         System.Windows.Forms/ToolStripTextBox.cs,
10652         System.Windows.Forms/ContainerControl.cs,
10653         System.Windows.Forms/ThemeWin32Classic.cs,
10654         System.Windows.Forms/SizeGrip.cs,
10655         System.Windows.Forms/ToolStripDropDown.cs,
10656         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
10657         private.  switch all uses over to Control.Parent.
10658
10659 2006-12-06  Chris Toshok  <toshok@ximian.com>
10660
10661         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
10662         Control does this before calling emitting these events.
10663
10664         * TabControl.cs: same.
10665
10666         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
10667         Control.client_rect.
10668
10669         * ButtonBase.cs: use the ClientSize property instead of the
10670         client_size field.
10671
10672         * ScrollableControl.cs: same.
10673
10674         * Control.cs: another pass at making properties private.  also,
10675         move the initialization of tab_stop to the ctor.
10676
10677 2006-12-05  Andreia Gaita <avidigal@novell.com>
10678
10679         * TabControl.cs: Let the selected index be set freely if the 
10680         control handle is not yet created.
10681
10682 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10683
10684         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
10685         internal until I can rewrite DefaultLayout.
10686         * ToolStrip.cs: Fix build error and some general cleaning.
10687         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
10688         Fix build errors caused by making some of Control's fields private.
10689
10690 2006-12-05  Jackson Harper  <jackson@ximian.com>
10691
10692         * TextControl.cs: Redo Insert a little so that it use IndexOf
10693         instead of Split, this prevents it from messing up on things like
10694         \n\n\n. Also more effecient since the split array doesn't need to
10695         be created.
10696         * TextBoxBase.cs: AppendText doesnt handle multiline and non
10697         multiline text differently, this is the first of many fixes that
10698         will make multiline/non-multiline the same thing as far as the
10699         TextBoxBase is concerned.
10700         - Don't split the text and insert lines, this can lose some line
10701         endings (like is the last line a soft or hard break). Instead use
10702         the new Insert.
10703         - Fix an off by one when combining all the lines in the Text
10704         getter.
10705         - Remove separate multiline handling from the Text getter/setter.
10706
10707 2006-12-05  Chris Toshok  <toshok@ximian.com>
10708
10709         * ButtonBase.cs: a few changes:
10710
10711         - don't reinitialize internal Control fields in the ctor when they
10712         have the same values as Control sets them.
10713
10714         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
10715         this before calling those methods.
10716
10717         - we don't need to call Refresh for anything.  use Invalidate
10718         instead.
10719
10720         - OnEnabledChanged doesn't need to redraw at all - Control.cs
10721         calls Refresh in its OnEnabledChanged.
10722         
10723         - several of the events we were registered for in the ctor to
10724         redraw ourselves already include calls to Invalidate in the
10725         property setters that raise the events.  remove the extra
10726         invalidation.
10727
10728         - reformat a switch statement that was 83274658 columns wide.
10729         
10730 2006-12-05  Mike Kestner  <mkestner@novell.com>
10731
10732         * ComboBox.cs: fix a unit test regression from a TextBox
10733         SelectionLength return of -1 when there's no selection.  
10734
10735 2006-12-05  Chris Toshok  <toshok@ximian.com>
10736
10737         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
10738         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
10739         cleaning up some of the internal Control fields being used by
10740         subclasses.
10741
10742 2006-12-05  Mike Kestner  <mkestner@novell.com>
10743
10744         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
10745         listbox after AddImplicit calls since it defaults to hidden. Add a 
10746         hack to preserve requested heights across DropDownStyle changes.
10747
10748 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10749
10750         * PropertyGrid.cs: Hide FindFirstItem method from public API.
10751
10752 2006-12-05  Chris Toshok  <toshok@ximian.com>
10753
10754         * DataGridView.cs: fix compiler warnings.
10755
10756         * PrintControllerWithStatusDialog.cs: same.
10757
10758         * ToolBar.cs: same.
10759
10760         * FolderBrowserDialog.cs: same.
10761
10762         * Splitter.cs: same.
10763
10764         * DataGridViewComboBoxCell.cs: same.
10765
10766         * XplatUIWin32.cs: same.
10767
10768         * PictureBox.cs: same.
10769
10770         * Win32DnD.cs: same.
10771
10772         * PageSetupDialog.cs: same.
10773
10774         * FileDialog.cs: same.
10775
10776         * PrintDialog.cs: same.
10777
10778         * DataGridTextBoxColumn.cs: same.
10779
10780         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
10781
10782 2006-12-05  Chris Toshok  <toshok@ximian.com>
10783
10784         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
10785         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
10786         System.ComponentModel.EventHandlerList work.
10787
10788 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
10789
10790         * DrawTreeNodeEventArgs.cs: Added.
10791
10792 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10793         
10794         * InternalWindowManager.cs: Remove an unused field.
10795         
10796 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10797
10798         * InternalWindowManager.cs:
10799         - Save the point where the title bar is clicked.
10800         
10801         * MdiWindowManager.cs:
10802         - Only allow moving of the window as long as the 
10803         clicked point on the title bar does not get out of
10804         MdiClient's rectangle. Fixes #79982.
10805         
10806         * MdiClient.cs:
10807         - Added Horizontal/VerticalScrollbarVisible.
10808         - Simplified the scrollbar sizing algorithm.
10809         - Cache the difference in scrolled value in
10810         H/VBarValueChanged and move the calculation out
10811         of the for loop.
10812
10813 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10814
10815         * Control.cs: Make the Console.WriteLine in WndProc 
10816         write more info.
10817
10818 2006-12-05  Chris Toshok  <toshok@ximian.com>
10819
10820         * ToolStripManager.cs, ToolStripButton.cs,
10821         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
10822         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
10823         ToolStripSplitButton.cs, ToolStripSeparator.cs,
10824         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
10825         ToolStripProgressBar.cs, ToolStripContainer.cs,
10826         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
10827         to using System.ComponentModel.EventHandlerList.
10828
10829 2006-12-04  Chris Toshok  <toshok@ximian.com>
10830
10831         * LinkLabel.cs: fix up compiler warnings.
10832
10833         * TableLayoutSettings.cs: same.
10834
10835         * TreeView.cs: same.
10836
10837         * ToolBar.cs: same.
10838
10839         * TabControl.cs: same.
10840
10841         * RichTextBox.cs: same.
10842
10843         * ListViewItem.cs: same.
10844
10845         * PropertyGrid.cs: same.
10846
10847         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
10848
10849         * ToolTip.cs same.
10850
10851         * TextRenderer.cs: fix up compiler warnings.
10852
10853         * Label.cs: same.
10854
10855         * Form.cs: corcompare fixes.
10856
10857         * PictureBox.cs: fix up compiler warnings.
10858
10859         * ImageListStreamer.cs: same.
10860
10861         * TrackBar.cs: corcompare fix.
10862
10863         * Control.cs: fix up compiler warnings.
10864
10865         * SplitterPanel.cs: same.
10866
10867         * NumericTextBox.cs: same.
10868
10869         * ImageList.cs: same.
10870
10871         * StatusStrip.cs: same.
10872
10873         * ProgressBar.cs: corcompare fix.
10874
10875         * ToolStripButton.cs: fix up compiler warnings.
10876
10877         * ToolStripStatusLabel.cs: same.
10878
10879         * ToolStripSplitButton.cs: same.
10880
10881         * ToolStripSeparator.cs: same.
10882
10883         * ToolStripProgressBar.cs: same.
10884
10885         * ToolStripDropDownMenu.cs: same
10886
10887         * ToolStripDropDown.cs: same.
10888
10889         * ToolStripDropDownButton.cs: same.
10890
10891         * ToolStrip.cs: same.
10892
10893         * ToolStripControlHost.cs: same.
10894
10895         * ToolStripContentPanel.cs: same.
10896
10897         * ToolStripDropDown.cs: same.
10898
10899         * ToolStripContainer.cs: same.
10900
10901         * ToolStripPanel.cs: same, and add "new" where we need it to work
10902         with the new ArrangedElementCollection.
10903
10904         * ToolStripItemCollection.cs: add "new" where we need it to work
10905         with the new ArrangedElementCollection.
10906
10907 2006-12-04  Andreia Gaita <avidigal@novell.com>
10908
10909         * TabControl.cs: Fix default tab selection to after TabControl
10910         gets focus and not before. Fixes #80128
10911
10912 2006-12-04  Chris Toshok  <toshok@ximian.com>
10913
10914         * DataGridTableStyle.cs: remove the gross calling of
10915         datagrid.Refresh from here.  It's a broken idea and it doesn't
10916         work anyway.
10917
10918         * DataGrid.cs: instead, just register/unregister from the
10919         DataGridTableStyle events in CurrentTableStyle.  we play it
10920         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
10921         even though some would most likely not require it.  Fixes bug
10922         #80115 (and one portion of #80117 as a side effect).
10923
10924 2006-12-04  Chris Toshok  <toshok@ximian.com>
10925
10926         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
10927         so the textbox (if any) goes away.  Fixes bug #80117.
10928
10929 2006-12-04  Chris Toshok  <toshok@ximian.com>
10930
10931         * DataGridColumnStyle.cs: set the column's readonly property
10932         initially based on the property descriptor's IsReadOnly.  Fixes
10933         bug #80044.
10934
10935 2006-12-04  Chris Toshok  <toshok@ximian.com>
10936
10937         * ComboBox.cs: wrap the dropdown style changing work in
10938         SuspendLayout/ResumeLayout.  Fixes bug #79968.
10939
10940 2006-12-04  Jackson Harper  <jackson@ximian.com>
10941
10942         * TextBoxBase.cs: Fix off by one, since these are one-based.
10943         * TextBox.cs: Select all the text when we get focus.  The TextBox
10944         does this but the RTB does not.
10945
10946 2006-12-04  Chris Toshok  <toshok@ximian.com>
10947
10948         * DataGridTextBoxColumn.cs: remove some spew.
10949
10950         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
10951         but some part of me is saying "it shouldn't be here.."  At any
10952         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
10953         setting the value.
10954
10955 2006-12-04  Chris Toshok  <toshok@ximian.com>
10956
10957         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
10958         to reassign the propertydescriptor.
10959
10960 2006-12-04  Jackson Harper  <jackson@ximian.com>
10961
10962         * TextBoxBase.cs:
10963         * TextControl.cs: Remove some unused variables.  Maybe this will
10964         patch things up between mike and I.
10965         - don't split lines less then one char wide, if the viewport is
10966         that small text won't be visible anyways.
10967         
10968 2006-12-04  Jackson Harper  <jackson@ximian.com>
10969
10970         * TextBoxBase.cs: Default selection length is -1, need to do some
10971         more testing on windows to see when this is used for the property.
10972         - Redid the Lines [] property to that we properly remove soft line
10973         breaks
10974         - added support for preserving carriage returns
10975         -  CanUndo is not a variable like 'is undo enabled' it just returns
10976         true if there is undo operations available.
10977         - AppendText doesn't need to grab the last tag itself anymore,
10978         this happens automatically when we move the cursor.
10979         * TextControl.cs: Add CompoundActions to the undo class. This
10980         allows combining the other operations into one big option.  ie a
10981         paste will combine { delete old, insert new, move cursor }
10982         - Add InsertString undo operation
10983         - New method for deleting multiline text
10984         - Add carriage returns to lines. So we can preserve carriage
10985         returns when text is 'roundtripped'
10986
10987 2006-12-04  Chris Toshok  <toshok@ximian.com>
10988
10989         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
10990         minimum 0.  Fixes the scrollbar exception in bug #80136.
10991
10992 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10993
10994         * MdiClient.cs: 
10995         * MdiWindowManager: Removed unused fields and methods.
10996         
10997 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10998         
10999         * StatusBar.cs: Update all panels when a AutoSize=Contents
11000         panel needs updating.
11001         
11002         * StatusBarPanel.cs: Remove twidth and only use initialize.
11003         Fixes #80031.
11004                 
11005 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11006
11007         * Form.cs: When a form's MdiParent is set add it directly
11008         on top of the z-order in stead of relying on MdiClient's
11009         ActivateChild to do it. Fixes #80135.
11010         
11011         * MdiClient.cs: 
11012         - Remove original_order, mdi_child_list is already doing
11013         the same thing.
11014         - Create mdi_child_list on construction in
11015         stead of first use (avoids a few null checks).
11016
11017         * MenuItem.cs: Use an already existing list of mdi children
11018         to get the correct order of children and remove the other
11019         redundant list.
11020
11021 2006-12-04  Chris Toshok  <toshok@ximian.com>
11022
11023         * PropertyGridView.cs: cached_splitter_location is only used in
11024         !DOUBLEBUFFER code.
11025
11026         * PropertyGrid.cs: implement the ComComponentNameChanged event
11027         using Events, hoping that would fix the warning.  Looks like a
11028         compiler bug instead (#80144).
11029
11030         * PropertyManager.cs: remove unused method.
11031
11032 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
11033
11034         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
11035         include parentesis to fix expression evaluation. Fixes #79634.
11036
11037 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
11038         
11039         * MenuAPI.cs:
11040         - Changes to fix behavior in Menu control, some reported in #80097
11041         and other detected during behavior refactory like a select event
11042         problems.
11043         - Remove unneded "if's" conditions.
11044         - Created an internal to flag when popup is active in control, we need 
11045         it because in .NET you can have menu active but without popup active
11046         when you active menu using popup without visible items.
11047         - Mimic win32 behavior for Select and Popup events.  
11048         - Dont open popup menu when you dont have visible subitems.
11049         - Do nothing when click on disabled menu item.
11050         - Some small changes to follow the coding style guidelines.
11051         - Unselect menu only when another control gives focus. Fixes #80097.
11052         - Remove unused code.
11053         
11054         * MenuItem.cs: internal VisibleItems method to check if menu
11055         theres visible subitems, it will be usefull to fix some 
11056         behavior in Menu control.
11057         
11058 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
11059         
11060         * Timer.cs: Tag property for 2.0 profile.
11061         
11062 2006-12-01  Chris Toshok  <toshok@ximian.com>
11063
11064         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
11065         
11066         * Win32DnD.cs: comment out some unused fields.
11067
11068         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
11069         some unused properties/methods.
11070
11071         * XplatUIX11.cs: fix MousePosition so we override the base class's
11072         property instead of conflicting with it.
11073
11074         * PictureBox.cs: comment out some unused fields
11075
11076         * OSXStructs.cs: make some struct fields public.
11077
11078         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
11079         MousePosition so we override the base class's property instead of
11080         conflicting with it.
11081
11082         * X11Dnd.cs: comment out some unused fields
11083
11084         * X11DesktopColors.cs: fix some struct field visibility to quiet
11085         the compiler.
11086
11087         * X11Dnd.cs: remove some debug code.
11088
11089         * ThemeClearlooks.cs: comment out unused field.
11090
11091         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
11092
11093         * ThemeGtk.cs: comment out some unused pinvokes.
11094
11095         * Timer.cs: remove some unused fields.
11096
11097         * ThemeClearlooks.cs: comment out unused field.
11098
11099         * UpDownBase.cs: comment out unused field.
11100
11101         * DataObject.cs: comment out unused field.
11102
11103         * DataGridBoolColumn.cs: reomve unused field.
11104
11105         * DataGrid.cs: remove unused field.
11106
11107         * Cursor.cs: remove old ToBitmap code.
11108
11109         * ControlPaint.cs: remove unused method.
11110
11111         * ScrollBar.cs: remove unused fields.
11112
11113         * ComboBox.cs: remove unused field, and chain up to
11114         AccessibleObject ctor.
11115
11116         * ListBox.cs: remove unused field.
11117
11118         * ButtonBase.cs: wrap a couple fields in NET_2_0.
11119
11120         * GridEntry.cs: remove unused fields.
11121
11122         * Binding.cs: remove unused fields.
11123
11124         * AxHost.cs: remove unused method.
11125
11126         * ContainerControl.cs: remove unused field.
11127
11128         * ScrollableControl.cs: remove unused fields.
11129
11130 2006-12-01  Chris Toshok  <toshok@ximian.com>
11131
11132         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
11133         the Where/WhereString stuff.  it's easy enough to CWL
11134         Environment.StackTrace.
11135
11136         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
11137         unused private fields.
11138
11139 2006-12-01  Jackson Harper  <jackson@ximian.com>
11140
11141         * TextControl.cs: Do not update the view while inserting multiline
11142         text. If we update the view we might wrap lines, before entering
11143         the new lines, which causes the new line insertion calculations to
11144         be totally fubared.
11145         - Remove an old TODO
11146         - Make debug output a little nicer
11147         
11148 2006-12-01  Chris Toshok  <toshok@ximian.com>
11149
11150         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
11151
11152 2006-12-01  Chris Toshok  <toshok@ximian.com>
11153
11154         [ fix the majority of the CS0108 warnings we've been suppressing ]
11155         
11156         * TreeView.cs: mark BackgroundImageChanged as 'new'.
11157
11158         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
11159         to "LayoutToolBar" to quiet mcs.
11160         
11161         * TabControl.cs: mark our ControlCollection class as 'new'.
11162
11163         * TextBoxBase.cs: mark some events as 'new'.
11164
11165         * Splitter.cs: TabStop is 'new'.
11166
11167         * ControlBindingsCollection.cs: mark a few methods as new since
11168         they change the visibility from protected to public.
11169
11170         * RadioButton.cs: DoubleClick -> base class, and remove unused
11171         HaveDoubleClick.
11172
11173         * MonthCalendar.cs: ImeMode property -> base class, and mark many
11174         events as new.
11175
11176         * NumericUpDown.cs: TextChanged -> base class.
11177
11178         * CheckedListBox.cs: mark our ObjectCollection class as new to
11179         quiet mcs.
11180
11181         * FolderBrowserDialog.cs: make HelpRequest event new and have it
11182         muck with the base class.
11183
11184         * StatusBar.cs: fix some mcs warnings about Update being the same
11185         name as a base class method.
11186
11187         * RichTextBox.cs: mark some events as new, and make them do things
11188         to the base class impl.
11189
11190         * UserControl.cs: mark TextChanged as new, and have it manipulate
11191         base.TextChanged.
11192
11193         * UpDownBase.cs: mark some things new.
11194
11195         * CheckBox.cs: mark DoubleClick "new", and add some text about
11196         what we need to look at.
11197
11198         * Panel.cs: make the events "new", and manipulate the base
11199         version.  these are just here for attributes.
11200
11201         * AccessibleObject.cs: make owner private.
11202
11203         * Control.cs: deal with AccessibleObject.owner being private.
11204         cache our own copy if we need it.
11205
11206         * Button.cs: add "new" to the DoubleClickEvent.
11207
11208         * ListBox.cs: no need to track our own has_focus here.  let
11209         Control.has_focus do it for us.  Also some other work to clear up
11210         warnings about not overriding base class methods of the same name.
11211         
11212         * ComboBox.cs: clear up some warnings about not override base
11213         class methods of the same name.
11214
11215 2006-12-01  Chris Toshok  <toshok@ximian.com>
11216
11217         * Form.cs: flag a few things as "new" to quiet some of the mcs
11218         warnings.
11219
11220         * AxHost.cs: same.
11221
11222         * PrintPreviewDialog.cs: same.
11223
11224         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
11225         now DGV isn't so horrible on the class status page.  also, move
11226         all events to using System.ComponentModel.EventHandlerList.  my
11227         wrists hurt.
11228
11229 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11230
11231         * MdiWindowManager.cs:
11232         - Set form to active mdi child if shown,
11233         and update the active mdi child to the next 
11234         remaining child in the z-order if the form is hidden.
11235
11236         * Form.cs: 
11237         - Track if the form has been visible and if its 
11238         visibility is beeing changed, so that the MdiClient
11239         can properly decide the ActiveMdiChild. The MdiClient 
11240         cannot track this since the form can change visibility 
11241         before MdiClient is created.
11242
11243         * MdiClient.cs:
11244         - Don't activate anything of the parent form is changing
11245         its visibility.
11246         - Rework ActiveMdiChild to only return visible mdi 
11247         children and take into account several other corner 
11248         cases.
11249
11250 2006-12-01  Chris Toshok  <toshok@ximian.com>
11251
11252         * IBindableComponent.cs: new 2.0 interface.
11253
11254 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
11255
11256         * DataGrid.cs: Font for caption area is bold by default.
11257
11258 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
11259
11260         * Menu.cs: Tag property for 2.0.
11261         
11262 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
11263
11264         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
11265         
11266 2006-12-01  Chris Toshok  <toshok@ximian.com>
11267
11268         * TreeView.cs: doh, the Begin* events should be
11269         TreeViewCancelEventHandler.
11270
11271 2006-12-01  Chris Toshok  <toshok@ximian.com>
11272
11273         * Form.cs: Form.ControlCollection already stores off the
11274         form_owner field.  don't access the base class's internal "owner"
11275         field.
11276
11277         * Control.cs: make all the fields in Control.ControlCollection
11278         private.  there's no need for any internal fields here.
11279
11280 2006-12-01  Chris Toshok  <toshok@ximian.com>
11281
11282         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
11283         OnHandleCreated.  Fixes bug #80109.
11284
11285 2006-12-01  Chris Toshok  <toshok@ximian.com>
11286
11287         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
11288         SplitContainer.cs, Control.cs, StatusStrip.cs,
11289         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
11290         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
11291         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
11292         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
11293         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
11294         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
11295         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
11296         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
11297         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
11298         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
11299
11300         do most of the work to convert our code over to use
11301         System.ComponentModel.Component.Events for
11302         adding/removing/dispatching events.
11303
11304
11305 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
11306
11307         * DataGridView.cs: Fix an ArgumentNullException reported 
11308         twice today in IRC.
11309
11310 2006-11-30  Mike Kestner  <mkestner@novell.com>
11311
11312         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
11313         grabbed listbox.  Fixes #80036 and #80101.
11314
11315 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
11316
11317         * Message.cs: Changed ToString() to match MS.
11318         
11319 2006-11-30  Jackson Harper  <jackson@ximian.com>
11320
11321         * TextBoxBase.cs: You can still change the selected text on a read
11322         only textbox.
11323         * TextControl.cs: Lower magic number for wrap calculations. This
11324         lets text get closer to the right (far) edge.
11325
11326 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
11327
11328         * Control.cs: Tweak 2.0 layout properties.
11329         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
11330         * TextRenderer.cs: Add a new overload.
11331         * ToolStrip*: Huge amount of changes and new features.
11332
11333 2006-11-30  Mike Kestner  <mkestner@novell.com>
11334
11335         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
11336         scroll range correct.  Fixes #79994.
11337
11338 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
11339
11340         * MdiWindowManager.cs: Update main form's text when
11341         a form is closed. (fixes #80038)
11342         
11343 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
11344
11345         * ToolBar.cs:
11346         - Fix an regression in ButtonSize.
11347         - Get ImeMode default value change to "Disable".
11348         - Get ShowTooltips default value change to true, default value is 
11349         "false" but after make a test in .NET we get "true" result as default.
11350         
11351 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
11352
11353         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
11354
11355 2006-11-29  Chris Toshok  <toshok@ximian.com>
11356
11357         * XplatUIWin32.cs (GetWindowTransparency): check return value of
11358         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
11359         SetWindowTransparency hasn't been called.
11360
11361 2006-11-29  Chris Toshok  <toshok@ximian.com>
11362
11363         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
11364         if it's supported.
11365         (set_AllowTransparency): reorder things a little so that the
11366         WS_EX_LAYERED style is removed properly.
11367
11368 2006-11-29  Chris Toshok  <toshok@ximian.com>
11369
11370         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
11371         
11372         * Form.cs: only call the XplatUI transparency method (get/set) if
11373         SupportsTransparency says it's supported. Otherwise fallback to
11374         doing nothing (in the set case) or returning the instance field we
11375         cache (in the get case).
11376
11377         * XplatUIStructs.cs: add TransparencySupport flag enum.
11378         
11379         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
11380         change to SupportsTransparency.
11381
11382         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
11383         TransparencySupport.None from SupportsTransparency.
11384
11385         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
11386         TransparencySupport.Set from SupportsTransparency.
11387
11388         * XplatUIWin32.cs: implement GetWindowTransparency calling
11389         GetLayeredWindowAttributes, and implement SupportsTransparency by
11390         checking whether or not both
11391         GetWindowTransparency/SetWindowTransparency are available
11392         entrypoints.  We need to do this since SetWindowTransparency is
11393         available as of win2k, but GetWindowTransparency requires winxp.
11394         yay win32 api.
11395
11396         * XplatUI.cs: Add GetWindowTransparency, and change
11397         SupportsTransparency to allow for either/both Get/Set.
11398
11399 2006-11-29  Chris Toshok  <toshok@ximian.com>
11400
11401         * DataGrid.cs: keep from going into an infinite loop redrawing a
11402         datagrid that has no datasource.  Fixes bug #80033.
11403
11404 2006-11-29  Chris Toshok  <toshok@ximian.com>
11405
11406         * MenuItem.cs: fix the NRE when we assign text (and therefore call
11407         Invalidate) before the mainmenu has been assigned to a control.
11408
11409 2006-11-29  Chris Toshok  <toshok@ximian.com>
11410
11411         * DataGrid.cs: detect when we should be double the double click
11412         row/column autosize stuff, although that codepath has yet to be
11413         written.  part of the work for bug #79891.
11414
11415 2006-11-29  Chris Toshok  <toshok@ximian.com>
11416
11417         * Binding.cs (SetControl): fix unit test.
11418
11419 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11420
11421         * PageSetupDialog.cs: Validate the margins and set them in
11422         PageSettings. 
11423         * NumericTextBox.cs: New class to mimic the behavior of the
11424         textboxes used in the printing dialogs.
11425
11426 2006-11-29  Andreia Gaita  <avidigal@novell.com>
11427         
11428         * Form.cs: Revert previous change (remove call UpdateBounds
11429         from form constructor), because it messes with the handle creation
11430         order, and that one needs lots and lots of love.
11431         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
11432         for valid printer and throw InvalidPrinterException if document
11433         is set but printer not valid), adding a MonoTODO. Once 
11434         handle creation is done properly, we can put this back in.
11435
11436 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11437
11438         * MenuItem.cs: Create a invalidate method for menu item, to be
11439         calling from set text, it make text changes to imadiate update
11440         on screen. Fixes #80013. 
11441         
11442 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11443
11444         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
11445         fixes bug #80070 and some other problem on toolbar buttons
11446         layout.
11447
11448 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11449
11450         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
11451         with dotted brush.      Fixes #79564
11452         
11453 2006-11-28  Andreia Gaita  <avidigal@novell.com>
11454
11455         * Form.cs: Removed call to UpdateBounds on Form
11456         constructor, it was causing a call to CreateHandle
11457         before it was supposed to.
11458         * PrintControllerWithStatusDialog: Applied patch
11459         by Chris Toshok to hide controller when there are
11460         no printers available.
11461         PrintDialog.cs: initialize printer settings to 
11462         null - correct DefaultValues test #5
11463         * PrintPreviewControl.cs: Move PrintController
11464         initialization to GeneratePreview
11465         * PrintPreviewDialog.cs: 
11466         - Remove Preview generation     from Document_set(). It is 
11467         called on OnPaint
11468         - Throw InvalidPrinterException on CreateHandle if
11469         a Document is set but there are no printers or 
11470         printer is not valid.
11471         * ThemeWin32Classic: don't paint PrintPreviewControl
11472         if there is nothing to paint    
11473
11474 2006-11-28  Miguel de Icaza  <miguel@novell.com>
11475
11476         * Form.cs: Add another popular method.
11477
11478         * TabPage.cs: ditto.
11479
11480 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11481
11482         * MenuItem.cs: Fixed a warning.
11483         * InternalWindowManager: Fixed a warning.
11484
11485 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11486
11487         * MenuItem.cs:
11488         - When cloning a menu also clone MdiList and clone the 
11489           window menu items properly (as the forms and menuitems
11490           are kept in an internal hashtable, these need updating 
11491           as well)
11492         - Rewrote the window menu code, menu items are added in the
11493           order the forms were added to their parent, and they are
11494           updated every time the window menu is shown (before the
11495           list was only generated once, in the current order of the
11496           forms, and would never be updated). A checkmark is shown
11497           next to the item corresponding to the active mdi child.
11498
11499 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11500
11501         * XplatUIStructs.cs: 
11502         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
11503         
11504         * XplatUIWin32.cs: 
11505         - Added TME_NONCLIENT to TMEFlags.
11506         - Handles WM_NCMOUSEMOVE in GetMessage to 
11507           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
11508
11509         * MdiWindowManager:
11510         - Now merges mdi child menu to parent menu when maximized.
11511         - Recalculate NC areas of both mdi child and mdi parent. 
11512           Fixes #79757 (4).
11513           on window state and size changes.Fixes #79844 (3).
11514         - Handle WM_NCCALCSIZE to properly calculate borders.
11515
11516         * Form.cs:
11517         - Add/remove to the mdi containers list of mdi children 
11518           in the order they are added.
11519         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
11520           to the maximized mdi child.
11521         
11522         * InternalWindowManager.cs:
11523         - Only execute a click on the control buttons on the mouse up,
11524           not on the mouse down. Show the state of the button 
11525           (was only showing Normal state, never Pressed state). The
11526           pressed button now follows the mouse (if you click the Close 
11527           button and move the mouse over the Maximize button, the 
11528           Maximize button will be shown as pressed). Since Win32 does
11529           not generate WM_NCLBUTTONUP if you release the button outside
11530           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
11531           it as a mouse up.
11532         
11533         * ThemeWin32Classic.cs:
11534         - Draw a missing border around mdi child forms. Fixes #79844 (2).
11535
11536         * MdiClient.cs:
11537         - Added a list of forms which contains the order the forms are
11538           added to the mdi parent.
11539         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
11540         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
11541         - If the active form changes set the scrollbars to the top
11542           of the Z order, otherwise the form could hide them.
11543         - Scrollbars are now sized according to ClientSize, not 
11544           to Size, and they take into account the other scrollbar
11545           to determine maximum.
11546         
11547 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
11548         
11549         * XplatUI.cs:
11550         * XplatUIDriver.cs:
11551         * XplatUIX11.cs:
11552         * XplatUIWin32.cs:
11553         * XplatUIOSX.cs:
11554         - Added RequestAdditionalWM_NCMessages for windows to 
11555           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
11556           Currently only implemented in XplatUIWin32.
11557
11558 2006-11-27  Chris Toshok  <toshok@ximian.com>
11559
11560         * Hwnd.cs: only add the hwnd to the windows hash in
11561         set_WholeWindow and set_ClientWindow if whole_window/client_window
11562         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
11563
11564 2006-11-27  Mike Kestner  <mkestner@novell.com>
11565
11566         * ComboBox.cs: remove redundant OnDropDown call.  It is called
11567         from the ComboListBox.ShowWindow code. Fixes #79969.
11568
11569 2006-11-27  Chris Toshok  <toshok@ximian.com>
11570
11571         * Hwnd.cs: remove the setters for ExposePending and
11572         NCExposePending - noone uses them.
11573
11574 2006-11-27  Jackson Harper  <jackson@ximian.com>
11575
11576         * TextControl.cs: new param for ReplaceSelection which determines
11577         whether we select the new selection, or set the cursor to the end
11578         of the new selection.
11579         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
11580         pasting, select the new text.
11581         * RichTextBox.cs: Use new param for ReplaceSelection.
11582
11583 2006-11-27  Jackson Harper  <jackson@ximian.com>
11584
11585         * TextBoxBase.cs: Set the selection to the caret after the caret
11586         is moved, otherwise they get out of sync.
11587
11588 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11589
11590         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
11591         it fixes #80015
11592
11593 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11594
11595         * ThemeWin32Classic.cs: 
11596         - Fix toolbar drop down arrow position.
11597         - Fix drop down appearance when ToolBar.Appearance is normal,
11598         it fixes #80018.
11599         
11600 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
11601
11602         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
11603         * Control.cs: Same.
11604         * UpDownBase.cs: Same.
11605         * ButtonBase.cs: Same.
11606         * ScrollBar.cs: Same.
11607         * TrackBar.cs: Same.
11608         * PictureBox.cs: Same.
11609         * UserControl.cs: Same.
11610         * Label.cs: Same.
11611         * ListControl.cs: Same.
11612         * TextBoxBase.cs: Same.
11613         * ListView.cs: Same.
11614         * RichTextBox.cs: Same.
11615         * TreeView.cs: Same.
11616
11617 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
11618
11619         * PrintDialog.cs:
11620         - Text label for where 
11621         - Text label comment was not shown
11622
11623 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
11624
11625         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
11626
11627 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11628
11629         * InternalWindowManager.cs: 
11630         - Handle WM_PARENTNOTIFY to activate the form
11631         if any child control is clicked.
11632         - The form is only sizable if not minimized.
11633
11634         * MdiWindowManager.cs:
11635         - Save the IconicBounds if the form is moved.
11636         - Rework SetWindowState, now the window bounds 
11637         are stored only if the old window state is Normal.
11638         
11639         * MdiClient.cs:
11640         - In SetWindowStates store the old window state if 
11641         the window is maximized and restore window state if
11642         the window looses focus.
11643         - Don't handle any scrollbar value changes if 
11644         initializing the scroll bars. Fixes #79771.
11645         - Reworked ArrangeIconicWindows. Current algorithm
11646         tests bounds agains all other minimized windows, if
11647         any intersections create new bounds (going left to 
11648         right, bottom to top) and then test again. When 
11649         successful the bounds are saved and never computed
11650         again. Fixes #79774.
11651
11652 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11653
11654         * InternalWindowManager.cs: Added HandleTitleBarUp.
11655
11656 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11657
11658         * NumericUpDown.cs: In .NET 1.1, user entered text is still
11659         hexadecimal in ParseUserEdit.
11660
11661         
11662 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11663
11664         * MdiWindowManager.cs: 
11665         - Handle a click on the form's icon to show the 
11666         system menu (when maximized). Fixes #79775.
11667         - Change the existing click handler for the form's
11668         icon when not maximized to show on MouseUp.
11669         Fixes #79776.
11670
11671         * Form.cs: In OnResize only layout the mdi child's
11672         parent if it actually has a parent. Might not if
11673         the window is closing.
11674
11675
11676 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11677
11678         * MdiClient.cs: Ignore active MDI client for text of parent, if
11679         child has no text set.
11680
11681 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11682
11683         * ToolBar.cs: Fixed ToString to match MS.
11684
11685 2006-11-22  Andreia Gaita  <avidigal@novell.com>
11686
11687         * NumericUpDown: 
11688         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
11689         update inner values on set. Fixes #79966.
11690         - Override OnLostFocus to update value on NET 2. Fixes #79950.
11691         - Fix hexadecimal parsing.
11692         
11693         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
11694         parent. Fixes #79957
11695
11696 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11697
11698         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
11699         the actual size has to be queried, since if height /
11700         width is negative Win32 changes it to 0. 
11701         Fixes #79999 on Windows.
11702         
11703         * XplatUIX11.cs: Set height / width to 0 if negative
11704         in SetWindowPos. Fixes #79999 on Linux.
11705         
11706 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11707
11708         * ThemeWin32Classic.cs: Fix text redenring when button is
11709         pressed.
11710
11711 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11712
11713         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
11714         and later navigate by mouse. Fixes #79528.
11715
11716 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11717
11718         * ToolBar.cs: Set default value for TabStop to false in
11719         constructor, it fixes remaining behavior of bug #79863.
11720
11721 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11722
11723         * MdiWindowManager.cs:
11724         * InternalWindowManager.cs:
11725         - Moved a few methods specific to Mdi from 
11726         InternalWindowManager to MdiWindowManager.
11727         Fixes #79996.
11728         
11729 2006-11-21  Chris Toshok  <toshok@ximian.com>
11730
11731         * XplatUIOSX.cs: stub out InvalidateNC.
11732
11733         * XplatUIWin32.cs: implement InvalidateNC using the call I found
11734         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
11735
11736         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
11737
11738         * XplatUIDriver.cs: add InvalidateNC abstract method.
11739
11740         * XplatUI.cs: add InvalidateNC.
11741
11742 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11743
11744         * ToolBar.cs: Invalidate complete button area when pressed status 
11745         was changed.
11746         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
11747         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
11748         by 1 when button is pressed.
11749
11750 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11751
11752         * ToolButton.cs: Invalidate middle of DropDown button when
11753         ToolBar theres DropDownArrows.
11754         * ThemeWin32Classic.cs: Change position of DropDown arrow and
11755         fix DropDown drawing operations.
11756
11757 2006-11-20  Chris Toshok  <toshok@ximian.com>
11758
11759         * NativeWindow.cs: fix the formatting of functions ('{' on the
11760         following line), and enable the thread exception dialog.
11761
11762         * Application.cs: remove the duplicate exception catching from
11763         here.
11764
11765 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11766
11767         * Toolbar.cs: Triggers button click event when click on icon
11768         of dropdown ToolBarButton. Fixes #79912.
11769         
11770 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11771
11772         * Theme.cs:
11773         * ThemeWin32Classic.cs:
11774         - Added a property WindowBorderFont to enable themeing
11775           of mdi child windows' Text.
11776           
11777 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11778
11779         * InternalWindowManager.cs:
11780         * Form.cs:
11781         * MdiClient.cs:
11782         * MdiWindowManager.cs: 
11783         - If mdi child is maximized, set mdi parent's
11784           text to "Parent - [Child]". Fixes #79770.
11785         - If there is any maximized mdi child windows, only the active 
11786           window (and any new windows) is maximized, the rest are normal.
11787         - On a WindowState change only save mdi child's window bounds 
11788           if the old window state was normal. Fixes #79774.
11789         - The scroll bars are now calculated on hopefully all
11790           necessary events. Fixed #79771 / #79844->6 / #79906.
11791         - MdiClient.SizeScrollBars() now takes into account docked 
11792           controls in the parent when calculating available space.
11793         - InternalWindowManager now always repaints the entire title
11794           area. Fixes #79844->1/4/5.
11795         - Added RequestNCRecalc on mdi child windowstate changes.
11796           Fixes #79772.
11797
11798 2006-11-20  Mike Kestner  <mkestner@novell.com>
11799
11800         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
11801         in the MouseUp handler of the listbox and move the return handling
11802         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
11803
11804 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11805
11806         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
11807
11808 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11809
11810         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
11811           working in 1.2.x anymore. So, updated.
11812
11813 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
11814
11815         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
11816         NumberGroupSeparator of current culture instead of assuming en-US.
11817         Fixed bug #79967.
11818
11819 2006-11-17  Mike Kestner  <mkestner@novell.com>
11820
11821         * Control.cs: Add the concept of implicit bounds setting so that
11822         dock/undock round trips preserve explicitly set size/locations.
11823         Fixes #79313.
11824
11825 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11826
11827         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
11828           can't handle those filters. (Fixes bug #79961)
11829
11830 2006-11-17  Chris Toshok  <toshok@ximian.com>
11831
11832         [ fixes the exit/crashes associated with #79835.  it's clearly
11833         suboptimal though, we need to figure out a better way to solve
11834         this. ]
11835         
11836         * PrintPreviewControl.cs: deal with the new invalid printer
11837         exceptions.
11838
11839         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
11840         and return false (so CommonDialog.ShowDialog doesn't actually show
11841         the form.)
11842
11843         * PrintDialog.cs: enable/disable the Ok button depending on
11844         whether or not the printer is valid.
11845
11846         * CommonDialog.cs (ShowDialog): only actually show the form if
11847         RunDialog returns true.
11848
11849 2006-11-17  Jackson Harper  <jackson@ximian.com>
11850
11851         * TextControl.cs: When soft splitting a line, mark it as a soft
11852         split line. Also carry over the current line break to the next
11853         line.
11854
11855 2006-11-17  Chris Toshok  <toshok@ximian.com>
11856
11857         * XplatUIX11.cs: when scrolling a window with an invalid area, we
11858         only want to shift the part of the invalid area that overlaps the
11859         area we're scrolling.  we also don't want to clear the invalid
11860         area unless the invalid area was entirely contained within the
11861         scrolling area.
11862
11863 2006-11-16  Chris Toshok  <toshok@ximian.com>
11864
11865         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
11866         also make sure to free the memory returned by XGetWindowProperty
11867         in GetText().
11868
11869         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
11870
11871 2006-11-16  Chris Toshok  <toshok@ximian.com>
11872
11873         * XplatUI.cs: add a new super secret way to get at the totally
11874         unsupported X11 backend.
11875
11876 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
11877
11878         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
11879
11880 2006-11-16  Jackson Harper  <jackson@ximian.com>
11881
11882         * TreeView.cs: Allow more explicit setting of top node position
11883         for scrollbars. Slower algo, but more accurate.
11884         - CollapseAll should maintain the current top node.
11885         * TextBoxBase.cs: When positioning the caret, use the line, pos
11886         method, since the x, y method does not grab the correct tag, and
11887         the caret height never gets set correctly. (Maybe I should just do
11888         away with the caret having its own height, and always use the
11889         carets current tag for height).
11890
11891 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
11892
11893         [Fixes 79778, 79923]
11894
11895         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
11896         Parent to the FosterParent instead.
11897
11898 2006-11-16  Jackson Harper  <jackson@ximian.com>
11899
11900         * TreeView.cs: Need to recalc the topnode when we expand or
11901         collapse. The scrolling methods can't handle this on their own,
11902         since they use differences between the last scroll position, and
11903         those difference get completely messed up since we are expanding
11904         nodes.  This problem should probably be fixed in the scrolling
11905         methods, so they can figure out exactly where they are, but this
11906         will slow things down a little.
11907         * ThemeWin32Classic.cs: Special case for groupboxes with empty
11908         strings, makes nunit-gui look a lot nicer.
11909
11910 2006-11-16  Chris Toshok  <toshok@ximian.com>
11911
11912         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
11913         the broken multithreaded event handling we have in here.  File
11914         this entry under "Why we should move to the new X11 backend".
11915
11916         Any thread can make it into UpdateMessageQueue, which gets events
11917         from the X socket - some of which could belong to hwnds being
11918         managed by a different thread.  We can also have multiple threads
11919         in UpdateMessageQueue at the same time, with each one reading from
11920         the X socket.  This leads to many problems, with the following
11921         solutions:
11922
11923         We can't use hwnd.Queue.Enqueue anywhere in here and must use
11924         EnqueueLocked.
11925
11926         The MotionNotify compression we do can't work across threads
11927         (without locking the entire queue, perhaps) since we call
11928         hwnd.Queue.Peek, so we just punt and don't compress motion events
11929         unless the owning thread is the one which got the X event.
11930
11931         ConfigureNotify is another fun one, since it modifies the hwnd's
11932         bounds and then enqueues the event.  We add a lock to Hwnd which
11933         is held when setting configure_pending to true (and enqueuing the
11934         event).
11935
11936         There is a race wrt the wake socket.  we need to make sure that
11937         only 1 thread is waiting on that socket, or else a thread could
11938         sleep waiting for data that never comes.  It's difficult (but not
11939         impossible) to make happen, because it seems to require something
11940         like the following:
11941
11942             1. Thread 1 polls on wake_receive
11943         
11944             2. poll returns saying there's data to be read on
11945                wake_receive.
11946         
11947             3. Thread 2 polls on wake_receive and immediately returns
11948                saying there's data to be read.
11949
11950             4. Thread 2 reads the wakeup byte from wake_receive
11951
11952             5. Thread 1 attempts to read the wakeup byte from
11953                wake_receive.
11954
11955             6. Thread 2 exits (due to a form closing, perhaps).
11956
11957             7. Thread 1 blocks forever.
11958         
11959         Fun, eh?
11960
11961         Fixing the Expose handling isn't done yet, and the races inherent
11962         in that piece of code are responsible for the drawing mistakes you
11963         see when generating expose events in a MT app (like NPlot).  This
11964         one is the likely to be the hardest to bandaid, and it doesn't
11965         appear to cause anything but drawing problems.  The other issues
11966         caused apps to exit or hang.
11967
11968         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
11969         called from a different thread than the one that should be calling
11970         these functions.
11971
11972         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
11973
11974 2006-11-15  Chris Toshok  <toshok@ximian.com>
11975
11976         * Application.cs: null out the context's MainForm when we exit
11977         RunLoop.  Fixes a newly checked in unit test as well as the last
11978         ODE from bug #79933.
11979
11980 2006-11-15  Chris Toshok  <toshok@ximian.com>
11981
11982         * Form.cs (set_Owner): allow a null value so we can clear the
11983         form's owner.
11984         (Dispose): set all our owned_form's Owner properties to null, and
11985         clear the owned_forms collection.
11986         (WM_CLOSE): clean up this a little bit.. still not right though.
11987
11988         * ApplicationContext.cs: OnMainFormClosed should only call
11989         ExitThreadCore if the main form isn't recreating.  Fixes unit
11990         test.
11991
11992 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11993
11994         [Fixes 78346]
11995
11996         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
11997
11998 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11999
12000         [Fixes 79433]
12001
12002         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
12003         keep popup window types from stealing focus from the main form
12004         on Windows.
12005
12006         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
12007
12008         * MenuAPI.cs: Set above flag to true.
12009
12010 2006-11-15  Chris Toshok  <toshok@ximian.com>
12011
12012         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
12013         the button being released is not in wParam.
12014
12015 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
12016
12017         * Form.cs: Add the released button to MouseEventArgs.Button
12018         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
12019         on Win32.
12020
12021 2006-11-15  Chris Toshok  <toshok@ximian.com>
12022
12023         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
12024         GetText().  untested because it's unused in our implementation.
12025         Control.Text always caches the text, even if
12026         ControlStyles.CacheText is not set.
12027
12028         fixes bug #79939.
12029
12030 2006-11-15  Chris Toshok  <toshok@ximian.com>
12031
12032         [ fixes #79933 ]
12033         
12034         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
12035         message.  no hiding, no disposing.
12036
12037         in the WM_CLOSE handler, hide the form if it's modal.
12038
12039 2006-11-15  Chris Toshok  <toshok@ximian.com>
12040
12041         * XplatUIX11.cs: use AddExpose instead of sending a message.
12042         fixes textbox border drawing.
12043
12044 2006-11-15  Chris Toshok  <toshok@ximian.com>
12045
12046         * PropertyGridView.cs: keep from crashing on mouse move/down when
12047         the property grid is empty.
12048
12049 2006-11-14  Jackson Harper  <jackson@ximian.com>
12050
12051         * TextControl.cs: Make PageUp and PageDown more like the MS
12052         versions.
12053         * TextBoxBase.cs: When we set the text property position the
12054         cursor at the beginning of the document.
12055
12056 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12057
12058         * Form.cs: if a mdi child's WindowState has changed
12059         before it's creation, it would display wrong control
12060         buttons.
12061         
12062 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
12063
12064         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
12065           (Fixes bug #79927)
12066
12067 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
12068
12069         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
12070         the window gets to paint its borders even if the window is
12071         getting smaller.
12072         
12073         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
12074         otherwise the old control buttons would still be painted 
12075         if the window gets bigger.
12076         
12077         * PaintEventArgs.cs: add an internal method so that the clip 
12078         rectangle can be changed.
12079         
12080 2006-11-13  Chris Toshok  <toshok@ximian.com>
12081
12082         [ fixes bug #79745 ]
12083         
12084         * NotifyIcon.cs: lots of cleanup.
12085
12086         * X11Structs.cs: add an enum for XEMBED messages.
12087
12088         * XplatUIX11.cs: reindent one of the giant switch statements, it
12089         was taking up an additional tab stop, and this file is already way
12090         too wide for my laptop's screen.
12091
12092         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
12093         we get it, resize the hwnd to the WMNormalHints max_width/height.
12094
12095 2006-11-13  Jackson Harper  <jackson@ximian.com>
12096
12097         * TextBoxBase.cs: Compute the value changes for the mouse wheel
12098         teh simple way.
12099
12100 2006-11-13  Chris Toshok  <toshok@ximian.com>
12101
12102         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
12103         #79898.  force a reference to the Region to stick around so the
12104         unmanaged object isn't collected (rendering our handle in the MSG
12105         stale).
12106
12107 2006-11-13  Chris Toshok  <toshok@ximian.com>
12108
12109         * XplatUIX11.cs: fix #79917 for window managers which support
12110
12111         using XStoreName on the raw utf8, and we need to convert to
12112         COMPOUND_TEXT if it's non-latin1.
12113
12114 2006-11-13  Chris Toshok  <toshok@ximian.com>
12115
12116         * Form.cs (set_DialogResult): we need to set closing to false if
12117         we're setting our result to None.  fixes bug #79908.
12118
12119 2006-11-13  Jackson Harper  <jackson@ximian.com>
12120
12121         * TextControl.cs: When formatting text, compute the adjusted tag
12122         lengths correctly, using FindTag for the end tag instead of trying
12123         to figure it out outselves.
12124         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
12125         the item, ItemHeight doesn't work, because trees with large
12126         imagelists use those for their height
12127         * TreeView.cs: ActualItemHeight factors in the image height
12128         - compute left edge of checkboxes correctly
12129         - when expanding/collapsing move the bottom down one pixel, so we
12130         aren't moving part of the node
12131
12132 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12133
12134         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
12135         stack in PaintEventStart so that it won't get disposed by the gc
12136         before reaching PaintEventEnd.
12137
12138 2006-11-13  Jackson Harper  <jackson@ximian.com>
12139
12140         * TextBoxBase.cs: Don't select the word if we are on a line with
12141         no text.
12142         - We don't need to position the caret on mouse up, since the mouse
12143         move handler should be doing this
12144         - When double clicking a blank line, the caret is advanced to the
12145         next line.
12146
12147 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
12148
12149         * TreeNodeCollection.cs: Avoid duplicating indexer code.
12150
12151 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
12152
12153         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
12154         Fixes part of bug #79910.
12155
12156 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
12157
12158         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
12159           (bug #79903). Some minor string updates to match ms.
12160
12161 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12162
12163         * FileDialog.cs: Don't add an extension if the filename
12164           already ends with that extension.
12165
12166 2006-11-10  Jackson Harper  <jackson@ximian.com>
12167
12168         * TreeView.cs: Use the currently highlighted node for the
12169         BeforeSelect event.
12170         * TextBoxBase.cs: There is no need to expand selection on
12171         MouseMove.
12172         - CanUndo means 'is there any undo operations', not 'is undo
12173         allowed on this textcontrol. Fixed ClearUndo unit test.
12174
12175 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
12176
12177         * Button.cs: only perform click when button is Selectable (so as 
12178         not to activate default buttons when they're disabled)
12179         
12180         * Control.cs: Rewrite of the SelectNextControl and related 
12181         methods. HandleClick now selects next control if the current one
12182         is being disabled.
12183         
12184         * Form.cs: OnActivated selects next active control only if Load 
12185         has already occurred. If Load hasn't run, there's no point in 
12186         selecting here, Load might change the state of controls.
12187         
12188         * FocusTest.cs: Tests marked as working again for these fixes
12189
12190 2006-11-10  Chris Toshok  <toshok@ximian.com>
12191
12192         * XplatUIX11.cs: a couple of fixes.
12193
12194         - use XInternAtoms with almost all the atoms we need to register,
12195         instead of many, many calls to XInternAtom.  should help a bit on
12196         startup time, at the expense of making the code look a little
12197         worse.
12198
12199         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
12200         isn't reparented (which seems to be a clue that we're running fon
12201         compiz) and they have an Owner form.  This fixes the tool windows
12202         in paint.net when running under compiz.
12203
12204         - when setting the opacity of a window, support both the case
12205         where the window has been reparented and also when it hasn't been.
12206         Since compiz/beryl doesn't seem to reparent windows, and these are
12207         the only window managers which support translucency, I'm not sure
12208         why we need the hwnd.reparented case at all.. but leave it in.
12209         now we get translucent windows in paint.net under compiz/beryl.
12210
12211 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12212
12213         * FileDialog.cs: Always return the value for FilterIndex that
12214           was set. Internally convert it to values that make sense.
12215
12216 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
12217         
12218         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
12219
12220 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
12221
12222         * Toolbar.cs: Change default value of DropDownArrows to true, the 
12223         signature still using false to make it compatible with MS but the 
12224         initial value is true. Fixes #79855.
12225
12226 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12227
12228         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
12229           only available on Linux.
12230
12231 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
12232
12233         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
12234         reduce number of calls to redraw method during toolbar creation.
12235
12236 2006-11-09  Mike Kestner  <mkestner@novell.com>
12237
12238         * ListView.cs : raise SelectedIndexChanged when an item is selected
12239         programmatically via the Item.Selected property.  Gert's nice 
12240         ListViewSelectedIndexChanged test fixture now runs clean.
12241
12242 2006-11-09  Mike Kestner  <mkestner@novell.com>
12243
12244         * ListView.cs : raise SelectedIndexChanged when a selected item is
12245         removed from the item collection using Remove or RemoveAt.
12246
12247 2006-11-09  Mike Kestner  <mkestner@novell.com>
12248
12249         * ListView.cs : raise SelectedIndexChanged once per selected item
12250         for compat with MS.  Fixes #79849+.
12251
12252 2006-11-09  Chris Toshok  <toshok@ximian.com>
12253
12254         * TabControl.cs: initialize row_count to 0, and set it to 1 when
12255         we need to (if we have any tab pages).  Fixes unit test.
12256
12257 2006-11-09  Chris Toshok  <toshok@ximian.com>
12258
12259         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
12260         width is 0, not 3.  Fixes a unit test.
12261
12262 2006-11-09  Mike Kestner  <mkestner@novell.com>
12263
12264         * ListView.cs : use Implicit scrollbars so that focus isn't 
12265         stolen from the listview when they are clicked. Fixes #79850.
12266
12267 2006-11-09  Chris Toshok  <toshok@ximian.com>
12268
12269         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
12270         have a root item.  Fixes #79879.
12271
12272 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
12273
12274         * FileDialog.cs:
12275           - Fix ToString ()
12276           - An ArgumentException is now thrown if a wrong filter
12277             is applied (matches ms). The previous filter doesn't change
12278             anymore if an exception is thrown.
12279           - Changing the FileName property also affects FileNames
12280         * ColorDialog.cs: The length of the CustomColors array is always
12281           16. It doesn't matter if we use a smaller array or null to update
12282           or change the custom colors property.
12283         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
12284           for RootFolder if we get a undefined value.
12285
12286 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12287
12288         * StatusBarPanel.cs: 
12289         - Width is set to MinWidth if Width is smaller than
12290         MinWidth. Fixes #79842.
12291         - MinWidth now always overrides Width (MSDN says MinWidth
12292         is set to Width when AutoSize = None, but they do not 
12293         behave like that).
12294         - Style has now the the correct default value.
12295         
12296 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12297  
12298         * TrackBar.cs: 
12299         - The control is completely invalidated on 
12300         Got/LostFocus to draw the focus rectangle correctly.
12301         - When AutoSize then height is always 45 (width for 
12302         vertical controls).
12303         
12304         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
12305         on the mouse when moved and it doesn't move when grabbed
12306         until the mouse moves as well. Also fixed some wrong 
12307         calculations when clicking on the thumb (control thought
12308         click was outside of thumb and didn't grab it).
12309         Fixes some of the issues in #79718.
12310
12311 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
12312
12313         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
12314
12315 2006-11-08  Chris Toshok  <toshok@ximian.com>
12316
12317         * PropertyGridView.cs: only call ToggleValue if the item is not
12318         readonly.
12319
12320 2006-11-08  Jackson Harper  <jackson@ximian.com>
12321
12322         * TextBoxBase.cs: The RichTextBox and textbox have very different
12323         word selection methods.  Implement the textbox's simple word
12324         selection here, and let the RichTextBox override and provide it's
12325         own.
12326         - Don't do extra selection on mouseup
12327         * RichTextBox.cs: Use the documents word selection algorithm, I
12328         think ideally, this function will be pulled into the
12329         RichTextBox.cs code someday.
12330
12331 2006-11-08  Chris Toshok  <toshok@ximian.com>
12332
12333         * RootGridEntry.cs: new class to represent GridItemType.Root.
12334
12335         * CategoryGridEntry.cs: reformat, and add boilerplate.
12336         
12337         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
12338         returns the UI parent anyway, and we need special handling to
12339         implement the GetTarget method in the face of it.  Also, implement
12340         Select().
12341
12342         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
12343         a root grid item, and use that instead of PropertyGrid.grid_items.
12344         Also, make use of TypeConverters (and add limitted support for
12345         ICustomTypeDescriptors) when initially populating the grid.
12346         Arrays now show up more or less properly.
12347
12348 2006-11-08  Chris Toshok  <toshok@ximian.com>
12349
12350         * Application.cs: set the modal dialog to non modal after we close
12351         it.  Fixes bug #79866.
12352
12353 2006-11-08  Jackson Harper  <jackson@ximian.com>
12354
12355         * TextControl.cs: When combining lines carry over the line end
12356         style from the end line.
12357         - Invalidate the selected area when setting it, if it is visible.
12358         * TextBoxBase.cs: Only rich text box can do full line selects.
12359         - Make sure to set the cursor position when there is a click,
12360         otherwise two clicks in separate areas could cause a large chunk
12361         to be selected.
12362
12363 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12364
12365         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
12366         Fixes #79863.
12367
12368 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12369
12370         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
12371         time. Remove tooltips when ToolButton click events.  Fixes #79856.
12372
12373 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12374
12375         * MenuAPI.cs: Ignore right click for menu actions and fixes
12376         menu border when clicked.  Fixes #79846.
12377
12378 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12379
12380         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
12381         MouseState after create wParam for message, this fixes mouse button 
12382         equal none in mouse up events.
12383         
12384 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
12385
12386         * Control.cs : Focus() now calls Select to set the Container's
12387         Active Control and to give it focus. To avoid infinite recursion
12388         (because ActiveControl also calls Focus at one point), a check 
12389         is made in Focus with the help of a new internal variable
12390         is_focusing.
12391
12392 2006-11-07  Mike Kestner  <mkestner@novell.com>
12393
12394         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
12395         if there's a selection.  Fixes #79849.
12396
12397 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
12398
12399         * PropertyGrid.cs: Avoid fixed height of help description label.
12400         Fixes part of bug #79829.
12401
12402 2006-11-07  Chris Toshok  <toshok@ximian.com>
12403
12404         * XplatUIX11.cs: fix #79790 again, by using the
12405         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
12406
12407 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12408
12409         * ToolBar.cs: Fix left click checking.
12410
12411 2006-11-07  Chris Toshok  <toshok@ximian.com>
12412
12413         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
12414
12415 2006-11-07  Chris Toshok  <toshok@ximian.com>
12416
12417         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
12418         PropertyManager unit tests.
12419
12420         * PropertyManager.cs: make property_name internal.
12421
12422 2006-11-07  Chris Toshok  <toshok@ximian.com>
12423
12424         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
12425         pass a unit test.  Also, don't set image_index to anything in
12426         response to setting the ImageList property.
12427
12428 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12429
12430         * ToolBar.cs: Ignore click events when mouse button is not a
12431         left button, only accepts other button for dropdown menus.  
12432         Fixes #79854.
12433
12434 2006-11-07  Chris Toshok  <toshok@ximian.com>
12435
12436         * DataGrid.cs: make the back and parent row buttons a little less
12437         ugly.
12438
12439 2006-11-07  Jackson Harper  <jackson@ximian.com>
12440
12441         * TextBoxBase.cs: When converting to Text don't put line breaks in
12442         for soft line breaks.
12443         * TextControl.cs: There is an initial "fake" line in the document,
12444         this is now a soft break line, so that an extra line feed doesn't
12445         get added to the end of documents.
12446
12447 2006-11-07  Chris Toshok  <toshok@ximian.com>
12448
12449         [ fix bug #79778 ]
12450         
12451         * CurrencyManager.cs: if the list is readonly, don't bother
12452         checking if IBindingList.AllowNew is true.
12453
12454         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
12455         for non-DataRowView datasources..  or rather, make it not crash.
12456         (DataGridPaintRelationRow): make sure we limit the row painting to
12457         the area not covered by the row header, and make our cell width at
12458         least large enough to cover the relation area.  This allows grids
12459         that have relations but no rows to render correctly.
12460         (DataGridPaintRowContents): same type of changes here.
12461         (SetDataSource): move back to always calling
12462         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
12463         navigating back through relations.
12464         (HitTest): handle the case where we have no cells but have
12465         relations.  Right now we generate a hit in cell 0 of whatever the
12466         row is, not sure if this is strictly correct, but it works for our
12467         purposes.
12468         
12469         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
12470         bother doing anything.
12471
12472 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
12473
12474         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
12475         early version of StatusStrip.  Not responsible for eaten
12476         application or firstborn children.
12477
12478 2006-11-06  Chris Toshok  <toshok@ximian.com>
12479
12480         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
12481         call GetTabRect with a -1 index.  Fixes #79847.
12482
12483 2006-11-06  Jackson Harper  <jackson@ximian.com>
12484
12485         * TreeNodeCollection.cs: Update scrollbars after clearing.
12486
12487 2006-11-06  Chris Toshok  <toshok@ximian.com>
12488
12489         * NumericUpDown.cs: fix the ToString method for some unit test
12490         love.
12491
12492 2006-11-06  Chris Toshok  <toshok@ximian.com>
12493
12494         * PropertyGrid.cs:
12495         - set the initial SelectedGridItem if we can.
12496
12497         - Exclude non-mergable properties only if we're merging > 1
12498         object.  Merging 1 object isn't really merging, obviously.
12499
12500         - Handle PropertySort.NoSort just like Alphabetical, which is
12501         wrong of course, but at least gets things on the screen.
12502         
12503         * PropertyGridView.cs:
12504         - Add method "FindFirstItem" which finds the first property grid
12505         item, so we can select it by default.
12506
12507         - make use of GridEntry.CanResetValue.
12508
12509         - Don't call RedrawBelowItemOnExpansion here anymore, the
12510         individual GridEntry's will do that.
12511
12512         - Remove the ITypeDescriptorContextImpl internal class.
12513         
12514         * GridEntry.cs:
12515         - this class needs to implement ITypeDescriptorContext, as it's
12516         what MS's PropertyDescriptorGridEntry does, which means we can
12517         remove the ITypeDescriptorContextImpl internal class from
12518         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
12519
12520         - keep a reference to our PropertyGridView, and move the call to
12521         RedrawBelowItemOnExpansion here from PGV.  This means
12522         programmaticly setting Expanded actually does something visible.
12523
12524         - add a CanResetValue() function which takes into account our
12525         possibly multiple "selected_objects" in the merged case.  Shifting
12526         PropertyGridView to use this method fixes another unreported
12527         crasher found running the test for #79829.
12528
12529         - when Top or Bounds is updated, make sure the PropertyGridTextBox
12530         is updated to reflect this.
12531
12532         * CategoryGridEntry.cs: the ctor takes the PGV now.
12533         
12534 2006-11-06  Jackson Harper  <jackson@ximian.com>
12535
12536         * TextControl.cs: These are 1 based.
12537         * TextBoxBase.cs: When setting the selected text, don't change the
12538         selected text tags, this is done by ReplaceText, just position the
12539         cursor at the end of the new text.
12540
12541 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12542
12543         * ListView.cs: Allow label edit only when, when LabelEdit is
12544           set to true.
12545
12546 2006-11-06  Jackson Harper  <jackson@ximian.com>
12547
12548         * TextControl.cs: If a suitable wrapping position isn't found,
12549         just wrap right in the middle of a word.
12550
12551 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12552
12553         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
12554           bug #79820.
12555
12556 2006-11-06  Jackson Harper  <jackson@ximian.com>
12557
12558         * TreeView.cs: Can't use the VisibleCount property when setting
12559         scrollbar heights, because this doesn't take into account whether
12560         or not the horz scrollbar just came visible.
12561
12562 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
12563
12564         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
12565         activated.  Fixes #79369, #79832.
12566
12567 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
12568
12569         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
12570           had to remove support for links that point to a directory. FileInfo
12571           returns no usefull information (means, the directory they point to)
12572           for such links. Replaced some empty string ("") with String.Empty.
12573
12574 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12575
12576         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
12577         NullReferenceException when attempting to remove node that is not in
12578         collection. Throw NullReferenceException when null is passed to 
12579         Remove. Allow first element of the collection to be removed. Fixes
12580         bug #79831.  In GetEnumerator ().Current return null if positioned 
12581         before the first element of the collection. In GetEnumerator ().Reset,
12582         position before first element of the collection.
12583
12584 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12585
12586         * PropertyGrid.cs: To match MS, remove default title and description
12587         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
12588         buttons.
12589
12590 2006-11-04  Chris Toshok  <toshok@ximian.com>
12591
12592         * Theme.cs: add a Clamp method, just for kicks.
12593
12594         * ThemeWin32Classic.cs: clamp all color components to [0..255].
12595
12596 2006-11-04  Chris Toshok  <toshok@ximian.com>
12597
12598         * Form.cs: if the form isn't visible, Close() does nothing.
12599
12600 2006-11-03  Chris Toshok  <toshok@ximian.com>
12601
12602         * Form.cs (Close): if the form is modal, don't Dispose of it, only
12603         Hide it.
12604         (WndProc): don't Dispose after handling the WM_CLOSE message.
12605
12606         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
12607         them as such, instead of using casts from Control to Form.  Also,
12608         don't Dispose of the modal dialog when we fall out of the loop -
12609         Close() it instead.
12610
12611         fixes bug #79813.
12612
12613 2006-11-03  Chris Toshok  <toshok@ximian.com>
12614
12615         * Control.cs (Dispose): only go through the dispose thing if we're
12616         @disposing, and we haven't already been disposed.  Fixes bug
12617         #79814.
12618
12619         * Form.cs: no reason to call "base.Dispose()" here instead of
12620         "Dispose()".
12621
12622 2006-11-03  Mike Kestner  <mkestner@novell.com>
12623
12624         * ComboBox.cs : use ToString instead of casts in AddItem for
12625         sorting functionality.  Fixes #79812.
12626
12627 2006-11-03  Chris Toshok  <toshok@ximian.com>
12628
12629         * Application.cs: pave the way for actually using the thread
12630         exception dialog.  it's ifdefed out at the moment.
12631
12632 2006-11-03  Chris Toshok  <toshok@ximian.com>
12633
12634         * ThreadExceptionDialog.cs: until we get a better layout, actually
12635         hide the details textbox and label when we shouldn't see them.
12636
12637 2006-11-03  Jackson Harper  <jackson@ximian.com>
12638
12639         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
12640         multiline textboxes anymore.  This method also determines the
12641         width/height of a textboxes canvas area.
12642         - Sorta a revert of the last patch.  For multiline just position
12643         the controls, then bail.  This way the scrollbar width won't be
12644         altered.
12645
12646 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
12647
12648         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
12649         it dont need.  Fixes #79537.
12650
12651 2006-11-02  Jackson Harper  <jackson@ximian.com>
12652
12653         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
12654         send the status after firing the DndOver event.
12655
12656 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12657
12658         * TrackBar.cs: Now orientation only switches height / width if
12659         the control's handle is created (Win32 does it like this). Also 
12660         fixed a typo in ToString() for a test to pass, changed the 
12661         exception thrown in set_LargeChange and set_SmallChange to 
12662         match Win32 behaviour, and added TrackBar tests to the unit 
12663         tests.
12664
12665 2006-11-02  Chris Toshok  <toshok@ximian.com>
12666
12667         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
12668         not _NET_WM_STATE_NO_TASKBAR.
12669
12670 2006-11-02  Jackson Harper  <jackson@ximian.com>
12671
12672         * TextControl.cs: Increment count by one, since in the update view
12673         count - 1 is used.
12674
12675 2006-11-02  Jackson Harper  <jackson@ximian.com>
12676
12677         * TextBoxBase.cs: Use client rectangle not bounds for checking if
12678         the mouse is in the client rectangle (duh).
12679
12680 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12681         
12682         * TrackBar.cs: Fixed trackbar jumping around when clicking
12683         on it - the trackbar was not detecting correctly at which
12684         side of the thumb the click was done. (fixes #79718)
12685
12686 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
12687
12688         * ListBox.cs: scroll visible area when change SelectedIndex to
12689         a non visible area.  Fixes #79481.
12690
12691 2006-11-01  Jackson Harper  <jackson@ximian.com>
12692
12693         * TextControl.cs: When replacing the selection move the selection
12694         start/end/anchor to the end of the new text.
12695
12696 2006-11-01  Jackson Harper  <jackson@ximian.com>
12697
12698         * XplatUIWin32.cs: When setting the parent change the controls
12699         visibility to it's visibility flag, not to it's old parents
12700         visibility (.Visible walks the parent chain).
12701
12702 2006-11-01  Chris Toshok  <toshok@ximian.com>
12703
12704         * XplatUIX11.cs: revert the #79790 fix, as the simple.
12705         XSetTransientForHint fix breaks paint .net's tool windows.  more
12706         work needed for that one.
12707
12708 2006-11-01  Chris Toshok  <toshok@ximian.com>
12709
12710         * ScrollBar.cs: throw ArgumentException instead of Exception in
12711         LargeChange/SmallChange setters.  fixes unit tests.
12712
12713 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12714
12715         * ContainerControl.cs: reverted rev.67183 (which was itself
12716         a reversion of rev.66853... eh).
12717         
12718         * Control.cs: Fixes Reflector hang by changing Focus() call
12719         to what it was before rev.66643 (calling Select() here sets 
12720         ActiveControl, which in some situations calls back Focus and 
12721         eventually does a stack overflow). Temp fix.    
12722         Changes to GetNextControl() to not look for children to select when
12723         parent cannot be selectable (so it looks for siblings instead)  
12724         
12725 2006-10-31  Mike Kestner  <mkestner@novell.com>
12726
12727         * CheckedListBox.cs : off by one error in returned index from
12728         ObjectCollection.Add.  Fixes #79758.
12729
12730 2006-10-31  Chris Toshok  <toshok@ximian.com>
12731
12732         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
12733         calls for the textbox/spinner, to keep from recursing to the point
12734         where we crash.  Fixes #79760.
12735
12736 2006-10-31  Chris Toshok  <toshok@ximian.com>
12737
12738         * ListControl.cs (set_SelectedValue): don't throw exceptions on
12739         null/"" value, just return.  matches ms's behavior and fixes some
12740         failing tests.
12741
12742 2006-10-31  Chris Toshok  <toshok@ximian.com>
12743
12744         * Control.cs (set_Capture): make a logic a little easier to
12745         follow.
12746
12747         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
12748         if it's being destroyed.  A necessary fix surely, but a bandaid
12749         also, to fix the stuck capture problem in bug #78413.
12750
12751 2006-10-31  Chris Toshok  <toshok@ximian.com>
12752
12753         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
12754         convention of clearing hwnd.ClientRect when we set the
12755         width/height (so it'll be recalculated by Hwnd).
12756
12757 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12758
12759         * ContainerControl.cs: reversed Contains check from
12760         ActiveControl due to hanging problems. This fix
12761         partly regresses #79667 (button does not have
12762         initial focus), so this might be a symptom for 
12763         a larger parenting problem (set_ActiveControl
12764         is being called but the child control does
12765         not have the parent set yet?)   
12766         
12767 2006-10-31  Mike Kestner  <mkestner@novell.com>
12768
12769         * MenuAPI.cs : fix keynav when menu is click activated.
12770
12771 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
12772
12773         * ToolStrip*: Version 0.2.
12774
12775         * MenuStrip.cs: Version 0.1.
12776
12777         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
12778
12779 2006-10-30  Chris Toshok  <toshok@ximian.com>
12780
12781         [ fixes the oversized notify icon issue in bug #79745 ]
12782         
12783         * NotifyIcon.cs: scale the icon down to the size we're given by
12784         the XplatUI layer (this would be faster if we did it once instead
12785         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
12786         since it's never invoked.
12787
12788         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
12789         pixels high by default, so let's hardcode our systray icon to that
12790         size.  The SYSTEM_TRAY protocol should really have a way for
12791         client apps to query for the correct icon size.. but oh well.  A
12792         couple of patches to deal with the screwy client_window ==
12793         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
12794         instance, and also make sure we don't XSelectInput twice).
12795
12796 2006-10-30  Chris Toshok  <toshok@ximian.com>
12797
12798         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
12799         recreating forms.  Control recreation is the bane of my existence.
12800         Fix it in a way that keeps everyone happy.
12801
12802 2006-10-30  Chris Toshok  <toshok@ximian.com>
12803
12804         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
12805         just non-CHILD ones.  otherwise sometimes scrollbars end up with
12806         client_windows not being resized to the proper size (ReportBuilder
12807         shows this extremely well).
12808
12809 2006-10-30  Chris Toshok  <toshok@ximian.com>
12810
12811         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
12812         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
12813         showing up in the gnome taskbar.  Fixes bug #79790.
12814
12815 2006-10-30  Chris Toshok  <toshok@ximian.com>
12816
12817         * ApplicationContext.cs: guard against a NRE.
12818
12819         * Application.cs: null out the old MainForm for the context, so we
12820         don't try to use it again once it's disposed.  Fixes bug #79783.
12821
12822 2006-10-30  Chris Toshok  <toshok@ximian.com>
12823
12824         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
12825         BindingContext, set the data source directly, otherwise do the
12826         lazy approach - the actual ListManager will be created when we get
12827         a BindingContext. Fixes bug #79700.
12828
12829 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12830
12831         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
12832           XplatUIX11.cs: Remove old 2 parameter SetVisible.
12833
12834         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
12835
12836 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12837
12838         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
12839         of SetVisible that allows a window to be shown, but not activated.
12840         This is needed on Windows for MenuStrip, and can probably be used
12841         with MainMenu and ComboBox to fix the focus stealing issues on
12842         Windows.
12843
12844         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
12845
12846 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
12847
12848         * PictureBox.cs: Fix the output of the ToString method.
12849
12850 2006-10-29  Chris Toshok  <toshok@ximian.com>
12851
12852         * Control.cs (get_TopLevelControl): fix bug #79781.
12853
12854 2006-10-29  Chris Toshok  <toshok@ximian.com>
12855
12856         * ListControl.cs (set_DataSource): throw Exception here, not
12857         ArgumentException, to match MS behavior.
12858
12859 2006-10-29  Chris Toshok  <toshok@ximian.com>
12860
12861         * Form.cs: remove the try-catch's around calls to GetWindowState.
12862         We can just check the return value.
12863
12864         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
12865         Instead return -1.
12866
12867         * XplatUI.cs: Add note about additional return value for
12868         GetWindowState.
12869
12870 2006-10-29  Chris Toshok  <toshok@ximian.com>
12871
12872         * Control.cs (CreateHandle): when we create our handle, we also
12873         create the handles of our child controls.  Fixes one of the
12874         Control unit tests (CH11).
12875
12876 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12877
12878         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
12879
12880 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12881
12882         * ThemeClearlooks.cs: A little speedup.
12883
12884 2006-10-27  Chris Toshok  <toshok@ximian.com>
12885
12886         * Control.cs: implement Control.FromChildHandle in a way that
12887         matches the docs (and fixes the failed test.)
12888
12889 2006-10-27  Chris Toshok  <toshok@ximian.com>
12890
12891         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
12892         comments).
12893
12894         * DataGrid.cs: implement ResetForeColor such that the tests
12895         succeed.
12896         
12897 2006-10-27  Chris Toshok  <toshok@ximian.com>
12898
12899         * ToolBarButton.cs: setting text/tooltiptext to null results in it
12900         being set to "".  Fixes bug #79759.
12901
12902 2006-10-27  Jackson Harper  <jackson@ximian.com>
12903
12904         * TextControl.cs: We need to clear the entire selection area when
12905         setting the start, otherwise multiline selections are still
12906         visible.
12907
12908 2006-10-26  Chris Toshok  <toshok@ximian.com>
12909
12910         * PropertyGridView.cs: 
12911
12912         - ifdef all the code specific to the double
12913         buffer case, and provide some alternatives in the non-doublebuffer
12914         code, which makes heavy use of XplatUI.ScrollWindow to move things
12915         around without having to invalidate (and cause flicker).  There
12916         are still some drawing problems in the non-doublebuffered case, so
12917         DOUBLEBUFFER is defined by default.
12918
12919         - Fix the way dropdowns are handled.  now we explicitly watch for
12920         the events which might cause the dropdown to close, and break out
12921         of the nested event loop there.  This gets rid of all Capture
12922         code, at the expense of the Msg special casing.  Seems to work,
12923         though, and fixes bug #79743.
12924
12925 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
12926         * Control.cs: SetIsRecreating now recreates implicitly added
12927         child controls as well. Finally fixes #79629. The flag passed to 
12928         SetIsRecreating has also been removed since it wasn't used.
12929         
12930 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12931
12932         * PageSetupDialog.cs: Clean some code, fix some bits, 
12933         add some checks, and add a printer sub-dialog.
12934
12935 2006-10-26  Chris Toshok  <toshok@ximian.com>
12936
12937         * PropertyGrid.cs: make set_SelectedObject call
12938         set_SelectedObjects, and move the duplicate logic to the
12939         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
12940
12941         * PropertyGridView.cs: hide the textbox when we get a
12942         SelectedObjectsChanged event.
12943
12944         Fixes bug #79748.
12945
12946 2006-10-26  Chris Toshok  <toshok@ximian.com>
12947
12948         * PropertyGridView.cs: deal with the type converter not supporting
12949         GetStandardValues() or GetStandardValues() returning null, which
12950         is does in the default case.  Fixes #79742.
12951
12952 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12953
12954         * CheckedListBox.cs: nunit no longer crashes when selecting 
12955         Project/Edit menu option
12956         
12957 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12958
12959         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
12960         is no menu selected. fixes #79739
12961
12962 2006-10-25  Chris Toshok  <toshok@ximian.com>
12963
12964         * PropertyGridView.cs: factor out the splitter invalidation code
12965         into the SplitterPercent setter, and for kicks implement the
12966         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
12967         amount in either direction.
12968
12969 2006-10-25  Chris Toshok  <toshok@ximian.com>
12970
12971         * PropertyGridView.cs: do some cleanup of the brush used to draw
12972         text - read only fields should be grayed out.  not sure how to do
12973         this with the textbox, though.  but the textbox's should also be
12974         readonly now at least.  Also, hide/show the textbox when resizing
12975         the control.
12976         
12977         * CursorConverter.cs: use System.Reflection when getting the
12978         properties of Cursors, as TypeDescriptor.GetProperties isn't
12979         returning static properties.
12980
12981 2006-10-25  Chris Toshok  <toshok@ximian.com>
12982
12983         * PropertyGridView.cs: factor out the up/down handling, and reuse
12984         it for page up/down.  also add End/Home support.
12985
12986 2006-10-25  Chris Toshok  <toshok@ximian.com>
12987
12988         * PropertyGridView.cs:
12989
12990         - ensure the selected grid item is visible in the scrolled area,
12991         fixes bug #79572.
12992
12993         - fix Keys.Down handling when you're on the last item in the
12994         propertygrid.
12995
12996 2006-10-25  Mike Kestner  <mkestner@novell.com>
12997
12998         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
12999         clicks too.  Fixes #79725.
13000
13001 2006-10-24  Chris Toshok  <toshok@ximian.com>
13002
13003         * PropertyGrid.cs: use property.Converter instead of
13004         TypeDescriptor.GetConverter(property.PropertyType), so we catch
13005         TypeConverters declared on the property as well as on the
13006         PropertyType.  Fixes bug #79678.
13007
13008 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
13009
13010         * MimeIcon.cs, Mime.cs:
13011           Fallback to the default platform handler if no shared mime info
13012           stuff exists (fixes #79693).
13013
13014 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
13015         * ContainerControl.cs: Incorrect contains check in ActiveControl 
13016         from previous fix (duh).
13017
13018 2006-10-20  Chris Toshok  <toshok@ximian.com>
13019
13020         * PropertyGridView.cs: the dropdown should be MIN(number of items
13021         in list, 15).  Fixes #79551.
13022
13023 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
13024         Fixes #79384, #79394, #79652, #79667
13025         * Application.cs: 
13026         
13027         - Modal windows are now destroyed in the proper order for windows
13028         
13029         * ContainerControl.cs:
13030         
13031         - ActiveControl setter has more conditions on when to return:
13032                 - if we're reselecting the active control, but it actually
13033                 didn't have focus (window hidden or some such), it runs
13034                 - if the active control being selected doesn't actually 
13035                 exist in the container, it returns
13036         
13037         * Form.cs
13038         
13039         - The ShowDialog now gets the current form as the owner when
13040         invoking without parameters, and correctly activates the owner 
13041         when returning
13042         
13043         * MessageBox.cs
13044         
13045         - MessageBox now catches the Escape key to exit
13046
13047 2006-10-20  Chris Toshok  <toshok@ximian.com>
13048
13049         * PropertyGridView.cs: fix a number of issues (bug #78565, and
13050         most of bug #79676):
13051
13052         - you can navigate around the property grid with the arrow keys.
13053
13054         - the dropdown is sized properly when the pg has a vertical
13055         scrollbar.
13056
13057         - fix the indentation for subentries, and properly select the
13058         entire label rect.
13059
13060         - fix the gray bar's drawing (only draw it to the last element,
13061         not for the height of the control.  Also make sure we draw that
13062         last horizontal grid line.
13063
13064         - use the same mechanism the datagrid uses wrt the editing textbox
13065         when scrolling/resizing/etc.  Namely, we hide it first, do the
13066         operation, then show it again (if it's still visible).
13067         
13068         - aggressively remove a lot of unnecessary refreshes (and also
13069         calls to Invalidate(). call more limited variants, and only redraw
13070         what we need.)
13071         
13072         * PropertyGrid.cs:
13073
13074         - when we're populating the merged collection, fill in the UI
13075         parent with either the passed in item, or the category item we
13076         create.
13077
13078         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
13079
13080         * GridItem.cs: drop some fully qualified names.
13081         
13082         * GridEntry.cs: add a "UIParent", which is basically the parent
13083         treenode.
13084
13085         * GridItemCollection.cs: add an IndexOf method.
13086
13087 2006-10-20  Mike Kestner  <mkestner@novell.com>
13088
13089         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
13090         a working win32 NC invalidation mechanism, we can't invalidate
13091         menus.  [Fixes #79705]
13092
13093 2006-10-20  Mike Kestner  <mkestner@novell.com>
13094
13095         * ListBox.cs : don't update the VScrollbar if the list is empty,
13096         just hide it.  [Fixes #79692]
13097
13098 2006-10-20  Jackson Harper  <jackson@ximian.com>
13099
13100         * RichTextBox.cs: Handle some special chars better, and don't skip
13101         the entire group when we encounter a special char that we don't
13102         handle correctly.
13103
13104 2006-10-18  Chris Toshok  <toshok@ximian.com>
13105
13106         * PropertyGridView.cs: address a number of issues from bug #79676,
13107         mostly of the cosmetic variety.
13108
13109         - The highlight rectangle for indented items not extends all the
13110         way to the left.
13111
13112         - Indented items aren't indented so much.
13113
13114         - the dropdown is properly sized width-wise if the pg has a
13115         vertical scrollbar.
13116
13117 2006-10-18  Chris Toshok  <toshok@ximian.com>
13118
13119         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
13120         systray stuff is rather convoluted to begin with.
13121
13122         systray icons are a single window for some reason (that I haven't
13123         figured out yet), and for them, client_window == whole_window.
13124         Given the way the tests are structured elsewhere to determine
13125         which paints are pending (client vs. nc), that situation will
13126         always yield PAINT, not NCPAINT.  So, if we have a pending
13127         nc_expose and no pending expose, remove the hwnd from the paint
13128         queue, and also set nc_expose_pending to false, to keep us from
13129         blocking further expose's adding the hwnd to the paint queue.
13130
13131         phew.  like i said, a rather convoluted change.  Fixes the
13132         notifyicon repaint issues in bug #79645.
13133
13134 2006-10-18  Chris Toshok  <toshok@ximian.com>
13135
13136         * Form.cs: when getting the backcolor of the form, don't get
13137         base.BackColor, as this allows parents to influence the background
13138         color.  This breaks mdi forms.  Instead, if the background_color
13139         is empty, return the default.
13140
13141 2006-10-18  Chris Toshok  <toshok@ximian.com>
13142
13143         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
13144         to being private instead of internal static.
13145
13146         * Control.cs: remove all the stupid ParentWaitingOnRecreation
13147         crap, it wasn't working for more deeply nested controls anyway,
13148         and we already have the is_recreating flag - use that instead.
13149         Before calling DestroyHandle in RecreateHandle, recurse through
13150         the control tree setting it to true.  this returns the recreate
13151         code to much of its original simplicity, while now guaranteeing we
13152         actually recreate everything we're supposed to.  This change gets
13153         fyireporting actually showing mdi children.
13154
13155 2006-10-17  Chris Toshok  <toshok@ximian.com>
13156
13157         * Form.cs: remove some debug spew, and collapse some duplicate
13158         code at the end of SetClientSizeCore.
13159
13160         * XplatUIX11.cs: 
13161         - add some more debug spew here too wrt Destroy handling.
13162         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
13163         in Control's handling of WM_DESTROY.
13164         - Remove the handling of zombie window DestroyNotifies from the
13165         event loop - we don't need it.  Now the only DestroyNotifies we
13166         actually handle are ones generated by X.
13167         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
13168         match gtk's (functioning) handling of this. This keep metacity
13169         from leaving droppings in the form of wm borders with no window
13170         contents all over the place.
13171
13172         * Control.cs:
13173         - add a bunch of debug spew wrt control recreation.
13174         - fix a bug where we weren't tracking Visible properly on
13175         recreated hwnds.
13176         - fixed the WM_PAINT double buffer handling to support re-entrant
13177         calls (yes, i know it's gross, but it's happening to us).
13178
13179 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13180         * ThemeWin32Classic.cs: changed drawing of selected days
13181         to make them look better.
13182
13183 2006-10-16  Chris Toshok  <toshok@ximian.com>
13184
13185         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
13186         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
13187
13188         * XplatUIX11.cs: move away from using hwnd.client_dc and
13189         hwnd.non_client_dc and on to a stack of dc's (and in window's
13190         case, PAINTSTRUCT's), so we can deal with nested Paint calls
13191         without puking or not disposing of Graphics objects.
13192
13193         * XplatUIOSX.cs: same.
13194
13195         * XplatUIWin32.cs: same.
13196
13197 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13198
13199         * FileDialog.cs: Don't call on_directory_changed inside
13200           OnSelectedIndexChanged (it changes the SelectedIndex too).
13201           Instead move it to OnSelectionChangeCommitted.
13202
13203 2006-10-13  Chris Toshok  <toshok@ximian.com>
13204
13205         * XplatUIX11.cs: more Destroy work.  the current code does the
13206         following things, in order:
13207
13208         1. Enumerates all handles of all controls at or below the one
13209         being destroyed, in pre-order.  As it is doing this, it marks the
13210         handles as zombie and clears all references to them.
13211         
13212         2. calls XDestroyWindow on the window passed in.
13213
13214         3. SendMessage's WM_DESTROY to all he handles in the accumulated
13215         list.
13216
13217 2006-10-13  Chris Toshok  <toshok@ximian.com>
13218
13219         * XplatUIX11.cs: set hwnd.zombie to true before calling
13220         SendMessage (WM_DESTROY).  this keeps us from marking the new
13221         window a zombie, and also keeps us from calling sendmessage at
13222         all.
13223
13224 2006-10-13  Jackson Harper  <jackson@ximian.com>
13225
13226         * TextControl.cs: Do not show the caret and selection at the same
13227         time.  Reduces ugliness by 35%.
13228
13229 2006-10-13  Chris Toshok  <toshok@ximian.com>
13230
13231         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
13232         zombie after we do the recursive call, so we actually do call
13233         SendMessage on the children controls.
13234         (GetMessage): if we find a pending paint event for a zombie hwnd,
13235         remove the hwnd from the paint queue, or else it will always be
13236         there (and we'll effectively loop infinitely)
13237
13238 2006-10-13  Mike Kestner  <mkestner@novell.com>
13239
13240         * MenuItem.cs : add Selected format under keynav too.
13241         Fixes #79528.
13242
13243 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
13244
13245         * PropertyGrid.cs: Fixed some NRE's and small difference between our
13246         implementation and that of MS.
13247
13248 2006-10-13  Chris Toshok  <toshok@ximian.com>
13249
13250         * Control.cs (OnInvalidated) only futz with the invalid_region if
13251         the control is double buffered.  this fixes the apparent hang in
13252         the ListView unit tests.  Someone needs to make the
13253         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
13254
13255 2006-10-13  Chris Toshok  <toshok@ximian.com>
13256
13257         * PropertyGridView.cs:
13258
13259         - do a little refactoring so that only one place calls
13260         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
13261         else call that.  Also make it Refresh, since there are redraw bugs
13262         otherwise (we should take a look at that...)
13263
13264         - do a little more refactoring work to share the body of code
13265         involved with the drop down.  it was duplicated in the code
13266         dealing with the listbox handling and in the code dealing with the
13267         UITypeEditors.
13268
13269         - add a Capture to the dropdown form's control once it's
13270         displayed, and add a MouseDown handler that checks to make sure
13271         the position is inside the control.  If it's not, close the
13272         dropdown.  This fixes #78190.
13273
13274         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
13275         if the value is different than the initial value.
13276         
13277 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
13278
13279         * Control.cs: see #78650
13280         - Fixed GetNextControl for several cases:
13281                 - Changed FindFlatForward to return 
13282                 correct sibling control when more than one
13283                 control has same TabIndex as the currently 
13284                 focused one.
13285                 - Changed FindFlatBackward to loop children
13286                 from last to first and apply same logic as in
13287                 FindFlatForward
13288                 - Changed FindControlForward to search for
13289                 children when control is not a container
13290                 but has children, or search for siblings if
13291                 control is a container...
13292                 - Changed FindControlBackward   to continue
13293                 searching for child controls when hitting 
13294                 Panel-like parents
13295                 
13296         - Fixed Focus method to update ActiveControl
13297         (FocusTest.FocusSetsActive failure)
13298         
13299         * TabControl.cs:
13300         - Focus rectangle now refreshes when gaining
13301         or losing focus
13302         - Removed grab for Tab key on IsInputKey that 
13303         was keeping tab navigation from working (#78650)
13304
13305 2006-10-13  Chris Toshok  <toshok@ximian.com>
13306
13307         * PropertyGridView.cs:
13308         - Rewrite SetPropertyValue to loop over SelectedGridItem's
13309         SelectedObjects.
13310
13311         - Deal with GridItem.Value == null a few places.
13312
13313         * PropertyGrid.cs: 
13314         - replace the PopulateGridItemCollection with a pair of methods
13315         which compute the intersection of all the properties in the
13316         SelectedObjects array.  Fixes #79615.
13317
13318         - Throw ArgumentException from set_SelectedObjects if there's a
13319         null in the array.
13320
13321         - Add GetTarget method which can be used to traverse up the
13322         GridItem.Parent chain.  It depends on the assumption that
13323         selected_objects for different GridEntries are always in the same
13324         order (a safe assumption).  Use this method and loop over all the
13325         selected objects in the entry when calling RemoveValueChanged and
13326         AddValueChanged.
13327         
13328         * GridEntry.cs: Make this handle multiple selected objects.
13329         .Value returns null if not all the selected objects share the same
13330         value.
13331
13332 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
13333         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
13334           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
13335           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
13336           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
13337           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
13338         add additional functionality.
13339
13340 2006-10-12  Mike Kestner  <mkestner@novell.com>
13341
13342         * ErrorProvider.cs : new ToolTipWindow ctor sig.
13343         * HelpProvider.cs : new ToolTipWindow ctor sig.
13344         * ToolTip.cs : remove ToolTip param from Window sig since it is
13345         not used.
13346         * ToolBar.cs : add tooltip support.  Fixes #79565.
13347
13348 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13349
13350         * ComboBox.cs: move the events in set_SelectedIndex to 
13351         after the call to HighlightIndex in order to avoid 
13352         possible recursion and subsequent problems with the call
13353         to HighlightIndex and include a range check in 
13354         set_HighlightIndex. Fixes #79588
13355         
13356 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13357
13358         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
13359         to ui thread's settings instead of sunday. 
13360         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
13361
13362 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13363
13364         * DateTimePicker.cs
13365         * MonthCalendar.cs
13366         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
13367         and implement missing functionality (selecting different parts 
13368         of the date and edit them individually with the keyboard).
13369         
13370 2006-10-11  Chris Toshok  <toshok@ximian.com>
13371
13372         * Control.cs (OnInvalidated): fix NRE relating to last change.
13373
13374 2006-10-11  Chris Toshok  <toshok@ximian.com>
13375
13376         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
13377         atoms in _NET_WM_STATE here if the window is maximized.  We need
13378         to do this because we're *replacing* the existing _NET_WM_STATE
13379         property, so those atoms will be lost otherwise, and any further
13380         call to GetWindowState will return Normal for a window which is
13381         actually maximized.  Fixes #79338.
13382
13383 2006-10-11  Jackson Harper  <jackson@ximian.com>
13384
13385         * TextControl.cs: Special case for setting selection end to
13386         selection start, we basically kill the anchor.
13387         - some todo comments.
13388
13389 2006-10-11  Chris Toshok  <toshok@ximian.com>
13390
13391         * Control.cs: switch to using an "invalid_region" to track which
13392         parts of the image buffer need updating.  This is more code than
13393         the simple fix from r66532.  That version just attempted to always
13394         fill the entire buffer on redraw, which turns out to be
13395         inefficient when invalidating small rectangles.  This version
13396         simply adds the invalid rectangle to the invalid region.  When we
13397         get any WM_PAINT message we see if it can be filled using the
13398         image buffer, and if it can't (if the paint event's clip rectangle
13399         is visible in the invalid region) we first fill the image buffer.
13400         So, the image buffer is still a cache, we just fill it lazily.
13401
13402         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
13403         need it any longer.
13404
13405 2006-10-11  Chris Toshok  <toshok@ximian.com>
13406
13407         * XplatUIX11.cs (SetWindowPos): we need to update both position as
13408         well as size after calling XMoveResizeWindow.  This keeps us from
13409         ignoring future SetWindowPos calls.  Fixes the disappearing
13410         DateTimePicker in the ToolBarDockExample from bug #72499.
13411
13412 2006-10-11  Chris Toshok  <toshok@ximian.com>
13413
13414         * TextBoxBase.cs: reorder things a bit when it comes to
13415         resizing-causing-recalculation.  we were recalculating the
13416         document when our position was changed, which shouldn't happen.
13417         We only care about size changes.  Clear up some more redundant
13418         recalculation calls while I'm at it.  This makes the toolbar dock
13419         example snappy when you're just dragging toolbars around (since it
13420         causes a relayout whenever you move one.)
13421
13422 2006-10-11  Chris Toshok  <toshok@ximian.com>
13423
13424         * ToolBarButton.cs (get_Rectangle): this only returns
13425         Rectangle.Empty if Visible == false, or Parent == null.
13426         Parent.Visible doesn't matter.
13427
13428 2006-10-10  Chris Toshok  <toshok@ximian.com>
13429
13430         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
13431         by .net 1.1, so switch to an internal method instead.
13432
13433 2006-10-10  Chris Toshok  <toshok@ximian.com>
13434
13435         * Control.cs (WM_PAINT): when a control is double buffered we draw
13436         initially to the ImageBuffer and then copy from there.  But when a
13437         parent control which has child controls is double buffered, the
13438         initial drawing doesn't encompass the entire ClientRectangle of
13439         the parent control, so we end up with uninitialized bits (this is
13440         easily seen by dragging the top toolbar in
13441         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
13442         manually set the ClipRectangle of the paint_event (only the one we
13443         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
13444         of the nastiness in bug #72499.
13445
13446         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
13447         which we use in Control.cs's WM_PAINT handling.
13448
13449 2006-10-10  Jackson Harper  <jackson@ximian.com>
13450
13451         * TextBoxBase.cs: Finish off the autoscrolling stuff.
13452
13453 2006-10-10  Chris Toshok  <toshok@ximian.com>
13454
13455         * Cursor.cs: Apply a slightly different patch to the one suggested
13456         in #79609.
13457
13458 2006-10-10  Jackson Harper  <jackson@ximian.com>
13459
13460         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
13461         not the parent form.
13462         * TextControl.cs: use difference in old line count vs new count to
13463         calculate how many lines were added, this takes into account soft
13464         line breaks properly.
13465
13466 2006-10-10  Chris Toshok  <toshok@ximian.com>
13467
13468         * LinkLabel.cs: don't call MeasureCharacterRanges against a
13469         rectangle located at 0,0 and the size of the text.  Use
13470         ClientRectangle instead.  This fixes rendering of non-left aligned
13471         link labels.
13472
13473 2006-10-10  Jackson Harper  <jackson@ximian.com>
13474
13475         * TextBoxBase.cs: When we set the selection start position the
13476         caret.
13477         * TextControl.cs: Need to update the caret when we decrement it to
13478         zero.
13479         - Make sure that the selection_visible flag gets reset to false if
13480         the selection isn't visible.  Before this you could get it set to
13481         visible by changing the selection start, then changing the end to
13482         equal the start.
13483
13484 2006-10-09  Jackson Harper  <jackson@ximian.com>
13485
13486         * TreeView.cs: Don't update scrollbars when we aren't visible.
13487         * TreeNodeCollection.cs: Only need to update scrollbars if being
13488         added to an expanded visible node or the root node.
13489
13490 2006-10-09  Chris Toshok  <toshok@ximian.com>
13491
13492         * XplatUIX11.cs (SendMessage): fix NRE.
13493
13494 2006-10-09  Jackson Harper  <jackson@ximian.com>
13495
13496         * TextBoxBase.cs: Implement horizontal autoscrolling.
13497         * TextControl.cs: Add a movement types that allows moving forward
13498         and backwards without wrapping.
13499
13500 2006-10-09  Mike Kestner  <mkestner@novell.com>
13501
13502         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
13503         with focus "expansion" of labels.  Fixes #79532 and then some.
13504         * ThemeWin32Classic.cs : add LineLimit to ListView label format
13505         when wrapping.
13506
13507 2006-10-09  Jackson Harper  <jackson@ximian.com>
13508
13509         * TextBoxBase.cs: Set the default max values to MaxValue since
13510         we use the scrollbar for autoscrolling and the default value is
13511         100.  If we don't do this the caret won't keep up with typing
13512         after about 18 characters.
13513         * TextControl.cs: Make sure the selection is offset by the
13514         viewport x.  This fixes selection when using auto scrolling.
13515
13516 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
13517         
13518         * Form.cs: The active control should be selected after the 
13519         OnLoad so that any child control initialization that affects
13520         the selection is done. Fixes #79406
13521
13522 2006-10-06  Chris Toshok  <toshok@ximian.com>
13523
13524         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
13525         to have no evil effects.
13526
13527         - Stop selecting StructureNotifyMask on non-toplevel windows.
13528
13529           The only way children should be resized is by using the SWF api,
13530           and we already send WM_WINDOWPOSCHANGED messages in those cases.
13531           Toplevel windows can be interacted with via the window manager,
13532           and so we keep the input mask there.
13533
13534           The other event StructureNotifyMask gives us (that we care
13535           about) is DestroyNotify.  The code is already structured such
13536           that it assumes we won't be getting a DestroyNotify event for
13537           the window we pass to XDestroyWindow (which is what
13538           StructureNotifyMask is supposed to guarantee.)  So, that code
13539           shouldn't be affected by this either.
13540
13541         - Stop selecting VisibilityChangeMask altogether.
13542
13543           We weren't doing anything with the resulting events anyway.
13544         
13545         This vastly reduces the number of X requests and events we see
13546         when resizing/laying out a large ui.
13547
13548 2006-10-06  Chris Toshok  <toshok@ximian.com>
13549
13550         * ScrollableControl.cs (DisplayRectangle): we need to take into
13551         account the DockPadding regardless of whether or not auto_scroll
13552         == true.  rework this slightly to this effect, and fix bug #79606,
13553         and part of #72499 (you can now see the drag handles and drag
13554         toolbars around).
13555
13556 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
13557
13558         * ListViewItem.cs: Collections of selected and checked items are now
13559         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
13560         we mark the collection "dirty".
13561         * ListView.cs: Marked collections readonly. Modified UpdateSelection
13562         to only clear SelectedItems when a new item is selected and MultiSelect
13563         is enabled. CheckedItems and SelectedItems now subscribe to Changed
13564         event of ListViewItemCollection, and mark its list dirty whenever
13565         that event is fire. This allows us to return selected/checked items 
13566         in the same order as they are in the Items collection. This matches
13567         the MS behavior.
13568
13569 2006-10-06  Chris Toshok  <toshok@ximian.com>
13570
13571         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
13572         right mouse clicks.  Fixes bug #79593.
13573
13574 2006-10-06  Chris Toshok  <toshok@ximian.com>
13575
13576         * Splitter.cs: doh, fix splitters that don't want to cancel the
13577         movement when you drag them.  Also, impose the limits on the
13578         values we send to the SplitterMovingEvent.  Fixes #79598.
13579
13580 2006-10-06  Jackson Harper  <jackson@ximian.com>
13581
13582         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
13583         since we use this for auto scrolling also.
13584
13585 2006-10-05  Chris Toshok  <toshok@ximian.com>
13586
13587         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
13588         beginning to think that most datagrid column types don't need this
13589         method.  Fixes bug #79392.
13590
13591 2006-10-05  Chris Toshok  <toshok@ximian.com>
13592
13593         * DataGrid.cs: move back to a more lazy scheme for creating the
13594         CurrencyManager, so we aren't updating it every time you set
13595         either DataSource or DataMember.  Also, don't call
13596         RecreateDataGridRows if the currency manager hasn't changed.
13597
13598 2006-10-05  Chris Toshok  <toshok@ximian.com>
13599
13600         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
13601         emitted, SelectedIndex should already be updated.  Fixes bug
13602         #78929.
13603
13604 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
13605
13606         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
13607           ToolStripTextBox.cs: Initial commit.
13608         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
13609
13610 2006-10-05  Jackson Harper  <jackson@ximian.com>
13611
13612         * TabControl.cs: We need to invalidate the tab control area when
13613         new ones are added (duh).
13614
13615 2006-10-03  Chris Toshok  <toshok@ximian.com>
13616
13617         * Form.cs (ProcessDialogKey): if the focused control is in this
13618         form and is a button, call its PerformClick method here.  Fixes
13619         #79534.
13620
13621 2006-10-04  Jackson Harper  <jackson@ximian.com>
13622
13623         * TabPage.cs: Ignore setting of Visible, and add an internal
13624         method for setting the controls visibility.  TabPage's Visible
13625         property is a little strange on MS, this seems to make us
13626         compatible, and fixes cases where people set all the tab pages to
13627         visible.
13628         * TabControl.cs: Use the new internal setting on tab pages
13629         visibility.
13630
13631 2006-10-03  Mike Kestner  <mkestner@novell.com>
13632
13633         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
13634
13635 2006-10-03  Mike Kestner  <mkestner@novell.com>
13636
13637         * ListView.cs : use is_visible instead of Visible to check if 
13638         scrollbars should be placed/sized.  Also some max_wrap_width
13639         love for LargeIcon view.  [Fixes #79533]
13640
13641 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
13642
13643         * TextControl.cs :
13644           Make set_TextAlign() do actually update the align. Fixed #78403.
13645
13646 2006-10-03  Chris Toshok  <toshok@ximian.com>
13647
13648         * DataGrid.cs: fix a crash when switching datasources if the
13649         vertical scrollbar is at someplace other than Value = 0.  Also,
13650         reduce the number of recalculation passes we do in SetDataSource
13651         from 2 to 1.
13652
13653 2006-10-03  Jackson Harper  <jackson@ximian.com>
13654
13655         * TextBoxBase.cs: Move the if value the same bail check up, we
13656         don't want to empty the document if it is already empty, this
13657         seems to severly mess up the caret.  TODO: I should probably fix
13658         the empty statement to update teh caret somehow.
13659
13660 2006-10-03  Chris Toshok  <toshok@ximian.com>
13661
13662         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
13663         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
13664         reflection, an internal row type, properties on said type, etc.)
13665         will work with our datagrid.  Fixes #79531.
13666
13667 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13668
13669         * FileDialog.cs: Don't crash if a path is not accessible
13670           (System.UnauthorizedAccessException). Fixes #79569.
13671         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
13672           a ':' too. Return unknown icon for those paths/files.
13673
13674 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
13675
13676         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
13677         GetContainerControl returns null.
13678
13679 2006-10-02  Chris Toshok  <toshok@ximian.com>
13680
13681         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
13682         call to XGetWindowAttributes instead of "handle".  fixes an X
13683         error using notifyicon after the NotifyIconWindow to Form base
13684         class switch.
13685
13686 2006-10-02  Chris Toshok  <toshok@ximian.com>
13687
13688         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
13689         server grab and looping we need to do to get down to the most
13690         deeply nested child window.
13691         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
13692         QueryPointer again after the WarpPointer so we can generate a
13693         proper (fake) MotionNotify event to be enqueued in the destination
13694         window's queue.
13695         (GetCursorPos): call QueryPointer.
13696
13697         Fixes #79556.
13698
13699 2006-10-02  Jackson Harper  <jackson@ximian.com>
13700
13701         * NotifyIcon.cs: Derive the notify icon from a form, so things
13702         like FindForm work on it.
13703         - Swallow the WM_CONTEXTMENU message, since that is generated on
13704         mouse down, and context menu is a mouse up kinda guy.  I believe
13705         the correct fix here is probably to make the notify icon entirely
13706         NC area, but this seems to work fine for anyone not manipulating
13707         WndProc.
13708
13709 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
13710
13711         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
13712           ToolStripItemCollection.cs, ToolStripLabel.cs,
13713           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
13714           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
13715           Initial implementation.
13716         * TextRenderer.cs: Provide padding to MeasureText.
13717
13718 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
13719
13720         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
13721         of ButtonBaseAccessibleObject. Fix bug #79552.
13722
13723 2006-10-02  Jackson Harper  <jackson@ximian.com>
13724
13725         * MdiWindowManager.cs: When maximizing use the containers client
13726         rect, not it's bounds, so nc area is accounted correctly.
13727         - Use the parent form's size for the menu position, since the
13728         client isn't always the full form size.
13729
13730 2006-10-01  Chris Toshok  <toshok@ximian.com>
13731
13732         * ScrollableControl.cs: make sure neither right_edge or
13733         bottom_edge are < 0, since they're used as LargeChange for the
13734         horiz/vert scrollbars respectively.  Fixes #79539.
13735
13736 2006-10-01  Chris Toshok  <toshok@ximian.com>
13737
13738         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
13739         the xplatuix11 code can cause us to destroy/recreate our handle.
13740
13741         * XplatUIX11.cs
13742         (SystrayAdd):
13743         - this code can be invoked many times for the same Hwnd.  Make
13744           sure we only destroy the client window once (the first time this
13745           method is called).  This fixes bug #79544.
13746         - Remove the call to the improperly bound XSync.  why we had two
13747           bindings to this, I will never know, but this call resulted in
13748           events being discarded from the queue(!).
13749         - correct a misunderstanding of _XEMBED_INFO - the second atom is
13750           not our current state but the state we wish to be in.  So, 0 if
13751           we don't want to be mapped.  Change it to 1.
13752         (SystrayRemove): The XEMBED spec makes mention of the fact that
13753         gtk doesn't support the reparent of client windows away from the
13754         embedder.  Looking at gtksocket-x11.c seems to agree with this.
13755         The only avenue we have for removing systray icons is to destroy
13756         them.  We don't want the handle to go away for good, though, so
13757         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
13758         #79545.
13759         
13760 2006-10-01  Chris Toshok  <toshok@ximian.com>
13761
13762         * Form.cs (WndProc): inline the native_enabled variable usage into
13763         the cases in which it's used.  Fixes #79536.
13764
13765 2006-09-29  Mike Kestner  <mkestner@novell.com>
13766
13767         * ListView.cs : toggle the selection state for ctrl clicks in 
13768         multiselect mode. [Fixes #79417]
13769
13770 2006-09-29  Mike Kestner  <mkestner@novell.com>
13771
13772         * ListView.cs : kill CanMultiSelect and refactor the selection
13773         code to support multiselection in the absence of mod keys. Steal
13774         arrow/home/end keys by overriding InternalPreProcessMessage to
13775         restore regressed keynav behavior.
13776         [Fixes #79416]
13777
13778 2006-09-29  Jackson Harper  <jackson@ximian.com>
13779
13780         * MdiClient.cs: Repaint the titlebars when the active window is
13781         changed.
13782
13783 2006-09-29  Chris Toshok  <toshok@ximian.com>
13784
13785         * Application.cs: when entering a runloop with a modal, make sure
13786         the hwnd is enabled.  Fixes #79480.
13787
13788 2006-09-29  Chris Toshok  <toshok@ximian.com>
13789
13790         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
13791         when ListManager.CanAddRows == false, bump us back one.
13792
13793         * DataGridColumnStyle.cs (ParentReadOnly): remove the
13794         listmanager.CanAddRows check.  This makes ArrayLists uneditable
13795         using a datagrid, which is not right.
13796         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
13797         is an IEditable, but call property_descriptor.SetValue regardless.
13798         fixes #79435.
13799
13800 2006-09-29  Chris Toshok  <toshok@ximian.com>
13801
13802         * DataGridBoolColumn.cs: we need to test equality in the face of
13803         possible null values (as is the case with the default NullValue).
13804         This patch keeps us from crashing in that case.
13805
13806 2006-09-29  Jackson Harper  <jackson@ximian.com>
13807
13808         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
13809         here, since it will get called for every node collection in the
13810         tree. This is now done in the treeview once the sorting is
13811         finished.
13812         * TreeView.cs: Recalculate the visible order, and update the
13813         scrollbars after sorting, set the top nope to the root so that the
13814         recalc actually works.
13815
13816 2006-09-29  Chris Toshok  <toshok@ximian.com>
13817
13818         * LinkLabel.cs: more handling of the default link collection in
13819         the face of LinkArea manipulation.  The default link collection
13820         contains 1 element (start=0,length=-1).  If the user sets LinkArea
13821         to anything and the links collection is the default, clear it.
13822         Then only add the link if its nonempty.  Fixes #79518.
13823
13824 2006-09-29  Chris Toshok  <toshok@ximian.com>
13825
13826         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
13827         piece correctly when we hit a '\n'.  Fixes #79517.
13828
13829 2006-09-29  Chris Toshok  <toshok@ximian.com>
13830
13831         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
13832         change the binding of gdk_init_check to take two IntPtr's, and
13833         pass IntPtr.Zero for both of them.  Fixes #79520.
13834
13835 2006-09-29  Mike Kestner  <mkestner@novell.com>
13836
13837         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
13838         [Fixes #78779]
13839
13840 2006-09-28  Jackson Harper  <jackson@ximian.com>
13841
13842         * XplatUIX11.cs: When translating NC messages make sure we go from
13843         whole window to screen, not client window to screen.
13844         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
13845         method doesn't exist
13846         - Skip over controls that aren't forms when arranging.
13847
13848 2006-09-28  Jackson Harper  <jackson@ximian.com>
13849
13850         * XplatUIWin32.cs: Clip the rect to the parent window.
13851         * XplatUIStructs.cs: Add clipping modes struct.
13852         * InternalWindowManager.cs: New private method that factors title
13853         bar heights in when calculating the pos of an NC mouse message.
13854         - Use SendMessage to force a paint when the form's size is changed
13855         instead of painting the decorations immediately.
13856         - Don't let the NC button click messages get to DefWndProc,
13857         because they will attempt to handle windowing themself, and this
13858         messes up z-order (it will put them in front of the scrollbars).
13859         * XplatUIX11.cs: Make sure that we don't reset window managers if
13860         we already have one (ie the window is an MDI window).
13861
13862 2006-09-28  Chris Toshok  <toshok@ximian.com>
13863
13864         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
13865         menu code really needs going over.
13866
13867 2006-09-27  Chris Toshok  <toshok@ximian.com>
13868
13869         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
13870         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
13871         window is maximizable.  So, we need to make sure that even if we
13872         clear the border/wm frame of those functions, they're still
13873         available (basically, we remove the decoration without removing
13874         the function).  Half the fix for #79338.
13875
13876 2006-09-27  Chris Toshok  <toshok@ximian.com>
13877
13878         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
13879         Fixes bug #79515.
13880
13881 2006-09-27  Chris Toshok  <toshok@ximian.com>
13882
13883         * Splitter.cs: reorder things a bit so that we don't actually
13884         draw/move the splitter until after calling OnSplitterMoving.  This
13885         lets users cancel/disallow the movement by explicitly setting
13886         event.SplitX/SplitY.  Fixes #79372.
13887
13888 2006-09-27  Jackson Harper  <jackson@ximian.com>
13889
13890         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
13891         because it is most likely on a window being destroyed, and that
13892         will give us an X11 error.
13893
13894 2006-09-27  Chris Toshok  <toshok@ximian.com>
13895
13896         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
13897         the dropdown button now toggles between showing and hiding the
13898         dropdown.  Also, get rid of dropdown_form_showing and just use
13899         dropdown_form.Visible.  We still don't do a grab, but I'll leave
13900         that part to someone who has handled Capture-fu before.
13901
13902 2006-09-27  Chris Toshok  <toshok@ximian.com>
13903
13904         * DataGrid.cs: return false if alt isn't pressed when '0' is
13905         pressed.  this keeps the '0' key from being swallowed, and fixes
13906         bug #79350.
13907
13908 2006-09-27  Chris Toshok  <toshok@ximian.com>
13909
13910         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
13911         Calling Refresh (in response to a scrollbar event) screws up the
13912         scrollbar painting.  Fixes bug #78923.
13913
13914 2006-09-27  Chris Toshok  <toshok@ximian.com>
13915
13916         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
13917         then insert into hashtable" blocks threadsafe.
13918
13919 2006-09-27  Chris Toshok  <toshok@ximian.com>
13920
13921         * MessageBox.cs (CreateParams): the styles should be |'ed with our
13922         baseclass's, since otherwise the
13923         ControlBox/MinimizeBox/MaximizeBox assignments above have no
13924         effect.  This gets the close button back in messageboxes.
13925
13926 2006-09-27  Chris Toshok  <toshok@ximian.com>
13927
13928         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
13929         flag, not just != 0.  this makes flags that are actually multiple
13930         bits (like WS_CAPTION) work.  fixes bug #79508.
13931
13932 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
13933
13934         * PageSetupDialog.cs: add support for getting and settings the 
13935         paper size, source and orientation.
13936
13937 2006-09-26  Chris Toshok  <toshok@ximian.com>
13938
13939         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
13940         and caption == "", we need to remove the resize handles as well as
13941         the title bar.
13942
13943         * Control.cs (set_Text): turns out that setting Text on a form
13944         should change the WM styles on the window, since if ControlBox ==
13945         false, the only way to get a window border is to have a non-""
13946         Text property.  check winforms/forms/text.cs for an example.  so,
13947         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
13948         update both window styles and title.  This fixes a lot of dialogs
13949         (including the preferences dialog in MonoCalendar.)
13950
13951 2006-09-26  Chris Toshok  <toshok@ximian.com>
13952
13953         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
13954         control isn't a Form), call Win32ShowWindow to hide the window,
13955         but don't update the control Visible property.  When we reparent
13956         back to a parent control, call SetVisible in order for the
13957         window's visibility to be reinstated.
13958
13959         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
13960         the FosterParent.
13961
13962         * Control.cs (ControlCollection.Remove): remove that value.Hide()
13963         call for good, since it breaks MonoCalendar (and other things I'm
13964         sure.) Also, set all_controls to null *after* the owner calls,
13965         which end up regenerating it.
13966         (ChangeParent): allow new_parent to be == null, passing
13967         IntPtr.Zero down to XplatUI.
13968
13969         this fixes #79294 the right way.
13970
13971 2006-09-26  Mike Kestner  <mkestner@novell.com>
13972
13973         * GridEntry.cs : internal SetParent method.
13974         * PropertyGrid.cs : attach to property changed on the proper
13975         target if we have a hierarchical grid with subobjects. Setup
13976         GridItem.Parent for hierarchical items.
13977         * PropertyGridView.cs : Set value on the correct target for
13978         hierarchical grids. [Fixes #78903]
13979
13980 2006-09-26  Chris Toshok  <toshok@ximian.com>
13981
13982         * Control.cs (ChildNeedsRecreating): this should return true if
13983         either we're being recreated and the child is in our list, or our
13984         parent is waiting for our recreation.
13985
13986 2006-09-26  Chris Toshok  <toshok@ximian.com>
13987
13988         * Control.cs (ControlCollection.Remove): reinstate the
13989         value.Hide() call as suggested in bug #79294.
13990
13991 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
13992
13993         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
13994         coordinates (versus a relative move).
13995
13996 2006-09-26  Chris Toshok  <toshok@ximian.com>
13997
13998         * Control.cs: rework child recreation a little bit.  It turns out
13999         that we race between the DestroyNotify the WM_DESTROY message.  If
14000         the parent gets its DestroyNotify before the child gets the
14001         WM_DESTROY message, the child ends up not recreating (since the
14002         parent finishes its recreation on DestroyNotify, and the child
14003         checks ParentIsRecreating.)
14004
14005         So, instead we store off a list of all the child controls which
14006         need to be recreated when the parent control starts to recreate
14007         itself.  Then, when child controls get their WM_DESTROY message we
14008         check to see if they're in the parent's pending recreation list,
14009         and if so, we recreate.  This removes all dependency on ordering
14010         from the code and fixes the initial MonoCalendar upgrade dialog.
14011         
14012 2006-09-26  Jackson Harper  <jackson@ximian.com>
14013
14014         * TextControl.cs: Use the Line to get the length of the line,
14015         since soft line breaks can change the end line.
14016
14017 2006-09-26  Chris Toshok  <toshok@ximian.com>
14018
14019         * Control.cs (ControlCollection.AddImplicit): don't add the
14020         control again if it's already in one of our lists.  This keeps us
14021         from adding controls over and over again for comboboxes when their
14022         handle gets recreated (as the combobox adds implicit controls in
14023         OnHandleCreated).  Fixes the X11 errors in bug #79480.
14024
14025 2006-09-26  Jackson Harper  <jackson@ximian.com>
14026
14027         * TextControl.cs: When deleting characters make sure that any
14028         orphaned zero lengthed tags get deleted.
14029         - Fix ToString for zero lengthed tags.
14030
14031 2006-09-25  Jackson Harper  <jackson@ximian.com>
14032
14033         * TextControl.cs: When getting a tag at the location there can be
14034         multiple tags at the same spot, these are 0-lengthed tags that
14035         appear when extra formatting has been stuck in a location.  We
14036         need to pull out the last of these 0 lengthed tags.
14037
14038 2006-09-25  Jackson Harper  <jackson@ximian.com>
14039
14040         * TextControl.cs: Fix print out in debug method.
14041         * TextBoxBase.cs: When text is set bail if we are setting to the
14042         previous value.
14043         
14044 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
14045
14046         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
14047           It is now possible to change the selected index in a FontXXXListBox
14048           with the up and down arrow keys from the FontXXXTextBoxes.
14049           Also, send the FontXXXTextBox mouse wheel event to the corresponding
14050           FontXXXListBoxes to match ms.
14051
14052 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
14053
14054         * SystemInformation.cs: Return a clone of the theme's MenuFont because
14055         anyone can dispose it, anytime. All other properties returns enums, 
14056         structs or basic types so they don't need such tricks.
14057
14058 2006-09-22  Jackson Harper  <jackson@ximian.com>
14059
14060         * XplatUI.cs:
14061         * XplatUIWin32.cs:
14062         * Clipboard.cs:
14063         * DataFormats.cs:
14064         * XplatUIOSX.cs:
14065         * XplatUIDriver.cs: Update interface to add a primary selection
14066         flag, so the driver can use the primary selection buffer if
14067         needed.
14068         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
14069
14070         * RichTextBox.cs: We need to supply the data object to paste now
14071         (so we can choose to supply CLIPBOARD or PRIMARY).
14072         * TextBoxBase.cs: Supply data object to paste (see above).
14073         - Middle click uses the primary selection data object.
14074         
14075 2006-09-21  Chris Toshok  <toshok@ximian.com>
14076
14077         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
14078         of SetWMStyles.  It's still a rat's nest and is largely
14079         order-dependent which I dislike immensely.  This also fixes the X
14080         button disappearing from toplevel forms.
14081
14082 2006-09-21  Mike Kestner <mkestner@novell.com>
14083
14084         * ListBox.cs: move Jordi's click/dblclick raising code to the
14085         mouse up handler.
14086
14087 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
14088
14089         * ListBox.cs: Fixes 79450
14090
14091 2006-09-21  Mike Kestner <mkestner@novell.com>
14092
14093         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
14094         to deal with people updating the TreeNodeCollection after the tree
14095         is disposed.  "Fixes" 79330.
14096
14097 2006-09-20  Jackson Harper <jackson@ximian.com>
14098
14099         * TextControl.cs: Push the cursor record onto the undo stack
14100         before the delete action. This fixes 78651.
14101
14102 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
14103
14104         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
14105         CreateParams. Fixes 79329.
14106
14107 2006-09-19  Chris Toshok  <toshok@ximian.com>
14108
14109         * XplatUIX11.cs: a couple of blanket code massage passes to clean
14110         things up a bit.  First, get rid of the NetAtoms array (and the NA
14111         enum), and just embed the atoms as static fields.  Also, add a
14112         couple of functions (StyleSet and ExStyleSet) to clean up all the
14113         bitmask testing of styles.
14114
14115         * X11Structs.cs: remove the NA enum, not needed anymore.
14116         
14117 2006-09-19  Chris Toshok  <toshok@ximian.com>
14118
14119         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
14120         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
14121         added cleanup to get MessageBox titles appearing again, which were
14122         broken by my earlier fix for caption-less/ControlBox-less windows.
14123
14124 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
14125
14126         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
14127           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
14128           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
14129           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
14130           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
14131           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
14132           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
14133           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
14134           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
14135           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
14136           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
14137             Inital import.
14138         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
14139           ToolStripButton.cs: Stubs needed for above.
14140         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
14141
14142 2006-09-15  Chris Toshok  <toshok@ximian.com>
14143
14144         * XplatUIX11.cs:
14145         - make the MessageQueues hashtable Synchronized.
14146         
14147         - SendMessage: if the Hwnd is owned by a different thread, use the
14148         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
14149         thread.  Fixes bug #79201.
14150
14151 2006-09-15  Chris Toshok  <toshok@ximian.com>
14152
14153         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
14154         ControlBox == false, we disallow maximize/minimize/close.  If the
14155         form Caption is "" we also disallow move (and get rid of the Title
14156         decoration).  Unfortunately, regardless of how things are set,
14157         we're stuck with the Title and WM menu.
14158
14159 2006-09-15  Chris Toshok  <toshok@ximian.com>
14160
14161         * Application.cs: add locking around the static message_filters
14162         ArrayList, part of #79196.
14163
14164 2006-09-15  Chris Toshok  <toshok@ximian.com>
14165
14166         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
14167         Form.ControlBox == false, the window has no titlebar nor resize
14168         handles.  fixes bug #79368.
14169
14170 2006-09-15  Chris Toshok  <toshok@ximian.com>
14171
14172         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
14173         >= 0.  Fixes bug #79370.
14174
14175 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
14176         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
14177         * Control.cs:
14178             Add properties: LayoutEngine, Margin, DefaultMargin.
14179             Add method: GetPreferredSize.
14180             Move layout logic from PerformLayout to layout engines. 
14181
14182 2006-09-13  Chris Toshok  <toshok@ximian.com>
14183
14184         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
14185         fix for #79326 broke #78718, so this change addresses that.
14186
14187         - in SendWMDestroyMessages remove the call to
14188         CleanupCachedWindows, since we might be recreating the control and
14189         need to maintain the references to right Hwnd handles.  Also, set
14190         the zombie flag to true for each of the children in the hierarchy
14191         instead of calling hwnd.Dispose.  This will cause GetMessage to
14192         ignore all events for the window except for DestroyNotify.
14193
14194         - In GetMessage, ignore messages except for DestroyNotify for
14195         zombie hwnds.
14196         
14197         * Control.cs: revert the is_recreating fix from the last
14198         ChangeLog.  It's definitely "right", but it breaks switching from
14199         an MDI form to a non-MDI form.  Will need to revisit that.
14200
14201         * Hwnd.cs: add a zombie flag, which means "the
14202         client_window/whole_window handles are invalid, but we're waiting
14203         for the DestroyNotify event to come in for them".  Set the flag to
14204         false explicitly if setting WholeWindow/ClientWindow, and also
14205         when Disposing.
14206         
14207 2006-09-13  Chris Toshok  <toshok@ximian.com>
14208
14209         * XplatUIX11.cs: rework window destruction slightly.
14210
14211         - when destroying the windows associated with a control, we don't
14212         need 2 separate XDestroyWindow calls.  Just the one for the
14213         whole_window (or for client_window if whole_window is somehow
14214         IntPtr.Zero -- can this happen?) is enough.
14215
14216         - reworked SendWMDestroyMessages slightly, so we always dispose
14217         the child control hwnd's after sending the messages.
14218         
14219         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
14220         the two places it was used (one was even using hwnd.Handle and the
14221         other hwnd.client_window.  ugh), adding another call in
14222         SendWMDestroyMessages.  We need this new call because now the
14223         DestroyNotify events in the queue will be ignored for the child
14224         controls (as their hwnd's were disposed, and the window id's
14225         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
14226
14227         - this fixes bug #79326.
14228
14229 2006-09-13  Chris Toshok  <toshok@ximian.com>
14230
14231         * Control.cs: don't always set is_recreating to false at the end
14232         of RecreateHandle, since sometimes we're not done (and won't be
14233         until WndProc handles the WM_DESTROY message).  Also, set
14234         is_recreating to false in the WM_DESTROY handling code.  Part of
14235         the fix for bug #79326.
14236
14237 2006-09-13  Miguel de Icaza  <miguel@novell.com>
14238
14239         * X11DesktopColors.cs: Start the droppage of debugging messages.
14240
14241         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
14242
14243 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
14244
14245         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
14246
14247 2006-09-12  Chris Toshok  <toshok@ximian.com>
14248
14249         * DataGrid.cs (get_ListManager): if the list_manager is null, try
14250         to create it using SetDataSource.  Fixes bug #79151.
14251
14252 2006-09-11  Chris Toshok  <toshok@ximian.com>
14253
14254         * XEventQueue.cs: add a DispatchIdle property.
14255
14256         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
14257         either the queue is null, or the queue has DispatchIdle set to
14258         true.
14259         (DoEvents): set queue.DispatchIdle to false around the
14260         peek/translate/dispatch message loop in this method.  This keeps
14261         Application.Doevents from emitting idle events.  Part of the fix
14262         for #78823.
14263
14264 2006-09-11  Chris Toshok  <toshok@ximian.com>
14265
14266         * DataGrid.cs (set_DataSource): make this work for both the
14267         winforms/datagrid test and ReportBuilder.  It seems as though when
14268         we've created a ListManager (or maybe it's if we have a
14269         BindingContext?), when we set the DataSource it clears the
14270         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
14271         #79333.
14272
14273 2006-09-11  Chris Toshok  <toshok@ximian.com>
14274
14275         * XplatUIX11.cs: deal with queue being null, which happens in all
14276         the Clipboard functions.  Fixes one of the two problems mentioned
14277         in #78612.
14278
14279 2006-09-11  Chris Toshok  <toshok@ximian.com>
14280
14281         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
14282         button on various spots (including outside the menu) works closer
14283         to MS, and doesn't crash.  Fixes #79343.
14284
14285 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
14286
14287         * ListView.cs: Do not initialize item_sorter in init. To match MS,
14288         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
14289         and the internal comparer is set. When a new ListViewItemSorter is set,
14290         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
14291         was specified. No further processing is necessary if SortOrder is set
14292         to it's current value. If Sorting is modified to None, and View is
14293         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
14294         (either custom or our internal ItemComparer) to null, on 1.0 profile
14295         only set item_sorter to null if its our internal IComparer. If Sorting
14296         is modified to Ascending or Descending, then use our internal IComparer
14297         if none is set, and if the current IComparer is our internal one then:
14298         on 2.0 profile always replace it with one for new Sorting, and on 1.0
14299         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
14300         Enum.IsDefined to verify whether a valid View value is specified in
14301         its setter. Automatically sort listview items when listview is
14302         created. In Sort, do nothing if ListView is not yet created, or if
14303         no item_sorter is set (no Sorting was set, Sorting was explicitly set
14304         to None or ListViewItemSorter was set to null). Added Sort overload
14305         taking a bool to indicate whether the ListView should be redrawn when
14306         items are sorted (we use this in ListViewItemCollection to avoid double
14307         redraws). Modified our internal IComparer to take the sort order into
14308         account. In Add and AddRange methods of ListViewItemCollection, also
14309         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
14310         view), but use overload with noredraw option to avoid double redraw.
14311         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
14312         true when View is Tile, and do the same when attempting to set View to
14313         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
14314         for selected/checked indices, as it involves overhead when sorting is
14315         done while these collections are not used all that often. Instead
14316         we'll build the indices on demand. Modified IList implementation of
14317         CheckedIndexCollection to use public methods if object is int.
14318         Modified CheckedListViewItemCollection to hide checked items if
14319         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
14320         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
14321         IList implementation in SelectedIndexCollection to use public methods
14322         if object is int. Modified SelectedListViewItemCollection to hide
14323         selected items if listview is not yet created.
14324         * ListViewItem.cs: CheckedIndices list no longer needs to be
14325         maintained separately (see ListView changes). Also clone font, fixes
14326         test failure.
14327
14328 2006-09-11  Mike Kestner  <mkestner@novell.com>
14329
14330         * ComboBox.cs: if we are updating the contents of the currently
14331         selected index, refresh the control or the textbox selection.
14332         [Fixes #79066]
14333
14334 2006-09-11  Mike Kestner  <mkestner@novell.com>
14335
14336         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
14337         the 'specified' logic has been moved there.  This seems like a bug 
14338         in Control.cs, since our current SetBoundsCore completely ignores 
14339         the specified parameter.  Peter's commit seems to indicate that is 
14340         the way the MS control implementation works.  [Fixes #79325]
14341
14342 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
14343
14344         * XplatUI.cs: Set default_class_name to be composed
14345         of current domain id. This allows MWF to be loaded in multiple
14346         domains on Win32.
14347
14348 2006-09-09  Miguel de Icaza  <miguel@novell.com>
14349
14350         * X11Keyboard.cs: If we are unable to obtain the input method, do
14351         not call CreateXic to create the input context.   Should fix
14352         #78944/79276.
14353
14354 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
14355
14356         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
14357           Simplified gnome support by adding more pinvokes to get the
14358           icon for a file or mime type.
14359
14360 2006-09-08  Jackson Harper  <jackson@ximian.com>
14361
14362         * MenuAPI.cs: Deslect popup context menu items before closing the
14363         window, so that you don't see the previously selected item
14364         selected when you reopen the menu.
14365         * TextControl.cs: Update the cursor position even if we don't have
14366         focus.  This fixes typing in things like the ComboBox.  I'm not
14367         totally sure we should always set the visibility if we don't have
14368         focus, but couldn't find any corner cases where the cursor showed
14369         up when it shouldn't.
14370
14371 2006-09-08  Chris Toshok  <toshok@ximian.com>
14372
14373         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
14374         our arrays are length 256.  & 0xff before indexing.  Fixes the
14375         crash in bug #78077.
14376         
14377 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14378
14379         * ThemeWin32Classic.cs: 
14380         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
14381         is true. Handle that check box too.
14382
14383 2006-09-07  Chris Toshok  <toshok@ximian.com>
14384
14385         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
14386         79244.
14387
14388 2006-09-07  Chris Toshok  <toshok@ximian.com>
14389
14390         * Control.cs: in set_BackColor only do the work if
14391         background_color != value.
14392
14393         * XplatUIX11.cs: move the clearing of invalid areas (both client
14394         and nc) to the same block of code where we set (nc_)expose_pending
14395         to false.  That is, move it from PaintEventEnd to PaintEventStart,
14396         so things that cause invalidates from within OnPaint will trigger
14397         another call to OnPaint.  Fixes bug #79262.
14398
14399 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
14400
14401         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
14402         * FileDialog.cs: Fix typo
14403
14404 2006-09-07  Jackson Harper  <jackson@ximian.com>
14405
14406         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
14407         for tab pages if they have any.
14408
14409 2006-09-06  Mike Kestner  <mkestner@novell.com>
14410
14411         * Splitter.cs: use the "current" rect when finishing drag handle
14412         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
14413
14414 2006-09-06  Mike Kestner  <mkestner@novell.com>
14415
14416         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
14417         support offset splitters. [Fixes #79298]
14418
14419 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
14420
14421         * Mime.cs: Fixed a bug that could override the global mime type
14422           result.
14423
14424 2006-09-05  Jackson Harper  <jackson@ximian.com>
14425
14426         * TabControl.cs: Better calculation method for setting the slider
14427         pos. Prevents crashes on really wide tabs.
14428         - Draw Image on tab pages if an image list is used.
14429
14430 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14431
14432         * MonthCalendar.cs: When Font changes, the Size should be
14433         updated to fit the new font's space requirements.
14434
14435 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
14436
14437         * ListBox.cs: If the items are cleared with Items.Clear set
14438           top_index to 0.
14439
14440 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14441
14442         * MonthCalendar.cs: Handle arrow keys as input keys. Also
14443         fire DateChanged event instead of DateSelected event when
14444         the date was changed by keyboard interaction.
14445
14446 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14447
14448         * DateTimePicker.cs: Handle DateChanged for the associated
14449         month_calendar control, and set month_calendar.Font from 
14450         OnFontChanged method, as well as resize the height of the
14451         control when needed. Make PreferredHeight proportional.
14452
14453 2006-09-01  Chris Toshok  <toshok@ximian.com>
14454
14455         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
14456         properties.
14457
14458         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
14459
14460 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
14461
14462         * FileDialog.cs: Set ClientSize instead of window size, to allow space
14463           for decorations (Fixes #79219)
14464
14465 2006-09-01  Mike Kestner  <mkestner@novell.com>
14466
14467         * ComboBox.cs: first stab at sorting plus some selection handling
14468         fixes to bring us more in line with MS behavior.  Also switches back
14469         to index based selection.  Alternative patches for index-based 
14470         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
14471         and latency@gmx.de on bug 78848.  I assume they were similar to this
14472         code I've had simmering in my tree forever.
14473         [Fixes #78848]
14474
14475 2006-09-01  Chris Toshok  <toshok@ximian.com>
14476
14477         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
14478         when setting list position guard against ending up with a -1 index
14479         (the other part of the fix for #78812).  Should probably make sure
14480         we don't need the analogous fix in the ItemDeleted case.
14481
14482         * DataGrid.cs:
14483         - in SetDataSource, work around the fact that the way
14484         OnBindingContextChanged is invoked will cause us to re-enter this
14485         method.  I'll remove the hack once I investigate
14486         OnBindingContextChanged.
14487
14488         - fix the logic in set_DataSource and set_DataMember (basically
14489         what to do if the other of the two is null.)
14490         
14491         - in OnListManagerItemChanged, we need to take into account the
14492         edit row when deciding whether or not to call RecreateDataGridRows
14493         (part of the fix for #78812).
14494
14495 2006-09-01  Jackson Harper  <jackson@ximian.com>
14496
14497         * Splitter.cs: Don't do anything if there is no control to affect
14498         (prevents us from crashing in weird tet cases).
14499         * TreeView.cs: Bounding box for the mouse movement reverting
14500         focus/selection back to previously selected node.  This matches
14501         MS, and makes the tree a lot more useable.
14502         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
14503         use clipping so they are not drawn.  This fixes when the control
14504         is set to have a transparent background, or if it was over an
14505         image.
14506
14507 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
14508
14509         * MimeIcon.cs: Improved handling for reading default icons when
14510           using gnome (2.16 made it necessary). Check and read svg icons
14511           first, then 48x48 and then 32x32 icons.
14512
14513 2006-08-31  Chris Toshok  <toshok@ximian.com>
14514
14515         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
14516         visible.
14517
14518         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
14519         ProcessKeyPreview.  Fixes part of #77806.
14520
14521         * DataGrid.cs: big patch.
14522
14523         - revert the queueing up of DataSource/DataMember if inside
14524         BeginInit/EndInit calls.  That's not the way the datagrid achieves
14525         its delayed databinding.  Instead, call SetDataSource in
14526         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
14527         #78811.
14528
14529         - Also, it wasn't mentioned in #78811, but the test case exhibits
14530         behavior that was lacking in our datagrid implementation - Columns
14531         that have mapping names that don't exist in the datasource's
14532         properties aren't shown.  Yuck.  To fix this I added the bound
14533         field to the column style, and basically any calculation to figure
14534         out anything about columns uses a loop to find the bound columns.
14535         still need to investigate if I can cache an array of the bound
14536         columns or if the indices must be the same.
14537
14538         - When setting CurrentCell, we no longer abort if the cell being
14539         edited was in the add row.  This fixes the other part of #77806.
14540
14541         - The new code also fixes #78807.
14542         
14543         * ThemeWin32Classic.cs: perpetrate the same disgusting
14544         column.bound field hack, and only render bound fields.
14545
14546 2006-08-31  Chris Toshok  <toshok@ximian.com>
14547
14548         * DataGridColumnStyle.cs: add bound field.  this field is true if
14549         the datasource has a property corresponding to the mapping name.
14550
14551         * DataGridTableStyle.cs: set the bound field on the column styles
14552         depending on whether or not we have a column for that property.
14553
14554 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
14555
14556         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
14557           splitter control (fixes #79228)
14558
14559 2006-08-31  Chris Toshok  <toshok@ximian.com>
14560
14561         * DataGridColumnStyle.cs: we need to delay the assignment of
14562         property descriptor until the last possible moment due to the lazy
14563         databinding stuff in the datagrid.  Also, fix the exceptions
14564         thrown by CheckValidDataSource to match MS.
14565
14566 2006-08-31  Jackson Harper  <jackson@ximian.com>
14567
14568         * Form.cs: When activated select the active control, if there is
14569         no active control, we select the first control.
14570         * XplatUIX11.cs: If there is no focus control when we get a
14571         FocusIn event, find the toplevel form and activate it.  This
14572         occurs when you popup a window, it becomes the focus window, then
14573         you close that window, giving focus back to the main window.
14574
14575 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14576
14577         * MonthCalendar.cs: 
14578         * ThemeWin32Classic.cs: Cache Font in bold style, as well
14579         as StringFormat with Center alignments in MonthCalendar,
14580         instead of creating new ones when drawing the control. 
14581         Also, draw the month name in bold style.
14582
14583 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14584
14585         * Control.cs:
14586           - PerformLayout(): It would seem MS performs the fill even if the 
14587             control is not visible (part of #79218 fix)
14588           - ResetBackColor(): Use the setter to reset the color, to allow
14589             overriders to catch the change.
14590         * Form.cs:
14591           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
14592           - CreateHandle(): dito (part of $79218 fix)
14593           - Don't set an icon if we have a dialog
14594         * ScrollableControl.cs:
14595           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
14596           - ScrollIntoView(): No need to scroll if control is already visible
14597             (resolves fixme and fixes #79218)
14598
14599 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14600
14601         * MonthCalendar.cs: Change proportions in SingleMonthSize
14602         to match the aspect of the original control.
14603
14604 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
14605
14606         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
14607           get updated when they get maximized.
14608
14609 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14610
14611         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
14612
14613 2006-08-29  Chris Toshok  <toshok@ximian.com>
14614
14615         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
14616
14617 2006-08-29  Jackson Harper  <jackson@ximian.com>
14618
14619         * TreeView.cs: Need to track selected node and highlighted node,
14620         they aren't always the same thing, when the mouse is down on a
14621         node it is hilighted, but not selected yet.
14622         - Do the HideSelection stuff right
14623         - Need to focus on rbutton mouse down. And redraw selection when
14624         right click is mouse upped.
14625
14626 2006-08-29  Mike Kestner  <mkestner@novell.com>
14627
14628         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
14629         when SubItems.Count < Columns.Count.  [Fixes #79167]
14630
14631 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
14632
14633         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
14634
14635 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
14636
14637         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
14638           from X. Only send based on ConfigureNotify if we don't have the
14639           correct location in hwnd (if the window manager moved us)
14640
14641 2006-08-28  Mike Kestner  <mkestner@novell.com>
14642
14643         * ListView.cs: remove a TODO. 
14644         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
14645         [Fixes ListView part of #79166]
14646
14647 2006-08-28  Mike Kestner  <mkestner@novell.com>
14648
14649         * ListView.cs: move wheel handler to parent since it is focused
14650         instead of the item_control now.  [Fixes #79177]
14651
14652 2006-08-28  Mike Kestner  <mkestner@novell.com>
14653
14654         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
14655         when the control is focused. [Fixes #79171]
14656
14657 2006-08-28  Mike Kestner  <mkestner@novell.com>
14658
14659         * ListView.cs: size the item and header controls for empty and
14660         unscrollable views.
14661         * ThemeWin32Classic.cs: draw disabled backgrounds.
14662         [Fixes #79187]
14663
14664 2006-08-28  Chris Toshok  <toshok@ximian.com>
14665
14666         * Form.cs: remove unused "active_form" static field.
14667
14668         * Hwnd.cs: lock around accesses to static windows collection.
14669
14670         * Application.cs: lock threads in Exit ().
14671
14672 2006-08-28  Chris Toshok  <toshok@ximian.com>
14673
14674         * NativeWindow.cs: lock around accesses to window_collection.
14675         
14676 2006-08-28  Chris Toshok  <toshok@ximian.com>
14677
14678         * Control.cs: err, fix this the right way, by locking on controls
14679         when using it.  not by making it synchronized.
14680
14681 2006-08-28  Chris Toshok  <toshok@ximian.com>
14682
14683         * Control.cs: make the static "controls" field synchronized, as it
14684         gets updated from multiple threads.
14685
14686 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14687
14688         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
14689           Prevent other threads from exiting when calling thread sets quit state.
14690         * XEventQueue.cs: Added PostQuitState property
14691
14692 2006-08-27  Chris Toshok  <toshok@ximian.com>
14693
14694         * AsyncMethodData.cs: add a slot for the window handle.
14695
14696         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
14697         window (the destination control's window, not the foster window).
14698
14699         * Control.cs (BeginInvokeInternal): store the window's handle in
14700         the AsyncMethodData.
14701         
14702
14703 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14704
14705         * XplatUIX11.cs:
14706           - PostQuitMessage: Removed resetting S.D display handle, we might have
14707             another loop started after calling PostQuitMessage (Fixes #79119)
14708           - Created destructor to reset S.D handle
14709
14710 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
14711
14712         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
14713
14714 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14715
14716         * TextControl.cs (Insert): Update the caret position even if we don't
14717           have a handle yet, just don't call the driver in that case.
14718         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
14719           to the end of the new selection text (Fixes #79184)
14720
14721 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14722
14723         * Form.cs (Activate): Only activate if the handle is created)
14724         * Control.c:
14725           - Mark window as invisible when it's disposed
14726           - Check if window handle is created when setting window visible, 
14727             instead of relying just on the is_created variable
14728           - Check if object is disposed when creating the control (Fixes #79155)
14729
14730 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14731
14732         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
14733           when allowing layout again. Otherwise we re-generate the anchoring 
14734           distance to the border again and actually alter what the user wanted
14735           This is ugly, it'd be better if we used DisplayRectangle instead of
14736           ClientRectangle for Control.UpdateDistances, but that causes us to
14737           have other problems (initial anchoring positons would be wrong)
14738           (Fixes #78835)
14739
14740 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14741
14742         * Control.cs:
14743           - The size and location setters shouldn't go directly to 
14744             SetBoundsCore, but to SetBounds, which triggers layout on the
14745             parent, then calls SetBoundsCore. (Related to fix for #78835)
14746           - SetBounds: Moved actual location update code into this function
14747             from SetBoundsCore, to match MS. Added call to PerformLayout if
14748             we have a parent (to trigger resizing of anchored parents if the 
14749             child size has changed (see testcase for #78835) 
14750         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
14751           new control code
14752         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
14753
14754 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14755
14756         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
14757           System.Drawing when a toplevel window gets closed; there might
14758           be other toplevel windows belonging to the same app (Fixes #78052)
14759
14760 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
14761
14762         * FileDialog.cs: After reading FileDialog settings from mwf_config
14763           use Desktop prefix only if a real folder doesn't exist anymore.
14764         * FontDialog.cs: Added char sets.
14765           It is now possible to select the font, size or style with the
14766           textboxes.
14767
14768 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
14769
14770         * PrintPreviewDialog.cs: Use assembly name constants.
14771
14772 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14773
14774         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
14775           scrollbar from whacking it's buttons)
14776
14777 2006-08-24  Chris Toshok  <toshok@ximian.com>
14778
14779         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
14780         in this patch (aggregating setting Left/Top/Width/Height to
14781         setting Bounds on the scrollbars), but the crux of the fix is in
14782         Recalculate, where we scroll by the remaining scroll_position if
14783         we're hiding a scrollbar.  The 2*$5 reward in the comment is
14784         serious.
14785
14786 2006-08-24  Jackson Harper  <jackson@ximian.com>
14787
14788         * MdiClient.cs:
14789         * MdiWindowManager.cs: If the form is made a non-mdi window we
14790         need to remove the form closed event so that closing forms works
14791         correctly.
14792
14793 2006-08-24  Jackson Harper  <jackson@ximian.com>
14794
14795         * Control.cs: Make IsRecreating internal so that the driver can
14796         check it
14797         - Temporarily remove the Hide when controls are removed, its
14798         making a whole bunch of things not work because visibility isn't
14799         getting reset elsewhere correctly
14800         * Form.cs: Need to do a full handle recreation when the mdi parent
14801         is set.
14802         * XplatUIX11.cs: If we are recreating handles don't dispose the
14803         HWNDs.  What was happening is the handles were being recreated in
14804         SendWMDestroyMessages, but then flow continued on in that method
14805         and destroyed the new handles.
14806
14807 2006-08-23  Jackson Harper  <jackson@ximian.com>
14808
14809         * Form.cs: MdiClient is always at the back of the bus
14810         * Control.cs: When the order of items in the collection is changed
14811         we need to reset the all_controls array
14812         - do the same sorta setup thats done when adding a control when a
14813         control is set on the collection.
14814
14815 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14816
14817         * TextBoxBase.cs (get_Text): Return an empty array if our document
14818           is empty (fixes #79052)
14819
14820 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14821
14822         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
14823           on WM_SYSCHAR messages (fixes #79053)
14824
14825 2006-08-23  Chris Toshok  <toshok@ximian.com>
14826
14827         * DataGrid.cs: fix flickering when scrolling vertically.
14828
14829 2006-08-23  Chris Toshok  <toshok@ximian.com>
14830
14831         * DataGrid.cs (EndEdit): only invalidate the row header when we
14832         need to.
14833
14834 2006-08-23  Chris Toshok  <toshok@ximian.com>
14835
14836         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
14837         methods.  fixes the flicker when scrolling around.
14838
14839 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14840
14841         * FileDialog.cs: Making sure the control is created before we get a 
14842           chance to use it with BeginInvoke (Fixes #79096)
14843
14844 2006-08-23  Chris Toshok  <toshok@ximian.com>
14845
14846         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
14847         width to use when painting the rows.
14848
14849 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14850
14851         * TextBoxBase.cs:
14852           - Throw ArgumentException if a negative value is passed to SelectionLength
14853           - Update the selection end if start is moved. end needs to be always
14854             after start. (Fixes #79095)
14855           - Track selection length; MS keeps the selection length even if start
14856             is changed; reset on all other operations affection selection
14857
14858 2006-08-22  Jackson Harper  <jackson@ximian.com>
14859
14860         * TreeView.cs: Make sure both scrollbars get displayed and sized
14861         correctly when the other bar is visible.
14862         - Use the original clip rectangle for checking if the area between
14863         the two scrollbars is visible, not the viewport adjusted clipping
14864         rectangle.
14865
14866 2006-08-22  Jackson Harper  <jackson@ximian.com>
14867
14868         * Binding.cs: We don't use IsBinding because it requires the
14869         control to be created, which really shouldn't be necessary just to
14870         set a property on the control.
14871
14872 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14873
14874         * ComboBox.cs: Some CB.ObjectCollection methods must throw
14875         ArgumentNullReferenceException when the argument is null.
14876
14877 2006-08-21  Jackson Harper  <jackson@ximian.com>
14878
14879         * Timer.cs: Track the thread that the timer is started in (NOT
14880         CREATED), this way messages for it will only be triggered on its
14881         queue.
14882         * XEventQueue.cs: Track the timers here, this makes timers per
14883         thread, like MS.
14884         * XplatUIX11.cs: The timers are moved to the XEventQueue.
14885
14886 2006-08-19  Chris Toshok  <toshok@ximian.com>
14887
14888         * XplatUIX11.cs: after further communication with pdb, we get the
14889         best of both worlds.  SetZOrder working for un-Mapped windows, and
14890         no X errors for un-mapped windows.
14891
14892 2006-08-19  Chris Toshok  <toshok@ximian.com>
14893
14894         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
14895         as it was causing pdn toolbars to not have the correct stacking.
14896
14897 2006-08-18  Mike Kestner  <mkestner@novell.com> 
14898
14899         * ListView.cs : guard against negative ClientArea.Width in scrollbar
14900         calculation.  Not sure why control should ever be setting a negative
14901         width though.  Fixes #78931.
14902
14903 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14904
14905         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
14906         null items in ObjectCollection class.
14907         * ListBox.cs.: Likewise.
14908
14909 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
14910
14911         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
14912           as the base method in ThemeWin32Classic should work fine.
14913           Fixed bug #78607.
14914
14915 2006-08-18  Jackson Harper  <jackson@ximian.com>
14916
14917         * Binding.cs: When validating if the value entered doesn't convert
14918         properly reset to the old value.
14919         * RadioButton.cs: Don't fire click when we get focus.
14920
14921 2006-08-18  Jackson Harper  <jackson@ximian.com>
14922
14923         * FileDialog.cs: Paint the selection on the directory combobox the
14924         same way as on MS. 
14925
14926 2006-08-17  Jackson Harper  <jackson@ximian.com>
14927
14928         * ErrorProvider.cs: Don't allow the error control to be selected.
14929         * Control.cs: Don't send the SetFocus messages, the control
14930         activation will do this, and if we do it blindly here validation
14931         does not work.
14932
14933 2006-08-17  Jackson Harper  <jackson@ximian.com>
14934
14935         * Control.cs:
14936         * ContainerControl.cs: Make validation events fire in the correct
14937         order.  TODO: For some reason the first validation event is not
14938         getting fired.
14939
14940 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14941
14942         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
14943
14944 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14945
14946         * ComboBox.cs : implement scroll wheel support for popped-down
14947         state. Fixes #78945. 
14948
14949 2006-08-17  Jackson Harper  <jackson@ximian.com>
14950
14951         * TreeView.cs: Specify treeview actions (old patch that didn't get
14952         committed for some reason).
14953         - Don't let the mouse wheel scroll us too far.  Just want to make
14954         the bottom node visible, not scroll it all the ways to the top.
14955
14956 2006-08-17  Jackson Harper  <jackson@ximian.com>
14957
14958         * XplatUIX11.cs: Mouse wheel events go to the focused window.
14959
14960 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14961
14962         * ComboBox.cs : don't do mouseover selection in simple mode.
14963
14964 2006-08-16  Jackson Harper  <jackson@ximian.com>
14965
14966         * Form.cs: Fire the closing events for all the mdi child windows
14967         when a window is closed.  If the cancel args are set to true, the
14968         main window still gets the event fired, but it doesn't not close.
14969         * MdiWindowManager.cs: Do this closing cleanup in a Closed
14970         handler, instead of when the button is clicked, so cancelling the
14971         close works correctly.
14972         * ComboBox.cs: Send the mouse down to the scrollbar.
14973
14974 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14975
14976         * ListBox.cs: When passing 'null' to SelectedItem,
14977         set SelectedIndex to -1, to unselect items. This is the
14978         observed behaviour in .Net.
14979
14980 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
14981
14982         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
14983           MS flags saying there won't be any. (fixes #78800)
14984         * Control.cs (HandleClick): Made virtual
14985
14986 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
14987
14988         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
14989           cultures. Fixed bug #78399.
14990
14991 2006-08-16  Jackson Harper  <jackson@ximian.com>
14992
14993         * Form.cs: Use the MdiClients MdiChildren property to access
14994         MdiChildren instead of creating the array from the child controls.
14995         * MdiClient.cs: Maintain a separate array of the mdi children, so
14996         that insertion order is maintained when the Z-order is changed.
14997
14998 2006-08-16  Mike Kestner  <mkestner@novell.com> 
14999
15000         * ListView.cs : add an ItemComparer and default to it for sorting.
15001         Fixes #79076, but sorting needs a complete overhaul to be compat with
15002         MS.
15003
15004 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
15005
15006         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
15007
15008 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15009
15010         * Hwnd.cs (Mapped): Properly traverse the tree
15011
15012 2006-08-15  Chris Toshok  <toshok@ximian.com>
15013
15014         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
15015         pass manager.Current.GetType() to ParseData.  It has to be the
15016         property type.  So, hold off doing the ParseData until we're in
15017         SetPropertyValue where we know the type.  This fixes the crash in
15018         #78821 but the textbox is still empty.
15019
15020 2006-08-15  Chris Toshok  <toshok@ximian.com>
15021
15022         * DataGrid.cs:
15023         - when we're scrolling, only call Edit() again if the
15024         current cell is still unobscured. Fixes bug #78927.
15025         - when handling mousedown on a cell, ensure the cell is visible
15026         before calling Edit.
15027         - remove the properties from DataGridRow, and remove the
15028         DataGridParentRow class altogether.
15029         
15030
15031 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15032
15033         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
15034           fire OnTextChanged by ourselves. There's no point calling base,
15035           we don't set the base value anywhere else. Fixes #78773.
15036
15037 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15038
15039         * ListBox.cs: Call CollectionChanged when modifying
15040         an item from Items indexer, to update the actual items
15041         in the list box.
15042
15043 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15044
15045         * PrintDialog.cs: Small fixes for focus and a pair of checks,
15046         to match .Net behaviour.
15047
15048 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15049
15050         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
15051
15052 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
15053
15054         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
15055
15056 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15057
15058         * MessageBox.cs: Prevent potential NRE exception.
15059         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
15060
15061 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
15062
15063         * MessageBox.cs: Calculate the owner of a messagebox, also make
15064           it topmost. Fixes #78753
15065
15066 2006-08-14  Chris Toshok  <toshok@ximian.com>
15067
15068         * XplatUIX11.cs: A couple of fixes so that metacity will let us
15069         programmatically move windows.  first, set the PPosition hint as
15070         well as the USPosition hint.  Second include some code from pdb
15071         that sets the window type to NORMAL when we set the transient for
15072         hint.  This is because, in the absence of a window type, metacity
15073         thinks any window with TransientFor set is a dialog, and refuses
15074         to let us move it programmatically.  fascists.
15075
15076 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
15077
15078         * XplatUIX11.cs: When setting normal hints, take into consideration
15079           an different hints previously set so we don't delete them (fixes #78866)
15080
15081 2006-08-12  Chris Toshok  <toshok@ximian.com>
15082
15083         * ToolBarButton.cs: make Layout return a boolean, if something to
15084         do with the button's layout changed.
15085
15086         * ToolBar.cs:
15087         - add another parameter to Redraw, @force, which all existing
15088           calls set to true.
15089         - make the Layout function return a boolean which is true if the
15090           layout has actually changed.  Redraw now uses this (and @force)
15091           to determine when to invalidate.  At present the only place
15092           where @force can be false is the call from OnResize, when
15093           background_image == null.  So, resizing a toolbar when the
15094           layout doesn't change results in no drawing.
15095
15096 2006-08-12  Chris Toshok  <toshok@ximian.com>
15097
15098         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
15099         the VScrollBar and HScrollbar reversed.  oops.
15100
15101         * DataGrid.cs: fix the logic that assigns sizes to the implicit
15102         scrollbars.  we were assigning them twice (once in
15103         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
15104         therefore causing two scrollbar resizes (and redraws?) to happen
15105         per grid resize.
15106
15107 2006-08-12  Chris Toshok  <toshok@ximian.com>
15108
15109         * ToolBarButton.cs: redraw the entire button if the theme tells us
15110         to.
15111
15112         * Theme.cs: add ToolBarInvalidateEntireButton.
15113
15114         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
15115         buttons, just the border.
15116
15117         * ThemeNice.cs: redraw the entire toolbar button since we need to
15118         draw the highlight image.
15119
15120         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
15121         we need to redraw the entire button (not just the border).
15122
15123 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
15124
15125         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
15126           for vertical bars. Fixes the mismatches shown by #78513
15127
15128 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
15129
15130         * FileDialog.cs: If a saved/remembered path doesn't exist
15131           anymore, fall back to "Desktop".
15132
15133 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
15134
15135         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
15136           parent. It's apparently legal to not have one
15137         * XplatUIX11.cs:
15138           - SetZOrder: Don't try to set Z-Order on an unmapped window
15139           - CreateWindow: 0,0 are legal coordinates for a window. don't move
15140             it unless the coordinates are negative
15141
15142 2006-08-10  Mike Kestner  <mkestner@novell.com>
15143
15144         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
15145         when setting to null per msdn docs.  Fixes #78854.
15146
15147 2006-08-10  Chris Toshok  <toshok@ximian.com>
15148
15149         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
15150         flickering by setting a clip rectangle on the Graphics when we
15151         need to redraw just a particular menuitem.  Also, rename "OnClick"
15152         to "OnMouseDown" to reflect what it actually is.
15153         
15154         * Form.cs: track the OnMouseDown change.
15155
15156 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
15157
15158         * CommonDialog.cs: Properly inherit the CreateParams from the form
15159           and only change what we need. Fixes #78865
15160
15161 2006-08-10  Chris Toshok  <toshok@ximian.com>
15162
15163         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
15164         flickering in flat mode (and most of the flickering in general) by
15165         only invalidating the button border (and not the entire rectangle)
15166         when the state changes.  A couple of cases still flicker:
15167         ToggleButtons, and the dropdown arrow case when the user mouse
15168         ups.
15169
15170 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
15171
15172         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
15173           for german keyboards. Numlock state shouldn't affect the behaviour
15174           of the Del key. Fixes bug #78291.
15175
15176 2006-08-10  Chris Toshok  <toshok@ximian.com>
15177
15178         * ListControl.cs: remove the items.Clear line from BindDataItems,
15179         as this is the first thing done by both subclasses in their
15180         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
15181         passed -1, refresh the list.  This gets databinding working when
15182         the datasource is set on the list before the datasource is
15183         populated (as in wf-apps/ReportBuilder.)
15184
15185         * ComboBox.cs: remove the argument to BindDataItems.  This call
15186         should really go away, and be initiated by the ListControl code.
15187
15188         * ListBox.cs: same.
15189
15190 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
15191
15192         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
15193           if no data is in the document when the control is displayed
15194
15195 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
15196
15197         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
15198           yes (fixes #78806)
15199         * TextControl.cs: 
15200           - PositionCaret: Allow positioning of caret but don't call methods 
15201             requiring a handle if the window isn't created yet
15202           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
15203           - owner_HandleCreated: Don't position the caret, just update it's 
15204             location. User might have already set a different position
15205
15206 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
15207
15208         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
15209           windows. Screws up the returned coordinates for child windows. 
15210           Fixes #78825. I'm hoping this doesn't break something, since the
15211           code was explicitly put in 8 months ago, but no bug was attached.
15212           Menus still seem to work properly.
15213
15214 2006-08-08  Chris Toshok  <toshok@ximian.com>
15215
15216         * DataGrid.cs: make BeginInit/EndInit actually do what they're
15217         supposed to do - delay data binding until the EndInit call.  Also,
15218         make the table style collection's CollectionChangeAction.Refresh
15219         work properly.
15220
15221         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
15222         (with action = Refresh) when a consituent table's MappingName is
15223         changed.
15224
15225 2006-08-08  Chris Toshok  <toshok@ximian.com>
15226
15227         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
15228         Invalidate, since changing the text can change the size of the all
15229         toolbar buttons.
15230
15231 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
15232
15233         * Form.cs (AddOwnedForm): Still need to add the form to our listif
15234           we don't have it yet
15235
15236 2006-08-08  Chris Toshok  <toshok@ximian.com>
15237
15238         * PrintControllerWithStatusDialog.cs: don't .Close() the status
15239         dialog, as this causes X errors later on, since we actually
15240         destroy the window.  Instead, .Hide() it.
15241
15242 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
15243
15244         * ComboBox.cs: Added focus reflection for popup window
15245         * XplatUIX11.cs: 
15246           - Removed transient setting for non-app windows for now, not sure it
15247             was needed
15248           - Fixed logic checking if we have captions when deciding 
15249             override_redirect, WS_CAPTION is two bits and a 0 check was not
15250             sufficient
15251           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
15252             complicated
15253         * Form.cs: 
15254           - AddOwnedForm: Don't just add the form to the list, call the property
15255             to ensure the driver is informed about the ownership as well
15256           - CreateHandle: Set the TopMost status in the driver if we have an owner
15257         * XplatUI.cs: Fixed debug statement
15258
15259 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
15260         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
15261           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
15262           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
15263           TrackBarRenderer.cs: Make constructor private.
15264         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
15265         * ProfessionalColorTable.cs: Make properties virtual.
15266
15267 2006-08-06  Duncan Mak  <duncan@novell.com>
15268
15269         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
15270         is not changing.
15271
15272 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15273         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
15274           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
15275           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
15276           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
15277           Initial import of new 2.0 classes.
15278
15279 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15280         * Application.cs: Add 2.0 VisualStyles properties.
15281
15282 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15283         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15284           XplatUIX11.cs: Create property to allow access to existing private
15285           variable "themes_enabled"
15286
15287 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15288
15289         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
15290         file size, as otherwise our class libraries fail using windows. Fixes
15291         bug #78759.
15292
15293 2006-08-04  Jackson Harper  <jackson@ximian.com>
15294
15295         * Form.cs:
15296         * XplatUIX11.cs: Move the toolwindow window manager creation into
15297         the X11 driver, this way on win32 we can let windows create/handle
15298         the toolwindows.
15299
15300 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15301
15302         * PrintDialog.cs: Remove some redundant checks, add some others,
15303         clean some code, and move the focus to the text boxes when the
15304         values are incorrect.
15305
15306 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
15307
15308         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
15309
15310 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
15311
15312         * NumericUpDown.cs: Setting the Minimum and Maximum is now
15313           handled correctly. Fixes bug #79001.
15314
15315 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15316
15317         * PrintDialog.cs: The "Copies" numeric up down must have
15318         set the Minimum property to 1; only if the value is bigger
15319         than 1, activate "Collate" check box. This is the behaviour of .Net.
15320         Also modify the Document elements only if it is not null.
15321
15322 2006-08-03  Jackson Harper  <jackson@ximian.com>
15323
15324         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
15325         length. (We have a larger array then actual node count).
15326                 
15327 2006-08-03  Jackson Harper  <jackson@ximian.com>
15328
15329         * ComboBox.cs: Don't show selection by default.
15330         - The SelectAll isn't needed here, since the focus code should do
15331         that
15332         - DDL style lists to manual selection drawing, so when they
15333         get/lose focus they have to invalidate.
15334
15335 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
15336
15337         * TextBoxBase.cs: Don't always show all selections by default.
15338
15339 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
15340         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
15341           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
15342           Fixed various typos.
15343
15344 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
15345
15346         * Control.cs: Removing the controls in a ControlCollection with
15347           Clear now hides the controls as expected. Fixes bug #78804. 
15348
15349 2006-08-03  Jackson Harper  <jackson@ximian.com>
15350
15351         * Control.cs: Revert previous focus patch, it breaks reflector.
15352
15353 2006-08-03  Jackson Harper  <jackson@ximian.com>
15354
15355         * ComboBox.cs: Cleanup selection and focus with the combobox.
15356         This also eliminates some duplicated keyboard code, since now
15357         everything is handled by the main class.
15358         - Make list selection work on mouse up instead of down, to match
15359         MS.
15360
15361 2006-08-02  Jackson Harper  <jackson@ximian.com>
15362
15363         * Control.cs: Setting focus needs to go through the whole
15364         selection mechanism.
15365
15366 2006-08-02  Chris Toshok  <toshok@ximian.com>
15367
15368         * PrintPreviewDialog.cs: change MinimumSize to use
15369         base.MinimumSize so it works.
15370
15371 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
15372
15373         * TextControl.cs:
15374           - UpdateCaret: Added sanity check in case caret isn't defined yet
15375           - Line.Delete: Now updating selection and caret markers if we're
15376             transfering a node (Properly fixes #78323)
15377           - SetSelectionEnd: Added sanity check
15378         * TextBoxBase.cs: Removed broken attempt to fix #78323
15379
15380 2006-08-01  Chris Toshok  <toshok@ximian.com>
15381
15382         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
15383         Close() call is handled in Form, not here.
15384
15385 2006-08-01  Chris Toshok  <toshok@ximian.com>
15386
15387         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
15388         layout/rendering.
15389
15390         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
15391         for sizes < 100% zoom.  The code now aggressively attempts to keep
15392         from calling document.Print (), and tries not to use the scaling
15393         g.DrawImage whenever possible (it still does if you scale to >
15394         100%, since usually that involves huge images).
15395
15396         * PrintPreviewControl.cs: hook up the close button.
15397
15398 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
15399         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
15400           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
15401           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
15402           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
15403           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
15404           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
15405           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
15406           Removed [Serializable] for 2.0 Event Handlers.
15407
15408 2006-07-31  Jackson Harper  <jackson@ximian.com>
15409
15410         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
15411         * TextControl.cs: Uncomment out the body of this method.
15412
15413 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
15414
15415         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
15416           standard cursors.
15417
15418 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15419
15420         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
15421           that embed TextBox and need selections visible even if textbox is not
15422           focused to enforce that behaviour.
15423         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
15424           selection drawing
15425
15426 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15427
15428         * TextControl.cs:
15429           - Added new SetSelectionStart/SetSelectionEnd overloads
15430           - Fixed viewport width assignment to be accurate
15431           - Adjusted alignment line shift calculations to allow cursor on right
15432             aligned lines to be always visible at the right border (like MS)
15433         * TextBoxBase.cs:
15434           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
15435           - TextBoxBase_SizeChanged: recalculating canvas on size changes
15436           - CalculateScrollBars: Use ViewPort size instead of window size, to
15437             properly consider space occupied by the border and scrollbars 
15438             (Fixes #78661)
15439           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
15440             calculations; no longer leaves artifacts
15441           - CaretMoved: Adjusted window scrolling to match MS and fixed several
15442             calculation bugs (Still missing right/center align calculations)
15443
15444 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
15445
15446         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
15447           use of both scroll rect and clip rect, as they do the same.
15448
15449 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15450
15451         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
15452           in the event handler (fixes #78912)
15453
15454 2006-07-31  Chris Toshok  <toshok@ximian.com>
15455
15456         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
15457         grid.ListManager.Count, since grid.ListManager might be null.
15458         This of course begs the question "why are we drawing rows for a
15459         grid with no list manager (and therefor no rows)?"  Fixes the
15460         crash in bug #78929.
15461
15462 2006-07-31  Chris Toshok  <toshok@ximian.com>
15463
15464         * RelatedPropertyManager.cs: Don't always chain up to the parent
15465         ctor.  instead, call SetDataSource if the parent's position is !=
15466         -1.  Fixes the crash in #78822.
15467
15468 2006-07-31  Chris Toshok  <toshok@ximian.com>
15469
15470         * DataGrid.cs (get_ListManager): use field instead of property
15471         accessors for datasource and datamember.
15472         (RowsCount): make internal again.
15473         (OnMouseDown): end edits before resizing columns/rows.
15474         (OnMouseUp): restart edits after resizing columns/rows.
15475
15476 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
15477
15478         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
15479           This fixes the situation where the last set cursor is displayed
15480           whenever the mouse is over scrollbars.
15481
15482 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15483
15484         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
15485         Document properties, as well as initial values.
15486
15487 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
15488
15489         * XplatUIWin32.cs (SetBorderStyle): Setting both border
15490           and ClientEdge results in a 3-pixel border, which is
15491           wrong.
15492
15493 2006-07-28  Jackson Harper  <jackson@ximian.com>
15494
15495         * TreeNodeCollection.cs: Fix the clear method.
15496         - Fix the Shrink also
15497
15498 2006-07-27  Jackson Harper  <jackson@ximian.com>
15499
15500         * TreeView.cs: Make sure the visible order is computed when we
15501         attempt to size the scrollbars (for trees that mess with the
15502         scrolling when they shouldn't.
15503         - Make sure to give the scrollbars valid values.
15504
15505 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15506
15507         * XplatUIX11.cs: Move motion compression code to where it
15508           has less performance impact
15509
15510 2006-07-26  Jackson Harper  <jackson@ximian.com>
15511
15512         * UpDownBase.cs: When the control is selected make the child
15513         controls non selectable, so that a click on them won't do a
15514         focus/unfocus cycle.
15515         - Don't give focus to the text box when the spinner is selected.
15516         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
15517
15518 2006-07-26  Chris Toshok  <toshok@ximian.com>
15519
15520         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
15521         satisfied with this solution.  If the bitmaps are small, we should
15522         just cache them in the PrintPreviewDialog and draw them here.
15523         Also, the layout is broken for the 2-up and 3-up cases.
15524
15525         * Theme.cs: add PrintPReviewControlPaint.
15526
15527         * PrintPreviewDialog.cs: first pass implementation.
15528
15529         * PrintPreviewControl.cs: first pass implementation.  No
15530         scrollbars yet.
15531
15532         * PrintDialog.cs: only validate fields if that particular portion
15533         of the UI is enabled.  Also, set the document's controller to a
15534         PrintControllerWithStatusDialog wrapping the document's print
15535         controller.
15536
15537         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
15538         bring up a SaveFileDialog (i hope we don't want to match the
15539         behavior of the crappy windows file entry) and set the
15540         PrinterSettings.PrintFileName accordingly.
15541
15542 2006-07-26  Jackson Harper  <jackson@ximian.com>
15543
15544         * ContainerControl.cs: Add a field that disables auto selecting
15545         the next control in a container when the container is activated.
15546         * UpDownBase.cs: Don't select the text box when the up down is
15547         selected.
15548
15549 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15550
15551         * XEventQueue.cs: Added methods for peeking (used for compression
15552           of successive events)
15553         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
15554           mouse move events (fixes #78732)
15555
15556 2006-07-25  Jackson Harper  <jackson@ximian.com>
15557
15558         * UpDownBase.cs: Use an internal class for the textbox so that we
15559         can control focus.  the updown control should always have focus,
15560         if either the text area or the buttons are clicked.
15561         - Send the key messages to the textbox, since it never actually
15562         has focus
15563         - Activate and decativate the textbox caret.
15564
15565 2006-07-24  Jackson Harper  <jackson@ximian.com>
15566
15567         * Control.cs: Use the directed select when selecting a control,
15568         this way the container controls override will get called and the
15569         whole ActiveControl chain will get triggered.  TODO: probably need
15570         to make sure this gets done everywhere instead of the old
15571         Select(Control).
15572         * ContainerControl.cs: Implement the directed Select method to
15573         find and activate the correct child control.    
15574         
15575 2006-07-22  Mike Kestner  <mkestner@novell.com>
15576
15577         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
15578         menu handling code so that clicks without a grab work too.
15579         [Fixes #78914]
15580
15581 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
15582
15583         * FileDialog.cs: Enable the BackButton when dirstack has one element.
15584           Added some small optimizations.
15585
15586 2006-07-21  Matt Hargett  <matt@use.net>
15587
15588         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
15589
15590 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
15591
15592         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
15593           tests pass and match MS in some strange border cases.
15594
15595 2006-07-21  Chris Toshok  <toshok@ximian.com>
15596
15597         * ThemeWin32Classic.cs: handle drawing of the relation links and
15598         parent row buttons.
15599
15600         * Theme.cs: change args to DataGridPaintParentRow.
15601
15602         * DataGrid.cs: Don't use controls for the relation links and
15603         parent buttons, so we have to handle all their interactions in
15604         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
15605         when we're navigating through child tables, so we can reinstate
15606         selection, expanded state, current cell, etc.
15607
15608 2006-07-20  Chris Toshok  <toshok@ximian.com>
15609
15610         * ToolBar.cs: When we redraw a button, for whatever reason,
15611         there's no reason to redraw the entire toolbar.  Also, don't call
15612         Control.Refresh from within Redraw, as it's much heavier than
15613         Invalidate (which is really what we want).
15614
15615 2006-07-20  Chris Toshok  <toshok@ximian.com>
15616
15617         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
15618         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
15619         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
15620         traces from within a debug IBindingList datasource
15621         (in mono/winforms/datagrid) for *days*, I've finally gotten things
15622         to work in a similar fashion.
15623
15624 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15625
15626         * ListBox.cs: Don't call Sort () when setting 
15627         the Sorted property to false (avoid an unnecessary sort).
15628
15629 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15630
15631         * ListControl.cs: DataSource should throw an ArgumentException
15632         instead of a normal exception when the argument is not of the 
15633         correct type.
15634
15635 2006-07-20  Mike Kestner  <mkestner@novell.com>
15636
15637         * Control.cs: add InternalPreProcessMessage to allow us to steal
15638         key events before MWF gets its paws on them.  Adapted from a
15639         suggestion by eno.
15640         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
15641         up/down/left/right navigation. Override the new internal control
15642         method to steal the events since they never make it to WndProc.
15643         * ToolBarButton.cs: don't worry about pushed when setting hilight
15644         since the drawing code prefers pushed to hilight. Invalidate on 
15645         Hilight changes. Fixes #78547 and #78525.
15646
15647 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15648
15649         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
15650           the canvas size. Fixes #78868
15651
15652 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
15653
15654         * Splitter.cs: Track requested split position until first layout
15655           is performed. Fixes #78871
15656
15657 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15658
15659         * Application.cs: Removed code that forces 1.x for the version
15660           number if the version started with 0. Not sure why that code was
15661           there and I couldn't find any bugs that indicated we needed it.
15662           Fixes #78869
15663
15664 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
15665
15666         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
15667           ResetDefaults(), just write some output to the console until it's
15668           implemented. Fixes bug #78907 for now. Eliminated two warnings.
15669
15670 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
15671
15672         * PropertyGridView.cs: set StartPosition of drop down forms
15673         so they appear in correct initial spot.  Fixes #78190.
15674
15675 2006-07-19  Mike Kestner  <mkestner@novell.com>
15676
15677         * ThemeWin32Classic.cs: use parent background color when drawing
15678         flat toolbars.  Restructure the conditionals to make sure non-flat
15679         non-Divider toolbars are filled too.  Fixes #78837.
15680
15681 2006-07-19  Mike Kestner  <mkestner@novell.com>
15682
15683         * ListBox.cs: Sort on collection changes even if the handle
15684         isn't created yet.  Fixes #78813.
15685
15686 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15687
15688         * ListControl.cs: DisplayMember should never be null,
15689         and now we assign String.Empty when null is passed to it (this
15690         is the .Net way).
15691
15692 2006-07-17  Mike Kestner  <mkestner@novell.com>
15693
15694         * ListViewItem.cs: restructure Font and subitem Font handling 
15695         to hold a specific font and refer back to owner on null.
15696         Fixes #78761.
15697
15698 2006-07-17  Mike Kestner  <mkestner@novell.com>
15699
15700         * ToolBar.cs: bandaid for side-effect of previous patch which was
15701         discarding explicit heights for non-AutoSize toolbars.  Need to
15702         extend my format tester to deal with AutoSize=false. Fixes #78864.
15703
15704 2006-07-15  Jackson Harper  <jackson@ximian.com>
15705
15706         * LabelEditTextBox.cs:
15707         * TreeView.cs: Use a new LabelEdit class for node editing, this
15708         class automatically 'closes' itself when it gets the enter key or
15709         loses focus.
15710         - Use the client rectangle when setting the trees scrollbars, so
15711         border style is taken into account.
15712         
15713 2006-07-14  Jackson Harper  <jackson@ximian.com>
15714
15715         * TreeNode.cs:
15716         * TreeView.cs: Make the editing work similar to MSs, firing the
15717         events correctly and ending edits correctly.
15718
15719 2006-07-14  Mike Kestner  <mkestner@novell.com>
15720
15721         * ToolBarButton.cs:
15722         * ToolBar.cs: layout restructuring and redraw enhancements to support
15723         formatting changes gracefully, like setting TextAlign, ImageList, 
15724         ButtonSize, and Appearance.  Handles explicit button sizing quirks
15725         of the MS controls.  Things like flat toolbars ignoring button size
15726         but becoming constant sized at the largest button's size.  Normal
15727         toolbars with an image set cannot be shrunk smaller than the image,
15728         but text can be clipped/ignored.
15729         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
15730         is zero.  Seems like DrawString should be smart enough to not put
15731         anything on screen though. Also trim labels and ellipsize at the char
15732         boundary, not word.
15733         Fixes #78711 and #78483.
15734
15735 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15736
15737         * FolderBrowserDialog.cs: Disable "New Folder" button and
15738           "New Folder" contextmenu menuitem if a folder like "My Computer"
15739           is selected.
15740
15741 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15742
15743         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
15744         * FolderBrowserDialog.cs:
15745           - Use MWFConfig to store and read size and position settings
15746           - Added code to create a new folder (button or context menu).
15747             Use TreeView labeledit to change the name of the new folder.
15748
15749 2006-07-14  Jackson Harper  <jackson@ximian.com>
15750
15751         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
15752         when the tree is scrolled we end editing.
15753
15754 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15755
15756         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
15757           Down arrows
15758
15759 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
15760
15761         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
15762         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
15763         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
15764         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
15765         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
15766         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
15767         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
15768         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
15769         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
15770         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
15771         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
15772         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
15773         ListViewItemSelectionChangedEventHandler.cs,
15774         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
15775         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
15776         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
15777         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
15778         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
15779         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
15780         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
15781         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
15782         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
15783         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
15784         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
15785         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
15786         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
15787         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
15788         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
15789         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
15790         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
15791         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
15792         WebBrowserNavigatingEventHandler.cs, 
15793         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
15794
15795 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
15796
15797         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
15798         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
15799         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
15800         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
15801         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
15802         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
15803         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
15804         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
15805         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
15806         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
15807         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
15808         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
15809         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
15810         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
15811         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
15812         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
15813         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
15814         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
15815         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
15816         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
15817         ListViewItemStates.cs, MaskFormat.cs: Added
15818
15819 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
15820
15821         * PropertyGridView.cs: Fix keyboard navigation of drop down.
15822         Patch from eno for bug 78558.
15823         
15824 2006-07-13  Jackson Harper  <jackson@ximian.com>
15825
15826         * TreeView.cs: When an edit is finished make sure that the
15827         selected node is visible.
15828         - When setting the top/bottom use the scrollbars is_visible, so
15829         everything will be set correctly even if the tree isn't visible
15830         yet.
15831
15832 2006-07-13  Jackson Harper  <jackson@ximian.com>
15833
15834         * ComboBox.cs: Revert the item->index part of my previous patch.
15835         * TreeView.cs: Use LostFocus instead of Leave for detecting when
15836         the edit box has lost focus (duh).
15837         - Just make the edit box not visible when we get return, that will
15838         take the focus, which will call EndEdit
15839         * TreeNode.cs When we start editing, notify the treeview.
15840
15841 2006-07-12  Jackson Harper  <jackson@ximian.com>
15842
15843         * ComboBox.cs: Clear out old items before setting the item list.
15844         This prevents databound controls from having their items added
15845         twice.
15846         - Switch the combobox to use indices whereever possible instead of
15847         using Item's.  This allows usto navigate through lists that have
15848         more then one item with the same string value (ie a, b, b, a).
15849         - Scroll the listboxes scrollbar when a non visible item is
15850         highlighted
15851         - Allow keypress to cycle through all the possible values. For
15852         example if you have b1, b2, b3 and hold down the B key all the
15853         values will be cycled through.
15854         
15855 2006-07-12  Jackson Harper  <jackson@ximian.com>
15856
15857         * TextBoxBase.cs:
15858         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
15859         this using the internal methods.
15860         * Control.cs: Add OnGotFocusInternal.  A new method that allows
15861         controls to "override" OnGotFocus and change focus behavior if
15862         needed.
15863         - Same thing for LostFocus
15864         * ComboBox.cs: Pass off focus to the text control properly.
15865
15866 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
15867
15868         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
15869         * FolderBrowserDialog.cs: Almost a complete rewrite.
15870           - Better support for Environment.Specialfolders
15871           - Added support for MWFVFS
15872           - Made setting SelectedPath work
15873
15874 2006-07-12  Jackson Harper  <jackson@ximian.com>
15875
15876         * Control.cs: Optimze getting all the controls.
15877
15878 2006-07-11  Jackson Harper  <jackson@ximian.com>
15879
15880         * ContainerControl.cs: Override SETFOCUS in the container control,
15881         so that it is not selected on mouse click.
15882
15883 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
15884
15885         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
15886           Hopefully we will have a better way once all of focus is complete.
15887
15888 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
15889
15890         * ThemeWin32Classic.cs: Commented out some debug code and fixed
15891           a compile error with csc.
15892
15893 2006-07-11  Jackson Harper  <jackson@ximian.com>
15894
15895         * Control.cs: When hiding a control only select the next control
15896         if the current control was focused.
15897         - Don't handle enter/leave when setting/killing focus, this is
15898         done by the container control.
15899         - Remove is_selected, it's not needed anymore.
15900         - Add utility methods for selecting a child control, and for
15901         firing the Enter/Leave events.
15902         * ContainerControl.cs: When a control is activated fire the
15903         enter/leave events.
15904         - Don't wrap when processing the tab key, so that focus can be
15905         moved outside of the container.
15906         - Use the correct active control
15907
15908 2006-07-11  Jackson Harper  <jackson@ximian.com>
15909
15910         * ComboBox.cs: Remove some debug code that was blinding me.
15911         * UpDownBase.cs: These controls actually aren't implicit, they are
15912         visible to the user.
15913
15914 2006-07-10  Chris Toshok  <toshok@ximian.com>
15915
15916         * DataGrid.cs: move back to the is_adding boolean field.  god i
15917         hate this is_editing/is_adding/is_changing stuff.
15918
15919 2006-07-10  Chris Toshok  <toshok@ximian.com>
15920
15921         * DataGridTableStyle.cs: just check if the property type is bool.
15922         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
15923         Don't use CanRenderType.
15924
15925         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
15926         if our text == NullText.  Remove CanRenderType.
15927
15928         * DataGridBoolColumn.cs: nuke CanRenderType.
15929
15930         * DataGrid.cs: reenable some code to end the current edit inside
15931         of set_CurrentCell.  This fixes the other 1.1.16 regression.
15932         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
15933         Also, remove the visible_row_count arg from CalcRowHeaders, since
15934         we don't need to worry about the actual height of the area.
15935
15936 2006-07-10  Chris Toshok  <toshok@ximian.com>
15937
15938         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
15939         mode, just return.
15940
15941         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
15942         the real sense of the IsInEditOrNavigateMode property (true =
15943         navigate, false = edit).  Also, update OnKeyPress to reflect this.
15944
15945         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
15946         column style exists, we still need to set its property descriptor
15947         to match up with our list manager.
15948
15949 2006-07-10  Chris Toshok  <toshok@ximian.com>
15950
15951         * ThemeWin32Classic.cs: implement the new row/header painting
15952         approach.  The parent row painting will likely go away and
15953         replaced with label controls, but the rest seems to work ok (and
15954         efficiently).
15955
15956         * Theme.cs: change the way we draw datagrid rows.  we don't draw
15957         the row headers as a block now.  Instead we draw them in the
15958         normal draw-row loop.  Add some calls for drawing parent rows and
15959         relation rows.
15960
15961         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
15962         a default table style.  Set the defaults from ThemeEngine.Current,
15963         not SystemColors.  Fix lots of misc issues with property setters.
15964
15965         * DataGrid.cs: move loads of style information out of this class
15966         as it's being duplicated with DataGridTableStyle.  keep track of a
15967         special DataGridTableStyle for the properties we used to mirror
15968         here.  Switch all the style properties to access this table style
15969         instead of instance fields of this class.  Also add a internal
15970         class to represent parent rows (more needs to be stored here, like
15971         the selection state from the parent table, as well as the
15972         expansion state.)  Also, for datasources with relations, do the
15973         right thing for collapse/expand, and add support for the
15974         navigation/parent row buttons.
15975
15976         Lastly, fix the crash in the 1.1.16 build.
15977
15978         * GridTableStylesCollection.cs: make the explicit interface
15979         implementations call the class's methods as opposed to duplicating
15980         them.
15981
15982         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
15983         0 so the text doesn't jump around when we move the cursor.
15984
15985 2006-07-10  Jackson Harper  <jackson@ximian.com>
15986
15987         * TextBoxBase.cs:
15988         * ListBox.cs: Match MS's ToString (this makes debugging focus
15989         stuff infinitely easier).
15990
15991 2006-07-10  Jackson Harper  <jackson@ximian.com>
15992
15993         * Control.cs (SelectNextControl): When checking the control's
15994         parent use this instead of ctrl.parent so that null can be passed
15995         to SelectNextControl. (I have unit tests for this).
15996         - Remove unused var.
15997
15998 2006-07-10  Chris Toshok  <toshok@ximian.com>
15999
16000         * CurrencyManager.cs: correct one regression, the removal of the
16001         finalType field.  Also, add a MonoTODO on CanAddRows, implement
16002         Refresh() correctly, and fix some event emission in
16003         ListChangedHandler.
16004
16005 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
16006
16007         * FileDialog.cs: Don't use brackets for new folders if they exist
16008           under *nix. Instead use -(number of existing folders +1).
16009
16010 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
16011
16012         * FileDialog.cs:
16013           - Fixed really nasty bug #78771
16014           - Don't block the whole GUI when reading directories with a lot of
16015             entries. Use an other thread instead and call BeginInvoke to
16016             update the ListView in MWFFileView
16017
16018 2006-07-07  Chris Toshok  <toshok@ximian.com>
16019
16020         * Control.cs (Dispose): release any Capture when disposing.
16021
16022 2006-07-07  Chris Toshok  <toshok@ximian.com>
16023
16024         * LinkLabel.cs (Select): if we chain up to the parent, set
16025         focused_index to -1 so we'll search for the first available link
16026         the next time the user tabs into us.  Also, if the direction is
16027         backward and focused_index == -1, start the search from the last
16028         element.
16029
16030 2006-07-07  Chris Toshok  <toshok@ximian.com>
16031
16032         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
16033         is beyond the end of the text, don't do anything.
16034         (CreateLinkPieces): set our ControlStyles.Selectable based on
16035         whether or not we have any links.
16036         (Link.Invalidate): use a loop instead of foreach.
16037         (Link.set_Start): null out owner.sorted_links so it'll be
16038         recreated by CreateLinkPieces.
16039
16040 2006-07-06  Chris Toshok  <toshok@ximian.com>
16041
16042         * LinkLabel.cs: revert the SetStyle change.
16043
16044 2006-07-06  Chris Toshok  <toshok@ximian.com>
16045
16046         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
16047         (OnEnableChanged): s/Refresh/Invalidate
16048         (OnGotFocus): if we have a focused index already, refocus it (so
16049         if we mouse out/in to the window it'll focus the right link).
16050         (OnKeyDown): move the tab handling out of here.
16051         (OnLostFocus): don't set focused_index to -1, so we can refocus it
16052         when we lose focus.
16053         (OnMouseDown): don't Capture here - Control handles it.  Also,
16054         focus the active link.
16055         (OnMouseUp): don't deal with Capture.
16056         (OnPaintBackgroundInternal): remove.
16057         (OnTextAlignChanged): CreateLinkPieces before calling the
16058         superclass's method.
16059         (OnTextChanged): call CreateLinkPieces before calling superclass's
16060         method.
16061         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
16062         move around.
16063         (Select): implement this, moving the selection between different
16064         links, and call parent.SelectNextControl if we don't have another
16065         link to focus in the given direction.
16066         (CreateLinkPieces): call Invalidate instead of Refresh.
16067         
16068 2006-07-06  Chris Toshok  <toshok@ximian.com>
16069
16070         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
16071         new LinkLabel internals.
16072
16073         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
16074         over pieces looking for active/focused/etc links.  also, deal with
16075         runs of text (and links) with embedded \n's in them, and use
16076         MeasureCharacterRanges instead of MeasureString to figure out the
16077         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
16078         two-step.
16079
16080 2006-07-04  Jackson Harper  <jackson@ximian.com>
16081
16082         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
16083         XKB or key auto repeat, do it manually.  Without key auto repeat,
16084         when a key is held down we get key press, key release, key press,
16085         key release, ... with auto repeat we get key press, key press, key
16086         press ..., and then a release when the key is actually released.
16087
16088 2006-07-03  Jackson Harper  <jackson@ximian.com>
16089
16090         * TabControl.cs:
16091         * ThemeWin32Classic.cs: Tabs do not obey normal background color
16092         rules, they are always control color regardless of the background
16093         color.
16094
16095 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
16096
16097         * FileDialog.cs: Added internal class MWFConfig.
16098           Removed Registry support and replaced it with support for the new
16099           MWFConfig class. See MWFConfig comments for more information.
16100
16101 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
16102
16103         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
16104           rectangle. Added some patches from eno from bug #78490 and fixed
16105           the arrow position for small up and down CPDrawScrollButtons.
16106
16107 2006-06-30  Jackson Harper  <jackson@ximian.com>
16108
16109         * InternalWindowManager.cs: Remove some debug code.
16110         * Form.cs: When an MdiParent is set to null, the window is
16111         "detatched" and becomes a normal window.
16112         * MdiClient.cs: Don't bring the new child form to the front until
16113         it is activated (setting it as active does this), this makes the
16114         previously active forms titlebar get redrawn as inactive.
16115
16116 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
16117
16118         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
16119           with later controls
16120
16121 2006-06-29  Mike Kestner  <mkestner@novell.com>
16122
16123         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
16124         arrow in keynav state.  Fixes #78682.
16125
16126 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
16127
16128         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
16129           order (fixes #78393)
16130
16131 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
16132
16133         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
16134           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
16135           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
16136           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
16137           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
16138           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
16139           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
16140           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
16141           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
16142           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
16143           enumerations (FlagsAttribute, SerializableAttribute, added/removed
16144           values)
16145
16146 2006-06-28  Mike Kestner  <mkestner@novell.com>
16147
16148         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
16149
16150 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
16151
16152         * PropertyGrid.cs,
16153           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
16154           item lines from other area (It also makes BackColor consistent and
16155           compatible with .NET). Fixed bug #78564.
16156
16157 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
16158
16159         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
16160         Patch from Eno for #78555.
16161
16162 2006-06-27  Chris Toshok  <toshok@ximian.com>
16163
16164         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
16165
16166         * DataGridColumnStyle.cs: same.
16167
16168         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
16169         
16170         * DataGridDrawingLogic.cs: nuke.
16171
16172 2006-06-27  Chris Toshok  <toshok@ximian.com>
16173
16174         * DataGridTableStyle.cs: clean up the constructors, and build the
16175         list of child relations for this table.  I have no idea if this is
16176         where we should be doing it (it probably isn't), but since we're
16177         already iterating over the properties..
16178
16179         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
16180         struct and array for keeping track of row information, similar to
16181         what's shown in a hack on
16182         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
16183
16184         * Theme.cs: be consistent about the naming of DataGrid methods,
16185         prefering ColumnWidths and RowHeights over columnsWidths and
16186         RowsHeights.
16187
16188         * ThemeWin32Classic.cs: same, and also add support for variable
16189         sized rows (and the +/- expansion icons for related rows).
16190
16191 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
16192
16193         * TextBoxBase.cs: Applied Eno's patch from #78660
16194
16195 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
16196
16197         * Form.cs (ScaleCore): We don't want to scale our form if it's
16198           state is minimized or maximized, but we still need to scale our
16199           child windows. Also, added try/finally block to ensure layout
16200           gets reset (Fixes #78697)
16201
16202 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
16203
16204         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
16205
16206 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
16207
16208         * Form.cs: Fixed c+p error and added check to resize form if minimum
16209           size is bigger than current size (Fixes #78709)
16210
16211 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
16212
16213         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
16214
16215 2006-06-26  Mike Kestner  <mkestner@novell.com>
16216
16217         * ComboBox.cs: only do Keypress handling in the combo when there  
16218         are items in the collection. Fixes #78710.
16219
16220 2006-06-26  Chris Toshok  <toshok@ximian.com>
16221
16222         * Binding.cs: make this work bi-directionally.  also, clear up
16223         other mixups between Push/Pull Data (e.g. we're supposed to pull
16224         data when validating).
16225
16226         * BindingManagerBase.cs: trim some fully qualified collection
16227         types.
16228
16229         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
16230
16231 2006-06-23  Chris Toshok  <toshok@ximian.com>
16232
16233         * PropertyManager.cs: It appears (according to the unit tests)
16234         that PropertyManager doesn't use
16235         PropertyDescriptor.AddValueChanged to track propery value changes
16236         in its datasource, but uses the same scheme as Binding, where it
16237         looks for a <Property>Changed event and binds to it.
16238
16239         Also, according to the docs, IsSuspended always returns false for
16240         a property manager with a non-null datasource.
16241
16242 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
16243
16244         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
16245           need to update the actual DialogResult. (Fixes #78613)
16246
16247 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
16248
16249         * Form.cs (ShowDialog): Release any captures before running the
16250           new message pump (fixes #78680)
16251
16252 2006-06-22  Mike Kestner  <mkestner@novell.com>
16253
16254         * ListView.cs: Layout column widths properly in details mode even 
16255         if HeaderStyle.None is set.  Fixes #78691.
16256
16257 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
16258
16259         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
16260
16261 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
16262
16263         * Control.cs (ContainsFocus): Using new driver method to get focused
16264           window, instead of trying to use internal tracking var, which can
16265           recursion issues (Fixes #78685)
16266         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
16267           XplatUIWin32.cs: Added GetFocus method to return focused window
16268
16269 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16270
16271         * ColorDialog.cs: when the mouse button is pressed inside the color
16272         matrix, don't let the cursor move out of it until the button is
16273         released, which is the behavior on windows. Changed 'colours' by
16274         'colors' to use the same word consistently.
16275
16276 2006-06-21  Chris Toshok  <toshok@ximian.com>
16277
16278         * DataGrid.cs: add in some basic navigation stuff (navigating to a
16279         child relation and back, using a stack).  Also, remove
16280         GetDataSource and the code that calls it - it's not needed.  Also,
16281         track CurrencyManager.ListName's removal.
16282
16283 2006-06-21  Chris Toshok  <toshok@ximian.com>
16284
16285         * CurrencyManager.cs: push some of the original type checking from
16286         BindingContext.CreateBindingManager to here, and remove some of
16287         the finalType stuff.  Need more tests to make sure I've got the
16288         ListName part right, and we might need more in SetDataSource.
16289
16290         * PropertyManager.cs: add a ctor that takes just the datasource,
16291         and no property name.  Make SetDataSource work with a null
16292         property_name, and make Current return the data_source if the
16293         property descriptor is null.  this makes 'string foo = "hi";
16294         BindingContext[foo].Current' return "hi" as it should.
16295
16296         * RelatedCurrencyManager.cs: make this code more generic - there's
16297         no reason the parent manager has to be CurrencyManager, and
16298         there's no reason to pass the DataRelation.  It suffices to use a
16299         BindingManagerBase and PropetyDescriptor.
16300
16301         * RelatedPropertyManager.cs: make a similar change here.
16302         
16303         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
16304         flower I knew it could be.
16305
16306 2006-06-20  Chris Toshok  <toshok@ximian.com>
16307
16308         * PropertyManager.cs: the PropertyChangedHandler is invoked when
16309         data in the source has changed and we need to update the control,
16310         so s/PullData/PushData.
16311
16312         * CurrencyManager.cs: Refresh is meant to update the control from
16313         data in the datasource.  So, s/PullData/PushData.
16314
16315         * BindingContext.cs: add more ugliness (we weren't handling the
16316         case where data_source = DataTable and data_member = column_name).
16317
16318         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
16319         from the perspective of the datasource.  PullData pulls from the
16320         control, PushData pushes to the control.
16321
16322 2006-06-20  Chris Toshok  <toshok@ximian.com>
16323
16324         * BindingContext.cs: rewrite the CreateBindingManager code to
16325         handle navigation paths more or less properly.  This could
16326         definitely stand some more work, in particular to push the
16327         recursion up to the toplevel.  But that relies on fixes in other
16328         places (System.Data comes to mind).
16329
16330         Also, move to a flat hashtable (and encode the twolevel nature of
16331         the dictionary into the hash key).  This lets us implement the
16332         IEnumerable.GetEnumerator method.
16333
16334         * RelatedCurrencyManager.cs: new class.  Update our view based on
16335         our relation and our parent CurrencyManager's position.
16336
16337         * CurrencyManager.cs: split out some logic from the ctor into
16338         SetView, so it can be called from the new RelatedCurrencyManager
16339         subclass.
16340
16341         * RelatedPropertyManager.cs: new class.  Update our datasource
16342         based on the position of our parent CurrencyManager.
16343
16344         * PropertyManager.cs: split out some logic from the ctor into
16345         SetDataSource, so it can be called from the new RelatedDataSource
16346         subclass.  Also, make the Current getter return the value
16347         of the PropertyDescriptor, not the data_source.
16348
16349         * Binding.cs: no need to duplicate the string splitting code here.
16350
16351 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
16352
16353         * Control.cs:
16354           - set_Enabled: OnEnabledChanged is not called if the inherited state 
16355             of the control is not altered, even though  we might be changing the
16356             internal state of the control (#78458)
16357           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
16358             OnEnabledChanged, to allow easy altering of any child window state
16359           - OnEnabledChanged: Added code to enable/disable driver window state
16360           - OnParentEnabledChanged: Instead of firing the event, call 
16361             OnEnabledChanged, which will fire the event and also a) set driver
16362             window state and pass the enabled state to any grandchildren (#78458)
16363
16364 2006-06-19  Jackson Harper  <jackson@ximian.com>
16365
16366         * InternalWindowManager.cs: We don't set the cursor explicitly
16367         thats done via the response to NCHITTESTs.
16368         - Don't need to adjust for titlebar heights anymore, the
16369         coordinates are coming in the correct coordinates now (see peters
16370         last patch).
16371
16372
16373 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
16374
16375         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
16376           being translated relative to whole window, instead of client window.
16377           That caused broken offsets on mouseclick (and caused gas for our
16378           InternalWindowManager)
16379
16380 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
16381
16382         * TextControl.cs:
16383           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
16384           - Undo(): Added replay of cursor move on DeleteChars action; added
16385             calling Undo() again if a recorded cursor move is invalid (to
16386             ensure that some action is performed on Undo)
16387         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
16388
16389 2006-06-16  Jackson Harper  <jackson@ximian.com>
16390
16391         * MdiClient.cs: Instead of just sizing maximized windows when
16392         there is a resize we also have to adjust the Y of minimized
16393         windows, so they stay pinned to the bottom of the mdi container.
16394         - Eliminate separate tracking of the active control, we can just
16395         get this from the controls collection.
16396         - Paint the decorations for the newly activated titlebar so we get
16397         a pretty blue bar.
16398         * InternalWindowManager.cs:
16399         * ThemeWin32Classic.cs: Minimized windows get all three buttons
16400         even if they are a tool window.
16401         
16402 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
16403
16404         * TextControl.cs (Undo): Handle non-existent cursor locations in the
16405           undo buffer, these can happen when text was deleted and the cursor
16406           was recorded first. Since we will also have a recorded cursor
16407           after the delete this is not an issue. (Fixes #78651)
16408
16409 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
16410
16411         * AccessibleObject.cs: Remove dependence on Control.is_selected;
16412           instead properly track control states internally (allows us to
16413           remove is_selected from Control)
16414
16415 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16416
16417         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
16418         whose width is not a multiple of 8.
16419
16420 2006-06-13  Jackson Harper  <jackson@ximian.com>
16421
16422         * MdiClient.cs:  Only maximize the next child if the current one
16423         is maximized.
16424
16425 2006-06-13  Chris Toshok  <toshok@ximian.com>
16426
16427         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
16428         modified.  Also, guard against grid or grid_drawing being null in
16429         Invalidate.
16430
16431         * DataGrid.cs: Reformat tons of getters/setters.  In the
16432         DataMember setter, just call SetNewDataSource instead of
16433         duplicating some of its functionality.  In SetNewDataSource, don't
16434         check ListManager for null, since the property getter creates the
16435         object if needed.
16436
16437         * DataGridTableStyle.cs: don't set TableStyle or call
16438         SetDataGridInternal on the column here, it's done in
16439         GridColumnStylesCollection.Add.
16440
16441         * GridColumnStylesCollection.cs: fix all the explicit interface
16442         implementations to just call our methods.  Nuke AddInternal() and
16443         move the body of it to Add().  Also, add a call to
16444         column.SetDataGridInternal to Add().
16445
16446         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
16447         base()+duplicate code.  Also, use the Format property instead of
16448         format to generate an Invalidate ala MS.  Lastly, create the
16449         textbox here, unconditionally.
16450         (set_Format): call Invalidate.
16451         (get_TextBox): no need to call EnsureTextBox.
16452         (Commit): remove the message box.
16453         (Edit) remove the call to EnsureTextBox.
16454         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
16455         (EnterNullValue): no need to check textbox for null.
16456         (HideEditBox): no need to check textbox for null.
16457         (SetDataGridInColumn): add the textbox to the grid's controls.
16458         (EnsureTextBox): nuke.
16459         
16460 2006-06-13  Jackson Harper  <jackson@ximian.com>
16461
16462         * MdiWindowManager.cs: Hook up to the maximized menus paint event
16463         and redraw the buttons when needed. Unhook when the window is
16464         unmaximized.
16465         * MainMenu.cs: Add an internal Paint event, the mdi window manager
16466         needs this so that it can redraw its buttons when the menu is
16467         repainted.
16468         * InternalWindowManager.cs:
16469         * Form.cs: The method order has changed for DrawMaximizedButtons,
16470         so that it can be a PaintEventHandler.
16471         
16472 2006-06-13  Jackson Harper  <jackson@ximian.com>
16473
16474         * MdiClient.cs: When we close a maximized mdi window, the next mdi
16475         window is activated and maximized, even if it wasn't before.
16476         - When  a new window is activated repaint the decorations of the
16477         old one, so that it no longer has the Active "look" (the blue
16478         titlebar).
16479         * InternalWindowManager.cs: Open up CreateButtons to base classes
16480         so they can recreate the buttons on state changes.
16481         - If a window is maximized give it all three buttons
16482         * MdiWindowManager.cs: Create the titlebar buttons when the state
16483         is changed, this is needed because a toolwindow will not have all
16484         three buttons until it is maximized.
16485
16486 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
16487
16488         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
16489           Fixed bug #78609.
16490
16491 2006-06-12  Jackson Harper  <jackson@ximian.com>
16492
16493         * KeysConverter.cs: Make sure we handle the Ctrl special case
16494         if its the only key.
16495         
16496 2006-06-12  Jackson Harper  <jackson@ximian.com>
16497
16498         * Theme.cs: Add a method to get the size of a managed window
16499         toolbar button.
16500         * InternalWindowManager.cs: Remove the ButtonSize property, this
16501         should be retrieved from the theme.
16502         * MdiWindowManager.cs: Get the button size from the theme
16503         * ThemeWin32Classic.cs: Make the method to get the managed window
16504         titlebar button size public.
16505         - Handle the different button sizes of maximized toolwindows
16506         (should match any maximized window).
16507         - Get the titlebar height from the theme, not the WM (which gets
16508         it from the theme).
16509
16510 2006-06-12  Jackson Harper  <jackson@ximian.com>
16511
16512         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
16513         event down to the mdi window manager.
16514         - Expose some extra stuff to base classes
16515         - Make sure to end the Capture on an NC Mouse up, so that we can
16516         get double clicks properly, and the sizing doens't stick.
16517         - When doing PointToClient contain it in the workable desktop
16518         area, this prevents windows from changing size when the cursor is
16519         pulled outside of the working area while sizing.
16520         * MdiWindowManager.cs: When we get a double click maximize the
16521         window.
16522         - Reset the cursor after handling mode changes.
16523
16524 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
16525
16526         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
16527           current desktop, instead of just assuming a 0, 0 origin. This
16528           is needed for our internal window manager, to know the top
16529           margin of the desktop
16530
16531 2006-06-12  Chris Toshok  <toshok@ximian.com>
16532
16533         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
16534         we need this to get rid of the selected background in the bool
16535         column.
16536         (CancelEditing): move the ConcedeFocus call to above the Abort
16537         call.  Also, set is_changing to false and invalidate the row
16538         header if we were changing before.
16539         (ProcessKeyPreviewInternal): remove, since noone outside this
16540         class calls it anymore.  Roll the code into ProcessKeyPreview.
16541         (EndEdit): remove the internal version.
16542         (InvalidateCurrentRowHeader): make private.
16543
16544         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
16545         Keys.Escape handling (and with it the last call to
16546         DataGrid.EndEdit from outside the class.)
16547
16548
16549 2006-06-12  Chris Toshok  <toshok@ximian.com>
16550
16551         * DataGridTextBox.cs (.ctor): isedit defaults to false.
16552         (OnKeyPress): set isedit to true.
16553         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
16554         already handled by the grid.
16555
16556         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
16557         right.  ugh.
16558         (set_DataSource): SetDataSource always returns true, so stop
16559         putting it in an if statement.
16560         (EndEdit): get rid of some {}'s
16561         (ProcessGridKey): return true in case Keys.Escape.
16562         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
16563         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
16564         PositionChanged, stopped connecting to CurrentChanged.
16565         (GetDataSource): simplify this a bunch.
16566         (SetDataSource): change return type from bool to void.
16567         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
16568         to this, and make sure we don't set ListManager.Position inside
16569         set_CurrentCell.
16570         (OnListManagerItemChanged): if we're passed an actual index,
16571         redraw that row.
16572
16573         * CurrencyManager.cs (set_Position): don't call PullData here.
16574
16575 2006-06-09  Jackson Harper  <jackson@ximian.com>
16576
16577         * TreeNode.cs:  Recalculate the visible order before doing the
16578         Expand/Collapse Below calls, because those calls generate an
16579         expose.
16580         - Reduce calls to the TreeView property, which is mildly expensive
16581         by using a local var.
16582         * Form.cs: Layout the MDI child windows when creating the parent
16583         form.
16584         - Don't use the internal constructor anymore
16585         * MdiClient.cs: use the parent form width/height (if available)
16586         when laying out the child windows, we do this because the
16587         mdiclient isn't docked yet when the initial layout is done.
16588         - Don't need an internal constructor anymore.
16589
16590 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16591
16592         * FileDialog.cs: handle access errors when trying to create a folder
16593         or changing to a directory. No need to initialize out parameters.
16594
16595 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16596
16597         * FileDialog.cs: Append a number when creating a new folder if the
16598           folder already exists (use parenthesis instead of square brackets)
16599
16600 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16601
16602         * FileDialog.cs:
16603           - Disabled registry support for windows and added better registry
16604             error checking for other systems (need to investigate why it
16605             works perfectly on my system)
16606           - If a folder already exist show an error MessageBox instead of
16607             trying to create an indexed name.
16608           - Fixed a non intentional typo.
16609
16610 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16611
16612         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
16613
16614 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16615
16616         * FileDialog.cs: When creating a new folder don't crash if the
16617           folder already exists.
16618
16619 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16620
16621         * FileDialog.cs: Allmost a complete rewrite.
16622           - added a "virtual" file system that handles the differences
16623             between unix and windows file systems (especially the directory
16624             structure). Moved most of the directory and file handling code
16625             into the vfs.
16626             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
16627             UnixFileSystem and FSEntry.
16628           - Recently used folder/directory, size, location and used file names
16629             (file name ComboBox) are now stored in the registry and get read
16630             before the dialog shows up (fixes part 6 of bug #78446).
16631           - Creation of new folders/directories is now possible (context menu
16632             or ToolBar). Added TextEntryDialog for this that fills in the gap
16633             until ListView.LabelEdit works.
16634           - Fixed cursor handling (bug #78527) and focus handling for
16635             PopupButtonPanel
16636           - Various "Search in" ComboBox enhancements. The content of the
16637             dropdown listbox now almost matches ms.
16638           - Changed the behaviour when the user switches to SpecialFolder
16639             Recent to show the ListView in View.Details.
16640           - Beside using the ToolBar to change the View property of the
16641             file ListView it is now possible to use the context menu too.
16642
16643 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16644
16645         * ComboBox.cs: Don't create a new ObjectCollection when an item
16646           gets inserted. Just insert the item in the existing object_items
16647           ArrayList.
16648
16649 2006-06-08  Jackson Harper  <jackson@ximian.com>
16650
16651         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
16652         that the treeview and root node checks are done also, this fixes a
16653         regression i caused in the unit tests.
16654
16655 2006-06-07  Wade Berrier <wberrier@novell.com> 
16656
16657         * RichTextBox.cs: More ISO8859-1 -> unicode
16658
16659 2006-06-07  Mike Kestner  <mkestner@novell.com>
16660
16661         * ComboBox.cs : use items to hold highlight/selection so that
16662         collection insertions don't require synchronization.
16663
16664 2006-06-07  Jackson Harper  <jackson@ximian.com>
16665
16666         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
16667         routine.  We now always keep the sized edge at the cursor instead
16668         of computing movement and adjusting rects.  There is one buglet
16669         with this method though when the cursor is moved over area that
16670         the window can not expand too (such as the toolbars on the desktop).
16671
16672 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16673
16674         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
16675         here. Fixes crash on startup in AlbumSurfer.
16676
16677 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
16678
16679         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
16680           values
16681
16682 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16683
16684         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
16685         statement to avoid calling XNextEvent which will block if another thread
16686         took the event that we were expecting. Fixes bug #78605.
16687
16688 2006-06-07  Mike Kestner  <mkestner@novell.com>
16689
16690         * ListView.cs : isolated checkbox clicking from the selection logic.
16691         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
16692
16693 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16694
16695         * Form.cs: Check that the value passed to Form.DialogResult
16696         is a valid enum value.
16697
16698 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16699
16700         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
16701         Computer'. Clicking it in the network view goes to 'My Computer'.
16702         Added CIFS filesystem type. Display the mount point of filesystems.
16703         Avoid duplicate mount points (happens for me with CIFS);
16704
16705 2006-06-06  Jackson Harper  <jackson@ximian.com>
16706
16707         * InternalWindowManager.cs: Draw the maximized windows buttons
16708         when resizing.
16709
16710 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16711
16712         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
16713         all other dialogs. Fixes bug #78585.
16714
16715 2006-06-06  Mike Kestner  <mkestner@novell.com>
16716
16717         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
16718         Only invalidate checkbox on checkstate changes to avoid flicker.
16719         * ListBox.cs : avoid unselect/select when clicking selected item.
16720         avoid reselection flicker for already multiselected items.
16721         Fixes #78382.
16722
16723 2006-06-06  Jackson Harper  <jackson@ximian.com>
16724
16725         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
16726         the parent form so that the menu is removed if needed.
16727
16728 2006-06-06  Mike Kestner  <mkestner@novell.com>
16729
16730         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
16731         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
16732
16733 2006-06-06  Mike Kestner  <mkestner@novell.com>
16734
16735         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
16736
16737
16738 2006-06-06  Jackson Harper  <jackson@ximian.com>
16739
16740         * Control.cs: Use the property (instead of the field) to get the
16741         default cursor so it is instantiated correctly.
16742         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
16743         resizes so we need to manually repaint the window decorations here.
16744         - Set the titlebar button locations as soon as they are created,
16745         otherwise they are not set correctly on win32.
16746         
16747 2006-06-06  Chris Toshok  <toshok@ximian.com>
16748
16749         * CurrencyManager.cs (set_Position): call PullData before
16750         OnCurrentChanged.
16751         (AddNew): after calling IBindingList.AddNew, update our
16752         listposition, and call OnCurrentChanged/OnPositionChanged (without
16753         calling PullData).
16754         (OnCurrentChanged): remove the call to PullData from here.
16755         (OnItemChanged): remove the call to PushData from here.
16756         (OnPositionChanged): change the test from == null to != null to
16757         match the other methods.
16758         (ListChangedHandler): the grossest part of the patch.  Implement
16759         this such that it passes the unit tests in CurrencyManagerTest and
16760         the output more or less matches that of MS's implementation.
16761  
16762 2006-06-06  Mike Kestner  <mkestner@novell.com>
16763
16764         * ListView.cs : only update check state on single click.
16765         * ThemeWin32Classic.cs : fix focus drawing for details view without
16766         fullrowselect.  Fixes #78454.
16767         * XplatUIX11.cs : fix for double click emission.
16768
16769 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16770
16771         * PropertyGridView.cs : Applied Atsushi's patch to fix
16772         font dialog bug  (#78197).
16773
16774 2006-06-05  Jackson Harper  <jackson@ximian.com>
16775
16776         * TreeNode.cs: Compute the next node for expanding/collapsing
16777         correctly. We now factor in nodes without a NextNode
16778         correctly. (Fixes somes cases in nunit-gui).
16779         * InternalWindowManager.cs: Set the bounds when updating the
16780         virtual position of a tool window.
16781         
16782 2006-06-05  Chris Toshok  <toshok@ximian.com>
16783
16784         * DataGrid.cs: rename cached_currencymgr to list_manager.
16785         (set_CurrentCell): move SetCurrentCell code here, and clean it up
16786         some.
16787         (CurrentRow, CurrentColumn): single accessors so we can make the
16788         cursor movement code a lot easier to understand.
16789         (CurrentRowIndex): implement this in terms of CurrentRow.
16790         (BeginEdit): clean this up a bit.
16791         (CancelEditing): sort out the is_editing/is_changing/is_adding
16792         stuff a little.
16793         (EndEdit): minor changes.
16794         (OnKeyDown): add a comment about a (most likely) unnecessary
16795         check.
16796         (OnMouseDown): cancel editing when we click on a row header.  And
16797         use the CurrentRow setter, not CurrentCell.
16798         (ProcessDialogKey): directly call ProcessGridKey.
16799         (UpdateSelectionAfterCursorMove): factor out this common block of
16800         code (it's used everywhere that we move the cursor by updating row
16801         or column).
16802         (ProcessGridKey): pretty substantial overhaul.  Use the
16803         CurrentRow/CurrentColumn properties to make the code a lot more
16804         readable.  Only use the CurrentCell property when we have to
16805         modify both row and column at once.  Tab behavior is still broken,
16806         and Delete is untested.
16807         (Select): if we have no selected rows, set selection_start to
16808         @row.
16809         (EditCurrentCell): rename EditCell this.  It was only ever invoked
16810         with CurrentCell as the arg, so drop the arg and rename it.
16811
16812         * DataGridColumnStyle.cs: clean up the constructors a little, and
16813         drop CommonConstructor().
16814
16815         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
16816         actually get notified when the user hits it.
16817         (ProcessKeyMessage): *substantially* simplify this method.
16818         There's no reason (that I can see) for the textbox to be making
16819         calls into the datagrid at all.  Remove all of them but the ones
16820         for Enter handling.  those will take some more work.
16821
16822         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
16823         calling HideEditBox.
16824         (HideEditBox): if we have an active textbox, render it invisible
16825         without causing a re-layout of the datagrid.
16826
16827 2006-06-05  Mike Kestner  <mkestner@novell.com>
16828
16829         * ListView.cs : fix NRE crasher when focuseditem is cleared by
16830         collection changes by resetting it to Items[0].  Fixes #78587.
16831
16832 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16833
16834         * MessageBox.cs: if the height of the text is larger than the icon_size,
16835         use that. Fixes bug #78575.
16836
16837 2006-06-05  Jackson Harper  <jackson@ximian.com>
16838
16839         * TreeView.cs: Fix line drawing when scrolling.  To do this each
16840         node is basically responsible for drawing its entire horizontal
16841         area.  When drawing a node it draws its parent node lines if
16842         needed.
16843         - Adjust the clip area to the viewport rectangle
16844         - Fix Left/Right key handling to match MS. (It expand/collapses
16845         and moves to parents/first child but does not move selection to
16846         sibling nodes).
16847         - Fix SetTop to work with new bound calculation code
16848         - When scrollbars are no longer needed we need to reset scrolling
16849         vars and recalculate the visible order so the redraw is correct
16850         * TreeNode.cs: We can't expand/collapse nodes with no children.
16851
16852 2006-06-03  John Luke  <john.luke@gmail.com> 
16853
16854         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
16855         so the colors work without dev packages
16856         
16857 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
16858
16859         * Control.cs 
16860           - Select: Implemented to just use activate. Seems to match MS 
16861             behaviour closest. Documented to only do actual control walking 
16862             based on it's parameters if in a container control so I moved 
16863             the code there.
16864           - Removed selection check logic from our internal Select() method
16865         * ContainerControl.cs:
16866           - Select: Moved selection logic from Control here, since MS documents
16867             that containers obey the bool arguments. No longer calling base
16868
16869 2006-06-02  Jackson Harper  <jackson@ximian.com>
16870
16871         * TreeView.cs: If the selected node isn't changed when we get
16872         focus update the previously selected node so that we see the
16873         selection box.
16874
16875 2006-06-02  Mike Kestner  <mkestner@novell.com>
16876
16877         * ComboBox.cs: restructure grab and general mouse event handling.
16878         Make the composite control raise mouse events like it was a single
16879         control for leaves/enters/motion/up/down events.  fix dropdown list
16880         coordinate mangling and refactor it into the scrollbar subclass to
16881         reduce code duplication.  Fixes #78282 #78361 and #78457.
16882
16883 2006-06-02  Mike Kestner  <mkestner@novell.com>
16884
16885         * ScrollBar.cs: remove Capture setting/clearing, as it happens
16886         automatically in the Control.WndProc.
16887
16888 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16889
16890         * FileDialog.cs: fix crash when running SharpChess, which sets the
16891         FilterIndex to 2 with only one Filter.
16892
16893 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16894
16895         * ToolBar.cs: add SizeSpecified property.
16896         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
16897         try to figure out our real size, otherwise fallback to what the
16898         container says.
16899
16900 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16901
16902         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
16903         * Control.cs (WndProc): MS always calls the DefWndProc to pass
16904           up the event
16905
16906 2006-06-01  Mike Kestner  <mkestner@novell.com>
16907
16908         * ListView.cs: revamp the focus management in ListView.  It still
16909         causes churn of LostFocus/GotFocus emissions on clicks, but it's
16910         better than not handling focus at all.  Will revisit when pdb feels
16911         the general focus handling is solid.  Fixes #78526.
16912
16913 2006-06-01  Jackson Harper  <jackson@ximian.com>
16914
16915         * TreeView.cs: Set the default border style in the constructor.
16916         - Move painting to use OnPaintInternal instead of capturing
16917         WM_PAINT, this is the correct way of doing things
16918         - UpdateBelow shouldn't invalidate the scrollbar area
16919         - Cap the top on update below in case the node was above the top
16920         of the viewport rectangle.
16921         - ExpandBelow and Collapse below need to obey Begin/End Update.
16922         * TreeNode.cs: Make is_expanded internal so the treenode
16923         collection can change it without firing the whole event chain.
16924         * TreeNodeCollection.cs: When clearing all the child nodes make
16925         sure to recalc the visible order.
16926         - Improve algo for remove the top node
16927
16928 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16929
16930         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
16931           SendMessage directly calling window procedures, which in turn might
16932           call SetFocus()
16933
16934 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
16935
16936         * Control.cs: Don't handle WM_SETFOCUS if the same window already
16937           has focus (works around X11 sending a FocusIn after our SetFocus)
16938         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
16939
16940 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
16941
16942         * Mime.cs: Fix for the NET_2_0 build.
16943           NameValueCollection needs StringComparer now.
16944
16945 2006-05-31  Chris Toshok  <toshok@ximian.com>
16946
16947         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
16948         return (via an out parameter) the starting X of the column.
16949         (UpdateVisibleColumn): track change to FromPixelToColumn.
16950         (HitTest): add a ColumnResize case here.
16951         (DrawResizeLine): new function, probably poorly named.
16952
16953         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
16954         only need to keep one reference.
16955         (set_ListManager): same.
16956         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
16957         Also, add support for HitTestType.ColumnResize.
16958         (OnMouseMove): add column resize behavior here, and change the
16959         cursor to the correct one as we move around the datagrid.
16960         (OnMouseUp): terminate the column resize if we're resizing.
16961         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
16962         for the current cell.
16963         (ConnectListManagerEvents): use cached_currencymgr.
16964         (DisconnectListManagerEvents): fill this in, using
16965         cached_currencymgr.
16966         (SetCurrentCell): remove cached_currencymgr_events handling.
16967         (SetDataMember): only call DisconnectListManagerEvents if
16968         cached_currencymgr is != null.
16969         (SetDataSource): same.
16970         (OnListManagerCurrentChanged): cached_currencymgr_events ->
16971         cached_currencymgr.
16972
16973 2006-05-31  Jackson Harper  <jackson@ximian.com>
16974
16975         * BindingManagerBase.cs: Remove somedebug code that creeped into
16976         SVN.
16977         * TreeNode.cs: We get the indent level dynamically right now, so
16978         don't track it as a member.
16979         * TreeNodeCollection.cs: Make sure all nodes added to the list
16980         have parents, treeviews/topnodes setup properly.
16981         - Don't attempt to track indent level.
16982
16983 2006-05-30  Jackson Harper  <jackson@ximian.com>
16984
16985         * BindingContext.cs: Create the currency manager tables here.
16986         This allows us to more easily create null tables (when bad data
16987         members are used), and more easily create related currency
16988         managers.
16989         * CurrencyManager.cs: All the table creation stuff is done by the
16990         binding context now.
16991         - Current should throw an exception if listposition is -1.
16992         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
16993         been bound yet.
16994
16995 2006-05-30  Mike Kestner  <mkestner@novell.com>
16996
16997         * ListView.cs: allow reexpansion of zero-width column headers.
16998         Fixes #78528.
16999
17000 2006-05-28  Chris Toshok  <toshok@ximian.com>
17001
17002         * CurrencyManager.cs (get_Current): after the late binding
17003         listposition = -1 fix, we need to guard against it here and return
17004         null, otherwise we raise an exception (which is swallowed
17005         elsewhere, and breaks datagrid databinding.)
17006
17007 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
17008
17009         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
17010           than WM_SYSKEY, don't throw if get something unexpected (#78507)
17011
17012 2006-05-26  Jackson Harper  <jackson@ximian.com>
17013
17014         * ControlPaint.cs:
17015         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
17016         values, it's faster and it's all we care about (we don't care if
17017         the names aren't equal).
17018         * KeyboardLayouts.cs: Eliminate some dead code.
17019         - Lazy init things
17020         * X11Keyboard.cs: Lazy init keyboard detection.
17021         - Cleanup access modifiers a little.
17022
17023 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
17024
17025         * XplatUIX11.cs: Once again, attempting to get layout just right.
17026
17027 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
17028
17029         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
17030           the sizes of each link section, that will result in sizes that
17031           match DrawString's layout (Fixes #78391)
17032
17033 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
17034
17035         * FileDialog.cs: If AddExtension property is true autocomplete the
17036           extensions in SaveFileDialog correctly. Fixes bug #78453.
17037           Set MyNetwork and MyComputer to "C:\" for windows. This should
17038           fix part 8 of bug #78446 for now.
17039
17040 2006-05-26  Chris Toshok  <toshok@ximian.com>
17041
17042         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
17043         invalidate the current row header if we need to, but presumably
17044         we'll invalidate the row corrsponding to the bounds or
17045         editingControl.
17046         (GridHScrolled): switch back to this method, as it's part of the
17047         public api.  *sigh*.
17048         (GridVScrolled): same.
17049         (OnMouseWheel): hack up something that more or less works.  Call
17050         GridHScrolled/GridVScrolled directly, instead of duplicating much
17051         of their code here.
17052         (EnsureCellVisibility): reinstate a bunch of this code, since we
17053         can't just set the scrollbar Value and expect to do all the work
17054         in the ValueChanged handler.  Also, Call Update() after scrolling
17055         in one direction so the other XplatX11.ScrollWindow call has the
17056         proper stuff in the proper places.
17057         (EditCell): set is_editing to true before calling .Edit.
17058
17059         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
17060         don't bother comparing first.
17061         (OnKeyPress): call grid.ColumnStartedEditing before calling
17062         base.OnKeyPress.  this will set is_changing and invalidate the row
17063         header if necessary.
17064         (ProcessKeyMessage): for WM_CHAR messages, call
17065         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
17066         and WM_KEYDOWN.
17067         
17068         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
17069         it's done in the DataGrid.
17070         (NextState): call grid.ColumnStartedEditing, which takes care of
17071         invalidating the row header (and setting is_changing).
17072
17073         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
17074         here.  it's done in the DataGrid.
17075
17076 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17077
17078         * Control.cs: allow changing the cursor when the mouse position is
17079         out of bounds but Capture is set.
17080         * LinkLabel.cs: handle the case when the mouse button is pressed on the
17081         linklabel but released somewhere else.
17082
17083 2006-05-25  Jackson Harper  <jackson@ximian.com>
17084
17085         * TreeView.cs: When we get focus if there is no selected node make
17086         it the top node
17087         - Remove some uneeded setup code from Draw.
17088         * TreeNodeCollection.cs: If the tree doesn't have a top node when
17089         a new node is inserted make the new node the top.
17090         * XplatUIX11.cs:
17091         * Timer.cs: Use Utc time so that no local time zone stuff needs to
17092         be used (should be faster).
17093         
17094 2006-05-25  Chris Toshok  <toshok@ximian.com>
17095
17096         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
17097         problem with the last commit.
17098
17099 2006-05-25  Chris Toshok  <toshok@ximian.com>
17100
17101         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
17102         need the invalidate call here, while scrolling right-to-left via
17103         the left arrow key (i.e. moving the editing cell while scrolling).
17104
17105         * DataGrid.cs (.ctor): remove the initialization of
17106         ctrl_pressed/shift_pressed.  We no longer track them using key
17107         up/down handlers, but by using Control.ModifierKeys.  Also, switch
17108         to using ValueChanged handlers on the scrollbars instead of
17109         Scrolled event handlers.  This simplifies a bunch of the scrolling
17110         code.
17111         (GridHValueChanged): rename from GridHScrolled, and change it to
17112         work with the new event args.
17113         (GridVValueChanged): same.
17114         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
17115         (OnMouseWheel): actually scroll the datagrid.  Don't change the
17116         selected cell.
17117         (ProcessGridKey): correct all the keyboard navigation stuff I
17118         could find.  Ctrl up/down/left/right/home/end work now.
17119         (EnsureCellVisibility): correct method name spelling.  Also,
17120         simplify this a touch by not explicitly calling the
17121         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
17122         scrollbar value.
17123         (OnKeyUpDG): no need for this method now.
17124         
17125 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17126
17127         * LinkLabel.cs: display the OverrideCursor when hovering the label.
17128         Fixes bug #78392.
17129
17130 2006-05-25  Chris Toshok  <toshok@ximian.com>
17131
17132         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
17133         r61019.
17134
17135 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
17136
17137         * Application.cs: Moved setting of is_modal and closing to before
17138           we create the control, to allow the event handlers called as a
17139           result of creation affect closing. Also removed Gonzalo's previous
17140           change to setting DialogResult, the behaviour has been moved to 
17141           Form.ShowDialog()
17142         * Form.cs: 
17143           - ShowDialog(): Removed explicit creation of the form, let RunLoop
17144             handle it instead
17145           - ShowDialog(): If no dialog result is set, we need to return Cancel
17146           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
17147             the close is cancelled
17148
17149 2006-05-25  Jackson Harper  <jackson@ximian.com>
17150
17151         * StatusBar.cs: We only need to update the sizes of the other
17152         panels when we have auto size contents.  Also we are only updating
17153         the contents of the panel, not the borders, so compensate for the
17154         border width (TODO: get this width from the theme somehow).
17155         * TreeView.cs: Scrollable is true by default
17156         - Use invalidate instead of refresh where needed
17157         - Factor the scrollable value into scrollbar updating
17158         - Update the scrollbars if the Scrollable property is altered
17159         - Update the selected node if its ImageIndex is changed
17160         - Handle null nodes in UpdateNode (mainly so we don't have to
17161         check if selected is null when updating it
17162         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
17163         are factored into the visible count
17164         - Use VisibleCount for clarity in the code
17165         - When the font is changed we need to recurse through all the
17166         nodes and invalidate their sizes
17167         
17168 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17169
17170         * Application.cs: set the DialogResult to fixed when the main form is
17171         hidden or destroyed while being modal.
17172
17173 2006-05-25  Miguel de Icaza  <miguel@novell.com>
17174
17175         * Theme.cs: Use Tangoified messagebox icons. 
17176
17177         (GetSizedResourceImage): Also cope with width = 0 and do not
17178         trigger a warning in that case (0 means "give me your icon from
17179         the resouce, no special size needed).
17180
17181 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
17182
17183         * Application.cs: Leave runloop if the the main modal form is 
17184           hidden (fixes #78484)
17185
17186 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
17187
17188         * BindingContext.cs : reject null datasource in Contains() and
17189           Item[].
17190         * CurrencyManager.cs : check data_member validity when data_source
17191           is dataset. When it is late binding, the initial position is -1.
17192
17193 2006-05-24  Jackson Harper  <jackson@ximian.com>
17194
17195         * TreeNodeCollection.cs: Dont't recalculate the visible order on
17196         inserted nodes that aren't visible.  This changes the
17197         max_visible_order which confuses scrollbar settings.
17198         - Use the enumerator to get the prev node instead of duplicating
17199         code.
17200         * TreeView.cs: Use new method for setting scrollbar values
17201         - Don't set the bounds every time the scrollbar is updated
17202         - When updating below the root node use an invalidate instead of a
17203         refresh to prevent the child controls (scrollbars) from being
17204         refreshed. (UpdateBelow still needs to be reworked anyways).
17205         - Reenable SetBottom now that visible orders are set correctly,
17206         added some debug code incase we ever get bad values there again.
17207         - Set the scrollbar max to 2 less then the max value, this
17208         compensates for the max value being one above the node count, and
17209         for scrollbars adding one extra "notch".
17210         - When drawing image nodes if there is an imagelist we draw the
17211         first image in the list if the supplied image index is out of the
17212         image list's bounds.
17213         
17214 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
17215
17216         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
17217           we receive a size change from the WM (Fixes #78503)
17218
17219 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
17220
17221         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
17222           rectangle (Fixes #78501)
17223
17224 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
17225
17226         * ButtonBase.cs: 
17227           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
17228             as a bitfield.
17229           - Fixed MouseMove to no longer switch pressed state unless the left
17230             mouse button is pressed. Atsushi provided the original patch (#78485)
17231           
17232 2006-05-24  Jackson Harper  <jackson@ximian.com>
17233
17234         * ScrollBar.cs: New internal methods that allow us to change a
17235         couple values on the scrollbar (the most common case is maximum
17236         and large change) without getting multiple invalidates.
17237
17238 2006-05-24  Chris Toshok  <toshok@ximian.com>
17239
17240         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
17241         (Edit): save off the original state in oldState, and set
17242         grid.is_editing to true.
17243         (OnKeyDown): abort editing if escape is pressed.  also, call
17244         NextState if space is pressed.
17245         (OnMouseDown): call NextState.
17246         (NextState): factor out shared code from OnKeyDown and OnMouseDown
17247         here.  Also, only invalidate the row header once (on the initial
17248         is_changing switch) to save on redraws.
17249
17250 2006-05-24  Chris Toshok  <toshok@ximian.com>
17251
17252         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
17253         if the value in the cell is different than it was before.  This
17254         keeps us from triggering a layout when we move around a datarid
17255         with a highlighted cell.
17256         (Edit): suspend layout when creating/positining the text box, and
17257         resume passing false so we don't ever actually re-layout.
17258         (ReleaseHostedControl): same.
17259         (EnsureTextBox): reformat slightly, and set WordWrap to false.
17260
17261         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
17262         control-key sequences should go to the datagrid - remove that
17263         lock.  Also, modify the conditions under which we move between
17264         cells when moving the cursor within a cell, and remove the "this"
17265         and "base" from field accesses.  We weren't even consistent, given
17266         they all were in the base class.
17267
17268 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
17269
17270         * Binding.cs : (.ctor)
17271           An obvious NRE fix for BindingTest.CtorNullTest().
17272
17273 2006-05-23  Chris Toshok  <toshok@ximian.com>
17274
17275         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
17276         them between lines.  This fixes some quirks editing cells in the
17277         datagrid.
17278
17279 2006-05-23  Jackson Harper  <jackson@ximian.com>
17280
17281         * TreeView.cs: Use begin/end update when doing expand/collapse all
17282         so that we don't get flicker on the scrollbar.
17283
17284 2006-05-23  Jackson Harper  <jackson@ximian.com>
17285
17286         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
17287         treenode calculations to be independant of the painting code. To
17288         do this nodes track a visible order which is calculated by the
17289         treeview.
17290         - Call new methods for expanding/collapsing nodes.  These methods
17291         use scrollwindow so we don't have to update everything below the
17292         node.
17293         * TreeView.cs: Refactored drawing and scrolling code.  We don't
17294         need to update nodes when drawing anymore or calculate scrollbar
17295         stuff.
17296         - Added new methods for expanding/collapsing nodes. These methods
17297         use ScrollWindow so as to not have to redraw all the nodes below.
17298         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
17299         we add/remove nodes or sort.
17300         - Handle removing the selected and the top node properly.
17301
17302 2006-05-23  Chris Toshok  <toshok@ximian.com>
17303
17304         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
17305         maybe this should actually happen in the datagrid code?
17306         (EndEdit): no need to invalidate anything, given that
17307         ReleaseHostedControl causes the datagrid to relayout, which
17308         invalidates everything anyway.
17309
17310         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
17311         in SetCurrentCell).
17312         (set_SelectionBackColor): call InvalidateSelection instead of
17313         Refresh.
17314         (set_SelectionForeColor): same.
17315         (BeginEdit): Flesh this out a bit.
17316         (CancelEditing): only do any of this if we're editing/adding.
17317         (EndEdit): same.
17318         (OnMouseDown): there's no need to cancel editing here, it's done
17319         in SetCurrentCell.
17320         (SetCurrentCell): only invalidate the current row header if it's a
17321         different row than the new one.
17322         (ShiftSelection): fix this to work like MS does.
17323         (ResetSelection): factor out the invalidation of selected_rows to
17324         InvalidateSelection.
17325         (SetDataSource): cancel any editing that's going on.
17326
17327         * DataGridColumnStyle.cs
17328         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
17329         call the non-interface version.
17330
17331         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
17332         header rectangle with the clip rectangle so we don't redraw the
17333         entire header for just a small area.  Gets rid of the last flicker
17334         when horizontally scrolling.
17335         (DataGridPaintRow): same.
17336
17337 2006-05-23  Mike Kestner  <mkestner@novell.com>
17338
17339         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
17340         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
17341         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
17342         Critical bug report.
17343
17344 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
17345
17346         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
17347           and this fixes #78493
17348
17349 2006-05-23  Miguel de Icaza  <miguel@novell.com>
17350
17351         * Theme.cs (GetSizedResourceImage): Scale images if the proper
17352         size is not found.  
17353         
17354         * FileDialog.cs: Do not change the background for the side bar as
17355         it wont work nicely with the theme, and also reduces the artifacts
17356         in rendering the icons (which I want to fix too).
17357
17358         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
17359         resources, not resgen resources. 
17360
17361         (PlatformDefaultHandler): Pull images using the new API.
17362
17363 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
17364
17365         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
17366           a reference to the hwnd and will not remove it unless there are
17367           no pending exposures (fixes #78341)
17368         * XplatUI.cs: Improved debug
17369
17370 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
17371
17372         * MenuAPI.cs : don't handle OnClick event when it was not the left
17373           button. Fixed bug #78487.
17374
17375 2006-05-23  Mike Kestner  <mkestner@novell.com>
17376
17377         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
17378         prefer submenus to the top menu for item lookup, to avoid popping down
17379         top-row items.
17380
17381 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
17382
17383         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
17384           Graphics.FillRectangle as the visual results are really bad (even
17385           on win). We now draw perfect arrows (and perfect shadows when the
17386           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
17387           Pen.DashPattern to draw the dots of each line.
17388
17389 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
17390
17391         * FileDialog.cs: Update the filename combobox when navigating through
17392           the ListView with the cursor keys. Fixes part 7 of bug #78446.
17393
17394 2006-05-22  Mike Kestner  <mkestner@novell.com>
17395
17396         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
17397         Fixes #78463.
17398
17399 2006-05-22  Mike Kestner  <mkestner@novell.com>
17400
17401         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
17402         requests. Fix a misspelled parameter and a copy paste exception error
17403         in Select.
17404
17405 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
17406
17407         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
17408           to get the same width/height (5/13) on X11 as the default font has on
17409           win32. This means that our DefaultFont emSize is smaller than the 
17410           the MS SWF equivalent (even thought the width/height stays the same)
17411
17412 2006-05-20  Jackson Harper  <jackson@ximian.com>
17413
17414         * MdiClient.cs:
17415         * MdiWindowManager.cs:
17416         * InternalWindowManager.cs: Make sure to use the border width from
17417         the theme.
17418
17419 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
17420
17421         * PrintDialog.cs: Implements printer details
17422
17423 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
17424
17425         * FileDialog.cs: Added focus handling for PopupButtonPanel.
17426           Fixes part 1 and 2 of bug #78446
17427
17428 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
17429
17430         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
17431           instead of sticking to the first ever calculated value
17432
17433 2006-05-19  Mike Kestner  <mkestner@novell.com>
17434
17435         * ComboBox.cs: fix mouse motion selection to use MousePosition and
17436         PointToClient, since Capture is set. Fixes #78344.
17437
17438 2006-05-19  Mike Kestner  <mkestner@novell.com>
17439
17440         * ListView.cs: match MS behavior in Details view where items are not
17441         drawn if Columns.Count == 0. 
17442         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
17443         Use a separate pen to draw the check, since changing the width affects
17444         the box as well.  Fixes #78454.
17445
17446 2006-05-18  Miguel de Icaza  <miguel@novell.com>
17447
17448         * ListView.cs: ArgumentOutOfRangeException, single versions of the
17449         exception should throw the name of the invalid argument.
17450
17451         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
17452         there are no files listed. 
17453
17454 2006-05-18  Jackson Harper  <jackson@ximian.com>
17455
17456         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
17457         up.
17458
17459 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17460
17461         * Control.cs: Brought back our old UpdateZOrder method as a private
17462           function and switched our calls from UpdateZOrder to the new one.
17463           This fixes the Paint.Net canvas disappearing bug.
17464
17465 2006-05-18  Jackson Harper  <jackson@ximian.com>
17466
17467         * Theme.cs:
17468         * ThemeWin32Classic.cs:
17469         * InternalWindowManager.cs: Move the drawing into the theme,
17470         expose everything the theme should need from the window manager.
17471
17472 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17473
17474         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
17475           from the call to NativeWindow to avoid walking up the parent chain
17476           further than needed (speeds up setting cursors and avoids setting
17477           the wrong cursor if a parent has another cursor defined)
17478         * Cursor.cs: When loading an icon as cursor, MS uses the center of
17479           the icon as hotspot, not what's contained as hotspot in the icon
17480           file. This fixes the perceived drawing offset seen with Paint.Net
17481         
17482 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17483
17484         * XplatUIX11.cs: 
17485           - Store the calculated rectangle in Hwnd object and use it when 
17486             setting the client size
17487           - Force Toolwindows to always be type Dock, to ensure they're on top
17488
17489 2006-05-18  Mike Kestner  <mkestner@novell.com>
17490
17491         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
17492         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
17493         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
17494         Substantial refactoring to remove confusing nested classes. Coding
17495         standard and Get+Set->property refactorings.  Shift to index based
17496         highlighting in ComboListBox instead of constantly using IndexOf and
17497         Items[]. Add invalidations on resize for DropDownList to fix ugliness
17498         in FileDialog growth.  Draw borders manually since Simple mode needs
17499         to look like two independent controls.  Make listbox border
17500         conditional to DropDownStyle.  Improved OwnerDraw support.
17501
17502 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
17503
17504         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
17505         Don't set the disposed graphics to null, so we can throw the "right"
17506         exception if the graphics is reused later (added a flag to avoid 
17507         double disposing). Some behaviours are different under 2.0 and are
17508         filled under bug #78448.
17509
17510 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17511
17512         * Control.cs: When double-buffering is enabled, we need to reset
17513           our graphics context between paint calls. Otherwise, any 
17514           transformations and other alterations on the context will 
17515           become cumulative (#77734)
17516
17517 2006-05-18  Mike Kestner  <mkestner@novell.com>
17518
17519         * ListView.cs: do focused item selection like MS on clicks. 
17520         Rework focus handling for ItemControl so LostFocus invalidates as
17521         well.
17522         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
17523         the ListView ItemControl has focus.
17524
17525 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
17526
17527         * XplatUIX11.cs: If client_window ends up being width or height zero
17528           due to border settings, move it off window inside whole_window (#78433)
17529
17530 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17531
17532         * Mime.cs: Shrink the mime file cache correctly.
17533
17534 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17535
17536         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
17537
17538 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17539
17540         * XplatUIX11.cs (AddExpose): More sanity checks
17541
17542 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17543
17544         * XplatUIX11.cs:
17545           - AddExpose: Don't add expose ranges outside the size of our
17546             window
17547           - Cast opacity values to Int32 to avoid crashes with certain
17548             values
17549           - Added disabled code paths that protect against illegal cross-
17550             thread painting (Developers.exe)
17551
17552 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17553
17554         * ProgressBar.cs: Invalidate the control when it's resized
17555           since block size is based on control size. (#78388)
17556
17557 2006-05-16  Miguel de Icaza  <miguel@novell.com>
17558
17559         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
17560         of setting the incoming argument to the "reset" value, we set the
17561         this.datamember to string.empty (before we were invalidating the
17562         incoming data).   
17563
17564         Fixes 78420
17565
17566 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17567
17568         * Form.cs: Only apply transparency settings after the form
17569           is created. (Fixes #77800)
17570
17571 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17572
17573         * ApplicationContext.cs: Grab the HandleDestroyed event so
17574           we know when to fire OnMainFormClosed 
17575
17576 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17577
17578         * Application.cs: Introduced sub-class to allow tracking of
17579           threads and centralized triggering of the event mess for
17580           ThreadExit, AppExit, etc..  (#76156)
17581
17582 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
17583
17584         * MimeIcon.cs:
17585           - Do not return a null icon index value for a mime subclass.
17586             Instead try the main mime type class too.
17587           - Seems that some newer distributions don't have a link to some
17588             gnome default icons anymore. So check the default gnome dir too.
17589           
17590
17591 2006-05-16  Jackson Harper  <jackson@ximian.com>
17592
17593         * MdiClient.cs: Don't paint the parent background image if we have
17594         our own background image.
17595
17596 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17597
17598         * Control.cs:
17599           - PerformLayout: Do not shrink space filled by DockStyle.Fill
17600             controls, all filled controls are supposed to overlap (#78080)
17601           - UpdateZOrder is supposed to update the control's z-order in the
17602             parent's z-order chain. Fixed to behave like that
17603           - BringToFront: Removed obsolete code
17604           - SendToBack: Simplyfied
17605           - SetChildIndex: Trigger layout calculations when Z-order changes
17606             since layout is done by z-order
17607
17608 2006-05-16  Chris Toshok  <toshok@ximian.com>
17609
17610         [ fixes bug #78410 ]
17611         * DataGrid.cs (set_AlternatingBackColor): use
17612         grid_drawing.InvalidateCells instead of Refresh().
17613         (set_BackColor): call grid_drawing.InvalidateCells.
17614         (set_BackgroundColor): use Invalidate instead of Refresh.
17615
17616         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
17617         invalidate the cell area.
17618
17619 2006-05-15  Chris Toshok  <toshok@ximian.com>
17620
17621         [ fixes bug #78011 ]
17622         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
17623         on to DataGridPaintRow.
17624         (DataGridPaintRow): take a clip argument, and only draw the cells
17625         which intersect it.  same with the not_usedarea.
17626
17627         * Theme.cs (DataGridPaintRow) add @clip parameter.
17628
17629         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
17630         XplatUI.ScrollWindow.
17631         (ScrollToRow): same.
17632
17633         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
17634         with last column which was causing a gray swath to appear with the
17635         XplatUI.ScrollWindow code.
17636
17637 2006-05-15  Chris Toshok  <toshok@ximian.com>
17638
17639         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
17640         use XplatUI.ScrollWindow.
17641         (VerticalScrollEvent): use XplatUI.ScrollWindow.
17642
17643 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
17644
17645         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
17646
17647 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17648
17649         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
17650           file since there are no equivalent X11 cursors
17651
17652 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17653
17654         * MonthCalendar.cs : DateTimePicker should reflect selected date
17655           on mouse*up*, not mouse*down*. Fixed originally reported part of
17656           bug #76474.
17657
17658 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17659
17660         * TabControl.cs : When argument index is equal or more than tab
17661           count, just ignore. Fixed bug #78395.
17662
17663 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17664
17665         * Control.cs: Dispose all child controls when control is diposed (#78394)
17666
17667 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17668
17669         * ColorDialog.cs: Finally it is possible to select the color with
17670           the text boxes
17671
17672 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17673
17674         * PrintDialog.cs: Fix typo
17675
17676 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17677
17678         * PrintDialog.cs: PrintDialog is not resizable
17679         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
17680           color. Made some ToolBar drawing methods protected virtual.
17681
17682 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
17683
17684         * PrintDialog.cs: Implementation of the PrintDialog
17685
17686 2006-05-12  Chris Toshok  <toshok@ximian.com>
17687
17688         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
17689         thumb, instead use MoveThumb.  This has the side effect of making
17690         most of the other thumb moving machinery use MoveThumb as well.
17691         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
17692         need to actually invalidate the rectangle where the new thumb will
17693         go.
17694         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
17695         We force an Update() after, so it's not as fast as it could be,
17696         but at least there's zero flicker and no droppings.
17697         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
17698         (UpdateThumbPos): add another argument (dirty), which says whether
17699         or not to calculate/add dirty regions which we later invalidate.
17700         For cases where we know we're going to use MoveThumb, we pass
17701         false for this.  Otherwise, pass true.
17702
17703 2006-05-12  Jackson Harper  <jackson@ximian.com>
17704
17705         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
17706         the status bar.
17707         
17708 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
17709
17710         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
17711           and GetClipRegion methods and UserClipWontExposeParent property.
17712         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
17713           overriding UserClipWontExposeParent property, setting to false, since
17714           Win32 handles the required expose messages to draw our clipped parent
17715           areas internally
17716         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
17717           PaintEventStart to set the user clip region if set.
17718         * Control.cs: 
17719           - Now internally tracking the Region for the control since we need to
17720             store it if the handle is not yet created and only set it when it
17721             becomes created. Before setting the region forced handle creation
17722           - Added code to draw the parents underneath a user-clipped region
17723         * Hwnd.cs: Added UserClip property
17724
17725 2006-05-12  Chris Toshok  <toshok@ximian.com>
17726
17727         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
17728         (set_Maximum): same.
17729         (set_Minimum): same.
17730         (set_SmallChange): same.
17731         (OnMouseUpSB): remove the call to refresh when releasing the
17732         thumb.  We shouldn't need it.
17733         
17734 2006-05-12  Miguel de Icaza  <miguel@novell.com>
17735
17736         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
17737         AutoSize set to None, we do not need to relayout everything, we
17738         just need to invalidate the current region.
17739
17740         (Draw): Do not draw the entire ClientArea, just redraw the
17741         clip area being passed.
17742
17743         * MdiClient.cs: Make MdiClient constructor with the Form argument
17744         internal. 
17745
17746 2006-05-12  Jackson Harper  <jackson@ximian.com>
17747
17748         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
17749         parents background image,  but strangely not their own.
17750         - (DrawStatusBarPanel): Take into account horizontal alignment
17751         when drawing the strings and icons.
17752
17753 2006-05-12  Mike Kestner  <mkestner@novell.com>
17754
17755         * ListBox.cs: avoid invalidations for focus when the collection is
17756         empty. 
17757
17758 2006-05-12  Chris Toshok  <toshok@ximian.com>
17759
17760         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
17761         invalidate the entire thumb area.  Call InvalidateDirty which
17762         limits the redraw to the thumb itself and surrounding pixels.
17763
17764         * XplatUIX11.cs (ScrollWindow): optimize copying.
17765         
17766 2006-05-12  Chris Toshok  <toshok@ximian.com>
17767
17768         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
17769         Figure out the positioning/layout in a single pass instead of
17770         multiple recursive invocations.  Speeds up the initial display of
17771         the data grid.  Also, make many things private that were
17772         originally public but unused outside this class.
17773
17774 2006-05-11  Jackson Harper  <jackson@ximian.com>
17775
17776         * MdiClient.cs: Improved layout code.
17777
17778 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
17779
17780         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
17781           not SelectedObject.
17782
17783 2006-05-11  Chris Toshok  <toshok@ximian.com>
17784
17785         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
17786         union of that will always be {0,0,width,height}.
17787
17788 2006-05-11  Jackson Harper  <jackson@ximian.com>
17789
17790         * Form.cs: Match MS's DefaultSize for forms (they must have
17791         changed the size in sp2).
17792
17793 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17794
17795         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
17796
17797 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17798
17799         * TextControl.cs : Fixed bug #78109. This incorrect position
17800           comparison caused crash on automatic line split.
17801         * TextBoxBase.cs : reduce duplicate code.
17802
17803 2006-05-10  Jackson Harper  <jackson@ximian.com>
17804
17805         * MdiClient.cs: Active form is only sent to the back when using
17806         the Next form functionality, when a form is clicked the current
17807         active shouldn't be sent to the back.
17808         - Layout the mdi windows when the container is first made visible.
17809         * Form.cs: Give the MdiClient a ref to the containing form when we
17810         create it.
17811         
17812 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17813
17814         * LinkLabel.cs : link_font could be uninitialized, so populate one
17815           before actual use. Fixed bug #78340.
17816
17817 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17818
17819         * XplatUIX11.cs : clipboard format native value is IntPtr.
17820           Fixed bug #78283.
17821
17822 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17823
17824         * Control.cs: 
17825           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
17826             which is passed up the parent chain by DefWndProc
17827           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
17828             to DefWndProc (#77956)
17829         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
17830
17831 2006-05-10  Jackson Harper  <jackson@ximian.com>
17832
17833         * MdiClient.cs: We need to remove the controls from the mdi
17834         collection, when we close the window.
17835         * MdiWindowManager.cs: Special handling of closing mdi windows.
17836         * InternalWindowManager.cs: Make the close method virtual so the
17837         mdi window manager can handle it specially.
17838
17839 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
17840
17841         * DataGrid.cs:
17842           - Recalculate grid when the data source has changed
17843           - Matches styles provided by user from all data sources types
17844         * DataGridTableStyle.cs: For columns that provided by the user set the
17845         with the preferred value is there was unassigned.
17846         * CurrencyManager.cs: throw OnItemChanged event
17847
17848 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
17849
17850         * PictureBox.cs: Don't animate until handle is created. Start animation
17851           when handle is created.
17852
17853 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17854
17855         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
17856           current codebase.
17857         * XEventQueue.cs: We don't need to provide the extra info
17858
17859 2006-05-10  Jackson Harper  <jackson@ximian.com>
17860
17861         * MdiClient.cs: If the mdi clients parent form has a background
17862         image set, we draw that background image for the mdi area's
17863         background.
17864
17865 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17866
17867         * TextBoxBase.cs: Set IBeam cursor (#78347)
17868
17869 2006-05-10  Mike Kestner  <mkestner@novell.com>
17870
17871         * ToolBar.cs: fix some text padding issues with ButtonSize
17872         calculation. Update the default size to match MS documentation.
17873         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
17874         button size. Fixes #78296.
17875
17876 2006-05-10  Mike Kestner  <mkestner@novell.com>
17877
17878         * ListBox.cs: use is_visible for scrollbar positioning in case the
17879         control isn't on screen yet.  Fix off by one with Right vs Width
17880         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
17881         
17882 2006-05-10  Jackson Harper  <jackson@ximian.com>
17883
17884         * X11Dnd.cs: Drop to a control with another control on top of it.
17885         * ToolBar.cs: Work on a copy of the buttons list, so that it can
17886         be modified in click handlers. TODO: Look for similar problems in
17887         other controls.
17888
17889 2006-05-09  Jackson Harper  <jackson@ximian.com>
17890
17891         * Form.cs: Window managers need the old window state when setting
17892         window state now.
17893         * InternalWindowManager.cs: Allow the base mdi window manager to
17894         handle more of the MDI only stuff (like maximize buttons).
17895         * MdiWindowManager.cs: Fix some snafus in changing the window
17896         state.  Add all the menu functionality, for both popup and
17897         maximized menus.
17898         * MdiClient.cs: When a new form is selected the currently
17899         activated form is sent to the back, this matches MS.
17900         - Implement a new method to activate the next mdi child window.
17901
17902 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
17903
17904         * Control.cs: 
17905           - Added new InternalCapture method to allow controls to prevent
17906             the capture behaviour on the click handlers
17907           - Switched to use InternalCapture
17908         * ComboBox.cs:
17909           - Using InternalCapture to prevent mouse captures from being released
17910             on mouse button release (Fixes #78100)
17911         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
17912           returns Form borders if a caption is present. (Fixes #78310)
17913
17914 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
17915
17916         * TreeNode.cs: Changed serialization .ctor to not require every field
17917           to be present. (#78265)
17918         * OwnerDrawPropertyBag.cs: Added serialization .ctor
17919
17920 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
17921
17922         * MimeIcon.cs: for is faster than foreach for strings.
17923
17924 2006-05-05  Mike Kestner  <mkestner@novell.com>
17925
17926         * CheckedListBox.cs: update check handling code to not use selected.
17927         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
17928         behavior for visual feedback, motion response, shift/ctrl handling,
17929         and properly deal with all 4 selection modes. Updates to bounds
17930         handling logic.  Add scroll wheel support. [Fixes #77842]
17931
17932 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17933
17934         * ListView.cs:
17935           - Moved adding of Implicit controls into .ctor. That way, subsequent
17936             creation of the controls will not cause them to think they are 
17937             toplevel windows (fixes #78200 header problem)
17938           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
17939           - Switched visibility setting of header control to use internal field
17940             to avoid triggering handle creation
17941           - Now checking if handle is created before causing a refresh when items
17942             are added (This makes us now match handle creation time with MS)
17943         * Splitter.cs: Removed loading of private splitter cursor, switched to
17944           Cursors version now that that is loading the right ones
17945         * Cursors.cs: Load proper splitter cursors from resources
17946         * Cursor.cs: Added second method of loading resource cursors for the 
17947           VS.Net users amongst us
17948
17949 2006-05-05  Mike Kestner  <mkestner@novell.com>
17950
17951         * ListView.cs: give header_control a minimum size based on the
17952         ListView size.
17953
17954 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17955
17956         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
17957           window seems to do that with metacity, so set that type. (#78120)
17958
17959 2006-05-05  Mike Kestner  <mkestner@novell.com>
17960
17961         * ListViewItem.cs: fix Details mode checkbox layout bug.
17962         * ThemeWin32Classic.cs: draw a ListView column header for unused space
17963         at the end of the header, if it exists. [Fixes for #78200]
17964
17965 2006-05-04  Jackson Harper  <jackson@ximian.com>
17966
17967         * MdiClient.cs: Add a helper property to get the container form.
17968         * MdiWindowManager.cs: We have to make sure to use the menu origin
17969         when drawing the icons and buttons, this fixes maximized window
17970         icons/buttons on win32.
17971         * InternalWindowManager.cs: Reset the restore captions when a
17972         window goes from Maximized to Minimized and vice versa. Move the
17973         DrawMaximizedButtons into the MdiWindowManager source, tool
17974         windows can't be maximized. NOTE: This could use a little
17975         refactoring if time ever permits.
17976         
17977 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17978
17979         * TextBox.cs: Add MWFCategoryAttributes
17980         * TextBoxBase.cs: Add MWFCategoryAttributes
17981         * Form.cs: Add MWFCategoryAttributes
17982
17983 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17984
17985         * Control.cs: Add MWFCategoryAttributes
17986         * ScrollableControl.cs: Add MWFCategoryAttributes
17987
17988 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
17989
17990         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
17991           Divider is true. Fix a little glitch in PropertyToolBar
17992           drawing code
17993
17994 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
17995
17996         * Control.cs:
17997           - Dispose: Call base.Dispose, this causes the disposed event
17998             to be fired (and probably other, more important stuff)
17999           - SetVisibleCore: Set is_visible to true after creating the
18000             window so that the window still gets created invisible (if
18001             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
18002             to generate a WM_ACTIVE message
18003         * Form.cs: Call Dispose when we want to destroy the window, instead of
18004           just destroying the handle (Dispose will do that for us)
18005         * XplatUIX11.cs:
18006           - RootWindow also needs a queue, so we can properly process the
18007             property change events from RootWindow (like Activate)
18008           - Generatic synthetic WM_ACTIVE message when the active window is
18009             being destroyed
18010
18011 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
18012
18013         * LinkLabel.cs: Trigger a recalc of our label dimensions when
18014           bounds are changed
18015
18016 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
18017
18018         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
18019           for determining width and height (image might not be assigned if
18020           we're drawing an imagelist)
18021
18022 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
18023
18024         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
18025         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
18026           height from system
18027         * Theme.cs: No longer returns hardcoded menu height, instead calls
18028           new driver method
18029         * Form.cs (OnLoad): Scaling happens before triggering Load events 
18030           on MS (# 78257)
18031
18032 2006-05-01  Mike Kestner  <mkestner@novell.com>
18033
18034         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
18035
18036 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
18037
18038         * TextBoxBase.cs: Removed Fixme
18039         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
18040
18041 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
18042
18043         * XplatUIX11.cs:
18044           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
18045             the rectangle relative to the parent, considering borders. We
18046             don't really want that.
18047           - ScrollWindow: Fixed warning to be more understandable
18048         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
18049           scrollbars and scroll only the visible area
18050         * RichTextBox.cs: Removed debug output
18051
18052 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18053
18054         * NumericUpDown.cs (Text): Just use base
18055         * UpDownBase.cs: Ensure txtView is created before using it
18056
18057 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
18058
18059         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
18060           casting to IntPtr to avoid 64bit overflow errors
18061
18062 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18063
18064         * Control.cs:
18065           - AllowDrop: Don't force handle creation.
18066           - CreateHandle: Added call to tell driver if we're allowed to drop
18067
18068 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18069
18070         * FileDialog.cs: Remember the last directory not only for the
18071           current instance but also for new FileDialog instances.
18072
18073 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
18074         
18075         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
18076           broke sending async messages
18077
18078 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18079
18080         * XplatUIX11.cs:
18081           - ScrollWindow: Fixed method. We finally generate expose events again
18082             for scrolled areas. This was causing 'garbage' when scrolling
18083             textbox and other controls that used ScrollWindow
18084           - Switched from using the regular queue for paint events to the MS 
18085             model of 'generating' paint events when the queue is empty.
18086             We use the new XQueueEvent.Paint subclass to store which windows
18087             need painting.
18088           - AddExpose now takes the x/y/width/height of the exposed area
18089             and inserts the window into the paint queue if not already there
18090           - InvalidateWholeWindow: Switched to use new AddExpose method
18091           - UpdateMessageQueue: Added which queue to monitor for paint events
18092           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
18093             the unlikely case nothing above handles it. We reset the expose
18094             pending states to get them off the queue.
18095           - GetMessage: Now pulls a paint event if no other events are in the
18096             queue
18097           - Invalidate: Switched to new AddExpose method
18098           - PeekMessage: Updated to understand pending paint events
18099           - UpdateWindow: Fixed logic bug. We were only updating if the window
18100             didn't need updating. Also switched to sending WM_PAINT directly,
18101             like MS does.
18102         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
18103           and random access Remove(). The random access is needed to handle
18104           UpdateWindow() where a WM_PAINT is sent directly without accessing
18105           the queue.
18106         * ScrollBar.cs: Added Update() calls to cause immediate updates to
18107           allow for better feedback when scrolling. Scrollbars are small and
18108           the immediate update should make it 'feel' more responsive without
18109           slowing things down. ScrollBar still needs it's invaliate logic
18110           updated to not always invalidate the whole bar on certain changes.
18111
18112 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18113
18114         * Control.cs:
18115         (BackColor): if the control does not support a transparent background,
18116         return the default backcolor when the parent backcolor is transparent.
18117
18118 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
18119
18120         * Application.cs: Updated to new StartLoop/GetMessage API
18121         * RichTextBox.cs: Provide some output on RTF parsing errors
18122         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
18123           new queue_id argument to GetMessage and PeekMessage to allow faster
18124           handling of per-thread queues in drivers.
18125         * Hwnd.cs: Added Queue tracking and property
18126         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
18127         * XEventQueue.cs: Added thread trackingA
18128         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
18129         * XplatUIX11.cs:
18130           - Implemented new per-thread queue
18131           - GetMessage: Fixed return/break behaviour on several cases. We were
18132             returning stale messages in some cases, instead of just processing
18133             the next message
18134
18135 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
18136
18137         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
18138
18139 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
18140
18141         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
18142           fixed off-by-one comparisons between Width/Height and Right/Bottom.
18143
18144 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
18145
18146         * PropertyGridView.cs: Fix drop down width.
18147
18148 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18149
18150         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
18151           a mess in DrawToolBar, so I removed one of them.
18152
18153 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18154
18155         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
18156           needed (clip). Otherwise we get artifacts.
18157
18158 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
18159
18160         * FixedSizeTextBox.cs: Added constructor to allow specifying which
18161           dimension is fixed
18162         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
18163           and switched FixedSizeTextBox to only be fixed vertical (#78116)
18164         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
18165           if it matches the scale base font (avoids unneeded scaling)
18166
18167 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
18168
18169         * X11DesktopColors.cs: One gtk_init_check should be enough
18170
18171 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
18172
18173         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
18174           match MS behaviour
18175
18176 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
18177
18178         * TextBoxBase.cs: 
18179           - Generate OnTextChanged for Backspace even if we're only deleting
18180             the current selection
18181           - When setting the Text property, only select all text if the
18182             control does not have focus when it is being set. Otherwise
18183             just place the cursor at the beginning of the control
18184
18185 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
18186
18187         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
18188           Added a little helper to draw PropertyGrid ToolBar with a different
18189           border and a different BackColor.
18190         * PropertyGrid.cs: Some background parts didn't get painted with the
18191           correct background color. Added a class that helps us to draw the
18192           correct border for PropertyGridView and a class that helps us to
18193           draw ToolBars with a different backcolor
18194         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
18195
18196 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
18197
18198         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
18199         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
18200
18201 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
18202
18203         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
18204           into the palette entries. Also, since we're working on a copy
18205           we needed to copy the palette back onto the bitmap.
18206         * Cursor.cs: Same fix as XplatUIWin32.cs.
18207
18208 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
18209
18210         * ImageListStreamer.cs: Need to read the var (or we're off)
18211
18212 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
18213
18214         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
18215           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
18216           TextBoxBase.cs: Unused var fixes
18217         * AxHost.cs: Small 2.0 fix
18218         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
18219           as it seems that is what at least Metacity expects. This will make
18220           icons show up on 64bit platforms. We still have some 64bit size
18221           issues, though, since the startup app window size still won't match.
18222
18223 2006-04-25  Mike Kestner  <mkestner@novell.com>
18224
18225         * *.cs: cleanup newly reported exception var unused warnings.
18226
18227 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18228
18229         * ThemeWin32Classic.cs: Button image alignment now matches exactly
18230           ms
18231
18232 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18233
18234         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
18235           image. The image position is always the same, no matter if the
18236           button is pressed or not.
18237
18238 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18239
18240         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
18241           selection and set the correct filename for SaveFileDialog.
18242           Patch by Emery Conrad.
18243
18244 2006-04-24  Mike Kestner  <mkestner@novell.com>
18245
18246         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
18247         check for item.X outside the ClientRect instead of item.Y. Fixes
18248         #78151.
18249
18250 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18251
18252         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
18253         trust that value blindly and do some sanity check. Fixes bug #77814.
18254
18255 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18256
18257         * ImageListStreamer.cs: save the mask as a 1bpp image.
18258
18259 2006-04-21  Mike Kestner  <mkestner@novell.com>
18260
18261         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
18262         pass Checked and Indeterminate to the Theme Engine. Improve
18263         encapsulation with ListBox.
18264         * ListBox.cs: Keep a StringFormat instead of calculating it every item
18265         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
18266         nested types.  Move all CheckState functionality to CheckedListBox.
18267         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
18268         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
18269         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
18270         single base list. Fix scrollbar sizing and placement to mirror MS.
18271         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
18272         used.
18273         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
18274         for CheckedListBox by using new DrawItemState info.  Center the
18275         checkboxes on the items. Use new StringFormat property.
18276
18277 2006-04-18  Jackson Harper  <jackson@ximian.com>
18278
18279         * Form.cs: MdiChildren don't do default locations the same way as
18280         regular forms.  This prevents a crash when trying to position the
18281         mdi windows.
18282
18283 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
18284
18285         * PropertyGridTextBox.cs: Formatting, copyright
18286         * PropertiesTab.cs: Formatting
18287         * PropertyGrid.cs: Formatting
18288         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
18289           click toggling of values
18290           
18291 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
18292
18293         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
18294         * Control.cs (.ctor): verify_thread_handle is static, don't reset
18295           every time a control is created
18296         * Application.cs: Removed obsolete EnableRTLMirroring method
18297
18298 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
18299
18300         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
18301         SelectedIndex to -1. Fixes bug #78121.
18302
18303 2006-04-17  Jackson Harper  <jackson@ximian.com>
18304
18305         * Binding.cs: Handle null values for Current and BindingContext.
18306         This occurs when binding is a little delayed.
18307         * CurrencyManager.cs: return null for Current when there are no
18308         items in the list.
18309         - Hookup to the listchanged event on the DataView and update
18310         bindings when the list is changed.  This fixes late binding of
18311         controls.
18312
18313 2006-04-17  Jackson Harper  <jackson@ximian.com>
18314
18315         * X11Dnd.cs:
18316         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
18317         Ringenbach.
18318
18319 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
18320
18321         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
18322           place
18323         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
18324           with the correct ButtonState
18325
18326 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
18327
18328         * XplatUIX11.cs: Improved distinguishing between window types to
18329           tell the WM a type closer to what the app wants (Fixes #78107)
18330
18331 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
18332
18333         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
18334           GrabHandle
18335
18336 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
18337
18338         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
18339           drawing code to reflect the size grip changes
18340
18341 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18342
18343         * ImageListStreamer.cs: fix handling of the mask that follows the main
18344         bitmap when deserializing and serialize it properly. The generated mask
18345         should better be a 1bpp image, but I'll do that later.
18346
18347 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
18348
18349         * FileDialog.cs: Show something in the DirComboBox on *nix if the
18350           path doesn't fit into some of our Current.Places
18351
18352 2006-04-13  Jackson Harper  <jackson@ximian.com>
18353
18354         * ComboBox.cs: Use borders instead of drawing our own decorations,
18355         try to obey correct rules for heights.
18356         * Theme.cs:
18357         * ThemeNice.cs:
18358         * ThemeClearLooks.cs:
18359         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
18360         this is now handled by borders.
18361         - Remove unused DrawListBoxDecorationSize method.
18362         
18363 2006-04-13  Mike Kestner  <mkestner@novell.com>
18364
18365         * MenuAPI.cs: null guarding for the disbled click check fixes crash
18366         reported by Alex.
18367
18368 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
18369
18370         * ThemeWin32Classic.cs: 
18371           - Fixed CPDrawStringDisabled
18372           - Corrected drawing of disabled menu items
18373           - Fixed drawing of disabled radio buttons (bug #78095)
18374           - Draw check in a disabled CheckBox with color ControlDark 
18375
18376 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18377
18378         * Form.cs: Use the provided width when calculating the menu size;
18379           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
18380           and ClientSize.Width won't be updated yet
18381         * Application.cs: Use Visible instead of Show() to make form visible,
18382           this way we create the handle later and menusize is considered
18383
18384 2006-04-12  Mike Kestner  <mkestner@novell.com>
18385
18386         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
18387         reporting.
18388
18389 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18390
18391         * TextBox.cs: Implemented context menu
18392
18393 2006-04-12  Mike Kestner  <mkestner@novell.com>
18394
18395         * ListView.cs: implement box selection. fixes #77838.
18396         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
18397
18398 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18399
18400         * XplatUIX11.cs: Added setting of window type when transient window
18401           is created (metacity would move it otherwise)
18402         * X11Structs.cs: Added WINDOW_TYPE atoms
18403         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
18404           background (the control is Opaque but still wants transparent
18405           backgrounds)
18406
18407 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18408
18409         * Control.cs: Added OnPaintBackgroundInternal to allow controls
18410           that set Opaque but don't mean it (like all ButtonBase-derived
18411           controls) to still draw their background
18412         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
18413           the background
18414
18415 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18416
18417         * Control.cs (PaintControlBackground): Set the graphics object
18418           on our PaintEvent to null to prevent it from being disposed
18419           when the PaintEvent gets disposed
18420
18421 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
18422
18423         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
18424         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
18425
18426 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18427
18428         * Control.cs: 
18429           - Added transparency check to BackColor property. Transparent
18430             backgrounds are only allowed if the control styles permit it
18431           - Added recursive painting of parent control background and
18432             foreground if a control with a transparent backcolor is drawn
18433             (Thanks to Tim Ringenback for providing his 'hack' as a base
18434              for this patch) Fixes #77985 and #78026.
18435           - Added Opaque style check before calling OnPaintBackground, no
18436             need to draw the background if the control is opaque
18437           - Removed ControlAccessibleObject owner variable (inherited from
18438             base, no need to define again)
18439           - Added some documentation links explaining the drawing events
18440             and styles
18441
18442 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18443
18444         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
18445           that the affected control is the located at the left border of our
18446           parent (Fixes #77936)
18447
18448 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18449
18450         * TextBoxBase.cs: When rendering disabled or readonly controls,
18451           draw the background with 'Control' instead of 'Window' color as
18452           long as the user hasn't specifically set a color
18453
18454 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18455
18456         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
18457           since that won't be updated if the user types text (only if it's
18458           programatically set)
18459
18460 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18461
18462         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
18463           layout changes do to app-triggered resizes will have the proper
18464           display rectangle for layout
18465
18466 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
18467
18468         * ThemeWin32Classic.cs:
18469           - Make use of the SystemBrushes and SystemPens wherever possible
18470           - Corrected some highlight colors
18471           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
18472             drawing
18473         * Theme.cs: Added Empty field to CPColor struct
18474
18475 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18476
18477         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
18478           is displayed when calculating the display rectangle. Thanks to Mike
18479           for teaching me the err of my ways.
18480
18481 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
18482
18483         * ScrollableControl.cs:
18484           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
18485             (instead of 0,0) and we now return the real width/height instead of
18486             just the clientrectangle, adjusted for padding. The rectangle is
18487             now cached and created by the new CalculateDisplayRectangle method.
18488           - Created new CalculateDisplayRectange method, which basically does
18489             what get_DisplayRectangle() did originally, but now using the 
18490             right edge instead of DisplayRectangle to determine the size of
18491             our scrollbars
18492           - get_Canvas(): Fixed it to properly calculate canvas for 
18493             right/bottom controls which seem to be placed to the right/bottom
18494             of any controls that have a fixed location
18495           - Removed TODO that's taken care of
18496           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
18497             and SetDisplayRectLocation according to new MSDN2 docs
18498           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
18499             event when that is called, this is added for compatibility
18500           - ScrollControlIntoView(): Implemented.
18501           - Switched scrollbars to be implicit, they shouldn't be selectable
18502         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
18503           call it when the active control is set/changed
18504         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
18505         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
18506           implicit_control variable (used for native Win32 message generation)
18507         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
18508           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
18509         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
18510         * XplatUIStructs.cs: Added ScrollBarCommands enum
18511
18512 2006-04-10  Jackson Harper  <jackson@ximian.com>
18513
18514         * ButtonBase.cs:
18515         * CheckedListBox.cs:
18516         * ComboBox.cs:
18517         * DataGrid.cs:
18518         * DataGridView.cs:
18519         * Form.cs:
18520         * GroupBox.cs:
18521         * ListBox.cs:
18522         * PrintPreviewControl.cs:
18523         * ProgressBar.cs:
18524         * PropertyGrid.cs:
18525         * Splitter.cs:
18526         * StatusBar.cs:
18527         * TrackBar.cs:
18528         * UpDownBase.cs: Fixup base event overrides.
18529         
18530 2006-04-06  Mike Kestner  <mkestner@novell.com>
18531
18532         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
18533         all user-initiated value changes to min <= value <= max-thumbsz+1.
18534         (set_Value): check for vert/horiz when calculating new thumb position.
18535         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
18536         like MS does.
18537         (OnMouseMoveSB): refactor the thumb dragging code and refine
18538         invalidation logic to reduce flicker.
18539         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
18540         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
18541         (UpdateThumbPosition): small code readability cleanup
18542
18543 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
18544
18545         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
18546           different
18547
18548 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18549
18550         * ThemeNice.cs: Use a better graphics effect when a button is pressed
18551
18552 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18553
18554         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
18555         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
18556           This dramatically reduces the number of Pen.Dispose calls. 
18557           Where possible call ResPool methods only once instead of calling it
18558           over and over again (for example for the same color).
18559
18560 2006-04-06  Mike Kestner  <mkestner@novell.com>
18561
18562         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
18563         Also remove an unused private field on the collection. Fixes #77972.
18564
18565 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18566
18567         * ThemeNice.cs: Added ToolBar drawing code
18568
18569 2006-04-06  Mike Kestner  <mkestner@novell.com>
18570
18571         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
18572         I'm assuming that means we need to look up the toplevel for the
18573         provided control. Fixes the crash trace in #77911 but exposes another
18574         crash in some strange reflection usage in NDocGui.
18575
18576 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18577
18578         * ThemeNice.cs: Gave it a little silver touch and added Images
18579           method
18580         * FontDialog.cs: FontDialog is not resizable
18581         * FileDialg.cs: Added SizeGripStyle.Show
18582
18583 2006-04-05  Jackson Harper  <jackson@ximian.com>
18584
18585         * KeyboardLayouts.cs: Remove warning.
18586
18587 2006-04-05  Jackson Harper  <jackson@ximian.com>
18588
18589         * Control.cs: Enable OnPaintInternal so we can use it for drawing
18590         all of our controls instead of Paint +=.
18591         * ListBox.cs:
18592         * ListView.cs:
18593         * MenuAPI.cs:
18594         * MessageBox.cs:
18595         * NotifyIcon.cs:
18596         * ProgressBar.cs:
18597         * ScrollBar.cs:
18598         * Splitter.cs:
18599         * StatusBar.cs:
18600         * TabControl.cs:
18601         * TextBoxBase.cs:
18602         * ToolBar.cs:
18603         * TrackBar.cs:
18604         * UpDownBase.cs:
18605         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
18606         use OnPaintInternal. Remove Width/Height and Visible checks in
18607         paint handler, this is done at a higher level now.
18608         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
18609         * PaintEventArgs.cs: Add a handled flag so controls that don't
18610         want anymore painting after OnPaintInternal can make sure OnPaint
18611         isn't called.
18612
18613 2006-04-05  Mike Kestner  <mkestner@novell.com>
18614
18615         * Form.cs: fix the menu WndProc hacks to respect the native enabled
18616         state of the form, so that we don't process events when Modal dialogs
18617         are up. Fixes #77922.
18618
18619 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
18620
18621         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
18622           checking is done.
18623
18624 2006-04-05  Mike Kestner  <mkestner@novell.com>
18625
18626         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
18627
18628 2006-04-05  Mike Kestner  <mkestner@novell.com>
18629
18630         * ListView.cs (HeaderMouseMove): null guarding for the over column
18631         when setting up the drag_to_index.  Fixes #78015.
18632
18633 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
18634
18635         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
18636           in the taskbar. Transient windows seem to accomplish that.
18637
18638 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
18639
18640         * Form.cs:
18641           - Re-enabled CreateParams.X/Y code for FormStartPosition
18642           - Added code for manual placement when creating the Control
18643           - Incomplete patch to treat MDI forms differently when
18644             setting the ClientSizeCore. (Still need to figure out handling
18645             x/y coords there)
18646         * XplatUIX11.cs:
18647           - When we're explicitly setting the X/Y position of a non-Child
18648             window, let the WM know. Metacity really wants this.
18649
18650 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18651
18652         * ThemeNice.cs: Added CPDrawButton
18653
18654 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18655
18656         * ThemeNice.cs: Changed the color for focused buttons and activated
18657           the arrows for small scroll buttons.
18658
18659 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18660
18661         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
18662           anymore. Changed some method modifiers to protected (virtual)
18663         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
18664           changes
18665         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
18666           Updated drawing of menus, buttons and progressbars; added
18667           CPDrawBorder3D 
18668
18669 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18670
18671         * ImageListStreamer.cs: implemented serialization/deserialization
18672         of the images.
18673
18674 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
18675
18676         * ThemeWin32Classic.cs:
18677           - Removed all the DrawFrameControl stuff; CPDrawButton,
18678             CPDrawCheckBox and CPDrawRadioButton are now handled directly
18679             inside the methods
18680           - Updated and corrected the drawing code of CPDrawButton,
18681             CPDrawCheckBox and CPDrawRadioButton to better match ms
18682           - Updated theme checkbox and radiobutton code to use the CP*
18683             methods
18684
18685 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18686
18687         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
18688           bug is fixed
18689
18690 2006-03-31  Jackson Harper  <jackson@ximian.com>
18691
18692         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
18693         sometimes.
18694         * UpDownBase.cs: Don't CreateGraphics manually, use a
18695         Refresh. Ideally we would invalidate the correct areas here.
18696
18697 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18698
18699         * XplatUIX11.cs: 
18700           - We now track the mapping state of windows. If a window (or 
18701             one of it's parents) is not mapped we no longer permit
18702             WM_PAINT messages to be generated since we'd otherwise get 
18703             lots of BadMatch X errors. Jackson did all the work figuring
18704             out the problem.
18705           - Destroying the caret if the window it's contained in is 
18706             destroyed. Can't use regular DestroyCaret method since it
18707             might fall into a drawing function (trying to remove the
18708             caret) and with that generate new BadMatch errors. Again,
18709             Jackson tracked this down.
18710           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
18711             make sure we send the messages to all windows. (The old code
18712             would send the WM_DESTROY to the window, and then all child
18713             windows would be 'gone' because the WM_DESTROY handle lookup
18714             would no longer find the destroyed window)
18715         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
18716         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
18717
18718 2006-03-31  Jackson Harper  <jackson@ximian.com>
18719
18720         * ScrollableControl.cs: Dont recalc if we are not visible.
18721
18722 2006-03-31  Mike Kestner  <mkestner@novell.com>
18723
18724         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
18725         the visibility branch.
18726
18727 2006-03-31  Jackson Harper  <jackson@ximian.com>
18728
18729         * ScrollBar.cs: Cap values when incrementing/decrementing.
18730
18731 2006-03-31  Mike Kestner  <mkestner@novell.com>
18732
18733         * MenuAPI.cs: setup menu.tracker for popup/context menus.
18734         * ToolTip.cs: guard against timer expirations with no active control.
18735         Not sure why it happened.
18736
18737 2006-03-31  Mike Kestner  <mkestner@novell.com>
18738
18739         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
18740         text.
18741         * ToolTip.cs: Position the tooltip based on where the cursor is at
18742         popup time, not at MouseEnter time.  Add a Down state so that we don't
18743         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
18744         positioning offset. Lookup DisplaySize at positioning time, since it
18745         can theoretically change during invocation.
18746         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
18747         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
18748
18749 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18750
18751         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
18752           Fixes behaviour when the Text property of the box is String.Empty
18753
18754 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
18755
18756         * XplatUIX11.cs: Only send mouseleave for our client windows, not
18757           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
18758           a window)
18759
18760 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18761
18762         * FileDialog.cs: Visual enhancement for the popup buttons in 
18763           PopupButtonPanel
18764
18765 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18766
18767         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
18768           code
18769
18770 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
18771
18772         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
18773           highlighted menu items to match ms
18774
18775 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
18776
18777         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
18778
18779 2006-03-30  Mike Kestner  <mkestner@novell.com>
18780
18781         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
18782         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
18783         go active to account for HotLight to Selected transition.
18784         * MenuItem.cs: add internal Selected prop. Fill out the Status
18785         property by calculating it from item info. Add HotLight,
18786         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
18787
18788 2006-03-30  Mike Kestner  <mkestner@novell.com>
18789
18790         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
18791
18792 2006-03-29  Jackson Harper  <jackson@ximian.com>
18793
18794         * Form.cs: Implement TODO.
18795
18796 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
18797
18798         * PrintPreviewDialog.cs: Implemented missing methods and events; still
18799           missing proper dialog setup in the constructor
18800
18801 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
18802
18803         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
18804         * Control.cs:
18805           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
18806           - Fixed ResetBindings and removed TODO
18807           - Added check for cross-thread calls to get_Handle()
18808           - Added Marshaller attribute for set_Font to satisfy class status
18809         * FontDialog.cs: Removed TODOs that seemed implemented
18810         * UpDownBase.cs: Removed unneeded TODO and Fixme
18811         * MessageBox.cs: Implemented support for Default button and removed TODO
18812         * FileDialog.cs: Removed obsolete TODO
18813         * DomainUpDown.cs: Removed obsolete TODO
18814         * ButtonBase.cs: Removed obsolete TODO
18815         * XplatUIWin32.cs: Removed obsolete TODO
18816         * Form.cs:
18817           - Removed obsolete TODO
18818           - Calling CheckAcceptButton when the acceptbutton is changed to allow
18819             internal status updates
18820           - Making sure the active control is selected when the control is created
18821         * CurrencyManager.cs: Removed obsolete TODO
18822
18823 2006-03-29  Mike Kestner  <mkestner@novell.com>
18824
18825         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
18826         of PrintPreviewDialog and RichTextBox.
18827
18828 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18829
18830         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
18831           DarkDark, Light and LightLight colors for a specific color
18832         * ThemeWin32Classic.cs:
18833           - Use Button drawing code to draw RadioButtons and CheckBoxes with
18834             Appearance = Button 
18835           - Make use of the new ResPool helper CPColor
18836           - Draw ProgressBar and StatusBar with correct 3D borders
18837
18838 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18839
18840         * ColorDialog.cs: Return selected color. Fixes bug #77940.
18841
18842 2006-03-28  Mike Kestner  <mkestner@novell.com>
18843
18844         * ListView.cs: fix Icon layout to plan for scrollbar widths when
18845         calculating col/row counts.
18846
18847 2006-03-28  Mike Kestner  <mkestner@novell.com>
18848
18849         * ColumnHeader.cs:
18850         * ListView.cs:
18851         * ListViewItem.cs:
18852         * Menu.cs: 
18853         switch to explicit interface method implementation for some methods
18854         corcompare identifies as inconsistent with MS.
18855
18856 2006-03-28  Mike Kestner  <mkestner@novell.com>
18857
18858         * MainMenu.cs: 
18859         * Menu.cs:
18860         add a few missing methods from the class status output.
18861
18862 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
18863
18864         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
18865           correct.
18866
18867 2006-03-28  Mike Kestner  <mkestner@novell.com>
18868
18869         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
18870
18871 2006-03-27  Mike Kestner  <mkestner@novell.com>
18872
18873         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
18874         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
18875
18876 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
18877
18878         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
18879
18880 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18881
18882         * ThemeWin32Classic.cs:
18883           - GroupBox: Inserted a little gap between the text and the lines
18884             on the right side
18885           - Made the code in CPDrawBorder3D more readable
18886           - Corrected the drawing location of the up and down arrows in 
18887             CPDrawScrollButton
18888
18889 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18890
18891         * ControlPaint.cs: Corrected line widths in DrawBorder for
18892           ButtonBorderStyle Inset and Outset
18893
18894 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18895
18896         * ThemeWin32Classic.cs:
18897           - Rewrote the totally broken CPDrawBorder3D method. That was
18898             one of the main problems for the terrific ThemeWin32Classic
18899             look
18900           - Updated and corrected Button drawing
18901           - Correct the dimensions of the SizeGrip to match ms ones
18902           - Removed a small drawing glitch in DrawComboBoxEditDecorations
18903         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
18904           Border3DStyle.Sunken to match ms.
18905
18906 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18907
18908         * ThemeWin32Classic.cs: First small part of the "de-uglify
18909           ThemeWin32Classic" effort, SizeGrip
18910
18911 2006-03-24  Jackson Harper  <jackson@ximian.com>
18912
18913         * XplatUIX11.cs: Give a max idle time of one second, this matches
18914         MS and forces an Idle event every second when there are no other
18915         events in the queue.
18916
18917 2006-03-24  Mike Kestner  <mkestner@novell.com>
18918
18919         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
18920         * ListView.Item.cs: fix layout issues with null image lists and images
18921         smaller than checkbox size.
18922         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
18923         mode like MS does.  It's weird, but consistent.  ;-)
18924         Fixes #77890.
18925
18926 2006-03-24  Mike Kestner  <mkestner@novell.com>
18927
18928         * ListView.cs: Scroll wheel support for the item control.  Fixes
18929         #77839.
18930
18931 2006-03-23  Jackson Harper  <jackson@ximian.com>
18932
18933         * ScrollableControl.cs: Special case negative sized areas, not
18934         zero.
18935         * MonthCalendar.cs: Save the rect of the clicked date so we can
18936         use it for invalidation.
18937         - Try to cut down on the number of invalidates
18938         - Invalidate the rect the mouse is over and was over when moving
18939         the mouse, so we get the focus box following the cursor.
18940
18941 2006-03-23  Mike Kestner  <mkestner@novell.com>
18942
18943         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
18944         focus rectangle drawing. Fixes #77835.
18945
18946 2006-03-23  Mike Kestner  <mkestner@novell.com>
18947
18948         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
18949         the if and else if and reverting back to the original == check on the
18950         None conditional.
18951
18952 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18953
18954         * FontDialog.cs: Update the example panel if the selected index of
18955           the fontListBox changes.
18956
18957 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18958
18959         * FileDialog.cs: Make FileDialog remember which directory it was in
18960           last in the same execution.
18961
18962 2006-03-22  Mike Kestner  <mkestner@novell.com>
18963
18964         * FileDialog.cs: make the DropDownMenu on the toolbar display
18965         RadioChecks since they are mutually exclusive and that's what MS does.
18966
18967 2006-03-22  Mike Kestner  <mkestner@novell.com>
18968
18969         * Theme.cs: add Color param to CPDrawMenuGlyph.
18970         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
18971         checks and radio marks and arrows are visible on highlighted items.
18972         * ControlPaint.cs: update to use new Theme signature.
18973
18974 2006-03-22  Mike Kestner  <mkestner@novell.com>
18975
18976         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
18977         is active. Fixes #77870.
18978
18979 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
18980
18981         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
18982           to be focused/selected after startup
18983
18984 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
18985
18986         * ColorDialog.cs: 
18987           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
18988             CustomColors and ShowHelp properties
18989           - Some internal rewrites to get better results when using the
18990             ColorMatrix
18991
18992 2006-03-22  Mike Kestner  <mkestner@novell.com>
18993
18994         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
18995         HoverSelection.  Fixes #77836.
18996
18997 2006-03-22  Mike Kestner  <mkestner@novell.com>
18998
18999         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
19000         ToggleButtons.  (De)Sensitize the Back button around a stack count of
19001         1, not 0.  Update ButtonSize based on a pixel count of the win32
19002         control.  Adjust the toolbar size/location for new button size.
19003
19004 2006-03-22  Jackson Harper  <jackson@ximian.com>
19005
19006         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
19007         true.
19008         * ScrollBar.cs: When doing increments and decrements we need to
19009         set the Value property so that ValueChanged gets raised. A
19010         possible optimization here would be to make an internal SetValue
19011         that doesn't invalidate immediately.
19012         * ToolTip.cs: Tooltips get added to their container (when
19013         supplied) so they get disposed when the container is disposed.
19014         - Don't create tooltips for String.Empty. This prevents all these
19015         little 2-3 pixel windows from showing up when running nunit-gui
19016         and driving me mad.
19017         * Form.cs: Don't set topmost when setting the owner if the handles
19018         haven't been created yet.  The topmost set will happen when the
19019         handles are created.
19020
19021 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
19022
19023         * XplatUIX11.cs:
19024           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
19025           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
19026             visible (to allow them to recalculate their sizes)
19027
19028 2006-03-21  Mike Kestner  <mkestner@novell.com>
19029
19030         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
19031         methods. Removed a ton of redundant code.  Still not really happy with
19032         the border rendering, but I think that's mainly because of the
19033         ControlDarkDark being black instead of a dark grey. Depending on how 
19034         close we want to be, we might want to revisit those color choices.
19035         Among the new features added during the refactor were DropDownArrow
19036         pressed rendering, Disabled image rendering.  Proper flat appearance
19037         boundary rendering.  Removed the Divider and Wrapping dividers since I
19038         can't figure out any combination of themes and conditions to make the
19039         MS control draw a horizontal line on a toolbar despite what the
19040         Divider property docs indicate.
19041         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
19042         conditions and incorrect layout.  Updated to coding standard.
19043         * ToolBarButton.cs: refactored layout and positioning code from
19044         ToolBar to here.  Invalidate wherever possible instead of forcing
19045         redraws of the whole toolbar. 
19046         (Known remaining issues: explicit ButtonSize smaller than provided
19047         images.)
19048
19049 2006-03-21  Mike Kestner  <mkestner@novell.com>
19050
19051         * ContextMenu.cs (Show): use the position parameter instead of just
19052         showing at the MousePosition.
19053
19054 2006-03-21  Jackson Harper  <jackson@ximian.com>
19055
19056         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
19057         control handle this.
19058         * TreeNodeCollection.cs: If we are clearing the root node we need
19059         to reset top_node so calcs can still happen.
19060         * ThemeWin32Classic.cs: This is a Flags so we need to check
19061         properly.
19062         
19063 2006-03-21  Jackson Harper  <jackson@ximian.com>
19064
19065         * DataGrid.cs: Create columns when the binding context has been
19066         changed.
19067         * X11Structs.cs: Keysyms are uints.
19068         - Add size to fix build.
19069
19070 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
19071
19072         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19073           XplatUIOSX.cs: 
19074           - Added ResetMouseHover method to allow controls to retrigger
19075             hovering if they need it more than once
19076           - Implemented MouseHoverTime and MouseHoverSize properties
19077         * Timer.cs: Start() must reset the interval
19078         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
19079           properties
19080
19081 2006-03-21  Jackson Harper  <jackson@ximian.com>
19082
19083         * X11Keyboard.cs: improved layout detection. Move the nonchar
19084         tables into this file.
19085         * KeyboardLayouts.cs: Move the tables into resource files.
19086
19087 2006-03-21  Mike Kestner  <mkestner@novell.com>
19088
19089         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
19090
19091 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
19092
19093         * Mime.cs: Various speed optimizations. Looking up mime types
19094           is now 2 times faster than before
19095
19096 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
19097
19098         * CreateParams.cs: Added internal menu field
19099         * Control.cs: 
19100           - Switched call order for UpdateBounds; now we always call
19101             the one that also takes ClientSize, and we're calculating the 
19102             client size via driver method in the others. The previous
19103             method of tracking client size by difference wasn't working
19104             for forms where even the starting client size wouldn't match
19105             the overall form size (due to borders) (Part of fix for #77729)
19106           - CreateParams(): Do not use parent.Handle unless the handle is
19107             already created. Causes havoc with Nexxia and throws off our
19108             creation of controls
19109         * XplatUIX11.cs:
19110           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
19111           - Switched handling of ConfigureNotify over to new PerformNCCalc 
19112             method (consolidates code)
19113           - Changed RequestNCRecalc to use new PerformNCCalc method
19114           - Added calls to RequestNCRecalc when menus and borders are changed
19115             to allow app to set NC size. (Part of fix for #77729) This matches
19116             when MS send a WM_NCRECALC on Win32 windows.
19117           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
19118             (Part of fix for #77729). This matches what MS does, they also
19119             send that message when the form is made visible.
19120           - XException.GetMessage: Improved usability of X errors by including
19121             a translation of the window into Hwnd and Control class
19122           - Improved debug info for window creation, reparenting and destruction
19123           - Created helper method WindowIsMapped() [Currently not used]
19124         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
19125         * Form.cs:
19126           - CreateParams: Now setting our menu on the new internal menu field
19127           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
19128             avoid calculating the same property twice
19129         * Hwnd.cs:
19130           - Improved usability of ToString() for debugging purposes
19131           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
19132             determine the height of the menu, instead of just the font. This
19133             required to also create a graphics context and to keep a bmp 
19134             around (for performance reasons)
19135
19136 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
19137
19138         * MenuAPI.cs: Added OnMouseUp method
19139         * Form.cs:
19140           - Now remembering the requested client size, avoids size errors
19141           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
19142             instead of base if the menu is active. This is required due to
19143             control now capturing and releasing on down/up and it would
19144             prematurely release our menu capture
19145
19146 2006-03-17  Jackson Harper  <jackson@ximian.com>
19147
19148         * KeyboardLayouts.cs: Add the czech layouts.
19149
19150 2006-03-16  Jackson Harper  <jackson@ximian.com>
19151
19152         * Control.cs: Use the viewport space when sizing not the controls
19153         client size, so things like ScrollableControl that effect the
19154         viewport size (when scrollbars are added) are computed correctly.
19155         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
19156         of ManagerEntrys.
19157         - Handle creating BindingManagers for null data sources.
19158         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
19159         source, otherwise when rows are added they are added to the 'fake'
19160         datasource and we will crash when trying to set the position in
19161         those rows.
19162         - Use Implicit scrollbars on the datagrid so they arent
19163         selectable.
19164         
19165 2006-03-16  Jackson Harper  <jackson@ximian.com>
19166
19167         * Binding.cs:
19168         * InternalWindowManager.cs:
19169         * MdiWindowManager.cs:
19170         * X11Keyboard.cs: I really want Mike to love me again (fix
19171         compiler warnings).
19172
19173 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
19174
19175         * DataGrid.cs:
19176           - OnMouseDown: Switch to editing mode when clicking on the cell
19177                          even if we're clicking on the cell that's currently 
19178                          selected
19179           - ProcessGridKey: Left/Right now wrap like MS.Net does
19180           - ProcessGridKey: Tab now knows to add a new row when tab is
19181                             pressed in the cell of the last column of the 
19182                             last row
19183           - ProcessGridKey: Enter now adds another row  if pressed in the last
19184                             row and selectes the new row, same column cell
19185           - ProcessGridKey: Home/End navigate columns, not rows, like 
19186                             originally implemented
19187           - Broke ProcessKeyPreview code out into an extra Internal method
19188             so it can be called from the edit code
19189         * DataGridTextBox.cs (ProcessKeyMessage):
19190           - Switched to accept Tab keypresses
19191           - Added F2 handling to allow jumping to the end of the edited cell
19192           - Added logic to allow moving caret left/right inside edited cell
19193             and making the edited cell jump when the caret hits cell borders
19194           - Tab and Enter are now passed to the datagrid after being handled
19195         * TextBoxBase.cs:
19196           - Removed capture code now that Control handles it
19197           - set_SelectionStart now ensures caret is visible
19198
19199 2006-03-16  Jackson Harper  <jackson@ximian.com>
19200
19201         * TrackBar.cs: Debackwards the increment/decrement for handling
19202         mouse clicks on the bar with vertical trackbars.
19203         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
19204         bottom to match MS.
19205
19206 2006-03-16  Mike Kestner  <mkestner@novell.com>
19207
19208         * ListView.cs: make shift/ctrl keyboard and mouse selection 
19209         consistent with the MS control. Fix a bug in
19210         SelectedListViewItemCollection.Clear that was pissing me off for the
19211         better part of a day because the collection was being altered
19212         underneath us as we walked the list.
19213
19214 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
19215
19216         * Control.cs: Not sure how we could miss this so long, but it seems
19217           that MS.Net has Capture set all the way from before calling 
19218           OnMouseDown through sending the mouse events until after
19219           OnMouseUp. This will fix DataGrid's selection being set to end
19220           at the location of the MouseUp.
19221
19222 2006-03-15  Jackson Harper  <jackson@ximian.com>
19223
19224         * BindingContext.cs: Check the binding after its added so that it
19225           can initialize the binding managers and hookup to events.
19226         * Binding.cs: Data members seem to sometimes include rows/cols in
19227           the format Row.Column we now take this into account.
19228           - Hookup to the position changed event so we can update the
19229           control when the position has changed in the data set.
19230         * CurrencyManager.cs: Take into account the row/col naming
19231           convention when creating dataset tables.
19232         * BindingContext.cs: Using a newer better way of storing
19233           datasource/datamember pairs.  Hopefully this better matches MS for
19234           looking up binding managers.
19235
19236
19237 2006-03-15  Jackson Harper  <jackson@ximian.com>
19238
19239         * BindingContext.cs: The currency manager needs the data member
19240         name, if the member is a data set we use the name to find the
19241         correct table.
19242         * CurrencyManager.cs: When creating the list prefer an IList over
19243         an IListSource.
19244         - Attempt to create a DataTable from a DataSet (TODO: might need
19245         some better error checking here, although MS doesn't seem to have much)
19246         - If we have a DataTable create a view and use it as our list.
19247
19248 2006-03-15  Mike Kestner  <mkestner@novell.com>
19249
19250         * ListView.cs: keep a matrix of the icon mode layout to facilitate
19251         keyboard navigation. Support Up/Down/Left/Right selection correctly
19252         for all 4 View modes.
19253         * ListViewItem.cs: add internal row/col fields for icon layouts.
19254
19255 2006-03-15  Jackson Harper  <jackson@ximian.com>
19256
19257         * TabControl.cs: Redraw the tabs when we resize so their newly
19258         calculated sizes are drawn on screen.
19259         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
19260         composite characters.
19261         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
19262         - filter events so that composite characters can be created
19263         patches by peter
19264         * X11Structs.cs: Add XIMProperties enum.
19265
19266 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
19267
19268         * Control.cs (BringToFront, SendToBack): Don't use window or handle
19269           unless it's created
19270
19271 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
19272
19273         * Control.cs (PerformLayout): We don't need to consider visiblity
19274           for anchoring, only for docking. This fixes 'whacky' alignment
19275           in listbox and other controls that use implicit scrollbars after
19276           the previous PerformLayout patch
19277         * ListBox.cs: Switched to use implicit scrollbars
19278           
19279 2006-03-14  Mike Kestner  <mkestner@novell.com>
19280
19281         * ToolBar.cs: 
19282         * VScrollBar.cs:
19283         - chain up the "new event" overrides to base and use
19284         OnEvent to raise them.  Part of fix for bug #76509.
19285
19286 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
19287
19288         * FileDialog.cs: Do not select an item in the parent directory
19289           on backspace
19290
19291 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
19292
19293         * Control.cs (PerformLayout): It would seem that we considered
19294           invisible windows for our layout. Not quite the right thing
19295           to do. Now we don't any longer, thereby fixing bug #76889.
19296
19297 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
19298
19299         * Control.cs (CanFocus): I goofed. A control can have focus 
19300           even though it's not selectable. Made it match MS docs.
19301
19302 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19303
19304         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
19305           center by default (fixes #76895)
19306         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
19307           all uses of Border3DSides.All with the explicit ORd together
19308           Left|Right|Top|Bottom because I assume that nobody was aware 
19309           that All also implies a center fill. Most places I checked had
19310           a fill right above.
19311         * ProgressBarStyle.cs: Added
19312
19313 2006-03-13  Mike Kestner  <mkestner@novell.com>
19314
19315         * ListView.cs: fix breakage in drag shadow header positioning 
19316         from Peter's csc compilation fix.
19317
19318 2006-03-13  Mike Kestner  <mkestner@novell.com>
19319
19320         * ListView.cs: fix NRE produced by backspacing twice in a focused
19321         FileDialog.
19322
19323 2006-03-13  Mike Kestner  <mkestner@novell.com>
19324
19325         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
19326
19327 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19328
19329         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
19330           be changed
19331         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
19332           the allowed size before making programmatic size changes
19333
19334 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
19335
19336         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
19337           set, metacity is broken and will still use the emty sizes in 
19338           the struct. (Fix for #77089)
19339
19340 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19341
19342         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
19343           WindowExStyles and marked both enums as Flags
19344         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
19345           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
19346           to match WindowStyles split
19347         * XplatUIX11.cs:
19348           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
19349           - Updated to match WindowStyles split
19350         * XplatUIWin32.cs:
19351           - Fixed FosterParent creation, was using ExStyle on the Style field
19352             (This should help with Popup focus issues)
19353           - Updated to match WindowStyles split
19354
19355 2006-03-13  Jackson Harper  <jackson@ximian.com>
19356
19357         * MdiWindowManager.cs: Use the system menu height. Fixes some
19358         strange sizing issues.
19359
19360 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
19361
19362         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
19363         * TextBoxBase.cs:
19364           - Scroll to caret after inserting text (#77672)
19365           - Make scroll range one pixel higher, fixes off-by-one error (and
19366             makes underlines visible on the last line)
19367
19368 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
19369
19370         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
19371           the keyboard state from being stuck with keys in 'pressed' state when
19372           focus is switched away via keyboard
19373         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
19374           reset the keyboard if no X11 KeyUp events are expected to come
19375         * X11Structs.cs: Switched type of Visible to bool to match driver
19376
19377 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
19378
19379         * TextControl.cs:
19380           - Switched caret to be just 1 pixel wide, matches MS and looks less
19381             clunky
19382           - Moved caret display 1 pixel down from the top of the control
19383             to improve view
19384           - InsertCharAtCharet: Update the selection start if moving the caret
19385             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
19386           - No longer always creating the caret when the caret methods are
19387             called. Only the actual ShowCaret/HideCaret will do that now
19388           - Only setting caret visible if the owner control has focus
19389           - UpdateView: Added invalidation-shortcut logic for center and right 
19390             aligned text. Previously we'd update all according to the left
19391             logic which caused drawing errors. Also fixed height of invalidated
19392             areas, now properly invalidating the whole area (was off-by-one)
19393           - owner_HandleCreated: Always generate the document when the
19394             handle is created; this ensures that 
19395         * TextBoxBase.cs:
19396           - Fixed situation where caret would disappear under the right
19397             window border, also improved scrolling behaviour on left-
19398             aligned textboxes
19399           - Fixed right-aligned textboxes to have a border to the
19400             right instead of the caret being under the right border
19401         * XplatUIX11.cs:
19402           - Switched from 'nested' to simple visible/not visible tracking 
19403             for caret (part of fix for #77671)
19404           - No longer passing through translated FocusIn/FocusOut messages
19405             since we were notifying too often and the wrong windows. Instead
19406             we just notify our focussed window of receiving or loosing focus
19407         * XplatUIWin32.cs: Switched from 'nested' show/hide 
19408           counting for caret to simple visible yes/no behaviour (part of 
19409           fix for #77671)
19410
19411 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19412
19413         * Mime.cs: Remove debug code...
19414
19415 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19416
19417         * MimeGenerated.cs: Removed
19418         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
19419           and subclasses) from /usr/(local/)share/mime and
19420           $HOME/.local/share/mime.
19421
19422 2006-03-10  Jackson Harper  <jackson@ximian.com>
19423
19424         * MdiWindowManager.cs: Recalc the NC area when a window is
19425         maximized/restored so that the menu area is drawn on forms that
19426         don't have a menu.
19427
19428 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19429
19430         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19431           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
19432           us to force a WM_NCCALCRESIZE message being sent. This is needed
19433           for MDI maximizing.
19434
19435 2006-03-10  Jackson Harper  <jackson@ximian.com>
19436
19437         * Form.cs: We need to use the ActiveMenu when calculating menu
19438         height.
19439         - Fix nullref when the window manager hasn't been created yet.
19440         * Control.cs: Fix nullref when we try to bring a control to the
19441         front that has no parent.
19442         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
19443         height.
19444         - Add a dummy item to the maximized menu so it always has the
19445         correct height. Otherwise when there are no menus we don't get our
19446         icon and buttons.
19447         
19448
19449 2006-03-10  Jackson Harper  <jackson@ximian.com>
19450
19451         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
19452         stuff.
19453         * Form.cs: Make the window_state internal so the window managers
19454         can track it.
19455         - When an MDI child is maximized let its window manager create the
19456         main menu (so it can add its icon).
19457         - Notify the window managers of state changes
19458         - Let the window manager paint its buttons and handle button
19459         clicks on the menu when it is maximized.
19460         * InternalWindowManager.cs: Move the prev_bounds into the mdi
19461         window manager, since tool windows don't use it, only mdi windows.
19462         - Tell the main form that we don't want it to handle NCPAINT
19463         itself to avoid extra painting.
19464         - Handle clicks on a maximized windows menu.
19465         - Handle window state changes
19466         - Handle minimize/maximize clicks correctly by setting the window state.
19467         * MdiWindowManager.cs: Add an icon menu that (the menu you get
19468         when clicking on the forms icon).
19469         - New method to create a forms maximized menu. This is its normal
19470         menu + an icon.
19471         - Handle window state changes.
19472         - Handle sizing of maximized windows.  Maximized windows are just
19473         drawn bigger then the parent visible area. All controls are still
19474         there, they are just outside the visible area (this matches windows).
19475         * MdiClient.cs: No scrollbars when a child window is maximized.
19476         - Let the children windows figure out how big they should be when
19477         sizing maximized windows.
19478         - Implement a version of ArrangeIconicWindows somewhat similar to
19479         Windows version.  There are some little differences, but I don't
19480         think any app will rely on the layout of minimized mdi windows.
19481
19482 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19483
19484         * Padding.cs: Several fixes to allow compiling with csc 2.0
19485
19486 2006-03-09  Jackson Harper  <jackson@ximian.com>
19487
19488         * Menu.cs:
19489         * MenuItem.cs: Cheap hack so we can add items to the list without
19490         the events being raised.  This allows adding mdi items during
19491         drawing. TODO: Should probably find a better time to add the items.
19492
19493 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19494
19495         * ThemeWin32Classic.cs:
19496           - CheckBox_DrawText: Added logic to not wrap if not enough space
19497             is available (Fix for bug #77727)
19498           - RadioButton_DrawText: Added logic not to wrap if not enough
19499             space is available (Fix for bug #77727). Also removed some
19500             duplicate code, DrawString always drawing the regular text
19501             before hitting the if statement.
19502
19503 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
19504
19505         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
19506
19507 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19508
19509         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
19510         * ContainerControl.cs: Partial implementation of some 2.0 scaling
19511           methods. Moved the new 2.0 properties into alphabetical order with
19512           other properties and added MonoTODO tags
19513
19514 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19515
19516         * AutoScaleMode.cs: Added. Fix build.
19517
19518 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19519
19520         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19521           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
19522           and was requiring premature handle creation for calls from above
19523         * Form.cs, Control.cs: Removed handle arguments from calls to
19524           CalculateClientRect()
19525
19526 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19527
19528         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
19529           drag_column.column_rect is MarshalByRef and can't be used that way
19530
19531 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19532
19533         * AxHost.cs: Added deserialization constructor for 
19534           AxHost+State (fixes 77743)
19535
19536 2006-03-09  Mike Kestner  <mkestner@novell.com>
19537
19538         * ListView.cs: 
19539         - Added column drag reordering for details view.
19540         - fixed behavior when mouse is dragged off column and
19541         AllowColumnReorder is false.
19542         * ColumnHeader.cs: clone the format too in Clone.
19543         * Theme.cs: add DrawListViewHeaderDragDetails method.
19544         * ThemeWin32Classic.cs:
19545         - impl new method for drawing drag column shadows and targets.
19546         - support column offset for details mode in DrawListViewItem.
19547
19548 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19549
19550         * TextControl.cs: Reset the char_count when the document is cleared
19551           (Fixes bug reported on mono-winforms mailing list)
19552
19553 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19554
19555         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
19556           of calling base we simply process the key ourselves, since both
19557           DefWindowProc and the handled method would set m.Result. 
19558           (Fixes #77732)
19559
19560 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19561
19562         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
19563           method also moves the window; instead implemented a copy of
19564           Control.ScaleCore (Part of fix for #77456)
19565         * TextBoxBase.cs: 
19566           - Created new CreateGraphicsInternal method to allow providing
19567             a graphics context when no handle is created without triggering
19568             handle creation. (Part of fix for #77456)
19569           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19570         * TextControl.cs: 
19571           - Switched Constructor to require TextBoxBase instead of Control (to
19572             allow uncast access to CreateGraphicsInternal)
19573           - Safeguarded use of owner.Handle property. No longer accessing it
19574             unless the handle is already created.
19575           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19576           - Now triggering a recalc when owning control becomes visible
19577         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
19578           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
19579           premature handle creation (Part of fix for #77456)
19580         * Control.cs:
19581           - We now only destroy our double-buffering buffers when the
19582             control is resized or disposed, but not when visibility
19583             changes. (The code even re-created them twice every time)
19584           - Now requiring a redraw of the buffer on visibility changes
19585             (fixes bug 77654 part 2)
19586           - Not passing OnParentVisibleChanged up unless the control
19587             is visible
19588           - CanFocus: Fixed to match MS documentation
19589           - Focus: Fixed to return actual focus state and to check if
19590             setting focus is legal before setting it
19591
19592 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
19593
19594         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
19595           when to draw focus rectangle by looking at parent focus and
19596           selected state instead. This fixes TabPages on Linux sometimes
19597           having none or multiple focus rectangles.
19598         * XplatUIX11.cs (SetFocus): 
19599           - Don't set the focus if the same window already has focus
19600           - Use SendMessage instead of PostMessage (like it's Win32
19601             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
19602             to match MS behaviour
19603         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
19604           are not selectable.
19605
19606 2006-03-07  Jackson Harper  <jackson@ximian.com>
19607
19608         * PictureBox.cs: Revert line I accidently committed last week.
19609
19610 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19611
19612         * Control.cs: 
19613           - Added new IsRecreating and ParentIsRecreating properties to
19614             allow testing if RecreateHandle has been called on ourselves
19615             or one of our parents
19616           - WndProc(WM_DESTROY): If our control handle is being recreated
19617             we immediately need to create the handle when receiving the
19618             destroy, that way our child windows find a valid parent handle
19619             when they themselves are being recreated upon WM_DESTROY receipt
19620             (fix for bug #77654 part 1)
19621         * XplatUIX11.cs:
19622           - DestroyWindow: WM_DESTROY must be sent to our own window before
19623             notifying any child windows. MS documents that child windows
19624             are still valid when WM_DESTROY is received. (Control now relies on
19625             this behaviour)
19626           - Added some fine-grain debug options
19627
19628 2006-03-06  Jackson Harper  <jackson@ximian.com>
19629
19630         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
19631         box and base calculations off this.
19632         * MdiChildContext.cs:
19633         * MdiWindowManager.cs: Don't need to ensure scrollbars here
19634         anymore.
19635         
19636 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
19637
19638         * Splitter.cs: In situations where the affected control is added
19639           to the parent's control list after the splitter, we would not
19640           populate affected. Now we try populating it on mousedown, if
19641           it's not already set, and force it to be re-set whenever our
19642           parent changes.
19643
19644 2006-03-03  Matt Hargett  <matt@use.net>
19645
19646         * Control.cs: implement Control.Padding
19647         * Padding.cs: -Padding.All returns -1 when constructing with the
19648         implicit default ctor
19649         -Padding.ToString() matches MS.NET
19650         * ContainerControl.cs: implement
19651         ContainerControl.AutoScaleDimensions
19652         * ListControl.cs: implement ListControl.FormattingEnabled
19653         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
19654         * ButtonBase.cs:
19655         * TabPage.cs: Implement UseVisualStyleBackColor.
19656         * PictureBox.cs: Implement PictureBox.InitialImage.
19657
19658 2006-03-03  Mike Kestner  <mkestner@novell.com>
19659
19660         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
19661         event declarations to proxy to base event.
19662         * ListViewItem.cs: update to use ItemControl.
19663         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
19664         * ThemeWin32Classic.cs: update to new ListView theme API and fix
19665         column header label rendering for 0 width columns.
19666
19667 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
19668
19669         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
19670           that causes the control to be created. Fixes #77476.
19671
19672 2006-03-02  Jackson Harper  <jackson@ximian.com>
19673
19674         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
19675         expose_pending.
19676
19677 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
19678
19679         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
19680           passed in for the EventArgs (fixes #77690)
19681
19682 2006-03-01  Jackson Harper  <jackson@ximian.com>
19683
19684         * ScrollBar.cs: Refresh afterbeing resized.
19685
19686 2006-02-28  Mike Kestner  <mkestner@novell.com>
19687
19688         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
19689         Clean up a tracker compile warning.
19690         * MenuItem.cs: add internal PerformPopup method.
19691         [Fixes #77457]
19692
19693 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19694
19695         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
19696           implicit expose) when the text is set to null
19697
19698 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
19699
19700         * RichTextBox.cs (FlushText): When newline is true, we always
19701           need to split the line, even if no text is on it and we may
19702           never eat newlines. (Fixes #77669)
19703
19704 2006-02-28  Mike Kestner  <mkestner@novell.com>
19705
19706         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
19707         and set Selected instead.
19708         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
19709         collections.
19710
19711 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19712
19713         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
19714
19715 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
19716
19717         * FontDialog.cs:
19718           - Got rid of the panel. All controls are now directly added to
19719             the dialog form
19720           - It is now possible to set a font with the Font property
19721           - MinSize and MaxSize property do now what they should
19722           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
19723           - Searching and selecting a font with the font textbox works now,
19724             the same applies to the style and size textbox
19725           - Draw the correct 3D border in the example panel
19726           - Fixed a little mem leak (unused fonts didn't get disposed)
19727           - Many other internal updates/rewrites...
19728           - Fix typo
19729
19730 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19731
19732         * TextControl.cs: 
19733           - InsertRTFFromStream: Added 'number of characters inserted' argument
19734           - set_SelectedRTF: Now using the number of characters to calculate
19735             the new location for the selection and cursor (x/y cannot be used
19736             due to potentially already wrapped text)
19737
19738 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
19739
19740         * TextControl.cs: Added property and implemented means to allow 
19741           disabling recalculation of a document (can be used to speed up
19742           multiple inserts and is needed to make RTF inserts predictable, see
19743           bug #77659)
19744         * RichTextBox.cs: Using the new NoRecalc property of Document to
19745           keep x/y insert locations predictable. Also makes it faster inserting
19746           large chunks of RTF
19747
19748 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19749
19750         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
19751           it's easier for a child control to handle the other messages without
19752           having to duplicate the special functionality
19753         * TextBoxBase.cs
19754           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
19755             code to handle processing the key ourselves, in order to get 
19756             access to the result of KeyEventArgs.Handled. We now only call 
19757             ProcessKey if they key hasn't been handled already. Fixes #77526.
19758           - set_Text: If null or empty string is given, just clear the 
19759             document. Fixes part of #77526
19760
19761 2006-02-27  Jackson Harper  <jackson@ximian.com>
19762
19763         * SizeGrip.cs: Paint the background color before painting the grip
19764         so things look right.
19765         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
19766
19767 2006-02-27  Mike Kestner  <mkestner@novell.com>
19768
19769         * ListView.cs:
19770           - Restructure layout and invalidation model to remove a ton of
19771           flicker from the control and speed up performance in general.
19772           - Add manual column resize, flickers like crazy, but I already have
19773           some ideas on how I'll fix that. (#76822)
19774           - Merge the three Icon-based views into a single layout method.
19775           - Move item selection interaction logic from the item since 
19776           interaction with the collections is more appropriate to the view.
19777           - Deselection on non-item clicks.
19778         * ListViewItem.cs:
19779           - Encapsulate most of the layout. Add some internal props to trigger
19780           layout.  Move to a model where Items invalidate themselves instead
19781           of just invalidating the whole control every time something changes.
19782           - Invalidate on Text/Caption changes.
19783           - switch to an offset based layout model to avoid having to absolute
19784           position every element on item moves.
19785           - correct checkbox layout to conform to MS layout.
19786         * ThemeWin32Classic.cs:
19787           - refactor some column header drawing code.
19788           - fix string justification for column headers (#76821)
19789           - make SmallIcon labels top justified for compat with MS impl.
19790         * ThemeClearlooks.cs:
19791           - adjust to new ListViewItem internal checkbox bounds api.
19792
19793 2006-02-27  Jackson Harper  <jackson@ximian.com>
19794
19795         * Control.cs:  Change where implicit controls fall in the zorder.
19796         They are now on top of all children.
19797         - Synced AddImplicit code with Add
19798         - Removed unused enumerator.
19799         * SizeGrip.cs: Remove the TODO as its been TODONE.
19800
19801 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
19802
19803         * TextControl.cs(Insert): Combine the last lines unless the insertion
19804           string ends with \n\n, otherwise we leave one line too many (Fixes
19805           something I noticed with the testapp for #77526; the bug itself was
19806           already fixed in the previous checkin)
19807
19808 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
19809
19810         * RichTextBox.cs:
19811           - SelectionColor and SelectionFont methods no longer set absolute
19812             styles. Instead, the keep font or color respectively (This 
19813             resolves a long-standing FIXME in the code)
19814           - When flushing RTF text, the insert code now considers text trailing
19815             behind the insertion point (Fixes the bug where when replacing
19816             the selected text via SelectedRTF the remainder of the line behind 
19817             the selection would stay on the first insertion line)
19818         * TextBoxBase.cs:
19819           - AppendText now updates the selection points after inserting text
19820           - AppendText now ensures that the last tag (sometimes 0-length) of
19821             the document is used for the style information (Fixes part of 
19822             bug #77220)
19823         * TextControl.cs:
19824           - Created new FontDefiniton class to allow describing partial style
19825             changes
19826           - StreamLine() now takes a lines argument, to allow it to decide
19827             whether an encountered zero-length tag is the last in the document
19828             (which must be kept to not loose the font/color contained in it,
19829             for later appends)
19830           - Created Combine() and Split() methods for Marker structs, to 
19831             support marker updates due to reformatted documents (soft line
19832             wraps)
19833           - Implemented Document.CaretTag setter
19834           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
19835             of the last line (Not the cause, but also exposed by bug #77220)
19836           - Added LineTag argument to InsertString method, to allow callers
19837             to force a certain tag to be used (required to force use of the
19838             trailing zero-length tag of a document)
19839           - Now updating markers in Combine(), to avoid stale tag markers
19840           - Added some method descriptions to aid maintenance
19841           - Implemented new FormatText concept, allowing additive/subtractive
19842             formatting by only specifying the components that are to be 
19843             changed. This was needed for resolving the RTB.SelectedColor/
19844             RTB.SelectedFont fixmes
19845           - Added Break() support method to allow breaking up linetags (used
19846             for partial formatting)
19847           - Added GenerateTextFormat() method. It is used for partial 
19848             formatting and allows to generate a full font/color from given
19849             attributes and an existing tag.
19850
19851 2006-02-26  Jackson Harper  <jackson@ximian.com>
19852
19853         * XplatUIX11.cs:  Use the correct caption height.
19854         - Translate hittest coordinates to screen coords to match MS.
19855         * XplatUIWin32.cs: When we create MDI windows we need to reset
19856         some of the style flags, so we get a nice blank window, and can
19857         draw all the decorations ourselves.
19858         - Set a clipping rectangle on the non client paint event, the
19859         window manager drawing code needs one.
19860         * Form.cs: The window manager needs to know when the window state
19861         has been updated.
19862         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
19863         don't need to factor in border and title sizes in these
19864         methods. TODO: Remove the args and fix the call points.
19865         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
19866         properly.
19867         - Let the driver set the cursors.
19868         - Improve active window handling
19869         - Correct sizes for title bars and buttons.
19870         - Match MS drawing better
19871         * MdiWindowManager.cs: We don't need to handle border style
19872         updates specially anymore.
19873         - Check for scrollbars when windows are done moving
19874         - Handle Active properly.
19875         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
19876         correctly. I am spewing the exception though, so we don't hide the
19877         bugs.
19878         
19879 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
19880
19881         * DataGridViewRowPostPaintEventArgs.cs,
19882           DataGridViewCellPaintingEventArgs.cs,
19883           DataGridViewRowCollection.cs,
19884           DataGridViewRowPrePaintEventArgs.cs,
19885           DataGridViewCell.cs: Clear a few warnings and implement a few
19886           exceptions that should be thrown.
19887
19888 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19889
19890         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
19891           'inheriting' our parent's (non-default) cursor. (Part of
19892            the fix for #77479)
19893
19894 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
19895
19896         * XplatUIX11.cs: Fixed cast to make csc happy
19897
19898 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19899
19900         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
19901           it's for the client area (part of fix for #77479 and needed
19902           for MDI window cursor handling)
19903         * XplatUIX11.cs
19904           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
19905             the appropriate default cursors and also passing the message
19906             up the parent chain 
19907           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
19908             for non-client areas
19909
19910 2006-02-15  Jackson Harper  <jackson@ximian.com>
19911
19912         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
19913         is a real MDI window
19914
19915 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
19916
19917         * X11DesktopColors.cs: Instead of checking the desktop session
19918           string for "KDE" check if it starts with "KDE"
19919
19920 2006-02-10  Jackson Harper  <jackson@ximian.com>
19921
19922         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
19923         systems).
19924
19925 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19926
19927         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
19928           errors
19929         * ColorDialog.cs:
19930           - Got rid of the panel. All controls are now directly added to
19931             the dialog form
19932           - Changed to mono coding style
19933
19934 2006-02-10  Jackson Harper  <jackson@ximian.com>
19935
19936         * InternalWindowManager.cs: We don't need the set visibility to
19937         false hack anymore now that peter has written beautiful shutdown
19938         code.
19939
19940 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
19941
19942         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
19943           where already explicitly destroyed
19944
19945 2006-02-10  Jackson Harper  <jackson@ximian.com>
19946
19947         * MdiClient.cs: Handle the case where windows are too high or to
19948         the left and we need scrollbars.
19949
19950 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19951
19952         * MimeIcon.cs: Added some icons
19953         * FileDialog.cs:
19954           - Fixed bug #77477
19955           - Got rid of the panel. All controls are now directly added to
19956             the dialog form
19957           - Changed to mono coding style
19958           - On Linux "My Computer" and "My Network" will now show some
19959             more usefull information. A new class, MasterMount, gathers
19960             this information from /proc/mount. Updated MWFFileView to make
19961             use of this information
19962           - Fixed a bug that caused FileDialog to crash when
19963             ".recently_used" file had a zero size
19964           - FilterIndex does now what it should
19965           - Some Refactoring
19966         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
19967             FileDialog changes
19968
19969 2006-02-09  Jackson Harper  <jackson@ximian.com>
19970
19971         * ComboBox.cs: Don't touch if null.
19972
19973 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
19974
19975         * Cursor.cs: 64bit safeness fix
19976         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
19977
19978 2006-02-09  Jackson Harper  <jackson@ximian.com>
19979
19980         * Form.cs: If a form is made into an MDI form update the styles so
19981         all the props can get set correctly.
19982         - Kill the mdi_container when we dont need it anymore.
19983         * InternalWindowManager.cs: Add missing NOT
19984
19985 2006-02-08  Jackson Harper  <jackson@ximian.com>
19986
19987         * InternalWindowManager.cs: Respek clipping when drawing MDi
19988         decorations.
19989
19990 2006-02-08  Jackson Harper  <jackson@ximian.com>
19991
19992         * Hwnd.cs: Add bits to track non client expose events.
19993         * XplatUIX11.cs: Track non client expose events on the hwnd. This
19994         gives us a proper invalid rect and will allow for some nice
19995         optimizations with NC client drawing
19996         - MDI windows are children windows, so move their style handling
19997         into the child window block.
19998         * InternalWindowManager.cs: Remove a state reset that was
19999         getting invoked at the wrong time. Fixes managed windows getting
20000         into a 'stuck' captured state.
20001
20002 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
20003
20004         * TextControl.cs (Document.ctor): Now initializing 
20005           selection_anchor. Fixes #77493
20006
20007 2006-02-07  Jackson Harper  <jackson@ximian.com>
20008
20009         * TrackBar.cs: The increment/decrements were backwards.
20010
20011 2006-02-07  Mike Kestner  <mkestner@novell.com>
20012
20013         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
20014         to the instance itself.
20015
20016 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
20017
20018         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
20019           on ulongs and pointers, the size differs between 32bit and 64bit
20020           systems. 
20021
20022 2006-02-07  Mike Kestner  <mkestner@novell.com>
20023
20024         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
20025         for 64 bit platforms to work around a metacity bug. 
20026
20027 2006-02-07  Jackson Harper  <jackson@ximian.com>
20028
20029         * TrackBar.cs: Process the input keys we need, and hookup to
20030         KeyDown instead of using WndProc, so we get key messages.
20031
20032 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
20033
20034         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
20035           machine we're on. 
20036         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
20037           we need to translate the XdndVersion atoms array before sending it
20038
20039 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
20040
20041         * XplatUIX11.cs: 
20042           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
20043             number of bits for the property, not the number of bytes. The
20044             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
20045             but would not crash since it specified 8 bits instead of 4 bits)
20046           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
20047             defined as XID -> long in the C headers)
20048           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
20049             references since those are now IntPtr to begin with
20050           - Switched all Atom.XXX 'int' casts to IntPtr casts
20051           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
20052           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
20053           - Added XChangeActivePointerGrab DllImport (for X11DnD)
20054         * X11Structs.cs:
20055           - Changed 'int' type for Atoms in XEvent structures to IntPtr
20056           - Changed atom in HoverStruct to be IntPtr
20057         * X11DnD.cs:
20058           - Removed local DllImports, switched code to use those from XplatUIX11
20059           - Removed/fixed casts related to the switch of Atom to be a IntPtr
20060
20061 2006-02-06  Mike Kestner  <mkestner@novell.com>
20062
20063         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
20064         method signatures in the import region.  There may still be some
20065         lingering struct marshaling issues, as I didn't drill down into those.
20066         Yet.
20067
20068 2006-02-06  Jackson Harper  <jackson@ximian.com>
20069
20070         * ComboBox.cs: Dont manually set the top_item, this is computed
20071         when the scrollbar position is set.
20072
20073 2006-02-06  Mike Kestner  <mkestner@novell.com>
20074
20075         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
20076         startup crashes on amd64.  There's other fixes needed.  All pinvoke
20077         usage of Atom needs to be mapped to IntPtr for example.  And there are
20078         likely other int/long issues to be addressed.
20079
20080 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
20081
20082         * FileDialog.cs: One more...
20083
20084 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20085
20086         * FileDialog.cs: Next try
20087
20088 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20089
20090         * FileDialog.cs: First part of fix for #77464
20091
20092 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20093
20094         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
20095           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
20096           AcceptButton border drawing.
20097
20098 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
20099
20100         * Form.cs: Moved positioning of form after auto scaling is applied,
20101           otherwise it would possibly use wrong form size.
20102
20103 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
20104
20105         * Control.cs (RecreateHandle): No need to re-create any child
20106           controls, the child windows will get destroyed automatically by
20107           the windowing system or driver, and re-created when the handle
20108           is being accessed the first time. Fixes #77456
20109         * Form.cs: No longer setting the form to closing if the handle is 
20110           being recreated. This seems like the right thing to do, don't
20111           have a bug or testcase for this, though.
20112
20113 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
20114
20115         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
20116           controls to avoid unwanted side effects
20117
20118 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
20119
20120         * Control.cs: 
20121           - ScaleCore needs to scale the bounds, not the ClientSize of the 
20122             control. Fixes #77416.
20123           - DefaultSize is 0,0 for control
20124         * TextBoxBase.cs: 
20125           - DefaultSize is 100, 20
20126           - SetBoundsCore: Now enforcing the height, no matter if the provided
20127             height is more or less than the preferred one, as long as AutoSize
20128             is on
20129         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
20130
20131 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
20132
20133         * Control.cs:
20134           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
20135             call unless both performLayout is true *and* we have a pending
20136             layout change
20137           - ResumeLayout: MS does not completely nest Suspend and Resume,
20138             they bottom out at 0, fixed our code to match that.
20139           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
20140             SetBoundsCore, we were updating even when we shouldn't. This fixes
20141             swf-anchors mis-anchoring when resizing the app fast and lots.
20142           - UpdateDistances: Now only setting the left and top distance if 
20143             we have a parent and are not suspended, this is based on
20144             a suggestion by Don Edvaldson in bug #77355.
20145           - OnVisibleChanged: Fixed logic when to create the control. We may
20146             not create the control if we have no parent or if it's not visible;
20147             switched to using Visible property instead of is_visible field 
20148             since the property also considers parent states. This fixes a bug
20149             when starting Paint.Net
20150
20151 2006-02-02  Jackson Harper  <jackson@ximian.com>
20152
20153         * Form.cs: If the forms handle hasn't been created yet don't call
20154         into xplatui to make it top most, just set the topmost flag on the
20155         form in CreateParams
20156         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
20157
20158 2006-02-01  Jackson Harper  <jackson@ximian.com>
20159
20160         * ScrollableControl.cs: Refactored the Recalculate method a
20161         little, this wasn't handling all the variants of bottom and right
20162         bars needed to be added and added/removed based on their
20163         counterparts being added/removed (which changes the drawable
20164         size). Also we special case client widths and heights of 0 and
20165         don't add the scrollbar for those.
20166
20167 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
20168
20169         * XplatUIX11.cs: 
20170           - Added method to get AbsoluteGeometry(); currently unused, but might
20171             be used in the future, if we try again to figure out toplevel
20172             coordinates with some more crappy window managers
20173           - Added FrameExtents() method to retrieve the WM set decoration size
20174           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
20175             to deal with at least KDE, FVWM and metacity (Fixes #77092)
20176         * Hwnd.cs: 
20177           - Added whacky_wm tracking var for metacity
20178           - Added logic to have default menu height if the actual menu height
20179             has not yet been calculated (part of fix for #77426)
20180         * Form.cs: Keep track whether client size has been set and re-set 
20181           it if a menu is added/removed afterwards (Fixes #77426)
20182
20183 2006-01-31  Jackson Harper  <jackson@ximian.com>
20184
20185         * Control.cs: When a new Site is set on the component attempt to
20186         pull the AmbientProperties from it.
20187
20188 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
20189
20190         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
20191           in the background of the owning form. Fixes #77332
20192
20193 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
20194
20195         * MimeIcon.cs: Fix for #77409
20196
20197 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
20198
20199         * XplatUIX11GTK.cs: Initial import
20200
20201 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
20202
20203         * FixedSizeTextBox: fixes class signature
20204
20205 2006-01-30  Jackson Harper  <jackson@ximian.com>
20206
20207         * FixedSizeTextBox.cs: New internal class that represents a
20208         textBox that will not be scaled.
20209         * TreeView.cs:
20210         * ComboBox.cs:
20211         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
20212         standard TextBox.
20213                 
20214 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
20215
20216         * XplatUIX11.cs: Retrieve default screen number instead of
20217           assuming 0. Attempted fix for #77318
20218
20219 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
20220
20221         * XplatUIWin32.cs: 
20222           - GetWindowPos: When a window is parented by FosterParent, use 
20223             the desktop instead of FosterParent as the base to get coordinates
20224           - CreateWindow: Don't make FosterParent the parent window for Popups
20225             if we don't want a taskbar entry, Popups automatically don't get one
20226         * Hwnd.cs: Need to call remove to actually remove the key from the
20227           hash table
20228
20229 2006-01-30  Mike Kestner  <mkestner@novell.com>
20230
20231         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
20232
20233 2006-01-30  Jackson Harper  <jackson@ximian.com>
20234
20235         * TreeView.cs:
20236         * TreeNode.cs: Raise events no matter how the treenode is
20237         checked. Patch by Don Edvalson.
20238
20239 2006-01-30  Jackson Harper  <jackson@ximian.com>
20240
20241         * TreeNode.cs: Signature fix.
20242
20243 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
20244
20245         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
20246
20247 2006-01-20  Mike Kestner  <mkestner@novell.com>
20248
20249         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
20250         event forwarding when menus are active.
20251         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
20252         Most of the patch is pdb's with a little rework.
20253
20254 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
20255
20256         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
20257           Removed GetMenuDC and ReleaseMenuDC methods; replaced
20258           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
20259         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
20260         * InternalWindowManager.cs: Added use of PaintEventStart/End to
20261           handling of WM_NCPAINT message, now passing the PaintEventArgs to
20262           the PaintWindowDecorations method
20263         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
20264         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
20265         * MenuAPI.cs: Made tracker window invisible
20266         * XplatUIWin32.cs:
20267           - Removed GetMenuDC and ReleaseMenuDC methods
20268           - Implemented the client=false path for PaintEventStart and
20269             PaintEventEnd
20270
20271 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
20272
20273         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
20274         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
20275           styles
20276         * Form.cs: 
20277           - MaximizeBox, MinimizeBox: Recreate the handle when setting
20278             the style
20279           - CreateParams: Reworked the styles to match MS look'n'feel,
20280             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
20281             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
20282
20283 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
20284
20285         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
20286           window is not mapped, since otherwise every form that's being 
20287           created is considered minimized, which is wrong.
20288         * Form.cs: Catching the exception and returning our internal value
20289           instead
20290
20291 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
20292
20293         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
20294           SetWindowMinMax() to have means to tell the driver about the minimum,
20295           maximum and maximized state window sizes. (Part of the fix for #76485)
20296         * Form.cs:
20297           - Implemented tracking of minimum and maximum window size, now calling
20298             new SetWindowMinMax() driver method to tell the driver (Part of the
20299             fix for #76485)
20300           - Finished handling of WM_GETMINMAXINFO method, now setting all values
20301             (Completes fix for #76485)
20302           - Calling new SetWindowMinMax driver method when the handle for a 
20303             form is created, to make sure the driver knows about it even if
20304             the values have been set before the window was created
20305           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
20306             to avoid messing up our anchoring calculations (partial fix
20307             for #77355)
20308         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
20309         * XplatUIX11.cs:
20310           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
20311           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
20312             (and presumably other freedesktop.org compliant WMs). Left the
20313             assumption unmapped=minimized, needed for SetVisible to work.
20314           - Now setting the window state when creating windows
20315           - Fixed SetVisible to consider/set the window state when mapping
20316             a Form. We cannot set the state before it's mapped, and we cannot
20317             use Form.WindowState once it's mapped (since it would ask the
20318             driver and get 'normal'. Therefore, we grab the state before
20319             mapping, map, and then set state.
20320           - Implmemented SetWindowMinMax method; Metacity does not seem to
20321             honor the ZoomHints, though.
20322         * XplatUIWin32.cs:
20323           - Removed MINMAXINFO (moved to XplatUIStructs)
20324           - Added SetWindowMinMax stub (on Win32 the only way to set that
20325             information is in response to the WM_GETMINMAXINFO message, which
20326             is handled in Form.cs)
20327           - Added logic to SetVisible to set the proper window state when a 
20328             form is made visible (fixes #75720)
20329
20330 2006-01-26  Jackson Harper  <jackson@ximian.com>
20331
20332         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
20333         same way we handle them with Invoke.
20334
20335 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
20336
20337         * Form.cs:
20338           - Added tracking of window state so CreateParams can return
20339             the appropriate style
20340           - Moved setting of WS_CAPTION style in CreateParams to allow
20341             styles without caption
20342         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
20343           control if the TextBox property is accessed. Fixes #77345
20344         * Control.cs:
20345           - get_Created: now uses is_disposed and is_created to determine
20346             return value (suggested by Jackson)
20347           - CreateHandle: No longer exits if the handle is being recreated
20348           - RecreateHandle: If the handle is not yet created call the 
20349             appropriate method to create either control or handle. If the
20350             control is already created CreateHandle will simply exit instead
20351             of just creating the handle
20352         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
20353           now SendMessage WM_DESTROY directly to the control when DestroyWindow
20354           is called.
20355         * XplatUIX11.cs: 
20356           - When DestroyWindow is called, instead of waiting for the 
20357             DestroyNotification from X11, we directly post it to the WndProc
20358             and immediately dispose the hwnd object.
20359             Same applies to DestroyChildWindows, and this obsoletes the
20360             expose_pending tracking. Contrary to Win32 behaviour we destroy our
20361             child windows before our own, to avoid X11 errors.
20362           - Removed the direct sending of WM_PAINT on UpdateWindow
20363         * XplatUIWin32.cs:
20364           - Reworked DoEvents and GetMessage to allow access to internal queue
20365             even when trying non-blocking access to the queue.  Fixes #77335. 
20366             Based on a patch suggestion by Don Edvalson. The new private
20367             GetMessage can now also be used as a backend for a PeekMessage
20368             frontend version.
20369         * XplatUI.cs: Improved debug output for CreateWindow
20370
20371 2006-01-25  Jackson Harper  <jackson@ximian.com>
20372
20373         * Help.cs: Allow param to be null. Patch by Don Edvalson.
20374
20375 2006-01-24  Jackson Harper  <jackson@ximian.com>
20376
20377         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
20378         when we have a MaxDropItems lower then the selected index.
20379
20380 2006-01-24  Jackson Harper  <jackson@ximian.com>
20381
20382         * Control.cs: Don't allow selection of non visible controls, allow
20383         selection of controls without parents.
20384
20385 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
20386
20387         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
20388         * DataGridDrawingLogic.cs: Add editing row only when is necessary
20389
20390 2006-01-23  Jackson Harper  <jackson@ximian.com>
20391
20392         * UpDownBase.cs: Make the textbox handle all the selection and
20393         tabbing. This fixes tabing to updown controls.
20394
20395 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
20396
20397         * TextBoxBase.cs: fixes exception thown the object was null
20398
20399 2006-01-23  Jackson Harper  <jackson@ximian.com>
20400
20401         * ButtonBase.cs: Just use the base CreateParams. They set
20402         visibility and enabled correctly.
20403         * ComboBox.cs:
20404         * TrackBar.cs:
20405         * MonthCalendar.cs: Lets let the base set as much of the
20406         createparams as possible so we don't have duplicate code all over
20407         the place.
20408
20409 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
20410
20411         * ThemeGtk.cs: Added TrackBar and some experimental code to
20412           get double buffering back
20413
20414 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
20415
20416         * DataGrid.cs: Allows row number set internally higher than the last
20417         when creating a new row. Restores the editing functionality.
20418
20419 2006-01-20  Mike Kestner  <mkestner@novell.com>
20420
20421         * MimeIcon.cs: delay Image creation until the icons are accessed
20422         instead of creating 190 scaled images on GnomeHandler startup.
20423
20424 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
20425
20426         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
20427           first call base before processing the event. Fixes #77279
20428
20429 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
20430
20431         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
20432           that the stride for the GDI bitmap would match the stride of
20433           a DIB or a Cursor.
20434
20435 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
20436
20437         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
20438
20439 2006-01-19  Jackson Harper  <jackson@ximian.com>
20440
20441         * ComboBox.cs: Hookup the text controls keydown event so we get
20442         those when the text control has the focus.
20443
20444 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20445
20446         * Label.cs: Now using the base events instead of defining new ones;
20447           this allows us to just call the base properties without having to
20448           duplicate all base property logic 
20449
20450 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20451
20452         * Label.cs: A label by default is not a tabstop (Fixes one of our
20453           failing nunit tests)
20454
20455 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20456
20457         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
20458         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
20459
20460 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20461
20462         * Cursor.cs: Reimplemented creating cursor bitmaps without using
20463           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
20464           This fixes #77218
20465         * XplatUIWin32.cs: 
20466           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
20467             constructor creates images that can't be saved. Part of the fix
20468             for #76103
20469           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
20470           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
20471             bug fix for handling window state in forms properly)
20472
20473 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20474
20475         * ThemeGtk.cs: Simplify ScrollBar drawing
20476
20477 2006-01-18  Jackson Harper  <jackson@ximian.com>
20478
20479         * Splitter.cs: Set the default dock style for the splitter control
20480         in the constructor.
20481
20482 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20483
20484         * ThemeGtk.cs: Corrected StateType and ShadowType for
20485           gtk_paint_box
20486
20487 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20488
20489         * Control.cs: Make use of Theme.DoubleBufferingSupported
20490         * ThemeGtk.cs:
20491           - Added drawing for flat style buttons
20492           - Added ScrollBar drawing
20493
20494 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20495
20496         * ThemeClearlooks.cs: Removed some unneeded code.
20497         * ThemeGtk.cs: First part of ThemeGtk enhancements.
20498
20499 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20500
20501         * LinkLabel.cs: We need to update the hover drawing when
20502           leaving the control as well.
20503
20504 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
20505
20506         * DataGrid.cs: Clicking on non empty areas in the columns
20507            area was giving an exception
20508
20509 2006-01-17  Jackson Harper  <jackson@ximian.com>
20510
20511         * ThemeWin32Classic.cs:
20512         * ListView.cs: Do not draw/clip the headers when the header style
20513         is None.
20514
20515 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20516
20517         * DataGrid.cs: Fixes 77260
20518         
20519 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20520
20521         * DataGrid.cs: Clicking on a column on a empty grid was giving
20522           an exception
20523
20524 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20525
20526         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
20527           or any keypress will crash the grid.
20528
20529 2006-01-17  Mike Kestner  <mkestner@novell.com>
20530
20531         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
20532         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
20533         invisible/previously-visible items.
20534         [Fixes #76909]
20535
20536 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
20537
20538         * ThemeClearlooks.cs:
20539         - Added CL_Draw_Button method; now other theme controls that are 
20540           not derived from button or do not have a button can draw buttons
20541           too
20542         - Updated ComboBox drawing
20543         - Beautified RadioButton drawing
20544         - Corrected drawing of bottom and left tabs
20545         - Beautified DateTimePicker and MonthCalendar
20546         - Added CPDrawButton and CPDrawRadioButton
20547
20548 2006-01-16  Jackson Harper  <jackson@ximian.com>
20549
20550         * ComboBox.cs: Set the initial value of the scrollbar to the
20551         current index. Reduce the numbers of refreshs and IndexOfs called.
20552
20553 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
20554
20555         * FileDialog.cs: When the file listview is focused hitting the
20556           backspace key moves the fileview to the parent directory
20557
20558 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20559
20560         * Form.cs: 
20561           - Added RecreateHandle call when changing taskbar visibility to 
20562             trigger reparenting in Win32 driver (Fixes #75719)
20563           - If a window has minimize or maximize buttons, it cannot have
20564             a help button
20565         * XplatUIWin32.cs:
20566           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
20567             the toplevel form with FosterParent (A toolwindow not on the
20568             taskbar) (Fixes #75719)
20569           - Made FosterParent a toolwindow
20570
20571 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20572
20573         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
20574
20575 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20576
20577         * ToolTip.cs: If SetToolTip is called from a control and the mouse
20578           is currently over that control, make sure that tooltip_window.Text
20579           gets updated
20580
20581 2006-01-13  Mike Kestner  <mkestner@novell.com>
20582
20583         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
20584
20585 2006-01-13  Jackson Harper  <jackson@ximian.com>
20586
20587         * TreeView.cs: On MS GetNodeAt never actually factors in the X
20588         value passed.  Also redraw the selected node when we recieve
20589         focus, so tabbing between trees works correctly.
20590
20591 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20592
20593         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
20594           ~/.gconf/%gconf-tree.xml, so use
20595           .gconf/desktop/gnome/interface/%gconf.xml
20596
20597 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20598
20599         * TextControl.cs: Draw text in gray if control is disabled
20600
20601 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20602
20603         * TreeView.cs: Draw the focus rectangle outside the highlight, to
20604           make sure it's always visible. Fixes #76680.
20605
20606 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20607
20608         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
20609
20610 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
20611
20612         * PageSetupDialog.cs: Added.
20613         * PrintDialog.cs: Attributes.
20614         * PrintPreviewControl.cs: Updates.
20615         * PrintPreviewDialog.cs: Updates.
20616         
20617 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20618
20619         * Control.cs: Undid my selection check fix, since it's not needed
20620         * TextBoxBase.cs:
20621           - Now considering the presence of hscroll/vscroll when sizing
20622             vscroll/hscroll respectively. Fixed bug #77077
20623           - Added Left/Up/Down/Right to IsInputKey list to prevent
20624             ContainerControl from stealing them. This fixes what I broke
20625             with my last checkin.
20626
20627 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
20628
20629         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
20630           I finally understand how the property can be set without a setter :-)
20631
20632 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20633
20634         * Application.cs:
20635           - Switched RunLoop to use static Message.Create to create a 
20636             Message object
20637           - Added PreProcessMessage call in runloop for keyboard events; this
20638             is part of the fix for #77219, I overlooked this originally in the
20639             MSDN doc for PreProcessMessage
20640         * Control.cs:
20641           - Removed call to PreProcessMessage from handling of keyboard 
20642             messages; it's supposed to be done in the message pump
20643           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
20644             per MSDN documentation.
20645           - IsInputChar: All chars are input chars by default; removed the 
20646             parent calling chain, MS does not document that
20647           - PreProcessMessage: If IsInputChar is true, we want to return false
20648             to allow dispatching of the message
20649           - When selecting the next control, now also check that we're not
20650             selecting ourselves again and therefore return a false positive.
20651         * TextBoxBase.cs:
20652           - Tried to match return values for IsInputKey and ProcessDialogKey
20653             to what MS returns; moved processing of our special keys outside
20654             ProcessDialogKey since MS does not seem to return true on those.
20655           - Moved code that previously was in ProcessDialogKey into new private
20656             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
20657           - Reworked handling of WM_CHAR to not have to duplicate code from
20658             Control.cs anymore, instead we simply call down to base.
20659            
20660 2006-01-12  Jackson Harper  <jackson@ximian.com>
20661
20662         * ComboBox.cs: We always need to refresh the text area when
20663         EndUpdate is called. Fixes the combobox in the file dialog.
20664         * Control.cs: Don't create the creator_thread until the controls
20665         handle is created.  Also in InvokeRequired we check if the
20666         creator_thread is null. This gives the effect of InvokeRequired
20667         returning true if the controls handle is not created yet, and
20668         matches MS.
20669
20670 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20671
20672         * XplatUI.cs:
20673           - Added StartLoop() driver method. This is used to allow drivers to
20674             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
20675             loop for a particular thread
20676           - Added EndLoop() driver method. This is called once the message
20677             pump for the thread is shut down
20678           - Added SupportsTransparency method to allow the driver to indicate
20679             opacity support for windows
20680         * Form.cs:
20681           - Removed TODO attribute, completed AllowTransparency property
20682           - Added documented logic to Opacity
20683         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
20684           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
20685           versions of CompatibleTextRendering
20686         * X11Structs.cs: Added opacity atom to our atom enumeration
20687         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
20688           of a form might be set before it's reparented by the WM, and we need
20689           the opacity value without calling up to Form)
20690         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
20691           SupportsTransparency() driver methods
20692         * Application.cs: Now calling StartLoop and EndLoop driver methods
20693         * XplatUIX11.cs:
20694           - Added opacity atom registration
20695           - Added StartLoop()/EndLoop() methods. They're empty right now but
20696             will need to get implemented when we switch to a per-thread queue
20697           - Implemented SupportsTransparency() method
20698           - Implemented SetWindowTransparency() method
20699           - Added support for setting the opacity value when a window is
20700             reparented (since the opacity needs to be set on the WM frame)
20701         * XplatUIOSX.cs, XplatUIWin32.cs:
20702           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
20703
20704 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20705
20706         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
20707
20708 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20709
20710         * FileDialog.cs: Added ToolTip for MWFFileView
20711         * MimeIcon.cs: Rewrote GnomeHandler.
20712           - Get currently used gnome icon theme from
20713             ($HOME)/.gconf/%gconf-tree.xml
20714           - Make use of inherited icon themes
20715           - Support SVG icon themes like Tango via librsvg
20716
20717 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20718
20719         Revert's Jackson's revert which broke 2.0 builds.   Fix both
20720         builds. 
20721         
20722         * Application.cs: Move the use_compatible_text_rendering outside
20723         the NET_2_0 define.  If we ever need to use the
20724         use_compatible_text_rendering on the individual controls they will
20725         access the variable from the common shared code paths.
20726
20727 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20728
20729         * XplatUI.cs:
20730           - Added more granular debug options
20731           - Added method to print both window text and id
20732           - Switched debug output to use new Window() debug method
20733           - Added IsEnabled() driver method
20734           - Added EnableWindow() driver method
20735         * Form.cs:
20736           - Removed end_modal; no longer needed, new loop handles termination
20737             via 'closing' variable
20738           - If form is modal, setting DialogResult will now initiate loop
20739             termination via 'closing' variable
20740           - Added support for is_enabled/WS_DISABLED to CreateParams
20741           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
20742             does all the work
20743           - Removed code that's now in RunLoop from ShowDialog()
20744           - Added various documented sanity checks to ShowDialog()
20745           - Added handling of WM_DESTROY message; we set 'closing' on getting
20746             the message to indicate the message pump to terminate
20747           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
20748             send by the Application.ExitThread method. (We send the message
20749             to destroy the window after all other events have been
20750             processed through the queue, instead of destroying the handle 
20751             directly)
20752           - Moved code from Close() method to WM_CLOSE handler; added logic
20753             to only send close-related events if the form is not displayed
20754             modal
20755         * Splitter.cs (..ctor): Fixed typo in resource name
20756         * Control.cs:
20757           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
20758             brush now
20759           - set_Cursor: Now only setting calling into XplatUI if the handle for
20760             the control is already created; this avoids implict handle creation
20761             or crashes if it's not created
20762           - set_Enabled: Now setting the enabled state via the new driver method
20763             instead of just tracking it
20764           - CreateParams: Added logic to set WS_DISABLED based on enabled state
20765           - CreateControl: Reordered event firing and method calls to more
20766             closely fire events in the order MS does. Now setting the
20767             enabled state in the driver when creating the control.
20768           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
20769             match MS order
20770         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
20771           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
20772         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
20773         * Hwnd.cs:
20774           - Added tracking of window enabled state (get_Enabled/set_Enabled)
20775           - Added EnabledHwnd property to easily allow a driver to find the
20776             handle of the first enabled window in the parent chain (this is
20777             used by drivers to pass up input events of disabled windows)
20778         * XplatUIDriver.cs: Added IsEnabled() method
20779         * Application.cs:
20780           - Removed crude and obsolete exiting tracking variable
20781           - Removed internal ModalRun(); replaced by RunLoop()
20782           - Implemented private CloseForms() method to allow closing all 
20783             windows owned by a particular (or all) threads
20784           - Exit() now properly closes all windows without forcing the message
20785             pump to quit
20786           - Removed obsolete InternalExit() method
20787           - Changed Run() methods to use new RunLoop() message pump
20788           - Implemented new RunLoop() method for both modal and non-modal forms
20789         * CommonDialog.cs:
20790           - get_CreateParams: Added setting of WS_DISABLED
20791           - Simplified ShowDialog(); now all the work is done in RunLoop(),
20792             invoked via Form.ShowDialog()
20793         * NativeWindow.cs: We don't remove the window from the collection when
20794           the handle is destroyed; there might still be messages for it in the
20795           queue (mainly the resulting WM_DESTROY); instead it will be removed
20796           when Control calls InvalidateHandle in the WM_DESTROY handler
20797         * XplatUIX11.cs:
20798           - CreateWindow: Added logic to handle the WS_DISABLED window style
20799           - EnableWindow: Implemented based on Hwnd.Enabled
20800           - GetMessage: Reset PostQuitState so the method can be called again
20801           - Implemented support for disabled windows (passing messages to the
20802             first enabled parent) in handling all input messages
20803           - Added optimizations for handling Expose events
20804           - Implemeted new driver method IsEnabled()
20805           - Now always resetting paint pending tracking vars when we start paint
20806           - Re-implemented UpdateWindow via just sending a WM_PAINT message
20807         * XplatUIOSX.cs: Added IsEnabled method stub
20808         * XplatUIWin32.cs: Implemented new IsEnabled() method
20809
20810 2006-01-11  Jackson Harper  <jackson@ximian.com>
20811
20812         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20813         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
20814         variables a little.
20815         * ColorDialog.cs: Clear out the old form before adding the new
20816         panel.  
20817
20818 2006-01-11  Jackson Harper  <jackson@ximian.com>
20819
20820         * X11Dnd.cs: Make sure to add all the text formats when adding
20821         strings to the data object.
20822         * TreeNodeCollection.cs: When adding to a sorted tree we need to
20823         do some redrawing too.  Also change the UpdateNode to an
20824         UpdateBelow so the newly added node gets painted.
20825         
20826 2006-01-11  Miguel de Icaza  <miguel@novell.com>
20827
20828         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20829         LinkLabel.cs, PropertyGrid.cs: Implement the
20830         UseCompatibleTextRendering property for 2.x
20831
20832         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
20833
20834 2006-01-11  Jackson Harper  <jackson@ximian.com>
20835
20836         * TreeView.cs: Use the property for setting the selected node so
20837         the correct events get raised.
20838         * TreeNode.cs: Update the tree when the fore/back colours of a
20839         node are set.
20840
20841 2006-01-10  Jackson Harper  <jackson@ximian.com>
20842
20843         * TreeView.cs: Allow setting SelectedNode to null.
20844
20845 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20846
20847         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
20848
20849 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20850
20851         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
20852
20853 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20854
20855         * PrintDialog.cs: Added attributes and set default property values.
20856
20857 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20858
20859         * PrintControllerWithStatusDialog.cs: 
20860         Added PrintControllerWithStatusDialog.
20861
20862 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20863
20864         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
20865         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
20866
20867 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20868
20869         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
20870
20871 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
20872
20873         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
20874         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
20875
20876 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20877
20878         * MimeIcon.cs: Added internal class SVGUtil.
20879
20880 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20881
20882         * FileDialog.cs: Don't crash if there are two files with the
20883           same name but different locations.
20884
20885 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
20886
20887         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
20888         dates across multiple month grids. Used to not highlight entire 
20889         month, but does now.
20890         
20891 2006-01-06  Jackson Harper  <jackson@ximian.com>
20892
20893         * MonthCalendar.cs: Removed DoEvents call to prevent a running
20894         message loop. Change timer intervals to numbers that seem more
20895         natural.
20896
20897 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
20898
20899         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
20900           object for location info since screen object is now implemented.
20901
20902 2006-01-05  Jackson Harper  <jackson@ximian.com>
20903
20904         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
20905         * AsyncMethodResult.cs: We no longer use a WeakReference for the
20906         AsyncMethodResult, this is because we ALWAYS want the
20907         ManualResetEvent to get set.
20908         * Control.cs: When disposing use an async invoke to call shutdown
20909         code, so that thigns don't block on the finalizer thread.  Also
20910         check if we even have a message loop before trying to send
20911         messages, if we don't then don't bother sending messages.
20912         - No more weak references for async methods
20913         * XplatUIDriver.cs: No more weak references for async methods.
20914
20915 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20916
20917         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
20918           returns two FontFamily with the same name
20919
20920 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20921
20922         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
20923           drawing disabled text. Instead using the ColorGrayText color
20924
20925 2006-01-04  Jackson Harper  <jackson@ximian.com>
20926
20927         * TreeNode.cs: redraw the node when its image index is changed.
20928
20929 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20930
20931         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
20932           time I checked there are no others like it.
20933
20934 2006-01-04  Jackson Harper  <jackson@ximian.com>
20935
20936         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
20937         this gives the behavoir I was looking for.
20938         * Control.cs: Special case Invoking EventHandlers, this matches MS
20939         and fixes part of bug #76326.
20940
20941 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20942
20943         * ThemeClearlooks.cs, FileDialog.cs:
20944           - Reflect the latest Theme class changes
20945           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
20946             with DateTime
20947             
20948 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20949
20950         * Theme.cs: Cache UI resource images and resize them if needed
20951
20952 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20953
20954         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
20955           is called. This fixes the crash in Nexxia when setting the font
20956           attributes in the chat. [However, RTF needs a look-over to make sure
20957           that all SelectionXXX methods handle the special case that selection
20958           is empty and therefore the change must be applied to all text starting
20959           at the cursor/selection start]
20960
20961 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
20962
20963         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
20964           XplatUIOSX.cs: Added SendMessage and PostMessage methods
20965         * X11Keyboard.cs: Switched to new way of calling PostMessage
20966
20967 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20968
20969         * Theme.cs: Added theme interface for images to allow the theme to
20970           control what images are used for things like FileDialog, MessageBox
20971           icons, etc.
20972         * MessageBox.cs: Now uses the new Theme icon/image interfaces
20973
20974 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
20975
20976         * FileDialog.cs:
20977           - Removed some dead code
20978           - Opening a recently used file does work now
20979           - Small UI enhancements
20980           - Refactoring
20981
20982 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
20983
20984         * FileDialog.cs: Forgot too add __MonoCS__
20985
20986 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
20987
20988         * FileDialog.cs: We are able to read recently used files now let's
20989           go on and write them.
20990
20991 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
20992
20993         * FileDialog.cs: Breathe some life into "last open"/"recently used"
20994           button
20995         * MimeIcon.cs: Do a check for the top level media type also
20996
20997 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
20998
20999         * ThemeClearlooks.cs:
21000           - Added CPDrawStringDisabled
21001           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
21002             some chars if the text doesn't fit into text_rect
21003           - DrawListViewItem: If View = View.LargeIcon center the image;
21004             rewrote the drawing of ListViewItem.Text if View = 
21005             View.LargeIcon
21006
21007 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
21008
21009         * MimeIcon.cs: Use default KDE icon theme if there is no
21010           "48x48" directory for the current icon theme, fixes #77114
21011         * Mime.cs: Disable not working and actually not used code. 
21012         * ThemeWin32Classic.cs:
21013           - Replace "new SolidBrush" in GetControlBackBrush and
21014             GetControlForeBrush with ResPool.GetSolidBrush
21015           - Changed DrawListViewItem from private to protected virtual
21016         * FileDialog.cs:
21017           - Added form.MaximizeBox = true
21018           - Don't throw an exception if there is a broken symbolic link
21019
21020 2005-12-23  Jackson Harper  <jackson@ximian.com>
21021
21022         * TabControl.cs: Give the panels focus, keyboard navigation is
21023         fixed so this works correctly now.
21024         - We need these key events also.
21025         * ToolBar.cs: Remove some of the poor mans double buffering.
21026         
21027 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
21028
21029         * ComboBox.cs: The internal TextBox now returns the focus.
21030
21031 2005-12-23  Jackson Harper  <jackson@ximian.com>
21032
21033         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
21034
21035 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
21036
21037         * Control.cs: Removed debug code
21038         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
21039           implicit children
21040
21041 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
21042
21043         * Control.cs: When creating the control, update the Z-order after
21044           all it's children are created, too. (Fixes nexxia not showing
21045           picturebox bug)
21046
21047 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
21048
21049         * Control.cs: Do not update the anchoring distances if layout is
21050           suspended, instead do it once layout is resumed
21051
21052 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
21053
21054         * Control.cs: 
21055           - After many hours of debugging, for both Jackson and
21056             myself, it turns out that it helps to set the parent of a control
21057             if you want to actually see it onscreen. In the spirit of that
21058             discovery, we're now setting the parent of the control and
21059             it's children when the control's handle is created. This fix
21060             will make Lutz Roeder's Reflector run happily. 
21061           - now just creating the handle instead of the whole control when
21062             getting a graphics context for the control.
21063
21064 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
21065
21066         * ScrollableControl.cs: When calculating the canvas, don't consider
21067           the scrollbar widths. Instead, predict if horizontal scrollbar
21068           will affect canvas when deciding on vertical display and vice versa.
21069
21070 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
21071
21072         * RichTextBox.cs: Set default RTF font for documents that don't
21073           have a font table (Fixes #77076)
21074
21075 2005-12-22  Jackson Harper  <jackson@ximian.com>
21076
21077         * TextBoxBase.cs: It's difficult to do, but you can have an empty
21078         clipboard. This prevents a NullRef in that case.
21079         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
21080         clipboard. PRIMARY is for the currently selected text only. (We
21081         should implement PRIMARY at some point.
21082
21083 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21084
21085         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
21086           a Unicode function with a structure that was defined in Ansi way.
21087           This fixes #76942.
21088
21089 2005-12-21  Jackson Harper  <jackson@ximian.com>
21090
21091         * StatusBar.cs: Statusbar handles its fore/back colours on it's
21092         on. Because thats how it rolls. (and this avoids it using ambient
21093         colours).
21094         * ThemeWin32Classic.cs: Use the proper back color for filling.
21095         * Menu.cs: Use the system menu bar color for drawing menu
21096         bars. Using the window back color will bring ambient colours into
21097         the picture.
21098
21099 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
21100
21101         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
21102           Bitmaps were created and not disposed.
21103
21104 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21105
21106         * Control.cs (CreateControl): Don't do anything if the control is
21107           already created, otherwise we'd fire the OnCreated event more than
21108           once
21109
21110 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
21111
21112         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
21113           will always match. Instead return -1. Fixes #76464.
21114
21115 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21116
21117         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
21118           neither the beginning nor the end of the line (Fixes bug #76479)
21119
21120 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
21121
21122         * Control.cs:
21123           - ControlNativeWindow.ControlFromHandle(): Now handling situation
21124             where handle is invalid
21125           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
21126             instead of slower linear search
21127         * NativeWindow.cs: Don't remove the window from the hashtable until
21128           after the driver has destroyed it (since the driver might use
21129           Control.FromHandle to lookup the control object
21130         * Hwnd.cs: Added DestroyPending property to track if a window is 
21131           already destroyed as far as the driver is concerned and only hasn't
21132           yet notified the control
21133         * XplatUIX11.cs:
21134           - Activate(): Check if the window is still valid before using the 
21135             handle
21136           - Implemented DestroyChildWindow() method to mark child windows as
21137             destroyed when a window is destroyed. This prevents situations 
21138             where we might call an X method based on queued events for a
21139             window that already has been destroyed but we haven't yet pulled
21140             the destroy method from the queue.
21141           - Added a call to the new DestroyChildWindow() method to the drivers
21142             DestroyWindow code. Also now marking the destroyed window itself
21143             as pending
21144
21145 2005-12-20  Jackson Harper  <jackson@ximian.com>
21146
21147         * StatusBar.cs:
21148         * StatusBarPanel.cs: Don't calculate panel sizes on draw
21149         anymore. Just do them when needed, also track the rects of panels
21150         so that we can optimize refreshing more in the future.
21151
21152 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
21153
21154         * ColorDialog.cs: Fixed focus drawing in small color controls
21155
21156 2005-12-19  Jackson Harper  <jackson@ximian.com>
21157
21158         * InternalWindowManager.cs:
21159         * MdiWindowManager.cs: Cleanup some coordinate system changes so
21160         moving windows works properly.
21161
21162 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
21163
21164         * Control.cs: 
21165           - Removed call to InitLayout() from SetBoundsCore(); doc says
21166             it's only called when a control is added to a container
21167           - Split InitLayout logic, moved to separate UpdateDistances() method
21168             since we need to perform those calculations more often than just
21169             when adding the control to a container. (Needed to fix #77022)
21170           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
21171           - Reduced the OnBindingContextChanged events count, don't send them
21172             unless the control is created, we still aren't totally matching
21173             MS, but I can't quite figure out some of their rules
21174
21175 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21176
21177         * ThemeClearlooks.cs: Corrected distance between ProgressBar
21178           stripes
21179
21180 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21181
21182         * ThemeClearlooks.cs:
21183           - Updated ProgressBar drawing
21184           - Corrected drawing of ScrollBars and scroll buttons
21185           - Some temporary fixes for minor pixel artefacts
21186
21187 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
21188
21189         * Control.cs:
21190           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
21191             cause events to be sent in the same order as MS does.
21192           - Added ChangeParent() method to trigger various OnXXXChanged events
21193             that need to be fired when a parent changes (This is a reworking
21194             of the patch from r54254, with the X11 errors fixed)
21195           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
21196             since on MS we get OnLayoutChanged events when calling Clear()
21197           - Changed Enabled property to consider parent state as well, if a
21198             parent is not enabled, the control will not be either
21199           - Changed Parent property to simply call Controls.Add() since that
21200             now does all the work required, this way we avoid code duplication
21201           - Threw in a few OnBindingsContextChanged calls to try and match
21202             when MS sends them. We seem to send a few too many, though.
21203           - Added call to CreateControl when adding the control to a parent.
21204             We were never calling CreateControl. Still needs some work, in
21205             some places we treat HandleCreated and ControlCreated as equal, 
21206             which is wrong
21207           - Removed obsolete commented out code from UpdateZOrder()
21208
21209 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21210
21211         * ThemeClearlooks.cs: Updated TrackBar drawing.
21212
21213 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
21214
21215         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
21216
21217 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
21218
21219         * FileDialog.cs: Add the Help button and the open readonly
21220           checkbox only if needed
21221
21222 2005-12-16  Jackson Harper  <jackson@ximian.com>
21223
21224         * Control.cs: Make sure we have an active menu before trying to
21225         process commands on it. Prevents menu-less forms from crashing
21226         when Alt is pressed.
21227         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
21228         Dieter Bremes.
21229         * RichTextBox.cs: Expand statement to help out gmcs and fix the
21230         2.0 build.
21231
21232 2005-12-16  Jackson Harper  <jackson@ximian.com>
21233
21234         * InternalWindowManager.cs: Don't translate tool windows screen
21235         coordinates. This fixes windows 'bouncing' around when being moved.
21236
21237 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
21238
21239         * TextBoxBase.cs:
21240           - MaxLength now treats 2^31-1 equal to unlimited length (this is
21241             not quite MS compatible, MS uses that number only for single line
21242             and 2^32-1 for multi-line, but I figure it won't hurt keeping
21243             the limit at 2GB)
21244           - Now enforcing the MaxLength limit when entering characters
21245           - Added argument to internal Paste() method to track if it's called
21246             from programatically or via keyboard, since keyboard driven pastes
21247             need to enforce max-length
21248           - Added logic to Paste to only paste as many chars as MaxLength 
21249             allows
21250         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
21251         * TextControl.cs:
21252           - Added Length property to return number of characters in document
21253           - Added private CharCount property which only tracks actual chars
21254             in the document (no linefeeds) and fires event when CharCount
21255             changes
21256           - Added tracking of character count to all methods that alter it
21257           - Added LengthChanged event to allow applications to subscribe
21258             to any changes to the document
21259
21260 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
21261
21262         * TextBox.cs: 
21263           - Removed local password_char field (moved to TextBoxBase)
21264           - Now setting the document's password var when password is
21265             set
21266         * TextBoxBase.cs:
21267           - Added password_char field (needed here so MultiLine can
21268             access it)
21269           - Added logic to MultiLine property setter to set the document's
21270             variable when password display is allowed
21271           - Removed debug code and made some debug code conditional
21272         * TextControl.cs:
21273           - Added RecalculatePasswordLine() method to handle special password
21274             char only lines
21275           - Added PasswordChar property, also added related tracking vars
21276           - Draw() method now uses local text var for grabbing text to draw,
21277             this var is set to line.text unless we're doing password display,
21278             then it is set to the pre-generated all-password-chars line
21279           - Added calling RecalculatePasswordLine() method for password lines
21280
21281 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
21282
21283         * Hwnd.cs: 
21284           - Added Reparented property to allow tracking of Window Manager
21285             reparenting actions (which affect X/Y calculations of toplevel 
21286             windows)
21287           - Made ToString() print window handles in hex
21288         * XplatUIX11.cs:
21289           - AddConfigureNotify(): Now uses reparented state off Hwnd to
21290             determine if X/Y needs offsetting
21291           - AddConfigureNotify(): Fixed offset calculations
21292           - Now adds ReparentNotify messages into the queue
21293           - Now processes ReparentNotify messages and causes a 
21294             WM_WINDOWPOSCHANGED message to be sent upstream if a window
21295             is reparented (as most likely it's X/Y coordinates are changed
21296             due to that)
21297
21298 2005-12-14  Jackson Harper  <jackson@ximian.com>
21299
21300         * XplatUIX11.cs: Tool windows still need to respek focus.
21301
21302 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
21303
21304         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
21305           have a working release
21306
21307 2005-12-13  Jackson Harper  <jackson@ximian.com>
21308
21309         * Form.cs: Update styles after setting the border style regardless
21310         of whether or not the window is using a window manager.
21311
21312 2005-12-13  Jackson Harper  <jackson@ximian.com>
21313
21314         * Form.cs: We now hook into an internal window manager instead of just an
21315         MDI subsystem, this is so we can have properly behaving tool windows.
21316         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
21317         * InternalWindowManager.cs: New internal class that acts as a
21318         window manager for tool windows and as a base for mdi windows.
21319         * MdiWindowManager.cs: New class that acts as a window manager for
21320         mdi windows.
21321
21322 2005-12-12  Jackson Harper  <jackson@ximian.com>
21323
21324         * Control.cs: Updates so we match behavoir for for implicit
21325         controls. Fixes explosions in MDI.
21326
21327 2005-12-12  Jackson Harper  <jackson@ximian.com>
21328
21329         * Control.cs: Implement Invalidate (Region).
21330
21331 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
21332
21333         * Control.cs: 
21334           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
21335             the same events as MS does. MS fires events for each property 
21336             except, for unknown reasons, Cursor, when the control is reparented. 
21337             I can't seem to totally match add/remove since MS also fires some 
21338             VisibleChanged events, which makes no sense. Consolidated the
21339             parenting code into a separate method so it can be called from
21340             both Add and Remove. set_Parent no longer needs any special logic
21341             as it calls the parent's add method which implicitly fires
21342             all events
21343           - Removed some obsolete code and debug output
21344           - Enabled state is inherited from parents, if this is enabled
21345
21346 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
21347
21348         * Form.cs: Removed commented out code
21349
21350 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
21351
21352         * Control.cs:
21353           - Added internal version of Invoke, with additional argument 
21354             indicating if we're calling it from a Dispose() handler. That
21355             way we can avoid BeginInvoke throwing an exception if we're
21356             calling for an already destroyed window.
21357           - Added a dispose argument to BeginInvokeInternal, and made the
21358             check if a valid window handle chain exists conditional on
21359             it not being a dispose call
21360           - Removed code in DestroyHandle to destroy our children. Since we
21361             now handle the WM_DESTROY message we will catch all our children
21362             being destroyed.
21363           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
21364         * Form.cs:
21365           - Added a field to track the application context of the form.
21366           - No need to set closing variable as response to WM_CLOSE, instead
21367             we destroy the window. We also call PostQuitMessage if the form
21368             has an application context (which makes it the main app form,
21369             which, when closed terminates the app)
21370         * XplatUI.cs:
21371           - Dropped Exit() method, it's naming was confusing
21372           - Added PostQuitMessage() which causes GetMessage to return false
21373             once the message queue is empty
21374         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
21375           PostQuitMessage()
21376         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
21377           no longer a valid XplatUI method, but left it in since it's used
21378           internally. Added empty PostQuitMessage() method.
21379         * MenuAPI.cs: Replaced call to Exit() with call to
21380           PostQuitMessage, even though this is probably no longer needed.
21381         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
21382         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
21383         * Application.cs:
21384           - Replaced call to XplatUI.Exit() with PostQuitMessage()
21385           - Removed old debug code that would call XplatUI for exception
21386             display, enabled standard exception handling (Still not enabled
21387             though, until NativeWindow's ExternalExceptionHandler define
21388             is removed
21389         * NativeWindow.cs:
21390           - Added internal method to allow control to update NativeWindow
21391             after a window has been destroyed
21392           - Added handling of already destroyed windows when calling i
21393             DestroyWindow
21394           - Added removal of handle from list on ReleaseHandle
21395         * XplatUIX11.cs:
21396           - Dropped GetMessageResult var and related code
21397           - Added PostQuitState to field to track if PostQuitMessage has been
21398             called
21399           - Dropped Exit() method
21400           - Added PostQuitMessage() method
21401           - GetMessage now will return false if PostQuitState is set and no
21402             more messages are in the queue.
21403           - Expose handler will no longer generate WM_PAINT messages if we are
21404             in PostQuitState since it's very likely any windows have already
21405             been destroyed, and since Hwnd won't get updated until we have
21406             processed the DestroyNotify we'd be causing X errors.
21407         
21408 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21409
21410         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
21411           Thanks to Mike for pointing out the err of my ways.
21412
21413 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21414
21415         * Control.cs(PreProcessMessage): Moved menu handling back, but
21416           after all other key handling, to match MS (who handles Menu in
21417           DefWndProc)
21418         * Menu.cs (WndProc): Removed my brainfart
21419
21420 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21421
21422         * Control.cs(PreProcessMessage): Removed special menu handling 
21423         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
21424
21425 2005-12-07  Mike Kestner  <mkestner@novell.com>
21426
21427         * Control.cs : special case SYSKEYUP so that we can adjust keynav
21428         state according in tracker.
21429         * Menu.cs : promote tracker field to base class and provide a tracker
21430         lookup capability.  Add/Remove shortcuts dynamically if the top menu
21431         has a tracker. Unparent items that are removed from the collection.
21432         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
21433         * Theme*.cs: add always_show_hotkeys field to support configurability
21434         of mnemonic display.  win32 doesn't show mnemonics until Alt is
21435         pressed.
21436
21437 2005-12-07  Jackson Harper  <jackson@ximian.com>
21438
21439         * MdiChildContext.cs: Use Control.ResetCursor.
21440         * Control.cs: ResetCursor needs to set the property so that the
21441         correct XplatUI call gets made.
21442
21443 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21444
21445         * Control.cs: More fixes to make our key events match MS. We
21446           were not setting the modifier state on KeyData, and we were
21447           not generating any events when Alt was pressed with a key
21448           since handling of WM_SYSxxx was missing for the OnKey methods.
21449
21450 2005-12-07  Jackson Harper  <jackson@ximian.com>
21451
21452         * MdiChildContext.cs: reenable the sizing code.
21453         - When the mouse leaves a window reset its cursor.
21454
21455 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21456
21457         * ThemeClearlooks.cs: Reflect latest Hwnd changes
21458
21459 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21460
21461         * Hwnd.cs: Now using the theme 3d bordersize to calculate
21462           widths of Fixed3D borders
21463
21464 2005-12-07  Jackson Harper  <jackson@ximian.com>
21465
21466         * MdiClient.cs: Fix warnings. Earn Mike's love.
21467
21468 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21469
21470         * ThemeClearlooks.cs:
21471           - Adjusted mouse over button color
21472           - Added first parts of CheckBox drawing
21473           - Added correct color for selected text background
21474           - Fixed ComboBox drawing
21475           - Added CPDrawBorder3D and CPDrawBorder
21476
21477 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21478
21479         * XplatUIX11.cs: Added call to XBell for AudibleAlert
21480
21481 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
21482
21483         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
21484           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
21485           alert users via sound. We could add an enum arg with different
21486           types of alerts in the future
21487
21488 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21489
21490         * Control.cs: Fix behaviour problems pointed out by Mike
21491
21492 2005-12-05  Mike Kestner  <mkestner@novell.com>
21493
21494         * StatusBarPanel.cs: add Invalidate method and hook it into all the
21495         prop setters.  Calls parent.Refresh for now, but could be maybe be
21496         optimized with an internal method on StatusBar at some point.
21497         [Fixes #76513]
21498
21499 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
21500
21501         * RichTextBox.cs: Implemented get_SelectionColor
21502
21503 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
21504
21505         * ThemeClearlooks.cs:
21506           - Removed dead code
21507           - Draw black button border only if button is Form.AcceptButton
21508           - Draw correct button color for pressed RadioButton if the mouse 
21509             has entered the button
21510           - Updated ProgressBar drawing!
21511           - Updated CPDrawSizeGrip drawing
21512           - Updated StatusBarPanel drawing
21513
21514 2005-12-05  Mike Kestner  <mkestner@novell.com>
21515
21516         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
21517         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
21518
21519 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
21520
21521         * ThemeClearlooks.cs: Initial check-in, activate with
21522           export MONO_THEME=clearlooks
21523         * ThemeEngine.cs: Added ThemeClearlooks
21524
21525 2005-12-03  Mike Kestner  <mkestner@novell.com>
21526
21527         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
21528         [Fixes #76897]
21529
21530 2005-12-02  Jackson Harper  <jackson@ximian.com>
21531
21532         * Form.cs: If the child form has no menu the default main menu is
21533         used as the active menu.
21534
21535 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
21536
21537         * ListBox.cs: Check if any items exist before trying to resolve 
21538           coordinates into items
21539
21540 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21541
21542         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
21543           as the second color for the background hatch
21544
21545 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21546
21547         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
21548         * RichTextBox.cs: FormatText position arguments are 1-based, now making
21549           sure that what we pass to FormatText is always 1-based. Fixes #76885
21550
21551 2005-11-29  Miguel de Icaza  <miguel@novell.com>
21552
21553         * NumericUpDown.cs (EndInit): When we are done initializing,
21554         reflect any updates on the UI.
21555
21556 2005-12-02  Jackson Harper  <jackson@ximian.com>
21557
21558         * ImplicitHScrollBar.cs:
21559         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
21560         their container controls.
21561         * TreeView.cs: Use the new implicit scrollbars.
21562
21563 2005-12-02  Jackson Harper  <jackson@ximian.com>
21564
21565         * TreeView.cs: Make top_node internal so the TreeNodeCollections
21566         can play with it.
21567         * TreeNodeCollection.cs: If we remove the topnode we need to
21568         update topnode to the next node in line.
21569         - When clearing nodes go through the same process as removing
21570         them, so they get depareneted and checked if they are top node.
21571
21572 2005-12-01  Jackson Harper  <jackson@ximian.com>
21573
21574         * TreeView.cs: When imagelists are used the image area is
21575         selectable as well as the text.
21576         - If there are no selected nodes select the first one.
21577         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
21578         so don't do it more then we need to.
21579
21580 2005-12-01  Jackson Harper  <jackson@ximian.com>
21581
21582         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
21583         that arrows can be scaled.
21584
21585 2005-12-01  Jackson Harper  <jackson@ximian.com>
21586
21587         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
21588         fail. Patch by Dieter Bremes
21589
21590 2005-11-30  Jackson Harper  <jackson@ximian.com>
21591
21592         * Form.cs: Property is 2.0 only
21593         * PrintDialog.cs: Signature fix.
21594
21595 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21596
21597         * TextControl.cs: 
21598           - No longer artificially moves text 2 pixels down (now that we have
21599             borders this is no longer needed)
21600           - Added calcs for left, hanging and right indent
21601
21602 2005-11-23  Mike Kestner  <mkestner@novell.com>
21603
21604         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
21605
21606 2005-11-30  Jackson Harper  <jackson@ximian.com>
21607
21608         * MdiChildContext.cs: Set the cloned menus forms, as these don't
21609         get cloned as part of CloneMenu ().
21610         * Menu.cs: Make sure the parent of the items get set correctly
21611         when they are added.  And the owners are notified of the changes.
21612         * Form.cs: Create an ActiveMenu property, so that when MDI is used
21613         we can change the menu being displayed/handled by the form without
21614         changing the menu assosciated with the form.
21615         - Don't let Mdi children draw/handle menus.
21616         
21617 2005-11-30  Jackson Harper  <jackson@ximian.com>
21618
21619         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
21620         a MenuChanged event. Just to make the API a little more
21621         consistent.
21622         * MainMenu.cs:
21623         * MenuItem.cs: Use the new OnMenuChanged
21624         * MdiChildContext.cs: Handle menu merging.
21625         * Form.cs: Implement MergedMenu.
21626         
21627 2005-11-30  Jackson Harper  <jackson@ximian.com>
21628
21629         * Menu.cs: We were misusing Add. Add goes behind the specified
21630         index according to the docs, and does not replace the specified
21631         index. So I added an Insert method.
21632
21633 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21634
21635         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
21636           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
21637           is for Jackson
21638         * RichTextBox.cs: Added calls to base for DnD events
21639
21640 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
21641
21642         * TextControl.cs:
21643           - Fixed drag-selection related crash; style fixes
21644           - Implemented undo class
21645             o Implemented method to capture document state for specified
21646               range in document tree
21647             o Implemented method to restore captured document state
21648             o Implemented cursor tracking
21649             o Implemented basic undo stack
21650           - Added undo cursor tracking to methods altering cursor location
21651           - Added undo tracking to selection deletion (still missing
21652             other text-altering hookups)
21653         * RichTextBox.cs:
21654           - Added SelectionLength property
21655           - Implemented CanPaste()
21656           - Implemented Paste()
21657           - Added missing protected methods
21658           - Fixed RTF->Document conversion; now uses font index 0 and color 
21659             index 0 as the default font for the parsed text
21660           - Fixed RTF<->Document font size translation
21661           - Fixed RTF generation, now properly handles cross-tag boundaries
21662             for single line selection
21663           - No longer always appends blank line to generated RTF
21664           - Removed TODOs
21665           - Added missing attributes
21666           - Hooked up undo-related methods
21667         * TextBoxBase.cs:
21668           - Implemented Copy()
21669           - Implemented Paste()
21670           - Implemented Cut()
21671           - Fixed caret mis-behaviour on backspace across line-boundaries
21672
21673 2005-11-29  Jackson Harper  <jackson@ximian.com>
21674
21675         * MdiClient.cs: Add a method for activating mdi children. Very
21676         basic right now. I imagine someday it might need more girth.
21677         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
21678         children windows names are added to the menu item.
21679         * ThemeWin32Classic.cs: Draw the arrow if the item is an
21680         mdilist. This happens regardless of whether or not there are any
21681         mdi windows to see in the list, and according to my tests happens
21682         before the items are even added. Also happens if there isn't even
21683         an mdi client to get windows from.
21684
21685 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
21686
21687         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
21688         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
21689
21690 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
21691
21692         * DataGridTableStyle.cs:
21693           - Create always the styles for the missing columns even if they are
21694             provided by the user (not default table style)
21695         * DataGrid.cs:
21696           - Fixes bug 76770
21697           - Fixes SetDataBinding (always re-attach source)
21698           - Fixes SetNewDataSource (only clear styles if they are not for 
21699             this source)
21700          -  Expands OnTableStylesCollectionChanged to handle style refresh 
21701             and remove properly
21702
21703 2005-11-29  Jackson Harper  <jackson@ximian.com>
21704
21705         * FileDialog.cs: Implement missing bits, remove some dead
21706         code.
21707         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
21708         creation of the panel so that the options set on the dialog are
21709         seen when the panel is created.
21710         * TreeView.cs: raise a click when items are clicked.
21711         
21712 2005-11-29  Jackson Harper  <jackson@ximian.com>
21713
21714         * MdiClient.cs: Pass some signature methods through to base.
21715
21716 2005-11-28  Jackson Harper  <jackson@ximian.com>
21717
21718         * ListView.cs: Raise the click event when items are clicked.
21719
21720 2005-11-28  Jackson Harper  <jackson@ximian.com>
21721
21722         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
21723         a nullref.
21724
21725 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
21726
21727         * ThemeNice.cs: - Removed 1 pixel bitmaps
21728           - Use SmoothingMode.AntiAlias where it makes sense
21729             (ScrollButton arrow for example)
21730           - Enhanced Button focus drawing
21731           - Fixed ComboBox drawing (no artefacts anymore, focus
21732             rectangle is back again, reduced size of ComboButton, etc.)
21733           - Fixed RadioButton focus drawing for Appearence.Button
21734           - Slight ScrollButton redesign
21735           - Some LinearGradientBrush size fixes
21736           - GroupBoxes have now rounded edges
21737           - Fixed StatusBar drawing
21738
21739 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
21740
21741         * ThemeNice.cs: - Remove dead code
21742           - use correct background colors for menus, etc.
21743           - Fake pixel drawing with 1 pixel bitmaps
21744
21745 2005-11-24  Jackson Harper  <jackson@ximian.com>
21746
21747         * MdiClient.cs: Size the scrollbars when resizing the window.
21748         - Resize the maximized windows when the client is resized
21749         * Form.cs: Make the child context available
21750         
21751 2005-11-23  Jackson Harper  <jackson@ximian.com>
21752
21753         * MdiChildContext.cs: Don't size windows if they are maximized.
21754
21755 2005-11-23  Mike Kestner  <mkestner@novell.com>
21756
21757         * ContextMenu.cs: use MenuTracker.
21758         * Control.cs: remove menu handle usage.
21759         * Form.cs: remove menu handle usage.
21760         * Hwnd.cs: remove menu handle usage.
21761         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
21762         motion and clicks to the new Tracker handlers.
21763         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
21764         and handle usage.
21765         * MenuAPI.cs: refactored to combine popup and menubar event handling.
21766         Killed the MENU and MENUITEM data types and associated collections
21767         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
21768         MenuTracker class that exposes the leftovers from the old MenuAPI
21769         static methods. Restructured Capture handling so that only one grab is
21770         done for the entire menu hierarchy instead of handing off grabs to
21771         submenus. Tracker now has an invisible control to Capture when active.
21772         * MenuItem.cs: add sizing accessors, kill Create
21773         and handle usage.
21774         * Theme.cs: remove menu handle and MENU(ITEM) usage.
21775         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
21776         MENU(ITEM). remove menu handle usage, use Menu directly.
21777         * XplatUIDriver.cs: remove menu handle usage.
21778         * XplatUIOSX.cs: remove menu handle usage.
21779         * XplatUIWin32.cs: remove menu handle usage.
21780         * XplatUIX11.cs: remove menu handle usage.
21781
21782 2005-11-22  Jackson Harper  <jackson@ximian.com>
21783
21784         * Hwnd.cs: Don't compute the menu size for
21785         DefaultClientRectangle.
21786         - Reenable menu sizes being computed for GetClienRectangle.
21787         * Form.cs: Remove comment of trechery
21788         
21789 2005-11-22  Jackson Harper  <jackson@ximian.com>
21790
21791         * Hwnd.cs: The adjustments for the menu bar are made when it is
21792         attached to the form.
21793
21794 2005-11-19  Jackson Harper  <jackson@ximian.com>
21795
21796         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
21797         (just like on windows).
21798
21799 2005-11-19  Jackson Harper  <jackson@ximian.com>
21800
21801         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
21802         use real buttons anymore because they are in non client area. The
21803         one TODO here is that I need to somehow invalidate a section of
21804         the non client area.
21805
21806 2005-11-18  Jackson Harper  <jackson@ximian.com>
21807
21808         * Control.cs: Put the enum check back in now that MDI doesnt have
21809         to use this to set border styles.
21810         * Form.cs: Only set mdi child windows borders if the handle has
21811         been created.
21812         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
21813         this directly on to the driver.
21814         - Get the move start position before adjusting for the titlebar
21815         height, this fixes the windows "skipping" when they are first
21816         moved.
21817
21818 2005-11-18  Jackson Harper  <jackson@ximian.com>
21819
21820         * XplatUIX11.cs: Just compute the mdi borders separately as they
21821         don't totally match up with normal form borders.
21822
21823 2005-11-18  Jackson Harper  <jackson@ximian.com>
21824
21825         * Control.cs: Set WS_ styles for borders, so that the driver does
21826         not have to retrieve the control instance to figure out what kind
21827         of borders it should have.
21828         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
21829         driver can know its an mdi child easily.
21830         * XplatUIX11.cs: Get the border styles and whether the window is
21831         MDI from the Styles and ExStyles params instead of having to get a
21832         control. This prevents a chicken and egg problem.       
21833
21834 2005-11-18  Jackson Harper  <jackson@ximian.com>
21835
21836         * MdiClient.cs: Fix typo so scrollbars show up correctly.
21837
21838 2005-11-18  Jackson Harper  <jackson@ximian.com>
21839
21840         * MdiClient.cs: Calculate when to add and remove scrollbars
21841         correctly.
21842         * MdiChildContext.cs: Adjust the y position to take the titlebar
21843         into account.
21844         - No height for FormBorderStyle.None
21845
21846 2005-11-18  Jackson Harper  <jackson@ximian.com>
21847
21848         * Control.cs: Allow non enum values to be used for
21849         InternalBorderStyle.  MDI does this to set a special border style.
21850         - New utility methods for converting points to/from client coords
21851         - Add the newly created control to the Controls collection before
21852         updating its style. This way UpdateStyle can walk the control
21853         heirarchy to find the control if needed.
21854         so I don't need to create a new Point object all the time.
21855         * Form.cs: Let MDI windows handle their border styles.
21856         - Set styles on MDI windows so the correct title style is derived.
21857         * MdiChildContext.cs: Move all the painting and window handling
21858         into the non client area.
21859         - Use correct sizing and put correct buttons on frames based on
21860         the FormBorderStyle.
21861         - Notify the mdi client about scrolling
21862         - Need to handle the buttons ourselves now, because they are all
21863         in non client areas and we can't add controls there.
21864         * MdiClient.cs: Halfway to scrolling, this implementation is
21865         somewhat broken though, we need to check to make sure other
21866         windows aren't causing scrolling before removing the bars. Also
21867         the bars need to be drawn on top, maybe I can switch implicit
21868         controls to be on top.
21869         * Hwnd.cs: caption_height and tool_caption_height are now
21870         properties of an hwnd, this way they can be set by the driver
21871         based on the type of window they are.  In X11 the window manager
21872         handles the decorations so caption_height is zero unless its an
21873         MDI window.
21874         - Add 3 pixel borders for MDI windows (0xFFFF).
21875         - Get rid of some code duplication, have DefaultClientRectanle
21876         just call GetClientRectangle.
21877         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
21878         Hwnd now.
21879         - Set border styles differently for mdi windows.
21880         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
21881         Hwnd now.
21882         
21883 2005-11-15  Mike Kestner  <mkestner@novell.com>
21884
21885         * Menu.cs: when adding an item to the collection, if item is already 
21886         parented, remove it from the parent.
21887
21888 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
21889
21890         * X11DesktopColors.cs: Added KDE support
21891
21892 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
21893
21894         * XplatUIWin32.cs: 
21895           - Clipboard methods now can translate Rtf format
21896           - No longer removes clipboard contents whenever a new format is added
21897             to allow placing multiple formats on the clipboard
21898         * Clipboard.cs: Clipboard now supports getting a IDataObject and
21899           will place all formats contained in it onto the clipboard. Also
21900           now cleans the clipboard before placing a new object onto it
21901         * RichTextBox.cs:
21902           - Implemented set_Rtf
21903           - Implemented set_SelectedRtf
21904           - Created InsertRTFFromStream() method to allow single code base
21905             for all properties and methods that insert RTF into document
21906           - Removed debug output
21907         * TextControl.cs:
21908           - Fixed Delete(int) to fix up line numbers
21909           - Fixed ReplaceSelection to combine start and end line
21910           - Fixed serious DeleteChars bug that would leave the document tree
21911             broken
21912           - Improved DumpTree with several logic checks to detect broken
21913             document trees
21914           - Removed debug lines
21915           - Fixed Caret.WordForward/WordBack moving code, now always also 
21916             updates caret.tag (fixes crash when word-selecting across tag
21917             boundaries via keyboard)
21918           - Added Insert() method for inserting multiline text into documents
21919           - Fixed DeleteChars() calculation errors that would cause a broken
21920             tag chain with multiple tag lines
21921           - DeleteChars() no longer crashes on multi-tag lines if not all tags
21922           - Split() no longer moves caret if split is at caret location
21923           - ReplaceSelection() now updates the cursor and re-displays it
21924           - ReplaceSelection() now uses new Insert() method to avoid code
21925             duplication
21926           - FormatText() can now handle formatting partial lines
21927         * TextBoxBase.cs:
21928           - Append now uses new TextControl.Insert() method (this avoids 
21929             duplicate code)
21930           - Implemented Ctrl-X (Cut) (
21931           - Implemented Ctrl-C (Copy)
21932           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
21933             regeneration when pasting text; roundtripping Copy&Paste within
21934             edit control still fails due to some calculation bugs in GenerateRTF)
21935           - The Delete key will now remove the current selection if it is visible
21936         * TextBox.cs: Removed debug lines
21937         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
21938           driver to be initialized and can't therefore be done via a static ctor)
21939
21940 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
21941
21942         * TextControl.cs: Added backend code for finding char arrays and strings
21943         * TextBoxBase.cs:
21944           - Added mouse wheel scroll support
21945           - Added support for VScroll and HScroll events
21946         * RichTextBox.cs:
21947           - Implemented all seven Find() variants
21948           - Implemented GetCharFromPosition()
21949           - Implemented GetCharIndexFromPosition()
21950           - Implemented GetLineFromIndex()
21951           - Implemented GetPositionFromCharIndex();
21952           - Implemented SaveFile for PlainText and UnicodeText
21953           - Fixed set_Font, now setting a new font applies that font to
21954             the whole document
21955           - Implemented generic Document to RTF converter
21956           - Implemented SaveFile for RichText format (still missing unicode
21957             conversion for non-ansi chars)
21958           - Implemented get_Rtf
21959           - Implemented get_SelectedRtf
21960
21961 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
21962
21963         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
21964           to allow any captures to be released before triggering OnClick. This
21965           way a click handler may capture the mouse without interference.
21966         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
21967           This way we send them even though X may not allow a grab (if the window
21968           isn't visible, for example)
21969
21970 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
21971
21972         * DataGridViewRowEventArgs.cs: DataGridView implementation
21973         * DataGridViewElement.cs: DataGridView implementation
21974         * DataGridViewComboBoxCell.cs: DataGridView implementation
21975         * DataGridViewDataErrorContexts.cs: DataGridView implementation
21976         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
21977         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
21978         * ImageLayout.cs: DataGridView implementation
21979         * DataGridViewComboBoxColumn.cs: DataGridView implementation
21980         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
21981         * DataGridViewSelectionMode.cs: DataGridView implementation
21982         * IDataGridViewEditingControl.cs: DataGridView implementation
21983         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
21984         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
21985         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
21986         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
21987         * DataGridViewColumnSortMode.cs: DataGridView implementation
21988         * DataGridView.cs: DataGridView implementation
21989         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
21990         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
21991         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
21992         * Padding.cs: DataGridView implementation
21993         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
21994         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
21995         * DataGridViewRowEventHandler.cs: DataGridView implementation
21996         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
21997         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
21998         * DataGridViewButtonCell.cs: DataGridView implementation
21999         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
22000         * DataGridViewEditMode.cs: DataGridView implementation
22001         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
22002         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
22003         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
22004         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
22005         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
22006         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
22007         * DataGridViewCellEventHandler.cs: DataGridView implementation
22008         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
22009         * DataGridViewCellStyleConverter.cs: DataGridView implementation
22010         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
22011         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
22012         * DataGridViewColumnEventArgs.cs: DataGridView implementation
22013         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
22014         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
22015         * QuestionEventArgs.cs: DataGridView implementation
22016         * IDataGridViewEditingCell.cs: DataGridView implementation
22017         * DataGridViewTriState.cs: DataGridView implementation
22018         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
22019         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
22020         * DataGridViewColumnCollection.cs: DataGridView implementation
22021         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
22022         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
22023         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
22024         * DataGridViewColumn.cs: DataGridView implementation
22025         * DataGridViewCellBorderStyle.cs: DataGridView implementation
22026         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
22027         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
22028         * DataGridViewRow.cs: DataGridView implementation
22029         * DataGridViewImageCellLayout.cs: DataGridView implementation
22030         * DataGridViewImageCell.cs: DataGridView implementation
22031         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
22032         * DataGridViewCheckBoxCell.cs: DataGridView implementation
22033         * DataGridViewHeaderCell.cs: DataGridView implementation
22034         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
22035         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
22036         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
22037         * DataGridViewTextBoxColumn.cs: DataGridView implementation
22038         * QuestionEventHandler.cs: DataGridView implementation
22039         * DataGridViewCellStyleScopes.cs: DataGridView implementation
22040         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
22041         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
22042         * DataGridViewCell.cs: DataGridView implementation
22043         * DataGridViewCellEventArgs.cs: DataGridView implementation
22044         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
22045         * DataGridViewCellStyle.cs: DataGridView implementation
22046         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
22047         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
22048         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
22049         * TextFormatFlags.cs: DataGridView implementation
22050         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
22051         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
22052         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
22053         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
22054         * DataGridViewButtonColumn.cs: DataGridView implementation
22055         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
22056         * HandledMouseEventArgs.cs: DataGridView implementation
22057         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
22058         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
22059         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
22060         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
22061         * DataGridViewRowCollection.cs: DataGridView implementation
22062         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
22063         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
22064         * DataGridViewHitTestType.cs: DataGridView implementation
22065         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
22066         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
22067         * DataGridViewColumnEventHandler.cs: DataGridView implementation
22068         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
22069         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
22070         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
22071         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
22072         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
22073         * DataGridViewContentAlignment.cs: DataGridView implementation
22074         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
22075         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
22076         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
22077         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
22078         * DataGridViewPaintParts.cs: DataGridView implementation
22079         * DataGridViewCellCollection.cs: DataGridView implementation
22080         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
22081         * DataGridViewImageColumn.cs: DataGridView implementation
22082         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
22083         * DataGridViewElementStates.cs: DataGridView implementation
22084         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
22085         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
22086         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
22087         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
22088         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
22089         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
22090         * DataGridViewRowHeaderCell.cs: DataGridView implementation
22091         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
22092         * DataGridViewTextBoxCell.cs: DataGridView implementation
22093         * DataGridViewBand.cs: DataGridView implementation
22094         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
22095         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
22096         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
22097         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
22098         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
22099         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
22100         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
22101         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
22102         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
22103         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
22104         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
22105
22106 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
22107
22108         * ThemeWin32Classic.cs: 
22109           - Draw the outside focus rectangle around buttons
22110           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
22111             doesn't use end caps for every dash of a line anymore. This
22112             workaround ignores the forecolor.
22113
22114 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
22115
22116         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
22117           endian safe.
22118
22119 2005-11-07  Jackson Harper  <jackson@ximian.com>
22120
22121         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
22122
22123 2005-11-07  Jackson Harper  <jackson@ximian.com>
22124
22125         * ScrollableControl.cs: Calculate the maximum and change vars
22126         (more) correctly so that scrollbars appear as a sensible size.
22127
22128 2005-11-04  Jackson Harper  <jackson@ximian.com>
22129
22130         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
22131         collection.
22132         * TreeView.cs: When the tree is sorted null out the top_node so
22133         that it is recalculated.
22134         - Use dotted lines instead of dashed lines to match MS better.
22135
22136 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
22137
22138         * ListView.cs: 
22139           - Implements key search for items. Useful when browsing files with FileDialog
22140           - When changing view mode or when clear the items reset scrollbar positions
22141
22142 2005-11-04  Jackson Harper  <jackson@ximian.com>
22143
22144         * CurrencyManager.cs: Implement the MetaDataChanged event, the
22145         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
22146         as to what the method may do as there is no real way of creating a
22147         derived CurrencyManager and calling the method. 
22148
22149 2005-11-03  Jackson Harper  <jackson@ximian.com>
22150
22151         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
22152         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
22153         method which seems to just be used internally to refresh the tabs.
22154
22155 2005-11-03  Jackson Harper  <jackson@ximian.com>
22156
22157         * TabControl.cs: Implement the remove method. Fix some broken
22158         comments.
22159
22160 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22161
22162         * DateTimePicker.cs:
22163           - Added missing DateTimePickerAccessibleObject class
22164           - Added missing events
22165           - Added OnFontChanged method
22166         * Form.cs: Added missing attributes
22167         * TreeView.cs: Added missing attributes
22168
22169 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
22170
22171         * GridItemCollection.cs: Fix signatures
22172
22173 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22174
22175         * XplatUI.cs: Updated build rev/date
22176         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
22177           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
22178         * Application.cs: Trigger context-specific ExitThread events
22179
22180 2005-11-03  Jackson Harper  <jackson@ximian.com>
22181
22182         * Menu.cs:
22183         * MainMenu.cs:
22184         * GridTableStylesCollection.cs:
22185         * Timer.cs:
22186         * TabPage.cs:
22187         * HelpProvider.cs:
22188         * StatusBar.cs:
22189         * MonthCalendar.cs: Signature fixes
22190
22191 2005-11-03  Jackson Harper  <jackson@ximian.com>
22192
22193         * TreeNodeCollection.cs: Remove should not be virtual.
22194         * TreeView.cs: Implement the last of the missing methods.
22195
22196 2005-11-03  Jackson Harper  <jackson@ximian.com>
22197
22198         * TreeNodeConverter.cs: Implement to get off my class-status back.
22199
22200 2005-11-03  Jackson Harper  <jackson@ximian.com>
22201
22202         * TreeView.cs: Hookup the bits for drag and drop.
22203         * TreeNode.cs: Don't cache the tree_view or index anymore, now
22204         that nodes can be moved from tree to tree easily this just causes
22205         all sorts of problems.
22206         * TreeNodeCollection: Don't need to give treenodes an index and
22207         treeview anymore when they are added, these are computed on the
22208         fly. Also make sure to remove a node before its added.
22209
22210 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22211
22212         * TextControl.cs:
22213           - Added CaretSelection enum
22214           - Added comparison methods to Marker struct, makes selection code
22215             more readable
22216           - Added SelectionStart and SelectionEnd as 'moveable' location for
22217             the CaretDirection enum and handler
22218           - Added selection_prev variable to track optimized invalidation for
22219             word and line selection
22220           - Added SelectionVisible property (returns true if there is a valid 
22221             selection)
22222           - Switched CaretHasFocus to only display the caret if there is no
22223             visible selection
22224           - Avoiding StringBuilder.ToString to retrieve a single char, instead
22225             using the direct character index; should be much faster
22226           - Added various conditional debug statements
22227           - Fixed invalidation calculation for selection ranges
22228           - Added ExpandSelection() method to support word and line selection
22229           - Switched SetSelectionToCaret to use new Marker compare overloads
22230           - Added central IsWordSeparator() method to determine word 
22231             separators/whitespace and FindWordSeparator() to streamline common
22232             usage of IsWordSeparator()
22233         * TextBoxBase.cs:
22234           - Removed unneeded grabbed variable, it was just mirroring
22235             Control.Capture
22236           - No longer firing OnTextChanged event when Text setter is called,
22237             since the base will fire the event for us
22238           - Added handling of Ctrl-Up/Down selection
22239           - Added handling of Shift-Cursorkey selection
22240           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
22241             words
22242           - Added handling of Shift and Ctrl-Shift-Home/End selection
22243           - Removed some debug output
22244           - Added handling for single/double/tripple-click to place caret/
22245             select word/select line respectively (Fixes bug #76031)
22246           - Added support for drag expansion of word/line selection
22247         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
22248           current selection
22249
22250 2005-11-02  Jackson Harper  <jackson@ximian.com>
22251
22252         * X11Dnd.cs: If the drag is going to and from a MWF window just
22253         copy the data instead of sending it out through the X Selection
22254         mechanism.
22255
22256 2005-11-02  Jackson Harper  <jackson@ximian.com>
22257
22258         * X11Dnd.cs:
22259         * XplatUIX11.cs: When in a drag we don't want motion notify
22260         messages to get passed on to the other controls. This prevents
22261         mouse move messages from showing up in the drag source.
22262
22263 2005-11-02  Jackson Harper  <jackson@ximian.com>
22264
22265         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
22266         the correct button is release to end a drag.
22267         * XplatUIX11.cs: Make the button state internal so the drag system
22268         can access it.  Dragging needs to know about all button releases,
22269         not just left button.
22270
22271 2005-11-02  Miguel de Icaza  <miguel@novell.com>
22272
22273         * Form.cs (Icon): If the icon is null, reset the icon to the
22274         default value. 
22275
22276         * Cursor.cs: When writing the AND-mask bitmap do not include the
22277         number of colors, but hardcode those to two (black and white),
22278         fixes the loading of color cursors (Paint Dot Net).
22279
22280         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
22281         turn off autoscaling.
22282
22283         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
22284
22285 2005-11-02  Jackson Harper  <jackson@ximian.com>
22286
22287         * X11Dnd.cs: Make sure to send a status message if the pointer
22288         enters a control that can not accept a drop, otherwise the cursor
22289         isn't updated correctly. Also tried to compress the lines of code
22290         a bit.
22291
22292 2005-11-02  Jackson Harper  <jackson@ximian.com>
22293
22294         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
22295         set actions correctly.  This isn't perfect as XDND and win32 have
22296         some differences on how you allow actions. I'll clear this up by
22297         adding a path for drag from MWF to MWF windows.
22298         * XplatUIX11.cs: Hook into the dnd system.
22299
22300 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
22301
22302         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
22303         previously shown but they are no longer need it. Very obvious when 
22304         browsing files with FileDialog.
22305
22306 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
22307
22308         * Control.cs: We always need to call OnPaintBackground. We pretty much
22309           ignore AllPaintingInWmPaint and always do the painting there, whether 
22310           it's set or not, since we always ignore the WM_ERASEBKGND message 
22311           (which we don't generate on X11). This fixes #76616.
22312         * Panel.cs: Removed unneeded background painting. This happens properly
22313           in Control.cs already
22314
22315 2005-10-31  Mike Kestner  <mkestner@novell.com>
22316
22317         * Menu.cs: Add items to collection before setting their index.
22318         * MenuItem.cs : add range checking with ArgumentException like MS.
22319         [Fixes #76510]
22320
22321 2005-10-31  Jackson Harper  <jackson@ximian.com>
22322
22323         * ListBox.cs: Invalidate if the area is visible at all not just
22324         contained in the visible rect. Fixes unselection of semi visible
22325         items.
22326
22327 2005-10-31  Jackson Harper  <jackson@ximian.com>
22328
22329         * Control.cs: Consistently name the dnd methods. Make them
22330         internal so we can override them to match some MS behavoir
22331         internally.
22332         * Win32DnD.cs: Use the new consistent names.
22333
22334 2005-10-31  Jackson Harper  <jackson@ximian.com>
22335
22336         * TreeView.cs: Don't draw the selected node when we lose focus.
22337
22338 2005-10-31  Jackson Harper  <jackson@ximian.com>
22339
22340         * X11Dnd.cs: We still need to reset the state even though a full
22341         reset isn't being done, otherwise status's still get sent all over
22342         the place.
22343
22344 2005-10-31  Jackson Harper  <jackson@ximian.com>
22345
22346         * Control.cs: Make the dnd_aware flag internal so the dnd
22347         subsystem can check it. Catch exceptions thrown in dnd handlers to
22348         match MS behavoir.
22349         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
22350         * X11Dnd.cs: Handle null data in the converters. Set the XDND
22351         version when sending a XdndEnter. Use the control/hwnd dnd_aware
22352         flags to reduce the number of dnd enters/status's sent.
22353
22354 2005-10-31  Jackson Harper  <jackson@ximian.com>
22355
22356         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
22357
22358 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
22359
22360         * PictureBox.cs: Fixes 76512
22361
22362 2005-10-28  Jackson Harper  <jackson@ximian.com>
22363
22364         * X11Dnd.cs: Early implementation to support winforms being a drag
22365         source for data on X11. Also restructured the converters so they
22366         can go both ways now.
22367         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
22368         
22369 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
22370
22371         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
22372           clipboard requests
22373
22374 2005-10-27  Jackson Harper  <jackson@ximian.com>
22375
22376         * TreeNode.cs: Implement serialization so my DnD examples will work.
22377
22378 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
22379
22380         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
22381           TreeView.cs: Don't dispose objects that are not owned.
22382           
22383 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
22384
22385         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
22386           should retrieve the current cursor and report that, but XplatUI
22387           doesn't (yet) have an interface for that (and I'm not sure I even
22388           can, on X11)
22389         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
22390           until any message loop processing is done (and the WM_SETCURSOR
22391           replaces the cursor to the proper one)
22392         * XplatUIX11.cs: 
22393           - Fixed override behaviour, we can't set the cursor globally on X11, 
22394             just for our windows.
22395           - Invalidating the System.Drawing X11 display handle when we are
22396             shutting down
22397         * Control.cs: Fix to make csc happy
22398
22399 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
22400
22401         * TextBoxBase.cs: 
22402           - get_Text: Add last line (without trailing newline) to returned
22403             value (Fixes 76212)
22404           - get_TextLength: Count last line in returned length
22405           - ToString: Call Text property instead of duplicating code
22406
22407 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
22408
22409         * ImageList.cs: Dispose ImageAttributes objects.
22410
22411 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22412
22413         * ImageList.cs: Use attribute constructors with less arguments where
22414           possible.
22415
22416 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22417
22418         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
22419           Use typeof instead of strings when assembly is referenced. Added
22420           some more comments.
22421
22422 2005-10-21  Jackson Harper  <jackson@ximian.com>
22423
22424         * ListView.cs: Raise a double click event. Also tried to somewhat
22425         fix when the selectedindexchanged event is raised. Its still
22426         broken though.
22427
22428 2005-10-21  Jackson Harper  <jackson@ximian.com>
22429
22430         * TreeView.cs: New method to invalidate the plus minus area of a
22431         node without invalidating the whole node (maybe this can be used
22432         in some more places).
22433         * TreeNodeCollection.cs: When adding to an empty node we need to
22434         invalidate its plus minus area so the little block shows up.
22435         
22436 2005-10-21  Jackson Harper  <jackson@ximian.com>
22437
22438         * TreeView.cs: Make sure that when we invalidate a node the bounds
22439         are big enough to cover the selected box and the focus
22440         rectangle. Use a different colour for the lines connecting nodes
22441         so they show up with all themes.
22442
22443 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22444
22445         * NativeWindow.cs: Don't call anything that could call into the driver,
22446           we might be on a different thread.
22447
22448 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
22449
22450         * Control.cs(Dispose): Since Dispose might run on a different thread,
22451           make sure that we call methods that could call into the driver via
22452           invoke, to avoid thread issues
22453
22454 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22455
22456         * XplatUI.cs: Removed finalizer
22457         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
22458           not allowing to be called on the finalizer thread.
22459
22460 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
22461
22462         * ImageList.cs:
22463           - Reverted r51889 and r51891.
22464           - Added ImageListItem class that stores unmodified image items and image
22465             properties required to create list images until handle is created.
22466           - Added AddItem and moved image creation logic to AddItemInternal.
22467           - Added CreateHandle method that creates images based on unmodified items.
22468           - Added DestroyHandle that changes state to store unmodified items.
22469           - Add and AddStrip methods no more create handle.
22470           - ReduceColorDepth has no return value.
22471           - Dispose destroys handle.
22472           - Modified other methods to reflect the above changes.
22473           - Implemented key support.
22474           - Added profile 2.0 members and attributes.
22475           - Added private Reset and ShouldSerialize methods that provide the same
22476             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
22477             them as they are private.
22478           - Added some more comments about implementation details.
22479
22480 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22481
22482         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
22483
22484 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22485
22486         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
22487
22488 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22489
22490         * DataGridDrawingLogic.cs: Fixes column hit calcultation
22491         * DataGridColumnStyle.cs: Remove debug message
22492
22493 2005-10-20  Jackson Harper  <jackson@ximian.com>
22494
22495         * TreeView.cs: We can always get input keys regardless of whether
22496         or not editing is enabled. They are used for navigation.
22497
22498 2005-10-20  Jackson Harper  <jackson@ximian.com>
22499
22500         * TreeNode.cs: Use the viewport rect for determining if a node
22501         needs to be moved for visibility. Don't use Begin/End edit. This
22502         calls a full refresh when its done.
22503         * TreeView.cs: New SetBottom works correctly.  Make the viewport
22504         rect property internal so the treenodes can see it. When clicking
22505         on a node we need to ensure that its visible because it might just
22506         be partly visible when clicked.
22507
22508 2005-10-20  Jackson Harper  <jackson@ximian.com>
22509
22510         * TreeNodeCollection.cs: Remove debug code.
22511
22512 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22513
22514         * Datagrid.cs: Implements column sorting in Datagrid
22515         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
22516
22517 2005-10-20  Jackson Harper  <jackson@ximian.com>
22518
22519         * TreeNodeCollection.cs: Remove items properly. Update the correct
22520         area after removing them.
22521
22522 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22523
22524         * Datagrid.cs: Should not call base.OnPaintBackground
22525
22526 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22527
22528         * XplatUIX11.cs (GetMessage):
22529           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
22530             window instead of client window
22531           - Now properly calculates NC_xBUTTONUP message coordinates
22532           - ScreenToMenu now properly calculates it's coordinates of whole 
22533             window, since menus are in the whole window, not in the client
22534             window
22535           - Added WholeToScreen coordinate translation method
22536
22537 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
22538
22539         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
22540           want to return a message, loop back to the beginning of the function
22541           and grab the next real message to process instead.
22542
22543 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22544
22545         * Splitter.cs: Properly set limits if no filler control is used
22546
22547 2005-10-19  Jackson Harper  <jackson@ximian.com>
22548
22549         * ColorDialog.cs: Don't show the help button if it is not enabled
22550         instead of disabling it (this is what MS does). Don't create the
22551         panel until the dialog is run, otherwise the vars (such as
22552         ShowHelp) are not set yet.
22553
22554 2005-10-19  Jackson Harper  <jackson@ximian.com>
22555
22556         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
22557         are reduced when adding nodes.
22558         * TreeNode.cs:
22559         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
22560         tree.
22561         
22562 2005-10-19  Jackson Harper  <jackson@ximian.com>
22563
22564         * FolderBrowserDialog.cs: End editing our treeview so the window
22565         actually gets refreshed.
22566
22567 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22568
22569         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
22570           Obsoleted handling of WM_ERASEBKGND, now always draws our background
22571           inside of WM_PAINT
22572
22573 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22574
22575         * MenuAPI.cs: Returns after Hidding window
22576         * XplatUIX11.cs: Added TODO found while debugging menu issues
22577
22578 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22579
22580         * XplatUIX11.cs: Do not re-map the whole window when it's size
22581           becomes non-zero unless it's supposed to be actually visible
22582
22583 2005-10-18  Jackson Harper  <jackson@ximian.com>
22584
22585         * TreeView.cs: We don't need to keep a count anymore.
22586         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
22587         use the Grow method.
22588
22589 2005-10-18  Jackson Harper  <jackson@ximian.com>
22590
22591         * TreeNodeCollection.cs: Insert is not supported on arrays, so
22592         implement it manually here.
22593
22594 2005-10-18  Jackson Harper  <jackson@ximian.com>
22595
22596         * ImageList.cs: Dont kill the list when the colour depth is
22597         changed, just change the colour depth of all the images.
22598         - Same goes for setting the image size. Just resize them all
22599         instead of killing the list softly.
22600
22601 2005-10-18  Jackson Harper  <jackson@ximian.com>
22602
22603         * Control.cs: Don't invalidate empty rectangles.
22604
22605 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22606
22607         * ListViewItem.cs:
22608           - Adds checked item to the Checked/Item lists (where empty before)
22609           - Do not add items to the Selected lists if they are already present
22610         * ListView.cs:
22611           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
22612           - When deleting items make sure that we delete them for the Selected
22613           and Checked list also.
22614
22615 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22616
22617         * Label.cs: Dispose objects no longer used
22618         * ThemeWin32Classic.cs: Dispose objects no longer used
22619
22620 2005-10-18  Jackson Harper  <jackson@ximian.com>
22621
22622         * TabControl.cs: Don't refresh the whole control when the tabs are
22623         scrolled, we just need to refresh the tab area.
22624
22625 2005-10-17  Jackson Harper  <jackson@ximian.com>
22626
22627         * XplatUIX11.cs: Compress code a little bit. Only calculate the
22628         after handle when we need it.
22629
22630 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22631
22632         * Control.cs: When the parent size changes, recalculate anchor 
22633           positions. Partial fix for #76462
22634
22635 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22636
22637         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
22638           drawn. Fixes #76462
22639
22640 2005-10-17  Jackson Harper  <jackson@ximian.com>
22641
22642         * MonthCalendar.cs: Don't create the numeric up down until our
22643         handle is created. Otherwise our handle is created in the
22644         constructor and we don't know if we are a WS_CHILD or WS_POPUP
22645         yet.
22646
22647 2005-10-17  Jackson Harper  <jackson@ximian.com>
22648
22649         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
22650         correctly.
22651
22652 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22653         * TreeNode.cs : small logical fix (was using local var instead of field)
22654         
22655 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22656
22657         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
22658
22659 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22660
22661         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
22662
22663 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
22664
22665         * Control.cs: 
22666           - Re-implemented anchoring code. My first version was really broken.
22667             This fixes bug #76033. Unlike the previous implementation we will
22668             no longer have round errors since all numbers are calculated from
22669             scratch every time. Removed various anchor-related obsolete vars.
22670           - InitLayout no longer causes layout event firing and layout to be 
22671             performed
22672
22673 2005-10-16  Jackson Harper  <jackson@ximian.com>
22674
22675         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
22676         which was broken).
22677
22678 2005-10-16  Jackson Harper  <jackson@ximian.com>
22679
22680         * TabControl.cs: Remove debug code.
22681
22682 2005-10-16  Jackson Harper  <jackson@ximian.com>
22683
22684         * XEventQueue.cs: Increase the default queue size (very simple
22685         apps needed to grow the queue).
22686         * Hwnd.cs: No finalizer so we don't need to suppress
22687         finalization. Compute the invalid area manually so a new rectangle
22688         does not newto be created.
22689         * ScrollableControl.cs: Don't set any params (otherwise visibility
22690         isn't set correctly).
22691         * MdiChildContext.cs: New constructor takes the mdi parent so it
22692         doesn't have to be computed and avoids a crash on windows. Draw
22693         the window icon properly, and allow the text to be seen.
22694         * Form.cs: Use new MdiChildContext constructor. Make sure the
22695         child context isn't null in wndproc.
22696         * TabControl.cs: Don't set focus, this is muddling keyboard
22697         behavoir. Expand the tab rows when a window size increase will
22698         allow extra tabs to be seen. Don't allow tabs smaller than the
22699         width of a window to be scrolled out of view.
22700         * TreeNode.cs:
22701         * TreeView.cs: Use measure string to calculate a nodes width, the
22702         width is cached and only updated when the text or the font is
22703         changed. Don't check for expand/collapse clicks on the first level
22704         nodes if root lines are disabled.
22705         
22706 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
22707
22708         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
22709
22710 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22711
22712         * DataGridBoolColumn.cs: fixes warning
22713
22714 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22715
22716         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
22717         to match more to match more precisely the MS Net behavior
22718
22719 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22720
22721         * Hwnd.cs: Added field to track if window is mapped
22722         * XplatUIX11.cs: 
22723           - Unmap windows if they become 0-size, re-map when 
22724             they are >0 again; fixes #76035
22725           - Re-set our error handler after initializing X11Desktop
22726             to override any error handlers Gtk or whatever was called
22727             may have set.
22728
22729 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22730
22731         * CheckedListBox.cs: Removed unused vars
22732         * ListView.cs: Fixed signatures
22733         * RichTextBox.cs: Removed unused vars
22734         * TextBoxBase.cs: Removed unused vars
22735         * XplatUIWin32.cs: Removed unused vars
22736         * XplatUIX11.cs: Removed unused vars
22737         * XplatUI.cs: Updated version and date to latest published
22738
22739 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22740
22741         * Cursor.cs: Added private .ctor to work around a bug in
22742           resourceset (Thanks to Geoff Norton for the help on this)
22743         * SplitterEventArgs.cs: Made fields accessible so we don't
22744           waste boatloads of objects and can reuse the same one
22745           in Splitter
22746         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
22747           any captions and borders when generating screen coordinates
22748         * Splitter.cs: Reimplemented control, now fully complete, uses
22749           rubberband drawing, supports and obeys all properties, has
22750           proper cursors
22751
22752 2005-10-13  Miguel de Icaza  <miguel@novell.com>
22753
22754         * Form.cs (Form): Setup default values for autoscale and
22755         autoscale_base_size;  Make these instance variables, not static
22756         variables. 
22757
22758         (OnLoad): on the first load, adjust the size of the form.
22759
22760 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22761
22762         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
22763           width argument to DrawReversibleRectangle()
22764         * XplatUIWin32.cs, XplatUIX11.cs: 
22765           - Implemented width for DrawReversibleRectangle()
22766           - Added logic to DrawReversibleRectangle that recognizes a zero
22767             width or height and only draws a line in that situation
22768         
22769 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
22770
22771         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
22772         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
22773         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
22774           method (it uses our FosterParent window to get a graphics context)
22775
22776 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
22777
22778         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
22779           and SetWindowBackground methods
22780         * Control.cs:
22781           - Setting proper ControlStyles
22782           - We no longer call XplatUI.SetWindowBackground and XplatUI.
22783             EraseWindowBackground, instead we draw the window background
22784             ourselves in PaintControlBackground. This behaviour is
22785             required to match MS, where, when OnPaintBackground is not
22786             called, the background is not drawn.
22787           - Removed unneeded Refresh() in set_Text
22788         * Hwnd.cs: Dropped the ErasePending support. No longer needed
22789         * XplatUIX11.cs:
22790           - Created DeriveStyles method to translate from CreateParams to
22791             FormBorderStyle and TitleStyle, also handles BorderStyle (which
22792             matches FormBorderStyle enum values)
22793           - Consolidated SetHwndStyles and CalculateWindowRect border/title
22794             style calculations into single DeriveStyles method
22795           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
22796             from redrawing the whole window on any resize or expose.
22797           - Fixed CreateWindow usage of SetWindowValuemask. Before not
22798             all styles were applied to our whole/client window appropriately
22799           - Removed EraseWindowBackground() and SetWindowBackground() methods
22800           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
22801             no longer clear/redraw the background through X
22802           - Removed handling of erase_pending bit, we have no use for it (or
22803             so it seems)
22804         * XplatUIOSX.cs:
22805           - Removed generation and handling of WM_ERASEBKGND message
22806           - Removed EraseWindowBackground() and SetWindowBackground() methods
22807           - Removed handling of hwnd.ErasePending flag
22808         * XplatUIWin32.cs:
22809           - Removed EraseWindowBackground() and SetWindowBackground() methods
22810           - We no longer call EraseWindowBackground on PaintEventStart, we 
22811             ignore the fErase flag, erasing is handled in Control in the
22812             background handler
22813         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
22814           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
22815           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
22816           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
22817           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
22818           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
22819           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
22820
22821 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
22822
22823         * PropertyGrids.cs: Get sub properties
22824         * PropertyGridView.cs: Fix drawing code
22825
22826 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22827
22828         * ListBox.cs: Fixes 76383
22829
22830 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22831
22832         * DataGridTextBoxColumn.cs: Sets location and size before attachment
22833         * ThemeWin32Classic.cs: Fixes border drawing and calculations
22834         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
22835
22836
22837 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22838
22839         * ComboBox.cs: Fixes border drawing
22840
22841 2005-10-10  Miguel de Icaza  <miguel@novell.com>
22842
22843         * MimeIcon.cs: Ignore errors if the file can not be read.
22844
22845 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22846
22847         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
22848          - Fixed border calculations
22849          - Fixed horizontal scrolling in single column listboxes
22850          - Fixed drawing issues
22851
22852 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
22853
22854         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
22855           FormBorderStyle enum
22856         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
22857           code to determine FormBorderStyles from CreateParams
22858         * Form.cs:
22859           - Fixed bug where we'd set the wrong window styles if we were
22860             not creating an MDI window
22861           - Added call to XplatUI.SetBorderStyle when form borders are set
22862         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
22863         * Hwnd.cs:
22864           - Removed obsolete edge style
22865           - Switched from BorderStyle to FormBorderStyle
22866         
22867 2005-10-10  Jackson Harper  <jackson@ximian.com>
22868
22869         * Form.cs: Use the property to get the window handle instead of
22870         accessing it directly. Prevents a null reference exception.
22871
22872 2005-10-10  Jackson Harper  <jackson@ximian.com>
22873
22874         * TreeView.cs: Don't adjust the rect given to DrawString now that
22875         our libgdiplus draws correctly.
22876
22877 2005-10-08  Jackson Harper  <jackson@ximian.com>
22878
22879         * TreeView.cs: Don't try to find the clicked on node if there are
22880         no nodes in the tree.
22881
22882 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22883
22884         * RichTextBox.cs:
22885
22886           restore
22887
22888 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22889
22890         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
22891           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
22892           ErrorProvider.cs:
22893           Use ResPool for brushes and dispose System.Drawing objects that
22894           are not used anymore.
22895
22896 2005-10-07  Jackson Harper  <jackson@ximian.com>
22897
22898         * MdiChildContext.cs: Use the new borders instead of drawing them
22899         ourselves.
22900
22901 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22902
22903         * Calling UpdateBounds after changing the window's BorderStyle 
22904         since the style can change the ClientSize
22905
22906 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22907
22908         * Control.cs: Made PaintControlBackground virtual
22909         * Panel.cs: Overriding PaintControlBackground instead of using paint
22910           event; paint event method was interfering with 'real' users of the
22911           event.
22912
22913 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22914
22915         * ThemeWin32Classic.cs: remove border drawing since it is handled
22916         by the base control class now and was causing double border drawing.
22917
22918 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22919
22920         * Panel.cs: Redraw our background on paint. Not a pretty solution,
22921           but it does seem to match MS behaviour. This fixes bug #75324
22922
22923 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22924
22925         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
22926           somewhat hackish looking
22927
22928 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22929
22930         * TextBoxBase.cs:
22931           - We now accept Enter even if AcceptEnter is false, if the containing
22932             form does not have an AcceptButton configured (fixes bug #76355)
22933           - Calculations are now fixed to no longer use Width/Height, but
22934             ClientSize.Width/Height, since we now support borders (this was
22935             a result of fixing borders and therefore bug #76166)
22936           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
22937             true (fixes bug #76354)
22938         
22939 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22940
22941         * Control.cs: 
22942           - Defaulting BorderStyle and setting it in XplatUI when our window 
22943             is created
22944           - Added enum check to InternalBorderStyle setter
22945         * XplatUIX11.cs: 
22946           - Added drawing of window borders
22947           - Now properly calculates WM decorations offset for toplevel 
22948             windows (fixes bug #74763)
22949         * XplatUIWin32.cs: 
22950           - Implemented BorderStyles for windows (we're letting win32 draw 
22951             the border for us)
22952           - Fixed the signature for SetWindowLong
22953         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
22954           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
22955           setting borders
22956         * UpDownBase.cs: Remove drawing of borders, this is handled by
22957           the driver, outside the client area
22958         * ListView.cs: Removed bogus border calculations. The control should
22959           be oblivious to borders, since those are not part of the client
22960           area. 
22961         * X11DesktopColors.cs: Commented out (currently) unneeded variables
22962         * ThemeWin32Classic.cs: Removed border calculations from ListView 
22963           drawing code
22964
22965 2005-10-06  Jackson Harper  <jackson@ximian.com>
22966
22967         * MdiChildContext.cs: Clear out the old virtual position remove
22968         all the unneeded calls to CreateGraphics.
22969
22970 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22971
22972         * TextControl.cs: Use proper color for highlighted text; fixes #76350
22973
22974 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22975
22976         * Form.cs: 
22977           - Added loading and setting of our new default icon
22978           - Only set icon if window is already created
22979
22980 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22981
22982         * Label.cs:
22983           - Do not explicitly set the foreground and background colors, to
22984             allow inheriting from parents (fixes #76302)
22985           - Use Control's InternalBorderStyle property to deal with borders
22986
22987 2005-10-06  Jackson Harper  <jackson@ximian.com>
22988
22989         * MdiChildContext.cs: Use the new xplatui function to draw a
22990         reversible rect.
22991
22992 2005-10-06  Jackson Harper  <jackson@ximian.com>
22993
22994         * Form.cs: Add the parent before creating the child context cause
22995         we need the parent when setting up the child.
22996
22997 2005-10-06  Jackson Harper  <jackson@ximian.com>
22998
22999         * FolderBrowserDialog.cs: redo the tree population code so a
23000         second thread isn't used. Should be a lot faster and more stable
23001         now.
23002
23003 2005-10-05  Jackson Harper  <jackson@ximian.com>
23004
23005         * TreeView.cs: There are no expand/collapse boxes if the node has
23006         no children.
23007
23008 2005-10-05  Jackson Harper  <jackson@ximian.com>
23009
23010         * X11DesktopColors.cs: Get menu colours for the gtk theme.
23011
23012 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
23013
23014         * FileDialog.cs: Fix InitialDirectory
23015
23016 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
23017
23018         * ComboBox.cs:
23019                 - Fixes changing between styles
23020                 - Fixes simple mode
23021                 - Fixes last item crashing when navigating with keyboard
23022
23023 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
23024
23025         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
23026
23027 2005-10-05  Jackson Harper  <jackson@ximian.com>
23028
23029         * TreeView.cs: If updating the root node do a full refresh.
23030         * TreeNode.cs: The root node should be expanded by default. Also
23031         added a utility prop to tell if we are the root node.
23032         * TreeNodeCollection.cs: Only refresh if the node we are being
23033         added to is expanded. Also added a comment on a potential
23034         optimization.
23035         
23036 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
23037
23038         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
23039           in dispose method. Fixes #76330
23040
23041 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
23042
23043         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
23044
23045                 - Implements vertical and horizontal scrolling using XplatUI
23046                 - Fixes keyboard navagation
23047                 - Fixes EnsureVisible
23048                 - Drawing fixes
23049                 - Handles and draws focus properly
23050
23051
23052 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
23053
23054         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
23055           Create handle. NET_2_0: Destroy handle when value is null.
23056
23057 2005-10-03  Jackson Harper  <jackson@ximian.com>
23058
23059         * ScrollBar.cs: My last scrollbar patch was broken. This is a
23060         revert and a new patch to prevent the thumb from refreshing so
23061         much.
23062
23063 2005-10-02  Jackson Harper  <jackson@ximian.com>
23064
23065         * ScrollBar.cs: Don't update position if it hasn't actually
23066         changed. This occurs when you hold down the increment/decrement
23067         buttons and the thumb gets to the max/min.
23068
23069 2005-10-01  Jackson Harper  <jackson@ximian.com>
23070
23071         * Form.cs:
23072         * MdiChildContext.cs:
23073         * MdiClient.cs: Implement ActiveMdiChild in Form.
23074
23075 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
23076
23077         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
23078
23079 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
23080
23081         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
23082           be found
23083
23084 2005-09-30  Jackson Harper  <jackson@ximian.com>
23085
23086         * ListBox.cs: Don't do a full refresh unless some data has
23087         actually changed.
23088
23089 2005-09-30  Jackson Harper  <jackson@ximian.com>
23090
23091         * TreeView.cs: Make sure that the checkboxes size is factored in
23092         even when not visible.
23093
23094 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
23095
23096         * FileDialog.cs: Fix Jordi's build break
23097
23098 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
23099
23100         * FileDialog.cs: 
23101                 - Use standard the Windows colours for the combobox as espected
23102                 - Dispose objects that use resouces when no longer need them
23103
23104 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
23105
23106         * X11DesktopColors.cs: Initial incomplete implementation
23107         * XplatUIX11.cs: Added call to initialize X11DesktopColors
23108
23109 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
23110
23111         * Theme.cs: 
23112           - Switched Theme color names to match the names defined in 
23113             System.Drawing.KnownColors. Life's hard enough, no need to make 
23114             it harder.
23115           - Added setters to all theme color properties so themes can set
23116             their color schemes. The setters also propagate the color changes
23117             to System.Drawing.KnownColors via reflection
23118         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
23119           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
23120           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
23121           use the new, more logical theme color names
23122         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
23123           post-NT colors
23124         * ThemeWin32Classic.cs:
23125           - Removed code to set the old classic Windows colors. Instead it
23126             now relies on the colors returned by System.Drawing.KnownColors
23127             which will be either modern static colors (Unix) or colors
23128             read from the user's configuration (Win32)
23129           - Updated to use the new, more logical theme color names
23130           - Switched DataGrid drawing code to use only Theme colors instead of
23131             a mix of System.Drawing.KnownColors and Theme colors
23132           - DrawFrameControl(): Removed code that fills the button area, the
23133             fill would overwrite any previous fill done by a control. This
23134             fixes bug #75338 
23135           - Added DrawReversibleRectangle() stub
23136         * ScrollableControl.cs: Set visible state to false when scrollbars
23137           are removed (pdn fix)
23138         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
23139           DrawReversibleRectangle() method to allow drawing primitive 
23140           'rubber bands'
23141         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
23142
23143 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23144
23145         * ImageList.cs: Add(Icon): Create handle.
23146
23147 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
23148
23149         * ListView.cs:
23150         * ThemeWin32Classic.cs:
23151                 - Fixes detail mode
23152                 - Sets clippings
23153                 - Issues with drawing
23154
23155 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23156
23157         * ImageList.cs: Moved RecreateHandle back to ImageList as event
23158           source has to be the ImageList.
23159
23160 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23161
23162         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
23163
23164 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23165
23166         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
23167
23168 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23169
23170         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
23171
23172 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
23173         * GridItem.cs: Fixed TODOs
23174         * GridItemCollection.cs: Added ICollection interface
23175
23176 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23177
23178         * ImageList.cs: Resize icons when needed.
23179
23180 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
23181
23182         * ListViewItem.cs
23183                 - Fixes GetBounds and returns on screen rects
23184         * ListView.cs:
23185                 - Fixes vertical and horzintal scrolling of items
23186         * ThemeWin32Classic.cs:
23187                 - Fixes drawing
23188                 
23189 2005-09-29  Raja R Harinath  <harinath@gmail.com>
23190
23191         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
23192
23193 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
23194
23195         * ImageList.cs: Added comments about handle creation. Moved Handle,
23196           HandleCreated and OnRecreateHandle implementations to ImageCollection.
23197           Handle is created in Add methods.
23198
23199 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
23200          
23201         * DataGridDrawingLogic.cs: 
23202                 - Takes rows into account on Colum calculations
23203                 - Returns the column when clickig
23204         * DataGrid.cs:
23205                 - Fixes default HitTestInfo values
23206                 - Fixes HitTestInfo.ToString
23207                 - Fixes ResetBackColor          
23208         
23209 2005-09-28  Jackson Harper  <jackson@ximian.com>
23210
23211         * MdiChildContext.cs: Obey rules for fixed sized windows (no
23212         sizing or cursor changes). Also added some temp code to draw the
23213         titlebars text (Makes dev a little easier).
23214
23215 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
23216
23217         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
23218
23219 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
23220          
23221         * ListBox.cs: Fixes bug 76253
23222
23223 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
23224
23225         * ImageList.cs: Added comments about the current implementation. Added
23226           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
23227           Format32bppArgb to preserve transparency and can use Graphics.FromImage
23228           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
23229           with Bitmap.LockBits for better performance. Revised the whole file to
23230           match MS.NET behaviour and provide better performance. Non-public
23231           interface members are calling public members even when they throw
23232           NotSupportedException for better maintainability. Moved ColorDepth,
23233           ImageSize, ImageStream and TransparentColor implementations to
23234           ImageCollection for better performance as these properties are not used
23235           by ImageList.
23236         * ImageListStreamer.cs: Added a new internal constructor that takes an
23237           ImageList.ImageCollection and serializes Images based on
23238           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
23239           match ImageList property name.
23240
23241 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
23242
23243         * ListBox.cs: Fixes IndexFromPoint for last item
23244
23245 2005-09-27  Jackson Harper  <jackson@ximian.com>
23246
23247         * Form.cs: Set the position of new mdi children correctly.
23248
23249 2005-09-27  Jackson Harper  <jackson@ximian.com>
23250
23251         * MdiClient.cs: New mdi children need to be added to the back of
23252         the controls collection so the zorder is set correctly. Also add a
23253         count of all the child windows that have been created.
23254
23255 2005-09-27  Jackson Harper  <jackson@ximian.com>
23256
23257         * Form.cs (CreateParams): Setup MDI forms correctly.
23258
23259 2005-09-27  Jackson Harper  <jackson@ximian.com>
23260
23261         * MdiChildContext.cs:
23262         * MonthCalendar.cs:
23263         * UpDownBase.cs:
23264         * ListBox.cs:
23265         * ListView.cs:
23266         * TextBoxBase.cs:
23267         * TreeView.cs:
23268         * ScrollableControl.cs:
23269         * ComboBox.cs: Add implicit controls using the new implict control
23270         functionality in ControlCollection. Also try to block multiple
23271         control add in a suspend/resume layout to save some cycles.
23272         
23273 2005-09-27  Jackson Harper  <jackson@ximian.com>
23274
23275         * Control.cs: Add functionality to the controls collection to add
23276         'implicit controls' these are controls that are created by the
23277         containing control but should not be exposed to the user. Such as
23278         scrollbars in the treeview.
23279         * Form.cs: The list var of the ControlsCollection is no longer
23280         available because of the potential of implicit controls getting
23281         ignored by someone accessing the list directly.
23282
23283 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
23284
23285         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
23286           loose it's parent. (Fixed bug introduced in r49103 when we added
23287           setting the child parent to null on Remove)
23288
23289 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
23290
23291         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
23292         * Splitter.cs: Added missing attributes for BorderStyle property.
23293         * TextBoxBase.cs: Marked Calculate* methods internal.
23294         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
23295         MS.NET.
23296
23297 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
23298          
23299         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
23300
23301 2005-09-25  Jackson Harper  <jackson@ximian.com>
23302
23303         * TreeView.cs: Update the node bounds correctly regardless of
23304         whether the node is visible.
23305
23306 2005-09-25  Jackson Harper  <jackson@ximian.com>
23307
23308         * ImageList.cs: Don't dispose the image after it is added to the
23309         image list. Only reformat images that need to be resized.
23310
23311 2005-09-25  Jackson Harper  <jackson@ximian.com>
23312
23313         * ImageList.cs: Don't set the format when changing the image.
23314
23315 2005-09-25  Jackson Harper  <jackson@ximian.com>
23316
23317         * TreeView.cs: We can't just assume the node has a font. Use the
23318         treeviews font if no node font is available.
23319
23320 2005-09-25  Jackson Harper  <jackson@ximian.com>
23321
23322         * TreeView.cs: Allow the scrollbars to be reset with negative
23323         values.
23324         - Don't add scrollbars to negative sized windows.
23325
23326 2005-09-23  Jackson Harper  <jackson@ximian.com>
23327
23328         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
23329         old Mono.Posix. Also remove some stray code that shouldn't have
23330         been committed.
23331
23332 2005-09-23  Jackson Harper  <jackson@ximian.com>
23333
23334         * TreeView.cs: Attempt at proper sizing of the horizontal
23335         scrollbar. Also don't resize the scrollbars unless they are
23336         visible.
23337
23338 2005-09-23  Jackson Harper  <jackson@ximian.com>
23339
23340         * TreeView.cs: We don't need to expand the invalid area when the
23341         selection changes, as this is all drawn in the node's bounding
23342         box. The area needs to be expanded (previous typo was contracting
23343         it) when the focus rect moves.
23344
23345 2005-09-23  Jackson Harper  <jackson@ximian.com>
23346
23347         * TreeView.cs: Display the selection box under the correct
23348         circumstances. We were rendering white text with no selection box
23349         before.
23350
23351 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
23352
23353         * TextControl.cs(Split): Now updates selection start/end if it points 
23354           into a line that's being split. Fixes a FIXME and bug #75258
23355
23356 2005-09-23  Jackson Harper  <jackson@ximian.com>
23357
23358         * Binding.cs:
23359         * ListControl.cs: Don't use the path when retrieving binding
23360         managers from the binding context. My bat sense tells me that the
23361         path is only used on insertion.
23362
23363 2005-09-22  Jackson Harper  <jackson@ximian.com>
23364
23365         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
23366
23367 2005-09-22  Jackson Harper  <jackson@ximian.com>
23368
23369         * Splitter.cs: There are special cursors used for splitting.
23370         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
23371
23372 2005-09-22  Jackson Harper  <jackson@ximian.com>
23373
23374         * Splitter.cs: Change the cursor appropriately when the splitter
23375         is moused over, so the user actually knows there is a splitter
23376         there.
23377
23378 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23379
23380        * Label.cs : Fix ToString method to give same output as MS.NET
23381
23382 2005-09-22  Jackson Harper  <jackson@ximian.com>
23383
23384         * TreeView.cs: Create the scrollbars when the handle is created
23385         and add them right away, just make them invisble. Also account for
23386         the window being shrunk vertically to the point that the vert
23387         scrollbar needs to be added.
23388         - Remove some 0.5 adjustments to get around anti aliasing issues.
23389         
23390 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
23391          
23392         * MainMenu.cs: Fixes default value
23393         * MenuItem.cs: Fixes default value
23394
23395 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
23396
23397         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
23398
23399 2005-09-21  Jackson Harper  <jackson@ximian.com>
23400
23401         * Control.cs: Don't try to set the border style on the window if
23402         it hasn't been created. When the window is created the border
23403         style will be used.
23404
23405 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23406
23407         * Control.cs (Update): Don't call XplatUI if we don't have a
23408           window handle yet
23409
23410 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23411
23412         * ContainerControl.cs: Instead of throwing an exception, print
23413           a one-time warning about Validate not being implemented
23414         * XplatUIWin32.cs: Removed debug output
23415
23416 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23417
23418         * Control.cs: Only set XplatUI background if we expect the windowing
23419           system to handle the background. This stops controls that draw their
23420           own background from flickering
23421
23422         * XplatUIX11.cs: Support custom visuals and colormaps for window 
23423           creation. This allows, amongst other things, using MWF X11 windows 
23424           with OpenGL.
23425
23426 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23427
23428         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
23429           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
23430           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
23431           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
23432           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
23433           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
23434           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
23435           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
23436           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
23437           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
23438           GridColumnStylesCollection.cs, 
23439           IDataGridColumnStyleEditingNotificationService.cs,
23440           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
23441           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
23442           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
23443           TreeNodeCollection.cs, AmbientProperties.cs, 
23444           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23445           DataObject.cs, ErrorProvider.cs, Splitter.cs,
23446           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
23447           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
23448           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
23449           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
23450           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
23451           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
23452           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
23453           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
23454           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
23455           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
23456           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
23457           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
23458           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
23459           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
23460           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
23461           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
23462           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
23463           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
23464           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
23465           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
23466           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
23467           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
23468           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
23469           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
23470           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
23471           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
23472           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
23473           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
23474           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
23475           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
23476           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
23477           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
23478           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
23479           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
23480           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
23481
23482 2005-09-21  Jackson Harper  <jackson@ximian.com>
23483
23484         * TreeNode.cs: Call Before/After Expand not Collapse when
23485         expanding.
23486
23487 2005-09-20  Jackson Harper  <jackson@ximian.com>
23488         
23489         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
23490
23491 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23492          
23493         * ListViewItem.cs:
23494                 - Fixes bug 76120
23495                 - Fixes proper storing of subitems
23496                 - Fixes not updated items
23497
23498 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
23499
23500         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
23501           things if our window handle isn't created yet. Also disabled 
23502           debug for TextBoxBase
23503
23504 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
23505
23506         * MenuAPI.cs: Remove filtering of events to allow menu usage
23507
23508 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23509
23510         * Cursor.cs: Allow null to be passed to Cursor.Current.
23511
23512 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
23513
23514         * ThemeWin32Classic.cs:
23515           - Change some private methods/fields to protected virtual so that 
23516             they can be accessed and overriden in derived classes
23517           - First refactoring of some methods. Derived themes now don't 
23518             need to duplicate the complete code from ThemeWin32Classic
23519         * ThemeNice.cs:
23520           - Added nice StatusBar
23521           - Derive from ThemeWin32Classic and not Theme
23522           - Removed duplicate ThemeWin32Classic code
23523
23524 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23525
23526         * Control.cs (ControlCollection.Add): If the value null is passed
23527         the control is ignored. 
23528
23529         Optimize this loop.
23530
23531 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
23532
23533         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
23534           PostQuitMessage state.
23535         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
23536
23537 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
23538
23539         * Application.cs: Our constructor will never get called, move 
23540           initialization to fields; fixes bug #75933
23541
23542 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23543
23544         * FileDialog.cs :
23545                 - Allow files to be selected properly using file name
23546                 combo box.
23547                 - Add ability to change diretory (absolute / relative)
23548                 using file name combo box.
23549
23550 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23551          
23552         * ListBox.cs: 
23553                 - Fixes Multicolumn listboxes item wrong calculations
23554                 - Allows to click when only one item is in the listbox
23555                 - Fixes crash when no items using keyboard navigation
23556
23557 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
23558
23559         * ComboBox.cs: Reverted almost everything from the latest patch which
23560           broke ComboBox
23561
23562 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
23563         
23564         * ToolTip.cs:
23565                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
23566         * ComboBox.cs:
23567                 - When DropDownStyle is Simple, it does not show scrollbar 
23568                 to the last item of the list.
23569                 - When DropDownStyle is Simple, it crashed when the list was 
23570                 scrolled down with the down cursor key.
23571                 - Fixed a bug that when DropDownStyle is DropDownList, the 
23572                 selected item was not shown.
23573                 - The position of the selected item was not preserved when 
23574                 the next dropdown happened.
23575         * ThemeWin32Classic.cs:
23576                 - Items were wrapped at the right end.
23577         * CheckedListBox.cs:
23578                 - Fixed Add method
23579         * ListBox.cs:
23580                 - Items should be fully shown.
23581                 - When resizing and vertical scrollbar disappeared, the item 
23582                 of index 0 should be on the top of the list.
23583                 - GetItemRectangle should consider the size of ver. scrollbar
23584         * StatusBar.cs:
23585                 - SizingGrip area should not be allocated when it is not 
23586                 displayed.
23587                 - Now it reflects MinWidth of the containing panel and 
23588                 fixed a crash that happens when its width becomes so small.
23589
23590 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23591
23592         * CheckedListBox.cs: Fixes bug 76028
23593         * ListBox.cs: Fixes bug 76028
23594
23595 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23596
23597         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
23598         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
23599
23600 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
23601
23602         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
23603
23604 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23605
23606         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
23607
23608 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23609
23610         * IRootGridEntry.cs: Added
23611         * PropertyGridCommands.cs: Added
23612         * PropertiesTab.cs: Added missing methods and property
23613         * PropertyGridView.cs: Made class internal
23614         * PropertyGridTextBox.cs: Made class internal
23615
23616 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23617
23618         * MimeIcon.cs: Try to check some other environment variables
23619           if "DESKTOP_SESSION" returns "default"
23620
23621 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23622
23623         * ThemeNice.cs: Corrected background colors (e.g. menus)
23624         * ColorDialog.cs: Use correct background colors for controls
23625
23626 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23627
23628         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
23629
23630 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
23631
23632         * RichTextBox.cs: Added initial implementation
23633         * lang.cs: Removed. Was accidentally checked in long time ago
23634         * TODO: Removed. Contents were obsolete
23635
23636 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23637                                                                                 
23638         * PropertiesTab.cs : Added
23639
23640 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23641                                                                                 
23642         * PropertyGrid.cs : Update
23643         * PropertyGridView.cs : Update
23644         * System.Windows.Forms.resx : Added images and strings
23645
23646 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
23647
23648         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
23649  
23650 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
23651
23652         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
23653           a busy loop right after the Ungrab the X11 display is otherwise 
23654           blocked
23655
23656 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
23657
23658         * ThemeWin32Classic.cs: Optimise the use of clipping
23659
23660 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
23661
23662         * DataGrid.cs: fixes recursion bug
23663
23664 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
23665
23666         * ThemeNice.cs: 
23667           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
23668           - Cleanup
23669
23670 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
23671
23672         * ThemeNice.cs: Draw nice ProgressBars
23673
23674 2005-09-01  Miguel de Icaza  <miguel@novell.com>
23675
23676         * VScrollBar.cs: Another buglet found by Aaron's tool. 
23677
23678         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
23679         bug finder.
23680
23681 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
23682
23683         * ThemeNice.cs:
23684           - Added nicer menu drawing
23685           - Updated DrawTab
23686           - some refactoring
23687
23688 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23689
23690         * CreateParams.cs (ToString): Made output match MS
23691         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
23692             handle is already created (to avoid forcing window creation)
23693         * XplatUIX11.cs: Set window text to caption after creating window,
23694           in case Text was set before window was created
23695         * Form.cs: Use this.Text instead of a static string as caption
23696
23697 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23698
23699         * NotifyIcon.cs: Don't set the window to visible; this screws
23700           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
23701           OnPaint without a bitmap)
23702         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
23703           happen very often anyway; we could add the check to the WM_PAINT 
23704           event generation code
23705
23706 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23707
23708         * NotifyIcon.cs: Fill the icon area with a background color, to 
23709           avoid 'residue' when transparent icons are drawn
23710         * XplatUIX11.cs:
23711           - Handle whole_window == client_window when destroying windows
23712           - SystrayAdd(): Set client_window to whole_window value to
23713             get mouse and other events passed to NotifyIcon
23714
23715 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23716
23717         * Form.cs: Set proper default for Opacity property
23718         * NotifyIcon.cs:
23719           - ShowSystray(): Don't bother creating telling the OS
23720             about the systray item if no icon is provided
23721           - Now handles WM_NCPAINT message to deal with whole/client window
23722             split
23723           - Create window as visible to not get caught by Expose optimization
23724         * Hwnd.cs: Removed debug message
23725         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
23726           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
23727             PaintEventStart/End to use new client argument
23728         * TextBoxBase.cs:
23729           - Commented out debug messages
23730           - Switched PaintEventStart/End to use new client argument
23731         * XplatUI.cs: Added client window bool to PaintEventStart()/
23732           PaintEventEnd() calls, to support drawing in non-client areas
23733         * XplatUIDriver.cs: 
23734           - Added client window bool to PaintEventStart()/PaintEventEnd() 
23735             calls, to support drawing in non-client areas
23736           - Added conditional compile to allow using MWF BeginInvoke 
23737             on MS runtime
23738         * XplatUIX11.cs:
23739           - Added some conditional debug output
23740           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
23741             whole/client window split
23742           - Implemented handling of client argument to PaintEventStart()/End()
23743         * Control.cs:
23744           - Throw exception if BeginInvoke() is called and the window handle
23745             or one of the window's parent handles is not created
23746           - Added conditional compile to allow using MWF BeginInvoke on
23747             MS runtime
23748           - get_Parent(): Only sets parent if handle is created. This avoids
23749             forcing window handle creation when parent is set.
23750           - Now fires Layout and Parent changed events in proper order
23751           - Switched to use Handle instead of window.Handle for Z-Order setting,
23752             the get_Parent() patch above causes us to possibly get null for 'window'
23753           - Implemented handling of client argument to PaintEventStart()/End()
23754           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
23755             default handling)
23756           - Now sends a Refresh() to all child windows when Refresh() is called
23757
23758 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
23759
23760         * Form.cs: Added (non-functional) Opacity property
23761         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
23762
23763 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
23764         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
23765           use export MONO_THEME=nice to activate it.
23766           Currently supported controls:
23767           - Button
23768           - ComboBox
23769           - ScrollBar
23770           - TabControl (TabAlignment.Top only, other will follow)
23771         * ThemeEngine.cs: Add theme nice
23772         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
23773           if enabled
23774
23775 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
23776
23777         * Splitter.cs: Resize docked control and its neighbor.
23778
23779 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23780         -- Making Windows with Menus layout correctly --
23781         * Form.cs : The first leg of the fix
23782                 Menu setter - adjust Client Size as needed to make space for the menu
23783                 SetClientSizeCore - doesn't call base version to be able to pass the 
23784                         menu handle to XplatUI.CalculateWindowRect
23785         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
23786         * XplatUIX11.cs: The critical second leg of the fix
23787                 GetWindowPos needs to use a recalculated client_rect
23788                 so that resizing the window doesn't break layout of child controls. 
23789                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
23790                 Lots of \t\n killed
23791
23792 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
23793
23794         * Label.cs: Now properly recalculates width and height on Font and Text
23795           changes if AutoSize is set
23796
23797 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23798         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
23799
23800 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
23801
23802         * ImageList.cs: Makes ToString method compatible with MS
23803
23804 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
23805
23806         * MenuAPI.cs: fixes bug 75716
23807
23808 2005-08-11 Umadevi S <sumadevi@novell.com>
23809         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
23810
23811 2005-08-11 Umadevi S <sumadevi@novell.com>
23812         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
23813
23814 2005-08-10  Umadevi S <sumadevi@novell.com>
23815         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
23816
23817 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
23818
23819         * Menu.cs: fixes bug 75700
23820         * MenuAPI.cs: fixes navigation issues
23821
23822 2005-08-09  Umadevi S <sumadevi@novell.com>
23823         * CheckedListBox.cs - simple fix for GetItemChecked.
23824
23825 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
23826
23827         * ComboBox.cs: Serveral fixes
23828         * ListBox.cs: Serveral fixes
23829
23830 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23831
23832         * ComboBox.cs: Fixes FindString methods and GetItemHeight
23833         * ListBox.cs: Fixes FindString methods
23834
23835 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23836
23837         * DataGrid.cs: fixes bugs exposed by new tests
23838
23839 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
23840
23841         * Mime.cs: Compile Mono assembly references only if compiling
23842           with Mono (Allows to build with VS.Net again)
23843
23844 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
23845
23846         * Control.cs (PaintControlBackground): Draw background image
23847         corrrectly.
23848         (CheckForIllegalCrossThreadCalls): Stubbed.
23849         
23850         * Form.cs (OnCreateControl): Center when should be centered.
23851         
23852         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
23853
23854 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
23855
23856         * Binding.cs: Binding to properties should be case unsensitive
23857
23858 2005-07-18 vlindos@nucleusys.com
23859
23860         * DataGrid.cs: fixes setmember order
23861
23862 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
23863
23864         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
23865         * FileDialog.cs: FileDialog is now resizable and uses the new
23866           MimeIconEngine
23867
23868 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
23869
23870         * DataGridTextBoxColumn.cs: default value
23871         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
23872         * GridTableStylesCollection.cs: fixes checking MappingName
23873         * DataGridDrawingLogic.cs: fixes drawing logic issues
23874         * DataSourceHelper.cs: rewritten to make compatible with more data sources
23875         * DataGrid.cs: fixes    
23876
23877 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
23878
23879         * MimeGenerated.cs: Use case sensitive comparer for
23880           NameValueCollections
23881
23882 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
23883
23884         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
23885         * ThemeWin32Classic.cs: bug fixes, code refactoring
23886         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
23887         * DataGrid.cs: bug fixes, code refactoring
23888         * DataGridTextBox.cs: bug fixes, code refactoring
23889         * DataGridColumnStyle.cs:  bug fixes, code refactoring
23890         * Theme.cs:  bug fixes, code refactoring
23891
23892 2005-07-01  Peter Bartok  <pbartok@novell.com> 
23893
23894         * TextControl.cs: Quick fix for the reported crash on ColorDialog
23895           and other text box usage
23896
23897 2005-07-01  Jackson Harper  <jackson@ximian.com>
23898
23899         * TabControl.cs: Make sure the bottom of the tab covers the pages
23900         border.
23901
23902 2005-06-30  Peter Bartok  <pbartok@novell.com> 
23903
23904         * Form.cs (ShowDialog): Assign owner of the dialog
23905         * TextBoxBase.cs: Always refresh caret size when deleting, caret
23906           might have been moved to a tag with different height
23907
23908 2005-06-30  Jackson Harper  <jackson@ximian.com>
23909
23910         * Form.cs: Don't create an infinite loop when setting focus
23911         * MenuItem.cs: Don't dirty the parents if we don't have any
23912
23913 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
23914
23915         * LibSupport.cs: Rename
23916
23917 2005-06-29  Peter Bartok  <pbartok@novell.com>
23918
23919         * TextBoxBase.cs: Re-align caret after deleting a character
23920         * TextControl.cs:
23921           - DeleteChars(): Ensure that tag covers the provided position
23922           - StreamLine(): Drop reference for dropped tag
23923
23924 2005-06-29  Peter Bartok  <pbartok@novell.com> 
23925
23926         * TextControl.cs: 
23927           - Selections now work properly, anchoring at the initial location
23928             and properly extending in either direction (SetSelectionToCaret(),
23929             SetSelectionStart() and SetSelectionEnd())
23930           - No longer redraws the whole control on selection change, now
23931             calculates delta between previous and new selection and only
23932             invalidates/redraws that area
23933           - Fixed FindPos() math off-by-one errors
23934           - Changed DeleteChars() to verify the provided tag covers the
23935             provided position, selections may have a tag that doesn't cover
23936             the position if the selection is at a tag border
23937           - Fixed off-by-one errors in DeleteChars()
23938           - Added missing streamlining check in DeleteChars() to remove
23939             zero-length tags
23940           - Implemented Invalidate() method, now properly calculates exposures
23941             between two given lines/positions
23942           - Implemented SetSelection()
23943           - Obsoleted and removed FixupSelection()
23944           - Improved RecalculateDocument() logic, removing code duplication
23945
23946 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23947
23948         * LibSupport.cs: changes to match different input/output arguments.
23949
23950 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23951
23952         * LibSupport.cs: added libsupport.so init routine.
23953
23954 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
23955         
23956         * ControlBindingsCollection.cs
23957                 - Throws an exception on null datasource when adding
23958                 - Checks for duplicated bindings when adding
23959
23960 2005-06-28  Jackson Harper  <jackson@ximian.com>
23961
23962         * TreeView.cs (OnKeyDown): Support left and right properly
23963         (navigates as well as expanding and collapsing.
23964         - Add support for Multiply, this expands all the selected nodes
23965         children.
23966         - Fix some tabbing.
23967
23968 2005-06-28  Jackson Harper  <jackson@ximian.com>
23969
23970         * TreeView.cs: Implement keyboard navigation, currently supports,
23971         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
23972         support for toggling checkboxes with the space bar.
23973
23974 2005-06-28  Jackson Harper  <jackson@ximian.com>
23975
23976         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
23977         tree.
23978
23979 2005-06-28  Jackson Harper  <jackson@ximian.com>
23980
23981         * TreeView.cs: Add missing event.
23982
23983 2005-06-27  Peter Bartok  <pbartok@novell.com> 
23984
23985         * TextControl.cs:
23986           - Made line ending size configurable (now allows for counting 
23987             lineendings as \n or \r\n)
23988           - Added margin to viewport to keep caret visible on right side
23989           - Fixed translation routines for line/pos to documentpos to consider
23990             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
23991           - Fixed some line-endings to be unix style
23992           - Fixed Document.FormatText to perform it's calculations 1-based
23993           - Added descriptions for a few methods that might otherwise get 
23994             used wrong
23995           - Added NOTE section with some basic conventions to remember at 
23996             the top of the file
23997           - Major fixup for RichTextBox selection drawing:
23998             * Fixed crashes when multiple tags on a single line were selected
23999             * fixed selection box drawing not overlaying text
24000             * fixed bogus offset calculation for tags not starting at index 1
24001             * Switched behaviour from using multiple Substrings of a 
24002               StringBuilder.ToString() to using multiple 
24003               StringBuilder.ToString(start, length) statements, hoping this is
24004               faster (kept original version commented out in the code, in case
24005               original version was faster)
24006         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
24007           alignment != Left
24008         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
24009           call it as well
24010
24011 2005-06-27  Jackson Harper  <jackson@ximian.com>
24012
24013         * TabControl.cs: Move to the left and right with the arrow
24014         keys. These keys don't cycle beyond first and last like
24015         tab. Refresh all the tabs when scrolling them to the left or
24016         right.
24017
24018 2005-06-27  Jackson Harper  <jackson@ximian.com>
24019
24020         * TabControl.cs:
24021           - ToString: Added method
24022           - CreateParams: Remove TODO and comment
24023           - OnKeyDown: Cycle through bounds properly.
24024           - SelectedIndex: Scroll to the right or left if we need to
24025           display the newly selected tab.
24026
24027 2005-06-23  Jackson Harper  <jackson@ximian.com>
24028
24029         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
24030         set.
24031
24032 2005-06-23  Jackson Harper  <jackson@ximian.com>
24033
24034         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
24035         CTRL-SHIFT-TAB, and HOME, END are there any others?
24036
24037 2005-06-23  Jackson Harper  <jackson@ximian.com>
24038
24039         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
24040
24041 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
24042         
24043         * DataGridTextBoxColumn.cs: fixes and enhancements
24044         * ThemeWin32Classic.cs: fixes and enhancements
24045         * DataGridBoolColumn.cs:  fixes and enhancements
24046         * DataGridDrawingLogic.cs:  fixes and enhancements
24047         * CurrencyManager.cs: fixes and enhancements
24048         * DataGrid.cs: fixes and enhancements
24049         * DataGridColumnStyle.cs:  fixes and enhancements
24050
24051 2005-06-22  Jackson Harper  <jackson@ximian.com>
24052
24053         * TabControl.cs: Add some missing methods that just call into the
24054         base. Make the TabPageCollection's IList interface behave in the
24055         same manner as the MS implementation.
24056
24057 2005-06-22  Peter Bartok  <pbartok@novell.com> 
24058
24059         * TextControl.cs: Added sanity check
24060         * TextBoxBase.cs: 
24061           - Fixed wrapping behaviour, don't set wrap on single line controls
24062             (this fixes the breakage of colordialog introduced in an earlier
24063              checkin)
24064           - Added rudimentary support for autoscrolling right-aligned controls
24065             (still needs fixing, also, center alignment scroll is missing)
24066
24067 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
24068         
24069         * ScrollBar.cs: Fixes thumbpos on Maximum values
24070
24071 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
24072         
24073         * PropertyGridView.cs: Pass context information to UITypeEditors 
24074
24075 2005-06-21  Peter Bartok  <pbartok@novell.com> 
24076
24077         * TextBoxBase.cs:
24078           - Now calling PositionCaret with absolute space coordinates
24079           - Enabled vertical scrolling
24080           - Better tracking of scrollbar changes, tied into WidthChange
24081             event
24082           - Improved cursor tracking
24083           - Removed debug output
24084         * TextControl.cs:
24085           - PositionCaret coordinates are now works in absolute space, not 
24086             the canvas
24087           - Improved tracking of document size
24088           - Added events for width and height changes
24089
24090 2005-06-21  Peter Bartok  <pbartok@novell.com>
24091
24092         * Form.cs: Set focus to active control when form is activated
24093         * TextControl.cs: 
24094           - Added word-wrap functionality to RecalculateLine() 
24095           - Added some short function descriptions for VS.Net to aid in
24096             writing dependent controls
24097           - Added Caret property, returning the current coords of the caret
24098           - Added ViewPortWidth and ViewPortHeight properties
24099           - Added Wrap property
24100           - Added CaretMoved event
24101           - Removed some old debug code
24102           - Split() can now create soft splits
24103           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
24104           - Added method to format existing text
24105           - Fixed size/alignment calculations to use viewport
24106           - RecalculateDocument now can handle changing line-numbers while
24107             calculating lines
24108
24109         * TextBox.cs:
24110           - Added some wrap logic, we don't wrap if alignment is not left
24111           - Added casts for scrollbar var, base class switched types to
24112             also support RichTextBoxA
24113           - Implemented handling of scrollbar visibility flags
24114
24115         * TextBoxBase.cs:
24116           - Switched scrollbars type to RichTextBoxScrollBars to support
24117             RichTextBox
24118           - Added tracking of canvas width/height
24119           - Switched scrollbars to be not selectable (to keep focus on text)
24120           - Added central CalculateDocument() method to handle all redraw
24121             requirements
24122           - Added ReadOnly support
24123           - Added WordWrap support
24124           - Fixed handling of Enter key (we now treat it as a DialogKey)
24125           - Fixed caret positioning when h or v scroll is not zero
24126           - Fixed placing/generation of vertical scrollbar
24127           - Added CalculateScrollBars() method to allow updating scrollbar
24128             limits and visibility
24129           - Fixed handling of horizontal scroll
24130           - Added handling of vertical scroll
24131           - Implemented auto-'jump' when caret moves to close to a left or
24132             right border and there is text to be scrolled into view (currently
24133             there's the potential for a stack overflow, until a bug in
24134             scrollbar is fixed)
24135
24136 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
24137         
24138         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
24139
24140 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
24141
24142         * Mime.cs:
24143         - added inodes.
24144         - return application/x-zerosize for files with size zero
24145           (if no extension pattern matches).
24146         - check matches collection for strings too.
24147         - return only the first mime type if the name value
24148           collection has more than one mime type.
24149
24150 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
24151         
24152         * PropertyGrid.cs: Cleaned up some TODOs
24153         * PropertyGridView.cs: Added support for UITypeEditors
24154
24155 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
24156         
24157         * DataGrid.cs: clears cached value
24158
24159 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
24160
24161         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
24162         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
24163         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
24164         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
24165         
24166 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
24167
24168         * ThemeWin32Classic.cs: fixes colour
24169
24170 2005-06-15  Peter Bartok  <pbartok@novell.com>
24171
24172         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
24173         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
24174         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
24175         * Control.cs: Added some MWFCategory and MWFDescription attributes
24176         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
24177
24178 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
24179
24180         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
24181         usage
24182
24183 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
24184
24185         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
24186         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
24187         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
24188         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
24189         * DataGrid.cs: default datagrid settings for Default Styles, fixes
24190         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
24191
24192 2005-06-13  Jackson Harper  <jackson@ximian.com>
24193
24194         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
24195         isn't printed when the user enables dropping. (X11 does accept
24196         drops).
24197         
24198 2005-06-13  Jackson Harper  <jackson@ximian.com>
24199
24200         * TreeView.cs: Remove some TODOS.
24201
24202 2005-06-13  Jackson Harper  <jackson@ximian.com>
24203
24204         * Form.cs: Hook into the mdi framework.
24205         * MdiClient.cs: Use the base control collections add method so
24206         parents get setup correctly. Set the default back colour and dock
24207         style.
24208         * MdiChildContext.cs: New class, this bad actor handles an
24209         instance of an MDI window. Right now there is only basic
24210         support. You can drag, close, and resize windows. Minimize and
24211         Maximize are partially implemented.
24212
24213 2005-06-13  Jackson Harper  <jackson@ximian.com>
24214
24215         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
24216         freaky when both vals are negative. NOTE: There are probably other
24217         places in XplatUIX11 that this needs to be done.
24218
24219 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
24220
24221         * DataGrid.cs: implement missing methods, move KeyboardNavigation
24222         * DataGridColumnStyle.cs: fixes signature
24223
24224 2005-06-12  Jackson Harper  <jackson@ximian.com>
24225
24226         * XplatUIX11.cs: Use sizing cursors similar to the ones on
24227         windows.
24228
24229 2005-06-11  Jackson Harper  <jackson@ximian.com>
24230
24231         * StatusBarPanel.cs: Signature cleanups. Implement
24232         BeginInit/EndInit.
24233
24234 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
24235
24236         * DataGridTextBoxColumn.cs: Honors aligment
24237         * GridColumnStylesCollection.cs: Contains is case unsensitive
24238         * GridTableStylesCollection.cs: several fixes
24239         * DataGridTableStyle.cs: default column creation
24240         * DataGridDrawingLogic.cs: fixes
24241         * CurrencyManager.cs: ListName property
24242         * DataGrid.cs: multiple styles support
24243         * DataGridColumnStyle.cs: fixes
24244         
24245
24246 2005-06-10  Peter Bartok  <pbartok@novell.com>
24247
24248         * Control.cs(Select): Moved SetFocus call to avoid potential
24249           loops if controls change the active control when getting focus
24250         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
24251           the up/down buttons
24252
24253 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
24254
24255         * ImageListConverter.cs: Implemented
24256
24257 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
24258
24259         * MonthCalendar.cs: Wired in NumericUpDown control for year
24260
24261 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
24262
24263         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
24264           DoubleClick events, since they are not meant to be fired.
24265
24266 2005-06-09  Peter Bartok  <pbartok@novell.com>
24267
24268         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
24269           Jonathan's standalone controls into MWF, implemented missing
24270           events, attributes and methods; added xxxAccessible classes
24271         * AccessibleObject.cs: Made fields internal so other classes
24272           can change them if needed
24273
24274 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
24275
24276         * UpDownBase.cs: Complete implementation
24277         * NumericUpDown.cs: Complete implementation
24278         * DomainUpDown.cs: Complete implementation
24279
24280 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
24281
24282         * DataGridTextBoxColumn.cs: drawing fixes
24283         * DataGridCell.cs: fixes ToString method to match MSNet
24284         * DataGridTableStyle.cs: fixes
24285         * DataGridBoolColumn.cs: fixes, drawing
24286         * DataGridDrawingLogic.cs: fixes, new methods
24287         * DataGridTextBox.cs: Keyboard and fixes
24288         * DataGrid.cs:
24289                 - Keyboard navigation
24290                 - Scrolling fixes
24291                 - Row selection (single, multiple, deletion, etc)
24292                 - Lots of fixes
24293         
24294 2005-06-07  Jackson Harper  <jackson@ximian.com>
24295
24296         * ThemeWin32Classic.cs: Clear the background area when drawing
24297         buttons.
24298
24299 2005-06-06  Peter Bartok  <pbartok@novell.com>
24300
24301         * ImageListStreamer.cs: Fixed signature for GetData
24302         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
24303         * ComboBox.cs:
24304           - Added missing ChildAccessibleObject class
24305           - Added missing OnXXXFocus overrides, switched to using those
24306             instead of the event handler
24307         * Control.cs:
24308           - Added Parent property for ControlAccessibleObject
24309           - Fixed signatures
24310           - Fixed attributes
24311           - Added ResetBindings()
24312         * ListBindingConverter.cs: Implemented some methods
24313         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
24314         * ImageList.cs: Implemented basic handle scheme, removed TODOs
24315         * ContainerControl.cs: Fixed signature, now subscribing to the
24316           ControlRemoved event instead of overriding the handler, LAMESPEC
24317         * CurrencyManager.cs: Added missing attribute
24318         * MonthCalendar.cs: Added missing properties
24319
24320 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
24321
24322         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
24323         
24324 2005-06-06  Gaurav Vaish and Ankit Jain
24325
24326         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
24327         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
24328         
24329 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
24330
24331         * Control.cs: fixes CreateParams Width / Height.
24332
24333 2005-06-05  Peter Bartok  <pbartok@novell.com>
24334
24335         * Win32DnD.cs: Removed compilation warnings
24336
24337 2005-06-05  Peter Bartok  <pbartok@novell.com>
24338
24339         * Control.cs (CreateParams): Since we don't know if one of the
24340           properties we use is overridden, lets make sure if we fail accessing
24341           we continue with a backup plan
24342
24343 2005-06-05  Peter Bartok  <pbartok@novell.com>
24344
24345         * Win32DnD.cs:
24346           - Removed debug output
24347           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
24348             struct
24349           - Plugged resource leak
24350         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
24351           MS size
24352
24353 2005-06-05  Peter Bartok  <pbartok@novell.com>
24354
24355         * XplatUIWin32.cs: Removed DnD code
24356         * Win32DnD.cs: Implemented drop source and drop target functionality
24357
24358 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24359
24360         * UpDownBase.cs: remove duplicate addition of event, enable some code
24361         that was commented out.
24362         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
24363         Validate input when a key is pressed. It works fine now for every
24364         combination of Hexadecimal. Only missing some drawing love when sharing
24365         space with other controls.
24366
24367 2005-06-04  Peter Bartok  <pbartok@novell.com>
24368
24369         * Control.cs:
24370           - We need to pass a window for DragDrop, so enable callback events
24371           - Added DnD callback events when being a DragSource
24372         * XplatUI.cs (StartDrag): Added window handle argument
24373         * XplatUIDriver.cs (StartDrag): Added window handle argument
24374         * QueryContinueDragEventArgs: Made fields internally accessible so
24375           drivers can set them
24376         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
24377           can set them
24378
24379 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
24380
24381         * DataGridTextBoxColumn.cs: column text editing
24382         * DataGridTableStyle.cs: Respect columns styles created by the user
24383         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
24384         * DataGridBoolColumn.cs: bool column editing
24385         * DataGrid.cs: fixes to scrolling, properties, etc
24386         * DataGridTextBox.cs: handle keyboard
24387         * DataGridColumnStyle.cs: fixes
24388
24389 2005-06-02  Jackson Harper  <jackson@ximian.com>
24390
24391         * ImageListStreamer.cs: Somewhat broken implementation of
24392         GetObjectData. The RLE needs some work to match MS properly.
24393
24394 2005-06-02  Jackson Harper  <jackson@ximian.com>
24395
24396         * X11Dnd.cs: Attempting to keep at least one file in MWF
24397         monostyled.
24398
24399 2005-06-02  Peter Bartok  <pbartok@novell.com>
24400
24401         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
24402           that way
24403
24404 2005-06-02  Peter Bartok  <pbartok@novell.com>
24405
24406         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
24407         * XplatUI.cs: Added DoDragDrop() method
24408         * XplatUIDriver.cs: Added DoDragDrop() method
24409
24410 2005-06-02  Jackson Harper  <jackson@ximian.com>
24411
24412         * Splitter.cs: Implement BorderStyle.
24413
24414 2005-06-02  Jackson Harper  <jackson@ximian.com>
24415
24416         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
24417         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
24418         X11 using XDND.
24419
24420 2005-06-02  Peter Bartok  <pbartok@novell.com>
24421
24422         * DataObject.cs:
24423           - Added Data setter
24424           - Fixed broken insertion code for SetData, now also
24425             overwrites any existing entry of the same format name
24426         * Hwnd.cs: Added list of pointers that automatically gets
24427           freed when the window is disposed
24428         * XplatUI.cs: Call driver initialization method when loading
24429           a driver
24430         * Control.cs:
24431           - OnDragLeave takes EventArgs, not DragEventArgs
24432           - Added setting of WS_EX_ACCEPTFILES style when dropping is
24433             supported
24434           - Forces style update when drop state changes
24435         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
24436           not perfect since we cannot (yet) call the IDataObject.GetData()
24437           method, we keep getting 0x80004005 error, dunno why)
24438
24439 2005-06-02  Peter Bartok  <pbartok@novell.com>
24440
24441         * DragEventArgs.cs: Make fields internal so we can cache the
24442           object and re-set the fields from XplatUI
24443
24444 2005-06-02  Jackson Harper  <jackson@ximian.com>
24445
24446         * Control.cs: Add some internal methods so the DnD subsystem can
24447         raise DnD events. Also call into the driver when AllowDrop is set.
24448         * XplatUI.cs:
24449         * XplatUIDriver.cs: New method for setting whether or not a window
24450         is allowed to accept drag and drop messages.
24451                 
24452 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
24453         
24454         * ScrollBar.cs: Make sure that values sent in Scroll events
24455         are always between Maximum and Minimum.
24456
24457 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
24458
24459         * Menu.cs: Call MenuChanged when menuitem visibility has been
24460         changed.
24461         * MenuItem.cs: Rebuild menu when item is (not) visible.
24462         * MainMenu.cs: MainMenu has special MenuChanged.
24463         * Theme.cs: Caption and FrameBorderSize are not fixed.
24464         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
24465         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
24466         * XplatUIX11.cs,
24467         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
24468         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
24469
24470 2005-05-30  Jackson Harper  <jackson@ximian.com>
24471
24472         * DataFormat.cs: We can't statically initialize this stuff because
24473         it calls into the xplatui and could create a loop. So we lazy init
24474         it.
24475
24476 2005-05-28  Jackson Harper  <jackson@ximian.com>
24477
24478         * Control.cs: Proper implementation of Product(Name/Version).
24479
24480 2005-05-27  Jackson Harper  <jackson@ximian.com>
24481
24482         * DataObject.cs: Dont crash if no data is found.
24483
24484 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
24485         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
24486                 as per status page, guessing it should be set to true
24487
24488 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
24489
24490         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
24491         * DataGridTableStyle.cs: set proper formatting text, def header text
24492         * ThemeWin32Classic.cs: new themable paramaters
24493         * DataGridBoolColumn.cs: paint check box, get data, fixes
24494         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
24495         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
24496         * DataGridColumnStyle.cs: fixes
24497         * Theme.cs: new themable paramaters
24498                 
24499 2005-05-26  Peter Bartok  <pbartok@novell.com>
24500
24501         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
24502
24503 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24504         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
24505
24506 2005-05-24  Peter Bartok  <pbartok@novell.com>
24507
24508         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
24509           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
24510           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
24511           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
24512           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
24513           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
24514           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
24515           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
24516           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
24517           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
24518           missing attributes, etc
24519         * DataGridPreferredColumnWidthTypeConverter.cs: Added
24520
24521 2005-05-24  Peter Bartok  <pbartok@novell.com>
24522
24523         * Help.cs: Added, implemented trivial functions, throws up MessageBox
24524           when user tries to get help
24525         * DataObject.cs, DataFormats.cs, LinkArea.cs,
24526           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
24527           to suppress warnings
24528         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
24529           avoid unreachable code warning
24530
24531 2005-05-20  Peter Bartok  <pbartok@novell.com>
24532
24533         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
24534
24535 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24536
24537         * DataGridTextBoxColumn.cs: Basic painting methods
24538         * DataGridTableStyle.cs: Set table style in the column
24539         * ThemeWin32Classic.cs: Use Theme for colors
24540         * DataGridDrawingLogic.cs: Implement more drawing
24541         * DataGrid.cs: drawing, theming, enhacements, fixes
24542         * DataGridColumnStyle.cs: fixes, drawing
24543         * Theme.cs: theming for Datagrid
24544
24545 2005-05-20  Peter Bartok  <pbartok@novell.com>
24546
24547         * Cursor.cs: Implemented GetObjectData() method
24548
24549 2005-05-20  Peter Bartok  <pbartok@novell.com>
24550
24551         * Cursors.cs: Added setting of cursor name
24552         * Cursor.cs:
24553           - Implemented constructors
24554           - Implemented Draw and DrawStretched
24555           - Implemented Current property
24556           - Implemented == and != operators
24557           - Implemented Dispose()
24558           - Implemented ToString
24559           - Added missing attributes
24560         * XplatUIX11.cs:
24561           - Added missing reset for OverrideCursor when DoEvents is called
24562           - Fixed creation of cursor, logic was wrong
24563         * XplatUIWin32.cs:
24564           - Added missing reset for OverrideCursor when DoEvents is called
24565           - Fixed creation of cursor, bit arrays were swapped
24566         * Clipboard.cs: Removed obsolete MonoTODO attribute
24567
24568 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24569
24570         * ComboBox.cs: fixes OnSelectedItemChanged
24571         * ControlBindingsCollection.cs: fixes item range check
24572
24573 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24574
24575         * UpDownBase.cs:
24576                 - Calc preferred height properly
24577                 - Implement missing properties
24578                 
24579         * NumericUpDown.cs: Implement missing events
24580
24581 2005-05-19  Jackson Harper  <jackson@ximian.com>
24582
24583         * TabControl.cs: New method that resizes the tab pages before
24584         redrawing them. This as needed as the control is double buffered
24585         and sizing will not be recalculated unless ResizeTabPages is
24586         called.
24587         * TabPage.cs: Set base.Text instead of Text in the constructor so
24588         that UpdateOwner does not get called. Use the new Redraw method of
24589         TabControl instead of Refresh so the sizing is recalculated.
24590         * ThemeWin32Classic.cs: Draw the text for button tabs.
24591
24592 2005-05-19  Jackson Harper  <jackson@ximian.com>
24593
24594         * Control.cs: Paint control background images. Fix typo where
24595         PaintControlBackground was not getting called correctly.
24596
24597 2005-05-19  Peter Bartok  <pbartok@novell.com>
24598
24599         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
24600           I can investigate, apparently I broke FileDialog
24601
24602 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
24603
24604         * AxHost.cs: Some simple properties.
24605         * Control.cs: window must be accessible after ctor.
24606         * Form.cs: Added TransparencyKey property.
24607         * TextBoxBase.cs: Implemented Clear. Text property can be null.
24608         * XplatUIWin32.cs: SetBorderStyle implemented.
24609
24610 2005-05-18  Peter Bartok  <pbartok@novell.com>
24611
24612         * DataObject.cs: Entries are not global but particular to the
24613           DataObject, now it behaves that way
24614         * XplatUIWin32.cs: Implemented Clipboard methods
24615         * Clipboard.cs: Implemented
24616         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
24617         * XplatUIOSX.cs: Updated to final clipboard prototypes
24618         * XplatUIX11.cs: Implemented Clipboard methods
24619         * XplatUIDriver.cs: Updated to final clipboard prototypes
24620         * XplatUIStructs.cs:
24621           - Added BITMAPINFOHEADER struct
24622           - Added ClipboardFormats enum
24623         * X11Structs.cs:
24624           - Added ClipboardStruct
24625           - Added Atom enum items for clipboard types
24626           - Fixed atom types for Selection event structures
24627         * DataFormats.cs:
24628           - Added internal properties and methods for drivers to enumerate
24629             all known formats
24630           - Switched initialization method to allow drivers to assign their
24631             own IDs even for the MS predefined clipboard IDs
24632         * XplatUI.cs: Updated to final clipboard interface
24633
24634 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24635         * PropertyGridView.cs: Fixed compiler warnings.
24636
24637 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24638         * PropertyGrid.cs: Added some event calls
24639         * PropertyGridView.cs: Change drawing code to use double buffering
24640         * PropertyGridTextBox.cs: Changed Text property name
24641         * GridItem.cs: Added Bounds property.
24642         * GridEntry.cs: Added Bounds property.
24643
24644 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
24645
24646         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
24647         since GetType() may not return the correct type if the object is
24648         a remoting proxy.
24649
24650 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
24651
24652         * TreeNodeCollection.cs: fixes get/set item ranges
24653         
24654 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24655
24656         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
24657                 
24658 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24659
24660         * ComboBox.cs: Fix item range comparation
24661         * ListView.cs: Fix item range comparation
24662
24663 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24664
24665         * FontDialog.cs:
24666           - Clear example panel when OnPaint is called
24667           - Better solution for displaying the example panel text
24668           - Select default indexes in the ListBoxes
24669
24670 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24671
24672         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
24673
24674 2005-05-11  Peter Bartok  <pbartok@novell.com>
24675
24676         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
24677         * SelectionRangeConverter.cs: Implemented
24678         * PropertyGrid.cs: Fixed attribute value
24679         * Control.cs:
24680           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
24681           - Added Sebastien Pouliot's CAS Stack Propagation fixes
24682         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
24683           that's common to all drivers. First methods to go there are
24684           Sebastien Pouliot's CAS Stack Propagation helper methods
24685         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
24686           Sebastien Pouliot for CAS Stack Propagation
24687
24688 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24689
24690         * OSXStructs.cs:
24691           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
24692
24693 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
24694
24695         * DataGridTextBoxColumn.cs: fixed some members
24696         * GridColumnStylesCollection.cs: indexed column is case insensitive
24697         * DataGridTableStyle.cs: fixes
24698         * ThemeWin32Classic.cs: add new theme parameter
24699         * Theme.cs: add new theme parameter
24700         * DataGridDrawingLogic.cs: Datagrid's drawing logic
24701         * DataGrid.cs: fixes, new internal properties, etc.
24702         * DataGridColumnStyle.cs: allows to set grid value
24703         *
24704
24705 2005-05-10  Peter Bartok  <pbartok@novell.com>
24706
24707         * AccessibleObject.cs:
24708           - Removed MonoTODO attribute on help, method is correct
24709           - Fixed Bounds property
24710         * AxHost.cs: Moved MonoTODO
24711         * ButtonBase.cs: Now setting AccessibleObject properties
24712         * RadioButton.cs: Setting proper AccessibleObject role
24713         * CheckBox.cs: Setting proper AccessibleObject role
24714         * ControlBindingsCollection.cs: Added properties, methods and attributes
24715         * DataFormats.cs: Fixed awkward internal API, and changed to enable
24716           userdefined DataFormats.Format items as well
24717         * ListControl.cs: Removed data_member from the public eye
24718         * OpenFileDialog.cs:
24719           - Made class sealed
24720           - Added missing attributes
24721         * SaveFileDialog.cs: Added missing attributes
24722         * ImageListStreamer.cs: Fixed code that caused warnings
24723         * LinkLabel.cs: Removed unreachable code
24724         * TreeView.cs: Fixed code that caused warnings
24725         * PropertyGridView.cs: Fixed code that caused warnings
24726         * GridColumnStylesCollection.cs: Added missing attributes
24727         * GridTableStylesCollection: Added missing attribute
24728         * PropertyManager: Added .ctor
24729         * SecurityIDType: Added
24730         * DataObject.cs: Implemented class
24731         * LinkArea.cs: Added missing attribute
24732
24733 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
24734
24735         * RadioButton.cs: call base method to allow to fire OnClick event
24736         * UpDownBase.cs: OnMouseUp call base method
24737         * CheckedListBox.cs: call base method before returning
24738         * TrackBar.cs: call base method before returning
24739         
24740
24741 2005-05-10  Peter Bartok  <pbartok@novell.com>
24742
24743         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
24744           for messages
24745
24746 2005-05-10  Peter Bartok  <pbartok@novell.com>
24747
24748         * DataFormats.cs: Implemented
24749         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
24750           XplatUIX11.cs: Added Clipboard APIs
24751         * XplatUIWin32.cs: Implemented Clipboard APIs
24752         * FolderBrowserDialog.cs: Added missing event, attributes
24753
24754 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
24755
24756         * CheckBox.cs: call base method to allow to fire OnClick event
24757
24758 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
24759
24760         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
24761
24762 2005-05-06  Peter Bartok  <pbartok@novell.com>
24763
24764         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
24765         * Screen.cs: Implemented
24766         * HelpNavigator.cs: Added
24767         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
24768           property
24769         * HelpProvider.cs: Implemented all we can do until we have a CHM
24770           help library (which means that "What's This" does work now)
24771
24772 2005-05-06  Jackson Harper  <jackson@ximian.com>
24773
24774         * XplatUIX11.cs: Fix waking up the main loop.
24775                 
24776 2005-05-05  Peter Bartok  <pbartok@novell.com>
24777
24778         * XplatUI.cs: Updated revision
24779         * Form.cs: Removed enless loop
24780         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
24781         * Label.cs (OnPaint): Added call to base.OnPaint()
24782         * ToolTip.cs: Made ToolTipWindow reusable for other controls
24783         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
24784         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
24785         * AxHost.cs: Added
24786         * ButtonBase.cs: Moved base.OnPaint() call to end of method
24787         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
24788           to ToolTip.ToolTipWindow for drawing and size methods; this allows
24789           reuse of ToolTipWindow by other controls
24790         * SizeGrip.cs: Moved base.OnPaint() call to end of method
24791         * XplatUIX11.cs: Now clipping drawing area (experimental)
24792         * PictureBox.cs: Moved base.OnPaint() call to end of method
24793         * Theme.cs: Fixed ToolTip abstracts to match new format
24794         * ErrorProvider.cs: Implemented
24795
24796 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
24797
24798         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
24799         * LinkLabel.cs:
24800                 - Adds cursors
24801                 - Handles focus
24802                 - Implements LinkBehavior
24803                 - Fixes many issues
24804
24805 2005-05-03  Jackson Harper  <jackson@ximian.com>
24806
24807         * ListView.cs: Calculate the scrollbar positioning on resize and
24808         paint, so they get put in the correct place.
24809
24810 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24811
24812         * ColorDialogs.cs: The small color panels are now handled by
24813           SmallColorControl. This fixes drawing of the focus rectangle
24814           and adds a 3D border.
24815
24816 2005-05-03  Peter Bartok  <pbartok@novell.com>
24817
24818         * Control.cs: Modified version of Jonathan Chamber's fix for
24819           double-buffering
24820
24821 2005-05-03  Jackson Harper  <jackson@ximian.com>
24822
24823         * ListView.cs: Remove redraw variable. Control now handles whether
24824         or not a redraw needs to be done, and will only raise the paint
24825         event if redrawing is needed.
24826
24827 2005-05-03  Jackson Harper  <jackson@ximian.com>
24828
24829         * Splitter.cs: No decorations for the splitter form. Cache the
24830         hatch brush.
24831
24832 2005-05-03  Jackson Harper  <jackson@ximian.com>
24833
24834         * TreeView.cs: Use dashed lines to connect nodes. Use the
24835         ControlPaint method for drawing the focus rect instead of doing
24836         that in treeview.
24837
24838 2005-05-02  Peter Bartok  <pbartok@novell.com>
24839
24840         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
24841
24842 2005-04-29  Jackson Harper  <jackson@ximian.com>
24843
24844         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
24845         entire image buffer. Just clear the clipping rectangle.
24846
24847 2005-04-29  Jackson Harper  <jackson@ximian.com>
24848
24849         * ThemeWin32Classic.cs: Don't draw list view items that are
24850         outside the clipping rectangle.
24851
24852 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
24853
24854         * ListBox.cs: added horizontal item scroll
24855
24856 2005-04-29  Jackson Harper  <jackson@ximian.com>
24857
24858         * ThemeWin32Classic.cs: Remove some old debug code that was
24859         causing flicker with the new double buffering code.
24860
24861 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
24862
24863         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
24864         behave like combobox and comboboxlist (still not sure if this is
24865         correct though).
24866
24867 2005-04-28  Jackson Harper  <jackson@ximian.com>
24868
24869         * ThemeWin32Classic.cs: Don't fill the middle of progress
24870         bars. This fills areas outside of the clip bounds that don't need
24871         to be filled.
24872
24873 2005-04-28  Jackson Harper  <jackson@ximian.com>
24874
24875         * Control.cs: Don't expose functionality to touch the image buffers.
24876         * ProgressBar.cs:
24877         * ListView.cs: We do not need to (and no longer can) manipulate
24878         the image buffers directly. All of this is handled by Control.
24879
24880 2005-04-28  Peter Bartok  <pbartok@novell.com>
24881
24882         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
24883           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
24884           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
24885
24886 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24887
24888         * Combobox:
24889                 - Adjust control's height for non-simple comboboxes (bug fix)
24890                 - Remove dead code
24891         * MenuAPI.cs: remove unused var
24892         * ScrollBar.cs: remove unsed var
24893                  
24894         * ListBox.cs: unselect items when clearing
24895
24896 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24897
24898         * ListControl.cs: honors OnPositionChanged and default Selected Item
24899         * ListBox.cs: unselect items when clearing
24900
24901 2005-04-27  Jackson Harper  <jackson@ximian.com>
24902
24903         * X11Keyboard.cs: Initialize a default keyboard and give a warning
24904         if a "correct" keyboard is not found. This will make us not crash,
24905         but might give some users bad keyboard layouts...seems to be the
24906         same thing rewind does.
24907
24908 2005-04-27  Jackson Harper  <jackson@ximian.com>
24909
24910         * BindingManagerBase.cs: Attach the current/position changed
24911         handlers to their respective events.
24912
24913 2005-04-27  Jackson Harper  <jackson@ximian.com>
24914
24915         * Control.cs: Make sure that the first WM_PAINT does a full draw,
24916         not just a blit.
24917         * ThemeWin32Classic.cs: Don't fill the background for picture
24918         boxes. This could overright user drawing.
24919         * ComboBox.cs: Just fill the clipping rect not the entire client
24920         rect when drawing the background. This prevents pieces of the
24921         image buffer from getting overwritten and is theoretically faster.
24922
24923 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
24924
24925         * ComboBox.cs: Databinding support fixes, fire missing events
24926         * ListControl.cs: implement missing methods and properties, fixes
24927         * ThemeWin32Classic.cs: Databiding support on Drawing
24928         * CheckedListBox.cs: Databinding support fixes, fire missing events
24929         * ListBox.cs: Databinding support fixes, fire missing events
24930         
24931 2005-04-25  Peter Bartok  <pbartok@novell.com>
24932
24933         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
24934
24935 2005-04-25  Jackson Harper  <jackson@ximian.com>
24936
24937         * TreeView.cs: Use the horizontal scrollbars height not width when
24938         determining how much of the client area is available.
24939
24940 2005-04-25  Jackson Harper  <jackson@ximian.com>
24941
24942         * Control.cs: Double buffering is handled differently now. As per
24943         the spec, the extra buffer is created in the WM_PAINT message and
24944         passed down to the control's drawing code.
24945         * GroupBox.cs:
24946         * Label.cs:
24947         * CheckBox.cs:
24948         * ProgressBar.cs:
24949         * RadioButton.cs:
24950         * ColorDialog.cs:
24951         * ComboBox.cs:
24952         * PropertyGridView.cs:
24953         * UpDownBase.cs:
24954         * MessageBox.cs:
24955         * MenuAPI.cs:
24956         * ListView.cs:
24957         * ButtonBase.cs:
24958         * SizeGrip.cs:
24959         * ScrollBar.cs:
24960         * ListBox.cs:
24961         * TrackBar.cs:
24962         * ToolBar.cs:
24963         * PictureBox.cs:
24964         * DateTimePicker.cs:
24965         * StatusBar.cs:
24966         * TreeView.cs: Update to new double buffering system.
24967         * MonthCalendar.cs: Uncomment block, as Capture is now
24968         working. Update to new double buffering
24969         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
24970         * PaintEventArgs.cs: New internal method allows us to set the
24971         graphics object. This is used for double buffering.
24972         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
24973         rectangle. The internal paint_area var has been removed from
24974         StatusBar. The clipping rect should be used instead.
24975         * Theme.cs: Give the PictureBox drawing method a clipping rect.
24976         * TabPage.cs: The RefreshTabs method was removed, so just call the
24977         tab controls Refresh method now.
24978         * TabControl.cs: Update to new double buffering. Make sure the
24979         handle is created before sizing the tab pages, otherwise we will
24980         get stuck in a loop.
24981
24982 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
24983
24984         * LinkLabel.cs: Fix typo, bug #74719; patch
24985           from Borja Sanchez Zamorano
24986
24987 2005-04-22  Jackson Harper  <jackson@ximian.com>
24988
24989         * TreeNode.cs: Implement Handle stuff.
24990         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
24991
24992 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
24993
24994         * DataGridTextBoxColumn.cs: call base constructors, fixes
24995         * GridColumnStylesCollection.cs: missing events, methods, and functionality
24996         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
24997         * DataGridTableStyle.cs: implements create default column styles
24998         * DataGridBoolColumn.cs: which types can handle
24999         * DataGrid.cs: missing methods, fixes, new functionality
25000         * DataGridColumnStyle.cs: fixes
25001
25002 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
25003         * FolderBrowserDialog.cs:
25004         - Use a thread to fill the TreeView
25005         - Adjusted some sizes
25006
25007 2005-04-19  Peter Bartok  <pbartok@novell.com>
25008
25009         * LinkLabel.cs: (Re-)create the pieces when setting the Text
25010           property. Fixes #74360.
25011
25012 2005-04-19  Jackson Harper  <jackson@ximian.com>
25013
25014         * XEventQueue.cs: Lock when getting the lockqueue size.
25015         * PictureBox.cs: Call base OnPaint
25016         
25017 2005-04-19  Peter Bartok  <pbartok@novell.com>
25018
25019         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
25020           messages were no longer being processed (this broke BeginInvoke)
25021
25022           
25023 2005-04-18  Jackson Harper  <jackson@ximian.com>
25024
25025         * TreeView.cs: buglet that caused node images to get drawn
25026         regardless of whether or not they were in the clipping rectangle.
25027
25028 2005-04-18  Jackson Harper  <jackson@ximian.com>
25029
25030         * CurrencyManager.cs: There are four rules for GetItemProperties:
25031         - If the type is an array use the element type of the array
25032         - If the type is a typed list, use the type
25033         - If the list contains an Item property that is not an object, use
25034         that property
25035         - use the first element of the list if there are any elements in
25036         the list.
25037         
25038 2005-04-17  Jackson Harper  <jackson@ximian.oom>
25039
25040         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
25041         click. This handles offsets for scrolling properly and reduces
25042         memory. Also fixed GetNode to not offset now that TopNode works
25043         properly.
25044         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
25045         
25046 2005-04-17  Jackson Harper  <jackson@ximian.com>
25047
25048         * CursorConverter.cs: Initial implementation.
25049
25050 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
25051
25052         * ListControl.cs: work towards complex data binding support on ListControl
25053         * CurrencyManager.cs: work towards complex data binding support on ListControl
25054         * ListBox.cs: work towards complex data binding support on ListControl
25055
25056
25057 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
25058
25059         * GridTableStylesCollection.cs: fixes name and constructor
25060         * DataGridTableStyle.cs: fixes
25061         * DataGridBoolColumn.cs: fixes names and constructors
25062         * DataGrid.cs: define methods and properties. Some init implementations
25063         * DataGridCell.cs: define methods and properties. Some init implementations
25064         * GridTablesFactory.cs: Define methods and properties
25065
25066 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
25067
25068         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
25069         graphics port changes.  We still want the coordinates in global screen
25070         coordinates.
25071
25072 2005-04-14  Jackson Harper  <jackson@ximian.com>
25073
25074         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
25075         check plus minus or checkbox clicks unless those features are enabled.
25076
25077 2005-04-14  Jackson Harper  <jackson@ximian.com>
25078
25079         * TreeView.cs: Add methods for setting the top and bottom visible
25080         nodes. TreeNode::EnsureVisible uses these methods.
25081         * TreeNode.cs: Implement EnsureVisible
25082
25083 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
25084
25085         * Form.cs: Pospone menu assignation if the window has not been created yet
25086         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
25087         size and position
25088
25089 2005-04-12  Jackson Harper  <jackson@ximian.com>
25090
25091         * TreeView.cs: Set the TopNode properly when scrolling
25092         occurs. This has the added benifit of reducing the amount of
25093         walking that needs to be done when drawing. Also removed an old
25094         misleading TODO.
25095         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
25096         
25097 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
25098
25099         * Timer.cs: fixes interval setting when the timer is already enabled
25100         
25101 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
25102
25103         * FolderBrowserDialog.cs: First approach
25104
25105 2005-04-09  Peter Bartok  <pbartok@novell.com>
25106
25107         * FolderBrowserDialog: Added
25108
25109 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
25110
25111         * LinkLabel.cs: move drawing code into the theme
25112         * ThemeWin32Classic.cs: drawing code and painting background bugfix
25113         * Theme.cs: define DrawLinkLabel method
25114
25115 2005-04-05  Jackson Harper  <jackson@ximian.com>
25116
25117         * BindingContext.cs: Use weak references so these bad actors don't
25118         stay alive longer then they need to.
25119
25120 2005-04-05  Jackson Harper  <jackson@ximian.com>
25121
25122         * ListControl.cs: Basic implementation of complex databinding.
25123         * ComboBox.cs:
25124         * ListBox.cs: Add calls to ListControl databinding methods.
25125
25126 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
25127
25128         * FileDialog.cs:
25129           - Don't change PopupButtonState to Normal when the
25130             PopupButton gets pressed several times.
25131           - Renamed ButtonPanel to PopupButtonPanel
25132
25133 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
25134
25135         * ColorDialog.cs: Use cached objects instead of creating them
25136         * LinkLabel.cs: Use cached objects instead of creating them
25137         * Splitter.cs: Use cached objects instead of creating them
25138         * FontDialog.cs: Use cached objects instead of creating them
25139         * PropertyGridView.cs: Use cached objects instead of creating them
25140         * MessageBox.cs: Use cached objects instead of creating them
25141         * FileDialog.cs: Use cached objects instead of creating them
25142         * ThemeWin32Classic.cs: Use cached objects instead of creating them
25143         * TreeView.cs: Use cached objects instead of creating them
25144         
25145 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
25146
25147         * Control.cs: use Equals to compare the font since no == op
25148         * ScrollBar.cs: use Equals to compare the font since no == op
25149
25150 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
25151
25152         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
25153
25154 2005-04-01  Jackson Harper  <jackson@ximian.com>
25155
25156         * Binding.cs: Implement IsBinding.
25157         * BindingManagerBase.cs:
25158         * PropertyManager.cs:
25159         * CurrencyManager.cs: Add IsSuspended property.
25160
25161 2005-04-01  Jackson Harper  <jackson@ximian.com>
25162
25163         * Binding.cs: Had some IsAssignableFrom calls backwards.
25164
25165 2005-04-01  Jackson Harper  <jackson@ximian.com>
25166
25167         * Binding.cs: Handle null data members when pulling data.
25168         * PropertyManager.cs: Handle the data member being a property that
25169         does not exist.
25170
25171 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
25172
25173         * DataGridTextBoxColumn.cs: fixes signature
25174         * DataGrid.cs: calls right constructor
25175
25176 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
25177
25178         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
25179         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
25180         * GridTableStylesCollection.cs: implements GridTableStylesCollection
25181         * DataGridTableStyle.cs: implements DataGridTableStyle
25182         * DataGridBoolColumn.cs: implements DataGridBoolColumn
25183         * DataGridTextBox.cs: implements DataGridTextBox
25184         * DataGridColumnStyle.cs: implements DataGridColumnStyle
25185
25186 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
25187
25188         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
25189
25190 2005-03-29  Peter Bartok  <pbartok@novell.com>
25191
25192         * Application.cs:
25193           - Properly implemented CompanyName property
25194           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
25195             returns a path that includes CompanyName, ProductName and
25196             Version (fixes bug #70330)
25197
25198 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
25199
25200         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
25201           fixes bug #72588.
25202
25203 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
25204
25205         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
25206         
25207           - Added ReadOnly CheckBox
25208           - Further refactoring: moved some code from Open-/SaveFileDialog
25209             to FileDialog
25210
25211 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
25212
25213         * OpenFileDialog.cs: Fixed CheckFileExists
25214         * FileDialog.cs:
25215           Moved FileView and DirComboBox outside FileDialog class.
25216           They can now be used outside FileDialog
25217
25218 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
25219
25220         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
25221         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
25222
25223 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
25224
25225         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
25226           - Added missing CreatePrompt property in SaveDialog
25227           - Overall SaveDialog handling should be better now
25228           - Added non standard ShowHiddenFiles property
25229           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
25230           - Added InitialDirectory and RestoreDirectory support
25231
25232 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
25233
25234         * FileDialog.cs: Made dirComboBox usable
25235
25236 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
25237
25238         * FileDialog.cs: Added Filter support (case sensitiv)
25239
25240 2005-03-24  Jackson Harper  <jackson@ximian.com>
25241
25242         * TabControl.cs: Need a couple more pixels for the lines.
25243
25244 2005-03-23  Jackson Harper  <jackson@ximian.com>
25245
25246         * TabControl.cs: Give the tab page focus when it is selected.
25247
25248 2005-03-23  Jackson Harper  <jackson@ximian.com>
25249
25250         * TabControl.cs: Account for the drawing of tabs borders when
25251         invalidating. If the slider was clicked dont do click detection on
25252         the tabs.
25253
25254 2005-03-23  Jackson Harper  <jackson@ximian.com>
25255
25256         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
25257
25258 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
25259
25260         * CategoryGridEntry.cs: Added
25261         * GridItem.cs: Added helper properties
25262         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
25263         * GridEntry.cs: Updated code for collection
25264         * PropertyGrid.cs: Cleaned up some formatting
25265         * PropertyGridView.cs: Added drop down functionality for enums.
25266         * GridItemCollection.cs: Added enumerator logic
25267         * PropertyGridEntry.cs: Added
25268
25269 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
25270
25271         * FileDialog.cs:
25272           - Removed unnecessary commented code
25273           - Fixed handling for entering the filename manually in the combobox
25274
25275 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
25276
25277         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
25278
25279 2005-03-18  Peter Bartok  <pbartok@novell.com>
25280
25281         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
25282           them being touching the border
25283
25284 2005-03-18  Peter Bartok  <pbartok@novell.com>
25285
25286         * TextControl.cs: Quick hack to center text better
25287
25288 2005-03-18  Peter Bartok  <pbartok@novell.com>
25289
25290         * ControlPaint.cs:
25291           - Don't throw NotImplemented exceptions, just print a notice once
25292             instead (requested by Miguel). This makes running existing SWF
25293             apps a bit easier
25294         * Control.cs:
25295           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
25296           - Added context menu trigger on right click
25297         * Panel.cs: Trigger invalidate on resize
25298         * StatusBar.cs:
25299           - Removed old double-buffer drawing
25300           - Added ResizeRedraw style to force proper update of statusbar
25301         * ListView.cs:
25302           - Removed debug output
25303         * ThemeWin32Classic.cs:
25304           - Fixed drawing of status bar, now draws Text property if there
25305             are no defined panels
25306
25307 2005-03-18  Jackson Harper  <jackson@ximian.com>
25308
25309         * ImageList.cs: When the image stream is set pull all the images
25310         from it.
25311         * ImageListStreamer.cs: Implement reading image list streams.
25312
25313 2005-03-18  Peter Bartok  <pbartok@novell.com>
25314
25315         * ThemeWin32Classic.cs (DrawPictureBox):
25316           - Fixed calculations for centered drawing
25317           - Fixed drawing for normal mode, not scaling the image on normal
25318
25319 2005-03-18  Peter Bartok  <pbartok@novell.com>
25320
25321         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
25322           textbox
25323         * FileDialog.cs:
25324           - Made Open/Save button the accept button for FileDialog
25325           - Tied the cancel button to the IButtonControl cancel button
25326           - Save/Open now properly builds the pathname
25327           - Now handles user-entered text
25328           - Preventing crash on right-click if no item is selected
25329           - Fixed Text property, now uses contents of textbox
25330           - Fixed SelectedText property, now just returns the text part that
25331             is selected in the text box
25332
25333 2005-03-18  Jackson Harper  <jackson@ximian.com>
25334
25335         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
25336         rect, make sure to de-adjust the interior rect after drawing the
25337         tab text.
25338
25339 2005-03-18  Peter Bartok  <pbartok@novell.com>
25340
25341         * MenuAPI.cs: Remove menu *before* executing selected action to
25342           prevent the menu from 'hanging around'
25343           
25344 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
25345
25346         * XplatUIOSX.cs: Implemented WorkingArea property
25347
25348 2005-03-17  Peter Bartok  <pbartok@novell.com>
25349
25350         * XplatUIX11.cs: Fixed menu coord calculations
25351         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
25352           for calculating offsets
25353
25354 2005-03-17  Peter Bartok  <pbartok@novell.com>
25355
25356         * Hwnd.cs: Do not consider menu presence for default client
25357           rectangle location/size
25358         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
25359           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
25360           translation functions
25361         * FileDialog.cs: Fixed (what I presume is a) typo
25362
25363 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
25364
25365         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
25366           X access (avoids X-Async errors)
25367
25368 2005-03-16  Jackson Harper  <jackson@ximian.com>
25369
25370         * TabControl.cs: Raise the SelectedIndexChanged event.
25371
25372 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
25373
25374         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
25375           - Removed vertical ToolBar and replaced it with a custom panel
25376             (desktop and home button already work)
25377           - Added Help button (some controls get resized or relocated then)
25378           - Draw correct text depending on Open or Save.
25379           - Fixed some typos...
25380
25381 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
25382
25383         * ScrollBar.cs:
25384           - Only change Maximum and Minimum when need it (bug fix)
25385
25386 2005-03-15  Peter Bartok  <pbartok@novell.com>
25387
25388         * Form.cs: Use Handle for icon, to trigger creation if
25389           the window does not yet exist
25390         * Control.cs:
25391           - CanSelect: Slight performance improvement
25392           - Focus(): Preventing possible recursion
25393           - Invalidate(): Removed ControlStyle based clear flag setting
25394           - WM_PAINT: fixed logic for calling OnPaintBackground
25395           - WM_ERASEBKGND: Fixed logic, added call to new driver method
25396             EraseWindowBackground if the control doesn't paint background
25397         * XplatUIWin32.cs:
25398           - Moved EraseWindowBackground() method to internal methods
25399           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
25400             is sent via SendMessage on BeginPaint call on Win32
25401         * XplatUIX11.cs:
25402           - Added EraseWindowBackground() method
25403           - No longer sends WM_ERASEBKGND on .Expose, but on call to
25404             PaintEventStart, which more closely matches Win32 behaviour
25405           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
25406           - Fixed SetFocus() to properly deal with client and whole windows
25407         * Hwnd.cs: Added ErasePending property
25408         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
25409         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
25410
25411 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
25412
25413         * XplatUIOSX.cs:
25414           - Fix hard loop when timers exist.
25415           - Fix bugs with middle and right click for 3 button mice.
25416
25417 2005-03-11  Peter Bartok  <pbartok@novell.com>
25418
25419         * XplatUIX11.cs:
25420           - get_WorkingArea: Need to call X directly, GetWindowPos only
25421             returns cached data now
25422           - Added sanity check to GetWindowPos hwnd usage
25423
25424 2005-03-11  Jackson Harper  <jackson@ximian.com>
25425
25426         * BindingManagerBase.cs: This method isn't used anymore as
25427         PullData now updates the data in the control.
25428
25429 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
25430
25431         * Form.cs: fixes menu drawing on X11
25432         * MenuAPI.cs:  fixes menu drawing on X11
25433
25434 2005-03-11  Peter Bartok  <pbartok@novell.com>
25435
25436         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
25437           from Jonathan Gilbert; should fix bug #73606
25438         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
25439           in Screen coordinates. Thanks, Jordi.
25440         * Form.cs: Added missing attribute
25441
25442 2005-03-11  Peter Bartok  <pbartok@novell.com>
25443
25444         * Form.cs:
25445           - Rudimentary Mdi support
25446           - Removed outdated FormParent code
25447           - Implemented lots of missing properties and methods, still missing
25448             transparency support
25449           - Added missing attributes
25450           - Implemented support for MaximumBounds
25451           - Added firing of various events
25452         * XplatUI.cs: Added SetIcon() method
25453         * XplatUIDriver.cs: Added SetIcon() abstract
25454         * XplatUIOSX.cs: Stubbed out SetIcon() method
25455         * XplatUIX11.cs:
25456           - Implemented SetIcon() support
25457           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
25458           - Switched to unix line endings
25459         * XplatUIWin32.cs:
25460           - Made POINT internal so for can access it as part of MINMAX
25461           - Implemented SetIcon() support
25462           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
25463             native Mdi support again, might have to go managed)
25464         * Control.cs: Now fires the StyleChanged event
25465         * MdiClient.cs: Added; still mostly empty
25466
25467 2005-03-10  Peter Bartok  <pbartok@novell.com>
25468
25469         * SaveFileDialog.cs: Added emtpy file
25470
25471 2005-03-08  Peter Bartok  <pbartok@novell.com>
25472
25473         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
25474           in turn triggers OnCreateContro) when creating a handle for the
25475           first time.
25476         * TextControl.cs: Fixed endless loop in certain cases when
25477           replacing the current selection
25478
25479 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
25480
25481         * ScrollBar.cs:
25482           - Honors NewValue changes in Scroll events allowing apps to change it
25483           - Adds First and Last Scroll events
25484           - Fixes Thumb events
25485
25486 2005-03-07  Peter Bartok  <pbartok@novell.com>
25487
25488         * Hwnd.cs: Added DefaultClientRectangle property
25489         * XplatUI.cs: Now using the X11 driver Where() method, which provides
25490           more detailed debug information
25491         * XplatUIX11.cs:
25492           - Fixed size-change feedback loop, where we would pull an old size
25493             off the queue and mistakenly change our window's size to an
25494             earlier value
25495           - Now compressing ConfigureNotify events, to reduce looping and
25496             redraw issues
25497         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
25498           is called
25499
25500 2005-03-07  Jackson Harper  <jackson@ximian.com>
25501
25502         * Binding.cs: Push data pushes from data -> property. Check if the
25503         property is readonly when attempting to set it.
25504
25505 2005-03-07  Jackson Harper  <jackson@ximian.com>
25506
25507         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
25508         instead of IsSubclassOf. Pulling data now sets the value on the
25509         control.
25510         * PropertyManager.cs:
25511         * CurrencyManager.cs: Just need to pull data when updating now,
25512         because PullData will set the value on the control.
25513
25514 2005-03-04  Jackson Harper  <jackson@ximian.com>
25515
25516         * Binding.cs: Implement data type parsing and converting on pulled
25517         data. TODO: Are there more ways the data can be converted?
25518
25519 2005-03-04  Jackson Harper  <jackson@ximian.com>
25520
25521         * Binding.cs: Support <Property>IsNull checks. Also bind to the
25522         controls Validating method so we can repull the data when the
25523         control loses focus.
25524
25525 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
25526
25527         * ColumnHeader.cs:
25528           - Fixes null string format
25529           
25530         * ListView.cs:
25531           - Adds enum type checks
25532           - Fixes redrawing and recalc need after changing some properties
25533           - Fixes on focus_item set after the event
25534           - Fixes adding columns after the control has been created
25535           
25536         * ThemeWin32Classic.cs:
25537           - Fixes CheckBox focus rectangle
25538           - Fixes ColumnHeader drawing
25539
25540
25541 2005-03-03  Jackson Harper  <jackson@ximian.com>
25542
25543         * Binding.cs: Bind to <Property>Changed events so we can detect
25544         when properties are changed and update the data.
25545
25546 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
25547
25548         * ImageList.cs:
25549           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
25550           - Fixes ImageList constructor with ImageList container
25551           - Fixes image scaling (wrong parameters at DrawImage)
25552
25553 2005-02-02  Jackson Harper  <jackson@ximian.com>
25554
25555         * Binding.cs: Make property searches case-insensitive. Eliminate
25556         some duplicated code.
25557
25558 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
25559
25560         * ComboBox.cs:
25561                 - Handle focus event
25562                 - Fix scrollbar events
25563                 - Discard highlighted item if remove it
25564                 - Fixes SelectedItem with strings
25565
25566 2005-03-01  Peter Bartok  <pbartok@novell.com>
25567
25568         * Control.cs:
25569           - Fixed Visible property, now follows (once again) parent chain
25570             to return false if any control in the chain is visible=false
25571           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
25572           - Fixed several places where is_visible instead of Visible was used
25573           - Implemented FIXME related to focus selection when setting focused
25574             control to be invisible
25575
25576         * XplatUIWin32.cs: Now using proper method to find out if window is
25577           visible. Thanks to Jordi for pointing it out
25578
25579 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
25580
25581         * ComboBox.cs: show/hide scrollbar instead of creating it
25582
25583 2005-02-27  Jackson Harper  <jackson@ximian.com>
25584
25585         * CurrencyManager.cs: Add PositionChanged stuff.
25586
25587 2005-02-27  Peter Bartok  <pbartok@novell.com>
25588
25589         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
25590         * XplatUIOSX.cs: Added GetMenuOrigin() stub
25591         * XplatUIWin32.cs: Implemented GetMenuOrigin()
25592         * XplatUIX11.cs:
25593           - Implemented GetMenuDC()
25594           - Implemented GetMenuOrigin()
25595           - Implemented ReleaseMenuDC()
25596           - Implemented generation of WM_NCPAINT message
25597           - Implemented generation and handling of WM_NCCALCSIZE message
25598         * Form.cs: Added debug helper message for Jordi's menu work
25599         * Hwnd.cs:
25600           - Modified ClientRect property; added setter, fixed getter to handle
25601             setting of ClientRect
25602           - Added MenuOrigin property
25603
25604 2005-02-26  Peter Bartok  <pbartok@novell.com>
25605
25606         * XplatUIX11.cs:
25607           - Destroys the caret if a window that's being destroyed contains it
25608           - Ignores expose events coming from the X11 queue for windows that
25609             already are destroyed
25610           - Now uses the proper variable for handling DestroyNotify, before we
25611             marked the wrong window as destroyed
25612           - Improved/added some debug output
25613
25614 2005-02-26  Peter Bartok  <pbartok@novell.com>
25615
25616         * X11Keyboard.cs: Fixes to work on 64bit systems
25617
25618 2005-02-26  Peter Bartok  <pbartok@novell.com>
25619
25620         * Control.cs:
25621           - Now calling OnHandleDestroyed from DestroyHandle()
25622             instead of Dispose()
25623           - Removed bogus call to controls.Remove() from DestroyHandle()
25624
25625 2005-02-26  Peter Bartok  <pbartok@novell.com>
25626
25627         * Control.cs: Properly destroy child windows when our handle is
25628           destroyed
25629
25630 2005-02-25  Peter Bartok  <pbartok@novell.com>
25631
25632         * XplatUI.cs:
25633           - Added 'DriverDebug' define to allow tracing XplatUI API calls
25634           - Alphabetized Static Methods and Subclasses
25635
25636         * XplatUIX11.cs:
25637           - Added XException class to allow custom handling of X11 exceptions
25638           - Created custom X11 error handler, tied into XException class
25639           - Added support for MONO_XEXCEPTIONS env var to allow the user
25640             to either throw an exception on X errors or continue running
25641             after displaying the error
25642           - Added handling of DestroyNotify message
25643           - Added handler for CreateNotify message (still disabled)
25644           - Improved (tried to at least) Where method to provide file and lineno
25645         * X11Structs.cs:
25646           - Added XErrorHandler delegate
25647           - Added XRequest enumeration (to suppor translation of errors)
25648
25649 2005-02-25  Jackson Harper  <jackson@ximian.com>
25650
25651         * PropertyManager.cs: Implement editing features
25652         * CurrencyManager.cs:
25653         * Binding.cs: First attempt at UpdateIsBinding
25654         * BindingManagerBase.cs: Call UpdateIsBinding before
25655         pushing/pulling data.
25656
25657 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
25658
25659         * MenuAPI.cs: Respect disabled items
25660         * ThemeWin32Classic.cs
25661                 - Caches ImageAttributes creation for DrawImageDisabled
25662                 - Fixes vertical menu line drawing
25663                 - Draws disabled arrows in disable menu items
25664
25665 2005-02-24  Peter Bartok  <pbartok@novell.com>
25666
25667         * Hwnd.cs:
25668           - Added UserData property to allow associating arbitrary objects
25669             with the handle
25670           - Fixed leak; now removing Hwnd references from static windows array
25671         * XplatUIWin32.cs:
25672           - Fixed Graphics leak in PaintEventEnd
25673           - Removed usage of HandleData, switched over to Hwnd class
25674         * HandleData.cs: Removed, obsoleted by Hwnd.cs
25675
25676 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25677
25678         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
25679         * ScrollBar.cs: Fixes bug
25680         * TrackBar.cs: removes death code, clipping, mimize refreshes,
25681          keyboard navigation enhancements
25682
25683 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25684
25685         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
25686         * GroupBox.cs: Add control styles
25687         * Label.cs: Add control styles
25688         * UpDownBase.cs: Add control styles
25689         * ListBox.cs: Add control styles
25690         * XplatUIWin32.cs: Fixes wrong parameter order
25691
25692
25693 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
25694
25695         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
25696
25697 2005-02-23  Jackson Harper  <jackson@ximian.com>
25698
25699         * PropertyManager.cs: Implement property binding. This doesn't
25700         seem to work yet though as (I think) there are some bugs in
25701         System.ComponentModel.PropertyDescriptor.
25702         * BindingContext.cs: Use new PropertyManager constructor.
25703
25704 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
25705
25706         * ProgressBar.cs: use clip region in ProgressBar
25707         * ThemeWin32Classic.cs: use clip region in ProgressBar
25708
25709 2004-02-22  Jackson Harper  <jackson@ximian.com>
25710
25711         * BindingsCollection.cs: Remove some debug code.
25712
25713 2005-02-22  Jackson Harper  <jackson@ximian.com>
25714
25715         * BindingContext.cs:
25716         * ControlBindingsCollection.cs:
25717         * CurrencyManager.cs:
25718         * Binding.cs:
25719         * BindingManagerBase.cs: Initial implementation
25720         * BindingsCollection.cs: Add an internal contains method that the
25721         BindingManagerBase uses to ensure bindings aren't added twice to
25722         the collection.
25723         * PropertyManager.cs: Stubbed out.
25724         * Control.cs:
25725         * ContainerControl.cs: Hook up databinding
25726         
25727 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
25728
25729         * XplatUIOSX.cs:
25730           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
25731           Fixed Invalidate/Update chain.
25732           Fixed tons of other minor bugs (this is almost a complete rewrite).
25733
25734 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
25735
25736         * ComboBox.cs: do subcontrol creation when the control is created
25737
25738 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25739
25740         * Label.cs: fixes image drawing (image and imagelist)
25741         * ThemeWin32Classic.cs: cache brushes
25742         
25743 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25744
25745         * Form.cs: Move menu drawing code to Theme class
25746         * ComboBox.cs: Move ComboBox drawing code to Theme class
25747         * MenuItem.cs: Move menu drawing code to Theme class
25748         * MenuAPI.cs: Move menu drawing code to Theme class
25749         * ThemeWin32Classic.cs: New methods
25750         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
25751         * ListBox.cs: Move Listbox drawing code to Theme class
25752         * Theme.cs: New methods
25753
25754 2005-02-20  Peter Bartok  <pbartok@novell.com>
25755
25756         * Control.cs:
25757           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
25758             only process mnemonics on those)
25759           - Fixed event sequence for key handling; first calling
25760             ProcessKeyEventArgs now
25761         * TextBoxBase.cs:
25762           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
25763             for processing non-character keys
25764           - Fixed WM_CHAR to generate proper event sequence before processing
25765         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
25766           generation
25767
25768 2005-02-19  Peter Bartok  <pbartok@novell.com>
25769
25770         * UserControl.cs: Added TextChanged event; added attributes
25771         * SizeGrip.cs: Implemented resizing and optional display of grip
25772         * Form.cs: Fixed attribute
25773         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25774           Changed meaning of ScrollWindow bool argument; instead of the
25775           clear attribute (which will be true usually anyway), it gives the
25776           option of moving child controls as well.
25777         * XplatUIX11.cs:
25778           - Changed to match new ScrollWindow argument
25779           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
25780             now handles the implicit parent window a WM puts around us
25781         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
25782           to work)
25783         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
25784         * TreeView.cs: Adjusted to new ScrollWindow arguments
25785
25786 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25787
25788         * Form.cs: Menu integration with non-client area
25789         * MenuItem.cs: Menu integration with non-client area
25790         * MenuAPI.cs: Menu integration with non-client area
25791
25792 2005-02-18  Peter Bartok  <pbartok@novell.com>
25793
25794         * MethodInvoker.cs: Added
25795         * MdiLayout.cs: Added
25796         * SendKeys.cs: Started implementation
25797         * ErrorIconAlignment.cs: Added
25798
25799 2005-02-18  Peter Bartok  <pbartok@novell.com>
25800
25801         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
25802         * Form.cs: Added handling for Menu-related Non-client messages
25803
25804 2005-02-17  Peter Bartok  <pbartok@novell.com>
25805
25806         * UpDownBase.cs: Fixed typo, compilation errors
25807         * DomainUpDown.cs: Fixed attribute value
25808
25809 2005-02-16  Miguel de Icaza  <miguel@novell.com>
25810
25811         * UpDownBase.cs: Attach entry events.
25812         Propagate events.
25813         Add ForeColor property, Focused, InterceptArrowKeys (interception
25814         does not work yet).
25815
25816 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
25817
25818         * Form.cs:
25819                 - Redraw non client are on Setmenu
25820                 - Calc proper menu starting point
25821
25822 2005-02-17  Peter Bartok  <pbartok@novell.com>
25823
25824         * Application.cs: Fixed message_filter check
25825
25826 2005-02-17  Peter Bartok  <pbartok@novell.com>
25827
25828         * Application.cs: Now calls registered message filters
25829         * DockStyle.cs: Fixed attribute
25830         * Form.cs: Fixed attribute
25831         * Menu.cs: Fixed attribute
25832         * ToolTip.cs: Fixed attribute
25833         * TreeNode.cs: Added missing attributes and arranged in regions
25834         * PropertyGrid.cs: Fixed signatures
25835         * TreeNodeCollection.cs: Added attributes
25836         * Splitter.cs: Added missing attributes; arranged into regions
25837         * TabPage.cs: Added missing attributes; arranged into regions
25838         * TextBoxBase.cs: Added missing attributes
25839         * TextBox.cs: Added missing attributes
25840         * ArrangeDirection.cs: Added missing attributes
25841         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
25842         * ToolBarButton.cs: Fixed attributes
25843         * AnchorStyles.cs: Fixed attribute
25844         * TrackBar.cs: Fixed attributes
25845         * TabControl.cs: Added missing attributes and arranged into regions
25846         * ToolBar.cs: Fixed attribute
25847         * StatusBar.cs: Fixed signature, organized into regions and added
25848           attributes
25849         * StatusBarPanel.cs: Fixed attributes
25850         * ContentsResizedEventArgs.cs: Implemented
25851         * ContentsResizedEventHandler.cs: Implemented
25852         * DateBoldEventArgs.cs: Implemented
25853         * DateBoldEventHandler.cs: Implemented
25854         * UpDownEventArgs.cs: Implemented
25855         * UpDownEventHandler.cs: Implemented
25856         
25857 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
25858
25859         * Form.cs: first Menu NC refactoring
25860         * MenuAPI.cs: first Menu NC refactoring
25861         
25862 2005-02-16  Peter Bartok  <pbartok@novell.com>
25863
25864         * ImeMode.cs: Added missing attributes
25865         * Menu.cs: Fixed attribute
25866         * GroupBox.cs: Fixed attribute
25867         * Label.cs: Fixed attribute
25868         * ColorDialog.cs (RunDialog): Removed TODO attribute
25869         * ComboBox.cs: Fixed attributes
25870         * ListControl.cs: Added missing attributes
25871         * PropertyGrid.cs: Fixed attributes
25872         * Control.cs: Fixed attributes
25873         * ListViewItem.cs: Added TypeConverter attribute
25874         * NotifyIcon.cs: Fixed attributes
25875         * ListView.cs: Fixed attributes
25876         * ButtonBase.cs: Fixed attribute
25877         * ImageList.cs: Added missing attributes
25878         * ContainerControl.cs: Fixed signature
25879         * CheckedListBox.cs: Fixed attribute; added missing attributes
25880         * Panel.cs: Fixed attributes
25881         * PropertyTabChangedEventArgs.cs: Added missing attribute
25882         * PropertyValueChangedEventArgs.cs: Added missing attribute
25883         * Binding.cs: Fixed attribute
25884         * ListViewItemConverter: Implemented ListViewSubItemConverter class
25885         * ListBox.cs: Fixed attribute; added missing attributes;
25886         * ScrollableControl.cs: Added missing attributes
25887         * PictureBox.cs: Added missing attributes; implemented missing property
25888         * DateTimePicker.cs: Added missing attributes
25889         * Theme.cs (ToolWindowCaptionHeight): Fixed type
25890         * MonthCalendar.cs: Fixed attributes
25891         * StatusBarPanel.cs: Added missing attributes
25892         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
25893
25894 2005-02-16  Peter Bartok  <pbartok@novell.com>
25895
25896         * TextBoxBase.cs: The previous method to enforce height yet remember
25897           the requested high was less than ideal, this is an attempt to do
25898           it better.
25899         * Control.cs: Added comment about possible problem
25900         * Copyright: Updated format
25901         * GridItemType.cs: Fixed swapped values
25902
25903 2005-02-15  Jackson Harper  <jackson@ximian.com>
25904
25905         * BaseCollection.cs: Use property so we never access an
25906         uninitialized list. Also initialize the list in the property.
25907
25908 2005-02-15  Peter Bartok  <pbartok@novell.com>
25909
25910         * GroupBox.cs (ProcessMnemonic): Implemented
25911         * Label.cs (ProcessMnemonic): Implemented
25912         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
25913           hotkeys
25914
25915 2005-02-15  Peter Bartok  <pbartok@novell.com>
25916
25917         * RadioButton.cs (ProcessMnemonic): Implemented
25918         * CheckBox.cs (ProcessMnemonic): Implemented
25919         * Control.cs:
25920           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
25921             handling
25922           - Added internal method to allow calling ProcessMnemonic from other
25923             controls
25924         * ContainerControl.cs:
25925           - Started support for handling validation chain handling
25926           - Implemented ProcessMnemonic support
25927           - Added Select() call to Active, to make sure the active control
25928             receives focus
25929         * Form.cs: Setting toplevel flag for Forms (this was lost in the
25930           FormParent rewrite)
25931         * ThemeWin32Classic.cs:
25932           - DrawCheckBox(): Fixed stringformat to show hotkeys
25933           - DrawRadioButton(): Fixed stringformat to show hotkeys
25934         * CommonDialog.cs: Removed WndProc override, not needed
25935
25936 2005-02-14  Peter Bartok  <pbartok@novell.com>
25937
25938         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
25939           missed those in the rewrite
25940
25941 2005-02-14  Miguel de Icaza  <miguel@novell.com>
25942
25943         * NumericUpDown.cs (Increment, ToString): Add.
25944         (DecimalPlaces): implement.
25945         
25946         Add attributes.
25947         
25948         * UpDownBase.cs: Add the designer attributes.
25949
25950 2005-02-13  Peter Bartok  <pbartok@novell.com>
25951
25952         * Panel.cs: Removed border_style, now in Control
25953         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
25954           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
25955
25956 2005-02-13  Peter Bartok  <pbartok@novell.com>
25957
25958         * MouseButtons.cs: Added missing attributes
25959         * XplatUIStructs.cs: Added enumeration for title styles
25960         * LeftRightAlignment.cs: Added missing attributes
25961         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
25962           it compatible with Graphics.FromHwnd()
25963         * SelectedGridItemChangedEventArgs.cs: Fixed property type
25964         * Keys.cs: Added missing attributes
25965         * SelectionRange.cs: Added missing attributes
25966         * SelectionRangeConverter.cs: Added
25967         * XplatUI.cs:
25968           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
25969             ReleaseMenuDC methods
25970           - Renamed ReleaseWindow to UngrabWindow
25971           - Added proper startup notice to allow version identification
25972         * Form.cs:
25973           - Added missing attributes
25974           - Removed FormParent concept
25975         * Label.cs: Removed border_style field, now in Control
25976         * RadioButton.cs: Now properly selects RadioButton when focus is
25977           received
25978         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
25979         * Control.cs:
25980           - Added missing attributes
25981           - Added borderstyle handling
25982           - Removed FormParent concept support
25983           - Fixed calls to XplatUI to match changed APIs
25984           - Fixed bug that would case us to use disposed Graphics objects
25985           - Removed unneeded internal methods
25986           - PerformLayout(): Fixed to handle DockStyle.Fill properly
25987           - SelectNextControl(): Fixed to properly check common parents
25988         * TextBoxBase.cs: Removed border_style field (now in Control)
25989         * MessageBox.cs:
25990           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
25991             fixed calculations for form size
25992           - Added support for localized strings and icons
25993           - Improved form size calculations, added border
25994         * ListView.cs: Removed border_style field (now in Control)
25995         * X11Structs.cs: Moved several structs from X11 driver here
25996         * X11Keyboard.cs: Changed debug message
25997         * Application.cs: Removed FormParent concept support
25998         * CommonDialog.cs:
25999           - Resetting end_modal flag
26000           - Removed FormParent concept support
26001         * NativeWindow.cs: Removed FormParent concept support
26002         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
26003           Client area and Non-Client whole window to allow support for WM_NC
26004           messages
26005         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
26006           prevent using it until it supports Hwnd as per Geoff Norton's request
26007         * ToolBar.cs: Fixed drawing, was not doing proper drawing
26008         * PictureBox.cs: Removed border_style field, now in Control
26009         * XplatUIWin32.cs: Added new driver methods
26010
26011 2005-02-12  Peter Bartok  <pbartok@novell.com>
26012
26013         * OpacityConverter.cs: Implemented
26014         * Hwnd.cs: Internal class to support drivers that need to emulate
26015           client area/non-client area window behaviour
26016
26017 2005-02-11  Peter Bartok  <pbartok@novell.com>
26018
26019         * KeysConverter.cs: Implemented
26020
26021 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
26022
26023         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
26024         * LinkLabel: Added missing attributes
26025         * MainMenu.cs: fixes ToString
26026         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
26027         * ListBox.cs: fixes event position
26028         * TrackBar.cs: adds missing attributes and events
26029         
26030 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
26031
26032         * MenuItem.cs: Use SystemInformation and bug fixes
26033         * MenuAPI.cs: Use SystemInformation and bug fixes
26034
26035 2005-02-09  Jackson Harper  <jackson@ximian.com>
26036
26037         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
26038         their keystate otherwise things like VK_MENU get stuck "on".
26039
26040 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
26041
26042         * ListBox.cs: Fixes AddRange bug
26043         
26044 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
26045
26046         * ProgressBar.cs
26047                 - Add missing attributes
26048                 - Add missing method
26049                 
26050         * CheckedListBox.cs: Added missing attributes
26051                 - Add missing attributes
26052                 - Remove extra method
26053         
26054         * ComboBox.cs: Added missing attributes
26055         * VScrollBar.cs: Added missing attributes
26056         * ScrollBar.cs:  Added missing attributes
26057         * ListBox.cs: Fixes signature, add missing consts
26058         * LinkArea.cs:   Added missing attributes
26059         
26060
26061 2005-02-08  Peter Bartok  <pbartok@novell.com>
26062
26063         * Menu.cs: Added missing attributes
26064         * MainMenu.cs: Added missing attributes
26065         * GroupBox.cs: Added missing attributes
26066         * Label.cs: Added missing attributes
26067         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
26068         * ColorDialog.cs:
26069           - Added Instance and Options properties
26070           - Added missing attributes
26071         * Cursor.cs: Made Serializable
26072         * NotifyIcon: Added missing attributes
26073         * MenuItem.cs: Added missing attributes
26074         * TextBoxBase.cs: Implemented AppendText() and Select() methods
26075         * Panel.cs: Added Missing attributes
26076         * MonthCalendar.cs: Fixed CreateParams
26077
26078 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
26079         
26080         * LinkLabel.cs:
26081                 - Fixes signature
26082                 - Fixes issues with links
26083                 - Adds the class attributes
26084
26085 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
26086         
26087         * ComboBox.cs:
26088                 - Fixes button when no items available in dropdown
26089                 - Fixes repainting problems
26090                 - Adds the class attributes
26091                 
26092 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26093
26094         * XplatUIOSX.cs: Detect the menu bar and title bar height from
26095         the current theme.  Cache these on startup.
26096
26097 2005-02-07  Jackson Harper  <jackson@ximian.com>
26098
26099         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
26100         the scrollbar buttons when they are depressed.
26101
26102 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26103
26104         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
26105         Get the display size from the main displayid.  We currently dont
26106         support multiple display configurations.
26107
26108 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26109
26110         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
26111
26112 2005-02-07  Miguel de Icaza  <miguel@novell.com>
26113
26114         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
26115
26116 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
26117
26118         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
26119
26120 2005-02-04  Jackson Harper  <jackson@ximian.com>
26121
26122         * ThemeWin32Classic.cs: Respect the clipping rect when
26123         drawing. Only fill the intersection of clips and rects so there
26124         isn't a lot of large fills.
26125         * ScrollBar.cs: Pass the correct clipping rect to the theme
26126         engine. Remove some debug code.
26127
26128 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
26129         
26130         * DateTimePicker.cs:
26131                 - Fixed crash on DateTime.Parse, use Constructor instead
26132
26133 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
26134         
26135         * MenuItem.cs:
26136         * MenuAPI.cs:
26137                 - Owner draw support (MeasureItem and DrawItem)
26138
26139 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
26140         
26141         *  Menu.cs:
26142                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
26143                 - Fixes MenuItems.Add range
26144         * MenuItem.cs:
26145                 - MergeMenu and Clone and CloneMenu functions
26146
26147 2005-02-03  Jackson Harper  <jackson@ximian.com>
26148
26149         * ScrollBar.cs: Make abstract
26150         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
26151         is abstract.
26152
26153 2005-02-03  Jackson Harper  <jackson@ximian.com>
26154
26155         * ScrollBar.cs: First part of my scrollbar fixups. This removes
26156         all the unneeded refreshes and uses invalidates with properly
26157         computed rects.
26158
26159 2005-02-03  Peter Bartok  <pbartok@novell.com>
26160
26161         * ComponentModel.cs: Added
26162         * IDataGridEditingService.cs: Added
26163         * Timer.cs: Added missing attributes
26164         * ToolTip.cs: Added missing attributes
26165
26166 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
26167
26168         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
26169
26170 2005-02-03  Peter Bartok  <pbartok@novell.com>
26171
26172         * ListBox.cs: Added missing attributes
26173
26174 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
26175         
26176         * ListBox.cs:
26177                 - Fixes font height after font change
26178                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
26179                 
26180 2005-02-02  Peter Bartok  <pbartok@novell.com>
26181
26182         * HandleData.cs: Introduced static methods to allow class
26183           to be more self-contained and track it's own HandleData objects
26184         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
26185           HandleData to use new static methods
26186
26187 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
26188
26189         * Combobox.cs:
26190                 - Fixes default size and PreferredHeight
26191                 - Missing events
26192                 - ObjectCollection.Insert implementation
26193                 
26194         * ListControl.cs
26195                 - Fixes signature
26196         * ListBox.cs:
26197                 - Several fixes
26198                 - ObjectCollection.Insert implementation
26199                 - No selection after clean
26200                 - Small fixes
26201
26202 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
26203
26204         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
26205
26206 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
26207
26208         * Combobox.cs:
26209                 - Caches ItemHeight calculation for OwnerDrawVariable
26210                 - Handles dropdown properly
26211                 - Fixes several minor bugs
26212
26213 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
26214
26215         * ListBox.cs:
26216                 - Fixes 71946 and 71950
26217                 - Fixes changing Multicolumn on the fly
26218                 - Fixes keyboard navigation on Multicolumn listboxes
26219
26220 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26221         
26222         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
26223         crash reporter log.
26224
26225 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26226
26227         * XplatUIOSX.cs: Allow applications to actually exit.
26228
26229 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26230
26231         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
26232         their parent at creation time rather than lazily later.  Fixes a major
26233         regression we were experiencing.
26234
26235 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
26236
26237         * ThemeWin32Classic.cs: more date time picker painting fixes
26238         * DateTimePicker.cs: more monthcalendar drop down fixes
26239         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
26240
26241 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
26242
26243         * ScrollBar.cs:
26244                 - When moving the thumb going outside the control should stop the moving
26245                 - Adds the firing of missing events
26246                 - Fixes no button show if Size is not specified
26247                 - End / Home keys for keyboard navigation
26248
26249 2005-01-30  Peter Bartok  <pbartok@novell.com>
26250
26251         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
26252           sanity check to prevent theoretical loop
26253         * XplatUIWin32.cs (SetVisible): Removed debug output
26254         * XplatUIX11.cs (SystrayChange): Added sanity check
26255         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
26256         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
26257           behaviour, valid until the X11 client window rewrite is done
26258         * TextBox.cs (ctor): Setting proper default foreground and background
26259           colors
26260
26261 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
26262
26263         * Theme: Added DrawDateTimePicker to interface
26264         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
26265         * DateTimePicker.cs: Created (still needs keys and painting code)
26266         * DateTimePickerFormat.cs: added
26267         * MonthCalendar.cs: fixed CreateParams for popup window mode
26268           
26269 2005-01-29  Peter Bartok  <pbartok@novell.com>
26270
26271         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
26272           this should also the calculations for ligher/darker
26273         * Theme.cs: Fixed defaults for ScrollBar widths/heights
26274
26275 2005-01-29  Peter Bartok  <pbartok@novell.com>
26276
26277         * ArrangeDirection.cs: Added
26278         * ArrangeStartingPositon.cs: Added
26279         * SystemInformation.cs: Implemented
26280         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
26281           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
26282           used by SystemInformation class
26283         * X11Strucs.cs: Added XSizeHints structure
26284         * MenuAPI.cs:
26285           - Fixed CreateParams to make sure the menu window is always visible
26286           - TrackPopupMenu: Added check to make sure we don't draw the
26287             menu offscreen
26288
26289 2005-01-29  Peter Bartok  <pbartok@novell.com>
26290
26291         * HandleData.cs: Added method for altering invalid area
26292         * TextBoxBase.cs: Implemented TextLength
26293
26294 2005-01-28  Peter Bartok  <pbartok@novell.com>
26295
26296         * XplatUIX11.cs: Improvement over last patch, not sending
26297           the WM_PAINT directly anymore, instead we scroll any pending
26298           exposed areas and let the system pick out the WM_PAINT later
26299
26300 2005-01-28  Peter Bartok  <pbartok@novell.com>
26301
26302         * SWF.csproj: Deleted, no longer used. Instead,
26303           Managed.Windows.Forms/SWF.csproj should be used
26304         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
26305           directly, to avoid a potential race condition with the next
26306           scroll
26307
26308 2005-01-28  Peter Bartok  <pbartok@novell.com>
26309
26310         * XplatUI.cs: Made class internal
26311
26312 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
26313
26314         * CheckedListBox.cs:
26315                 - Draw focus
26316                 - Fixed Drawing
26317                 - Missing methods and events
26318
26319 2005-01-27  Peter Bartok  <pbartok@novell.com>
26320
26321         * Application.cs (Run): Don't use form if we don't have one
26322
26323 2005-01-27  Peter Bartok  <pbartok@novell.com>
26324
26325         * TextBoxBase.cs (get_Lines): Fixed index off by one error
26326
26327 2005-01-27  Peter Bartok  <pbartok@novell.com>
26328
26329         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
26330         * GridItem.cs: Added; Patch by Jonathan S. Chambers
26331         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
26332         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
26333         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
26334         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
26335         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26336         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
26337         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26338         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26339         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26340         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
26341
26342 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
26343
26344         * Combobox.cs:
26345                 - Draw focus on Simple Combobox
26346                 - Fixes drawing issues
26347                 - fixes 71834
26348
26349 2005-01-27  Peter Bartok  <pbartok@novell.com>
26350
26351         * Form.cs:
26352           - Place window in default location, instead of hardcoded 0/0
26353           - Send initial LocationChanged event
26354         * Control.cs:
26355           - UpdateBounds after creation to find out where the WM placed us
26356           - Make sure that if the ParentForm changes location the Form
26357             is notified
26358         * XplatUIX11.cs: XGetGeometry will not return the coords relative
26359             to the root, but to whatever the WM placed around us.
26360             Translate to root coordinates before returning toplevel
26361             coordinates
26362         * XplatUIWin32.cs: Removed debug output
26363         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
26364           flag to GetWindowPos, to allow translation of coordinates on X11
26365
26366 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
26367
26368         * ListBox.cs: connect LostFocus Event
26369
26370 2005-01-27  Peter Bartok  <pbartok@novell.com>
26371
26372         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
26373           XplatUIX11.cs: Extended the Systray API
26374         * Form.cs: Removed debug output
26375         * Application.cs: Fixed focus assignment, always need to call
26376           XplatUI.Activate() since Form.Activate() has rules that may
26377           prevent activation
26378         * NotifyIcon.cs: Should be complete now
26379         * ToolTip.cs: Worked around possible timer bug
26380
26381 2005-01-27  Jackson Harper  <jackson@ximian.com>
26382
26383         * TabControl.cs:
26384         - Only invalidate the effected tabs when the
26385         selected index changes. This reduces drawing and gets rid of some
26386         flicker.
26387         - Only refresh if the tabs need to be shifted, otherwise only
26388         invalidate the slider button.
26389         - On windows the tabs are not filled to right if the slider is
26390         visible.
26391         
26392 2005-01-27  Jackson Harper  <jackson@ximian.com>
26393
26394         * TabControl.cs: Only refresh on mouseup if we are showing the
26395         slider. Also only invalidate the button whose state has changed.
26396
26397 2005-01-26  Peter Bartok  <pbartok@novell.com>
26398
26399         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
26400         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
26401           and SystrayRemove() methods
26402         * XplatUIOSX.cs: Stubbed Systray methods
26403         * XplatUIX11.cs:
26404           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
26405             methods
26406           - Fixed broken XChangeProperty calls (marshalling messed up things)
26407         * X11Structs.cs: Added enums and structs required for Size hinting
26408         * NotifyIcon.cs: Added & implemented
26409
26410 2005-01-26  Jackson Harper  <jackson@ximian.com>
26411
26412         * TabControl.cs: Space vertically layed out tabs properly.
26413
26414 2005-01-26  Peter Bartok  <pbartok@novell.com>
26415
26416         * Form.cs (CreateClientParams): Always set the location to 0,0
26417           since we're a child window.
26418
26419         * Control.cs (SetVisibleCore): Always explicitly setting the location
26420           of a toplevel window, apparently X11 doesn't like to move windows
26421           while they're not mapped.
26422
26423 2005-01-26  Jackson Harper  <jackson@ximian.com>
26424
26425         * TabControl.cs: Implement FillToRight size mode with vertically
26426         rendered tabs.
26427
26428 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26429
26430         * ControlPaint.cs, ThemeWin32Classic.cs
26431                 - Fixes DrawFocusRectangle
26432
26433 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26434
26435         * MenuAPI.cs:
26436                 - MenuBar tracking only starts when item is first clicked
26437                 - Fixes menu hidding for multiple subitems
26438                 - Unselect item in MenuBar when item Executed
26439                 - Fixes bug 71495
26440
26441 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
26442
26443         * ListControl.cs:
26444                 - IsInputKey for ListBox
26445         * ListBox.cs:
26446                 - Focus item
26447                 - Shift and Control item selection
26448                 - Implement SelectionMode.MultiExtended
26449                 - Fixes RightToLeft
26450         * ComboBox.cs:
26451                 - IsInputKey implemented
26452                 - Do not generate OnTextChangedEdit on internal txt changes
26453                 
26454 2005-01-23  Peter Bartok  <pbartok@novell.com>
26455
26456         * AccessibleObject.cs: Partially implemented Select()
26457         * MonthCalendar.cs: Added missing attributes and events
26458         * Form.cs: Fixed CreateParams behaviour, now controls derived from
26459           form can properly override CreateParams.
26460         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
26461           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
26462           Control performs Invalidate & Update
26463         * NativeWindow (CreateHandle): Added special handling for Form
26464           and Form.FormParent classes to allow overriding of From.CreateParams
26465         * Control.cs:
26466           - ControlNativeWindow: Renamed 'control' variable to more intuitive
26467             name 'owner'
26468           - ControlNativeWindow: Added Owner property
26469           - Removed usage of Refresh() on property changes, changed into
26470             Invalidate(), we need to wait until the queue is processed for
26471             updates, direct calls might cause problems if not all vars for
26472             Paint are initialized
26473           - Added call to UpdateStyles() when creating the window, to set any
26474             styles that CreateWindow might have ignored.
26475           - Added support for Form CreateParent overrides to UpdateStyles()
26476         * MessageBox.cs: Removed no longer needed FormParent override stuff,
26477           CreateParams are now properly overridable
26478         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
26479           CreateParams are now properly overridable
26480
26481 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
26482
26483         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
26484         OnTextBoxChanged.
26485
26486         Capture LostFocus and OnTextBoxChanged.  The later introduces a
26487         recursive invocation that I have not figured out yet.
26488
26489         Reset the timer when not using (it was accumulating).
26490
26491
26492         (OnTextBoxChanged): Set UserEdit to true here to track whether the
26493         user has made changes that require validation.
26494
26495         Reset changing to avoid loops.
26496
26497 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
26498
26499         * NumericUpDown.cs: Display value at startup.
26500
26501         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
26502         ValidateEditText.
26503
26504         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
26505         filled in.  Added some basic parsing of text.
26506
26507         Still missing the OnXXX method overrides, and figuring out the
26508         events that must be emitted.
26509
26510         * UpDownBase.cs: Handle UserEdit on the Text property.
26511         
26512 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
26513
26514         * ComboBox.cs:
26515           - Fixes IntegralHeight
26516           - ToString method
26517
26518 2005-01-21  Jackson Harper  <jackson@ximian.com>
26519
26520         * TabControl.cs: Set the SelectedIndex property when SelectedTab
26521         is set so that the page visibility is updated and the tabs are
26522         sized correctly.
26523
26524 2005-01-21  Jackson Harper  <jackson@ximian.com>
26525
26526         * TabControl.cs: Use cliping rectangle for blitting. Give the
26527         theme the clipping rect so we can do clipping while
26528         drawing. Remove some debug code.
26529
26530 2005-01-21  Jackson Harper  <jackson@ximian.com>
26531
26532         * TabPage.cs: Add a new method so tab pages can force the tab
26533         control to recalculate the tab page sizes.
26534         * TabControl.cs: UpdateOwner needs to make the tab control recalc
26535         sizes.
26536
26537 2005-01-20  Jackson Harper  <jackson@ximian.com>
26538
26539         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
26540
26541 2005-01-20  Jackson Harper  <jackson@ximian.com>
26542
26543         * TreeView.cs: Set the bounds for nodes properly. They were
26544         getting screwed up when checkboxes were not enabled, but images
26545         were.
26546
26547 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
26548
26549         * ListBox.cs:
26550                 - Owner draw support
26551                 - Fixes
26552                 
26553 2005-01-20  Jackson Harper  <jackson@ximian.com>
26554
26555         * XplatUIStructs.cs: More misc keys
26556         * X11Keyboard.cs: Ignore some control keys.
26557
26558 2005-01-20  Jackson Harper  <jackson@ximian.com>
26559
26560         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
26561         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
26562
26563 2005-01-19  Peter Bartok  <pbartok@novell.com>
26564
26565         * Control.cs: Un-selecting the control when it is loosing focus
26566
26567 2005-01-19  Jackson Harper  <jackson@ximian.com>
26568
26569         * TreeView.cs: Hook up to the text controls leave event so we can
26570         end editing when the users clicks outside the text box.
26571         
26572 2005-01-19  Jackson Harper  <jackson@ximian.com>
26573
26574         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
26575         get set in the conversion array.
26576
26577 2005-01-19  Peter Bartok  <pbartok@novell.com>
26578
26579         * Application.cs (ModalRun): Added a call to CreateControl to ensure
26580           focus is properly set
26581         * Button.cs:
26582           - Added missing attributes
26583           - removed styles, those are already set in the base class
26584         * ButtonBase.cs:
26585           - Added missing attributes
26586           - Added clip window styles
26587         * CheckBox.cs: Added missing attributes
26588         * CommonDialog.cs:
26589           - FormParentWindow.CreateParams: Added required clip styles
26590         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
26591           also filters modifier keys
26592         * MessageBox.cs:
26593           - Added assignment of Accept and Cancel button to enable Enter
26594             and Esc keys in MessageBox dialogs
26595           - FormParentWindow.CreateParams: Added required clip styles
26596         * RadioButton.cs: Added missing attributes
26597         * TextControl.cs: No longer draws selection if control does not
26598           have focus
26599         * TextBoxBase.cs:
26600           - Now draws simple rectangle around test area to make it obvious
26601             there's a control. This is a hack until we properly support borders
26602           - A few simple fixes to support selections better, now erases selected
26603             text when typing, and resets selection when using movement keys
26604
26605 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
26606
26607         * UpDownBase.cs: Added some new properties.
26608
26609         * DomainUpDown.cs: Implement a lot to get my test working.
26610
26611 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26612
26613         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
26614
26615 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26616
26617         * OSXStructs (WindowAttributes): Fixed csc complaints
26618
26619 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26620
26621         * XplayUIOSX.cs:
26622           OSXStructs.cs: Initial refactor to move enums and consts into
26623           OSXStructs and use them in the driver for greater readability.
26624
26625 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26626
26627         * XplatUIOSX.cs: Initial support for Standard Cursors.
26628         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
26629
26630 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
26631
26632         * ComboBox.cs: ability to change style when the ctrl is already
26633         created, missing methods and events, bug fixes, signature fixes
26634
26635 2005-01-19  Peter Bartok  <pbartok@novell.com>
26636
26637         * Cursors.cs (ctor): Added ctor to fix signature
26638
26639 2005-01-18  Peter Bartok  <pbartok@novell.com>
26640
26641         * Button.cs: Implemented DoubleClick event
26642         * ButtonBase.cs:
26643           - Fixed keyboard handling to behave like MS, where the press of
26644             Spacebar is equivalent to a mousedown, and the key release is
26645             equivalent to mouseup. Now a spacebar push will give the same
26646             visual feedback like a mouse click.
26647           - Added missing attributes
26648           - Added ImeModeChanged event
26649           - Added support for generating DoubleClick event for derived classes
26650         * CheckBox.cs:
26651           - Implemented DoubleClick event
26652           - Added missing attributes
26653         * CommonDialog.cs: Added missing attribute
26654         * ContextMenu.cs: Added missing attributes
26655         * RadioButton.cs:
26656           - AutoChecked buttons do not allow to be unselected when clicked
26657             (otherwise we might end up with no selected buttons in a group)
26658           - Added missing attributes
26659           - Implemented DoubleClickEvent
26660         * ThreadExceptionDialog.cs: Enabled TextBox code
26661
26662 2005-01-18  Peter Bartok  <pbartok@novell.com>
26663
26664         * Form.cs: Removed debug output
26665         * Button.cs: Added support for DoubleClick method
26666
26667 2005-01-18  Peter Bartok  <pbartok@novell.com>
26668
26669         * Form.cs:
26670           - Added method to parent window that allows triggering size
26671             calculations when a menu is added/removed
26672           - set_Menu: Cleaned up mess from early days of Form and Control,
26673             now properly triggers a recalc when a menu is added/removed
26674           - Added case to select form itself as focused form if no child
26675             controls exist
26676           - Added PerformLayout call when showing dialog, to ensure properly
26677             placed controls
26678         * Control.cs:
26679           - Select(): Made internal so Form can access it
26680           - Focus(): Only call Xplat layer if required (avoids loop), and sets
26681             status
26682         * Application.cs (Run): Removed hack and calls PerformLayout instead
26683           to trigger calculation when Form becomes visible
26684
26685 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
26686
26687         * ComboBox.cs: fixes for ownerdraw
26688
26689 2005-01-18  Peter Bartok  <pbartok@novell.com>
26690
26691         * TextControl.cs:
26692           - Sentinel is no longer static, each Document gets it's own, this
26693             avoids locking or alternatively overwrite problems when more
26694             than one text control is used simultaneously.
26695           - Switched to use Hilight and HilightText brushes for text selection
26696
26697         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
26698
26699 2005-01-18  Peter Bartok  <pbartok@novell.com>
26700
26701         * Control.cs:
26702           - Hooked up the following events:
26703                 o ControlAdded
26704                 o ControlRemoved
26705                 o HandleDestroyed
26706                 o ImeModeChanged
26707                 o ParentChanged
26708                 o TabStopChanged
26709                 o Invalidated
26710                 o SystemColorsChanged
26711                 o ParentFontChanged
26712                 o Move
26713           - Removed debug output
26714           - Added a call to the current theme's ResetDefaults when a color change
26715             is detected
26716         * Form.cs: Now setting the proper ImeMode
26717         * Theme.cs: Defined a method to force recreation of cached resources
26718           and rereading of system defaults (ResetDefaults())
26719         * ThemeWin32Classic.cs: Added ResetDefaults() stub
26720
26721 2005-01-17  Peter Bartok  <pbartok@novell.com>
26722
26723         * Control.cs: Added missing attributes
26724
26725 2005-01-17  Jackson Harper  <jackson@ximian.com>
26726
26727         * TreeNode.cs: Implement editing. Add missing properties selected
26728         and visible.
26729         * TreeView.cs: Implement node editing. Also some fixes to use
26730         Invalidate (invalid area) instead of Refresh when selecting.
26731
26732 2005-01-17  Peter Bartok  <pbartok@novell.com>
26733
26734         * Control.cs:
26735           - Implemented InvokeGotFocus() method
26736           - Implemented InvokeLostFocus() method
26737           - Implemented InvokePaint() method
26738           - Implemented InvokePaintBackground() method
26739           - Implemented InvokeClick() method
26740           - Implemented FindForm() method
26741           - Implemented RectangleToClient() method
26742           - Implemented ClientToRectangle() method
26743           - Implemented ResetBackColor() method
26744           - Implemented ResetCursor() method
26745           - Implemented ResetFont() method
26746           - Implemented ResteForeColor() method
26747           - Implemented ResetImeMode() method
26748           - Implemented ResetLeftToRight() method
26749           - Implemented ResetText() method
26750           - Implemented Scale() methods
26751           - Implemented ScaleCore() method
26752           - Implemented Update() method
26753           - Removed unused variables
26754           - Stubbed AccessibilityNotifyClients and
26755             ControlAccessibleObject.NotifyClients() methods (dunno what to do
26756             with those yet)
26757           - Now setting proper default for RightToLeft property
26758           - Fixed bug in SetClientSizeCore that would cause windows to get
26759             really big
26760           - Now sending Click/DoubleClick events
26761           - Now selecting controls when left mouse button is clicked on
26762             selectable control
26763         * AccessibleEvents.cs: Added
26764         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
26765         * XplatUIOSX.cs: Stubbed UpdateWindow() method
26766         * XplatUIWin32.cs: Implemented UpdateWindow() method
26767         * XplatUIX11.cs: Implemented UpdateWindow() method
26768         * Form.cs: Removed stray semicolon causing CS0162 warning
26769         * ThemeWin32Classic.cs: Fixed unused variable warnings
26770         * ScrollableControl.cs: Now calls base method for ScaleCore
26771         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
26772           style to avoid interference with internal click handler (which is
26773           different than standard Control click handling)
26774         * RadioButton.cs:
26775           - Now unchecks all sibling radio buttons when control is
26776             selected (Fixes #68756)
26777           - Removed internal tabstop variable, using the one inherited from
26778             Control
26779
26780 2005-01-17  Jackson Harper  <jackson@ximian.com>
26781
26782         * NavigateEventArgs.cs: Fix base type.
26783         * LinkLabel.cs: Sig fix
26784         
26785 2005-01-17  Jackson Harper  <jackson@ximian.com>
26786
26787         * TreeView.cs: Only invalidate the effected nodes bounds when
26788         selecting nodes.
26789
26790 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26791
26792         * XplatUIWin32.cs: fixes Win32 marshaling
26793         * XplatUIX11.cs: fixes method signature
26794
26795 2005-01-17  Peter Bartok  <pbartok@novell.com>
26796
26797         * XplatUIX11.cs: Clean up resources when we no longer need them
26798
26799 2005-01-17  Peter Bartok  <pbartok@novell.com>
26800
26801         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
26802           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
26803           and DestroyCursor() methods.
26804         * Cursor.cs: Partially implemented, now supports standard cursors;
26805           still contains some debug code
26806         * Cursors.cs: Implemented class
26807         * Control.cs:
26808           - WndProc(): Added handling of WM_SETCURSOR message, setting the
26809             appropriate cursor
26810           - Implemented Cursor property
26811           - Replaced break; with return; more straightforwar and possibly
26812             faster
26813           - Now properly setting the result for WM_HELP
26814         * X11Structs.cs: Added CursorFontShape enum
26815         * XplatUIStructs.cs:
26816           - Added StdCursor enum (to support DefineStdCursor() method)
26817           - Added HitTest enum (to support sending WM_SETCURSOR message)
26818         * XplatUIX11.cs:
26819           - Now sends the WM_SETCURSOR message
26820           - Implemented new cursor methods
26821         * XplatUIOSX.cs: Stubbed new cursor methods
26822         * XplatUIWin32.cs:
26823           - Implemented new cursor methods
26824           - Added GetSystemMetrics function and associated enumeration
26825
26826 2005-01-15  Peter Bartok  <pbartok@novell.com>
26827
26828         * Control.cs:
26829           - WndProc(): Now handles EnableNotifyMessage
26830           - SelectNextControl(): Fixed bug where if no child or sibling
26831             controls exist we looped endlessly
26832
26833 2005-01-14  Jackson Harper  <jackson@ximian.com>
26834
26835         * TreeView.cs: Recalculate the tab pages when a new one is added
26836         so that the proper bounding rects are created.
26837
26838 2005-01-14  Jackson Harper  <jackson@ximian.com>
26839
26840         * TreeView.cs: Draw a gray box instead of a grip in the lower
26841         right hand corner when there are both horizontal and vertical
26842         scroll bars.
26843
26844 2005-01-14  Jackson Harper  <jackson@ximian.com>
26845
26846         * Control.cs: When erasing backgrounds use FromHwnd instead of
26847         FromHdc when there is a NULL wparam. This occurs on the X driver.
26848         * XplatUIX11.cs: Set the wparam to NULL.
26849
26850 2005-01-13  Jackson Harper  <jackson@ximian.com>
26851
26852         * PictureBox.cs: Implement missing methods (except ToString, need
26853         to test that on windows) and events. When visibility is changed we
26854         need to redraw the image because the buffers are killed. When size
26855         is changed refresh if the sizemode needs it.
26856
26857 2005-01-13  Peter Bartok  <pbartok@novell.com>
26858
26859         * Control.cs (SelectNextControl): Was using wrong method to select
26860           a control
26861
26862 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26863
26864         * ComboBox.cs: fixes dropstyle
26865
26866 2005-01-13  Peter Bartok  <pbartok@novell.com>
26867
26868         * Form.cs:
26869           - Implemented Select() override
26870           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
26871           - Now sets keyboard focus on startup
26872         * Control.cs (SelectNextControl): Now properly handles directed=true
26873         * TextBoxBase.cs:
26874           - WndProc: Now passes tab key on to base if AcceptTabChar=false
26875           - Added (really bad) focus rectangle (mostly for testing)
26876         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
26877           to enforce redraw on focus changes
26878         * ContainerControl.cs:
26879           - Fixed detection of Shift-Tab key presses
26880           - Fixed traversal with arrow keys
26881         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
26882           gonna keep this or if it's complete yet
26883         
26884 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26885
26886         * ComboBox.cs: missing properties, fixes
26887
26888 2005-01-13  Peter Bartok  <pbartok@novell.com>
26889
26890         * Panel.cs (ctor): Setting Selectable window style to off
26891         * Splitter.cs (ctor): Setting Selectable window style to off
26892         * GroupBox.cs (ctor): Setting Selectable window style to off
26893         * Label.cs (ctor): Setting Selectable window style to off
26894
26895 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
26896
26897         * UpDownBase.cs (InitTimer): If the timer has been already
26898         created, enable it.
26899
26900         Use a TextBox instead of a Label.
26901
26902 2005-01-12  Jackson Harper  <jackson@ximian.com>
26903
26904         * TreeView.cs: Refresh the tree after sorting the nodes. Always
26905         draw the connecting node lines (when ShowLines is true).
26906         * TreeNode.cs: The nodes index can now be updated. This is used
26907         when a node collection is sorted.
26908         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
26909         insert or an existing unsorted node collection can be sorted.
26910         
26911 2005-01-12  Peter Bartok  <pbartok@novell.com>
26912
26913         * ContainerControl.cs: Implemented ProcessDialogKeys()
26914
26915 2005-01-12  Peter Bartok  <pbartok@novell.com>
26916
26917         * Control.cs:
26918           - Implemented SelectNextControl() method
26919           - Several focus related bug fixes
26920           - Fixed Docking calculations to match MS documentation and
26921             behaviour
26922
26923 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
26924
26925         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
26926         bug fixes
26927
26928 2005-01-12  Peter Bartok  <pbartok@novell.com>
26929
26930         * Control.cs:
26931           - Fixed broken Contains() method
26932           - Implemented GetNextControl() method. Finally. This is the pre-
26933             requisite for focus handling.
26934
26935 2005-01-12  Peter Bartok  <pbartok@novell.com>
26936
26937         * OSXStrucs.cs: Added
26938
26939 2005-01-12  Peter Bartok  <pbartok@novell.com>
26940
26941         * XplatUIWin32.cs:
26942           - Removed PeekMessageFlags
26943           - Implemented SetWindowStyle() method
26944         * XplatUIStructs.cs: Added PeekMessageFlags
26945         * X11Structs: Added missing border_width field to XWindowChanges struct
26946         * XplatUIX11.cs:
26947           - PeekMessage: Now throws exception if flags which are not yet
26948             supported are passed
26949           - Implemented SetWindowStyle() method
26950           - Fixed SetZOrder to handle AfterHwnd properly
26951         * XplatUI.cs: Added SetWindowStyle() method
26952         * XplatUIDriver.cs: Added SetWindowStyle() abstract
26953         * Control.cs:
26954           - Implemented UpdateStyles() method
26955           - Implemented UpdateZOrder() method
26956         * XplatUIOSX.cs: Added SetWindowStyle() stub
26957
26958 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
26959
26960         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
26961         button mouse).
26962
26963
26964 2005-01-11  Jackson Harper  <jackson@ximian.com>
26965
26966         * TreeView.cs: Still need to draw lines to siblings even if out of
26967         the current node is out of the clip.
26968
26969 2005-01-11  Jackson Harper  <jackson@ximian.com>
26970
26971         * TreeView.cs: When setting the hbar/vbar/grip position use
26972         SetBounds so that perform layout is only called once. Also suspend
26973         and resume layout so layout is only done once for all controls.
26974         - Removed some debug fluff
26975         * SizeGrip.cs: Call base implmentation in overriding methods.
26976         - When visibility is changed the drawing buffers are killed so we
26977         need to redraw.
26978
26979 2005-01-11  Jackson Harper  <jackson@ximian.com>
26980
26981         * TreeView.cs: Calculate the open node count while drawing. This
26982         saves us an entire tree traversal for every paint operation. Use
26983         a member var for the open node count so less vars are passed around.
26984
26985 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
26986
26987         * MonthCalendar.cs:
26988         - fixed selection to use mousemove, not mouse polling on timer
26989         * ThemeWin32Classic.cs
26990         - removed redundant unused variable "no_more_content"
26991         
26992 2005-01-11  Peter Bartok  <pbartok@novell.com>
26993
26994         * XplatUIX11.cs (DoEvents): Needs to return when no more events
26995           are pending, so it now calls PeekMessage instead of GetMessage;
26996           implemented a incomplete version of PeekMessage
26997         
26998 2005-01-11  Peter Bartok  <pbartok@novell.com>
26999
27000         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
27001           I18n issues
27002         * TextBoxBase.cs: Added sending of TextChanged event
27003
27004 2005-01-10  Jackson Harper  <jackson@ximian.com>
27005
27006         * TreeView.cs: Try not to draw outside the clipping rectangle on
27007         each node element.
27008
27009 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
27010
27011         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
27012
27013 2005-01-10  Jackson Harper  <jackson@ximian.com>
27014
27015         * TreeView.cs:
27016         - Implement fast scrolling. Now only the newly
27017         exposed nodes are drawn and the old image is moved using the
27018         XplatUI::ScrollWindow method.
27019         - Factor in height of nodes when calculating whether or not the
27020         node is in the clipping rect.
27021
27022 2005-01-10  Jackson Harper  <jackson@ximian.com>
27023
27024         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
27025
27026 2005-01-10  Peter Bartok  <pbartok@novell.com>
27027
27028         * Application.cs: Added temporary hack to resolve all our resize
27029           required issues on startup. This will get fixed properly at
27030           some point in the future
27031
27032 2005-01-10  Jackson Harper  <jackson@ximian.com>
27033
27034         * SizeGrip.cs: New internal class that is used as a sizing
27035         grip control...hence the name.
27036
27037 2005-01-10  Peter Bartok  <pbartok@novell.com>
27038
27039         * Control.cs: Implemented proper TabIndex handling, now assigning
27040           a tabindex when a control is added to a container
27041         * GroupBox.cs (ctor): Now sets the Container style bit, required
27042           for Control.GetNextControl()
27043
27044 2005-01-09  Jackson Harper  <jackson@ximian.com>
27045
27046         * TextBoxBase.cs: Clear window when scrolling (fixes build).
27047
27048 2005-01-09  Peter Bartok <pbartok@novell.com>
27049
27050         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
27051           XplatUIX11.cs: Added ability to control ScrollWindow expose and
27052           an overload for ScrollWindow to allow only scrolling a rectangle
27053
27054 2005-01-09  Peter Bartok <pbartok@novell.com>
27055
27056         * Form.cs:
27057           - Implemented SetDesktopBounds method
27058           - Implemented SetDesktopLocation method
27059
27060 2005-01-08  Jackson Harper  <jackson@ximian.com>
27061
27062         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
27063         the node count has changed, this removes to VScroll::Refresh calls
27064         when drawing.
27065
27066 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
27067
27068         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
27069
27070 2005-01-07  Jackson Harper  <jackson@ximian.com>
27071
27072         * TreeNode.cs: Just update the single node when it is
27073         checked. Don't refresh after toggling, the Expand/Collapse already
27074         handles this.
27075         * TreeView.cs: Respect clipping a little more when drawing. Try
27076         not to redraw things that don't need to be redrawn. Just hide the
27077         scrollbars when they are no longer needed instead of removing
27078         them, so they don't have to be created again and again.
27079         
27080 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
27081
27082         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
27083         coordinates to window space to place the caret properly, FIXED.
27084         Implement GetWindowState & SetWindowState
27085
27086 2005-01-06  Peter Bartok <pbartok@novell.com>
27087
27088         * Form.cs:
27089           - Implemented ClientSize property
27090           - Implemented DesktopBounds property
27091           - Implemented DesktopLocation property
27092           - Implemented IsRestrictedWindow property
27093           - Implemented Size property
27094           - Implemented TopLevel property
27095           - Implemented FormWindowState property
27096         * Control.cs:
27097           - Implemented GetTopLevel() method
27098           - Implemented SetTopLevel() method
27099         * X11Structs.cs (Atom):
27100           - Added AnyPropertyType definition
27101           - Added MapState definiton and updated XWindowAttribute struct
27102         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
27103         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
27104         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
27105         * XplatUIWin32.cs:
27106           - Implemented GetWindowState() and SetWindowState() methods
27107           - Fixed Win32GetWindowLong return type
27108         * XplatUIX11.cs:
27109           - Introduced central function for sending NET_WM messages
27110           - Implemented GetWindowState() and SetWindowState() methods
27111         * TextBoxBase.cs (set_Lines):
27112           - Now uses Foreground color for text added via Text property (Duh!)
27113           - Added code to remember programmatically requested size (fixes
27114             behaviour when Multiline is set after Size)
27115           - Added AutoSize logic
27116
27117 2005-01-06  Jackson Harper  <jackson@ximian.com>
27118
27119         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
27120
27121 2005-01-06  Jackson Harper  <jackson@ximian.com>
27122
27123         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
27124         set to less then 0.
27125
27126 2005-01-06  Jackson Harper  <jackson@ximian.com>
27127
27128         * ScrollableControl.cs: Lazy init the scrollbars.
27129         
27130 2005-01-06  Jackson Harper  <jackson@ximian.com>
27131
27132         * Theme.cs: Speed up getting pens and solid brushes, by using
27133         their ARGB as a hash instead of tostring and not calling Contains.
27134
27135 2005-01-06  Peter Bartok <pbartok@novell.com>
27136
27137         * Form.cs:
27138           - Implemented OnActivated and OnDeactivate event trigger
27139           - Implemented Activate() method
27140           - Fixed ShowDialog() to activate the form that was active before
27141             the dialog was shown
27142         * XplatUIX11.cs:
27143           - Added global active_window var that tracks the currently active
27144             X11 window
27145           - Now always grabs Property changes from the root window to always
27146             catch changes on the active window property
27147           - Added code to PropertyNotify handler to send Active/Inactive
27148             messages when state changes. This puts X11 and Win32 en par on
27149             WM_ACTIVATE notifications (except for double notifications when
27150             the user clicks away from our modal window to another one of our
27151             windows)
27152
27153 2005-01-05  Jackson Harper  <jackson@ximian.com>
27154
27155         * ImageList.cs: Implment ctor
27156
27157 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27158
27159         * XplatUIOSX.cs: Implement Activate/SetTopmost
27160
27161 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27162
27163         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
27164
27165 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27166
27167         * XplatUIOSX.cs: Implement GetActive/SetFocus.
27168
27169 2005-01-05  Peter Bartok <pbartok@novell.com>
27170
27171         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
27172           XplatUIOSX.cs: Added GetActive method to return the currently
27173           active window for the application (or null, if none is active)
27174         * Form.cs:
27175           - Implemented ActiveForm
27176           - Commented out owner assignment for modal dialogs (causes problems
27177             on Win32, since the owner will be disabled)
27178           - Reworked some Active/Focus handling (still incomplete)
27179         * CommonDialog.cs: Commented out owner assignment for modal dialogs
27180           (causes problems on Win32, since the owner will be disabled)
27181         * IWin32Window: Added ComVisible attribute
27182
27183 2005-01-05  Peter Bartok <pbartok@novell.com>
27184
27185         * ToolTip.cs (WndProc): Enable setting focus now that we have the
27186           required XplatUI functions.
27187
27188 2005-01-05  Peter Bartok <pbartok@novell.com>
27189
27190         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
27191           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
27192           to implement focus and activation handling; still incomplete and
27193           with debug output
27194
27195 2005-01-04  Peter Bartok <pbartok@novell.com>
27196
27197         * TextBoxBase.cs: Changed access level for Document property to
27198           match switch to internal for TextControl
27199
27200 2005-01-04  Peter Bartok <pbartok@novell.com>
27201
27202         * AccessibleObject: Added ComVisible attribute
27203
27204 2005-01-04  Jackson Harper  <jackson@ximian.com>
27205
27206         * X11Keyboard.cs: Remove unneeded var.
27207
27208 2005-01-04  Jackson Harper  <jackson@ximian.com>
27209
27210         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
27211         but PAINT.
27212         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
27213         ClientMessage. This makes apps exit cleanly (more often).
27214         
27215 2005-01-04  Jackson Harper  <jackson@ximian.com>
27216
27217         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
27218         handling focus, return correct colors and fonts,
27219         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
27220         handle selection, horizontal scrolling, and mouse interaction.
27221
27222 2005-01-04  Peter Bartok <pbartok@novell.com>
27223
27224         * ICommandExecutor.cs: Added
27225         * IDataGridColumnStyleEditingNotificationService.cs: Added
27226         * IFeatureSupport.cs: Added
27227         * IFileReaderService.cs: Added
27228         * IDataObject.cs: Added ComVisible attribute
27229         * AmbientProperties.cs: Added
27230         * BaseCollection.cs: Added missing attributes
27231         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
27232         * BaseCollection.cs: Added missing attributes
27233         * Binding.cs: Added TypeConverter attribute
27234         * BindingContext.cs: Added DefaultEvent attribute
27235         * BindingsCollection.cs: Added DefaultEvent attribute
27236         * Button.cs: Added DefaultValue attribute
27237         * DragEventArgs.cs: Added ComVisible attribute
27238         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
27239         * KeyEventArgs.cs: Added ComVisible attribute
27240         * KeyPressEventArgs.cs: Added ComVisible attribute
27241         * MouseEventArgs.cs: Added ComVisible attribute
27242         * NavigateEventArgs.cs: Added
27243         * NavigateEventHandler.cs: Added
27244         * FeatureSupport.cs: Added
27245         * OSFeature.cs: Added
27246         * Theme.cs: Added abstract Version property to support OSFeature
27247         * ThemeWin32Classic.cs: Added Version property to
27248           support OSFeature.Themes
27249         * ProgressBar.cs: Removed OnPaintBackground override, not required since
27250           the proper styles to avoid background drawing are set, also doesn't
27251           match MS signature
27252         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
27253         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
27254         * ScrollEventArgs.cs: Added ComVisible attribute
27255         * SplitterEventArgs.cs: Added ComVisible attribute
27256         * AccessibleSelection.cs: Added Flags attribute
27257         * Appearance.cs: Added ComVisible attribute
27258         * Border3DSide.cs: Added ComVisible attribute
27259         * Border3DStyle.cs: Added ComVisible attribute
27260         * BorderStyle.cs: Added ComVisible attribute
27261         * DragAction.cs: Added ComVisible attribute
27262         * ErrorBlinkStyle.cs: Added
27263         * ScrollEventType.cs: Added ComVisible attribute
27264         * AnchorStyles.cs: Added Editor attribute
27265         * DockStyle.cs: Added Editor attribute
27266         * HorizontalAlignment.cs: Added ComVisible attribute
27267         * HelpEventArgs.cs: Added ComVisible attribute
27268         * PaintEventArgs.cs: Added IDisposable
27269
27270 2005-01-04  Peter Bartok <pbartok@novell.com>
27271
27272         * TextControl.cs: Switched Line, LineTag and Document classes to
27273           internal
27274
27275 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
27276
27277         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
27278         Simple mode, fixes, IntegralHeight, etc.
27279
27280 2005-01-04  Peter Bartok <pbartok@novell.com>
27281
27282         * TextBoxBase.cs: Using proper font variable now
27283
27284 2005-01-04  Peter Bartok <pbartok@novell.com>
27285
27286         * Form.cs (ShowDialog): Set parent to owner, if provided
27287         * GroupBox.cs: Removed unused vars
27288         * TextControl.cs:
27289           - Added GetHashCode() for Document and LineTag classes
27290           - Removed unused variables
27291           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
27292             to allow translation between continuous char position and line/pos
27293         * CheckBox.cs: Removed vars that are provided by base class
27294         * RadioButton.cs: Removed vars that are provided by base class, added
27295           new keyword where required
27296         * LinkLabel.cs: Added new keyword where required
27297         * Control.cs (WndProc): Removed unused variable
27298         * TextBoxBase.cs:
27299           - Finished SelectionLength property
27300           - Implemented SelectionStart property
27301           - Implemented Text property
27302           - Removed unused vars
27303         * MessageBox.cs: Added new keyword where required
27304         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
27305           WndProc signature
27306         * MenuAPI.cs: Added new keyword where required
27307         * ButtonBase.cs: Removed vars that are provided by base class, added
27308           new keyword where required
27309         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
27310           argument to double, to allow compiling with csc 2.0 (Atsushi ran
27311           into this)
27312         * Application.cs (Run): Now triggers the ThreadExit event
27313         * CommonDialog.cs: Added new keyword where required; now properly sets
27314           parent (owner) for dialog
27315         * XplatUIX11.cs: Commented out unused vars
27316         * StatusBar.cs: Fixed signature for Text property
27317         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
27318
27319 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
27320
27321         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
27322         TrackBar.cs, MonthCalendar.cs: remove unused vars
27323
27324 2005-01-03  Jackson Harper  <jackson@ximian.com>
27325
27326         * ThemeWin32Classic.cs:
27327         * X11Keyboard.cs: Remove unused vars.
27328
27329 2005-01-03  Peter Bartok  <pbartok@novell.com>
27330
27331         * TextBox.cs:
27332           - set_Text: Tied into TextControl
27333           - set_TextAlignment: Tied into TextControl
27334         * TextControl.cs:
27335           - Added alignment properties and implemented alignment handling
27336             and drawing (still has a bug, not generating proper expose events)
27337           - Added new Line() constructor to allow passing the line alignment
27338           - Fixed selection setting, properly handling end<start now
27339           - Added aligment considerations to RecalculateDocument()
27340         * TextBoxBase.cs:
27341           - Now properly enforces control height for single line controls
27342           - Added support for CharacterCasing
27343           - Added IsInputKey override
27344           - Fixed Keys.Enter logic
27345           - Added SetBoundsCore override
27346           - Fixed mouse selection handling
27347
27348 2005-01-03  Jackson Harper  <jackson@ximian.com>
27349
27350         * TreeView.cs:
27351           - Collapse and uncheck all nodes when CheckBoxes is disabled.
27352           - Checkboxes are always aligned to the bottom of the node,
27353           regardless of item height.
27354           - Use the node bounds to draw the text so we can center it when
27355           the item height is greater then the font height.
27356           - Node::Bounds are only the text part of the node.
27357         * TreeNode.cs: New method to combine collapsing and unchecking all
27358           nodes recursively.
27359
27360 2005-01-02  Jackson Harper  <jackson@ximian.com>
27361
27362         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
27363         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
27364         tree when a check is changed. TODO: Only refresh the checked node.
27365
27366 2004-12-30  Jackson Harper  <jackson@ximian.com>
27367
27368         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
27369         * TreeNode.cs: When collapsing make sure to never collapse the
27370         root node.
27371
27372 2004-12-29  Jackson Harper  <jackson@ximian.com>
27373
27374         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
27375         
27376 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
27377
27378         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
27379
27380 2004-12-28  Peter Bartok  <pbartok@novell.com>
27381
27382         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
27383           not yet assigned
27384
27385 2004-12-28  Peter Bartok  <pbartok@novell.com>
27386
27387         * Control.cs (WndProc): Added WM_HELP handler, now generates
27388           HelpRequested event
27389         * Form.cs: Added HelpButton property and required support code
27390         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
27391
27392 2004-12-28  Peter Bartok  <pbartok@novell.com>
27393
27394         * CommonDialog.cs:
27395           - Made DialogForm.owner variable internal
27396           - Added check to ensure owner form is set before setting
27397             owner properties in CreateParams
27398
27399 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
27400
27401         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
27402           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
27403           GetCursorPos.  Fix major visibility issues.  Rework the windowing
27404           system to support borderless/titleless windows (implements menus).
27405           Fix GetWindowPos.  Implement initial background color support for
27406           views.
27407
27408 2004-12-28  Peter Bartok  <pbartok@novell.com>
27409
27410         * Form.cs (get_CreateParams): Make sure we have an owner before using
27411           the owner variable. Implement proper default if no owner exists
27412
27413 2004-12-28  Peter Bartok  <pbartok@novell.com>
27414
27415         * In preparation for making Managed.Windows.Forms the default build target
27416           for System.Windows.Forms, the following stubbed files were added.
27417           Dialogs are currently being implemented by contributors and are only
27418           short-term place holders.
27419         * ColorDialog.cs: Initial check-in (minmal stub)
27420         * DataGrid.cs: Initial check-in (minimal stub)
27421         * DataGridLineStyle.cs: Initial check-in (minimal stub)
27422         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
27423         * DataGridTableStyle.cs: Initial check-in (minimal stub)
27424         * FontDialog.cs: Initial check-in (minimal stub)
27425         * FileDialog.cs: Initial check-in (minimal stub)
27426         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
27427         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
27428         * OpenFileDialog: Initial check-in (minimal stub)
27429         * IComponentEditorPageSite.cs: Initial check-in
27430         * Splitter.cs: Initial check-in (for Jackson)
27431         * SplitterEventArgs.cs: Initial check-in (for Jackson)
27432         * SplitterEventHandler.cs: Initial check-in (for Jackson)
27433         * TextBox.cs: Initial check-in; still needs some wiring to
27434           TextControl backend
27435         * Form.cs: Implemented ControlBox property
27436         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
27437         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
27438         * TextControl.cs: Added selection functionality; added todo header
27439         * TextBoxBase.cs:
27440           - Implemented Lines property
27441           - Implemented TextHeight property
27442           - Implemented SelectedText property
27443           - Implemented SelectionLength property
27444           - Implemented SelectAll method
27445           - Implemented ToString method
27446           - Removed and cleaned up some debug code
27447           - Implemented (still buggy) mouse text selection
27448
27449 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
27450
27451         * ComboBox.cs: Complete DropDownList implementation, fixes.
27452
27453 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
27454
27455         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
27456         * ComboBoxStyle.cs: ComboBoxStyle enum
27457         * ComboBox.cs: Initial work on ComboBox control
27458
27459 2004-12-21  Peter Bartok  <pbartok@novell.com>
27460
27461         * Control.cs (ctor, CreateParams): Moved setting of is_visible
27462           forward so that anything that creates a window gets the default,
27463           also no longer uses Visible property in CreateParams to avoid
27464           walking up the parent chain and possibly get the wrong visible
27465           status. Fixed IsVisible to no longer walk up to the parent.
27466
27467 2004-12-21  Peter Bartok  <pbartok@novell.com>
27468
27469         * Form.cs (ShowDialog): Unset modality for the proper window
27470  
27471 2004-12-20  Peter Bartok  <pbartok@novell.com>
27472
27473         * CommonDialog.cs: Initial check-in
27474
27475 2004-12-20  Peter Bartok  <pbartok@novell.com>
27476
27477         * Control.cs (Visible): Now uses the parent window instead of the
27478           client area window for the property
27479
27480         * Form.cs
27481           - ShowDialog(): Now uses the proper window for modality
27482           - The default visibility state for the form parent is now false. This
27483             will prevent the user from seeing all the changes to the form and
27484             its controls before the application hits Application.Run()
27485           - Removed some stale commented out code
27486
27487         * NativeWindow.cs:
27488           - Added FindWindow() method to have a method to check for existence
27489             of a window handle
27490           - Added ability to override default exception handling (for example
27491             when debugging with VS.Net; to do this the ExternalExceptionHandler
27492             define must be set
27493           - Removed some useless debug output
27494
27495         * XplatUIX11.cs:
27496           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
27497             not working as expected
27498           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
27499             property to allow switching back to the modal window if focus is
27500             given to another one of our windows (Application Modal)
27501           - Now only sets override_redirect if we create a window
27502             without WS_CAPTION
27503           - Moved EventMask selection before mapping of newly created window
27504             so we can catch the map event as well
27505           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
27506           - Added various Atom related DllImports
27507           - Implemented Exit() method
27508           - .ctor() : No longer shows window if WS_VISIBLE is not defined
27509             in the CreateParams
27510
27511         * MessageBox.cs: Now properly deals with the FormParent window by
27512           providing an override the FormParent CreateParams property to
27513           set as POPUP instead of OVERLAPPED window.
27514
27515 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27516
27517         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
27518         Minor code cleanup.
27519
27520 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27521         
27522         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
27523
27524 2004-12-18  Peter Bartok  <pbartok@novell.com>
27525
27526         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
27527           implementing SetModal() method
27528
27529 2004-12-18  Peter Bartok  <pbartok@novell.com>
27530
27531         * X11Structs.cs (XGCValues): Fixed type of function element
27532         * XplatUI.cs: Added ScrollWindow() method
27533         * XplatUIDriver.cs: Added ScrollWindow() abstract
27534         * XplatUIWin32.cs: Implemented ScrollWindow() method
27535         * XplatUIX11.cs: Implemented ScrollWindow() method
27536         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
27537
27538 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27539
27540         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
27541         Some more keyboard support (INCOMPLETE)
27542
27543 2004-12-17  Peter Bartok  <pbartok@novell.com>
27544
27545         * TextControl.cs:
27546         - Added color attribute to line tags.
27547         - Added color argument to all functions dealing with tags
27548         - Added color argument support to various functions
27549         - Fixed miss-calculation of baseline/shift in certain circumstances
27550
27551         * TextBoxBase.cs: Added new color option to test code
27552
27553 2004-12-17  Jackson Harper  <jackson@ximian.com>
27554
27555         * TreeNode.cs:
27556         * MonthCalendar.cs: Signature fixes
27557
27558 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27559
27560         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
27561         keyboard event moved it.  Create a new graphics context for each paint resolves this
27562
27563 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27564
27565         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
27566         Make caret exist and go blink blink.  Initial keyboard support.
27567         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
27568         works.
27569
27570 2004-12-17  Jackson Harper  <jackson@ximian.com>
27571
27572         * XplatUIStructs.cs: Updated set of virtual keycodes.
27573         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
27574
27575 2004-12-17  Jackson Harper  <jackson@ximian.com>
27576
27577         * XplatUIX11.cs: Prune old keyboard code.
27578
27579 2004-12-17  Jackson Harper  <jackson@ximian.com>
27580
27581         * XplatUIX11.cs: When generating mouse wparams get the modifier
27582         keys from the ModifierKeys property.
27583
27584 2004-12-17  Jackson Harper  <jackson@ximian.com>
27585
27586         * X11Keyboard.cs: Send up/down input when generating
27587         messages. Remove some unused vars.
27588
27589 2004-12-17  Jackson Harper  <jackson@ximian.com>
27590
27591         * TabControl.cs:
27592         * TreeView.cs: get rid of warnings.
27593
27594 2004-12-17  Jackson Harper  <jackson@ximian.com>
27595
27596         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
27597
27598 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
27599
27600         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
27601           CheckedListBox.cs: Implementation
27602
27603 2004-12-17  Peter Bartok  <pbartok@novell.com>
27604
27605         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
27606
27607 2004-12-16  Peter Bartok  <pbartok@novell.com>
27608
27609         * TextControl.cs:
27610           - InsertCharAtCaret(): Fixed start pos fixup
27611           - CaretLine_get: No longer derives the line from the tag, the tag
27612             could be stale if lines in the document have been added or deleted
27613           - RebalanceAfterDelete(): Fixed bug in balancing code
27614           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
27615           - Line.Streamline(): Now can also elminate leading empty tags
27616           - DumpTree(): Added a few more tests and prevented exception on
27617             uninitialized data
27618           - Added Debug section for Combining lines
27619           - Delete(): Now copies all remaining properties of a line
27620           
27621         * TextBoxBase.cs:
27622           - Left mousebutton now sets the caret (and middle button still acts
27623             as formatting tester, which must go away soon)
27624           - Added Debug section for Deleting/Combining lines
27625           - Fixed calculations for UpdateView after Combining lines
27626
27627 2004-12-16  Peter Bartok  <pbartok@novell.com>
27628
27629         * TextControl.cs: Now properly aligns text on a baseline, using the
27630           new XplatUI.GetFontMetrics() method. Simplified several calculations
27631         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
27632           defined
27633
27634 2004-12-16  Peter Bartok  <pbartok@novell.com>
27635
27636         * XplatUI.cs: Added GetFontMetrics() method
27637         * XplatUIDriver.cs: Added GetFontMetrics() abstract
27638         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
27639           into libgdiplus, our private GetFontMetrics function
27640         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
27641         * XplatUIWin32.cs: Implemented GetFontMetrics() method
27642
27643 2004-12-16  Jackson Harper  <jackson@ximain.com>
27644
27645         * XplatUIStruct.cs: Add enum for dead keys
27646         * X11Keyboard.cs: Map and unmap dead keys.
27647
27648 2004-12-16  Jackson Harper  <jackson@ximian.com>
27649
27650         * X11Keyboard.cs: Detect and use the num lock mask.
27651
27652 2004-12-16  Peter Bartok  <pbartok@novell.com>
27653
27654         * Control.cs (CreateGraphics): Added check to make sure the
27655           handle of the window exists before calling Graphics.FromHwnd()
27656
27657 2004-12-16  Peter Bartok  <pbartok@novell.com>
27658
27659         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
27660           contains a lot of code that's not supposed to be there for the
27661           real thing, but required for developing/testing the textbox
27662           backend.
27663
27664 2004-12-16  Peter Bartok  <pbartok@novell.com>
27665
27666         * TextControl.cs:
27667         - Fixed Streamline method
27668         - Added FindTag method to Line
27669         - Added DumpTree method for debugging
27670         - Added DecrementLines() method for deleting lines
27671         - Fixed UpdateView to update the cursor to end-of-line on single-line
27672           updates
27673         - Added PositionCaret() method
27674         - Fixed MoveCaret(LineDown) to move into the last line, too
27675         - Added InsertChar overload
27676         - Fixed InsertChar tag offset calculations
27677         - Added DeleteChar() method
27678         - Added Combine() method for folding lines
27679         - Fixed Delete() method, no longer allocates wasted Line object and
27680           now copies all properties when swapping nodes
27681         - Delete() method now updates document line counter
27682
27683 2004-12-15  Jackson Harper  <jackson@ximian.com>
27684
27685         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
27686         * X11Keyboard.cs: Expose the currently selected modifier keys
27687         through a property.
27688
27689 2004-12-15  Peter Bartok  <pbartok@novell.com>
27690
27691         * TextControl.cs: Initial check-in. Still incomplete
27692
27693 2004-12-15  Jackson Harper  <jackson@ximian.com>
27694
27695         * TreeNode.cs:
27696         * TreeView.cs: Fix build on csc (second time today ;-))
27697
27698 2004-12-15  Jackson Harper  <jackson@ximian.com>
27699
27700         * TreeView.cs: Store the treenodes plus/minus box bounds when it
27701         is calculated and use this for click testing.
27702         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
27703
27704 2004-12-15  Jackson Harper  <jackson@ximian.com>
27705
27706         * TreeView.cs: Pass the nodes image index to the image list when
27707         drawing that image.
27708
27709 2004-12-15  Jackson Harper  <jackson@ximian.com>
27710
27711         * X11Keyboard.cs: Set messages hwnd.
27712         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
27713         post_message calls.
27714
27715 2004-12-15  Jackson Harper  <jackson@ximian.com>
27716
27717         * X11Keyboard.cs: Fix to compile with csc.
27718         
27719 2004-12-15  Jackson Harper  <jackson@ximian.com>
27720
27721         * X11Structs.cs: Add key mask values
27722         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
27723         * X11Keyboard.cs: New file - Extrapolates and interpolates key
27724         down/up foo into WM_CHAR foo
27725         * KeyboardLayouts.cs: Common keyboard layouts
27726         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
27727         post messages into the main queue.
27728
27729 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
27730
27731         * Button.cs: implement ProcessMnemonic
27732         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
27733           brushes everytime
27734         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
27735         * ButtonBase.cs: Show HotkeyPrefix (not the &)
27736
27737 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
27738         
27739         * MonthCalendar.cs: Implemented click-hold for next/previous month
27740           and date selection
27741           
27742 2004-12-11  Peter Bartok  <pbartok@novell.com>
27743
27744         * X11Structs.cs:
27745           - Added XKeyboardState (moved from XplatUIX11.cs)
27746           - Added XCreateGC related enums and structures
27747           - Added GXFunction for XSetFunction
27748
27749         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
27750
27751         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
27752           CaretVisible() calls
27753
27754         * ToolTip.cs: Added code to prevent stealing focus from app windows
27755
27756         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
27757           DestroyCaret, SetCaretPos and CaretVisible)
27758
27759         * XplatUIX11.cs:
27760           - Added implementation for caret functions
27761           - Moved hover variables into a struct, to make it a bit easier
27762             on the eyes and to debug
27763           - Removed XKeyboardState (moved to XplatUIX11.cs)
27764           - Moved Keyboard properties into the properties region
27765
27766         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
27767           call to get a graphics context for our control
27768
27769         * XplatUIOSX.cs: Added empty overrides for the new caret functions
27770
27771         * TreeView.cs: Fixed bug. No matter what color was set it would always
27772           return SystemColors.Window
27773
27774         * XplatUIWin32.cs: Implemented caret overrides
27775
27776 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
27777
27778         * ListBox.cs: fire events, implement missing methods and properties,
27779         sorting.
27780
27781 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
27782
27783         * MonthCalendar.cs: invalidation bug fixing
27784         * ThemeWin32Classic.cs: paint fixing
27785
27786 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
27787
27788         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
27789         prepare the CGContextRef there now.
27790
27791 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
27792
27793         * MonthCalendar.cs:
27794           - optimisationL only invalidate areas that have changed
27795         * ThemeWin32Classic.cs:
27796           - only paint parts that intersect with clip_area
27797
27798 2004-12-09  Peter Bartok  <pbartok@novell.com>
27799
27800         * Application.cs: Undid changes from r37004 which cause problems
27801         on X11
27802
27803 2004-12-09  Ravindra  <rkumar@novell.com>
27804
27805         * ToolBar.cs: Added support for displaying ContextMenu
27806         attached to a button on ToolBar.
27807         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
27808         property.
27809
27810 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27811
27812         * Label.cs: autosize works in text change and removes unnecessary
27813         invalidate
27814
27815 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27816
27817         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
27818         remove warnings
27819
27820 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
27821
27822         * XplatUIOSX.cs: Added mouse move/click/grab support
27823         Remove some debugging WriteLines not needed anymore.
27824         Add window resizing/positioning.
27825         Fix visibility on reparenting.
27826
27827 2004-12-08  Peter Bartok  <pbartok@novell.com>
27828
27829         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
27830
27831 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
27832
27833         * XplatUIOSX.cs: Initial checkin
27834         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
27835
27836 2004-12-03  Ravindra <rkumar@novell.com>
27837
27838         * ListView.cs: Added some keybindings and fixed scrolling.
27839         ScrollBars listen to ValueChanged event instead of Scroll
27840         Event. This would let us take care of all changes being
27841         done in the scrollbars' values programmatically or manually.
27842         * ListView.cs (CanMultiselect): Added a check for shift key.
27843         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
27844         * ListViewItem.cs (Clone): Fixed. We need to make a copy
27845         of ListViewSubItemCollection as well.
27846
27847 2004-12-06  Peter Bartok <pbartok@novell.com>
27848
27849         * Control.cs (Parent): Added check and exception to prevent
27850         circular parenting
27851
27852 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
27853
27854         * ListBox.cs: implemented clipping, selection single and multiple,
27855         bug fixing
27856
27857 2004-12-03  Ravindra <rkumar@novell.com>
27858
27859         * ListView.cs (ListView_KeyDown):
27860         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
27861         when CTRL key is pressed.
27862         * ListViewItem.cs (Selected): Fixed setting the property.
27863
27864 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27865
27866         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
27867
27868         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
27869         MinimizeBox, ShowInTaskbar, TopMost properties.
27870
27871         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
27872         will be implemented).
27873
27874 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27875
27876         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
27877
27878         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
27879         tests.
27880         
27881         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
27882         
27883         * TreeView.cs: BackColor is Colors.Window.
27884
27885 2004-12-01  Jackson Harper  <jackson@ximian.com>
27886
27887         * TreeView.cs: When resizing the tree if the user is making it
27888         smaller we don't get expose events, so we need to handle adding
27889         the horizontal scrollbar in the size changed handler as well as
27890         the expose handler.
27891
27892 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
27893
27894         * DrawItemState.cs: fixes wrong enum values
27895
27896 2004-12-01  Jackson Harper  <jackson@ximian.com>
27897
27898         * TreeView.cs: Resize the hbar as well as the vbar on resize.
27899
27900 2004-12-01  Jackson Harper  <jackson@ximian.com>
27901
27902         * NodeLabelEditEventArgs.cs:
27903         * NodeLabelEditEventHandler.cs:
27904         * OpenTreeNodeEnumerator.cs:
27905         * TreeNode.cs:
27906         * TreeNodeCollection.cs:
27907         * TreeView.cs:
27908         * TreeViewAction.cs:
27909         * TreeViewCancelEventArgs.cs:
27910         * TreeViewCancelEventHandler.cs:
27911         * TreeViewEventArgs.cs:
27912         * TreeViewEventHandler.cs: Initial implementation.
27913
27914 2004-12-01  Ravindra <rkumar@novell.com>
27915
27916         * ListView.cs (CalculateListView): Fixed scrolling related
27917         calculations. Also, removed some debug statements from other
27918         places.
27919         * ListViewItem.cs: Changed access to 'selected' instance variable
27920         from private to internal.
27921         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
27922
27923 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
27924
27925         * ThemeWin32Classic.cs: remove cache of brush and pens for
27926         specific controls and use the global system, fixes scrollbutton
27927         bugs (for small sizes, disabled, etc)
27928         
27929         * ScrollBar.cs: does not show the thumb for very small controls
27930         (as MS) and allow smaller buttons that the regular size
27931
27932 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
27933
27934         * UpDownBase.cs: Add abstract methods for the interface.
27935         Add new virtual methods (need to be hooked up to TextEntry when it
27936         exists).
27937         Add override methods for most features.
27938         Computes the size, forces the height of the text entry.
27939
27940         * NumericUpDown.cs: Put here the current testing code.
27941
27942         * Set eol-style property on all files that do not have mixed line
27943         endings, to minimize the future problems.  There are still a few
27944         files with mixed endings, and someone should choose whether they
27945         want to move it or not.
27946
27947 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
27948
27949         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
27950         System.Colors
27951         
27952 2004-11-30  Ravindra <rkumar@novell.com>
27953
27954         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
27955         drawing and replaced use of SystemColors by theme colors.
27956         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
27957         * ListView.cs (ListViewItemCollection.Add): Throw exception when
27958         same ListViewItem is being added more than once.
27959
27960 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
27961
27962         * MonthCalendar.cs:
27963           - ControlStyles love to make the control not flicker
27964           
27965 2004-11-30  Peter Bartok  <pbartok@novell.com>
27966
27967         * CharacterCasing.cs: Added
27968
27969 2004-11-29  Peter Bartok  <pbartok@novell.com>
27970
27971         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
27972           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
27973           I am removing these files as they conflict with already completed
27974           work. While it is fantastic to get contributions to MWF, I
27975           respectfully ask that everyone please coordinate their contributions
27976           through mono-winforms-list or #mono-winforms at this time. We're
27977           explicitly avoiding stubbing and don't want controls that don't have
27978           their basic functionality implemented in svn. Please also see
27979           http://www.mono-project.com/contributing/winforms.html
27980
27981
27982 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
27983
27984         * Application.cs (ModalRun): Don't hang after exit.
27985
27986         * Theme.cs: New TreeViewDefaultSize property.
27987
27988         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
27989         with less hardcoded SystemColors constant.
27990         Implemented TreeViewDefaultSize.
27991
27992         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
27993         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
27994
27995
27996 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
27997
27998         * MonthCalendar.cs:
27999           - Fix NextMonthDate and PrevMonthDate click moving calendar
28000
28001 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
28002
28003         * MonthCalendar.cs:
28004           - Fix usage of ScrollChange Property when scrolling months
28005
28006 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
28007
28008         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
28009          - Fixes menu destroying
28010          - Support adding and removing items on already created menus
28011
28012 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
28013
28014         * MonthCalendar.cs:
28015           - Re-worked all bolded dates handling to match win32
28016         * ThemeWin32Classic.cs:
28017           - Fixed rendering with bolded dates
28018
28019 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
28020
28021         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
28022         - Horizontal scroolbar
28023         - Multicolumn
28024         - Fixes
28025
28026
28027 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
28028
28029         * MonthCalendar.cs:
28030           - Fix Usage of MaxSelectionCount from SelectionRange
28031           - Fixed Shift + Cursor Selection
28032           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
28033           - Fixed normal cursor selection to be compat with win32
28034           - Fixed Shift + Mouse Click selection
28035
28036 2004-11-24  Peter Bartok <pbartok@novell.com>
28037
28038         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
28039         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
28040         * XplatUIX11.cs:
28041           - CreatedKeyBoardMsg now updates keystate with Alt key
28042           - Added workaround for timer crash to CheckTimers, Jackson will
28043             develop a proper fix and check in later
28044           - Implemented DispatchMessage
28045           - Removed calling the native window proc from GetMessage (call
28046             now moved to DispatchMessage)
28047
28048         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
28049           the keydata (Fixes bug #69831)
28050
28051         * XplatUIWin32.cs:
28052           - (DispatchMessage): Switched to return IntPtr
28053           - Added DllImport for SetFocus
28054
28055 2004-11-24  Ravindra <rkumar@novell.com>
28056
28057         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
28058         background drawing.
28059         * ListViewItem.cs: Fixed various properties, calculations
28060         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
28061         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
28062         and some internal properties. Fixed MouseDown handler and Paint
28063         method.
28064
28065 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28066
28067         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
28068
28069 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28070
28071         * ContainerControl.cs: correct accidental check in of local changes
28072
28073 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28074
28075         * ThemeWin32Classic.cs:
28076                 - Fixed Drawing Last month in grid (sometimes not showing)
28077         * MonthCalendar.cs:
28078                 - Fixed title width calculation bug (makeing title small)
28079
28080 2004-11-23  Peter Bartok <pbartok@novell.com>
28081
28082         * XplatUIX11.cs:
28083           - Added generation of WM_MOUSEHOVER event
28084           - Added missing assignment of async_method atom
28085           - Fixed WM_ERASEBKGND; now only redraws the exposed area
28086
28087 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
28088
28089         * ThemeWin32Classic.cs:
28090                 - Fixed Drawing of today circle when showtodaycircle not set
28091                 - fixed drawing of first and last month in the grid (gay dates)
28092         * MonthCalendar.cs:
28093                 - Fixed Drawing of today circle
28094                 - Fixed drawing of grady dates
28095                 - Fixed HitTest for today link when ShowToday set to false
28096                 - Fixed DefaultSize to obey ShowToday
28097
28098 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
28099
28100         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
28101         * System.Windows.Forms/Theme.cs
28102         * MonthCalendar.cs: added for MonthCalendar
28103         * SelectionRange.cs: added for MonthCalendar
28104         * Day.cs: added for MonthCalendar: added for MonthCalendar
28105         * DateRangeEventArgs.cs: added for MonthCalendar
28106         * DateRangeEventHandler.cs: added for MonthCalendar
28107
28108 2004-11-22  Ravindra <rkumar@novell.com>
28109
28110         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
28111         property.
28112
28113 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
28114
28115         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
28116         event handler.
28117         
28118         * NumericUpDown.cs: Added new implementation.
28119         * UpDownBase.cs: Added new implementation.
28120
28121         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
28122         implementations.
28123         
28124         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
28125         implementations.
28126
28127         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
28128         methods.
28129
28130 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
28131
28132         * Timer.cs  (Dispose): Should call the base dispose when
28133         overriding.
28134
28135 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
28136
28137         * ScrollBar.cs: updates thumb position when max, min or increment
28138         is changed
28139
28140 2004-11-21  Ravindra <rkumar@novell.com>
28141
28142         * ListView.cs: Implemented item selection, activation and
28143         column header style. Fixed properties to do a redraw, if
28144         required. Added support for MouseHover, DoubleClick, KeyDown
28145         and KeyUp event handling and some minor fixes.
28146         * ListViewItem.cs: Fixed constructor.
28147         * ThemeWin32Classic.cs: Improved drawing for ListView.
28148
28149 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
28150
28151         * ThemeWin32Classic.cs: initial listbox drawing code
28152         * DrawMode.cs: new enumerator
28153         * ListControl.cs: stubbed class
28154         * ListBox.cs: initial implementation
28155         * Theme.cs: new methods definitions
28156         * SelectionMode.cs: new enumerator
28157
28158 2004-11-17  Peter Bartok  <pbartok@novell.com>
28159
28160         * XplatUIWin32.cs: Added double-click events to the class style
28161         * Control.cs (WndProc):
28162           - Added handling of click-count to MouseDown/ MouseUp events.
28163           - Added handling of middle and right mouse buttons
28164           - Removed old debug code
28165
28166 2004-11-17  Jackson Harper  <jackson@ximian.com>
28167
28168         * XplatUIX11.cs: Use the new Mono.Unix namespace.
28169
28170 2004-11-17  Ravindra <rkumar@novell.com>
28171
28172         * ListView.cs: Added event handling for MouseMove/Up/Down.
28173         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
28174         * ThemeWin32Classic.cs: We need to clear the graphics context and
28175         draw column header in a proper state.
28176
28177
28178 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
28179
28180         *  Menu.cs: fixes signature
28181
28182 2004-11-16  Peter Bartok  <pbartok@novell.com>
28183
28184         * XplatUIX11.cs (GetMessage): Implemented generation of
28185           double click mouse messages
28186
28187 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
28188
28189         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
28190         not by menu
28191
28192 2004-11-11  Peter Bartok  <pbartok@novell.com>
28193
28194         * HandleData.cs: Added Visible property
28195         * XplatUIX11.cs (IsVisible): Now uses Visible property from
28196           HandleData
28197         * XplatUIX11.cs: Removed old debug leftovers
28198         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
28199         * Control.cs (WndProc): Removed old debug leftovers,
28200           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
28201           needed WM_SIZE handling
28202
28203 2004-11-11  Jackson Harper  <jackson@ximian.com>
28204
28205         * OwnerDrawPropertyBag.cs:
28206         * TreeViewImageIndexConverter.cs: Initial implementation
28207
28208 2004-11-10  Jackson Harper  <jackson@ximian.com>
28209
28210         * ThemeWin32Classic.cs:
28211         * TabControl.cs: instead of moving tabs by the slider pos just
28212         start drawing at the tab that is offset by the slider. This way
28213         scrolling always moves by exactly one tab.
28214
28215 2004-11-10  Jackson Harper  <jackson@ximian.com>
28216
28217         * TabControl.cs: You can only scroll left when the slider has
28218         already ben moved right.
28219         
28220 2004-11-10  Jackson Harper  <jackson@ximian.com>
28221
28222         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
28223         the clip area.
28224         
28225 2004-11-10  Jackson Harper  <jackson@ximian.com>
28226
28227         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
28228         clip area.
28229         
28230 2004-11-09  Jackson Harper  <jackson@ximian.com>
28231
28232         * TabControl.cs (CalcXPos): New helper method so we can determine
28233         the proper place to start drawing vertical tabs.
28234         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
28235         
28236 2004-11-09  Jackson Harper  <jackson@ximian.com>
28237
28238         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
28239         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
28240         and Bottom, left and right are illegal values for this and
28241         multiline is enabled when the alignment is set to left or right.
28242         (DrawTab): Each alignment block should draw the text itself now
28243         because Left requires special love. Also add rendering for Left
28244         aligned tabs.
28245         
28246 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
28247
28248         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
28249         does not destroy the windows, removes debugging messages
28250
28251 2004-11-09  jba  <jba-mono@optusnet.com.au>
28252
28253         * ThemeWin32Classic.cs
28254         (DrawButtonBase): Fix verticle text rect clipping in windows
28255         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
28256         rendering and incorrect text rect clipping
28257         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
28258         rendering and incorrect text rect clipping
28259         
28260 2004-11-08  Jackson Harper  <jackson@ximian.com>
28261
28262         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
28263         bottom when they are bottom aligned so the bottoms of the tabs get
28264         displayed.
28265         * TabControl.cs (DropRow): Move rows up instead of down when the
28266         tab control is bottom aligned.
28267
28268 2004-11-08 13:59  pbartok
28269
28270         * XplatUIX11.cs:
28271           - Added handling for various window styles
28272           - Added handling for popup windows
28273           - Added SetTopmost handling
28274
28275 2004-11-08 13:55  pbartok
28276
28277         * XplatUIWin32.cs:
28278           - Added argument to SetTopmost method
28279           - Fixed broken ClientToScreen function
28280
28281 2004-11-08 13:53  pbartok
28282
28283         * XplatUIStructs.cs:
28284           - Added missing WS_EX styles
28285
28286 2004-11-08 13:53  pbartok
28287
28288         * XplatUI.cs, XplatUIDriver.cs:
28289           - Added argument to SetTopmost
28290
28291 2004-11-08 13:52  pbartok
28292
28293         * X11Structs.cs:
28294           - Added XSetWindowAttributes structure
28295           - Improved XWindowAttributes structure
28296           - Added SetWindowValuemask enum
28297           - Added window creation arguments enum
28298           - Added gravity enum
28299           - Added Motif hints structure
28300           - Added various Motif flags and enums
28301           - Added PropertyMode enum for property functions
28302
28303 2004-11-08 13:50  pbartok
28304
28305         * Form.cs:
28306           - Fixed arguments for updated SetTopmost method
28307
28308 2004-11-08 13:49  pbartok
28309
28310         * ToolTip.cs:
28311           - Fixed arguments for updated SetTopmost function
28312           - Fixed usage of PointToClient
28313
28314 2004-11-08 13:44  pbartok
28315
28316         * MenuAPI.cs:
28317           - Added Clipping of children and siblings
28318
28319 2004-11-08 13:41  pbartok
28320
28321         * MainMenu.cs:
28322           - Removed SetMenuBarWindow call. We do this in Form.cs
28323
28324 2004-11-08 13:40  jackson
28325
28326         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
28327           scrolling jimmi in the correct location with bottom aligned tabs
28328
28329 2004-11-08 13:36  pbartok
28330
28331         * ContainerControl.cs:
28332           - Implemented BindingContext
28333           - Implemented ParentForm
28334
28335 2004-11-08 12:46  jackson
28336
28337         * TabControl.cs: Put bottom rendered tabs in the right location
28338
28339 2004-11-08 07:15  jordi
28340
28341         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
28342           removes dead code
28343
28344 2004-11-05 17:30  jackson
28345
28346         * TabControl.cs: When selected tabs are expanded make sure they
28347           don't go beyond the edges of the tab control
28348
28349 2004-11-05 14:57  jackson
28350
28351         * TabControl.cs: Reset show_slider so if the control is resized to
28352           a size where it is no longer needed it's not displayed anymore
28353
28354 2004-11-05 13:16  jackson
28355
28356         * TabControl.cs: Make tab pages non visible when added to the
28357           control
28358
28359 2004-11-05 12:42  jackson
28360
28361         * TabControl.cs: Implement SizeMode.FillToRight
28362
28363 2004-11-05 12:16  jackson
28364
28365         * Control.cs: Do not call CreateHandle if the handle is already
28366           created
28367
28368 2004-11-05 11:46  jackson
28369
28370         * TabControl.cs: Remove superflous call to CalcTabRows
28371
28372 2004-11-05 09:07  jackson
28373
28374         * XplatUIX11.cs: Update for Mono.Posix changes
28375
28376 2004-11-05 07:00  ravindra
28377
28378         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
28379           scrolling.
28380
28381 2004-11-04 22:47  jba
28382
28383         * ThemeWin32Classic.cs:
28384           - Fix Button rendering for FlatStyle = Flat or Popup
28385           - Fix RadioButton and CheckBox rendering when Appearance = Button
28386             (normal and flatstyle).
28387           - Correct outer rectangle color when drawing focus rectangle
28388           - Adjust button bounds to be 1 px smaller when focused
28389           - Make button not draw sunken 3d border when pushed (windows compat)
28390           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
28391           - Offset the text in RadioButton and Checkbox when being rendered as
28392           a button.
28393           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
28394           radiobuttons
28395           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
28396           - Fixed disabled text rendering for normally rendered radiobuttons
28397
28398 2004-11-04 10:26  jackson
28399
28400         * TabControl.cs: Recalculate tab rows when resizing
28401
28402 2004-11-04 07:47  jordi
28403
28404         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
28405           collection completion, drawing issues, missing features
28406
28407 2004-11-04 05:03  ravindra
28408
28409         * ScrollBar.cs:
28410                 - We need to recalculate the Thumb area when
28411                 LargeChange/maximum/minimum values are changed.
28412           - We set the 'pos' in UpdatePos() method to minimum, if it's less
28413                 than minimum. This is required to handle the case if large_change is
28414                 more than max, and use LargeChange property instead of large_change
28415                 variable.
28416           - We return max+1 when large_change is more than max, like MS does.
28417
28418 2004-11-04 04:29  ravindra
28419
28420         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
28421                 - Changed default value signatures (prefixed all with ListView).
28422                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
28423                 ListView.
28424           - Fixed calculations for ListViewItem and implemented Clone()
28425           method.
28426
28427 2004-11-04 04:26  ravindra
28428
28429         * Theme.cs, ThemeWin32Classic.cs:
28430                 - Changed default ListView values signatures (prefixed all with
28431                 ListView).
28432           - Fixed default size values for VScrollBar and HScrollBar.
28433                 - Fixed DrawListViewItem method.
28434
28435 2004-11-04 04:05  ravindra
28436
28437         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
28438
28439 2004-11-04 04:04  ravindra
28440
28441         * ImageList.cs: Implemented the missing overload for Draw method.
28442
28443 2004-11-03 19:29  jackson
28444
28445         * TabControl.cs: Handle dropping rows on selection properly
28446
28447 2004-11-03 11:59  jackson
28448
28449         * TabControl.cs: remove debug code
28450
28451 2004-11-03 11:52  jackson
28452
28453         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
28454           the scrolly widgerywoo
28455
28456 2004-11-02 13:52  jackson
28457
28458         * TabControl.cs: Resize the tab pages and tabs when the tab control
28459           is resized
28460
28461 2004-11-02 13:40  jackson
28462
28463         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
28464           selected tab to the bottom
28465
28466 2004-11-02 13:39  jackson
28467
28468         * TabPage.cs: Store the tab pages row
28469
28470 2004-11-02 12:33  jordi
28471
28472         * MenuItem.cs: fixes handle creation
28473
28474 2004-11-02 11:42  jackson
28475
28476         * TabControl.cs: signature fix
28477
28478 2004-11-02 08:56  jackson
28479
28480         * TabControl.cs: Calculate whether the tab is on an edge properly.
28481           Remove top secret debugging code
28482
28483 2004-11-01 19:57  jackson
28484
28485         * TabControl.cs: Add click handling, and proper sizing
28486
28487 2004-11-01 19:47  jackson
28488
28489         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
28490           tab controls
28491
28492 2004-11-01 19:39  jackson
28493
28494         * TabPage.cs: add internal property to store the bounds of a tab
28495           page
28496
28497 2004-10-30 04:23  ravindra
28498
28499         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
28500           values.
28501
28502 2004-10-30 04:21  ravindra
28503
28504         * ListView.cs, ListViewItem.cs: Added support for scrolling and
28505           fixed calculations.
28506
28507 2004-10-30 03:06  pbartok
28508
28509         * XplatUIX11.cs:
28510           - Removed extension of DllImported libs
28511
28512 2004-10-29 09:55  jordi
28513
28514         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
28515           navigation, itemcollection completion, menu fixes
28516
28517 2004-10-27 22:58  pbartok
28518
28519         * XplatUIX11.cs:
28520           - Now throws a nice error message when no X display could be opened
28521
28522 2004-10-26 13:51  jordi
28523
28524         * ListView.cs: removes warning
28525
28526 2004-10-26 03:55  ravindra
28527
28528         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
28529           ThemeWin32Classic.cs: Some formatting for my last checkins.
28530
28531 2004-10-26 03:36  ravindra
28532
28533         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
28534           control and default values.
28535
28536 2004-10-26 03:35  ravindra
28537
28538         * Theme.cs: Added some default values for ListView control.
28539
28540 2004-10-26 03:33  ravindra
28541
28542         * ToolBar.cs: ToolBar should use the user specified button size, if
28543           there is any. Added a size_specified flag for the same.
28544
28545 2004-10-26 03:33  ravindra
28546
28547         * ColumnHeader.cs: Added some internal members and calculations for
28548           ColumnHeader.
28549
28550 2004-10-26 03:32  ravindra
28551
28552         * ListViewItem.cs: Calculations for ListViewItem.
28553
28554 2004-10-26 03:31  ravindra
28555
28556         * ListView.cs: Added some internal members and calculations for
28557           ListView.
28558
28559 2004-10-22 13:31  jordi
28560
28561         * MenuAPI.cs: speedup menus drawing
28562
28563 2004-10-22 13:16  jackson
28564
28565         * XplatUIX11.cs: Make sure to update exposed regions when adding an
28566           expose event
28567
28568 2004-10-22 11:49  jackson
28569
28570         * Control.cs: oops
28571
28572 2004-10-22 11:41  jackson
28573
28574         * Control.cs: Check to see if the window should have its background
28575           repainted by X when drawing.
28576
28577 2004-10-22 11:31  jackson
28578
28579         * XplatUIX11.cs: When invalidating areas only use XClearArea if
28580           clear is true, this way we do not get flicker from X repainting the
28581           background
28582
28583 2004-10-22 11:28  jackson
28584
28585         * XEventQueue.cs: Queue properly
28586
28587 2004-10-21 09:38  jackson
28588
28589         * XEventQueue.cs: Fix access modifier
28590
28591 2004-10-21 09:36  jackson
28592
28593         * XEventQueue.cs: Don't loose messages
28594
28595 2004-10-21 09:22  jackson
28596
28597         * XEventQueue.cs: Don't loose messages
28598
28599 2004-10-20 04:15  jordi
28600
28601         * BootMode.cs: enum need it by SystemInfo
28602
28603 2004-10-19 21:58  pbartok
28604
28605         * XplatUIWin32.cs:
28606           - Small sanity check
28607
28608 2004-10-19 21:56  pbartok
28609
28610         * Form.cs:
28611           - Added private FormParentWindow class which acts as the container
28612             for our form and as the non-client area where menus are drawn
28613           - Added/Moved required tie-ins to Jordi's menus
28614           - Fixed/Implemented the FormStartPosition functionality
28615
28616 2004-10-19 21:52  pbartok
28617
28618         * Control.cs:
28619           - Removed unneeded locals
28620           - Added code to all size and location properties to understand and
28621             deal with the parent container of Form
28622
28623 2004-10-19 21:33  pbartok
28624
28625         * Application.cs:
28626           - Fixed to deal with new Form subclasses for menus
28627
28628 2004-10-19 17:48  jackson
28629
28630         * XEventQueue.cs: commit correct version of file
28631
28632 2004-10-19 16:50  jackson
28633
28634         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
28635
28636 2004-10-19 16:15  jordi
28637
28638         * MenuAPI.cs: MenuBarCalcSize returns the height
28639
28640 2004-10-19 08:31  pbartok
28641
28642         * Control.cs:
28643           - Added missing call to PreProcessMessage before calling OnXXXKey
28644           methods
28645
28646 2004-10-19 00:04  ravindra
28647
28648         * ToolTip.cs: Fixed constructor.
28649
28650 2004-10-18 09:31  jordi
28651
28652         * MenuAPI.cs: menuitems in menubars do not have shortcuts
28653
28654 2004-10-18 09:26  jordi
28655
28656         * MenuItem.cs: fixes MenuItem class signature
28657
28658 2004-10-18 08:56  jordi
28659
28660         * MenuAPI.cs: prevents windows from showing in the taskbar
28661
28662 2004-10-18 00:28  ravindra
28663
28664         * ToolTip.cs: Suppressed a warning message.
28665
28666 2004-10-18 00:27  ravindra
28667
28668         * Control.cs: Default value of visible property must be true.
28669
28670 2004-10-17 23:19  pbartok
28671
28672         * ToolTip.cs:
28673           - Complete implementation
28674
28675 2004-10-17 23:19  pbartok
28676
28677         * XplatUIX11.cs:
28678           - Added EnableWindow method
28679           - Added SetModal stub
28680           - Added generation of WM_ACTIVATE message (still needs testing)
28681           - Added SetTopMost stub
28682           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
28683
28684 2004-10-17 23:17  pbartok
28685
28686         * XplatUIWin32.cs:
28687           - Removed VirtualKeys to XplatUIStructs
28688           - Implemented SetTopMost method
28689           - Implemented EnableWindow method
28690           - Bugfix in ScreenToClient()
28691           - Bugfixes in ClientToScreen()
28692
28693 2004-10-17 22:51  pbartok
28694
28695         * XplatUIStructs.cs:
28696           - Added WS_EX styles to WindowStyles enumeration
28697
28698 2004-10-17 22:50  pbartok
28699
28700         * XplatUI.cs, XplatUIDriver.cs:
28701           - Added method for enabling/disabling windows
28702           - Added method for setting window modality
28703           - Added method for setting topmost window
28704
28705 2004-10-17 22:49  pbartok
28706
28707         * ThemeWin32Classic.cs:
28708           - Added ToolTip drawing code
28709
28710 2004-10-17 22:49  pbartok
28711
28712         * Theme.cs:
28713           - Added ToolTip abstracts
28714
28715 2004-10-17 22:47  pbartok
28716
28717         * Form.cs:
28718           - Fixed Form.ControlCollection to handle owner relations
28719           - Added Owner/OwnedForms handling
28720           - Implemented Z-Ordering for owned forms
28721           - Removed unneeded private overload of ShowDialog
28722           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
28723             so I hope)
28724           - Fixed Close(), had wrong default
28725           - Added firing of OnLoad event
28726           - Added some commented out debug code for Ownership handling
28727
28728 2004-10-17 22:16  pbartok
28729
28730         * Control.cs:
28731           - Fixed/implemented flat list of controls
28732
28733 2004-10-17 22:14  pbartok
28734
28735         * Application.cs:
28736           - Added code to simulate modal dialogs on Win32
28737
28738 2004-10-17 16:11  jordi
28739
28740         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
28741           mouse event
28742
28743 2004-10-17 13:39  jordi
28744
28745         * MenuAPI.cs: menu drawing fixes
28746
28747 2004-10-15 09:10  ravindra
28748
28749         * StructFormat.cs: General Enum.
28750
28751 2004-10-15 09:09  ravindra
28752
28753         * SizeGripStyle.cs: Enum for Form.
28754
28755 2004-10-15 09:08  ravindra
28756
28757         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
28758           in Theme for ListView.
28759
28760 2004-10-15 09:06  ravindra
28761
28762         * ColumnHeader.cs: Flushing some formatting changes.
28763
28764 2004-10-15 09:05  ravindra
28765
28766         * ListViewItem.cs: Implemented GetBounds method and fixed coding
28767           style.
28768
28769 2004-10-15 09:03  ravindra
28770
28771         * ListView.cs: Implemented Paint method and fixed coding style.
28772
28773 2004-10-15 07:34  jordi
28774
28775         * MenuAPI.cs: fix for X11
28776
28777 2004-10-15 07:32  ravindra
28778
28779         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
28780                 - Renamed Paint() method to Draw() for clarity. Also, moved
28781                 DrawImage() to OnPaint().
28782
28783 2004-10-15 07:25  ravindra
28784
28785         * CheckBox.cs, RadioButton.cs:
28786                 - Removed Redraw (), we get it from ButtonBase.
28787                 - Implemented Paint (), to do class specific painting.
28788
28789 2004-10-15 07:16  ravindra
28790
28791         * ButtonBase.cs:
28792                 - Redraw () is not virtual now.
28793                 - Added an internal virtual method Paint (), so that
28794                 derived classes can do their painting on their own.
28795                 - Modified OnPaint () to call Paint ().
28796
28797 2004-10-15 06:43  jordi
28798
28799         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
28800           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
28801
28802 2004-10-15 00:30  ravindra
28803
28804         * MessageBox.cs:
28805                 - MessageBox on windows does not have min/max buttons.
28806                 This change in CreateParams fixes this on Windows. We
28807                 still need to implement this windowstyle behavior in
28808                 our X11 driver.
28809
28810 2004-10-14 05:14  ravindra
28811
28812         * ToolBar.cs:
28813                 - Changed Redraw () to do a Refresh () always.
28814                 - Fixed the MouseMove event handling when mouse is pressed,
28815                 ie drag event handling.
28816                 - Replaced the usage of ToolBarButton.Pressed property to
28817                 ToolBarButton.pressed internal variable.
28818
28819 2004-10-14 05:10  ravindra
28820
28821         * ToolBarButton.cs:
28822                 - Added an internal member 'inside' to handle mouse move
28823                 with mouse pressed ie mouse drag event.
28824                 - Changed 'Pressed' property to return true only when
28825                 'inside' and 'pressed' are both true.
28826                 - Some coding style love.
28827
28828 2004-10-14 00:17  ravindra
28829
28830         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
28831           public method.
28832
28833 2004-10-14 00:15  ravindra
28834
28835         * ButtonBase.cs: Redraw () related improvements.
28836
28837 2004-10-14 00:14  ravindra
28838
28839         * MessageBox.cs: Moved InitFormSize () out of Paint method and
28840           removed unnecessary calls to Button.Show () method.
28841
28842 2004-10-13 17:50  pbartok
28843
28844         * XplatUIX11.cs:
28845           - Formatting fix
28846           - Removed destroying of window until we solve the problem of X
28847             destroying the window before us on shutdown
28848
28849 2004-10-13 16:32  pbartok
28850
28851         * ButtonBase.cs:
28852           - Now Redraws on MouseUp for FlatStyle Flat and Popup
28853
28854 2004-10-13 14:18  pbartok
28855
28856         * XplatUIX11.cs:
28857           - Added code to destroy the X window
28858
28859 2004-10-13 14:18  pbartok
28860
28861         * XplatUIWin32.cs:
28862           - Added code to destroy a window
28863
28864 2004-10-13 14:12  pbartok
28865
28866         * ButtonBase.cs:
28867           - Added the Redraw on Resize that got dropped in the last rev
28868
28869 2004-10-13 09:06  pbartok
28870
28871         * ThemeWin32Classic.cs:
28872           - Path from John BouAntoun:
28873             * Fix check rendering (centre correctly for normal style, offset
28874               correctly for FlatStyle).
28875             * Fix border color usage (use backcolor) for FlatStyle.Popup
28876             * Use checkbox.Capture instead of checkbox.is_pressed when
28877               rendering flatstyle states.
28878
28879 2004-10-12 21:48  pbartok
28880
28881         * ThemeWin32Classic.cs:
28882           - Removed all occurences of SystemColors and replaced them with the
28883             matching theme color
28884
28885 2004-10-12 21:41  pbartok
28886
28887         * ThemeWin32Classic.cs:
28888           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
28889             him using the function for flatstyle drawing
28890           - Changed functions to use the new version of CPDrawBorder3D
28891
28892 2004-10-12 21:15  pbartok
28893
28894         * ControlPaint.cs:
28895           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
28896             match MS documentation. They need to return defined colors if the
28897             passed color matches the configured control color. Thanks to John
28898             BouAntoun for pointing this out.
28899
28900 2004-10-12 20:57  pbartok
28901
28902         * Control.cs:
28903           - Fix from John BouAntoun: Raise ForeColorChanged event when text
28904             color is changed
28905
28906 2004-10-12 20:46  pbartok
28907
28908         * CheckBox.cs:
28909           - Fix from John BouAntoun: Now properly sets the Appearance property
28910
28911 2004-10-12 20:45  pbartok
28912
28913         * ThemeWin32Classic.cs:
28914           - Fixes from John BouAntoun: now handles forecolors and backcolors
28915             for flatstyle rendered controls much better; It also fixes normal
28916             checkbox rendering when pushed or disabled.
28917
28918 2004-10-08 02:50  jordi
28919
28920         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
28921           work
28922
28923 2004-10-07 08:56  jordi
28924
28925         * ThemeWin32Classic.cs: Removes deletion of cached brushes
28926
28927 2004-10-06 03:59  jordi
28928
28929         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
28930           XplatUIWin32.cs: removes warnings from compilation
28931
28932 2004-10-05 12:23  jackson
28933
28934         * RadioButton.cs: Fix ctor
28935
28936 2004-10-05 11:10  pbartok
28937
28938         * MessageBox.cs:
28939           - Partial implementation by Benjamin Dasnois
28940
28941 2004-10-05 10:15  jackson
28942
28943         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
28944           by John BouAntoun
28945
28946 2004-10-05 03:07  ravindra
28947
28948         * ToolBar.cs:
28949                 - Removed a private method, Draw ().
28950                 - Fixed the ButtonDropDown event handling.
28951                 - Fixed MouseMove event handling.
28952
28953 2004-10-05 03:04  ravindra
28954
28955         * ThemeWin32Classic.cs:
28956                 - Added DrawListView method and ListViewDefaultSize property.
28957                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
28958                 - Changed DOS style CRLF to Unix format (dos2unix).
28959
28960 2004-10-05 03:03  ravindra
28961
28962         * Theme.cs:
28963                 - Added DrawListView method and ListViewDefaultSize property.
28964
28965 2004-10-05 02:42  ravindra
28966
28967         * ToolBarButton.cs: Added an internal member dd_pressed to handle
28968           clicks on DropDown arrow.
28969
28970 2004-10-04 22:56  jackson
28971
28972         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
28973           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
28974           Control handle the buffers, derived classes should not have to
28975           CreateBuffers themselves.
28976
28977 2004-10-04 21:20  jackson
28978
28979         * StatusBar.cs: The control handles resizing the buffers now.
28980
28981 2004-10-04 21:18  jackson
28982
28983         * Control.cs: When resizing the buffers should be invalidated. This
28984           should be handled in Control not in derived classes.
28985
28986 2004-10-04 14:45  jackson
28987
28988         * TabPage.cs: oops
28989
28990 2004-10-04 02:14  pbartok
28991
28992         * LeftRightAlignment.cs:
28993           - Initial check-in
28994
28995 2004-10-04 01:09  jordi
28996
28997         * ThemeWin32Classic.cs: fixes right button position causing right
28998           button not showing on horizontal scrollbars
28999
29000 2004-10-02 13:12  pbartok
29001
29002         * XplatUIX11.cs:
29003           - Simplified the Invalidate method by using an X call instead of
29004             generating the expose ourselves
29005           - Added an expose when the window background is changed
29006           - Implemented ClientToScreen method
29007
29008 2004-10-02 13:08  pbartok
29009
29010         * XplatUIWin32.cs:
29011           - Added Win32EnableWindow method (test for implementing modal
29012           dialogs)
29013           - Added ClientToScreen method and imports
29014
29015 2004-10-02 13:07  pbartok
29016
29017         * XplatUI.cs, XplatUIDriver.cs:
29018           - Added ClientToScreen coordinate translation method
29019
29020 2004-10-02 13:06  pbartok
29021
29022         * KeyPressEventArgs.cs:
29023           - Fixed access level for constructor
29024
29025 2004-10-02 13:06  pbartok
29026
29027         * NativeWindow.cs:
29028           - Changed access level for the window_collection hash table
29029
29030 2004-10-02 13:05  pbartok
29031
29032         * Form.cs:
29033           - Added KeyPreview property
29034           - Added Menu property (still incomplete, pending Jordi's menu work)
29035           - Implemented ProcessCmdKey
29036           - Implemented ProcessDialogKey
29037           - Implemented ProcessKeyPreview
29038
29039 2004-10-02 13:02  pbartok
29040
29041         * Control.cs:
29042           - Added private method to get the Control object from the window
29043           handle
29044           - Implemented ContextMenu property
29045           - Implemented PointToScreen
29046           - Implemented PreProcessMessage
29047           - Implemented IsInputChar
29048           - Implemented IsInputKey
29049           - Implemented ProcessCmdKey
29050           - Completed ProcessKeyEventArgs
29051           - Fixed message loop to call the proper chain of functions on key
29052           events
29053           - Implemented ProcessDialogChar
29054           - Implemented ProcessDialogKey
29055           - Implemented ProcessKeyMessage
29056           - Implemented ProcessKeyPreview
29057           - Added RaiseDragEvent stub (MS internal method)
29058           - Added RaiseKeyEvent stub (MS internal method)
29059           - Added RaiseMouseEvent stub (MS Internal method)
29060           - Added RaisePaintEvent stub (MS Internal method)
29061           - Added ResetMouseEventArgs stub (MS Internal method)
29062           - Implemented RtlTranslateAlignment
29063           - Implemented RtlTranslateContent
29064           - Implemented RtlTranslateHorizontal
29065           - Implemented RtlTranslateLeftRight
29066           - Added generation of KeyPress event
29067
29068 2004-10-02 05:57  ravindra
29069
29070         * ListViewItem.cs: Added attributes.
29071
29072 2004-10-02 05:32  ravindra
29073
29074         * ListView.cs: Added attributes.
29075
29076 2004-10-01 11:53  jackson
29077
29078         * Form.cs: Implement the Close method so work on MessageBox can
29079           continue.
29080
29081 2004-09-30 14:06  pbartok
29082
29083         * XplatUIX11.cs:
29084           - Bug fixes
29085
29086 2004-09-30 11:34  jackson
29087
29088         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
29089
29090 2004-09-30 07:26  ravindra
29091
29092         * ListViewItemConverter.cs: Converter for ListViewItem.
29093
29094 2004-09-30 07:26  ravindra
29095
29096         * SortOrder.cs: Enum for ListView control.
29097
29098 2004-09-30 07:25  ravindra
29099
29100         * ColumnHeader.cs: Supporting class for ListView control.
29101
29102 2004-09-30 07:24  ravindra
29103
29104         * ListView.cs, ListViewItem.cs: Initial implementation.
29105
29106 2004-09-30 07:20  ravindra
29107
29108         * ItemActivation.cs: Enum for ListView Control.
29109
29110 2004-09-29 20:29  pbartok
29111
29112         * XplatUIX11.cs:
29113           - Added lookup of pixel value for background color; tries to get a
29114             color 'close' to the requested color, it avoids having to create a
29115             colormap.  Depending on the display this could mean the used color
29116             is slightly off the desired color. Might have to change it to a more
29117             resource intensive colormap approach, but it will work as a
29118           workaround to avoid red screens.
29119
29120 2004-09-29 14:27  jackson
29121
29122         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
29123
29124 2004-09-28 12:44  pbartok
29125
29126         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
29127           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
29128           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
29129           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
29130           TrackBar.cs, VScrollBar.cs:
29131           - Streamlined Theme interfaces:
29132             * Each DrawXXX method for a control now is passed the object for
29133               the control to be drawn in order to allow accessing any state the
29134               theme might require
29135
29136             * ControlPaint methods for the theme now have a CP prefix to avoid
29137               name clashes with the Draw methods for controls
29138
29139             * Every control now retrieves it's DefaultSize from the current
29140             theme
29141
29142 2004-09-28 12:17  jackson
29143
29144         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
29145           drawing
29146
29147 2004-09-24 14:57  jackson
29148
29149         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
29150           Gives us a nice little performance boost.
29151
29152 2004-09-24 12:02  jackson
29153
29154         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
29155           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
29156           Control and supporting classes. Initial checkin
29157
29158 2004-09-23 13:08  jackson
29159
29160         * Form.cs: Temp build fixage
29161
29162 2004-09-23 01:39  ravindra
29163
29164         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
29165           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
29166           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
29167           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
29168           EventHandlers needed by ListView Control.
29169
29170 2004-09-22 14:12  pbartok
29171
29172         * ScrollableControl.cs:
29173           - Implemented DockPadding property
29174           - Implemented AutoScroll property
29175           - Implemented AutoScrollMargin property
29176           - Implemented AutoScrollMinSize property
29177           - Implemented AutoScrollPosition property
29178           - Implemented DisplayRectangle property (still incomplete)
29179           - Implemented CreateParams property
29180           - Implemented HScroll property
29181           - Implemented VScroll property
29182           - Implemented OnVisibleChanged property
29183
29184 2004-09-22 14:09  pbartok
29185
29186         * Form.cs:
29187           - Added Form.ControllCollection class
29188           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
29189             RemoveOwnedForm (still incomplete, missing on-top and common
29190             minimize/maximize behaviour)
29191           - Added StartPosition property (still incomplete, does not use when
29192             creating the form)
29193           - Added ShowDialog() methods (still incomplete, missing forcing the
29194             dialog modal)
29195
29196 2004-09-22 14:05  pbartok
29197
29198         * Application.cs:
29199           - Added message loop for modal dialogs
29200
29201 2004-09-22 14:02  pbartok
29202
29203         * GroupBox.cs:
29204           - Fixed wrong types for events
29205
29206 2004-09-22 14:00  pbartok
29207
29208         * Shortcut.cs, FormWindowState.cs:
29209           - Fixed wrong values
29210
29211 2004-09-22 12:01  jackson
29212
29213         * Control.cs: Text is never null
29214
29215 2004-09-20 22:14  pbartok
29216
29217         * XplatUIWin32.cs:
29218           - Fixed accessibility level for Idle handler
29219
29220 2004-09-20 18:54  jackson
29221
29222         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29223           XplatUIX11.cs: New message loop that uses poll so we don't get a
29224           busy loop
29225
29226 2004-09-17 10:43  pbartok
29227
29228         * ScrollBar.cs:
29229           - Fixed behaviour of arrow buttons. Now properly behaves like
29230             Buttons (and like Microsoft's scrollbar arrow buttons)
29231
29232 2004-09-17 10:14  pbartok
29233
29234         * ScrollBar.cs:
29235           - Added missing release of keyboard/mouse capture
29236
29237 2004-09-17 06:18  jordi
29238
29239         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
29240           Theme.cs: Very early menu support
29241
29242 2004-09-16 17:45  pbartok
29243
29244         * XplatUIWin32.cs:
29245           - Fixed sending a window to the front
29246           - Added overload for SetWindowPos to avoid casting
29247
29248 2004-09-16 17:44  pbartok
29249
29250         * Control.cs:
29251           - Added SendToBack and BringToFront methods
29252
29253 2004-09-16 07:00  ravindra
29254
29255         * Copyright: Added Novell URL.
29256
29257 2004-09-16 07:00  ravindra
29258
29259         * ToolBar.cs: Invalidate should be done before redrawing.
29260
29261 2004-09-15 21:19  ravindra
29262
29263         * ColumnHeaderStyle.cs: Enum for ListView Control.
29264
29265 2004-09-15 21:18  ravindra
29266
29267         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
29268           ListView Control.
29269
29270 2004-09-13 18:26  jackson
29271
29272         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
29273           properly
29274
29275 2004-09-13 18:13  jackson
29276
29277         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
29278           a second thread and post messages into the main threads message
29279           queue. This makes timing much more consistent. Both win2K and XP
29280           have a minimum timer value of 15 milliseconds, so we now do this
29281           too.
29282
29283 2004-09-13 15:18  pbartok
29284
29285         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29286           XplatUIX11.cs:
29287           - Added Z-Ordering methods
29288
29289 2004-09-13 10:56  pbartok
29290
29291         * Form.cs:
29292           - Fixed #region names
29293           - Moved properties and methods into their proper #regions
29294
29295 2004-09-13 10:51  pbartok
29296
29297         * Form.cs:
29298           - Added Accept and CancelButton properties
29299           - Added ProcessDialogKey() method
29300
29301 2004-09-13 08:18  pbartok
29302
29303         * IWindowTarget.cs:
29304           - Initial check-in
29305
29306 2004-09-10 21:50  pbartok
29307
29308         * Control.cs:
29309           - Added DoDragDrop() [incomplete]
29310           - Properly implemented 'Visible' handling
29311           - Added SetVisibleCore()
29312           - Implemented FindChildAtPoint()
29313           - Implemented GetContainerControl()
29314           - Implemented Hide()
29315
29316 2004-09-10 19:28  pbartok
29317
29318         * Control.cs:
29319           - Moved methods into their appropriate #regions
29320           - Reordered methods within regions alphabetically
29321
29322 2004-09-10 18:57  pbartok
29323
29324         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29325           - Added method to retrieve text from window
29326
29327 2004-09-10 18:56  pbartok
29328
29329         * Control.cs:
29330           - Moved some internal functions into the internal region
29331           - Implemented FontHeight
29332           - Implemented RenderRightToLeft
29333           - Implemented ResizeRedraw
29334           - Implemented ShowFocusCues
29335           - Implemented ShowKeyboardCues
29336           - Implemented FromChildHandle
29337           - Implemented FromHandle
29338           - Implemented IsMnemonic
29339           - Implemented ReflectMessage
29340           - All public and protected Static Methods are now complete
29341
29342 2004-09-10 16:54  pbartok
29343
29344         * Control.cs:
29345           - Implemented remaining missing public instance properties
29346           - Alphabetized some out of order properties
29347
29348 2004-09-10 05:51  ravindra
29349
29350         * PictureBox.cs: Added a check for null image.
29351
29352 2004-09-10 00:59  jordi
29353
29354         * GroupBox.cs: remove cvs tag
29355
29356 2004-09-09 05:25  ravindra
29357
29358         * ToolBar.cs: Make redraw accessible from ToolBarButton.
29359
29360 2004-09-09 05:23  ravindra
29361
29362         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
29363           parent redraw.
29364
29365 2004-09-09 02:28  pbartok
29366
29367         * ThemeWin32Classic.cs:
29368           - Improve disabled string look
29369
29370 2004-09-09 01:15  jordi
29371
29372         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
29373           args and handler
29374
29375 2004-09-08 23:56  ravindra
29376
29377         * ItemBoundsPortion.cs: It's enum, not a class!
29378
29379 2004-09-08 23:47  ravindra
29380
29381         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
29382           Enums for Form.
29383
29384 2004-09-08 21:13  ravindra
29385
29386         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
29387           ListView control.
29388
29389 2004-09-08 21:03  ravindra
29390
29391         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
29392           avoid crash.
29393
29394 2004-09-08 21:01  ravindra
29395
29396         * ScrollableControl.cs: Removed unreachable code.
29397
29398 2004-09-08 06:45  jordi
29399
29400         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
29401
29402 2004-09-08 01:00  jackson
29403
29404         * XplatUIX11.cs: Only run the timers when updating the message
29405           queue. This effectively gives X messages a higher priority then
29406           timer messages. Timers still need love though
29407
29408 2004-09-07 14:01  jackson
29409
29410         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
29411           this for us and the handle is no longer valid.
29412
29413 2004-09-07 13:59  jackson
29414
29415         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
29416           loop that manages to not crash. TODO: Add poll and cleanup timers
29417
29418 2004-09-07 11:12  jordi
29419
29420         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
29421
29422 2004-09-07 03:40  jordi
29423
29424         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
29425           fixes, methods, multiple links
29426
29427 2004-09-06 06:55  jordi
29428
29429         * Control.cs: Caches ClientRectangle rectangle value
29430
29431 2004-09-05 02:03  jordi
29432
29433         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
29434           certain situations
29435
29436 2004-09-04 11:10  jordi
29437
29438         * Label.cs: Refresh when font changed
29439
29440 2004-09-02 16:24  pbartok
29441
29442         * Control.cs:
29443           - Added sanity check to creation of double buffer bitmap
29444
29445 2004-09-02 16:24  pbartok
29446
29447         * ButtonBase.cs:
29448           - Fixed selection of text color
29449           - Fixed handling of resize event; now properly recreates double
29450             buffering bitmap
29451           - Added missing assignment of TextAlignment
29452           - Added proper default for TextAlignment
29453
29454 2004-09-02 14:26  pbartok
29455
29456         * RadioButton.cs:
29457           - Added missing RadioButton.RadioButtonAccessibleObject class
29458
29459 2004-09-02 14:26  pbartok
29460
29461         * Control.cs:
29462           - Added missing Control.ControlAccessibleObject class
29463           - Started to implement Select()ion mechanisms, still very incomplete
29464
29465 2004-09-02 14:25  pbartok
29466
29467         * AccessibleObject.cs:
29468           - Added missing methods
29469
29470 2004-09-02 14:23  pbartok
29471
29472         * AccessibleNavigation.cs, AccessibleSelection.cs:
29473           - Initial check-in
29474
29475 2004-09-02 10:32  jordi
29476
29477         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
29478           pool for pens, brushes, and hatchbruses
29479
29480 2004-09-01 15:30  jackson
29481
29482         * StatusBar.cs: Fix typo
29483
29484 2004-09-01 14:44  pbartok
29485
29486         * RadioButton.cs:
29487           - Fixed state
29488
29489 2004-09-01 14:39  pbartok
29490
29491         * Button.cs, RadioButton.cs:
29492           - Functional initial check-in
29493
29494 2004-09-01 14:01  pbartok
29495
29496         * CheckBox.cs:
29497           - Added missing default
29498           - Added missing region mark
29499
29500 2004-09-01 09:10  jordi
29501
29502         * Label.cs: fixes method signatures, new methods, events, fixes
29503           autosize
29504
29505 2004-09-01 07:19  jordi
29506
29507         * Control.cs: Init string variables with an empty object
29508
29509 2004-09-01 04:20  jordi
29510
29511         * Control.cs: fires OnFontChanged event
29512
29513 2004-08-31 20:07  pbartok
29514
29515         * ButtonBase.cs:
29516           - Enabled display of strings
29517
29518 2004-08-31 20:05  pbartok
29519
29520         * Form.cs:
29521           - Added (partial) implementation of DialogResult; rest needs to be
29522             implemented when the modal loop code is done
29523
29524 2004-08-31 19:55  pbartok
29525
29526         * CheckBox.cs:
29527           - Fixed to match the removal of the needs_redraw concept
29528
29529 2004-08-31 19:55  pbartok
29530
29531         * ButtonBase.cs:
29532           - Removed the rather odd split between 'needs redraw' and redrawing
29533           - Now handles the events that require regeneration (ambient
29534             properties and size)
29535
29536 2004-08-31 19:41  pbartok
29537
29538         * Control.cs:
29539           - Added firing of BackColorChanged event
29540           - Added TopLevelControl property
29541           - Fixed handling of WM_ERASEBKGRND message
29542
29543 2004-08-31 12:49  pbartok
29544
29545         * ButtonBase.cs:
29546           - Removed debug
29547           - Minor fixes
29548
29549 2004-08-31 12:48  pbartok
29550
29551         * CheckBox.cs:
29552           - Finished (famous last words)
29553
29554 2004-08-31 04:35  jordi
29555
29556         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
29557           scrolling bugs, adds new methods
29558
29559 2004-08-30 14:42  pbartok
29560
29561         * CheckBox.cs:
29562           - Implemented CheckBox drawing code
29563
29564 2004-08-30 14:42  pbartok
29565
29566         * ButtonBase.cs:
29567           - Made Redraw() and CheckRedraw() virtual
29568           - Improved mouse up/down/move logic to properly track buttons
29569
29570 2004-08-30 09:44  pbartok
29571
29572         * CheckBox.cs:
29573           - Updated to fix broken build. Not complete yet.
29574
29575 2004-08-30 09:28  pbartok
29576
29577         * CheckState.cs:
29578           - Initial checkin
29579
29580 2004-08-30 09:17  pbartok
29581
29582         * Appearance.cs:
29583           - Initial check-in
29584
29585 2004-08-27 16:12  ravindra
29586
29587         * ToolBarButton.cs: Added TypeConverter attribute.
29588
29589 2004-08-27 16:07  ravindra
29590
29591         * ImageIndexConverter.cs: Implemented.
29592
29593 2004-08-27 14:17  pbartok
29594
29595         * Control.cs:
29596           - Removed unneeded stack vars
29597           - First attempt to fix sizing issues when layout is suspended
29598
29599 2004-08-25 15:35  jordi
29600
29601         * ScrollBar.cs: more fixes to scrollbar
29602
29603 2004-08-25 14:04  ravindra
29604
29605         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
29606           Added the missing divider code and grip for ToolBar Control.
29607
29608 2004-08-25 13:20  pbartok
29609
29610         * Control.cs:
29611           - Control now properly passes the ambient background color to child
29612             controls
29613
29614 2004-08-25 13:20  jordi
29615
29616         * ScrollBar.cs: small bug fix regarding bar position
29617
29618 2004-08-25 12:33  pbartok
29619
29620         * Timer.cs:
29621           - Now only calls SetTimer or KillTimer if the enabled state has
29622           changed
29623
29624 2004-08-25 12:33  pbartok
29625
29626         * XplatUIWin32.cs:
29627           - Fixed timer handling, now seems to work
29628           - Improved error message for window creation
29629
29630 2004-08-25 12:32  pbartok
29631
29632         * Control.cs:
29633           - Fixed generation of MouseUp message
29634
29635 2004-08-25 12:29  jordi
29636
29637         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
29638           and fixes for progressbar
29639
29640 2004-08-24 18:43  ravindra
29641
29642         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
29643           in ToolBar control.
29644
29645 2004-08-24 17:15  pbartok
29646
29647         * Panel.cs:
29648           - Added #region
29649           - Added missing events
29650           - Alphabetized
29651
29652 2004-08-24 17:14  pbartok
29653
29654         * StatusBar.cs, PictureBox.cs:
29655           - Now uses Control's CreateParams
29656
29657 2004-08-24 16:36  pbartok
29658
29659         * XplatUIX11.cs:
29660           - Fixed background color handling
29661           - Fixed sending of enter/leave events on a grab
29662
29663 2004-08-24 16:35  pbartok
29664
29665         * X11Structs.cs:
29666           - Refined definitions for CrossingEvent
29667
29668 2004-08-24 12:37  jordi
29669
29670         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
29671           formmating, methods signature, and adds missing events
29672
29673 2004-08-24 12:24  jordi
29674
29675         * Control.cs: fire OnEnabledChanged event
29676
29677 2004-08-24 11:17  pbartok
29678
29679         * XplatUIWin32.cs:
29680           - Implemented SetTimer() and KillTimer()
29681
29682 2004-08-24 11:16  pbartok
29683
29684         * XplatUIX11.cs:
29685           - Now uses Remove instead of Add to kill the timer
29686
29687 2004-08-24 10:16  jackson
29688
29689         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
29690           picture boxes in the theme now. Draw picture box borders and obey
29691           sizing modes
29692
29693 2004-08-24 05:49  jackson
29694
29695         * Timer.cs: Remove top secret debugging code
29696
29697 2004-08-24 05:34  jackson
29698
29699         * PictureBox.cs: Temp hack to make picture boxes draw their full
29700           image
29701
29702 2004-08-24 05:29  jackson
29703
29704         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29705           XplatUIX11.cs: Move timers to the driver level. On X they are
29706           queued by the driver and checked on idle.
29707
29708 2004-08-24 01:07  jackson
29709
29710         * XplatUIX11.cs: Use a queue for async messages instead of passing
29711           them as ClientMessages since that was totally broken. Also simply
29712           check for events and return an idle message if none are found. This
29713           gives us an idle handler, and prevents deadlocking when no messages
29714           are in the queue.
29715
29716 2004-08-23 18:19  ravindra
29717
29718         * XplatUIWin32.cs: Removed the unwanted destructor.
29719
29720 2004-08-23 17:27  pbartok
29721
29722         * ButtonBase.cs:
29723           - Finishing touches. Works now, just needs some optimizations.
29724
29725 2004-08-23 16:53  jordi
29726
29727         * ScrollBar.cs: small fix
29728
29729 2004-08-23 16:45  pbartok
29730
29731         * Application.cs:
29732           - Removed debug output
29733           - Simplifications
29734
29735 2004-08-23 16:43  jordi
29736
29737         * ScrollBar.cs: [no log message]
29738
29739 2004-08-23 16:10  pbartok
29740
29741         * Form.cs:
29742           - Fixed handling of WM_CLOSE message
29743           - Removed debug output
29744
29745 2004-08-23 16:09  pbartok
29746
29747         * Application.cs:
29748           - Added handling of Idle event
29749           - Added handling of form closing
29750           - Fixed reporting of MessageLoop property
29751           - Removed some unneeded code, should provide a bit of a speedup
29752
29753 2004-08-23 15:22  pbartok
29754
29755         * Control.cs:
29756           - Added InitLayout() method
29757           - Added code to properly perform layout when Anchor or Dock property
29758             is changed
29759           - Changed 'interpretation' of ResumeLayout. MS seems to have a
29760             LAMESPEC, tried to do it in a way that makes sense
29761
29762 2004-08-23 14:10  jordi
29763
29764         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
29765           properties and methods
29766
29767 2004-08-23 13:55  pbartok
29768
29769         * Control.cs:
29770           - Properly fixed Jordi's last fix
29771           - Now uses Cursor's Position property instead of calling XplatUI
29772           directly
29773
29774 2004-08-23 13:44  jordi
29775
29776         * PaintEventHandler.cs: Adding missing attribute
29777
29778 2004-08-23 13:39  pbartok
29779
29780         * Cursor.cs:
29781           - Implemented Position property
29782
29783 2004-08-23 13:39  pbartok
29784
29785         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29786           - Added method to move mouse cursor
29787
29788 2004-08-23 13:39  pbartok
29789
29790         * XplatUIX11.cs:
29791           - Fixed setting of background color
29792           - Added method to move mouse cursor
29793
29794 2004-08-23 13:16  jordi
29795
29796         * Control.cs: avoids null exception
29797
29798 2004-08-22 17:46  jackson
29799
29800         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
29801           PictureBox
29802
29803 2004-08-22 17:40  jackson
29804
29805         * XplatUIX11.cs: Add some missing locks
29806
29807 2004-08-22 15:10  pbartok
29808
29809         * Control.cs, Form.cs:
29810           - Removed OverlappedWindow style from Control, instead it's default
29811             now is child
29812           - Made form windows OverlappedWindow by default
29813
29814 2004-08-22 13:34  jackson
29815
29816         * ScrollBar.cs: Update the position through the Value property so
29817           the OnValueChanged event is raised.
29818
29819 2004-08-22 12:04  pbartok
29820
29821         * SWF.csproj:
29822           - Added Cursor.cs and UserControl.cs
29823
29824 2004-08-22 12:03  pbartok
29825
29826         * Cursor.cs:
29827           - Started implementation, not usable yet
29828
29829 2004-08-22 12:00  pbartok
29830
29831         * UserControl.cs:
29832           - Implemented UserControl (complete)
29833
29834 2004-08-21 19:20  ravindra
29835
29836         * ToolBar.cs: Correcting the formatting mess of VS.NET.
29837
29838 2004-08-21 18:49  ravindra
29839
29840         * ToolBar.cs: Probably this completes the missing attributes in
29841           toolbar control.
29842
29843 2004-08-21 18:03  ravindra
29844
29845         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
29846           Fixed toolbar control signatures.
29847
29848 2004-08-21 16:32  pbartok
29849
29850         * LinkLabel.cs:
29851           - Signature Fixes
29852
29853 2004-08-21 16:30  pbartok
29854
29855         * Label.cs:
29856           - Signature fixes
29857
29858 2004-08-21 16:19  pbartok
29859
29860         * Control.cs, Label.cs:
29861           - Signature fixes
29862
29863 2004-08-21 15:57  pbartok
29864
29865         * ButtonBase.cs:
29866           - Added loads of debug output for development
29867           - Fixed typo in method name
29868
29869 2004-08-21 15:52  pbartok
29870
29871         * ToolBarButtonClickEventArgs.cs:
29872           - Added missing base class
29873
29874 2004-08-21 14:53  pbartok
29875
29876         * Control.cs:
29877           - Updated to match new GrabWindow signature
29878
29879 2004-08-21 14:51  pbartok
29880
29881         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29882           - Added method to get default display size
29883
29884 2004-08-21 14:23  pbartok
29885
29886         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29887           - Added method to query current grab state
29888           - Added argument to allow confining a grab to a window
29889
29890 2004-08-21 14:22  pbartok
29891
29892         * Keys.cs:
29893           - Added [Flags] attribute so that modifiers can be used in bitwise
29894           ops
29895
29896 2004-08-21 14:21  pbartok
29897
29898         * TrackBar.cs, ScrollBar.cs:
29899           - Replaced direct XplatUI calls with their Control counterpart
29900
29901 2004-08-21 13:32  pbartok
29902
29903         * Control.cs:
29904           - Implemented Created property
29905
29906 2004-08-21 13:28  pbartok
29907
29908         * Control.cs:
29909           - Implemented ContainsFocus
29910
29911 2004-08-21 13:26  pbartok
29912
29913         * Control.cs:
29914           - Implemented CausesValidation
29915
29916 2004-08-21 13:21  pbartok
29917
29918         * Control.cs:
29919           - Implemented CanFocus
29920           - Implemented CanSelect
29921           - Implemented Capture
29922
29923 2004-08-21 12:35  pbartok
29924
29925         * XplatUIWin32.cs:
29926           - Fixed bug with Async message handling
29927           - Implemented getting the ModifierKeys
29928
29929 2004-08-21 12:32  jackson
29930
29931         * AsyncMethodResult.cs: Make sure we have the mutex before we
29932           release it. Fixes BeginInvoke on windows
29933
29934 2004-08-21 11:31  pbartok
29935
29936         * XplatUIWin32.cs, XplatUIX11.cs:
29937           - Drivers now return proper mouse state
29938
29939 2004-08-21 10:54  jackson
29940
29941         * Control.cs: Implement EndInvoke
29942
29943 2004-08-21 10:48  jackson
29944
29945         * Timer.cs: Remove unneeded finalizer
29946
29947 2004-08-20 19:52  ravindra
29948
29949         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
29950           in mouse event handling in the ToolBar control.
29951
29952 2004-08-20 19:50  ravindra
29953
29954         * ImageList.cs: Changed draw method to use the arguments passed in
29955           to draw the image.
29956
29957 2004-08-20 18:58  pbartok
29958
29959         * XplatUIStructs.cs:
29960           - Added private message for async communication
29961
29962 2004-08-20 17:38  ravindra
29963
29964         * Control.cs: Made RightToLeft property virtual and removed a
29965           Console.WriteLine.
29966
29967 2004-08-20 14:39  jordi
29968
29969         * ThemeGtk.cs: use style_attach
29970
29971 2004-08-20 14:39  pbartok
29972
29973         * XplatUIWin32.cs:
29974           - Added jackson's Async code from X11 to Win32
29975
29976 2004-08-20 14:09  pbartok
29977
29978         * SWF.csproj:
29979           - Added all new files
29980
29981 2004-08-20 14:09  pbartok
29982
29983         * Control.cs:
29984           - Added call to set window background color
29985
29986 2004-08-20 14:03  pbartok
29987
29988         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
29989           - Added method for setting the window background
29990
29991 2004-08-20 14:02  pbartok
29992
29993         * XplatUIWin32.cs:
29994           - Added method for setting the background color
29995           - Added handling for erasing the window background
29996
29997 2004-08-20 13:45  jordi
29998
29999         * TrackBar.cs: fixes timer, new properties and methods
30000
30001 2004-08-20 13:34  jackson
30002
30003         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
30004           correct thread
30005
30006 2004-08-20 13:22  jackson
30007
30008         * Timer.cs: Timer Tick events are now handed through Controls Async
30009           mechanism so the callbacks are executed in the same thread as X
30010
30011 2004-08-20 13:19  jackson
30012
30013         * XplatUIDriver.cs: Expose functionality to send async messages
30014           through the driver
30015
30016 2004-08-20 13:18  jackson
30017
30018         * Control.cs: Implement Begininvoke
30019
30020 2004-08-20 13:14  jackson
30021
30022         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
30023           messages through the driver
30024
30025 2004-08-20 13:12  jackson
30026
30027         * XplatUIX11.cs: Lock before all X operations. Also added Async
30028           method functionality through XSendEvent
30029
30030 2004-08-20 13:11  jackson
30031
30032         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
30033           This will screw up on 64 bit systems)
30034
30035 2004-08-20 13:10  jackson
30036
30037         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
30038           Async messages through X/Win32
30039
30040 2004-08-19 19:39  pbartok
30041
30042         * XplatUIX11.cs:
30043           - Updated code to match new HandleData.DeviceContext type
30044
30045 2004-08-19 19:38  pbartok
30046
30047         * HandleData.cs:
30048           - Made DeviceContext a generic object to allow usage from various
30049           drivers
30050           - Added support for queueing Windows messages
30051
30052 2004-08-19 19:37  pbartok
30053
30054         * XplatUIWin32.cs:
30055           - Added generation of MouseEnter, MouseLeave and MouseHover events
30056           - Added cleanup on EndPaint
30057
30058 2004-08-19 19:17  pbartok
30059
30060         * Control.cs:
30061           - Added handling of WM_MOUSEHOVER
30062           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
30063           code
30064
30065 2004-08-19 18:55  jordi
30066
30067         * ThemeGtk.cs: fixes button order
30068
30069 2004-08-19 18:12  jordi
30070
30071         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
30072
30073 2004-08-19 17:09  pbartok
30074
30075         * Control.cs:
30076           - Added Right property
30077           - Added RightToLeft property
30078
30079 2004-08-19 16:27  jordi
30080
30081         * ThemeGtk.cs: experimental GTK theme support
30082
30083 2004-08-19 16:26  jordi
30084
30085         * ITheme.cs, Theme.cs: move themes from an interface to a class
30086
30087 2004-08-19 16:25  jordi
30088
30089         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
30090           theme enhancaments
30091
30092 2004-08-19 16:04  pbartok
30093
30094         * XplatUIX11.cs:
30095           - Added colormap basics
30096           - Added a way to re-initialize with a different display handle
30097           - Fixed setting of the window background color
30098           - Added various X11 imports related to colors and colormaps
30099
30100 2004-08-19 15:51  pbartok
30101
30102         * X11Structs.cs:
30103           - Removed packing hints (Paolo suggested this a while back)
30104           - fixed colormap type
30105           - Added default Atom types
30106           - Added Screen and color structs and enums
30107
30108 2004-08-19 15:39  pbartok
30109
30110         * ImageList.cs:
30111           - Added missing Draw() method
30112           - Added missing RecreateHandle event
30113
30114 2004-08-19 15:30  pbartok
30115
30116         * Form.cs:
30117           - Added handling of WM_CLOSE
30118
30119 2004-08-18 13:16  jordi
30120
30121         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
30122           a table
30123
30124 2004-08-18 09:56  jordi
30125
30126         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
30127
30128 2004-08-17 15:31  ravindra
30129
30130         * SWF.csproj: Updated project.
30131
30132 2004-08-17 15:25  pbartok
30133
30134         * Control.cs:
30135           - Drawing improvement; don't call UpdateBounds if we are not visible
30136             (or have been minimized)
30137
30138 2004-08-17 15:24  pbartok
30139
30140         * XplatUIWin32.cs:
30141           - Finished IsVisible
30142           - Added Win32GetWindowPlacement
30143
30144 2004-08-17 15:08  jackson
30145
30146         * Panel.cs: Initial checkin of the Panel
30147
30148 2004-08-17 14:25  pbartok
30149
30150         * Control.cs:
30151           - Fixed broken handling of default window sizes
30152
30153 2004-08-17 13:29  jackson
30154
30155         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
30156           has a large startup time.
30157
30158 2004-08-17 10:25  jackson
30159
30160         * HandleData.cs: union areas properly
30161
30162 2004-08-17 10:12  jackson
30163
30164         * HandleData.cs: union areas properly
30165
30166 2004-08-16 20:00  ravindra
30167
30168         * ToolBar.cs, ToolBarButton.cs: Added attributes.
30169
30170 2004-08-16 18:48  ravindra
30171
30172         * ToolBar.cs: Added attributes.
30173
30174 2004-08-16 17:17  ravindra
30175
30176         * SWF.csproj: Updated project.
30177
30178 2004-08-16 17:16  jackson
30179
30180         * XplatUIX11.cs: Check for more expose events before sending a
30181           WM_PAINT so they can all be grouped together. This makes dragging a
30182           window across another window redraw in a sane way.
30183
30184 2004-08-16 15:47  pbartok
30185
30186         * Control.cs:
30187           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
30188             support OnMouseEnter/Leave()
30189           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
30190             exposure handling
30191
30192 2004-08-16 15:46  pbartok
30193
30194         * XplatUIStructs.cs, XplatUIX11.cs:
30195           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
30196           OnMouseEnter/Leave()
30197
30198 2004-08-16 15:34  jackson
30199
30200         * XplatUIX11.cs: Group multiple expose events in HandleData, make
30201           sure messages get the message field set to WM_NULL if they are not
30202           handled.
30203
30204 2004-08-16 15:24  jackson
30205
30206         * HandleData.cs: HandleData is used for storing message information
30207           for window handles
30208
30209 2004-08-15 17:23  ravindra
30210
30211         * ColorDepth.cs: Added attribute.
30212
30213 2004-08-15 17:23  ravindra
30214
30215         * SWF.csproj: Updated project for ToolBar Control.
30216
30217 2004-08-15 17:20  ravindra
30218
30219         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
30220           control and also dos2unix format.
30221
30222 2004-08-15 17:13  ravindra
30223
30224         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
30225           ToolBarButtonClickEventArgs.cs,
30226           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
30227           ToolBarTextAlign.cs: First Implementation of ToolBar control.
30228
30229 2004-08-15 15:31  pbartok
30230
30231         * ButtonBase.cs:
30232           - First (mostly) working version
30233
30234 2004-08-13 16:15  pbartok
30235
30236         * Control.cs:
30237           - Fixed Anchor default
30238
30239 2004-08-13 15:43  pbartok
30240
30241         * Control.cs:
30242           - Changed GetCursorPos signature
30243
30244 2004-08-13 15:42  pbartok
30245
30246         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
30247           - Changed signature for GetCursorPos
30248
30249 2004-08-13 15:25  pbartok
30250
30251         * XplatUIX11.cs:
30252           - Cleanup
30253           - Fixed resizing/exposure handling
30254
30255 2004-08-13 15:22  jordi
30256
30257         * ThemeWin32Classic.cs: removes redundant code and fixes issues
30258           with tickposition
30259
30260 2004-08-13 14:55  jordi
30261
30262         * TrackBar.cs: change from wndproc to events
30263
30264 2004-08-13 13:00  jordi
30265
30266         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30267           XplatUIX11.cs: implements PointToClient (ScreenToClient)
30268
30269 2004-08-13 12:53  pbartok
30270
30271         * XplatUIWin32.cs:
30272           - Changed GetWindowPos to also provide client area size
30273           - Fixed broken prototypes for several win32 functions
30274
30275 2004-08-13 12:53  pbartok
30276
30277         * XplatUI.cs, XplatUIDriver.cs:
30278           - Changed GetWindowPos to also provide client area size
30279
30280 2004-08-13 12:52  pbartok
30281
30282         * XplatUIX11.cs:
30283           - Added generation of WM_POSCHANGED
30284           - Changed GetWindowPos to also provide client area size
30285
30286 2004-08-13 12:52  pbartok
30287
30288         * Control.cs:
30289           - Added Dispose() and destructor
30290           - Fixed resizing and bounds calculation
30291           - Fixed Layout
30292           - Added memory savings for invisible windows
30293
30294 2004-08-13 12:46  jordi
30295
30296         * TrackBar.cs: adds timer and grap window
30297
30298 2004-08-13 10:25  jackson
30299
30300         * Timer.cs: SWF Timer
30301
30302 2004-08-12 16:59  pbartok
30303
30304         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30305           - Implemented method to get current mouse position
30306
30307 2004-08-12 14:29  jordi
30308
30309         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
30310           enhancement, fix mouse problems, highli thumb, etc
30311
30312 2004-08-12 13:31  pbartok
30313
30314         * Control.cs:
30315           - Fixed Anchoring bugs
30316
30317 2004-08-12 13:01  jackson
30318
30319         * StatusBar.cs: Don't forget things
30320
30321 2004-08-12 12:54  jackson
30322
30323         * ThemeWin32Classic.cs: Handle owner draw status bars
30324
30325 2004-08-12 12:54  jackson
30326
30327         * StatusBar.cs: Implement missing properties, events, and methods.
30328           Handle mouse clicking
30329
30330 2004-08-12 10:19  jackson
30331
30332         * StatusBarPanelClickEventArgs.cs,
30333           StatusBarPanelClickEventHandler.cs: Classes for handling status
30334           bar panel click events
30335
30336 2004-08-12 10:10  jackson
30337
30338         * Control.cs: Add missing properties
30339
30340 2004-08-12 09:46  pbartok
30341
30342         * BindingsManagerBase.cs:
30343           - Name changed to BindingManagerBase.cs
30344
30345 2004-08-12 09:25  jordi
30346
30347         * ScrollableControl.cs: calls ctrlbase instead of exeception
30348
30349 2004-08-11 16:28  pbartok
30350
30351         * InputLanguageChangingEventArgs.cs:
30352           - Never check in before compiling. Fixes the last check-in
30353
30354 2004-08-11 16:26  pbartok
30355
30356         * InputLanguageChangingEventArgs.cs:
30357           - More signature fixes
30358
30359 2004-08-11 16:20  pbartok
30360
30361         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
30362           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
30363           ImageListStreamer.cs, InputLanguage.cs,
30364           InputLanguageChangedEventArgs.cs,
30365           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
30366           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
30367           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
30368           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30369           - Signature fixes
30370
30371 2004-08-11 16:16  pbartok
30372
30373         * Application.cs:
30374           - Fixed Signature
30375           - Added .Net 1.1 method
30376
30377 2004-08-11 15:25  pbartok
30378
30379         * SWF.csproj:
30380           - Fixed BindingManagerBase.cs filename
30381
30382 2004-08-11 15:22  pbartok
30383
30384         * BindingManagerBase.cs:
30385           - Was checked in with wrong filename
30386
30387 2004-08-11 14:50  pbartok
30388
30389         * SWF.csproj:
30390           - Updated
30391
30392 2004-08-11 13:41  jordi
30393
30394         * XplatUIWin32.cs: Fixes ClientRect
30395
30396 2004-08-11 13:19  pbartok
30397
30398         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30399           XplatUIX11.cs:
30400           - We had SetWindowPos and MoveWindow to set window positions and
30401             size, removed MoveWindow. We have GetWindowPos, so it made sense to
30402             keep SetWindowPos as matching counterpart
30403           - Added some X11 sanity checking
30404
30405 2004-08-11 12:59  pbartok
30406
30407         * Control.cs:
30408           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
30409             (It seems that SetBounds is just a front for SetBoundsCore and
30410              SetBoundsCore updates the underlying window system and
30411              UpdateBounds is responsible for updating the variables associated
30412              with the Control and sending the events)
30413           - Major cleanup of Size handling; we now have two sizes, client_size
30414             and bounds. Bounds defines the window with decorations, client_size
30415             without them.
30416
30417 2004-08-11 12:55  pbartok
30418
30419         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30420           - Added method to calculate difference between decorated window and
30421             raw client area
30422
30423 2004-08-11 12:54  pbartok
30424
30425         * Label.cs:
30426           - Forcing redraw on resize
30427
30428 2004-08-11 11:43  pbartok
30429
30430         * ImageList.cs:
30431           - Removed disposing of the actual images when the list is disposed
30432
30433 2004-08-11 09:13  pbartok
30434
30435         * Control.cs:
30436           - Now properly reparents windows
30437
30438 2004-08-11 08:37  pbartok
30439
30440         * Control.cs:
30441           - Duh!
30442
30443 2004-08-11 07:47  pbartok
30444
30445         * Control.cs:
30446           - Rewrote the collection stuff. Might not be as fast now, not
30447             keeping the number of children around and accessible directly, but
30448             it's more straightforward
30449
30450 2004-08-11 07:44  pbartok
30451
30452         * AccessibleObject.cs:
30453           - Fixed to match ControlCollection rewrite
30454
30455 2004-08-11 07:43  pbartok
30456
30457         * ImageList.cs:
30458           - Added missing creation of the collection list
30459
30460 2004-08-10 20:08  jackson
30461
30462         * StatusBar.cs: Get the paint message from WndProc
30463
30464 2004-08-10 19:31  jackson
30465
30466         * ThemeWin32Classic.cs: Create Brushes as little as possible
30467
30468 2004-08-10 19:20  jackson
30469
30470         * UICues.cs: Add Flags attribute
30471
30472 2004-08-10 19:19  jackson
30473
30474         * StatusBarPanel.cs: Signature cleanup
30475
30476 2004-08-10 19:10  jackson
30477
30478         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
30479           Initial implementation of status bar item drawing
30480
30481 2004-08-10 17:27  jordi
30482
30483         * TrackBar.cs: add missing methods, properties, and restructure to
30484           hide extra ones
30485
30486 2004-08-10 16:24  jackson
30487
30488         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
30489           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
30490           attribute
30491
30492 2004-08-10 13:21  jordi
30493
30494         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
30495           enhancements and standarize on win colors defaults
30496
30497 2004-08-10 12:52  jackson
30498
30499         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
30500           ThemeWin32Classic.cs: Implement DrawItem functionality
30501
30502 2004-08-10 12:47  jordi
30503
30504         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
30505
30506 2004-08-10 12:32  jordi
30507
30508         * Control.cs: throw ontextchange event
30509
30510 2004-08-10 11:43  pbartok
30511
30512         * Control.cs:
30513           - Added more to the still unfinished Dock/Anchor layout code
30514
30515 2004-08-10 11:39  pbartok
30516
30517         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
30518           - Added GetWindowPos method
30519
30520 2004-08-10 11:36  pbartok
30521
30522         * XplatUIWin32.cs:
30523           - Implemented several methods
30524
30525 2004-08-10 09:47  jackson
30526
30527         * TrackBar.cs: Allow control to handle buffering
30528
30529 2004-08-10 09:41  jackson
30530
30531         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
30532
30533 2004-08-10 09:24  jackson
30534
30535         * Label.cs, LinkLabel.cs: Let Control handle buffering.
30536
30537 2004-08-10 09:09  jackson
30538
30539         * StatusBar.cs: Let Control handle all the buffering.
30540
30541 2004-08-10 09:08  jackson
30542
30543         * Control.cs: Control will now handle the buffering code, so each
30544           control does not have to implement this.
30545
30546 2004-08-10 08:34  jackson
30547
30548         * XplatUIDriver.cs: Use default colors from the theme
30549
30550 2004-08-09 17:12  pbartok
30551
30552         * ImageList.cs:
30553           - Fixed several bugs Ravindra pointed out
30554
30555 2004-08-09 16:11  pbartok
30556
30557         * Control.cs:
30558           - Added incomplete dock layout code
30559           - Added support for mouse wheel
30560
30561 2004-08-09 16:09  pbartok
30562
30563         * XplatUIX11.cs:
30564           - Added handling for middle and right mousebutton
30565           - Added handling for mouse wheel
30566           - Added handling for key state and mouse state and position
30567           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
30568           messages
30569
30570 2004-08-09 15:40  jackson
30571
30572         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
30573           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
30574           checkin
30575
30576 2004-08-09 15:37  jackson
30577
30578         * StatusBar.cs: Initial implementation of StatusBar
30579
30580 2004-08-09 15:36  jackson
30581
30582         * ITheme.cs: Add support for drawing status bar and getting status
30583           bar item sizes
30584
30585 2004-08-09 15:35  pbartok
30586
30587         * MouseButtons.cs:
30588           - Fixed values
30589
30590 2004-08-09 15:34  jackson
30591
30592         * ThemeWin32Classic.cs: Add support for drawing status bar and get
30593           status bar item sizes
30594
30595 2004-08-09 15:21  jackson
30596
30597         * ThemeWin32Classic.cs: Use known colors for default control
30598           colours
30599
30600 2004-08-09 15:12  jackson
30601
30602         * ThemeWin32Classic.cs: Make the default font static, it is static
30603           in control so this doesn't change functionality and creating fonts
30604           is sloooooow.
30605
30606 2004-08-09 14:56  pbartok
30607
30608         * X11Structs.cs:
30609           - Added GrabMode enum
30610
30611 2004-08-09 14:55  pbartok
30612
30613         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30614           - Removed Run method, was only required for initial development
30615
30616 2004-08-09 14:51  pbartok
30617
30618         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30619           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
30620           capture
30621
30622 2004-08-09 13:48  pbartok
30623
30624         * XplatUIX11.cs:
30625           - Fixed default sizing for child windows
30626
30627 2004-08-09 12:56  pbartok
30628
30629         * XplatUIX11.cs:
30630           - Added generation of WM_DESTROY message
30631           - Added handling of window manager induced shutdown
30632
30633 2004-08-09 11:31  jackson
30634
30635         * ThemeWin32Classic.cs: New names for control properties
30636
30637 2004-08-09 11:25  jackson
30638
30639         * Control.cs: Use new color names
30640
30641 2004-08-09 11:02  jackson
30642
30643         * XplatUI.cs: Get default window properties from the theme
30644
30645 2004-08-09 11:01  jackson
30646
30647         * ITheme.cs: The theme engine now controls default window
30648           properties
30649
30650 2004-08-09 11:00  jackson
30651
30652         * ThemeWin32Classic.cs: Add default window color properties
30653
30654 2004-08-09 10:17  jackson
30655
30656         * ThemeWin32Classic.cs: Use correct default back color
30657
30658 2004-08-09 10:05  jackson
30659
30660         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
30661           the theme now.
30662
30663 2004-08-09 09:56  jackson
30664
30665         * XplatUI.cs: Remove defaults, these are handled by the theme now.
30666
30667 2004-08-09 09:54  jackson
30668
30669         * Control.cs: Get default properties from the theme.
30670
30671 2004-08-09 09:53  jackson
30672
30673         * ITheme.cs: Themes now handle default control properties
30674
30675 2004-08-09 09:53  jackson
30676
30677         * ThemeWin32Classic.cs: Themes now handle default control
30678           properties so coloring will be consistent
30679
30680 2004-08-08 16:54  jordi
30681
30682         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
30683
30684 2004-08-08 15:08  jordi
30685
30686         * XplatUIX11.cs: fixes keyboard crash
30687
30688 2004-08-08 13:47  jordi
30689
30690         * Label.cs: add cvs header info
30691
30692 2004-08-08 12:09  jackson
30693
30694         * ThemeWin32Classic.cs: Add pen_buttonface
30695
30696 2004-08-08 11:52  jordi
30697
30698         * Label.cs, LinkLabel.cs: [no log message]
30699
30700 2004-08-08 11:34  jordi
30701
30702         * ThemeWin32Classic.cs: Use Windows Standard Colours
30703
30704 2004-08-07 17:32  jordi
30705
30706         * TrackBar.cs: throw exceptions of invalid enums values
30707
30708 2004-08-07 17:31  jordi
30709
30710         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
30711           draw method name
30712
30713 2004-08-07 16:56  jackson
30714
30715         * HorizontalAlignment.cs: Initial checkin
30716
30717 2004-08-07 13:16  jordi
30718
30719         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
30720           methods
30721
30722 2004-08-07 13:05  jordi
30723
30724         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
30725           GetSysColor defines
30726
30727 2004-08-06 18:01  pbartok
30728
30729         * ThemeWin32Classic.cs:
30730           - Fixed some rounding issues with float/int
30731
30732 2004-08-06 18:00  jackson
30733
30734         * DockStyle.cs, AnchorStyles.cs:
30735
30736                   Add flags and serializable attributes.
30737
30738 2004-08-06 17:46  pbartok
30739
30740         * XplatUIX11.cs:
30741           - Implemented GetParent
30742
30743 2004-08-06 17:18  pbartok
30744
30745         * TrackBar.cs:
30746           - Fixed some rounding issues with float/int
30747
30748 2004-08-06 17:17  pbartok
30749
30750         * X11Structs.cs, XplatUIX11.cs:
30751           - Fixed Refresh and Invalidate
30752
30753 2004-08-06 15:30  pbartok
30754
30755         * Control.cs, X11Structs.cs, XplatUIX11.cs:
30756           - Fixed recursive loop when resizing
30757           - Improved/fixed redrawing on expose messages
30758
30759 2004-08-06 09:53  jordi
30760
30761         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
30762           keyboard navigation
30763
30764 2004-08-06 08:02  pbartok
30765
30766         * X11Structs.cs, XplatUIX11.cs:
30767           - Fixed reparenting
30768           - Fixed window border creation
30769
30770 2004-08-05 15:38  pbartok
30771
30772         * XplatUIX11.cs:
30773           - Attempted fix for reparenting problems
30774
30775 2004-08-04 15:14  pbartok
30776
30777         * Control.cs:
30778           - Fixed Invalidation bug (calculated wrong client area)
30779           - Added ClientSize setter
30780
30781 2004-08-04 15:13  pbartok
30782
30783         * Form.cs:
30784           - Added AutoScale properties
30785
30786 2004-08-04 15:13  pbartok
30787
30788         * SWF.csproj:
30789           - Added latest files
30790
30791 2004-08-04 14:11  pbartok
30792
30793         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30794           XplatUIX11.cs:
30795           - Added Invalidate handling
30796
30797 2004-08-03 17:09  jordi
30798
30799         * XplatUIDriver.cs: fixes spelling mistake
30800
30801 2004-07-27 09:53  jordi
30802
30803         * TrackBar.cs: fixes trackbar events, def classname, methods
30804           signature
30805
30806 2004-07-27 09:29  jordi
30807
30808         * ScrollBar.cs: fixes scrollbar events
30809
30810 2004-07-27 04:38  jordi
30811
30812         * Control.cs: changes to be able to run winforms samples
30813
30814 2004-07-26 11:42  jordi
30815
30816         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
30817           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
30818
30819 2004-07-26 05:41  jordi
30820
30821         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
30822           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
30823           implementation
30824
30825 2004-07-22 09:22  jordi
30826
30827         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
30828           check link overlapping, implement events, and fixes
30829
30830 2004-07-21 10:28  jordi
30831
30832         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
30833
30834 2004-07-21 10:19  jordi
30835
30836         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
30837           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
30838           LinkLabelLinkClickedEventArgs.cs,
30839           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
30840           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
30841           implementation
30842
30843 2004-07-19 13:09  jordi
30844
30845         * Control.cs, Label.cs: label control re-written: added missing
30846           functionlity, events, and properties
30847
30848 2004-07-19 10:49  jordi
30849
30850         * Control.cs: fixes SetBounds logic
30851
30852 2004-07-19 01:29  jordi
30853
30854         * Control.cs: Call RefreshWindow only if the window has created
30855
30856 2004-07-15 14:05  pbartok
30857
30858         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
30859           - Implemented ImageList and ImageList.ImageCollection classes
30860           - Added ColorDepth enumeration
30861           - Updated SWF VS.Net project
30862
30863 2004-07-15 11:06  jordi
30864
30865         * XplatUIStructs.cs: added MsgButons enum
30866
30867 2004-07-15 11:03  jordi
30868
30869         * Control.cs: added basic mouse handeling events
30870
30871 2004-07-15 03:38  jordi
30872
30873         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
30874           Vertical TrackBar control implementation
30875
30876 2004-07-13 09:33  jordi
30877
30878         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
30879
30880 2004-07-13 09:31  jordi
30881
30882         * Control.cs, Form.cs: commit: new properties and fixes form size
30883           problems
30884
30885 2004-07-09 14:13  miguel
30886
30887         * ProgressBar.cs: Spelling
30888
30889 2004-07-09 11:25  pbartok
30890
30891         * ProgressBar.cs:
30892           - Removed usage of Rectangle for drawing. Miguel pointed out it's
30893           faster
30894
30895 2004-07-09 11:17  miguel
30896
30897         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
30898
30899                 * ProgressBar.cs: Fixed spelling for `block'
30900
30901                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
30902                 style guidelines.
30903
30904                 Avoid using the += on rect.X, that exposed a bug in the compiler.
30905
30906 2004-07-08 23:21  pbartok
30907
30908         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
30909           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
30910           BaseCollection.cs, Binding.cs, BindingContext.cs,
30911           BindingMemberInfo.cs, BindingsCollection.cs,
30912           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
30913           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
30914           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
30915           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
30916           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
30917           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
30918           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
30919           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
30920           FrameStyle.cs, GiveFeedbackEventArgs.cs,
30921           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
30922           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
30923           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
30924           InputLanguageChangedEventArgs.cs,
30925           InputLanguageChangedEventHandler.cs,
30926           InputLanguageChangingEventArgs.cs,
30927           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
30928           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
30929           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
30930           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
30931           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
30932           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
30933           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
30934           QueryAccessibilityHelpEventArgs.cs,
30935           QueryAccessibilityHelpEventHandler.cs,
30936           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
30937           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
30938           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
30939           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
30940           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
30941           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
30942           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
30943           XplatUIX11.cs, lang.cs:
30944           - Initial check-in
30945
30946